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_attr_sf.h"
34 #include "xfs_dinode.h"
35 #include "xfs_inode.h"
36 #include "xfs_btree.h"
37 #include "xfs_dmapi.h"
38 #include "xfs_mount.h"
39 #include "xfs_ialloc.h"
40 #include "xfs_itable.h"
41 #include "xfs_dir2_data.h"
42 #include "xfs_dir2_leaf.h"
43 #include "xfs_dir2_block.h"
44 #include "xfs_inode_item.h"
45 #include "xfs_extfree_item.h"
46 #include "xfs_alloc.h"
48 #include "xfs_rtalloc.h"
49 #include "xfs_error.h"
50 #include "xfs_attr_leaf.h"
52 #include "xfs_quota.h"
53 #include "xfs_trans_space.h"
54 #include "xfs_buf_item.h"
55 #include "xfs_filestream.h"
56 #include "xfs_vnodeops.h"
57 #include "xfs_trace.h"
62 xfs_bmap_check_leaf_extents(xfs_btree_cur_t
*cur
, xfs_inode_t
*ip
, int whichfork
);
65 kmem_zone_t
*xfs_bmap_free_item_zone
;
68 * Prototypes for internal bmap routines.
73 * Called from xfs_bmap_add_attrfork to handle extents format files.
75 STATIC
int /* error */
76 xfs_bmap_add_attrfork_extents(
77 xfs_trans_t
*tp
, /* transaction pointer */
78 xfs_inode_t
*ip
, /* incore inode pointer */
79 xfs_fsblock_t
*firstblock
, /* first block allocated */
80 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
81 int *flags
); /* inode logging flags */
84 * Called from xfs_bmap_add_attrfork to handle local format files.
86 STATIC
int /* error */
87 xfs_bmap_add_attrfork_local(
88 xfs_trans_t
*tp
, /* transaction pointer */
89 xfs_inode_t
*ip
, /* incore inode pointer */
90 xfs_fsblock_t
*firstblock
, /* first block allocated */
91 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
92 int *flags
); /* inode logging flags */
95 * Called by xfs_bmapi to update file extent records and the btree
96 * after allocating space (or doing a delayed allocation).
98 STATIC
int /* error */
100 xfs_inode_t
*ip
, /* incore inode pointer */
101 xfs_extnum_t idx
, /* extent number to update/insert */
102 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
103 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
104 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
105 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
106 int *logflagsp
, /* inode logging flags */
107 xfs_extdelta_t
*delta
, /* Change made to incore extents */
108 int whichfork
, /* data or attr fork */
109 int rsvd
); /* OK to allocate reserved blocks */
112 * Called by xfs_bmap_add_extent to handle cases converting a delayed
113 * allocation to a real allocation.
115 STATIC
int /* error */
116 xfs_bmap_add_extent_delay_real(
117 xfs_inode_t
*ip
, /* incore inode pointer */
118 xfs_extnum_t idx
, /* extent number to update/insert */
119 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
120 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
121 xfs_filblks_t
*dnew
, /* new delayed-alloc indirect blocks */
122 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
123 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
124 int *logflagsp
, /* inode logging flags */
125 xfs_extdelta_t
*delta
, /* Change made to incore extents */
126 int rsvd
); /* OK to allocate reserved blocks */
129 * Called by xfs_bmap_add_extent to handle cases converting a hole
130 * to a delayed allocation.
132 STATIC
int /* error */
133 xfs_bmap_add_extent_hole_delay(
134 xfs_inode_t
*ip
, /* incore inode pointer */
135 xfs_extnum_t idx
, /* extent number to update/insert */
136 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
137 int *logflagsp
,/* inode logging flags */
138 xfs_extdelta_t
*delta
, /* Change made to incore extents */
139 int rsvd
); /* OK to allocate reserved blocks */
142 * Called by xfs_bmap_add_extent to handle cases converting a hole
143 * to a real allocation.
145 STATIC
int /* error */
146 xfs_bmap_add_extent_hole_real(
147 xfs_inode_t
*ip
, /* incore inode pointer */
148 xfs_extnum_t idx
, /* extent number to update/insert */
149 xfs_btree_cur_t
*cur
, /* if null, not a btree */
150 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
151 int *logflagsp
, /* inode logging flags */
152 xfs_extdelta_t
*delta
, /* Change made to incore extents */
153 int whichfork
); /* data or attr fork */
156 * Called by xfs_bmap_add_extent to handle cases converting an unwritten
157 * allocation to a real allocation or vice versa.
159 STATIC
int /* error */
160 xfs_bmap_add_extent_unwritten_real(
161 xfs_inode_t
*ip
, /* incore inode pointer */
162 xfs_extnum_t idx
, /* extent number to update/insert */
163 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
164 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
165 int *logflagsp
, /* inode logging flags */
166 xfs_extdelta_t
*delta
); /* Change made to incore extents */
169 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
170 * It figures out where to ask the underlying allocator to put the new extent.
172 STATIC
int /* error */
174 xfs_bmalloca_t
*ap
); /* bmap alloc argument struct */
177 * Transform a btree format file with only one leaf node, where the
178 * extents list will fit in the inode, into an extents format file.
179 * Since the file extents are already in-core, all we have to do is
180 * give up the space for the btree root and pitch the leaf block.
182 STATIC
int /* error */
183 xfs_bmap_btree_to_extents(
184 xfs_trans_t
*tp
, /* transaction pointer */
185 xfs_inode_t
*ip
, /* incore inode pointer */
186 xfs_btree_cur_t
*cur
, /* btree cursor */
187 int *logflagsp
, /* inode logging flags */
188 int whichfork
); /* data or attr fork */
191 * Called by xfs_bmapi to update file extent records and the btree
192 * after removing space (or undoing a delayed allocation).
194 STATIC
int /* error */
196 xfs_inode_t
*ip
, /* incore inode pointer */
197 xfs_trans_t
*tp
, /* current trans pointer */
198 xfs_extnum_t idx
, /* extent number to update/insert */
199 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
200 xfs_btree_cur_t
*cur
, /* if null, not a btree */
201 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
202 int *logflagsp
,/* inode logging flags */
203 xfs_extdelta_t
*delta
, /* Change made to incore extents */
204 int whichfork
, /* data or attr fork */
205 int rsvd
); /* OK to allocate reserved blocks */
208 * Remove the entry "free" from the free item list. Prev points to the
209 * previous entry, unless "free" is the head of the list.
213 xfs_bmap_free_t
*flist
, /* free item list header */
214 xfs_bmap_free_item_t
*prev
, /* previous item on list, if any */
215 xfs_bmap_free_item_t
*free
); /* list item to be freed */
218 * Convert an extents-format file into a btree-format file.
219 * The new file will have a root block (in the inode) and a single child block.
221 STATIC
int /* error */
222 xfs_bmap_extents_to_btree(
223 xfs_trans_t
*tp
, /* transaction pointer */
224 xfs_inode_t
*ip
, /* incore inode pointer */
225 xfs_fsblock_t
*firstblock
, /* first-block-allocated */
226 xfs_bmap_free_t
*flist
, /* blocks freed in xaction */
227 xfs_btree_cur_t
**curp
, /* cursor returned to caller */
228 int wasdel
, /* converting a delayed alloc */
229 int *logflagsp
, /* inode logging flags */
230 int whichfork
); /* data or attr fork */
233 * Convert a local file to an extents file.
234 * This code is sort of bogus, since the file data needs to get
235 * logged so it won't be lost. The bmap-level manipulations are ok, though.
237 STATIC
int /* error */
238 xfs_bmap_local_to_extents(
239 xfs_trans_t
*tp
, /* transaction pointer */
240 xfs_inode_t
*ip
, /* incore inode pointer */
241 xfs_fsblock_t
*firstblock
, /* first block allocated in xaction */
242 xfs_extlen_t total
, /* total blocks needed by transaction */
243 int *logflagsp
, /* inode logging flags */
244 int whichfork
); /* data or attr fork */
247 * Search the extents list for the inode, for the extent containing bno.
248 * If bno lies in a hole, point to the next entry. If bno lies past eof,
249 * *eofp will be set, and *prevp will contain the last entry (null if none).
250 * Else, *lastxp will be set to the index of the found
251 * entry; *gotp will contain the entry.
253 STATIC xfs_bmbt_rec_host_t
* /* pointer to found extent entry */
254 xfs_bmap_search_extents(
255 xfs_inode_t
*ip
, /* incore inode pointer */
256 xfs_fileoff_t bno
, /* block number searched for */
257 int whichfork
, /* data or attr fork */
258 int *eofp
, /* out: end of file found */
259 xfs_extnum_t
*lastxp
, /* out: last extent index */
260 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
261 xfs_bmbt_irec_t
*prevp
); /* out: previous extent entry found */
264 * Check the last inode extent to determine whether this allocation will result
265 * in blocks being allocated at the end of the file. When we allocate new data
266 * blocks at the end of the file which do not start at the previous data block,
267 * we will try to align the new blocks at stripe unit boundaries.
269 STATIC
int /* error */
271 xfs_inode_t
*ip
, /* incore inode pointer */
272 xfs_fileoff_t off
, /* file offset in fsblocks */
273 int whichfork
, /* data or attribute fork */
274 char *aeof
); /* return value */
277 * Compute the worst-case number of indirect blocks that will be used
278 * for ip's delayed extent of length "len".
281 xfs_bmap_worst_indlen(
282 xfs_inode_t
*ip
, /* incore inode pointer */
283 xfs_filblks_t len
); /* delayed extent length */
287 * Perform various validation checks on the values being returned
291 xfs_bmap_validate_ret(
295 xfs_bmbt_irec_t
*mval
,
299 #define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
307 xfs_fsblock_t blockno
,
312 xfs_bmap_count_leaves(
319 xfs_bmap_disk_count_leaves(
320 struct xfs_mount
*mp
,
321 struct xfs_btree_block
*block
,
326 * Bmap internal routines.
329 STATIC
int /* error */
331 struct xfs_btree_cur
*cur
,
335 int *stat
) /* success/failure */
337 cur
->bc_rec
.b
.br_startoff
= off
;
338 cur
->bc_rec
.b
.br_startblock
= bno
;
339 cur
->bc_rec
.b
.br_blockcount
= len
;
340 return xfs_btree_lookup(cur
, XFS_LOOKUP_EQ
, stat
);
343 STATIC
int /* error */
345 struct xfs_btree_cur
*cur
,
349 int *stat
) /* success/failure */
351 cur
->bc_rec
.b
.br_startoff
= off
;
352 cur
->bc_rec
.b
.br_startblock
= bno
;
353 cur
->bc_rec
.b
.br_blockcount
= len
;
354 return xfs_btree_lookup(cur
, XFS_LOOKUP_GE
, stat
);
358 * Update the record referred to by cur to the value given
359 * by [off, bno, len, state].
360 * This either works (return 0) or gets an EFSCORRUPTED error.
364 struct xfs_btree_cur
*cur
,
370 union xfs_btree_rec rec
;
372 xfs_bmbt_disk_set_allf(&rec
.bmbt
, off
, bno
, len
, state
);
373 return xfs_btree_update(cur
, &rec
);
377 * Called from xfs_bmap_add_attrfork to handle btree format files.
379 STATIC
int /* error */
380 xfs_bmap_add_attrfork_btree(
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
; /* btree cursor */
388 int error
; /* error return value */
389 xfs_mount_t
*mp
; /* file system mount struct */
390 int stat
; /* newroot status */
393 if (ip
->i_df
.if_broot_bytes
<= XFS_IFORK_DSIZE(ip
))
394 *flags
|= XFS_ILOG_DBROOT
;
396 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, XFS_DATA_FORK
);
397 cur
->bc_private
.b
.flist
= flist
;
398 cur
->bc_private
.b
.firstblock
= *firstblock
;
399 if ((error
= xfs_bmbt_lookup_ge(cur
, 0, 0, 0, &stat
)))
401 /* must be at least one entry */
402 XFS_WANT_CORRUPTED_GOTO(stat
== 1, error0
);
403 if ((error
= xfs_btree_new_iroot(cur
, flags
, &stat
)))
406 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
407 return XFS_ERROR(ENOSPC
);
409 *firstblock
= cur
->bc_private
.b
.firstblock
;
410 cur
->bc_private
.b
.allocated
= 0;
411 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
415 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
420 * Called from xfs_bmap_add_attrfork to handle extents format files.
422 STATIC
int /* error */
423 xfs_bmap_add_attrfork_extents(
424 xfs_trans_t
*tp
, /* transaction pointer */
425 xfs_inode_t
*ip
, /* incore inode pointer */
426 xfs_fsblock_t
*firstblock
, /* first block allocated */
427 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
428 int *flags
) /* inode logging flags */
430 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
431 int error
; /* error return value */
433 if (ip
->i_d
.di_nextents
* sizeof(xfs_bmbt_rec_t
) <= XFS_IFORK_DSIZE(ip
))
436 error
= xfs_bmap_extents_to_btree(tp
, ip
, firstblock
, flist
, &cur
, 0,
437 flags
, XFS_DATA_FORK
);
439 cur
->bc_private
.b
.allocated
= 0;
440 xfs_btree_del_cursor(cur
,
441 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
447 * Called from xfs_bmap_add_attrfork to handle local format files.
449 STATIC
int /* error */
450 xfs_bmap_add_attrfork_local(
451 xfs_trans_t
*tp
, /* transaction pointer */
452 xfs_inode_t
*ip
, /* incore inode pointer */
453 xfs_fsblock_t
*firstblock
, /* first block allocated */
454 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
455 int *flags
) /* inode logging flags */
457 xfs_da_args_t dargs
; /* args for dir/attr code */
458 int error
; /* error return value */
459 xfs_mount_t
*mp
; /* mount structure pointer */
461 if (ip
->i_df
.if_bytes
<= XFS_IFORK_DSIZE(ip
))
463 if ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
) {
465 memset(&dargs
, 0, sizeof(dargs
));
467 dargs
.firstblock
= firstblock
;
469 dargs
.total
= mp
->m_dirblkfsbs
;
470 dargs
.whichfork
= XFS_DATA_FORK
;
472 error
= xfs_dir2_sf_to_block(&dargs
);
474 error
= xfs_bmap_local_to_extents(tp
, ip
, firstblock
, 1, flags
,
480 * Called by xfs_bmapi to update file extent records and the btree
481 * after allocating space (or doing a delayed allocation).
483 STATIC
int /* error */
485 xfs_inode_t
*ip
, /* incore inode pointer */
486 xfs_extnum_t idx
, /* extent number to update/insert */
487 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
488 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
489 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
490 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
491 int *logflagsp
, /* inode logging flags */
492 xfs_extdelta_t
*delta
, /* Change made to incore extents */
493 int whichfork
, /* data or attr fork */
494 int rsvd
) /* OK to use reserved data blocks */
496 xfs_btree_cur_t
*cur
; /* btree cursor or null */
497 xfs_filblks_t da_new
; /* new count del alloc blocks used */
498 xfs_filblks_t da_old
; /* old count del alloc blocks used */
499 int error
; /* error return value */
500 xfs_ifork_t
*ifp
; /* inode fork ptr */
501 int logflags
; /* returned value */
502 xfs_extnum_t nextents
; /* number of extents in file now */
504 XFS_STATS_INC(xs_add_exlist
);
506 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
507 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
508 ASSERT(idx
<= nextents
);
512 * This is the first extent added to a new/empty file.
513 * Special case this one, so other routines get to assume there are
514 * already extents in the list.
517 xfs_iext_insert(ip
, 0, 1, new,
518 whichfork
== XFS_ATTR_FORK
? BMAP_ATTRFORK
: 0);
522 if (!isnullstartblock(new->br_startblock
)) {
523 XFS_IFORK_NEXT_SET(ip
, whichfork
, 1);
524 logflags
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
527 /* DELTA: single new extent */
529 if (delta
->xed_startoff
> new->br_startoff
)
530 delta
->xed_startoff
= new->br_startoff
;
531 if (delta
->xed_blockcount
<
532 new->br_startoff
+ new->br_blockcount
)
533 delta
->xed_blockcount
= new->br_startoff
+
538 * Any kind of new delayed allocation goes here.
540 else if (isnullstartblock(new->br_startblock
)) {
542 ASSERT((cur
->bc_private
.b
.flags
&
543 XFS_BTCUR_BPRV_WASDEL
) == 0);
544 if ((error
= xfs_bmap_add_extent_hole_delay(ip
, idx
, new,
545 &logflags
, delta
, rsvd
)))
549 * Real allocation off the end of the file.
551 else if (idx
== nextents
) {
553 ASSERT((cur
->bc_private
.b
.flags
&
554 XFS_BTCUR_BPRV_WASDEL
) == 0);
555 if ((error
= xfs_bmap_add_extent_hole_real(ip
, idx
, cur
, new,
556 &logflags
, delta
, whichfork
)))
559 xfs_bmbt_irec_t prev
; /* old extent at offset idx */
562 * Get the record referred to by idx.
564 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
), &prev
);
566 * If it's a real allocation record, and the new allocation ends
567 * after the start of the referred to record, then we're filling
568 * in a delayed or unwritten allocation with a real one, or
569 * converting real back to unwritten.
571 if (!isnullstartblock(new->br_startblock
) &&
572 new->br_startoff
+ new->br_blockcount
> prev
.br_startoff
) {
573 if (prev
.br_state
!= XFS_EXT_UNWRITTEN
&&
574 isnullstartblock(prev
.br_startblock
)) {
575 da_old
= startblockval(prev
.br_startblock
);
577 ASSERT(cur
->bc_private
.b
.flags
&
578 XFS_BTCUR_BPRV_WASDEL
);
579 if ((error
= xfs_bmap_add_extent_delay_real(ip
,
580 idx
, &cur
, new, &da_new
, first
, flist
,
581 &logflags
, delta
, rsvd
)))
583 } else if (new->br_state
== XFS_EXT_NORM
) {
584 ASSERT(new->br_state
== XFS_EXT_NORM
);
585 if ((error
= xfs_bmap_add_extent_unwritten_real(
586 ip
, idx
, &cur
, new, &logflags
, delta
)))
589 ASSERT(new->br_state
== XFS_EXT_UNWRITTEN
);
590 if ((error
= xfs_bmap_add_extent_unwritten_real(
591 ip
, idx
, &cur
, new, &logflags
, delta
)))
594 ASSERT(*curp
== cur
|| *curp
== NULL
);
597 * Otherwise we're filling in a hole with an allocation.
601 ASSERT((cur
->bc_private
.b
.flags
&
602 XFS_BTCUR_BPRV_WASDEL
) == 0);
603 if ((error
= xfs_bmap_add_extent_hole_real(ip
, idx
, cur
,
604 new, &logflags
, delta
, whichfork
)))
609 ASSERT(*curp
== cur
|| *curp
== NULL
);
611 * Convert to a btree if necessary.
613 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
614 XFS_IFORK_NEXTENTS(ip
, whichfork
) > ifp
->if_ext_max
) {
615 int tmp_logflags
; /* partial log flag return val */
618 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
, first
,
619 flist
, &cur
, da_old
> 0, &tmp_logflags
, whichfork
);
620 logflags
|= tmp_logflags
;
625 * Adjust for changes in reserved delayed indirect blocks.
626 * Nothing to do for disk quotas here.
628 if (da_old
|| da_new
) {
633 nblks
+= cur
->bc_private
.b
.allocated
;
634 ASSERT(nblks
<= da_old
);
636 xfs_mod_incore_sb(ip
->i_mount
, XFS_SBS_FDBLOCKS
,
637 (int64_t)(da_old
- nblks
), rsvd
);
640 * Clear out the allocated field, done with it now in any case.
643 cur
->bc_private
.b
.allocated
= 0;
649 xfs_bmap_check_leaf_extents(*curp
, ip
, whichfork
);
651 *logflagsp
= logflags
;
656 * Called by xfs_bmap_add_extent to handle cases converting a delayed
657 * allocation to a real allocation.
659 STATIC
int /* error */
660 xfs_bmap_add_extent_delay_real(
661 xfs_inode_t
*ip
, /* incore inode pointer */
662 xfs_extnum_t idx
, /* extent number to update/insert */
663 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
664 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
665 xfs_filblks_t
*dnew
, /* new delayed-alloc indirect blocks */
666 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
667 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
668 int *logflagsp
, /* inode logging flags */
669 xfs_extdelta_t
*delta
, /* Change made to incore extents */
670 int rsvd
) /* OK to use reserved data block allocation */
672 xfs_btree_cur_t
*cur
; /* btree cursor */
673 int diff
; /* temp value */
674 xfs_bmbt_rec_host_t
*ep
; /* extent entry for idx */
675 int error
; /* error return value */
676 int i
; /* temp state */
677 xfs_ifork_t
*ifp
; /* inode fork pointer */
678 xfs_fileoff_t new_endoff
; /* end offset of new entry */
679 xfs_bmbt_irec_t r
[3]; /* neighbor extent entries */
680 /* left is 0, right is 1, prev is 2 */
681 int rval
=0; /* return value (logging flags) */
682 int state
= 0;/* state bits, accessed thru macros */
683 xfs_filblks_t temp
=0; /* value for dnew calculations */
684 xfs_filblks_t temp2
=0;/* value for dnew calculations */
685 int tmp_rval
; /* partial logging flags */
692 * Set up a bunch of variables to make the tests simpler.
695 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
696 ep
= xfs_iext_get_ext(ifp
, idx
);
697 xfs_bmbt_get_all(ep
, &PREV
);
698 new_endoff
= new->br_startoff
+ new->br_blockcount
;
699 ASSERT(PREV
.br_startoff
<= new->br_startoff
);
700 ASSERT(PREV
.br_startoff
+ PREV
.br_blockcount
>= new_endoff
);
703 * Set flags determining what part of the previous delayed allocation
704 * extent is being replaced by a real allocation.
706 if (PREV
.br_startoff
== new->br_startoff
)
707 state
|= BMAP_LEFT_FILLING
;
708 if (PREV
.br_startoff
+ PREV
.br_blockcount
== new_endoff
)
709 state
|= BMAP_RIGHT_FILLING
;
712 * Check and set flags if this segment has a left neighbor.
713 * Don't set contiguous if the combined extent would be too large.
716 state
|= BMAP_LEFT_VALID
;
717 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
- 1), &LEFT
);
719 if (isnullstartblock(LEFT
.br_startblock
))
720 state
|= BMAP_LEFT_DELAY
;
723 if ((state
& BMAP_LEFT_VALID
) && !(state
& BMAP_LEFT_DELAY
) &&
724 LEFT
.br_startoff
+ LEFT
.br_blockcount
== new->br_startoff
&&
725 LEFT
.br_startblock
+ LEFT
.br_blockcount
== new->br_startblock
&&
726 LEFT
.br_state
== new->br_state
&&
727 LEFT
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
728 state
|= BMAP_LEFT_CONTIG
;
731 * Check and set flags if this segment has a right neighbor.
732 * Don't set contiguous if the combined extent would be too large.
733 * Also check for all-three-contiguous being too large.
735 if (idx
< ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
) - 1) {
736 state
|= BMAP_RIGHT_VALID
;
737 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
+ 1), &RIGHT
);
739 if (isnullstartblock(RIGHT
.br_startblock
))
740 state
|= BMAP_RIGHT_DELAY
;
743 if ((state
& BMAP_RIGHT_VALID
) && !(state
& BMAP_RIGHT_DELAY
) &&
744 new_endoff
== RIGHT
.br_startoff
&&
745 new->br_startblock
+ new->br_blockcount
== RIGHT
.br_startblock
&&
746 new->br_state
== RIGHT
.br_state
&&
747 new->br_blockcount
+ RIGHT
.br_blockcount
<= MAXEXTLEN
&&
748 ((state
& (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
749 BMAP_RIGHT_FILLING
)) !=
750 (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
751 BMAP_RIGHT_FILLING
) ||
752 LEFT
.br_blockcount
+ new->br_blockcount
+ RIGHT
.br_blockcount
754 state
|= BMAP_RIGHT_CONTIG
;
758 * Switch out based on the FILLING and CONTIG state bits.
760 switch (state
& (BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
761 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
)) {
762 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
763 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
765 * Filling in all of a previously delayed allocation extent.
766 * The left and right neighbors are both contiguous with new.
768 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
769 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
770 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
771 RIGHT
.br_blockcount
);
772 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
774 xfs_iext_remove(ip
, idx
, 2, state
);
775 ip
->i_df
.if_lastex
= idx
- 1;
776 ip
->i_d
.di_nextents
--;
778 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
780 rval
= XFS_ILOG_CORE
;
781 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
783 RIGHT
.br_blockcount
, &i
)))
785 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
786 if ((error
= xfs_btree_delete(cur
, &i
)))
788 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
789 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
791 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
792 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
796 RIGHT
.br_blockcount
, LEFT
.br_state
)))
800 /* DELTA: Three in-core extents are replaced by one. */
801 temp
= LEFT
.br_startoff
;
802 temp2
= LEFT
.br_blockcount
+
807 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
809 * Filling in all of a previously delayed allocation extent.
810 * The left neighbor is contiguous, the right is not.
812 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
813 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
814 LEFT
.br_blockcount
+ PREV
.br_blockcount
);
815 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
817 ip
->i_df
.if_lastex
= idx
- 1;
818 xfs_iext_remove(ip
, idx
, 1, state
);
820 rval
= XFS_ILOG_DEXT
;
823 if ((error
= xfs_bmbt_lookup_eq(cur
, LEFT
.br_startoff
,
824 LEFT
.br_startblock
, LEFT
.br_blockcount
,
827 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
828 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
831 PREV
.br_blockcount
, LEFT
.br_state
)))
835 /* DELTA: Two in-core extents are replaced by one. */
836 temp
= LEFT
.br_startoff
;
837 temp2
= LEFT
.br_blockcount
+
841 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
843 * Filling in all of a previously delayed allocation extent.
844 * The right neighbor is contiguous, the left is not.
846 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
847 xfs_bmbt_set_startblock(ep
, new->br_startblock
);
848 xfs_bmbt_set_blockcount(ep
,
849 PREV
.br_blockcount
+ RIGHT
.br_blockcount
);
850 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
852 ip
->i_df
.if_lastex
= idx
;
853 xfs_iext_remove(ip
, idx
+ 1, 1, state
);
855 rval
= XFS_ILOG_DEXT
;
858 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
860 RIGHT
.br_blockcount
, &i
)))
862 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
863 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
866 RIGHT
.br_blockcount
, PREV
.br_state
)))
870 /* DELTA: Two in-core extents are replaced by one. */
871 temp
= PREV
.br_startoff
;
872 temp2
= PREV
.br_blockcount
+
876 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
:
878 * Filling in all of a previously delayed allocation extent.
879 * Neither the left nor right neighbors are contiguous with
882 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
883 xfs_bmbt_set_startblock(ep
, new->br_startblock
);
884 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
886 ip
->i_df
.if_lastex
= idx
;
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
);
903 /* DELTA: The in-core extent described by new changed type. */
904 temp
= new->br_startoff
;
905 temp2
= new->br_blockcount
;
908 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
:
910 * Filling in the first part of a previous delayed allocation.
911 * The left neighbor is contiguous.
913 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
914 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
915 LEFT
.br_blockcount
+ new->br_blockcount
);
916 xfs_bmbt_set_startoff(ep
,
917 PREV
.br_startoff
+ new->br_blockcount
);
918 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
920 temp
= PREV
.br_blockcount
- new->br_blockcount
;
921 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
922 xfs_bmbt_set_blockcount(ep
, temp
);
923 ip
->i_df
.if_lastex
= idx
- 1;
925 rval
= XFS_ILOG_DEXT
;
928 if ((error
= xfs_bmbt_lookup_eq(cur
, LEFT
.br_startoff
,
929 LEFT
.br_startblock
, LEFT
.br_blockcount
,
932 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
933 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
940 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
941 startblockval(PREV
.br_startblock
));
942 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
943 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
945 /* DELTA: The boundary between two in-core extents moved. */
946 temp
= LEFT
.br_startoff
;
947 temp2
= LEFT
.br_blockcount
+
951 case BMAP_LEFT_FILLING
:
953 * Filling in the first part of a previous delayed allocation.
954 * The left neighbor is not contiguous.
956 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
957 xfs_bmbt_set_startoff(ep
, new_endoff
);
958 temp
= PREV
.br_blockcount
- new->br_blockcount
;
959 xfs_bmbt_set_blockcount(ep
, temp
);
960 xfs_iext_insert(ip
, idx
, 1, new, state
);
961 ip
->i_df
.if_lastex
= idx
;
962 ip
->i_d
.di_nextents
++;
964 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
966 rval
= XFS_ILOG_CORE
;
967 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
968 new->br_startblock
, new->br_blockcount
,
971 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
972 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
973 if ((error
= xfs_btree_insert(cur
, &i
)))
975 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
977 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
978 ip
->i_d
.di_nextents
> ip
->i_df
.if_ext_max
) {
979 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
,
980 first
, flist
, &cur
, 1, &tmp_rval
,
986 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
987 startblockval(PREV
.br_startblock
) -
988 (cur
? cur
->bc_private
.b
.allocated
: 0));
989 ep
= xfs_iext_get_ext(ifp
, idx
+ 1);
990 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
991 trace_xfs_bmap_post_update(ip
, idx
+ 1, state
, _THIS_IP_
);
993 /* DELTA: One in-core extent is split in two. */
994 temp
= PREV
.br_startoff
;
995 temp2
= PREV
.br_blockcount
;
998 case BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
1000 * Filling in the last part of a previous delayed allocation.
1001 * The right neighbor is contiguous with the new allocation.
1003 temp
= PREV
.br_blockcount
- new->br_blockcount
;
1004 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1005 trace_xfs_bmap_pre_update(ip
, idx
+ 1, state
, _THIS_IP_
);
1006 xfs_bmbt_set_blockcount(ep
, temp
);
1007 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, idx
+ 1),
1008 new->br_startoff
, new->br_startblock
,
1009 new->br_blockcount
+ RIGHT
.br_blockcount
,
1011 trace_xfs_bmap_post_update(ip
, idx
+ 1, state
, _THIS_IP_
);
1012 ip
->i_df
.if_lastex
= idx
+ 1;
1014 rval
= XFS_ILOG_DEXT
;
1017 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
1018 RIGHT
.br_startblock
,
1019 RIGHT
.br_blockcount
, &i
)))
1021 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1022 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1024 new->br_blockcount
+
1025 RIGHT
.br_blockcount
,
1029 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
1030 startblockval(PREV
.br_startblock
));
1031 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
1032 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1034 /* DELTA: The boundary between two in-core extents moved. */
1035 temp
= PREV
.br_startoff
;
1036 temp2
= PREV
.br_blockcount
+
1037 RIGHT
.br_blockcount
;
1040 case BMAP_RIGHT_FILLING
:
1042 * Filling in the last part of a previous delayed allocation.
1043 * The right neighbor is not contiguous.
1045 temp
= PREV
.br_blockcount
- new->br_blockcount
;
1046 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1047 xfs_bmbt_set_blockcount(ep
, temp
);
1048 xfs_iext_insert(ip
, idx
+ 1, 1, new, state
);
1049 ip
->i_df
.if_lastex
= idx
+ 1;
1050 ip
->i_d
.di_nextents
++;
1052 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1054 rval
= XFS_ILOG_CORE
;
1055 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1056 new->br_startblock
, new->br_blockcount
,
1059 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
1060 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1061 if ((error
= xfs_btree_insert(cur
, &i
)))
1063 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1065 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
1066 ip
->i_d
.di_nextents
> ip
->i_df
.if_ext_max
) {
1067 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
,
1068 first
, flist
, &cur
, 1, &tmp_rval
,
1074 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
1075 startblockval(PREV
.br_startblock
) -
1076 (cur
? cur
->bc_private
.b
.allocated
: 0));
1077 ep
= xfs_iext_get_ext(ifp
, idx
);
1078 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
1079 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1081 /* DELTA: One in-core extent is split in two. */
1082 temp
= PREV
.br_startoff
;
1083 temp2
= PREV
.br_blockcount
;
1088 * Filling in the middle part of a previous delayed allocation.
1089 * Contiguity is impossible here.
1090 * This case is avoided almost all the time.
1092 temp
= new->br_startoff
- PREV
.br_startoff
;
1093 trace_xfs_bmap_pre_update(ip
, idx
, 0, _THIS_IP_
);
1094 xfs_bmbt_set_blockcount(ep
, temp
);
1096 r
[1].br_state
= PREV
.br_state
;
1097 r
[1].br_startblock
= 0;
1098 r
[1].br_startoff
= new_endoff
;
1099 temp2
= PREV
.br_startoff
+ PREV
.br_blockcount
- new_endoff
;
1100 r
[1].br_blockcount
= temp2
;
1101 xfs_iext_insert(ip
, idx
+ 1, 2, &r
[0], state
);
1102 ip
->i_df
.if_lastex
= idx
+ 1;
1103 ip
->i_d
.di_nextents
++;
1105 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1107 rval
= XFS_ILOG_CORE
;
1108 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1109 new->br_startblock
, new->br_blockcount
,
1112 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
1113 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1114 if ((error
= xfs_btree_insert(cur
, &i
)))
1116 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1118 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
1119 ip
->i_d
.di_nextents
> ip
->i_df
.if_ext_max
) {
1120 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
,
1121 first
, flist
, &cur
, 1, &tmp_rval
,
1127 temp
= xfs_bmap_worst_indlen(ip
, temp
);
1128 temp2
= xfs_bmap_worst_indlen(ip
, temp2
);
1129 diff
= (int)(temp
+ temp2
- startblockval(PREV
.br_startblock
) -
1130 (cur
? cur
->bc_private
.b
.allocated
: 0));
1132 xfs_mod_incore_sb(ip
->i_mount
, XFS_SBS_FDBLOCKS
, -((int64_t)diff
), rsvd
)) {
1134 * Ick gross gag me with a spoon.
1136 ASSERT(0); /* want to see if this ever happens! */
1142 !xfs_mod_incore_sb(ip
->i_mount
,
1143 XFS_SBS_FDBLOCKS
, -((int64_t)diff
), rsvd
))
1150 !xfs_mod_incore_sb(ip
->i_mount
,
1151 XFS_SBS_FDBLOCKS
, -((int64_t)diff
), rsvd
))
1156 ep
= xfs_iext_get_ext(ifp
, idx
);
1157 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
1158 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1159 trace_xfs_bmap_pre_update(ip
, idx
+ 2, state
, _THIS_IP_
);
1160 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, idx
+ 2),
1161 nullstartblock((int)temp2
));
1162 trace_xfs_bmap_post_update(ip
, idx
+ 2, state
, _THIS_IP_
);
1163 *dnew
= temp
+ temp2
;
1164 /* DELTA: One in-core extent is split in three. */
1165 temp
= PREV
.br_startoff
;
1166 temp2
= PREV
.br_blockcount
;
1169 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1170 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1171 case BMAP_LEFT_FILLING
| BMAP_RIGHT_CONTIG
:
1172 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
1173 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1174 case BMAP_LEFT_CONTIG
:
1175 case BMAP_RIGHT_CONTIG
:
1177 * These cases are all impossible.
1184 if (delta
->xed_startoff
> temp
)
1185 delta
->xed_startoff
= temp
;
1186 if (delta
->xed_blockcount
< temp2
)
1187 delta
->xed_blockcount
= temp2
;
1198 * Called by xfs_bmap_add_extent to handle cases converting an unwritten
1199 * allocation to a real allocation or vice versa.
1201 STATIC
int /* error */
1202 xfs_bmap_add_extent_unwritten_real(
1203 xfs_inode_t
*ip
, /* incore inode pointer */
1204 xfs_extnum_t idx
, /* extent number to update/insert */
1205 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
1206 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
1207 int *logflagsp
, /* inode logging flags */
1208 xfs_extdelta_t
*delta
) /* Change made to incore extents */
1210 xfs_btree_cur_t
*cur
; /* btree cursor */
1211 xfs_bmbt_rec_host_t
*ep
; /* extent entry for idx */
1212 int error
; /* error return value */
1213 int i
; /* temp state */
1214 xfs_ifork_t
*ifp
; /* inode fork pointer */
1215 xfs_fileoff_t new_endoff
; /* end offset of new entry */
1216 xfs_exntst_t newext
; /* new extent state */
1217 xfs_exntst_t oldext
; /* old extent state */
1218 xfs_bmbt_irec_t r
[3]; /* neighbor extent entries */
1219 /* left is 0, right is 1, prev is 2 */
1220 int rval
=0; /* return value (logging flags) */
1221 int state
= 0;/* state bits, accessed thru macros */
1222 xfs_filblks_t temp
=0;
1223 xfs_filblks_t temp2
=0;
1229 * Set up a bunch of variables to make the tests simpler.
1233 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
1234 ep
= xfs_iext_get_ext(ifp
, idx
);
1235 xfs_bmbt_get_all(ep
, &PREV
);
1236 newext
= new->br_state
;
1237 oldext
= (newext
== XFS_EXT_UNWRITTEN
) ?
1238 XFS_EXT_NORM
: XFS_EXT_UNWRITTEN
;
1239 ASSERT(PREV
.br_state
== oldext
);
1240 new_endoff
= new->br_startoff
+ new->br_blockcount
;
1241 ASSERT(PREV
.br_startoff
<= new->br_startoff
);
1242 ASSERT(PREV
.br_startoff
+ PREV
.br_blockcount
>= new_endoff
);
1245 * Set flags determining what part of the previous oldext allocation
1246 * extent is being replaced by a newext allocation.
1248 if (PREV
.br_startoff
== new->br_startoff
)
1249 state
|= BMAP_LEFT_FILLING
;
1250 if (PREV
.br_startoff
+ PREV
.br_blockcount
== new_endoff
)
1251 state
|= BMAP_RIGHT_FILLING
;
1254 * Check and set flags if this segment has a left neighbor.
1255 * Don't set contiguous if the combined extent would be too large.
1258 state
|= BMAP_LEFT_VALID
;
1259 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
- 1), &LEFT
);
1261 if (isnullstartblock(LEFT
.br_startblock
))
1262 state
|= BMAP_LEFT_DELAY
;
1265 if ((state
& BMAP_LEFT_VALID
) && !(state
& BMAP_LEFT_DELAY
) &&
1266 LEFT
.br_startoff
+ LEFT
.br_blockcount
== new->br_startoff
&&
1267 LEFT
.br_startblock
+ LEFT
.br_blockcount
== new->br_startblock
&&
1268 LEFT
.br_state
== newext
&&
1269 LEFT
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
1270 state
|= BMAP_LEFT_CONTIG
;
1273 * Check and set flags if this segment has a right neighbor.
1274 * Don't set contiguous if the combined extent would be too large.
1275 * Also check for all-three-contiguous being too large.
1277 if (idx
< ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
) - 1) {
1278 state
|= BMAP_RIGHT_VALID
;
1279 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
+ 1), &RIGHT
);
1280 if (isnullstartblock(RIGHT
.br_startblock
))
1281 state
|= BMAP_RIGHT_DELAY
;
1284 if ((state
& BMAP_RIGHT_VALID
) && !(state
& BMAP_RIGHT_DELAY
) &&
1285 new_endoff
== RIGHT
.br_startoff
&&
1286 new->br_startblock
+ new->br_blockcount
== RIGHT
.br_startblock
&&
1287 newext
== RIGHT
.br_state
&&
1288 new->br_blockcount
+ RIGHT
.br_blockcount
<= MAXEXTLEN
&&
1289 ((state
& (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
1290 BMAP_RIGHT_FILLING
)) !=
1291 (BMAP_LEFT_CONTIG
| BMAP_LEFT_FILLING
|
1292 BMAP_RIGHT_FILLING
) ||
1293 LEFT
.br_blockcount
+ new->br_blockcount
+ RIGHT
.br_blockcount
1295 state
|= BMAP_RIGHT_CONTIG
;
1298 * Switch out based on the FILLING and CONTIG state bits.
1300 switch (state
& (BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
1301 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
)) {
1302 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
|
1303 BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
1305 * Setting all of a previous oldext extent to newext.
1306 * The left and right neighbors are both contiguous with new.
1308 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
1309 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
1310 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
1311 RIGHT
.br_blockcount
);
1312 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
1314 xfs_iext_remove(ip
, idx
, 2, state
);
1315 ip
->i_df
.if_lastex
= idx
- 1;
1316 ip
->i_d
.di_nextents
-= 2;
1318 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1320 rval
= XFS_ILOG_CORE
;
1321 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
1322 RIGHT
.br_startblock
,
1323 RIGHT
.br_blockcount
, &i
)))
1325 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1326 if ((error
= xfs_btree_delete(cur
, &i
)))
1328 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1329 if ((error
= xfs_btree_decrement(cur
, 0, &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
, LEFT
.br_startoff
,
1340 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
1341 RIGHT
.br_blockcount
, LEFT
.br_state
)))
1344 /* DELTA: Three in-core extents are replaced by one. */
1345 temp
= LEFT
.br_startoff
;
1346 temp2
= LEFT
.br_blockcount
+
1347 PREV
.br_blockcount
+
1348 RIGHT
.br_blockcount
;
1351 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
1353 * Setting all of a previous oldext extent to newext.
1354 * The left neighbor is contiguous, the right is not.
1356 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
1357 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
1358 LEFT
.br_blockcount
+ PREV
.br_blockcount
);
1359 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
1361 ip
->i_df
.if_lastex
= idx
- 1;
1362 xfs_iext_remove(ip
, idx
, 1, state
);
1363 ip
->i_d
.di_nextents
--;
1365 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1367 rval
= XFS_ILOG_CORE
;
1368 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1369 PREV
.br_startblock
, PREV
.br_blockcount
,
1372 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1373 if ((error
= xfs_btree_delete(cur
, &i
)))
1375 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1376 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
1378 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1379 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
1381 LEFT
.br_blockcount
+ PREV
.br_blockcount
,
1385 /* DELTA: Two in-core extents are replaced by one. */
1386 temp
= LEFT
.br_startoff
;
1387 temp2
= LEFT
.br_blockcount
+
1391 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
1393 * Setting all of a previous oldext extent to newext.
1394 * The right neighbor is contiguous, the left is not.
1396 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1397 xfs_bmbt_set_blockcount(ep
,
1398 PREV
.br_blockcount
+ RIGHT
.br_blockcount
);
1399 xfs_bmbt_set_state(ep
, newext
);
1400 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1401 ip
->i_df
.if_lastex
= idx
;
1402 xfs_iext_remove(ip
, idx
+ 1, 1, state
);
1403 ip
->i_d
.di_nextents
--;
1405 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1407 rval
= XFS_ILOG_CORE
;
1408 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
1409 RIGHT
.br_startblock
,
1410 RIGHT
.br_blockcount
, &i
)))
1412 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1413 if ((error
= xfs_btree_delete(cur
, &i
)))
1415 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1416 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
1418 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1419 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1421 new->br_blockcount
+ RIGHT
.br_blockcount
,
1425 /* DELTA: Two in-core extents are replaced by one. */
1426 temp
= PREV
.br_startoff
;
1427 temp2
= PREV
.br_blockcount
+
1428 RIGHT
.br_blockcount
;
1431 case BMAP_LEFT_FILLING
| BMAP_RIGHT_FILLING
:
1433 * Setting all of a previous oldext extent to newext.
1434 * Neither the left nor right neighbors are contiguous with
1437 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1438 xfs_bmbt_set_state(ep
, newext
);
1439 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1441 ip
->i_df
.if_lastex
= idx
;
1443 rval
= XFS_ILOG_DEXT
;
1446 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1447 new->br_startblock
, new->br_blockcount
,
1450 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1451 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1452 new->br_startblock
, new->br_blockcount
,
1456 /* DELTA: The in-core extent described by new changed type. */
1457 temp
= new->br_startoff
;
1458 temp2
= new->br_blockcount
;
1461 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
:
1463 * Setting the first part of a previous oldext extent to newext.
1464 * The left neighbor is contiguous.
1466 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
1467 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
1468 LEFT
.br_blockcount
+ new->br_blockcount
);
1469 xfs_bmbt_set_startoff(ep
,
1470 PREV
.br_startoff
+ new->br_blockcount
);
1471 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
1473 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1474 xfs_bmbt_set_startblock(ep
,
1475 new->br_startblock
+ new->br_blockcount
);
1476 xfs_bmbt_set_blockcount(ep
,
1477 PREV
.br_blockcount
- new->br_blockcount
);
1478 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1480 ip
->i_df
.if_lastex
= idx
- 1;
1482 rval
= XFS_ILOG_DEXT
;
1485 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1486 PREV
.br_startblock
, PREV
.br_blockcount
,
1489 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1490 if ((error
= xfs_bmbt_update(cur
,
1491 PREV
.br_startoff
+ new->br_blockcount
,
1492 PREV
.br_startblock
+ new->br_blockcount
,
1493 PREV
.br_blockcount
- new->br_blockcount
,
1496 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
1498 if (xfs_bmbt_update(cur
, LEFT
.br_startoff
,
1500 LEFT
.br_blockcount
+ new->br_blockcount
,
1504 /* DELTA: The boundary between two in-core extents moved. */
1505 temp
= LEFT
.br_startoff
;
1506 temp2
= LEFT
.br_blockcount
+
1510 case BMAP_LEFT_FILLING
:
1512 * Setting the first part of a previous oldext extent to newext.
1513 * The left neighbor is not contiguous.
1515 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1516 ASSERT(ep
&& xfs_bmbt_get_state(ep
) == oldext
);
1517 xfs_bmbt_set_startoff(ep
, new_endoff
);
1518 xfs_bmbt_set_blockcount(ep
,
1519 PREV
.br_blockcount
- new->br_blockcount
);
1520 xfs_bmbt_set_startblock(ep
,
1521 new->br_startblock
+ new->br_blockcount
);
1522 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1524 xfs_iext_insert(ip
, idx
, 1, new, state
);
1525 ip
->i_df
.if_lastex
= idx
;
1526 ip
->i_d
.di_nextents
++;
1528 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1530 rval
= XFS_ILOG_CORE
;
1531 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1532 PREV
.br_startblock
, PREV
.br_blockcount
,
1535 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1536 if ((error
= xfs_bmbt_update(cur
,
1537 PREV
.br_startoff
+ new->br_blockcount
,
1538 PREV
.br_startblock
+ new->br_blockcount
,
1539 PREV
.br_blockcount
- new->br_blockcount
,
1542 cur
->bc_rec
.b
= *new;
1543 if ((error
= xfs_btree_insert(cur
, &i
)))
1545 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1547 /* DELTA: One in-core extent is split in two. */
1548 temp
= PREV
.br_startoff
;
1549 temp2
= PREV
.br_blockcount
;
1552 case BMAP_RIGHT_FILLING
| BMAP_RIGHT_CONTIG
:
1554 * Setting the last part of a previous oldext extent to newext.
1555 * The right neighbor is contiguous with the new allocation.
1557 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1558 trace_xfs_bmap_pre_update(ip
, idx
+ 1, state
, _THIS_IP_
);
1559 xfs_bmbt_set_blockcount(ep
,
1560 PREV
.br_blockcount
- new->br_blockcount
);
1561 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1562 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, idx
+ 1),
1563 new->br_startoff
, new->br_startblock
,
1564 new->br_blockcount
+ RIGHT
.br_blockcount
, newext
);
1565 trace_xfs_bmap_post_update(ip
, idx
+ 1, state
, _THIS_IP_
);
1567 ip
->i_df
.if_lastex
= idx
+ 1;
1569 rval
= XFS_ILOG_DEXT
;
1572 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1574 PREV
.br_blockcount
, &i
)))
1576 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1577 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
1579 PREV
.br_blockcount
- new->br_blockcount
,
1582 if ((error
= xfs_btree_increment(cur
, 0, &i
)))
1584 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1586 new->br_blockcount
+ RIGHT
.br_blockcount
,
1590 /* DELTA: The boundary between two in-core extents moved. */
1591 temp
= PREV
.br_startoff
;
1592 temp2
= PREV
.br_blockcount
+
1593 RIGHT
.br_blockcount
;
1596 case BMAP_RIGHT_FILLING
:
1598 * Setting the last part of a previous oldext extent to newext.
1599 * The right neighbor is not contiguous.
1601 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1602 xfs_bmbt_set_blockcount(ep
,
1603 PREV
.br_blockcount
- new->br_blockcount
);
1604 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1606 xfs_iext_insert(ip
, idx
+ 1, 1, new, state
);
1607 ip
->i_df
.if_lastex
= idx
+ 1;
1608 ip
->i_d
.di_nextents
++;
1610 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1612 rval
= XFS_ILOG_CORE
;
1613 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1614 PREV
.br_startblock
, PREV
.br_blockcount
,
1617 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1618 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
1620 PREV
.br_blockcount
- new->br_blockcount
,
1623 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1624 new->br_startblock
, new->br_blockcount
,
1627 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
1628 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1629 if ((error
= xfs_btree_insert(cur
, &i
)))
1631 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1633 /* DELTA: One in-core extent is split in two. */
1634 temp
= PREV
.br_startoff
;
1635 temp2
= PREV
.br_blockcount
;
1640 * Setting the middle part of a previous oldext extent to
1641 * newext. Contiguity is impossible here.
1642 * One extent becomes three extents.
1644 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1645 xfs_bmbt_set_blockcount(ep
,
1646 new->br_startoff
- PREV
.br_startoff
);
1647 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1650 r
[1].br_startoff
= new_endoff
;
1651 r
[1].br_blockcount
=
1652 PREV
.br_startoff
+ PREV
.br_blockcount
- new_endoff
;
1653 r
[1].br_startblock
= new->br_startblock
+ new->br_blockcount
;
1654 r
[1].br_state
= oldext
;
1655 xfs_iext_insert(ip
, idx
+ 1, 2, &r
[0], state
);
1656 ip
->i_df
.if_lastex
= idx
+ 1;
1657 ip
->i_d
.di_nextents
+= 2;
1659 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1661 rval
= XFS_ILOG_CORE
;
1662 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1663 PREV
.br_startblock
, PREV
.br_blockcount
,
1666 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1667 /* new right extent - oldext */
1668 if ((error
= xfs_bmbt_update(cur
, r
[1].br_startoff
,
1669 r
[1].br_startblock
, r
[1].br_blockcount
,
1672 /* new left extent - oldext */
1673 cur
->bc_rec
.b
= PREV
;
1674 cur
->bc_rec
.b
.br_blockcount
=
1675 new->br_startoff
- PREV
.br_startoff
;
1676 if ((error
= xfs_btree_insert(cur
, &i
)))
1678 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1680 * Reset the cursor to the position of the new extent
1681 * we are about to insert as we can't trust it after
1682 * the previous insert.
1684 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1685 new->br_startblock
, new->br_blockcount
,
1688 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
1689 /* new middle extent - newext */
1690 cur
->bc_rec
.b
.br_state
= new->br_state
;
1691 if ((error
= xfs_btree_insert(cur
, &i
)))
1693 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
1695 /* DELTA: One in-core extent is split in three. */
1696 temp
= PREV
.br_startoff
;
1697 temp2
= PREV
.br_blockcount
;
1700 case BMAP_LEFT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1701 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1702 case BMAP_LEFT_FILLING
| BMAP_RIGHT_CONTIG
:
1703 case BMAP_RIGHT_FILLING
| BMAP_LEFT_CONTIG
:
1704 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1705 case BMAP_LEFT_CONTIG
:
1706 case BMAP_RIGHT_CONTIG
:
1708 * These cases are all impossible.
1715 if (delta
->xed_startoff
> temp
)
1716 delta
->xed_startoff
= temp
;
1717 if (delta
->xed_blockcount
< temp2
)
1718 delta
->xed_blockcount
= temp2
;
1729 * Called by xfs_bmap_add_extent to handle cases converting a hole
1730 * to a delayed allocation.
1733 STATIC
int /* error */
1734 xfs_bmap_add_extent_hole_delay(
1735 xfs_inode_t
*ip
, /* incore inode pointer */
1736 xfs_extnum_t idx
, /* extent number to update/insert */
1737 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
1738 int *logflagsp
, /* inode logging flags */
1739 xfs_extdelta_t
*delta
, /* Change made to incore extents */
1740 int rsvd
) /* OK to allocate reserved blocks */
1742 xfs_bmbt_rec_host_t
*ep
; /* extent record for idx */
1743 xfs_ifork_t
*ifp
; /* inode fork pointer */
1744 xfs_bmbt_irec_t left
; /* left neighbor extent entry */
1745 xfs_filblks_t newlen
=0; /* new indirect size */
1746 xfs_filblks_t oldlen
=0; /* old indirect size */
1747 xfs_bmbt_irec_t right
; /* right neighbor extent entry */
1748 int state
; /* state bits, accessed thru macros */
1749 xfs_filblks_t temp
=0; /* temp for indirect calculations */
1750 xfs_filblks_t temp2
=0;
1752 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
1753 ep
= xfs_iext_get_ext(ifp
, idx
);
1755 ASSERT(isnullstartblock(new->br_startblock
));
1758 * Check and set flags if this segment has a left neighbor
1761 state
|= BMAP_LEFT_VALID
;
1762 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
- 1), &left
);
1764 if (isnullstartblock(left
.br_startblock
))
1765 state
|= BMAP_LEFT_DELAY
;
1769 * Check and set flags if the current (right) segment exists.
1770 * If it doesn't exist, we're converting the hole at end-of-file.
1772 if (idx
< ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)) {
1773 state
|= BMAP_RIGHT_VALID
;
1774 xfs_bmbt_get_all(ep
, &right
);
1776 if (isnullstartblock(right
.br_startblock
))
1777 state
|= BMAP_RIGHT_DELAY
;
1781 * Set contiguity flags on the left and right neighbors.
1782 * Don't let extents get too large, even if the pieces are contiguous.
1784 if ((state
& BMAP_LEFT_VALID
) && (state
& BMAP_LEFT_DELAY
) &&
1785 left
.br_startoff
+ left
.br_blockcount
== new->br_startoff
&&
1786 left
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
1787 state
|= BMAP_LEFT_CONTIG
;
1789 if ((state
& BMAP_RIGHT_VALID
) && (state
& BMAP_RIGHT_DELAY
) &&
1790 new->br_startoff
+ new->br_blockcount
== right
.br_startoff
&&
1791 new->br_blockcount
+ right
.br_blockcount
<= MAXEXTLEN
&&
1792 (!(state
& BMAP_LEFT_CONTIG
) ||
1793 (left
.br_blockcount
+ new->br_blockcount
+
1794 right
.br_blockcount
<= MAXEXTLEN
)))
1795 state
|= BMAP_RIGHT_CONTIG
;
1798 * Switch out based on the contiguity flags.
1800 switch (state
& (BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
)) {
1801 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1803 * New allocation is contiguous with delayed allocations
1804 * on the left and on the right.
1805 * Merge all three into a single extent record.
1807 temp
= left
.br_blockcount
+ new->br_blockcount
+
1808 right
.br_blockcount
;
1810 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
1811 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1), temp
);
1812 oldlen
= startblockval(left
.br_startblock
) +
1813 startblockval(new->br_startblock
) +
1814 startblockval(right
.br_startblock
);
1815 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
1816 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, idx
- 1),
1817 nullstartblock((int)newlen
));
1818 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
1820 xfs_iext_remove(ip
, idx
, 1, state
);
1821 ip
->i_df
.if_lastex
= idx
- 1;
1822 /* DELTA: Two in-core extents were replaced by one. */
1824 temp
= left
.br_startoff
;
1827 case BMAP_LEFT_CONTIG
:
1829 * New allocation is contiguous with a delayed allocation
1831 * Merge the new allocation with the left neighbor.
1833 temp
= left
.br_blockcount
+ new->br_blockcount
;
1834 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
1835 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1), temp
);
1836 oldlen
= startblockval(left
.br_startblock
) +
1837 startblockval(new->br_startblock
);
1838 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
1839 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, idx
- 1),
1840 nullstartblock((int)newlen
));
1841 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
1843 ip
->i_df
.if_lastex
= idx
- 1;
1844 /* DELTA: One in-core extent grew into a hole. */
1846 temp
= left
.br_startoff
;
1849 case BMAP_RIGHT_CONTIG
:
1851 * New allocation is contiguous with a delayed allocation
1853 * Merge the new allocation with the right neighbor.
1855 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
1856 temp
= new->br_blockcount
+ right
.br_blockcount
;
1857 oldlen
= startblockval(new->br_startblock
) +
1858 startblockval(right
.br_startblock
);
1859 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
1860 xfs_bmbt_set_allf(ep
, new->br_startoff
,
1861 nullstartblock((int)newlen
), temp
, right
.br_state
);
1862 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
1864 ip
->i_df
.if_lastex
= idx
;
1865 /* DELTA: One in-core extent grew into a hole. */
1867 temp
= new->br_startoff
;
1872 * New allocation is not contiguous with another
1873 * delayed allocation.
1874 * Insert a new entry.
1876 oldlen
= newlen
= 0;
1877 xfs_iext_insert(ip
, idx
, 1, new, state
);
1878 ip
->i_df
.if_lastex
= idx
;
1879 /* DELTA: A new in-core extent was added in a hole. */
1880 temp2
= new->br_blockcount
;
1881 temp
= new->br_startoff
;
1884 if (oldlen
!= newlen
) {
1885 ASSERT(oldlen
> newlen
);
1886 xfs_mod_incore_sb(ip
->i_mount
, XFS_SBS_FDBLOCKS
,
1887 (int64_t)(oldlen
- newlen
), rsvd
);
1889 * Nothing to do for disk quota accounting here.
1894 if (delta
->xed_startoff
> temp
)
1895 delta
->xed_startoff
= temp
;
1896 if (delta
->xed_blockcount
< temp2
)
1897 delta
->xed_blockcount
= temp2
;
1904 * Called by xfs_bmap_add_extent to handle cases converting a hole
1905 * to a real allocation.
1907 STATIC
int /* error */
1908 xfs_bmap_add_extent_hole_real(
1909 xfs_inode_t
*ip
, /* incore inode pointer */
1910 xfs_extnum_t idx
, /* extent number to update/insert */
1911 xfs_btree_cur_t
*cur
, /* if null, not a btree */
1912 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
1913 int *logflagsp
, /* inode logging flags */
1914 xfs_extdelta_t
*delta
, /* Change made to incore extents */
1915 int whichfork
) /* data or attr fork */
1917 xfs_bmbt_rec_host_t
*ep
; /* pointer to extent entry ins. point */
1918 int error
; /* error return value */
1919 int i
; /* temp state */
1920 xfs_ifork_t
*ifp
; /* inode fork pointer */
1921 xfs_bmbt_irec_t left
; /* left neighbor extent entry */
1922 xfs_bmbt_irec_t right
; /* right neighbor extent entry */
1923 int rval
=0; /* return value (logging flags) */
1924 int state
; /* state bits, accessed thru macros */
1925 xfs_filblks_t temp
=0;
1926 xfs_filblks_t temp2
=0;
1928 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
1929 ASSERT(idx
<= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
));
1930 ep
= xfs_iext_get_ext(ifp
, idx
);
1933 if (whichfork
== XFS_ATTR_FORK
)
1934 state
|= BMAP_ATTRFORK
;
1937 * Check and set flags if this segment has a left neighbor.
1940 state
|= BMAP_LEFT_VALID
;
1941 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
- 1), &left
);
1942 if (isnullstartblock(left
.br_startblock
))
1943 state
|= BMAP_LEFT_DELAY
;
1947 * Check and set flags if this segment has a current value.
1948 * Not true if we're inserting into the "hole" at eof.
1950 if (idx
< ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)) {
1951 state
|= BMAP_RIGHT_VALID
;
1952 xfs_bmbt_get_all(ep
, &right
);
1953 if (isnullstartblock(right
.br_startblock
))
1954 state
|= BMAP_RIGHT_DELAY
;
1958 * We're inserting a real allocation between "left" and "right".
1959 * Set the contiguity flags. Don't let extents get too large.
1961 if ((state
& BMAP_LEFT_VALID
) && !(state
& BMAP_LEFT_DELAY
) &&
1962 left
.br_startoff
+ left
.br_blockcount
== new->br_startoff
&&
1963 left
.br_startblock
+ left
.br_blockcount
== new->br_startblock
&&
1964 left
.br_state
== new->br_state
&&
1965 left
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
)
1966 state
|= BMAP_LEFT_CONTIG
;
1968 if ((state
& BMAP_RIGHT_VALID
) && !(state
& BMAP_RIGHT_DELAY
) &&
1969 new->br_startoff
+ new->br_blockcount
== right
.br_startoff
&&
1970 new->br_startblock
+ new->br_blockcount
== right
.br_startblock
&&
1971 new->br_state
== right
.br_state
&&
1972 new->br_blockcount
+ right
.br_blockcount
<= MAXEXTLEN
&&
1973 (!(state
& BMAP_LEFT_CONTIG
) ||
1974 left
.br_blockcount
+ new->br_blockcount
+
1975 right
.br_blockcount
<= MAXEXTLEN
))
1976 state
|= BMAP_RIGHT_CONTIG
;
1980 * Select which case we're in here, and implement it.
1982 switch (state
& (BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
)) {
1983 case BMAP_LEFT_CONTIG
| BMAP_RIGHT_CONTIG
:
1985 * New allocation is contiguous with real allocations on the
1986 * left and on the right.
1987 * Merge all three into a single extent record.
1989 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
1990 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
1991 left
.br_blockcount
+ new->br_blockcount
+
1992 right
.br_blockcount
);
1993 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
1995 xfs_iext_remove(ip
, idx
, 1, state
);
1996 ifp
->if_lastex
= idx
- 1;
1997 XFS_IFORK_NEXT_SET(ip
, whichfork
,
1998 XFS_IFORK_NEXTENTS(ip
, whichfork
) - 1);
2000 rval
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
2002 rval
= XFS_ILOG_CORE
;
2003 if ((error
= xfs_bmbt_lookup_eq(cur
,
2005 right
.br_startblock
,
2006 right
.br_blockcount
, &i
)))
2008 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2009 if ((error
= xfs_btree_delete(cur
, &i
)))
2011 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2012 if ((error
= xfs_btree_decrement(cur
, 0, &i
)))
2014 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2015 if ((error
= xfs_bmbt_update(cur
, left
.br_startoff
,
2017 left
.br_blockcount
+
2018 new->br_blockcount
+
2019 right
.br_blockcount
,
2023 /* DELTA: Two in-core extents were replaced by one. */
2024 temp
= left
.br_startoff
;
2025 temp2
= left
.br_blockcount
+
2026 new->br_blockcount
+
2027 right
.br_blockcount
;
2030 case BMAP_LEFT_CONTIG
:
2032 * New allocation is contiguous with a real allocation
2034 * Merge the new allocation with the left neighbor.
2036 trace_xfs_bmap_pre_update(ip
, idx
- 1, state
, _THIS_IP_
);
2037 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
2038 left
.br_blockcount
+ new->br_blockcount
);
2039 trace_xfs_bmap_post_update(ip
, idx
- 1, state
, _THIS_IP_
);
2041 ifp
->if_lastex
= idx
- 1;
2043 rval
= xfs_ilog_fext(whichfork
);
2046 if ((error
= xfs_bmbt_lookup_eq(cur
,
2049 left
.br_blockcount
, &i
)))
2051 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2052 if ((error
= xfs_bmbt_update(cur
, left
.br_startoff
,
2054 left
.br_blockcount
+
2059 /* DELTA: One in-core extent grew. */
2060 temp
= left
.br_startoff
;
2061 temp2
= left
.br_blockcount
+
2065 case BMAP_RIGHT_CONTIG
:
2067 * New allocation is contiguous with a real allocation
2069 * Merge the new allocation with the right neighbor.
2071 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
2072 xfs_bmbt_set_allf(ep
, new->br_startoff
, new->br_startblock
,
2073 new->br_blockcount
+ right
.br_blockcount
,
2075 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
2077 ifp
->if_lastex
= idx
;
2079 rval
= xfs_ilog_fext(whichfork
);
2082 if ((error
= xfs_bmbt_lookup_eq(cur
,
2084 right
.br_startblock
,
2085 right
.br_blockcount
, &i
)))
2087 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2088 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
2090 new->br_blockcount
+
2091 right
.br_blockcount
,
2095 /* DELTA: One in-core extent grew. */
2096 temp
= new->br_startoff
;
2097 temp2
= new->br_blockcount
+
2098 right
.br_blockcount
;
2103 * New allocation is not contiguous with another
2105 * Insert a new entry.
2107 xfs_iext_insert(ip
, idx
, 1, new, state
);
2108 ifp
->if_lastex
= idx
;
2109 XFS_IFORK_NEXT_SET(ip
, whichfork
,
2110 XFS_IFORK_NEXTENTS(ip
, whichfork
) + 1);
2112 rval
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
2114 rval
= XFS_ILOG_CORE
;
2115 if ((error
= xfs_bmbt_lookup_eq(cur
,
2118 new->br_blockcount
, &i
)))
2120 XFS_WANT_CORRUPTED_GOTO(i
== 0, done
);
2121 cur
->bc_rec
.b
.br_state
= new->br_state
;
2122 if ((error
= xfs_btree_insert(cur
, &i
)))
2124 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
2126 /* DELTA: A new extent was added in a hole. */
2127 temp
= new->br_startoff
;
2128 temp2
= new->br_blockcount
;
2133 if (delta
->xed_startoff
> temp
)
2134 delta
->xed_startoff
= temp
;
2135 if (delta
->xed_blockcount
< temp2
)
2136 delta
->xed_blockcount
= temp2
;
2144 * Adjust the size of the new extent based on di_extsize and rt extsize.
2147 xfs_bmap_extsize_align(
2149 xfs_bmbt_irec_t
*gotp
, /* next extent pointer */
2150 xfs_bmbt_irec_t
*prevp
, /* previous extent pointer */
2151 xfs_extlen_t extsz
, /* align to this extent size */
2152 int rt
, /* is this a realtime inode? */
2153 int eof
, /* is extent at end-of-file? */
2154 int delay
, /* creating delalloc extent? */
2155 int convert
, /* overwriting unwritten extent? */
2156 xfs_fileoff_t
*offp
, /* in/out: aligned offset */
2157 xfs_extlen_t
*lenp
) /* in/out: aligned length */
2159 xfs_fileoff_t orig_off
; /* original offset */
2160 xfs_extlen_t orig_alen
; /* original length */
2161 xfs_fileoff_t orig_end
; /* original off+len */
2162 xfs_fileoff_t nexto
; /* next file offset */
2163 xfs_fileoff_t prevo
; /* previous file offset */
2164 xfs_fileoff_t align_off
; /* temp for offset */
2165 xfs_extlen_t align_alen
; /* temp for length */
2166 xfs_extlen_t temp
; /* temp for calculations */
2171 orig_off
= align_off
= *offp
;
2172 orig_alen
= align_alen
= *lenp
;
2173 orig_end
= orig_off
+ orig_alen
;
2176 * If this request overlaps an existing extent, then don't
2177 * attempt to perform any additional alignment.
2179 if (!delay
&& !eof
&&
2180 (orig_off
>= gotp
->br_startoff
) &&
2181 (orig_end
<= gotp
->br_startoff
+ gotp
->br_blockcount
)) {
2186 * If the file offset is unaligned vs. the extent size
2187 * we need to align it. This will be possible unless
2188 * the file was previously written with a kernel that didn't
2189 * perform this alignment, or if a truncate shot us in the
2192 temp
= do_mod(orig_off
, extsz
);
2198 * Same adjustment for the end of the requested area.
2200 if ((temp
= (align_alen
% extsz
))) {
2201 align_alen
+= extsz
- temp
;
2204 * If the previous block overlaps with this proposed allocation
2205 * then move the start forward without adjusting the length.
2207 if (prevp
->br_startoff
!= NULLFILEOFF
) {
2208 if (prevp
->br_startblock
== HOLESTARTBLOCK
)
2209 prevo
= prevp
->br_startoff
;
2211 prevo
= prevp
->br_startoff
+ prevp
->br_blockcount
;
2214 if (align_off
!= orig_off
&& align_off
< prevo
)
2217 * If the next block overlaps with this proposed allocation
2218 * then move the start back without adjusting the length,
2219 * but not before offset 0.
2220 * This may of course make the start overlap previous block,
2221 * and if we hit the offset 0 limit then the next block
2222 * can still overlap too.
2224 if (!eof
&& gotp
->br_startoff
!= NULLFILEOFF
) {
2225 if ((delay
&& gotp
->br_startblock
== HOLESTARTBLOCK
) ||
2226 (!delay
&& gotp
->br_startblock
== DELAYSTARTBLOCK
))
2227 nexto
= gotp
->br_startoff
+ gotp
->br_blockcount
;
2229 nexto
= gotp
->br_startoff
;
2231 nexto
= NULLFILEOFF
;
2233 align_off
+ align_alen
!= orig_end
&&
2234 align_off
+ align_alen
> nexto
)
2235 align_off
= nexto
> align_alen
? nexto
- align_alen
: 0;
2237 * If we're now overlapping the next or previous extent that
2238 * means we can't fit an extsz piece in this hole. Just move
2239 * the start forward to the first valid spot and set
2240 * the length so we hit the end.
2242 if (align_off
!= orig_off
&& align_off
< prevo
)
2244 if (align_off
+ align_alen
!= orig_end
&&
2245 align_off
+ align_alen
> nexto
&&
2246 nexto
!= NULLFILEOFF
) {
2247 ASSERT(nexto
> prevo
);
2248 align_alen
= nexto
- align_off
;
2252 * If realtime, and the result isn't a multiple of the realtime
2253 * extent size we need to remove blocks until it is.
2255 if (rt
&& (temp
= (align_alen
% mp
->m_sb
.sb_rextsize
))) {
2257 * We're not covering the original request, or
2258 * we won't be able to once we fix the length.
2260 if (orig_off
< align_off
||
2261 orig_end
> align_off
+ align_alen
||
2262 align_alen
- temp
< orig_alen
)
2263 return XFS_ERROR(EINVAL
);
2265 * Try to fix it by moving the start up.
2267 if (align_off
+ temp
<= orig_off
) {
2272 * Try to fix it by moving the end in.
2274 else if (align_off
+ align_alen
- temp
>= orig_end
)
2277 * Set the start to the minimum then trim the length.
2280 align_alen
-= orig_off
- align_off
;
2281 align_off
= orig_off
;
2282 align_alen
-= align_alen
% mp
->m_sb
.sb_rextsize
;
2285 * Result doesn't cover the request, fail it.
2287 if (orig_off
< align_off
|| orig_end
> align_off
+ align_alen
)
2288 return XFS_ERROR(EINVAL
);
2290 ASSERT(orig_off
>= align_off
);
2291 ASSERT(orig_end
<= align_off
+ align_alen
);
2295 if (!eof
&& gotp
->br_startoff
!= NULLFILEOFF
)
2296 ASSERT(align_off
+ align_alen
<= gotp
->br_startoff
);
2297 if (prevp
->br_startoff
!= NULLFILEOFF
)
2298 ASSERT(align_off
>= prevp
->br_startoff
+ prevp
->br_blockcount
);
2306 #define XFS_ALLOC_GAP_UNITS 4
2310 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2312 xfs_fsblock_t adjust
; /* adjustment to block numbers */
2313 xfs_agnumber_t fb_agno
; /* ag number of ap->firstblock */
2314 xfs_mount_t
*mp
; /* mount point structure */
2315 int nullfb
; /* true if ap->firstblock isn't set */
2316 int rt
; /* true if inode is realtime */
2318 #define ISVALID(x,y) \
2320 (x) < mp->m_sb.sb_rblocks : \
2321 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
2322 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
2323 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
2325 mp
= ap
->ip
->i_mount
;
2326 nullfb
= ap
->firstblock
== NULLFSBLOCK
;
2327 rt
= XFS_IS_REALTIME_INODE(ap
->ip
) && ap
->userdata
;
2328 fb_agno
= nullfb
? NULLAGNUMBER
: XFS_FSB_TO_AGNO(mp
, ap
->firstblock
);
2330 * If allocating at eof, and there's a previous real block,
2331 * try to use its last block as our starting point.
2333 if (ap
->eof
&& ap
->prevp
->br_startoff
!= NULLFILEOFF
&&
2334 !isnullstartblock(ap
->prevp
->br_startblock
) &&
2335 ISVALID(ap
->prevp
->br_startblock
+ ap
->prevp
->br_blockcount
,
2336 ap
->prevp
->br_startblock
)) {
2337 ap
->rval
= ap
->prevp
->br_startblock
+ ap
->prevp
->br_blockcount
;
2339 * Adjust for the gap between prevp and us.
2342 (ap
->prevp
->br_startoff
+ ap
->prevp
->br_blockcount
);
2344 ISVALID(ap
->rval
+ adjust
, ap
->prevp
->br_startblock
))
2348 * If not at eof, then compare the two neighbor blocks.
2349 * Figure out whether either one gives us a good starting point,
2350 * and pick the better one.
2352 else if (!ap
->eof
) {
2353 xfs_fsblock_t gotbno
; /* right side block number */
2354 xfs_fsblock_t gotdiff
=0; /* right side difference */
2355 xfs_fsblock_t prevbno
; /* left side block number */
2356 xfs_fsblock_t prevdiff
=0; /* left side difference */
2359 * If there's a previous (left) block, select a requested
2360 * start block based on it.
2362 if (ap
->prevp
->br_startoff
!= NULLFILEOFF
&&
2363 !isnullstartblock(ap
->prevp
->br_startblock
) &&
2364 (prevbno
= ap
->prevp
->br_startblock
+
2365 ap
->prevp
->br_blockcount
) &&
2366 ISVALID(prevbno
, ap
->prevp
->br_startblock
)) {
2368 * Calculate gap to end of previous block.
2370 adjust
= prevdiff
= ap
->off
-
2371 (ap
->prevp
->br_startoff
+
2372 ap
->prevp
->br_blockcount
);
2374 * Figure the startblock based on the previous block's
2375 * end and the gap size.
2377 * If the gap is large relative to the piece we're
2378 * allocating, or using it gives us an invalid block
2379 * number, then just use the end of the previous block.
2381 if (prevdiff
<= XFS_ALLOC_GAP_UNITS
* ap
->alen
&&
2382 ISVALID(prevbno
+ prevdiff
,
2383 ap
->prevp
->br_startblock
))
2388 * If the firstblock forbids it, can't use it,
2391 if (!rt
&& !nullfb
&&
2392 XFS_FSB_TO_AGNO(mp
, prevbno
) != fb_agno
)
2393 prevbno
= NULLFSBLOCK
;
2396 * No previous block or can't follow it, just default.
2399 prevbno
= NULLFSBLOCK
;
2401 * If there's a following (right) block, select a requested
2402 * start block based on it.
2404 if (!isnullstartblock(ap
->gotp
->br_startblock
)) {
2406 * Calculate gap to start of next block.
2408 adjust
= gotdiff
= ap
->gotp
->br_startoff
- ap
->off
;
2410 * Figure the startblock based on the next block's
2411 * start and the gap size.
2413 gotbno
= ap
->gotp
->br_startblock
;
2416 * If the gap is large relative to the piece we're
2417 * allocating, or using it gives us an invalid block
2418 * number, then just use the start of the next block
2419 * offset by our length.
2421 if (gotdiff
<= XFS_ALLOC_GAP_UNITS
* ap
->alen
&&
2422 ISVALID(gotbno
- gotdiff
, gotbno
))
2424 else if (ISVALID(gotbno
- ap
->alen
, gotbno
)) {
2426 gotdiff
+= adjust
- ap
->alen
;
2430 * If the firstblock forbids it, can't use it,
2433 if (!rt
&& !nullfb
&&
2434 XFS_FSB_TO_AGNO(mp
, gotbno
) != fb_agno
)
2435 gotbno
= NULLFSBLOCK
;
2438 * No next block, just default.
2441 gotbno
= NULLFSBLOCK
;
2443 * If both valid, pick the better one, else the only good
2444 * one, else ap->rval is already set (to 0 or the inode block).
2446 if (prevbno
!= NULLFSBLOCK
&& gotbno
!= NULLFSBLOCK
)
2447 ap
->rval
= prevdiff
<= gotdiff
? prevbno
: gotbno
;
2448 else if (prevbno
!= NULLFSBLOCK
)
2450 else if (gotbno
!= NULLFSBLOCK
)
2458 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2460 xfs_alloctype_t atype
= 0; /* type for allocation routines */
2461 int error
; /* error return value */
2462 xfs_mount_t
*mp
; /* mount point structure */
2463 xfs_extlen_t prod
= 0; /* product factor for allocators */
2464 xfs_extlen_t ralen
= 0; /* realtime allocation length */
2465 xfs_extlen_t align
; /* minimum allocation alignment */
2468 mp
= ap
->ip
->i_mount
;
2469 align
= xfs_get_extsz_hint(ap
->ip
);
2470 prod
= align
/ mp
->m_sb
.sb_rextsize
;
2471 error
= xfs_bmap_extsize_align(mp
, ap
->gotp
, ap
->prevp
,
2472 align
, 1, ap
->eof
, 0,
2473 ap
->conv
, &ap
->off
, &ap
->alen
);
2477 ASSERT(ap
->alen
% mp
->m_sb
.sb_rextsize
== 0);
2480 * If the offset & length are not perfectly aligned
2481 * then kill prod, it will just get us in trouble.
2483 if (do_mod(ap
->off
, align
) || ap
->alen
% align
)
2486 * Set ralen to be the actual requested length in rtextents.
2488 ralen
= ap
->alen
/ mp
->m_sb
.sb_rextsize
;
2490 * If the old value was close enough to MAXEXTLEN that
2491 * we rounded up to it, cut it back so it's valid again.
2492 * Note that if it's a really large request (bigger than
2493 * MAXEXTLEN), we don't hear about that number, and can't
2494 * adjust the starting point to match it.
2496 if (ralen
* mp
->m_sb
.sb_rextsize
>= MAXEXTLEN
)
2497 ralen
= MAXEXTLEN
/ mp
->m_sb
.sb_rextsize
;
2499 * If it's an allocation to an empty file at offset 0,
2500 * pick an extent that will space things out in the rt area.
2502 if (ap
->eof
&& ap
->off
== 0) {
2503 xfs_rtblock_t
uninitialized_var(rtx
); /* realtime extent no */
2505 error
= xfs_rtpick_extent(mp
, ap
->tp
, ralen
, &rtx
);
2508 ap
->rval
= rtx
* mp
->m_sb
.sb_rextsize
;
2513 xfs_bmap_adjacent(ap
);
2516 * Realtime allocation, done through xfs_rtallocate_extent.
2518 atype
= ap
->rval
== 0 ? XFS_ALLOCTYPE_ANY_AG
: XFS_ALLOCTYPE_NEAR_BNO
;
2519 do_div(ap
->rval
, mp
->m_sb
.sb_rextsize
);
2522 if ((error
= xfs_rtallocate_extent(ap
->tp
, ap
->rval
, 1, ap
->alen
,
2523 &ralen
, atype
, ap
->wasdel
, prod
, &rtb
)))
2525 if (rtb
== NULLFSBLOCK
&& prod
> 1 &&
2526 (error
= xfs_rtallocate_extent(ap
->tp
, ap
->rval
, 1,
2527 ap
->alen
, &ralen
, atype
,
2528 ap
->wasdel
, 1, &rtb
)))
2531 if (ap
->rval
!= NULLFSBLOCK
) {
2532 ap
->rval
*= mp
->m_sb
.sb_rextsize
;
2533 ralen
*= mp
->m_sb
.sb_rextsize
;
2535 ap
->ip
->i_d
.di_nblocks
+= ralen
;
2536 xfs_trans_log_inode(ap
->tp
, ap
->ip
, XFS_ILOG_CORE
);
2538 ap
->ip
->i_delayed_blks
-= ralen
;
2540 * Adjust the disk quota also. This was reserved
2543 xfs_trans_mod_dquot_byino(ap
->tp
, ap
->ip
,
2544 ap
->wasdel
? XFS_TRANS_DQ_DELRTBCOUNT
:
2545 XFS_TRANS_DQ_RTBCOUNT
, (long) ralen
);
2553 xfs_bmap_btalloc_nullfb(
2554 struct xfs_bmalloca
*ap
,
2555 struct xfs_alloc_arg
*args
,
2558 struct xfs_mount
*mp
= ap
->ip
->i_mount
;
2559 struct xfs_perag
*pag
;
2560 xfs_agnumber_t ag
, startag
;
2564 if (ap
->userdata
&& xfs_inode_is_filestream(ap
->ip
))
2565 args
->type
= XFS_ALLOCTYPE_NEAR_BNO
;
2567 args
->type
= XFS_ALLOCTYPE_START_BNO
;
2568 args
->total
= ap
->total
;
2571 * Search for an allocation group with a single extent large enough
2572 * for the request. If one isn't found, then adjust the minimum
2573 * allocation size to the largest space found.
2575 startag
= ag
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
2576 if (startag
== NULLAGNUMBER
)
2579 pag
= xfs_perag_get(mp
, ag
);
2580 while (*blen
< ap
->alen
) {
2581 if (!pag
->pagf_init
) {
2582 error
= xfs_alloc_pagf_init(mp
, args
->tp
, ag
,
2583 XFS_ALLOC_FLAG_TRYLOCK
);
2591 * See xfs_alloc_fix_freelist...
2593 if (pag
->pagf_init
) {
2594 xfs_extlen_t longest
;
2595 longest
= xfs_alloc_longest_free_extent(mp
, pag
);
2596 if (*blen
< longest
)
2601 if (xfs_inode_is_filestream(ap
->ip
)) {
2602 if (*blen
>= ap
->alen
)
2607 * If startag is an invalid AG, we've
2608 * come here once before and
2609 * xfs_filestream_new_ag picked the
2610 * best currently available.
2612 * Don't continue looping, since we
2613 * could loop forever.
2615 if (startag
== NULLAGNUMBER
)
2618 error
= xfs_filestream_new_ag(ap
, &ag
);
2623 /* loop again to set 'blen'*/
2624 startag
= NULLAGNUMBER
;
2625 pag
= xfs_perag_get(mp
, ag
);
2629 if (++ag
== mp
->m_sb
.sb_agcount
)
2634 pag
= xfs_perag_get(mp
, ag
);
2639 * Since the above loop did a BUF_TRYLOCK, it is
2640 * possible that there is space for this request.
2642 if (notinit
|| *blen
< ap
->minlen
)
2643 args
->minlen
= ap
->minlen
;
2645 * If the best seen length is less than the request
2646 * length, use the best as the minimum.
2648 else if (*blen
< ap
->alen
)
2649 args
->minlen
= *blen
;
2651 * Otherwise we've seen an extent as big as alen,
2652 * use that as the minimum.
2655 args
->minlen
= ap
->alen
;
2658 * set the failure fallback case to look in the selected
2659 * AG as the stream may have moved.
2661 if (xfs_inode_is_filestream(ap
->ip
))
2662 ap
->rval
= args
->fsbno
= XFS_AGB_TO_FSB(mp
, ag
, 0);
2669 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2671 xfs_mount_t
*mp
; /* mount point structure */
2672 xfs_alloctype_t atype
= 0; /* type for allocation routines */
2673 xfs_extlen_t align
; /* minimum allocation alignment */
2674 xfs_agnumber_t fb_agno
; /* ag number of ap->firstblock */
2676 xfs_alloc_arg_t args
;
2678 xfs_extlen_t nextminlen
= 0;
2679 int nullfb
; /* true if ap->firstblock isn't set */
2684 mp
= ap
->ip
->i_mount
;
2685 align
= ap
->userdata
? xfs_get_extsz_hint(ap
->ip
) : 0;
2686 if (unlikely(align
)) {
2687 error
= xfs_bmap_extsize_align(mp
, ap
->gotp
, ap
->prevp
,
2688 align
, 0, ap
->eof
, 0, ap
->conv
,
2689 &ap
->off
, &ap
->alen
);
2693 nullfb
= ap
->firstblock
== NULLFSBLOCK
;
2694 fb_agno
= nullfb
? NULLAGNUMBER
: XFS_FSB_TO_AGNO(mp
, ap
->firstblock
);
2696 if (ap
->userdata
&& xfs_inode_is_filestream(ap
->ip
)) {
2697 ag
= xfs_filestream_lookup_ag(ap
->ip
);
2698 ag
= (ag
!= NULLAGNUMBER
) ? ag
: 0;
2699 ap
->rval
= XFS_AGB_TO_FSB(mp
, ag
, 0);
2701 ap
->rval
= XFS_INO_TO_FSB(mp
, ap
->ip
->i_ino
);
2704 ap
->rval
= ap
->firstblock
;
2706 xfs_bmap_adjacent(ap
);
2709 * If allowed, use ap->rval; otherwise must use firstblock since
2710 * it's in the right allocation group.
2712 if (nullfb
|| XFS_FSB_TO_AGNO(mp
, ap
->rval
) == fb_agno
)
2715 ap
->rval
= ap
->firstblock
;
2717 * Normal allocation, done through xfs_alloc_vextent.
2719 tryagain
= isaligned
= 0;
2722 args
.fsbno
= ap
->rval
;
2723 args
.maxlen
= MIN(ap
->alen
, mp
->m_sb
.sb_agblocks
);
2724 args
.firstblock
= ap
->firstblock
;
2727 error
= xfs_bmap_btalloc_nullfb(ap
, &args
, &blen
);
2730 } else if (ap
->low
) {
2731 if (xfs_inode_is_filestream(ap
->ip
))
2732 args
.type
= XFS_ALLOCTYPE_FIRST_AG
;
2734 args
.type
= XFS_ALLOCTYPE_START_BNO
;
2735 args
.total
= args
.minlen
= ap
->minlen
;
2737 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
2738 args
.total
= ap
->total
;
2739 args
.minlen
= ap
->minlen
;
2741 /* apply extent size hints if obtained earlier */
2742 if (unlikely(align
)) {
2744 if ((args
.mod
= (xfs_extlen_t
)do_mod(ap
->off
, args
.prod
)))
2745 args
.mod
= (xfs_extlen_t
)(args
.prod
- args
.mod
);
2746 } else if (mp
->m_sb
.sb_blocksize
>= PAGE_CACHE_SIZE
) {
2750 args
.prod
= PAGE_CACHE_SIZE
>> mp
->m_sb
.sb_blocklog
;
2751 if ((args
.mod
= (xfs_extlen_t
)(do_mod(ap
->off
, args
.prod
))))
2752 args
.mod
= (xfs_extlen_t
)(args
.prod
- args
.mod
);
2755 * If we are not low on available data blocks, and the
2756 * underlying logical volume manager is a stripe, and
2757 * the file offset is zero then try to allocate data
2758 * blocks on stripe unit boundary.
2759 * NOTE: ap->aeof is only set if the allocation length
2760 * is >= the stripe unit and the allocation offset is
2761 * at the end of file.
2763 if (!ap
->low
&& ap
->aeof
) {
2765 args
.alignment
= mp
->m_dalign
;
2769 * Adjust for alignment
2771 if (blen
> args
.alignment
&& blen
<= ap
->alen
)
2772 args
.minlen
= blen
- args
.alignment
;
2773 args
.minalignslop
= 0;
2776 * First try an exact bno allocation.
2777 * If it fails then do a near or start bno
2778 * allocation with alignment turned on.
2782 args
.type
= XFS_ALLOCTYPE_THIS_BNO
;
2785 * Compute the minlen+alignment for the
2786 * next case. Set slop so that the value
2787 * of minlen+alignment+slop doesn't go up
2788 * between the calls.
2790 if (blen
> mp
->m_dalign
&& blen
<= ap
->alen
)
2791 nextminlen
= blen
- mp
->m_dalign
;
2793 nextminlen
= args
.minlen
;
2794 if (nextminlen
+ mp
->m_dalign
> args
.minlen
+ 1)
2796 nextminlen
+ mp
->m_dalign
-
2799 args
.minalignslop
= 0;
2803 args
.minalignslop
= 0;
2805 args
.minleft
= ap
->minleft
;
2806 args
.wasdel
= ap
->wasdel
;
2808 args
.userdata
= ap
->userdata
;
2809 if ((error
= xfs_alloc_vextent(&args
)))
2811 if (tryagain
&& args
.fsbno
== NULLFSBLOCK
) {
2813 * Exact allocation failed. Now try with alignment
2817 args
.fsbno
= ap
->rval
;
2818 args
.alignment
= mp
->m_dalign
;
2819 args
.minlen
= nextminlen
;
2820 args
.minalignslop
= 0;
2822 if ((error
= xfs_alloc_vextent(&args
)))
2825 if (isaligned
&& args
.fsbno
== NULLFSBLOCK
) {
2827 * allocation failed, so turn off alignment and
2831 args
.fsbno
= ap
->rval
;
2833 if ((error
= xfs_alloc_vextent(&args
)))
2836 if (args
.fsbno
== NULLFSBLOCK
&& nullfb
&&
2837 args
.minlen
> ap
->minlen
) {
2838 args
.minlen
= ap
->minlen
;
2839 args
.type
= XFS_ALLOCTYPE_START_BNO
;
2840 args
.fsbno
= ap
->rval
;
2841 if ((error
= xfs_alloc_vextent(&args
)))
2844 if (args
.fsbno
== NULLFSBLOCK
&& nullfb
) {
2846 args
.type
= XFS_ALLOCTYPE_FIRST_AG
;
2847 args
.total
= ap
->minlen
;
2849 if ((error
= xfs_alloc_vextent(&args
)))
2853 if (args
.fsbno
!= NULLFSBLOCK
) {
2854 ap
->firstblock
= ap
->rval
= args
.fsbno
;
2855 ASSERT(nullfb
|| fb_agno
== args
.agno
||
2856 (ap
->low
&& fb_agno
< args
.agno
));
2857 ap
->alen
= args
.len
;
2858 ap
->ip
->i_d
.di_nblocks
+= args
.len
;
2859 xfs_trans_log_inode(ap
->tp
, ap
->ip
, XFS_ILOG_CORE
);
2861 ap
->ip
->i_delayed_blks
-= args
.len
;
2863 * Adjust the disk quota also. This was reserved
2866 xfs_trans_mod_dquot_byino(ap
->tp
, ap
->ip
,
2867 ap
->wasdel
? XFS_TRANS_DQ_DELBCOUNT
:
2868 XFS_TRANS_DQ_BCOUNT
,
2871 ap
->rval
= NULLFSBLOCK
;
2878 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
2879 * It figures out where to ask the underlying allocator to put the new extent.
2883 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2885 if (XFS_IS_REALTIME_INODE(ap
->ip
) && ap
->userdata
)
2886 return xfs_bmap_rtalloc(ap
);
2887 return xfs_bmap_btalloc(ap
);
2891 * Transform a btree format file with only one leaf node, where the
2892 * extents list will fit in the inode, into an extents format file.
2893 * Since the file extents are already in-core, all we have to do is
2894 * give up the space for the btree root and pitch the leaf block.
2896 STATIC
int /* error */
2897 xfs_bmap_btree_to_extents(
2898 xfs_trans_t
*tp
, /* transaction pointer */
2899 xfs_inode_t
*ip
, /* incore inode pointer */
2900 xfs_btree_cur_t
*cur
, /* btree cursor */
2901 int *logflagsp
, /* inode logging flags */
2902 int whichfork
) /* data or attr fork */
2905 struct xfs_btree_block
*cblock
;/* child btree block */
2906 xfs_fsblock_t cbno
; /* child block number */
2907 xfs_buf_t
*cbp
; /* child block's buffer */
2908 int error
; /* error return value */
2909 xfs_ifork_t
*ifp
; /* inode fork data */
2910 xfs_mount_t
*mp
; /* mount point structure */
2911 __be64
*pp
; /* ptr to block address */
2912 struct xfs_btree_block
*rblock
;/* root btree block */
2915 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
2916 ASSERT(ifp
->if_flags
& XFS_IFEXTENTS
);
2917 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
);
2918 rblock
= ifp
->if_broot
;
2919 ASSERT(be16_to_cpu(rblock
->bb_level
) == 1);
2920 ASSERT(be16_to_cpu(rblock
->bb_numrecs
) == 1);
2921 ASSERT(xfs_bmbt_maxrecs(mp
, ifp
->if_broot_bytes
, 0) == 1);
2922 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, rblock
, 1, ifp
->if_broot_bytes
);
2923 cbno
= be64_to_cpu(*pp
);
2926 if ((error
= xfs_btree_check_lptr(cur
, cbno
, 1)))
2929 if ((error
= xfs_btree_read_bufl(mp
, tp
, cbno
, 0, &cbp
,
2930 XFS_BMAP_BTREE_REF
)))
2932 cblock
= XFS_BUF_TO_BLOCK(cbp
);
2933 if ((error
= xfs_btree_check_block(cur
, cblock
, 0, cbp
)))
2935 xfs_bmap_add_free(cbno
, 1, cur
->bc_private
.b
.flist
, mp
);
2936 ip
->i_d
.di_nblocks
--;
2937 xfs_trans_mod_dquot_byino(tp
, ip
, XFS_TRANS_DQ_BCOUNT
, -1L);
2938 xfs_trans_binval(tp
, cbp
);
2939 if (cur
->bc_bufs
[0] == cbp
)
2940 cur
->bc_bufs
[0] = NULL
;
2941 xfs_iroot_realloc(ip
, -1, whichfork
);
2942 ASSERT(ifp
->if_broot
== NULL
);
2943 ASSERT((ifp
->if_flags
& XFS_IFBROOT
) == 0);
2944 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_EXTENTS
);
2945 *logflagsp
= XFS_ILOG_CORE
| xfs_ilog_fext(whichfork
);
2950 * Called by xfs_bmapi to update file extent records and the btree
2951 * after removing space (or undoing a delayed allocation).
2953 STATIC
int /* error */
2954 xfs_bmap_del_extent(
2955 xfs_inode_t
*ip
, /* incore inode pointer */
2956 xfs_trans_t
*tp
, /* current transaction pointer */
2957 xfs_extnum_t idx
, /* extent number to update/delete */
2958 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
2959 xfs_btree_cur_t
*cur
, /* if null, not a btree */
2960 xfs_bmbt_irec_t
*del
, /* data to remove from extents */
2961 int *logflagsp
, /* inode logging flags */
2962 xfs_extdelta_t
*delta
, /* Change made to incore extents */
2963 int whichfork
, /* data or attr fork */
2964 int rsvd
) /* OK to allocate reserved blocks */
2966 xfs_filblks_t da_new
; /* new delay-alloc indirect blocks */
2967 xfs_filblks_t da_old
; /* old delay-alloc indirect blocks */
2968 xfs_fsblock_t del_endblock
=0; /* first block past del */
2969 xfs_fileoff_t del_endoff
; /* first offset past del */
2970 int delay
; /* current block is delayed allocated */
2971 int do_fx
; /* free extent at end of routine */
2972 xfs_bmbt_rec_host_t
*ep
; /* current extent entry pointer */
2973 int error
; /* error return value */
2974 int flags
; /* inode logging flags */
2975 xfs_bmbt_irec_t got
; /* current extent entry */
2976 xfs_fileoff_t got_endoff
; /* first offset past got */
2977 int i
; /* temp state */
2978 xfs_ifork_t
*ifp
; /* inode fork pointer */
2979 xfs_mount_t
*mp
; /* mount structure */
2980 xfs_filblks_t nblks
; /* quota/sb block count */
2981 xfs_bmbt_irec_t
new; /* new record to be inserted */
2983 uint qfield
; /* quota field to update */
2984 xfs_filblks_t temp
; /* for indirect length calculations */
2985 xfs_filblks_t temp2
; /* for indirect length calculations */
2988 XFS_STATS_INC(xs_del_exlist
);
2990 if (whichfork
== XFS_ATTR_FORK
)
2991 state
|= BMAP_ATTRFORK
;
2994 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
2995 ASSERT((idx
>= 0) && (idx
< ifp
->if_bytes
/
2996 (uint
)sizeof(xfs_bmbt_rec_t
)));
2997 ASSERT(del
->br_blockcount
> 0);
2998 ep
= xfs_iext_get_ext(ifp
, idx
);
2999 xfs_bmbt_get_all(ep
, &got
);
3000 ASSERT(got
.br_startoff
<= del
->br_startoff
);
3001 del_endoff
= del
->br_startoff
+ del
->br_blockcount
;
3002 got_endoff
= got
.br_startoff
+ got
.br_blockcount
;
3003 ASSERT(got_endoff
>= del_endoff
);
3004 delay
= isnullstartblock(got
.br_startblock
);
3005 ASSERT(isnullstartblock(del
->br_startblock
) == delay
);
3010 * If deleting a real allocation, must free up the disk space.
3013 flags
= XFS_ILOG_CORE
;
3015 * Realtime allocation. Free it and record di_nblocks update.
3017 if (whichfork
== XFS_DATA_FORK
&& XFS_IS_REALTIME_INODE(ip
)) {
3021 ASSERT(do_mod(del
->br_blockcount
,
3022 mp
->m_sb
.sb_rextsize
) == 0);
3023 ASSERT(do_mod(del
->br_startblock
,
3024 mp
->m_sb
.sb_rextsize
) == 0);
3025 bno
= del
->br_startblock
;
3026 len
= del
->br_blockcount
;
3027 do_div(bno
, mp
->m_sb
.sb_rextsize
);
3028 do_div(len
, mp
->m_sb
.sb_rextsize
);
3029 if ((error
= xfs_rtfree_extent(ip
->i_transp
, bno
,
3030 (xfs_extlen_t
)len
)))
3033 nblks
= len
* mp
->m_sb
.sb_rextsize
;
3034 qfield
= XFS_TRANS_DQ_RTBCOUNT
;
3037 * Ordinary allocation.
3041 nblks
= del
->br_blockcount
;
3042 qfield
= XFS_TRANS_DQ_BCOUNT
;
3045 * Set up del_endblock and cur for later.
3047 del_endblock
= del
->br_startblock
+ del
->br_blockcount
;
3049 if ((error
= xfs_bmbt_lookup_eq(cur
, got
.br_startoff
,
3050 got
.br_startblock
, got
.br_blockcount
,
3053 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3055 da_old
= da_new
= 0;
3057 da_old
= startblockval(got
.br_startblock
);
3063 * Set flag value to use in switch statement.
3064 * Left-contig is 2, right-contig is 1.
3066 switch (((got
.br_startoff
== del
->br_startoff
) << 1) |
3067 (got_endoff
== del_endoff
)) {
3070 * Matches the whole extent. Delete the entry.
3072 xfs_iext_remove(ip
, idx
, 1,
3073 whichfork
== XFS_ATTR_FORK
? BMAP_ATTRFORK
: 0);
3074 ifp
->if_lastex
= idx
;
3077 XFS_IFORK_NEXT_SET(ip
, whichfork
,
3078 XFS_IFORK_NEXTENTS(ip
, whichfork
) - 1);
3079 flags
|= XFS_ILOG_CORE
;
3081 flags
|= xfs_ilog_fext(whichfork
);
3084 if ((error
= xfs_btree_delete(cur
, &i
)))
3086 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3091 * Deleting the first part of the extent.
3093 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
3094 xfs_bmbt_set_startoff(ep
, del_endoff
);
3095 temp
= got
.br_blockcount
- del
->br_blockcount
;
3096 xfs_bmbt_set_blockcount(ep
, temp
);
3097 ifp
->if_lastex
= idx
;
3099 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
3101 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
3102 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
3106 xfs_bmbt_set_startblock(ep
, del_endblock
);
3107 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
3109 flags
|= xfs_ilog_fext(whichfork
);
3112 if ((error
= xfs_bmbt_update(cur
, del_endoff
, del_endblock
,
3113 got
.br_blockcount
- del
->br_blockcount
,
3120 * Deleting the last part of the extent.
3122 temp
= got
.br_blockcount
- del
->br_blockcount
;
3123 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
3124 xfs_bmbt_set_blockcount(ep
, temp
);
3125 ifp
->if_lastex
= idx
;
3127 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
3129 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
3130 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
3134 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
3136 flags
|= xfs_ilog_fext(whichfork
);
3139 if ((error
= xfs_bmbt_update(cur
, got
.br_startoff
,
3141 got
.br_blockcount
- del
->br_blockcount
,
3148 * Deleting the middle of the extent.
3150 temp
= del
->br_startoff
- got
.br_startoff
;
3151 trace_xfs_bmap_pre_update(ip
, idx
, state
, _THIS_IP_
);
3152 xfs_bmbt_set_blockcount(ep
, temp
);
3153 new.br_startoff
= del_endoff
;
3154 temp2
= got_endoff
- del_endoff
;
3155 new.br_blockcount
= temp2
;
3156 new.br_state
= got
.br_state
;
3158 new.br_startblock
= del_endblock
;
3159 flags
|= XFS_ILOG_CORE
;
3161 if ((error
= xfs_bmbt_update(cur
,
3163 got
.br_startblock
, temp
,
3166 if ((error
= xfs_btree_increment(cur
, 0, &i
)))
3168 cur
->bc_rec
.b
= new;
3169 error
= xfs_btree_insert(cur
, &i
);
3170 if (error
&& error
!= ENOSPC
)
3173 * If get no-space back from btree insert,
3174 * it tried a split, and we have a zero
3175 * block reservation.
3176 * Fix up our state and return the error.
3178 if (error
== ENOSPC
) {
3180 * Reset the cursor, don't trust
3181 * it after any insert operation.
3183 if ((error
= xfs_bmbt_lookup_eq(cur
,
3188 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3190 * Update the btree record back
3191 * to the original value.
3193 if ((error
= xfs_bmbt_update(cur
,
3200 * Reset the extent record back
3201 * to the original value.
3203 xfs_bmbt_set_blockcount(ep
,
3206 error
= XFS_ERROR(ENOSPC
);
3209 XFS_WANT_CORRUPTED_GOTO(i
== 1, done
);
3211 flags
|= xfs_ilog_fext(whichfork
);
3212 XFS_IFORK_NEXT_SET(ip
, whichfork
,
3213 XFS_IFORK_NEXTENTS(ip
, whichfork
) + 1);
3215 ASSERT(whichfork
== XFS_DATA_FORK
);
3216 temp
= xfs_bmap_worst_indlen(ip
, temp
);
3217 xfs_bmbt_set_startblock(ep
, nullstartblock((int)temp
));
3218 temp2
= xfs_bmap_worst_indlen(ip
, temp2
);
3219 new.br_startblock
= nullstartblock((int)temp2
);
3220 da_new
= temp
+ temp2
;
3221 while (da_new
> da_old
) {
3225 xfs_bmbt_set_startblock(ep
,
3226 nullstartblock((int)temp
));
3228 if (da_new
== da_old
)
3234 nullstartblock((int)temp2
);
3238 trace_xfs_bmap_post_update(ip
, idx
, state
, _THIS_IP_
);
3239 xfs_iext_insert(ip
, idx
+ 1, 1, &new, state
);
3240 ifp
->if_lastex
= idx
+ 1;
3244 * If we need to, add to list of extents to delete.
3247 xfs_bmap_add_free(del
->br_startblock
, del
->br_blockcount
, flist
,
3250 * Adjust inode # blocks in the file.
3253 ip
->i_d
.di_nblocks
-= nblks
;
3255 * Adjust quota data.
3258 xfs_trans_mod_dquot_byino(tp
, ip
, qfield
, (long)-nblks
);
3261 * Account for change in delayed indirect blocks.
3262 * Nothing to do for disk quota accounting here.
3264 ASSERT(da_old
>= da_new
);
3265 if (da_old
> da_new
)
3266 xfs_mod_incore_sb(mp
, XFS_SBS_FDBLOCKS
, (int64_t)(da_old
- da_new
),
3269 /* DELTA: report the original extent. */
3270 if (delta
->xed_startoff
> got
.br_startoff
)
3271 delta
->xed_startoff
= got
.br_startoff
;
3272 if (delta
->xed_blockcount
< got
.br_startoff
+got
.br_blockcount
)
3273 delta
->xed_blockcount
= got
.br_startoff
+
3282 * Remove the entry "free" from the free item list. Prev points to the
3283 * previous entry, unless "free" is the head of the list.
3287 xfs_bmap_free_t
*flist
, /* free item list header */
3288 xfs_bmap_free_item_t
*prev
, /* previous item on list, if any */
3289 xfs_bmap_free_item_t
*free
) /* list item to be freed */
3292 prev
->xbfi_next
= free
->xbfi_next
;
3294 flist
->xbf_first
= free
->xbfi_next
;
3296 kmem_zone_free(xfs_bmap_free_item_zone
, free
);
3300 * Convert an extents-format file into a btree-format file.
3301 * The new file will have a root block (in the inode) and a single child block.
3303 STATIC
int /* error */
3304 xfs_bmap_extents_to_btree(
3305 xfs_trans_t
*tp
, /* transaction pointer */
3306 xfs_inode_t
*ip
, /* incore inode pointer */
3307 xfs_fsblock_t
*firstblock
, /* first-block-allocated */
3308 xfs_bmap_free_t
*flist
, /* blocks freed in xaction */
3309 xfs_btree_cur_t
**curp
, /* cursor returned to caller */
3310 int wasdel
, /* converting a delayed alloc */
3311 int *logflagsp
, /* inode logging flags */
3312 int whichfork
) /* data or attr fork */
3314 struct xfs_btree_block
*ablock
; /* allocated (child) bt block */
3315 xfs_buf_t
*abp
; /* buffer for ablock */
3316 xfs_alloc_arg_t args
; /* allocation arguments */
3317 xfs_bmbt_rec_t
*arp
; /* child record pointer */
3318 struct xfs_btree_block
*block
; /* btree root block */
3319 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
3320 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
3321 int error
; /* error return value */
3322 xfs_extnum_t i
, cnt
; /* extent record index */
3323 xfs_ifork_t
*ifp
; /* inode fork pointer */
3324 xfs_bmbt_key_t
*kp
; /* root block key pointer */
3325 xfs_mount_t
*mp
; /* mount structure */
3326 xfs_extnum_t nextents
; /* number of file extents */
3327 xfs_bmbt_ptr_t
*pp
; /* root block address pointer */
3329 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3330 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
);
3331 ASSERT(ifp
->if_ext_max
==
3332 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3334 * Make space in the inode incore.
3336 xfs_iroot_realloc(ip
, 1, whichfork
);
3337 ifp
->if_flags
|= XFS_IFBROOT
;
3342 block
= ifp
->if_broot
;
3343 block
->bb_magic
= cpu_to_be32(XFS_BMAP_MAGIC
);
3344 block
->bb_level
= cpu_to_be16(1);
3345 block
->bb_numrecs
= cpu_to_be16(1);
3346 block
->bb_u
.l
.bb_leftsib
= cpu_to_be64(NULLDFSBNO
);
3347 block
->bb_u
.l
.bb_rightsib
= cpu_to_be64(NULLDFSBNO
);
3350 * Need a cursor. Can't allocate until bb_level is filled in.
3353 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, whichfork
);
3354 cur
->bc_private
.b
.firstblock
= *firstblock
;
3355 cur
->bc_private
.b
.flist
= flist
;
3356 cur
->bc_private
.b
.flags
= wasdel
? XFS_BTCUR_BPRV_WASDEL
: 0;
3358 * Convert to a btree with two levels, one record in root.
3360 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_BTREE
);
3363 args
.firstblock
= *firstblock
;
3364 if (*firstblock
== NULLFSBLOCK
) {
3365 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3366 args
.fsbno
= XFS_INO_TO_FSB(mp
, ip
->i_ino
);
3367 } else if (flist
->xbf_low
) {
3368 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3369 args
.fsbno
= *firstblock
;
3371 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
3372 args
.fsbno
= *firstblock
;
3374 args
.minlen
= args
.maxlen
= args
.prod
= 1;
3375 args
.total
= args
.minleft
= args
.alignment
= args
.mod
= args
.isfl
=
3376 args
.minalignslop
= 0;
3377 args
.wasdel
= wasdel
;
3379 if ((error
= xfs_alloc_vextent(&args
))) {
3380 xfs_iroot_realloc(ip
, -1, whichfork
);
3381 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
3385 * Allocation can't fail, the space was reserved.
3387 ASSERT(args
.fsbno
!= NULLFSBLOCK
);
3388 ASSERT(*firstblock
== NULLFSBLOCK
||
3389 args
.agno
== XFS_FSB_TO_AGNO(mp
, *firstblock
) ||
3391 args
.agno
> XFS_FSB_TO_AGNO(mp
, *firstblock
)));
3392 *firstblock
= cur
->bc_private
.b
.firstblock
= args
.fsbno
;
3393 cur
->bc_private
.b
.allocated
++;
3394 ip
->i_d
.di_nblocks
++;
3395 xfs_trans_mod_dquot_byino(tp
, ip
, XFS_TRANS_DQ_BCOUNT
, 1L);
3396 abp
= xfs_btree_get_bufl(mp
, tp
, args
.fsbno
, 0);
3398 * Fill in the child block.
3400 ablock
= XFS_BUF_TO_BLOCK(abp
);
3401 ablock
->bb_magic
= cpu_to_be32(XFS_BMAP_MAGIC
);
3402 ablock
->bb_level
= 0;
3403 ablock
->bb_u
.l
.bb_leftsib
= cpu_to_be64(NULLDFSBNO
);
3404 ablock
->bb_u
.l
.bb_rightsib
= cpu_to_be64(NULLDFSBNO
);
3405 arp
= XFS_BMBT_REC_ADDR(mp
, ablock
, 1);
3406 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
3407 for (cnt
= i
= 0; i
< nextents
; i
++) {
3408 ep
= xfs_iext_get_ext(ifp
, i
);
3409 if (!isnullstartblock(xfs_bmbt_get_startblock(ep
))) {
3410 arp
->l0
= cpu_to_be64(ep
->l0
);
3411 arp
->l1
= cpu_to_be64(ep
->l1
);
3415 ASSERT(cnt
== XFS_IFORK_NEXTENTS(ip
, whichfork
));
3416 xfs_btree_set_numrecs(ablock
, cnt
);
3419 * Fill in the root key and pointer.
3421 kp
= XFS_BMBT_KEY_ADDR(mp
, block
, 1);
3422 arp
= XFS_BMBT_REC_ADDR(mp
, ablock
, 1);
3423 kp
->br_startoff
= cpu_to_be64(xfs_bmbt_disk_get_startoff(arp
));
3424 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, xfs_bmbt_get_maxrecs(cur
,
3425 be16_to_cpu(block
->bb_level
)));
3426 *pp
= cpu_to_be64(args
.fsbno
);
3429 * Do all this logging at the end so that
3430 * the root is at the right level.
3432 xfs_btree_log_block(cur
, abp
, XFS_BB_ALL_BITS
);
3433 xfs_btree_log_recs(cur
, abp
, 1, be16_to_cpu(ablock
->bb_numrecs
));
3434 ASSERT(*curp
== NULL
);
3436 *logflagsp
= XFS_ILOG_CORE
| xfs_ilog_fbroot(whichfork
);
3441 * Calculate the default attribute fork offset for newly created inodes.
3444 xfs_default_attroffset(
3445 struct xfs_inode
*ip
)
3447 struct xfs_mount
*mp
= ip
->i_mount
;
3450 if (mp
->m_sb
.sb_inodesize
== 256) {
3451 offset
= XFS_LITINO(mp
) -
3452 XFS_BMDR_SPACE_CALC(MINABTPTRS
);
3454 offset
= XFS_BMDR_SPACE_CALC(6 * MINABTPTRS
);
3457 ASSERT(offset
< XFS_LITINO(mp
));
3462 * Helper routine to reset inode di_forkoff field when switching
3463 * attribute fork from local to extent format - we reset it where
3464 * possible to make space available for inline data fork extents.
3467 xfs_bmap_forkoff_reset(
3472 if (whichfork
== XFS_ATTR_FORK
&&
3473 ip
->i_d
.di_format
!= XFS_DINODE_FMT_DEV
&&
3474 ip
->i_d
.di_format
!= XFS_DINODE_FMT_UUID
&&
3475 ip
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
) {
3476 uint dfl_forkoff
= xfs_default_attroffset(ip
) >> 3;
3478 if (dfl_forkoff
> ip
->i_d
.di_forkoff
) {
3479 ip
->i_d
.di_forkoff
= dfl_forkoff
;
3480 ip
->i_df
.if_ext_max
=
3481 XFS_IFORK_DSIZE(ip
) / sizeof(xfs_bmbt_rec_t
);
3482 ip
->i_afp
->if_ext_max
=
3483 XFS_IFORK_ASIZE(ip
) / sizeof(xfs_bmbt_rec_t
);
3489 * Convert a local file to an extents file.
3490 * This code is out of bounds for data forks of regular files,
3491 * since the file data needs to get logged so things will stay consistent.
3492 * (The bmap-level manipulations are ok, though).
3494 STATIC
int /* error */
3495 xfs_bmap_local_to_extents(
3496 xfs_trans_t
*tp
, /* transaction pointer */
3497 xfs_inode_t
*ip
, /* incore inode pointer */
3498 xfs_fsblock_t
*firstblock
, /* first block allocated in xaction */
3499 xfs_extlen_t total
, /* total blocks needed by transaction */
3500 int *logflagsp
, /* inode logging flags */
3501 int whichfork
) /* data or attr fork */
3503 int error
; /* error return value */
3504 int flags
; /* logging flags returned */
3505 xfs_ifork_t
*ifp
; /* inode fork pointer */
3508 * We don't want to deal with the case of keeping inode data inline yet.
3509 * So sending the data fork of a regular inode is invalid.
3511 ASSERT(!((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
&&
3512 whichfork
== XFS_DATA_FORK
));
3513 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3514 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
);
3517 if (ifp
->if_bytes
) {
3518 xfs_alloc_arg_t args
; /* allocation arguments */
3519 xfs_buf_t
*bp
; /* buffer for extent block */
3520 xfs_bmbt_rec_host_t
*ep
;/* extent record pointer */
3523 args
.mp
= ip
->i_mount
;
3524 args
.firstblock
= *firstblock
;
3525 ASSERT((ifp
->if_flags
&
3526 (XFS_IFINLINE
|XFS_IFEXTENTS
|XFS_IFEXTIREC
)) == XFS_IFINLINE
);
3528 * Allocate a block. We know we need only one, since the
3529 * file currently fits in an inode.
3531 if (*firstblock
== NULLFSBLOCK
) {
3532 args
.fsbno
= XFS_INO_TO_FSB(args
.mp
, ip
->i_ino
);
3533 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3535 args
.fsbno
= *firstblock
;
3536 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
3539 args
.mod
= args
.minleft
= args
.alignment
= args
.wasdel
=
3540 args
.isfl
= args
.minalignslop
= 0;
3541 args
.minlen
= args
.maxlen
= args
.prod
= 1;
3542 if ((error
= xfs_alloc_vextent(&args
)))
3545 * Can't fail, the space was reserved.
3547 ASSERT(args
.fsbno
!= NULLFSBLOCK
);
3548 ASSERT(args
.len
== 1);
3549 *firstblock
= args
.fsbno
;
3550 bp
= xfs_btree_get_bufl(args
.mp
, tp
, args
.fsbno
, 0);
3551 memcpy((char *)XFS_BUF_PTR(bp
), ifp
->if_u1
.if_data
,
3553 xfs_trans_log_buf(tp
, bp
, 0, ifp
->if_bytes
- 1);
3554 xfs_bmap_forkoff_reset(args
.mp
, ip
, whichfork
);
3555 xfs_idata_realloc(ip
, -ifp
->if_bytes
, whichfork
);
3556 xfs_iext_add(ifp
, 0, 1);
3557 ep
= xfs_iext_get_ext(ifp
, 0);
3558 xfs_bmbt_set_allf(ep
, 0, args
.fsbno
, 1, XFS_EXT_NORM
);
3559 trace_xfs_bmap_post_update(ip
, 0,
3560 whichfork
== XFS_ATTR_FORK
? BMAP_ATTRFORK
: 0,
3562 XFS_IFORK_NEXT_SET(ip
, whichfork
, 1);
3563 ip
->i_d
.di_nblocks
= 1;
3564 xfs_trans_mod_dquot_byino(tp
, ip
,
3565 XFS_TRANS_DQ_BCOUNT
, 1L);
3566 flags
|= xfs_ilog_fext(whichfork
);
3568 ASSERT(XFS_IFORK_NEXTENTS(ip
, whichfork
) == 0);
3569 xfs_bmap_forkoff_reset(ip
->i_mount
, ip
, whichfork
);
3571 ifp
->if_flags
&= ~XFS_IFINLINE
;
3572 ifp
->if_flags
|= XFS_IFEXTENTS
;
3573 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_EXTENTS
);
3574 flags
|= XFS_ILOG_CORE
;
3581 * Search the extent records for the entry containing block bno.
3582 * If bno lies in a hole, point to the next entry. If bno lies
3583 * past eof, *eofp will be set, and *prevp will contain the last
3584 * entry (null if none). Else, *lastxp will be set to the index
3585 * of the found entry; *gotp will contain the entry.
3587 STATIC xfs_bmbt_rec_host_t
* /* pointer to found extent entry */
3588 xfs_bmap_search_multi_extents(
3589 xfs_ifork_t
*ifp
, /* inode fork pointer */
3590 xfs_fileoff_t bno
, /* block number searched for */
3591 int *eofp
, /* out: end of file found */
3592 xfs_extnum_t
*lastxp
, /* out: last extent index */
3593 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
3594 xfs_bmbt_irec_t
*prevp
) /* out: previous extent entry found */
3596 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
3597 xfs_extnum_t lastx
; /* last extent index */
3600 * Initialize the extent entry structure to catch access to
3601 * uninitialized br_startblock field.
3603 gotp
->br_startoff
= 0xffa5a5a5a5a5a5a5LL
;
3604 gotp
->br_blockcount
= 0xa55a5a5a5a5a5a5aLL
;
3605 gotp
->br_state
= XFS_EXT_INVALID
;
3607 gotp
->br_startblock
= 0xffffa5a5a5a5a5a5LL
;
3609 gotp
->br_startblock
= 0xffffa5a5;
3611 prevp
->br_startoff
= NULLFILEOFF
;
3613 ep
= xfs_iext_bno_to_ext(ifp
, bno
, &lastx
);
3615 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, lastx
- 1), prevp
);
3617 if (lastx
< (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
))) {
3618 xfs_bmbt_get_all(ep
, gotp
);
3632 * Search the extents list for the inode, for the extent containing bno.
3633 * If bno lies in a hole, point to the next entry. If bno lies past eof,
3634 * *eofp will be set, and *prevp will contain the last entry (null if none).
3635 * Else, *lastxp will be set to the index of the found
3636 * entry; *gotp will contain the entry.
3638 STATIC xfs_bmbt_rec_host_t
* /* pointer to found extent entry */
3639 xfs_bmap_search_extents(
3640 xfs_inode_t
*ip
, /* incore inode pointer */
3641 xfs_fileoff_t bno
, /* block number searched for */
3642 int fork
, /* data or attr fork */
3643 int *eofp
, /* out: end of file found */
3644 xfs_extnum_t
*lastxp
, /* out: last extent index */
3645 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
3646 xfs_bmbt_irec_t
*prevp
) /* out: previous extent entry found */
3648 xfs_ifork_t
*ifp
; /* inode fork pointer */
3649 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
3651 XFS_STATS_INC(xs_look_exlist
);
3652 ifp
= XFS_IFORK_PTR(ip
, fork
);
3654 ep
= xfs_bmap_search_multi_extents(ifp
, bno
, eofp
, lastxp
, gotp
, prevp
);
3656 if (unlikely(!(gotp
->br_startblock
) && (*lastxp
!= NULLEXTNUM
) &&
3657 !(XFS_IS_REALTIME_INODE(ip
) && fork
== XFS_DATA_FORK
))) {
3658 xfs_cmn_err(XFS_PTAG_FSBLOCK_ZERO
, CE_ALERT
, ip
->i_mount
,
3659 "Access to block zero in inode %llu "
3660 "start_block: %llx start_off: %llx "
3661 "blkcnt: %llx extent-state: %x lastx: %x\n",
3662 (unsigned long long)ip
->i_ino
,
3663 (unsigned long long)gotp
->br_startblock
,
3664 (unsigned long long)gotp
->br_startoff
,
3665 (unsigned long long)gotp
->br_blockcount
,
3666 gotp
->br_state
, *lastxp
);
3667 *lastxp
= NULLEXTNUM
;
3675 * Compute the worst-case number of indirect blocks that will be used
3676 * for ip's delayed extent of length "len".
3678 STATIC xfs_filblks_t
3679 xfs_bmap_worst_indlen(
3680 xfs_inode_t
*ip
, /* incore inode pointer */
3681 xfs_filblks_t len
) /* delayed extent length */
3683 int level
; /* btree level number */
3684 int maxrecs
; /* maximum record count at this level */
3685 xfs_mount_t
*mp
; /* mount structure */
3686 xfs_filblks_t rval
; /* return value */
3689 maxrecs
= mp
->m_bmap_dmxr
[0];
3690 for (level
= 0, rval
= 0;
3691 level
< XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
);
3694 do_div(len
, maxrecs
);
3697 return rval
+ XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
) -
3700 maxrecs
= mp
->m_bmap_dmxr
[1];
3706 * Convert inode from non-attributed to attributed.
3707 * Must not be in a transaction, ip must not be locked.
3709 int /* error code */
3710 xfs_bmap_add_attrfork(
3711 xfs_inode_t
*ip
, /* incore inode pointer */
3712 int size
, /* space new attribute needs */
3713 int rsvd
) /* xact may use reserved blks */
3715 xfs_fsblock_t firstblock
; /* 1st block/ag allocated */
3716 xfs_bmap_free_t flist
; /* freed extent records */
3717 xfs_mount_t
*mp
; /* mount structure */
3718 xfs_trans_t
*tp
; /* transaction pointer */
3719 int blks
; /* space reservation */
3720 int version
= 1; /* superblock attr version */
3721 int committed
; /* xaction was committed */
3722 int logflags
; /* logging flags */
3723 int error
; /* error return value */
3725 ASSERT(XFS_IFORK_Q(ip
) == 0);
3726 ASSERT(ip
->i_df
.if_ext_max
==
3727 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3730 ASSERT(!XFS_NOT_DQATTACHED(mp
, ip
));
3731 tp
= xfs_trans_alloc(mp
, XFS_TRANS_ADDAFORK
);
3732 blks
= XFS_ADDAFORK_SPACE_RES(mp
);
3734 tp
->t_flags
|= XFS_TRANS_RESERVE
;
3735 if ((error
= xfs_trans_reserve(tp
, blks
, XFS_ADDAFORK_LOG_RES(mp
), 0,
3736 XFS_TRANS_PERM_LOG_RES
, XFS_ADDAFORK_LOG_COUNT
)))
3738 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
3739 error
= xfs_trans_reserve_quota_nblks(tp
, ip
, blks
, 0, rsvd
?
3740 XFS_QMOPT_RES_REGBLKS
| XFS_QMOPT_FORCE_RES
:
3741 XFS_QMOPT_RES_REGBLKS
);
3743 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3744 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
);
3747 if (XFS_IFORK_Q(ip
))
3749 if (ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
) {
3751 * For inodes coming from pre-6.2 filesystems.
3753 ASSERT(ip
->i_d
.di_aformat
== 0);
3754 ip
->i_d
.di_aformat
= XFS_DINODE_FMT_EXTENTS
;
3756 ASSERT(ip
->i_d
.di_anextents
== 0);
3758 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
3759 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
3760 switch (ip
->i_d
.di_format
) {
3761 case XFS_DINODE_FMT_DEV
:
3762 ip
->i_d
.di_forkoff
= roundup(sizeof(xfs_dev_t
), 8) >> 3;
3764 case XFS_DINODE_FMT_UUID
:
3765 ip
->i_d
.di_forkoff
= roundup(sizeof(uuid_t
), 8) >> 3;
3767 case XFS_DINODE_FMT_LOCAL
:
3768 case XFS_DINODE_FMT_EXTENTS
:
3769 case XFS_DINODE_FMT_BTREE
:
3770 ip
->i_d
.di_forkoff
= xfs_attr_shortform_bytesfit(ip
, size
);
3771 if (!ip
->i_d
.di_forkoff
)
3772 ip
->i_d
.di_forkoff
= xfs_default_attroffset(ip
) >> 3;
3773 else if (mp
->m_flags
& XFS_MOUNT_ATTR2
)
3778 error
= XFS_ERROR(EINVAL
);
3781 ip
->i_df
.if_ext_max
=
3782 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
);
3783 ASSERT(ip
->i_afp
== NULL
);
3784 ip
->i_afp
= kmem_zone_zalloc(xfs_ifork_zone
, KM_SLEEP
);
3785 ip
->i_afp
->if_ext_max
=
3786 XFS_IFORK_ASIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
);
3787 ip
->i_afp
->if_flags
= XFS_IFEXTENTS
;
3789 xfs_bmap_init(&flist
, &firstblock
);
3790 switch (ip
->i_d
.di_format
) {
3791 case XFS_DINODE_FMT_LOCAL
:
3792 error
= xfs_bmap_add_attrfork_local(tp
, ip
, &firstblock
, &flist
,
3795 case XFS_DINODE_FMT_EXTENTS
:
3796 error
= xfs_bmap_add_attrfork_extents(tp
, ip
, &firstblock
,
3799 case XFS_DINODE_FMT_BTREE
:
3800 error
= xfs_bmap_add_attrfork_btree(tp
, ip
, &firstblock
, &flist
,
3808 xfs_trans_log_inode(tp
, ip
, logflags
);
3811 if (!xfs_sb_version_hasattr(&mp
->m_sb
) ||
3812 (!xfs_sb_version_hasattr2(&mp
->m_sb
) && version
== 2)) {
3813 __int64_t sbfields
= 0;
3815 spin_lock(&mp
->m_sb_lock
);
3816 if (!xfs_sb_version_hasattr(&mp
->m_sb
)) {
3817 xfs_sb_version_addattr(&mp
->m_sb
);
3818 sbfields
|= XFS_SB_VERSIONNUM
;
3820 if (!xfs_sb_version_hasattr2(&mp
->m_sb
) && version
== 2) {
3821 xfs_sb_version_addattr2(&mp
->m_sb
);
3822 sbfields
|= (XFS_SB_VERSIONNUM
| XFS_SB_FEATURES2
);
3825 spin_unlock(&mp
->m_sb_lock
);
3826 xfs_mod_sb(tp
, sbfields
);
3828 spin_unlock(&mp
->m_sb_lock
);
3830 if ((error
= xfs_bmap_finish(&tp
, &flist
, &committed
)))
3832 error
= xfs_trans_commit(tp
, XFS_TRANS_PERM_LOG_RES
);
3833 ASSERT(ip
->i_df
.if_ext_max
==
3834 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3837 xfs_bmap_cancel(&flist
);
3839 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3841 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
|XFS_TRANS_ABORT
);
3842 ASSERT(ip
->i_df
.if_ext_max
==
3843 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3848 * Add the extent to the list of extents to be free at transaction end.
3849 * The list is maintained sorted (by block number).
3854 xfs_fsblock_t bno
, /* fs block number of extent */
3855 xfs_filblks_t len
, /* length of extent */
3856 xfs_bmap_free_t
*flist
, /* list of extents */
3857 xfs_mount_t
*mp
) /* mount point structure */
3859 xfs_bmap_free_item_t
*cur
; /* current (next) element */
3860 xfs_bmap_free_item_t
*new; /* new element */
3861 xfs_bmap_free_item_t
*prev
; /* previous element */
3863 xfs_agnumber_t agno
;
3864 xfs_agblock_t agbno
;
3866 ASSERT(bno
!= NULLFSBLOCK
);
3868 ASSERT(len
<= MAXEXTLEN
);
3869 ASSERT(!isnullstartblock(bno
));
3870 agno
= XFS_FSB_TO_AGNO(mp
, bno
);
3871 agbno
= XFS_FSB_TO_AGBNO(mp
, bno
);
3872 ASSERT(agno
< mp
->m_sb
.sb_agcount
);
3873 ASSERT(agbno
< mp
->m_sb
.sb_agblocks
);
3874 ASSERT(len
< mp
->m_sb
.sb_agblocks
);
3875 ASSERT(agbno
+ len
<= mp
->m_sb
.sb_agblocks
);
3877 ASSERT(xfs_bmap_free_item_zone
!= NULL
);
3878 new = kmem_zone_alloc(xfs_bmap_free_item_zone
, KM_SLEEP
);
3879 new->xbfi_startblock
= bno
;
3880 new->xbfi_blockcount
= (xfs_extlen_t
)len
;
3881 for (prev
= NULL
, cur
= flist
->xbf_first
;
3883 prev
= cur
, cur
= cur
->xbfi_next
) {
3884 if (cur
->xbfi_startblock
>= bno
)
3888 prev
->xbfi_next
= new;
3890 flist
->xbf_first
= new;
3891 new->xbfi_next
= cur
;
3896 * Compute and fill in the value of the maximum depth of a bmap btree
3897 * in this filesystem. Done once, during mount.
3900 xfs_bmap_compute_maxlevels(
3901 xfs_mount_t
*mp
, /* file system mount structure */
3902 int whichfork
) /* data or attr fork */
3904 int level
; /* btree level */
3905 uint maxblocks
; /* max blocks at this level */
3906 uint maxleafents
; /* max leaf entries possible */
3907 int maxrootrecs
; /* max records in root block */
3908 int minleafrecs
; /* min records in leaf block */
3909 int minnoderecs
; /* min records in node block */
3910 int sz
; /* root block size */
3913 * The maximum number of extents in a file, hence the maximum
3914 * number of leaf entries, is controlled by the type of di_nextents
3915 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
3916 * (a signed 16-bit number, xfs_aextnum_t).
3918 * Note that we can no longer assume that if we are in ATTR1 that
3919 * the fork offset of all the inodes will be
3920 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
3921 * with ATTR2 and then mounted back with ATTR1, keeping the
3922 * di_forkoff's fixed but probably at various positions. Therefore,
3923 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
3924 * of a minimum size available.
3926 if (whichfork
== XFS_DATA_FORK
) {
3927 maxleafents
= MAXEXTNUM
;
3928 sz
= XFS_BMDR_SPACE_CALC(MINDBTPTRS
);
3930 maxleafents
= MAXAEXTNUM
;
3931 sz
= XFS_BMDR_SPACE_CALC(MINABTPTRS
);
3933 maxrootrecs
= xfs_bmdr_maxrecs(mp
, sz
, 0);
3934 minleafrecs
= mp
->m_bmap_dmnr
[0];
3935 minnoderecs
= mp
->m_bmap_dmnr
[1];
3936 maxblocks
= (maxleafents
+ minleafrecs
- 1) / minleafrecs
;
3937 for (level
= 1; maxblocks
> 1; level
++) {
3938 if (maxblocks
<= maxrootrecs
)
3941 maxblocks
= (maxblocks
+ minnoderecs
- 1) / minnoderecs
;
3943 mp
->m_bm_maxlevels
[whichfork
] = level
;
3947 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
3948 * caller. Frees all the extents that need freeing, which must be done
3949 * last due to locking considerations. We never free any extents in
3950 * the first transaction. This is to allow the caller to make the first
3951 * transaction a synchronous one so that the pointers to the data being
3952 * broken in this transaction will be permanent before the data is actually
3953 * freed. This is necessary to prevent blocks from being reallocated
3954 * and written to before the free and reallocation are actually permanent.
3955 * We do not just make the first transaction synchronous here, because
3956 * there are more efficient ways to gain the same protection in some cases
3957 * (see the file truncation code).
3959 * Return 1 if the given transaction was committed and a new one
3960 * started, and 0 otherwise in the committed parameter.
3965 xfs_trans_t
**tp
, /* transaction pointer addr */
3966 xfs_bmap_free_t
*flist
, /* i/o: list extents to free */
3967 int *committed
) /* xact committed or not */
3969 xfs_efd_log_item_t
*efd
; /* extent free data */
3970 xfs_efi_log_item_t
*efi
; /* extent free intention */
3971 int error
; /* error return value */
3972 xfs_bmap_free_item_t
*free
; /* free extent item */
3973 unsigned int logres
; /* new log reservation */
3974 unsigned int logcount
; /* new log count */
3975 xfs_mount_t
*mp
; /* filesystem mount structure */
3976 xfs_bmap_free_item_t
*next
; /* next item on free list */
3977 xfs_trans_t
*ntp
; /* new transaction pointer */
3979 ASSERT((*tp
)->t_flags
& XFS_TRANS_PERM_LOG_RES
);
3980 if (flist
->xbf_count
== 0) {
3985 efi
= xfs_trans_get_efi(ntp
, flist
->xbf_count
);
3986 for (free
= flist
->xbf_first
; free
; free
= free
->xbfi_next
)
3987 xfs_trans_log_efi_extent(ntp
, efi
, free
->xbfi_startblock
,
3988 free
->xbfi_blockcount
);
3989 logres
= ntp
->t_log_res
;
3990 logcount
= ntp
->t_log_count
;
3991 ntp
= xfs_trans_dup(*tp
);
3992 error
= xfs_trans_commit(*tp
, 0);
3996 * We have a new transaction, so we should return committed=1,
3997 * even though we're returning an error.
4003 * transaction commit worked ok so we can drop the extra ticket
4004 * reference that we gained in xfs_trans_dup()
4006 xfs_log_ticket_put(ntp
->t_ticket
);
4008 if ((error
= xfs_trans_reserve(ntp
, 0, logres
, 0, XFS_TRANS_PERM_LOG_RES
,
4011 efd
= xfs_trans_get_efd(ntp
, efi
, flist
->xbf_count
);
4012 for (free
= flist
->xbf_first
; free
!= NULL
; free
= next
) {
4013 next
= free
->xbfi_next
;
4014 if ((error
= xfs_free_extent(ntp
, free
->xbfi_startblock
,
4015 free
->xbfi_blockcount
))) {
4017 * The bmap free list will be cleaned up at a
4018 * higher level. The EFI will be canceled when
4019 * this transaction is aborted.
4020 * Need to force shutdown here to make sure it
4021 * happens, since this transaction may not be
4025 if (!XFS_FORCED_SHUTDOWN(mp
))
4026 xfs_force_shutdown(mp
,
4027 (error
== EFSCORRUPTED
) ?
4028 SHUTDOWN_CORRUPT_INCORE
:
4029 SHUTDOWN_META_IO_ERROR
);
4032 xfs_trans_log_efd_extent(ntp
, efd
, free
->xbfi_startblock
,
4033 free
->xbfi_blockcount
);
4034 xfs_bmap_del_free(flist
, NULL
, free
);
4040 * Free up any items left in the list.
4044 xfs_bmap_free_t
*flist
) /* list of bmap_free_items */
4046 xfs_bmap_free_item_t
*free
; /* free list item */
4047 xfs_bmap_free_item_t
*next
;
4049 if (flist
->xbf_count
== 0)
4051 ASSERT(flist
->xbf_first
!= NULL
);
4052 for (free
= flist
->xbf_first
; free
; free
= next
) {
4053 next
= free
->xbfi_next
;
4054 xfs_bmap_del_free(flist
, NULL
, free
);
4056 ASSERT(flist
->xbf_count
== 0);
4060 * Returns the file-relative block number of the first unused block(s)
4061 * in the file with at least "len" logically contiguous blocks free.
4062 * This is the lowest-address hole if the file has holes, else the first block
4063 * past the end of file.
4064 * Return 0 if the file is currently local (in-inode).
4067 xfs_bmap_first_unused(
4068 xfs_trans_t
*tp
, /* transaction pointer */
4069 xfs_inode_t
*ip
, /* incore inode */
4070 xfs_extlen_t len
, /* size of hole to find */
4071 xfs_fileoff_t
*first_unused
, /* unused block */
4072 int whichfork
) /* data or attr fork */
4074 int error
; /* error return value */
4075 int idx
; /* extent record index */
4076 xfs_ifork_t
*ifp
; /* inode fork pointer */
4077 xfs_fileoff_t lastaddr
; /* last block number seen */
4078 xfs_fileoff_t lowest
; /* lowest useful block */
4079 xfs_fileoff_t max
; /* starting useful block */
4080 xfs_fileoff_t off
; /* offset for this block */
4081 xfs_extnum_t nextents
; /* number of extent entries */
4083 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
||
4084 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
||
4085 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
);
4086 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4090 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4091 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4092 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4094 lowest
= *first_unused
;
4095 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4096 for (idx
= 0, lastaddr
= 0, max
= lowest
; idx
< nextents
; idx
++) {
4097 xfs_bmbt_rec_host_t
*ep
= xfs_iext_get_ext(ifp
, idx
);
4098 off
= xfs_bmbt_get_startoff(ep
);
4100 * See if the hole before this extent will work.
4102 if (off
>= lowest
+ len
&& off
- max
>= len
) {
4103 *first_unused
= max
;
4106 lastaddr
= off
+ xfs_bmbt_get_blockcount(ep
);
4107 max
= XFS_FILEOFF_MAX(lastaddr
, lowest
);
4109 *first_unused
= max
;
4114 * Returns the file-relative block number of the last block + 1 before
4115 * last_block (input value) in the file.
4116 * This is not based on i_size, it is based on the extent records.
4117 * Returns 0 for local files, as they do not have extent records.
4120 xfs_bmap_last_before(
4121 xfs_trans_t
*tp
, /* transaction pointer */
4122 xfs_inode_t
*ip
, /* incore inode */
4123 xfs_fileoff_t
*last_block
, /* last block */
4124 int whichfork
) /* data or attr fork */
4126 xfs_fileoff_t bno
; /* input file offset */
4127 int eof
; /* hit end of file */
4128 xfs_bmbt_rec_host_t
*ep
; /* pointer to last extent */
4129 int error
; /* error return value */
4130 xfs_bmbt_irec_t got
; /* current extent value */
4131 xfs_ifork_t
*ifp
; /* inode fork pointer */
4132 xfs_extnum_t lastx
; /* last extent used */
4133 xfs_bmbt_irec_t prev
; /* previous extent value */
4135 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
4136 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4137 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
)
4138 return XFS_ERROR(EIO
);
4139 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4143 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4144 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4145 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4147 bno
= *last_block
- 1;
4148 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
4150 if (eof
|| xfs_bmbt_get_startoff(ep
) > bno
) {
4151 if (prev
.br_startoff
== NULLFILEOFF
)
4154 *last_block
= prev
.br_startoff
+ prev
.br_blockcount
;
4157 * Otherwise *last_block is already the right answer.
4163 * Returns the file-relative block number of the first block past eof in
4164 * the file. This is not based on i_size, it is based on the extent records.
4165 * Returns 0 for local files, as they do not have extent records.
4168 xfs_bmap_last_offset(
4169 xfs_trans_t
*tp
, /* transaction pointer */
4170 xfs_inode_t
*ip
, /* incore inode */
4171 xfs_fileoff_t
*last_block
, /* last block */
4172 int whichfork
) /* data or attr fork */
4174 xfs_bmbt_rec_host_t
*ep
; /* pointer to last extent */
4175 int error
; /* error return value */
4176 xfs_ifork_t
*ifp
; /* inode fork pointer */
4177 xfs_extnum_t nextents
; /* number of extent entries */
4179 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
4180 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4181 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
)
4182 return XFS_ERROR(EIO
);
4183 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4187 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4188 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4189 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4191 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4196 ep
= xfs_iext_get_ext(ifp
, nextents
- 1);
4197 *last_block
= xfs_bmbt_get_startoff(ep
) + xfs_bmbt_get_blockcount(ep
);
4202 * Returns whether the selected fork of the inode has exactly one
4203 * block or not. For the data fork we check this matches di_size,
4204 * implying the file's range is 0..bsize-1.
4206 int /* 1=>1 block, 0=>otherwise */
4208 xfs_inode_t
*ip
, /* incore inode */
4209 int whichfork
) /* data or attr fork */
4211 xfs_bmbt_rec_host_t
*ep
; /* ptr to fork's extent */
4212 xfs_ifork_t
*ifp
; /* inode fork pointer */
4213 int rval
; /* return value */
4214 xfs_bmbt_irec_t s
; /* internal version of extent */
4217 if (whichfork
== XFS_DATA_FORK
) {
4218 return ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
) ?
4219 (ip
->i_size
== ip
->i_mount
->m_sb
.sb_blocksize
) :
4220 (ip
->i_d
.di_size
== ip
->i_mount
->m_sb
.sb_blocksize
);
4223 if (XFS_IFORK_NEXTENTS(ip
, whichfork
) != 1)
4225 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
4227 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4228 ASSERT(ifp
->if_flags
& XFS_IFEXTENTS
);
4229 ep
= xfs_iext_get_ext(ifp
, 0);
4230 xfs_bmbt_get_all(ep
, &s
);
4231 rval
= s
.br_startoff
== 0 && s
.br_blockcount
== 1;
4232 if (rval
&& whichfork
== XFS_DATA_FORK
)
4233 ASSERT(ip
->i_size
== ip
->i_mount
->m_sb
.sb_blocksize
);
4238 xfs_bmap_sanity_check(
4239 struct xfs_mount
*mp
,
4243 struct xfs_btree_block
*block
= XFS_BUF_TO_BLOCK(bp
);
4245 if (be32_to_cpu(block
->bb_magic
) != XFS_BMAP_MAGIC
||
4246 be16_to_cpu(block
->bb_level
) != level
||
4247 be16_to_cpu(block
->bb_numrecs
) == 0 ||
4248 be16_to_cpu(block
->bb_numrecs
) > mp
->m_bmap_dmxr
[level
!= 0])
4254 * Read in the extents to if_extents.
4255 * All inode fields are set up by caller, we just traverse the btree
4256 * and copy the records in. If the file system cannot contain unwritten
4257 * extents, the records are checked for no "state" flags.
4260 xfs_bmap_read_extents(
4261 xfs_trans_t
*tp
, /* transaction pointer */
4262 xfs_inode_t
*ip
, /* incore inode */
4263 int whichfork
) /* data or attr fork */
4265 struct xfs_btree_block
*block
; /* current btree block */
4266 xfs_fsblock_t bno
; /* block # of "block" */
4267 xfs_buf_t
*bp
; /* buffer for "block" */
4268 int error
; /* error return value */
4269 xfs_exntfmt_t exntf
; /* XFS_EXTFMT_NOSTATE, if checking */
4270 xfs_extnum_t i
, j
; /* index into the extents list */
4271 xfs_ifork_t
*ifp
; /* fork structure */
4272 int level
; /* btree level, for checking */
4273 xfs_mount_t
*mp
; /* file system mount structure */
4274 __be64
*pp
; /* pointer to block address */
4276 xfs_extnum_t room
; /* number of entries there's room for */
4280 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4281 exntf
= (whichfork
!= XFS_DATA_FORK
) ? XFS_EXTFMT_NOSTATE
:
4282 XFS_EXTFMT_INODE(ip
);
4283 block
= ifp
->if_broot
;
4285 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
4287 level
= be16_to_cpu(block
->bb_level
);
4289 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, 1, ifp
->if_broot_bytes
);
4290 bno
= be64_to_cpu(*pp
);
4291 ASSERT(bno
!= NULLDFSBNO
);
4292 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
4293 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
4295 * Go down the tree until leaf level is reached, following the first
4296 * pointer (leftmost) at each level.
4298 while (level
-- > 0) {
4299 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
4300 XFS_BMAP_BTREE_REF
)))
4302 block
= XFS_BUF_TO_BLOCK(bp
);
4303 XFS_WANT_CORRUPTED_GOTO(
4304 xfs_bmap_sanity_check(mp
, bp
, level
),
4308 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, mp
->m_bmap_dmxr
[1]);
4309 bno
= be64_to_cpu(*pp
);
4310 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp
, bno
), error0
);
4311 xfs_trans_brelse(tp
, bp
);
4314 * Here with bp and block set to the leftmost leaf node in the tree.
4316 room
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4319 * Loop over all leaf nodes. Copy information to the extent records.
4322 xfs_bmbt_rec_t
*frp
;
4323 xfs_fsblock_t nextbno
;
4324 xfs_extnum_t num_recs
;
4328 num_recs
= xfs_btree_get_numrecs(block
);
4329 if (unlikely(i
+ num_recs
> room
)) {
4330 ASSERT(i
+ num_recs
<= room
);
4331 xfs_fs_repair_cmn_err(CE_WARN
, ip
->i_mount
,
4332 "corrupt dinode %Lu, (btree extents).",
4333 (unsigned long long) ip
->i_ino
);
4334 XFS_ERROR_REPORT("xfs_bmap_read_extents(1)",
4339 XFS_WANT_CORRUPTED_GOTO(
4340 xfs_bmap_sanity_check(mp
, bp
, 0),
4343 * Read-ahead the next leaf block, if any.
4345 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
4346 if (nextbno
!= NULLFSBLOCK
)
4347 xfs_btree_reada_bufl(mp
, nextbno
, 1);
4349 * Copy records into the extent records.
4351 frp
= XFS_BMBT_REC_ADDR(mp
, block
, 1);
4353 for (j
= 0; j
< num_recs
; j
++, i
++, frp
++) {
4354 xfs_bmbt_rec_host_t
*trp
= xfs_iext_get_ext(ifp
, i
);
4355 trp
->l0
= be64_to_cpu(frp
->l0
);
4356 trp
->l1
= be64_to_cpu(frp
->l1
);
4358 if (exntf
== XFS_EXTFMT_NOSTATE
) {
4360 * Check all attribute bmap btree records and
4361 * any "older" data bmap btree records for a
4362 * set bit in the "extent flag" position.
4364 if (unlikely(xfs_check_nostate_extents(ifp
,
4365 start
, num_recs
))) {
4366 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
4372 xfs_trans_brelse(tp
, bp
);
4375 * If we've reached the end, stop.
4377 if (bno
== NULLFSBLOCK
)
4379 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
4380 XFS_BMAP_BTREE_REF
)))
4382 block
= XFS_BUF_TO_BLOCK(bp
);
4384 ASSERT(i
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)));
4385 ASSERT(i
== XFS_IFORK_NEXTENTS(ip
, whichfork
));
4386 XFS_BMAP_TRACE_EXLIST(ip
, i
, whichfork
);
4389 xfs_trans_brelse(tp
, bp
);
4390 return XFS_ERROR(EFSCORRUPTED
);
4395 * Add bmap trace insert entries for all the contents of the extent records.
4398 xfs_bmap_trace_exlist(
4399 xfs_inode_t
*ip
, /* incore inode pointer */
4400 xfs_extnum_t cnt
, /* count of entries in the list */
4401 int whichfork
, /* data or attr fork */
4402 unsigned long caller_ip
)
4404 xfs_extnum_t idx
; /* extent record index */
4405 xfs_ifork_t
*ifp
; /* inode fork pointer */
4408 if (whichfork
== XFS_ATTR_FORK
)
4409 state
|= BMAP_ATTRFORK
;
4411 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4412 ASSERT(cnt
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)));
4413 for (idx
= 0; idx
< cnt
; idx
++)
4414 trace_xfs_extlist(ip
, idx
, whichfork
, caller_ip
);
4418 * Validate that the bmbt_irecs being returned from bmapi are valid
4419 * given the callers original parameters. Specifically check the
4420 * ranges of the returned irecs to ensure that they only extent beyond
4421 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
4424 xfs_bmap_validate_ret(
4428 xfs_bmbt_irec_t
*mval
,
4432 int i
; /* index to map values */
4434 ASSERT(ret_nmap
<= nmap
);
4436 for (i
= 0; i
< ret_nmap
; i
++) {
4437 ASSERT(mval
[i
].br_blockcount
> 0);
4438 if (!(flags
& XFS_BMAPI_ENTIRE
)) {
4439 ASSERT(mval
[i
].br_startoff
>= bno
);
4440 ASSERT(mval
[i
].br_blockcount
<= len
);
4441 ASSERT(mval
[i
].br_startoff
+ mval
[i
].br_blockcount
<=
4444 ASSERT(mval
[i
].br_startoff
< bno
+ len
);
4445 ASSERT(mval
[i
].br_startoff
+ mval
[i
].br_blockcount
>
4449 mval
[i
- 1].br_startoff
+ mval
[i
- 1].br_blockcount
==
4450 mval
[i
].br_startoff
);
4451 if ((flags
& XFS_BMAPI_WRITE
) && !(flags
& XFS_BMAPI_DELAY
))
4452 ASSERT(mval
[i
].br_startblock
!= DELAYSTARTBLOCK
&&
4453 mval
[i
].br_startblock
!= HOLESTARTBLOCK
);
4454 ASSERT(mval
[i
].br_state
== XFS_EXT_NORM
||
4455 mval
[i
].br_state
== XFS_EXT_UNWRITTEN
);
4462 * Map file blocks to filesystem blocks.
4463 * File range is given by the bno/len pair.
4464 * Adds blocks to file if a write ("flags & XFS_BMAPI_WRITE" set)
4465 * into a hole or past eof.
4466 * Only allocates blocks from a single allocation group,
4467 * to avoid locking problems.
4468 * The returned value in "firstblock" from the first call in a transaction
4469 * must be remembered and presented to subsequent calls in "firstblock".
4470 * An upper bound for the number of blocks to be allocated is supplied to
4471 * the first call in "total"; if no allocation group has that many free
4472 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4476 xfs_trans_t
*tp
, /* transaction pointer */
4477 xfs_inode_t
*ip
, /* incore inode */
4478 xfs_fileoff_t bno
, /* starting file offs. mapped */
4479 xfs_filblks_t len
, /* length to map in file */
4480 int flags
, /* XFS_BMAPI_... */
4481 xfs_fsblock_t
*firstblock
, /* first allocated block
4482 controls a.g. for allocs */
4483 xfs_extlen_t total
, /* total blocks needed */
4484 xfs_bmbt_irec_t
*mval
, /* output: map values */
4485 int *nmap
, /* i/o: mval size/count */
4486 xfs_bmap_free_t
*flist
, /* i/o: list extents to free */
4487 xfs_extdelta_t
*delta
) /* o: change made to incore extents */
4489 xfs_fsblock_t abno
; /* allocated block number */
4490 xfs_extlen_t alen
; /* allocated extent length */
4491 xfs_fileoff_t aoff
; /* allocated file offset */
4492 xfs_bmalloca_t bma
= { 0 }; /* args for xfs_bmap_alloc */
4493 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
4494 xfs_fileoff_t end
; /* end of mapped file region */
4495 int eof
; /* we've hit the end of extents */
4496 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
4497 int error
; /* error return */
4498 xfs_bmbt_irec_t got
; /* current file extent record */
4499 xfs_ifork_t
*ifp
; /* inode fork pointer */
4500 xfs_extlen_t indlen
; /* indirect blocks length */
4501 xfs_extnum_t lastx
; /* last useful extent number */
4502 int logflags
; /* flags for transaction logging */
4503 xfs_extlen_t minleft
; /* min blocks left after allocation */
4504 xfs_extlen_t minlen
; /* min allocation size */
4505 xfs_mount_t
*mp
; /* xfs mount structure */
4506 int n
; /* current extent index */
4507 int nallocs
; /* number of extents alloc'd */
4508 xfs_extnum_t nextents
; /* number of extents in file */
4509 xfs_fileoff_t obno
; /* old block number (offset) */
4510 xfs_bmbt_irec_t prev
; /* previous file extent record */
4511 int tmp_logflags
; /* temp flags holder */
4512 int whichfork
; /* data or attr fork */
4513 char inhole
; /* current location is hole in file */
4514 char wasdelay
; /* old extent was delayed */
4515 char wr
; /* this is a write request */
4516 char rt
; /* this is a realtime file */
4518 xfs_fileoff_t orig_bno
; /* original block number value */
4519 int orig_flags
; /* original flags arg value */
4520 xfs_filblks_t orig_len
; /* original value of len arg */
4521 xfs_bmbt_irec_t
*orig_mval
; /* original value of mval */
4522 int orig_nmap
; /* original value of *nmap */
4531 ASSERT(*nmap
<= XFS_BMAP_MAX_NMAP
|| !(flags
& XFS_BMAPI_WRITE
));
4532 whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
4533 XFS_ATTR_FORK
: XFS_DATA_FORK
;
4535 if (unlikely(XFS_TEST_ERROR(
4536 (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4537 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
4538 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
),
4539 mp
, XFS_ERRTAG_BMAPIFORMAT
, XFS_RANDOM_BMAPIFORMAT
))) {
4540 XFS_ERROR_REPORT("xfs_bmapi", XFS_ERRLEVEL_LOW
, mp
);
4541 return XFS_ERROR(EFSCORRUPTED
);
4543 if (XFS_FORCED_SHUTDOWN(mp
))
4544 return XFS_ERROR(EIO
);
4545 rt
= (whichfork
== XFS_DATA_FORK
) && XFS_IS_REALTIME_INODE(ip
);
4546 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4547 ASSERT(ifp
->if_ext_max
==
4548 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
4549 if ((wr
= (flags
& XFS_BMAPI_WRITE
)) != 0)
4550 XFS_STATS_INC(xs_blk_mapw
);
4552 XFS_STATS_INC(xs_blk_mapr
);
4554 * IGSTATE flag is used to combine extents which
4555 * differ only due to the state of the extents.
4556 * This technique is used from xfs_getbmap()
4557 * when the caller does not wish to see the
4558 * separation (which is the default).
4560 * This technique is also used when writing a
4561 * buffer which has been partially written,
4562 * (usually by being flushed during a chunkread),
4563 * to ensure one write takes place. This also
4564 * prevents a change in the xfs inode extents at
4565 * this time, intentionally. This change occurs
4566 * on completion of the write operation, in
4567 * xfs_strat_comp(), where the xfs_bmapi() call
4568 * is transactioned, and the extents combined.
4570 if ((flags
& XFS_BMAPI_IGSTATE
) && wr
) /* if writing unwritten space */
4571 wr
= 0; /* no allocations are allowed */
4572 ASSERT(wr
|| !(flags
& XFS_BMAPI_DELAY
));
4576 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4578 if ((error
= xfs_bmap_local_to_extents(tp
, ip
,
4579 firstblock
, total
, &logflags
, whichfork
)))
4582 if (wr
&& *firstblock
== NULLFSBLOCK
) {
4583 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
)
4584 minleft
= be16_to_cpu(ifp
->if_broot
->bb_level
) + 1;
4589 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4590 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4592 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
4594 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4600 delta
->xed_startoff
= NULLFILEOFF
;
4601 delta
->xed_blockcount
= 0;
4603 while (bno
< end
&& n
< *nmap
) {
4605 * Reading past eof, act as though there's a hole
4609 got
.br_startoff
= end
;
4610 inhole
= eof
|| got
.br_startoff
> bno
;
4611 wasdelay
= wr
&& !inhole
&& !(flags
& XFS_BMAPI_DELAY
) &&
4612 isnullstartblock(got
.br_startblock
);
4614 * First, deal with the hole before the allocated space
4615 * that we found, if any.
4617 if (wr
&& (inhole
|| wasdelay
)) {
4619 * For the wasdelay case, we could also just
4620 * allocate the stuff asked for in this bmap call
4621 * but that wouldn't be as good.
4623 if (wasdelay
&& !(flags
& XFS_BMAPI_EXACT
)) {
4624 alen
= (xfs_extlen_t
)got
.br_blockcount
;
4625 aoff
= got
.br_startoff
;
4626 if (lastx
!= NULLEXTNUM
&& lastx
) {
4627 ep
= xfs_iext_get_ext(ifp
, lastx
- 1);
4628 xfs_bmbt_get_all(ep
, &prev
);
4630 } else if (wasdelay
) {
4631 alen
= (xfs_extlen_t
)
4632 XFS_FILBLKS_MIN(len
,
4634 got
.br_blockcount
) - bno
);
4637 alen
= (xfs_extlen_t
)
4638 XFS_FILBLKS_MIN(len
, MAXEXTLEN
);
4640 alen
= (xfs_extlen_t
)
4641 XFS_FILBLKS_MIN(alen
,
4642 got
.br_startoff
- bno
);
4645 minlen
= (flags
& XFS_BMAPI_CONTIG
) ? alen
: 1;
4646 if (flags
& XFS_BMAPI_DELAY
) {
4649 /* Figure out the extent size, adjust alen */
4650 extsz
= xfs_get_extsz_hint(ip
);
4652 error
= xfs_bmap_extsize_align(mp
,
4655 flags
&XFS_BMAPI_DELAY
,
4656 flags
&XFS_BMAPI_CONVERT
,
4662 extsz
= alen
/ mp
->m_sb
.sb_rextsize
;
4665 * Make a transaction-less quota reservation for
4666 * delayed allocation blocks. This number gets
4667 * adjusted later. We return if we haven't
4668 * allocated blocks already inside this loop.
4670 error
= xfs_trans_reserve_quota_nblks(
4671 NULL
, ip
, (long)alen
, 0,
4672 rt
? XFS_QMOPT_RES_RTBLKS
:
4673 XFS_QMOPT_RES_REGBLKS
);
4677 ASSERT(cur
== NULL
);
4684 * Split changing sb for alen and indlen since
4685 * they could be coming from different places.
4687 indlen
= (xfs_extlen_t
)
4688 xfs_bmap_worst_indlen(ip
, alen
);
4692 error
= xfs_mod_incore_sb(mp
,
4694 -((int64_t)extsz
), (flags
&
4695 XFS_BMAPI_RSVBLOCKS
));
4697 error
= xfs_mod_incore_sb(mp
,
4699 -((int64_t)alen
), (flags
&
4700 XFS_BMAPI_RSVBLOCKS
));
4703 error
= xfs_mod_incore_sb(mp
,
4705 -((int64_t)indlen
), (flags
&
4706 XFS_BMAPI_RSVBLOCKS
));
4708 xfs_mod_incore_sb(mp
,
4710 (int64_t)extsz
, (flags
&
4711 XFS_BMAPI_RSVBLOCKS
));
4713 xfs_mod_incore_sb(mp
,
4715 (int64_t)alen
, (flags
&
4716 XFS_BMAPI_RSVBLOCKS
));
4720 if (XFS_IS_QUOTA_ON(mp
))
4721 /* unreserve the blocks now */
4723 xfs_trans_unreserve_quota_nblks(
4726 XFS_QMOPT_RES_RTBLKS
:
4727 XFS_QMOPT_RES_REGBLKS
);
4731 ip
->i_delayed_blks
+= alen
;
4732 abno
= nullstartblock(indlen
);
4735 * If first time, allocate and fill in
4736 * once-only bma fields.
4738 if (bma
.ip
== NULL
) {
4746 /* Indicate if this is the first user data
4747 * in the file, or just any user data.
4749 if (!(flags
& XFS_BMAPI_METADATA
)) {
4750 bma
.userdata
= (aoff
== 0) ?
4751 XFS_ALLOC_INITIAL_USER_DATA
:
4755 * Fill in changeable bma fields.
4758 bma
.firstblock
= *firstblock
;
4761 bma
.conv
= !!(flags
& XFS_BMAPI_CONVERT
);
4762 bma
.wasdel
= wasdelay
;
4763 bma
.minlen
= minlen
;
4764 bma
.low
= flist
->xbf_low
;
4765 bma
.minleft
= minleft
;
4767 * Only want to do the alignment at the
4768 * eof if it is userdata and allocation length
4769 * is larger than a stripe unit.
4771 if (mp
->m_dalign
&& alen
>= mp
->m_dalign
&&
4772 (!(flags
& XFS_BMAPI_METADATA
)) &&
4773 (whichfork
== XFS_DATA_FORK
)) {
4774 if ((error
= xfs_bmap_isaeof(ip
, aoff
,
4775 whichfork
, &bma
.aeof
)))
4782 if ((error
= xfs_bmap_alloc(&bma
)))
4785 * Copy out result fields.
4788 if ((flist
->xbf_low
= bma
.low
))
4792 ASSERT(*firstblock
== NULLFSBLOCK
||
4793 XFS_FSB_TO_AGNO(mp
, *firstblock
) ==
4794 XFS_FSB_TO_AGNO(mp
, bma
.firstblock
) ||
4796 XFS_FSB_TO_AGNO(mp
, *firstblock
) <
4797 XFS_FSB_TO_AGNO(mp
, bma
.firstblock
)));
4798 *firstblock
= bma
.firstblock
;
4800 cur
->bc_private
.b
.firstblock
=
4802 if (abno
== NULLFSBLOCK
)
4804 if ((ifp
->if_flags
& XFS_IFBROOT
) && !cur
) {
4805 cur
= xfs_bmbt_init_cursor(mp
, tp
,
4807 cur
->bc_private
.b
.firstblock
=
4809 cur
->bc_private
.b
.flist
= flist
;
4812 * Bump the number of extents we've allocated
4818 cur
->bc_private
.b
.flags
=
4819 wasdelay
? XFS_BTCUR_BPRV_WASDEL
: 0;
4820 got
.br_startoff
= aoff
;
4821 got
.br_startblock
= abno
;
4822 got
.br_blockcount
= alen
;
4823 got
.br_state
= XFS_EXT_NORM
; /* assume normal */
4825 * Determine state of extent, and the filesystem.
4826 * A wasdelay extent has been initialized, so
4827 * shouldn't be flagged as unwritten.
4829 if (wr
&& xfs_sb_version_hasextflgbit(&mp
->m_sb
)) {
4830 if (!wasdelay
&& (flags
& XFS_BMAPI_PREALLOC
))
4831 got
.br_state
= XFS_EXT_UNWRITTEN
;
4833 error
= xfs_bmap_add_extent(ip
, lastx
, &cur
, &got
,
4834 firstblock
, flist
, &tmp_logflags
, delta
,
4835 whichfork
, (flags
& XFS_BMAPI_RSVBLOCKS
));
4836 logflags
|= tmp_logflags
;
4839 lastx
= ifp
->if_lastex
;
4840 ep
= xfs_iext_get_ext(ifp
, lastx
);
4841 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4842 xfs_bmbt_get_all(ep
, &got
);
4843 ASSERT(got
.br_startoff
<= aoff
);
4844 ASSERT(got
.br_startoff
+ got
.br_blockcount
>=
4847 if (flags
& XFS_BMAPI_DELAY
) {
4848 ASSERT(isnullstartblock(got
.br_startblock
));
4849 ASSERT(startblockval(got
.br_startblock
) > 0);
4851 ASSERT(got
.br_state
== XFS_EXT_NORM
||
4852 got
.br_state
== XFS_EXT_UNWRITTEN
);
4855 * Fall down into the found allocated space case.
4857 } else if (inhole
) {
4859 * Reading in a hole.
4861 mval
->br_startoff
= bno
;
4862 mval
->br_startblock
= HOLESTARTBLOCK
;
4863 mval
->br_blockcount
=
4864 XFS_FILBLKS_MIN(len
, got
.br_startoff
- bno
);
4865 mval
->br_state
= XFS_EXT_NORM
;
4866 bno
+= mval
->br_blockcount
;
4867 len
-= mval
->br_blockcount
;
4873 * Then deal with the allocated space we found.
4876 if (!(flags
& XFS_BMAPI_ENTIRE
) &&
4877 (got
.br_startoff
+ got
.br_blockcount
> obno
)) {
4880 ASSERT((bno
>= obno
) || (n
== 0));
4882 mval
->br_startoff
= bno
;
4883 if (isnullstartblock(got
.br_startblock
)) {
4884 ASSERT(!wr
|| (flags
& XFS_BMAPI_DELAY
));
4885 mval
->br_startblock
= DELAYSTARTBLOCK
;
4887 mval
->br_startblock
=
4889 (bno
- got
.br_startoff
);
4891 * Return the minimum of what we got and what we
4892 * asked for for the length. We can use the len
4893 * variable here because it is modified below
4894 * and we could have been there before coming
4895 * here if the first part of the allocation
4896 * didn't overlap what was asked for.
4898 mval
->br_blockcount
=
4899 XFS_FILBLKS_MIN(end
- bno
, got
.br_blockcount
-
4900 (bno
- got
.br_startoff
));
4901 mval
->br_state
= got
.br_state
;
4902 ASSERT(mval
->br_blockcount
<= len
);
4905 if (isnullstartblock(mval
->br_startblock
)) {
4906 ASSERT(!wr
|| (flags
& XFS_BMAPI_DELAY
));
4907 mval
->br_startblock
= DELAYSTARTBLOCK
;
4912 * Check if writing previously allocated but
4913 * unwritten extents.
4915 if (wr
&& mval
->br_state
== XFS_EXT_UNWRITTEN
&&
4916 ((flags
& (XFS_BMAPI_PREALLOC
|XFS_BMAPI_DELAY
)) == 0)) {
4918 * Modify (by adding) the state flag, if writing.
4920 ASSERT(mval
->br_blockcount
<= len
);
4921 if ((ifp
->if_flags
& XFS_IFBROOT
) && !cur
) {
4922 cur
= xfs_bmbt_init_cursor(mp
,
4924 cur
->bc_private
.b
.firstblock
=
4926 cur
->bc_private
.b
.flist
= flist
;
4928 mval
->br_state
= XFS_EXT_NORM
;
4929 error
= xfs_bmap_add_extent(ip
, lastx
, &cur
, mval
,
4930 firstblock
, flist
, &tmp_logflags
, delta
,
4931 whichfork
, (flags
& XFS_BMAPI_RSVBLOCKS
));
4932 logflags
|= tmp_logflags
;
4935 lastx
= ifp
->if_lastex
;
4936 ep
= xfs_iext_get_ext(ifp
, lastx
);
4937 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4938 xfs_bmbt_get_all(ep
, &got
);
4940 * We may have combined previously unwritten
4941 * space with written space, so generate
4944 if (mval
->br_blockcount
< len
)
4948 ASSERT((flags
& XFS_BMAPI_ENTIRE
) ||
4949 ((mval
->br_startoff
+ mval
->br_blockcount
) <= end
));
4950 ASSERT((flags
& XFS_BMAPI_ENTIRE
) ||
4951 (mval
->br_blockcount
<= len
) ||
4952 (mval
->br_startoff
< obno
));
4953 bno
= mval
->br_startoff
+ mval
->br_blockcount
;
4955 if (n
> 0 && mval
->br_startoff
== mval
[-1].br_startoff
) {
4956 ASSERT(mval
->br_startblock
== mval
[-1].br_startblock
);
4957 ASSERT(mval
->br_blockcount
> mval
[-1].br_blockcount
);
4958 ASSERT(mval
->br_state
== mval
[-1].br_state
);
4959 mval
[-1].br_blockcount
= mval
->br_blockcount
;
4960 mval
[-1].br_state
= mval
->br_state
;
4961 } else if (n
> 0 && mval
->br_startblock
!= DELAYSTARTBLOCK
&&
4962 mval
[-1].br_startblock
!= DELAYSTARTBLOCK
&&
4963 mval
[-1].br_startblock
!= HOLESTARTBLOCK
&&
4964 mval
->br_startblock
==
4965 mval
[-1].br_startblock
+ mval
[-1].br_blockcount
&&
4966 ((flags
& XFS_BMAPI_IGSTATE
) ||
4967 mval
[-1].br_state
== mval
->br_state
)) {
4968 ASSERT(mval
->br_startoff
==
4969 mval
[-1].br_startoff
+ mval
[-1].br_blockcount
);
4970 mval
[-1].br_blockcount
+= mval
->br_blockcount
;
4972 mval
->br_startblock
== DELAYSTARTBLOCK
&&
4973 mval
[-1].br_startblock
== DELAYSTARTBLOCK
&&
4974 mval
->br_startoff
==
4975 mval
[-1].br_startoff
+ mval
[-1].br_blockcount
) {
4976 mval
[-1].br_blockcount
+= mval
->br_blockcount
;
4977 mval
[-1].br_state
= mval
->br_state
;
4978 } else if (!((n
== 0) &&
4979 ((mval
->br_startoff
+ mval
->br_blockcount
) <=
4985 * If we're done, stop now. Stop when we've allocated
4986 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4987 * the transaction may get too big.
4989 if (bno
>= end
|| n
>= *nmap
|| nallocs
>= *nmap
)
4992 * Else go on to the next record.
4994 ep
= xfs_iext_get_ext(ifp
, ++lastx
);
4996 if (lastx
>= nextents
)
4999 xfs_bmbt_get_all(ep
, &got
);
5001 ifp
->if_lastex
= lastx
;
5004 * Transform from btree to extents, give it cur.
5006 if (tp
&& XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
&&
5007 XFS_IFORK_NEXTENTS(ip
, whichfork
) <= ifp
->if_ext_max
) {
5009 error
= xfs_bmap_btree_to_extents(tp
, ip
, cur
,
5010 &tmp_logflags
, whichfork
);
5011 logflags
|= tmp_logflags
;
5015 ASSERT(ifp
->if_ext_max
==
5016 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5017 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
||
5018 XFS_IFORK_NEXTENTS(ip
, whichfork
) > ifp
->if_ext_max
);
5020 if (delta
&& delta
->xed_startoff
!= NULLFILEOFF
) {
5021 /* A change was actually made.
5022 * Note that delta->xed_blockount is an offset at this
5023 * point and needs to be converted to a block count.
5025 ASSERT(delta
->xed_blockcount
> delta
->xed_startoff
);
5026 delta
->xed_blockcount
-= delta
->xed_startoff
;
5030 * Log everything. Do this after conversion, there's no point in
5031 * logging the extent records if we've converted to btree format.
5033 if ((logflags
& xfs_ilog_fext(whichfork
)) &&
5034 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
5035 logflags
&= ~xfs_ilog_fext(whichfork
);
5036 else if ((logflags
& xfs_ilog_fbroot(whichfork
)) &&
5037 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)
5038 logflags
&= ~xfs_ilog_fbroot(whichfork
);
5040 * Log whatever the flags say, even if error. Otherwise we might miss
5041 * detecting a case where the data is changed, there's an error,
5042 * and it's not logged so we don't shutdown when we should.
5046 xfs_trans_log_inode(tp
, ip
, logflags
);
5050 ASSERT(*firstblock
== NULLFSBLOCK
||
5051 XFS_FSB_TO_AGNO(mp
, *firstblock
) ==
5053 cur
->bc_private
.b
.firstblock
) ||
5055 XFS_FSB_TO_AGNO(mp
, *firstblock
) <
5057 cur
->bc_private
.b
.firstblock
)));
5058 *firstblock
= cur
->bc_private
.b
.firstblock
;
5060 xfs_btree_del_cursor(cur
,
5061 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
5064 xfs_bmap_validate_ret(orig_bno
, orig_len
, orig_flags
, orig_mval
,
5070 * Map file blocks to filesystem blocks, simple version.
5071 * One block (extent) only, read-only.
5072 * For flags, only the XFS_BMAPI_ATTRFORK flag is examined.
5073 * For the other flag values, the effect is as if XFS_BMAPI_METADATA
5074 * was set and all the others were clear.
5078 xfs_trans_t
*tp
, /* transaction pointer */
5079 xfs_inode_t
*ip
, /* incore inode */
5080 int whichfork
, /* data or attr fork */
5081 xfs_fsblock_t
*fsb
, /* output: mapped block */
5082 xfs_fileoff_t bno
) /* starting file offs. mapped */
5084 int eof
; /* we've hit the end of extents */
5085 int error
; /* error return */
5086 xfs_bmbt_irec_t got
; /* current file extent record */
5087 xfs_ifork_t
*ifp
; /* inode fork pointer */
5088 xfs_extnum_t lastx
; /* last useful extent number */
5089 xfs_bmbt_irec_t prev
; /* previous file extent record */
5091 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5093 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
5094 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)) {
5095 XFS_ERROR_REPORT("xfs_bmapi_single", XFS_ERRLEVEL_LOW
,
5097 return XFS_ERROR(EFSCORRUPTED
);
5099 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
5100 return XFS_ERROR(EIO
);
5101 XFS_STATS_INC(xs_blk_mapr
);
5102 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5103 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
5105 (void)xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
5108 * Reading past eof, act as though there's a hole
5111 if (eof
|| got
.br_startoff
> bno
) {
5115 ASSERT(!isnullstartblock(got
.br_startblock
));
5116 ASSERT(bno
< got
.br_startoff
+ got
.br_blockcount
);
5117 *fsb
= got
.br_startblock
+ (bno
- got
.br_startoff
);
5118 ifp
->if_lastex
= lastx
;
5123 * Unmap (remove) blocks from a file.
5124 * If nexts is nonzero then the number of extents to remove is limited to
5125 * that value. If not all extents in the block range can be removed then
5130 xfs_trans_t
*tp
, /* transaction pointer */
5131 struct xfs_inode
*ip
, /* incore inode */
5132 xfs_fileoff_t bno
, /* starting offset to unmap */
5133 xfs_filblks_t len
, /* length to unmap in file */
5134 int flags
, /* misc flags */
5135 xfs_extnum_t nexts
, /* number of extents max */
5136 xfs_fsblock_t
*firstblock
, /* first allocated block
5137 controls a.g. for allocs */
5138 xfs_bmap_free_t
*flist
, /* i/o: list extents to free */
5139 xfs_extdelta_t
*delta
, /* o: change made to incore
5141 int *done
) /* set if not done yet */
5143 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
5144 xfs_bmbt_irec_t del
; /* extent being deleted */
5145 int eof
; /* is deleting at eof */
5146 xfs_bmbt_rec_host_t
*ep
; /* extent record pointer */
5147 int error
; /* error return value */
5148 xfs_extnum_t extno
; /* extent number in list */
5149 xfs_bmbt_irec_t got
; /* current extent record */
5150 xfs_ifork_t
*ifp
; /* inode fork pointer */
5151 int isrt
; /* freeing in rt area */
5152 xfs_extnum_t lastx
; /* last extent index used */
5153 int logflags
; /* transaction logging flags */
5154 xfs_extlen_t mod
; /* rt extent offset */
5155 xfs_mount_t
*mp
; /* mount structure */
5156 xfs_extnum_t nextents
; /* number of file extents */
5157 xfs_bmbt_irec_t prev
; /* previous extent record */
5158 xfs_fileoff_t start
; /* first file offset deleted */
5159 int tmp_logflags
; /* partial logging flags */
5160 int wasdel
; /* was a delayed alloc extent */
5161 int whichfork
; /* data or attribute fork */
5162 int rsvd
; /* OK to allocate reserved blocks */
5165 trace_xfs_bunmap(ip
, bno
, len
, flags
, _RET_IP_
);
5167 whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
5168 XFS_ATTR_FORK
: XFS_DATA_FORK
;
5169 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5171 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
5172 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)) {
5173 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW
,
5175 return XFS_ERROR(EFSCORRUPTED
);
5178 if (XFS_FORCED_SHUTDOWN(mp
))
5179 return XFS_ERROR(EIO
);
5180 rsvd
= (flags
& XFS_BMAPI_RSVBLOCKS
) != 0;
5183 ASSERT(ifp
->if_ext_max
==
5184 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5185 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5186 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
5188 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5189 if (nextents
== 0) {
5193 XFS_STATS_INC(xs_blk_unmap
);
5194 isrt
= (whichfork
== XFS_DATA_FORK
) && XFS_IS_REALTIME_INODE(ip
);
5196 bno
= start
+ len
- 1;
5197 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
5200 delta
->xed_startoff
= NULLFILEOFF
;
5201 delta
->xed_blockcount
= 0;
5204 * Check to see if the given block number is past the end of the
5205 * file, back up to the last block if so...
5208 ep
= xfs_iext_get_ext(ifp
, --lastx
);
5209 xfs_bmbt_get_all(ep
, &got
);
5210 bno
= got
.br_startoff
+ got
.br_blockcount
- 1;
5213 if (ifp
->if_flags
& XFS_IFBROOT
) {
5214 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
);
5215 cur
= xfs_bmbt_init_cursor(mp
, tp
, ip
, whichfork
);
5216 cur
->bc_private
.b
.firstblock
= *firstblock
;
5217 cur
->bc_private
.b
.flist
= flist
;
5218 cur
->bc_private
.b
.flags
= 0;
5222 while (bno
!= (xfs_fileoff_t
)-1 && bno
>= start
&& lastx
>= 0 &&
5223 (nexts
== 0 || extno
< nexts
)) {
5225 * Is the found extent after a hole in which bno lives?
5226 * Just back up to the previous extent, if so.
5228 if (got
.br_startoff
> bno
) {
5231 ep
= xfs_iext_get_ext(ifp
, lastx
);
5232 xfs_bmbt_get_all(ep
, &got
);
5235 * Is the last block of this extent before the range
5236 * we're supposed to delete? If so, we're done.
5238 bno
= XFS_FILEOFF_MIN(bno
,
5239 got
.br_startoff
+ got
.br_blockcount
- 1);
5243 * Then deal with the (possibly delayed) allocated space
5248 wasdel
= isnullstartblock(del
.br_startblock
);
5249 if (got
.br_startoff
< start
) {
5250 del
.br_startoff
= start
;
5251 del
.br_blockcount
-= start
- got
.br_startoff
;
5253 del
.br_startblock
+= start
- got
.br_startoff
;
5255 if (del
.br_startoff
+ del
.br_blockcount
> bno
+ 1)
5256 del
.br_blockcount
= bno
+ 1 - del
.br_startoff
;
5257 sum
= del
.br_startblock
+ del
.br_blockcount
;
5259 (mod
= do_mod(sum
, mp
->m_sb
.sb_rextsize
))) {
5261 * Realtime extent not lined up at the end.
5262 * The extent could have been split into written
5263 * and unwritten pieces, or we could just be
5264 * unmapping part of it. But we can't really
5265 * get rid of part of a realtime extent.
5267 if (del
.br_state
== XFS_EXT_UNWRITTEN
||
5268 !xfs_sb_version_hasextflgbit(&mp
->m_sb
)) {
5270 * This piece is unwritten, or we're not
5271 * using unwritten extents. Skip over it.
5274 bno
-= mod
> del
.br_blockcount
?
5275 del
.br_blockcount
: mod
;
5276 if (bno
< got
.br_startoff
) {
5278 xfs_bmbt_get_all(xfs_iext_get_ext(
5284 * It's written, turn it unwritten.
5285 * This is better than zeroing it.
5287 ASSERT(del
.br_state
== XFS_EXT_NORM
);
5288 ASSERT(xfs_trans_get_block_res(tp
) > 0);
5290 * If this spans a realtime extent boundary,
5291 * chop it back to the start of the one we end at.
5293 if (del
.br_blockcount
> mod
) {
5294 del
.br_startoff
+= del
.br_blockcount
- mod
;
5295 del
.br_startblock
+= del
.br_blockcount
- mod
;
5296 del
.br_blockcount
= mod
;
5298 del
.br_state
= XFS_EXT_UNWRITTEN
;
5299 error
= xfs_bmap_add_extent(ip
, lastx
, &cur
, &del
,
5300 firstblock
, flist
, &logflags
, delta
,
5306 if (isrt
&& (mod
= do_mod(del
.br_startblock
, mp
->m_sb
.sb_rextsize
))) {
5308 * Realtime extent is lined up at the end but not
5309 * at the front. We'll get rid of full extents if
5312 mod
= mp
->m_sb
.sb_rextsize
- mod
;
5313 if (del
.br_blockcount
> mod
) {
5314 del
.br_blockcount
-= mod
;
5315 del
.br_startoff
+= mod
;
5316 del
.br_startblock
+= mod
;
5317 } else if ((del
.br_startoff
== start
&&
5318 (del
.br_state
== XFS_EXT_UNWRITTEN
||
5319 xfs_trans_get_block_res(tp
) == 0)) ||
5320 !xfs_sb_version_hasextflgbit(&mp
->m_sb
)) {
5322 * Can't make it unwritten. There isn't
5323 * a full extent here so just skip it.
5325 ASSERT(bno
>= del
.br_blockcount
);
5326 bno
-= del
.br_blockcount
;
5327 if (bno
< got
.br_startoff
) {
5329 xfs_bmbt_get_all(--ep
, &got
);
5332 } else if (del
.br_state
== XFS_EXT_UNWRITTEN
) {
5334 * This one is already unwritten.
5335 * It must have a written left neighbor.
5336 * Unwrite the killed part of that one and
5340 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
,
5342 ASSERT(prev
.br_state
== XFS_EXT_NORM
);
5343 ASSERT(!isnullstartblock(prev
.br_startblock
));
5344 ASSERT(del
.br_startblock
==
5345 prev
.br_startblock
+ prev
.br_blockcount
);
5346 if (prev
.br_startoff
< start
) {
5347 mod
= start
- prev
.br_startoff
;
5348 prev
.br_blockcount
-= mod
;
5349 prev
.br_startblock
+= mod
;
5350 prev
.br_startoff
= start
;
5352 prev
.br_state
= XFS_EXT_UNWRITTEN
;
5353 error
= xfs_bmap_add_extent(ip
, lastx
- 1, &cur
,
5354 &prev
, firstblock
, flist
, &logflags
,
5355 delta
, XFS_DATA_FORK
, 0);
5360 ASSERT(del
.br_state
== XFS_EXT_NORM
);
5361 del
.br_state
= XFS_EXT_UNWRITTEN
;
5362 error
= xfs_bmap_add_extent(ip
, lastx
, &cur
,
5363 &del
, firstblock
, flist
, &logflags
,
5364 delta
, XFS_DATA_FORK
, 0);
5371 ASSERT(startblockval(del
.br_startblock
) > 0);
5372 /* Update realtime/data freespace, unreserve quota */
5374 xfs_filblks_t rtexts
;
5376 rtexts
= XFS_FSB_TO_B(mp
, del
.br_blockcount
);
5377 do_div(rtexts
, mp
->m_sb
.sb_rextsize
);
5378 xfs_mod_incore_sb(mp
, XFS_SBS_FREXTENTS
,
5379 (int64_t)rtexts
, rsvd
);
5380 (void)xfs_trans_reserve_quota_nblks(NULL
,
5381 ip
, -((long)del
.br_blockcount
), 0,
5382 XFS_QMOPT_RES_RTBLKS
);
5384 xfs_mod_incore_sb(mp
, XFS_SBS_FDBLOCKS
,
5385 (int64_t)del
.br_blockcount
, rsvd
);
5386 (void)xfs_trans_reserve_quota_nblks(NULL
,
5387 ip
, -((long)del
.br_blockcount
), 0,
5388 XFS_QMOPT_RES_REGBLKS
);
5390 ip
->i_delayed_blks
-= del
.br_blockcount
;
5392 cur
->bc_private
.b
.flags
|=
5393 XFS_BTCUR_BPRV_WASDEL
;
5395 cur
->bc_private
.b
.flags
&= ~XFS_BTCUR_BPRV_WASDEL
;
5397 * If it's the case where the directory code is running
5398 * with no block reservation, and the deleted block is in
5399 * the middle of its extent, and the resulting insert
5400 * of an extent would cause transformation to btree format,
5401 * then reject it. The calling code will then swap
5402 * blocks around instead.
5403 * We have to do this now, rather than waiting for the
5404 * conversion to btree format, since the transaction
5407 if (!wasdel
&& xfs_trans_get_block_res(tp
) == 0 &&
5408 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
5409 XFS_IFORK_NEXTENTS(ip
, whichfork
) >= ifp
->if_ext_max
&&
5410 del
.br_startoff
> got
.br_startoff
&&
5411 del
.br_startoff
+ del
.br_blockcount
<
5412 got
.br_startoff
+ got
.br_blockcount
) {
5413 error
= XFS_ERROR(ENOSPC
);
5416 error
= xfs_bmap_del_extent(ip
, tp
, lastx
, flist
, cur
, &del
,
5417 &tmp_logflags
, delta
, whichfork
, rsvd
);
5418 logflags
|= tmp_logflags
;
5421 bno
= del
.br_startoff
- 1;
5423 lastx
= ifp
->if_lastex
;
5425 * If not done go on to the next (previous) record.
5426 * Reset ep in case the extents array was re-alloced.
5428 ep
= xfs_iext_get_ext(ifp
, lastx
);
5429 if (bno
!= (xfs_fileoff_t
)-1 && bno
>= start
) {
5430 if (lastx
>= XFS_IFORK_NEXTENTS(ip
, whichfork
) ||
5431 xfs_bmbt_get_startoff(ep
) > bno
) {
5433 ep
= xfs_iext_get_ext(ifp
, lastx
);
5436 xfs_bmbt_get_all(ep
, &got
);
5440 ifp
->if_lastex
= lastx
;
5441 *done
= bno
== (xfs_fileoff_t
)-1 || bno
< start
|| lastx
< 0;
5442 ASSERT(ifp
->if_ext_max
==
5443 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5445 * Convert to a btree if necessary.
5447 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
5448 XFS_IFORK_NEXTENTS(ip
, whichfork
) > ifp
->if_ext_max
) {
5449 ASSERT(cur
== NULL
);
5450 error
= xfs_bmap_extents_to_btree(tp
, ip
, firstblock
, flist
,
5451 &cur
, 0, &tmp_logflags
, whichfork
);
5452 logflags
|= tmp_logflags
;
5457 * transform from btree to extents, give it cur
5459 else if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
&&
5460 XFS_IFORK_NEXTENTS(ip
, whichfork
) <= ifp
->if_ext_max
) {
5461 ASSERT(cur
!= NULL
);
5462 error
= xfs_bmap_btree_to_extents(tp
, ip
, cur
, &tmp_logflags
,
5464 logflags
|= tmp_logflags
;
5469 * transform from extents to local?
5471 ASSERT(ifp
->if_ext_max
==
5472 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5474 if (delta
&& delta
->xed_startoff
!= NULLFILEOFF
) {
5475 /* A change was actually made.
5476 * Note that delta->xed_blockount is an offset at this
5477 * point and needs to be converted to a block count.
5479 ASSERT(delta
->xed_blockcount
> delta
->xed_startoff
);
5480 delta
->xed_blockcount
-= delta
->xed_startoff
;
5484 * Log everything. Do this after conversion, there's no point in
5485 * logging the extent records if we've converted to btree format.
5487 if ((logflags
& xfs_ilog_fext(whichfork
)) &&
5488 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
5489 logflags
&= ~xfs_ilog_fext(whichfork
);
5490 else if ((logflags
& xfs_ilog_fbroot(whichfork
)) &&
5491 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)
5492 logflags
&= ~xfs_ilog_fbroot(whichfork
);
5494 * Log inode even in the error case, if the transaction
5495 * is dirty we'll need to shut down the filesystem.
5498 xfs_trans_log_inode(tp
, ip
, logflags
);
5501 *firstblock
= cur
->bc_private
.b
.firstblock
;
5502 cur
->bc_private
.b
.allocated
= 0;
5504 xfs_btree_del_cursor(cur
,
5505 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
5511 * returns 1 for success, 0 if we failed to map the extent.
5514 xfs_getbmapx_fix_eof_hole(
5515 xfs_inode_t
*ip
, /* xfs incore inode pointer */
5516 struct getbmapx
*out
, /* output structure */
5517 int prealloced
, /* this is a file with
5518 * preallocated data space */
5519 __int64_t end
, /* last block requested */
5520 xfs_fsblock_t startblock
)
5523 xfs_mount_t
*mp
; /* file system mount point */
5524 xfs_ifork_t
*ifp
; /* inode fork pointer */
5525 xfs_extnum_t lastx
; /* last extent pointer */
5526 xfs_fileoff_t fileblock
;
5528 if (startblock
== HOLESTARTBLOCK
) {
5530 out
->bmv_block
= -1;
5531 fixlen
= XFS_FSB_TO_BB(mp
, XFS_B_TO_FSB(mp
, ip
->i_size
));
5532 fixlen
-= out
->bmv_offset
;
5533 if (prealloced
&& out
->bmv_offset
+ out
->bmv_length
== end
) {
5534 /* Came to hole at EOF. Trim it. */
5537 out
->bmv_length
= fixlen
;
5540 if (startblock
== DELAYSTARTBLOCK
)
5541 out
->bmv_block
= -2;
5543 out
->bmv_block
= xfs_fsb_to_db(ip
, startblock
);
5544 fileblock
= XFS_BB_TO_FSB(ip
->i_mount
, out
->bmv_offset
);
5545 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
5546 if (xfs_iext_bno_to_ext(ifp
, fileblock
, &lastx
) &&
5547 (lastx
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
))-1))
5548 out
->bmv_oflags
|= BMV_OF_LAST
;
5555 * Get inode's extents as described in bmv, and format for output.
5556 * Calls formatter to fill the user's buffer until all extents
5557 * are mapped, until the passed-in bmv->bmv_count slots have
5558 * been filled, or until the formatter short-circuits the loop,
5559 * if it is tracking filled-in extents on its own.
5561 int /* error code */
5564 struct getbmapx
*bmv
, /* user bmap structure */
5565 xfs_bmap_format_t formatter
, /* format to user */
5566 void *arg
) /* formatter arg */
5568 __int64_t bmvend
; /* last block requested */
5569 int error
= 0; /* return value */
5570 __int64_t fixlen
; /* length for -1 case */
5571 int i
; /* extent number */
5572 int lock
; /* lock state */
5573 xfs_bmbt_irec_t
*map
; /* buffer for user's data */
5574 xfs_mount_t
*mp
; /* file system mount point */
5575 int nex
; /* # of user extents can do */
5576 int nexleft
; /* # of user extents left */
5577 int subnex
; /* # of bmapi's can do */
5578 int nmap
; /* number of map entries */
5579 struct getbmapx
*out
; /* output structure */
5580 int whichfork
; /* data or attr fork */
5581 int prealloced
; /* this is a file with
5582 * preallocated data space */
5583 int iflags
; /* interface flags */
5584 int bmapi_flags
; /* flags for xfs_bmapi */
5588 iflags
= bmv
->bmv_iflags
;
5589 whichfork
= iflags
& BMV_IF_ATTRFORK
? XFS_ATTR_FORK
: XFS_DATA_FORK
;
5591 if (whichfork
== XFS_ATTR_FORK
) {
5592 if (XFS_IFORK_Q(ip
)) {
5593 if (ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
&&
5594 ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_BTREE
&&
5595 ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_LOCAL
)
5596 return XFS_ERROR(EINVAL
);
5597 } else if (unlikely(
5598 ip
->i_d
.di_aformat
!= 0 &&
5599 ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
)) {
5600 XFS_ERROR_REPORT("xfs_getbmap", XFS_ERRLEVEL_LOW
,
5602 return XFS_ERROR(EFSCORRUPTED
);
5609 * If the BMV_IF_NO_DMAPI_READ interface bit specified, do
5610 * not generate a DMAPI read event. Otherwise, if the
5611 * DM_EVENT_READ bit is set for the file, generate a read
5612 * event in order that the DMAPI application may do its thing
5613 * before we return the extents. Usually this means restoring
5614 * user file data to regions of the file that look like holes.
5616 * The "old behavior" (from XFS_IOC_GETBMAP) is to not specify
5617 * BMV_IF_NO_DMAPI_READ so that read events are generated.
5618 * If this were not true, callers of ioctl(XFS_IOC_GETBMAP)
5619 * could misinterpret holes in a DMAPI file as true holes,
5620 * when in fact they may represent offline user data.
5622 if (DM_EVENT_ENABLED(ip
, DM_EVENT_READ
) &&
5623 !(iflags
& BMV_IF_NO_DMAPI_READ
)) {
5624 error
= XFS_SEND_DATA(mp
, DM_EVENT_READ
, ip
,
5627 return XFS_ERROR(error
);
5630 if (ip
->i_d
.di_format
!= XFS_DINODE_FMT_EXTENTS
&&
5631 ip
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
&&
5632 ip
->i_d
.di_format
!= XFS_DINODE_FMT_LOCAL
)
5633 return XFS_ERROR(EINVAL
);
5635 if (xfs_get_extsz_hint(ip
) ||
5636 ip
->i_d
.di_flags
& (XFS_DIFLAG_PREALLOC
|XFS_DIFLAG_APPEND
)){
5638 fixlen
= XFS_MAXIOFFSET(mp
);
5641 fixlen
= ip
->i_size
;
5645 if (bmv
->bmv_length
== -1) {
5646 fixlen
= XFS_FSB_TO_BB(mp
, XFS_B_TO_FSB(mp
, fixlen
));
5648 max_t(__int64_t
, fixlen
- bmv
->bmv_offset
, 0);
5649 } else if (bmv
->bmv_length
== 0) {
5650 bmv
->bmv_entries
= 0;
5652 } else if (bmv
->bmv_length
< 0) {
5653 return XFS_ERROR(EINVAL
);
5656 nex
= bmv
->bmv_count
- 1;
5658 return XFS_ERROR(EINVAL
);
5659 bmvend
= bmv
->bmv_offset
+ bmv
->bmv_length
;
5662 if (bmv
->bmv_count
> ULONG_MAX
/ sizeof(struct getbmapx
))
5663 return XFS_ERROR(ENOMEM
);
5664 out
= kmem_zalloc(bmv
->bmv_count
* sizeof(struct getbmapx
), KM_MAYFAIL
);
5666 return XFS_ERROR(ENOMEM
);
5668 xfs_ilock(ip
, XFS_IOLOCK_SHARED
);
5669 if (whichfork
== XFS_DATA_FORK
&& !(iflags
& BMV_IF_DELALLOC
)) {
5670 if (ip
->i_delayed_blks
|| ip
->i_size
> ip
->i_d
.di_size
) {
5671 error
= xfs_flush_pages(ip
, 0, -1, 0, FI_REMAPF
);
5673 goto out_unlock_iolock
;
5676 ASSERT(ip
->i_delayed_blks
== 0);
5679 lock
= xfs_ilock_map_shared(ip
);
5682 * Don't let nex be bigger than the number of extents
5683 * we can have assuming alternating holes and real extents.
5685 if (nex
> XFS_IFORK_NEXTENTS(ip
, whichfork
) * 2 + 1)
5686 nex
= XFS_IFORK_NEXTENTS(ip
, whichfork
) * 2 + 1;
5688 bmapi_flags
= xfs_bmapi_aflag(whichfork
);
5689 if (!(iflags
& BMV_IF_PREALLOC
))
5690 bmapi_flags
|= XFS_BMAPI_IGSTATE
;
5693 * Allocate enough space to handle "subnex" maps at a time.
5697 map
= kmem_alloc(subnex
* sizeof(*map
), KM_MAYFAIL
| KM_NOFS
);
5699 goto out_unlock_ilock
;
5701 bmv
->bmv_entries
= 0;
5703 if (XFS_IFORK_NEXTENTS(ip
, whichfork
) == 0 &&
5704 (whichfork
== XFS_ATTR_FORK
|| !(iflags
& BMV_IF_DELALLOC
))) {
5712 nmap
= (nexleft
> subnex
) ? subnex
: nexleft
;
5713 error
= xfs_bmapi(NULL
, ip
, XFS_BB_TO_FSBT(mp
, bmv
->bmv_offset
),
5714 XFS_BB_TO_FSB(mp
, bmv
->bmv_length
),
5715 bmapi_flags
, NULL
, 0, map
, &nmap
,
5719 ASSERT(nmap
<= subnex
);
5721 for (i
= 0; i
< nmap
&& nexleft
&& bmv
->bmv_length
; i
++) {
5722 out
[cur_ext
].bmv_oflags
= 0;
5723 if (map
[i
].br_state
== XFS_EXT_UNWRITTEN
)
5724 out
[cur_ext
].bmv_oflags
|= BMV_OF_PREALLOC
;
5725 else if (map
[i
].br_startblock
== DELAYSTARTBLOCK
)
5726 out
[cur_ext
].bmv_oflags
|= BMV_OF_DELALLOC
;
5727 out
[cur_ext
].bmv_offset
=
5728 XFS_FSB_TO_BB(mp
, map
[i
].br_startoff
);
5729 out
[cur_ext
].bmv_length
=
5730 XFS_FSB_TO_BB(mp
, map
[i
].br_blockcount
);
5731 out
[cur_ext
].bmv_unused1
= 0;
5732 out
[cur_ext
].bmv_unused2
= 0;
5733 ASSERT(((iflags
& BMV_IF_DELALLOC
) != 0) ||
5734 (map
[i
].br_startblock
!= DELAYSTARTBLOCK
));
5735 if (map
[i
].br_startblock
== HOLESTARTBLOCK
&&
5736 whichfork
== XFS_ATTR_FORK
) {
5737 /* came to the end of attribute fork */
5738 out
[cur_ext
].bmv_oflags
|= BMV_OF_LAST
;
5742 if (!xfs_getbmapx_fix_eof_hole(ip
, &out
[cur_ext
],
5744 map
[i
].br_startblock
))
5749 out
[cur_ext
].bmv_offset
+
5750 out
[cur_ext
].bmv_length
;
5752 max_t(__int64_t
, 0, bmvend
- bmv
->bmv_offset
);
5756 } while (nmap
&& nexleft
&& bmv
->bmv_length
);
5761 xfs_iunlock_map_shared(ip
, lock
);
5763 xfs_iunlock(ip
, XFS_IOLOCK_SHARED
);
5765 for (i
= 0; i
< cur_ext
; i
++) {
5766 int full
= 0; /* user array is full */
5768 /* format results & advance arg */
5769 error
= formatter(&arg
, &out
[i
], &full
);
5779 * Check the last inode extent to determine whether this allocation will result
5780 * in blocks being allocated at the end of the file. When we allocate new data
5781 * blocks at the end of the file which do not start at the previous data block,
5782 * we will try to align the new blocks at stripe unit boundaries.
5784 STATIC
int /* error */
5786 xfs_inode_t
*ip
, /* incore inode pointer */
5787 xfs_fileoff_t off
, /* file offset in fsblocks */
5788 int whichfork
, /* data or attribute fork */
5789 char *aeof
) /* return value */
5791 int error
; /* error return value */
5792 xfs_ifork_t
*ifp
; /* inode fork pointer */
5793 xfs_bmbt_rec_host_t
*lastrec
; /* extent record pointer */
5794 xfs_extnum_t nextents
; /* number of file extents */
5795 xfs_bmbt_irec_t s
; /* expanded extent record */
5797 ASSERT(whichfork
== XFS_DATA_FORK
);
5798 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5799 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5800 (error
= xfs_iread_extents(NULL
, ip
, whichfork
)))
5802 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5803 if (nextents
== 0) {
5808 * Go to the last extent
5810 lastrec
= xfs_iext_get_ext(ifp
, nextents
- 1);
5811 xfs_bmbt_get_all(lastrec
, &s
);
5813 * Check we are allocating in the last extent (for delayed allocations)
5814 * or past the last extent for non-delayed allocations.
5816 *aeof
= (off
>= s
.br_startoff
&&
5817 off
< s
.br_startoff
+ s
.br_blockcount
&&
5818 isnullstartblock(s
.br_startblock
)) ||
5819 off
>= s
.br_startoff
+ s
.br_blockcount
;
5824 * Check if the endoff is outside the last extent. If so the caller will grow
5825 * the allocation to a stripe unit boundary.
5829 xfs_inode_t
*ip
, /* incore inode pointer */
5830 xfs_fileoff_t endoff
, /* file offset in fsblocks */
5831 int whichfork
, /* data or attribute fork */
5832 int *eof
) /* result value */
5834 xfs_fsblock_t blockcount
; /* extent block count */
5835 int error
; /* error return value */
5836 xfs_ifork_t
*ifp
; /* inode fork pointer */
5837 xfs_bmbt_rec_host_t
*lastrec
; /* extent record pointer */
5838 xfs_extnum_t nextents
; /* number of file extents */
5839 xfs_fileoff_t startoff
; /* extent starting file offset */
5841 ASSERT(whichfork
== XFS_DATA_FORK
);
5842 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5843 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5844 (error
= xfs_iread_extents(NULL
, ip
, whichfork
)))
5846 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5847 if (nextents
== 0) {
5852 * Go to the last extent
5854 lastrec
= xfs_iext_get_ext(ifp
, nextents
- 1);
5855 startoff
= xfs_bmbt_get_startoff(lastrec
);
5856 blockcount
= xfs_bmbt_get_blockcount(lastrec
);
5857 *eof
= endoff
>= startoff
+ blockcount
;
5865 xfs_btree_cur_t
*cur
,
5875 for(i
= 0; i
< XFS_BTREE_MAXLEVELS
; i
++) {
5876 bp
= cur
->bc_bufs
[i
];
5878 if (XFS_BUF_ADDR(bp
) == bno
)
5879 break; /* Found it */
5881 if (i
== XFS_BTREE_MAXLEVELS
)
5884 if (!bp
) { /* Chase down all the log items to see if the bp is there */
5885 xfs_log_item_chunk_t
*licp
;
5889 licp
= &tp
->t_items
;
5890 while (!bp
&& licp
!= NULL
) {
5891 if (xfs_lic_are_all_free(licp
)) {
5892 licp
= licp
->lic_next
;
5895 for (i
= 0; i
< licp
->lic_unused
; i
++) {
5896 xfs_log_item_desc_t
*lidp
;
5897 xfs_log_item_t
*lip
;
5898 xfs_buf_log_item_t
*bip
;
5901 if (xfs_lic_isfree(licp
, i
)) {
5905 lidp
= xfs_lic_slot(licp
, i
);
5906 lip
= lidp
->lid_item
;
5907 if (lip
->li_type
!= XFS_LI_BUF
)
5910 bip
= (xfs_buf_log_item_t
*)lip
;
5913 if (XFS_BUF_ADDR(lbp
) == bno
) {
5915 break; /* Found it */
5918 licp
= licp
->lic_next
;
5926 struct xfs_btree_block
*block
,
5932 __be64
*pp
, *thispa
; /* pointer to block address */
5933 xfs_bmbt_key_t
*prevp
, *keyp
;
5935 ASSERT(be16_to_cpu(block
->bb_level
) > 0);
5938 for( i
= 1; i
<= xfs_btree_get_numrecs(block
); i
++) {
5939 dmxr
= mp
->m_bmap_dmxr
[0];
5940 keyp
= XFS_BMBT_KEY_ADDR(mp
, block
, i
);
5943 ASSERT(be64_to_cpu(prevp
->br_startoff
) <
5944 be64_to_cpu(keyp
->br_startoff
));
5949 * Compare the block numbers to see if there are dups.
5952 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, i
, sz
);
5954 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, i
, dmxr
);
5956 for (j
= i
+1; j
<= be16_to_cpu(block
->bb_numrecs
); j
++) {
5958 thispa
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, j
, sz
);
5960 thispa
= XFS_BMBT_PTR_ADDR(mp
, block
, j
, dmxr
);
5961 if (*thispa
== *pp
) {
5962 cmn_err(CE_WARN
, "%s: thispa(%d) == pp(%d) %Ld",
5964 (unsigned long long)be64_to_cpu(*thispa
));
5965 panic("%s: ptrs are equal in node\n",
5973 * Check that the extents for the inode ip are in the right order in all
5978 xfs_bmap_check_leaf_extents(
5979 xfs_btree_cur_t
*cur
, /* btree cursor or null */
5980 xfs_inode_t
*ip
, /* incore inode pointer */
5981 int whichfork
) /* data or attr fork */
5983 struct xfs_btree_block
*block
; /* current btree block */
5984 xfs_fsblock_t bno
; /* block # of "block" */
5985 xfs_buf_t
*bp
; /* buffer for "block" */
5986 int error
; /* error return value */
5987 xfs_extnum_t i
=0, j
; /* index into the extents list */
5988 xfs_ifork_t
*ifp
; /* fork structure */
5989 int level
; /* btree level, for checking */
5990 xfs_mount_t
*mp
; /* file system mount structure */
5991 __be64
*pp
; /* pointer to block address */
5992 xfs_bmbt_rec_t
*ep
; /* pointer to current extent */
5993 xfs_bmbt_rec_t last
= {0, 0}; /* last extent in prev block */
5994 xfs_bmbt_rec_t
*nextp
; /* pointer to next extent */
5997 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
) {
6003 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
6004 block
= ifp
->if_broot
;
6006 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
6008 level
= be16_to_cpu(block
->bb_level
);
6010 xfs_check_block(block
, mp
, 1, ifp
->if_broot_bytes
);
6011 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, 1, ifp
->if_broot_bytes
);
6012 bno
= be64_to_cpu(*pp
);
6014 ASSERT(bno
!= NULLDFSBNO
);
6015 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
6016 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
6019 * Go down the tree until leaf level is reached, following the first
6020 * pointer (leftmost) at each level.
6022 while (level
-- > 0) {
6023 /* See if buf is in cur first */
6024 bp
= xfs_bmap_get_bp(cur
, XFS_FSB_TO_DADDR(mp
, bno
));
6030 if (!bp
&& (error
= xfs_btree_read_bufl(mp
, NULL
, bno
, 0, &bp
,
6031 XFS_BMAP_BTREE_REF
)))
6033 block
= XFS_BUF_TO_BLOCK(bp
);
6034 XFS_WANT_CORRUPTED_GOTO(
6035 xfs_bmap_sanity_check(mp
, bp
, level
),
6041 * Check this block for basic sanity (increasing keys and
6042 * no duplicate blocks).
6045 xfs_check_block(block
, mp
, 0, 0);
6046 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, mp
->m_bmap_dmxr
[1]);
6047 bno
= be64_to_cpu(*pp
);
6048 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp
, bno
), error0
);
6051 xfs_trans_brelse(NULL
, bp
);
6056 * Here with bp and block set to the leftmost leaf node in the tree.
6061 * Loop over all leaf nodes checking that all extents are in the right order.
6064 xfs_fsblock_t nextbno
;
6065 xfs_extnum_t num_recs
;
6068 num_recs
= xfs_btree_get_numrecs(block
);
6071 * Read-ahead the next leaf block, if any.
6074 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
6077 * Check all the extents to make sure they are OK.
6078 * If we had a previous block, the last entry should
6079 * conform with the first entry in this one.
6082 ep
= XFS_BMBT_REC_ADDR(mp
, block
, 1);
6084 ASSERT(xfs_bmbt_disk_get_startoff(&last
) +
6085 xfs_bmbt_disk_get_blockcount(&last
) <=
6086 xfs_bmbt_disk_get_startoff(ep
));
6088 for (j
= 1; j
< num_recs
; j
++) {
6089 nextp
= XFS_BMBT_REC_ADDR(mp
, block
, j
+ 1);
6090 ASSERT(xfs_bmbt_disk_get_startoff(ep
) +
6091 xfs_bmbt_disk_get_blockcount(ep
) <=
6092 xfs_bmbt_disk_get_startoff(nextp
));
6100 xfs_trans_brelse(NULL
, bp
);
6104 * If we've reached the end, stop.
6106 if (bno
== NULLFSBLOCK
)
6109 bp
= xfs_bmap_get_bp(cur
, XFS_FSB_TO_DADDR(mp
, bno
));
6115 if (!bp
&& (error
= xfs_btree_read_bufl(mp
, NULL
, bno
, 0, &bp
,
6116 XFS_BMAP_BTREE_REF
)))
6118 block
= XFS_BUF_TO_BLOCK(bp
);
6122 xfs_trans_brelse(NULL
, bp
);
6127 cmn_err(CE_WARN
, "%s: at error0", __func__
);
6129 xfs_trans_brelse(NULL
, bp
);
6131 cmn_err(CE_WARN
, "%s: BAD after btree leaves for %d extents",
6133 panic("%s: CORRUPTED BTREE OR SOMETHING", __func__
);
6139 * Count fsblocks of the given fork.
6142 xfs_bmap_count_blocks(
6143 xfs_trans_t
*tp
, /* transaction pointer */
6144 xfs_inode_t
*ip
, /* incore inode */
6145 int whichfork
, /* data or attr fork */
6146 int *count
) /* out: count of blocks */
6148 struct xfs_btree_block
*block
; /* current btree block */
6149 xfs_fsblock_t bno
; /* block # of "block" */
6150 xfs_ifork_t
*ifp
; /* fork structure */
6151 int level
; /* btree level, for checking */
6152 xfs_mount_t
*mp
; /* file system mount structure */
6153 __be64
*pp
; /* pointer to block address */
6157 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
6158 if ( XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
) {
6159 xfs_bmap_count_leaves(ifp
, 0,
6160 ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
),
6166 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
6168 block
= ifp
->if_broot
;
6169 level
= be16_to_cpu(block
->bb_level
);
6171 pp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, block
, 1, ifp
->if_broot_bytes
);
6172 bno
= be64_to_cpu(*pp
);
6173 ASSERT(bno
!= NULLDFSBNO
);
6174 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
6175 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
6177 if (unlikely(xfs_bmap_count_tree(mp
, tp
, ifp
, bno
, level
, count
) < 0)) {
6178 XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW
,
6180 return XFS_ERROR(EFSCORRUPTED
);
6187 * Recursively walks each level of a btree
6188 * to count total fsblocks is use.
6190 STATIC
int /* error */
6191 xfs_bmap_count_tree(
6192 xfs_mount_t
*mp
, /* file system mount point */
6193 xfs_trans_t
*tp
, /* transaction pointer */
6194 xfs_ifork_t
*ifp
, /* inode fork pointer */
6195 xfs_fsblock_t blockno
, /* file system block number */
6196 int levelin
, /* level in btree */
6197 int *count
) /* Count of blocks */
6200 xfs_buf_t
*bp
, *nbp
;
6201 int level
= levelin
;
6203 xfs_fsblock_t bno
= blockno
;
6204 xfs_fsblock_t nextbno
;
6205 struct xfs_btree_block
*block
, *nextblock
;
6208 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
, XFS_BMAP_BTREE_REF
)))
6211 block
= XFS_BUF_TO_BLOCK(bp
);
6214 /* Not at node above leaves, count this level of nodes */
6215 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
6216 while (nextbno
!= NULLFSBLOCK
) {
6217 if ((error
= xfs_btree_read_bufl(mp
, tp
, nextbno
,
6218 0, &nbp
, XFS_BMAP_BTREE_REF
)))
6221 nextblock
= XFS_BUF_TO_BLOCK(nbp
);
6222 nextbno
= be64_to_cpu(nextblock
->bb_u
.l
.bb_rightsib
);
6223 xfs_trans_brelse(tp
, nbp
);
6226 /* Dive to the next level */
6227 pp
= XFS_BMBT_PTR_ADDR(mp
, block
, 1, mp
->m_bmap_dmxr
[1]);
6228 bno
= be64_to_cpu(*pp
);
6229 if (unlikely((error
=
6230 xfs_bmap_count_tree(mp
, tp
, ifp
, bno
, level
, count
)) < 0)) {
6231 xfs_trans_brelse(tp
, bp
);
6232 XFS_ERROR_REPORT("xfs_bmap_count_tree(1)",
6233 XFS_ERRLEVEL_LOW
, mp
);
6234 return XFS_ERROR(EFSCORRUPTED
);
6236 xfs_trans_brelse(tp
, bp
);
6238 /* count all level 1 nodes and their leaves */
6240 nextbno
= be64_to_cpu(block
->bb_u
.l
.bb_rightsib
);
6241 numrecs
= be16_to_cpu(block
->bb_numrecs
);
6242 xfs_bmap_disk_count_leaves(mp
, block
, numrecs
, count
);
6243 xfs_trans_brelse(tp
, bp
);
6244 if (nextbno
== NULLFSBLOCK
)
6247 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
6248 XFS_BMAP_BTREE_REF
)))
6251 block
= XFS_BUF_TO_BLOCK(bp
);
6258 * Count leaf blocks given a range of extent records.
6261 xfs_bmap_count_leaves(
6269 for (b
= 0; b
< numrecs
; b
++) {
6270 xfs_bmbt_rec_host_t
*frp
= xfs_iext_get_ext(ifp
, idx
+ b
);
6271 *count
+= xfs_bmbt_get_blockcount(frp
);
6276 * Count leaf blocks given a range of extent records originally
6280 xfs_bmap_disk_count_leaves(
6281 struct xfs_mount
*mp
,
6282 struct xfs_btree_block
*block
,
6287 xfs_bmbt_rec_t
*frp
;
6289 for (b
= 1; b
<= numrecs
; b
++) {
6290 frp
= XFS_BMBT_REC_ADDR(mp
, block
, b
);
6291 *count
+= xfs_bmbt_disk_get_blockcount(frp
);