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"
59 xfs_bmap_check_leaf_extents(xfs_btree_cur_t
*cur
, xfs_inode_t
*ip
, int whichfork
);
62 kmem_zone_t
*xfs_bmap_free_item_zone
;
65 * Prototypes for internal bmap routines.
70 * Called from xfs_bmap_add_attrfork to handle extents format files.
72 STATIC
int /* error */
73 xfs_bmap_add_attrfork_extents(
74 xfs_trans_t
*tp
, /* transaction pointer */
75 xfs_inode_t
*ip
, /* incore inode pointer */
76 xfs_fsblock_t
*firstblock
, /* first block allocated */
77 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
78 int *flags
); /* inode logging flags */
81 * Called from xfs_bmap_add_attrfork to handle local format files.
83 STATIC
int /* error */
84 xfs_bmap_add_attrfork_local(
85 xfs_trans_t
*tp
, /* transaction pointer */
86 xfs_inode_t
*ip
, /* incore inode pointer */
87 xfs_fsblock_t
*firstblock
, /* first block allocated */
88 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
89 int *flags
); /* inode logging flags */
92 * Called by xfs_bmapi to update file extent records and the btree
93 * after allocating space (or doing a delayed allocation).
95 STATIC
int /* error */
97 xfs_inode_t
*ip
, /* incore inode pointer */
98 xfs_extnum_t idx
, /* extent number to update/insert */
99 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
100 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
101 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
102 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
103 int *logflagsp
, /* inode logging flags */
104 xfs_extdelta_t
*delta
, /* Change made to incore extents */
105 int whichfork
, /* data or attr fork */
106 int rsvd
); /* OK to allocate reserved blocks */
109 * Called by xfs_bmap_add_extent to handle cases converting a delayed
110 * allocation to a real allocation.
112 STATIC
int /* error */
113 xfs_bmap_add_extent_delay_real(
114 xfs_inode_t
*ip
, /* incore inode pointer */
115 xfs_extnum_t idx
, /* extent number to update/insert */
116 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
117 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
118 xfs_filblks_t
*dnew
, /* new delayed-alloc indirect blocks */
119 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
120 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
121 int *logflagsp
, /* inode logging flags */
122 xfs_extdelta_t
*delta
, /* Change made to incore extents */
123 int rsvd
); /* OK to allocate reserved blocks */
126 * Called by xfs_bmap_add_extent to handle cases converting a hole
127 * to a delayed allocation.
129 STATIC
int /* error */
130 xfs_bmap_add_extent_hole_delay(
131 xfs_inode_t
*ip
, /* incore inode pointer */
132 xfs_extnum_t idx
, /* extent number to update/insert */
133 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
134 int *logflagsp
,/* inode logging flags */
135 xfs_extdelta_t
*delta
, /* Change made to incore extents */
136 int rsvd
); /* OK to allocate reserved blocks */
139 * Called by xfs_bmap_add_extent to handle cases converting a hole
140 * to a real allocation.
142 STATIC
int /* error */
143 xfs_bmap_add_extent_hole_real(
144 xfs_inode_t
*ip
, /* incore inode pointer */
145 xfs_extnum_t idx
, /* extent number to update/insert */
146 xfs_btree_cur_t
*cur
, /* if null, not a btree */
147 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
148 int *logflagsp
, /* inode logging flags */
149 xfs_extdelta_t
*delta
, /* Change made to incore extents */
150 int whichfork
); /* data or attr fork */
153 * Called by xfs_bmap_add_extent to handle cases converting an unwritten
154 * allocation to a real allocation or vice versa.
156 STATIC
int /* error */
157 xfs_bmap_add_extent_unwritten_real(
158 xfs_inode_t
*ip
, /* incore inode pointer */
159 xfs_extnum_t idx
, /* extent number to update/insert */
160 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
161 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
162 int *logflagsp
, /* inode logging flags */
163 xfs_extdelta_t
*delta
); /* Change made to incore extents */
166 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
167 * It figures out where to ask the underlying allocator to put the new extent.
169 STATIC
int /* error */
171 xfs_bmalloca_t
*ap
); /* bmap alloc argument struct */
174 * Transform a btree format file with only one leaf node, where the
175 * extents list will fit in the inode, into an extents format file.
176 * Since the file extents are already in-core, all we have to do is
177 * give up the space for the btree root and pitch the leaf block.
179 STATIC
int /* error */
180 xfs_bmap_btree_to_extents(
181 xfs_trans_t
*tp
, /* transaction pointer */
182 xfs_inode_t
*ip
, /* incore inode pointer */
183 xfs_btree_cur_t
*cur
, /* btree cursor */
184 int *logflagsp
, /* inode logging flags */
185 int whichfork
); /* data or attr fork */
188 * Called by xfs_bmapi to update file extent records and the btree
189 * after removing space (or undoing a delayed allocation).
191 STATIC
int /* error */
193 xfs_inode_t
*ip
, /* incore inode pointer */
194 xfs_trans_t
*tp
, /* current trans pointer */
195 xfs_extnum_t idx
, /* extent number to update/insert */
196 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
197 xfs_btree_cur_t
*cur
, /* if null, not a btree */
198 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
199 int *logflagsp
,/* inode logging flags */
200 xfs_extdelta_t
*delta
, /* Change made to incore extents */
201 int whichfork
, /* data or attr fork */
202 int rsvd
); /* OK to allocate reserved blocks */
205 * Remove the entry "free" from the free item list. Prev points to the
206 * previous entry, unless "free" is the head of the list.
210 xfs_bmap_free_t
*flist
, /* free item list header */
211 xfs_bmap_free_item_t
*prev
, /* previous item on list, if any */
212 xfs_bmap_free_item_t
*free
); /* list item to be freed */
215 * Convert an extents-format file into a btree-format file.
216 * The new file will have a root block (in the inode) and a single child block.
218 STATIC
int /* error */
219 xfs_bmap_extents_to_btree(
220 xfs_trans_t
*tp
, /* transaction pointer */
221 xfs_inode_t
*ip
, /* incore inode pointer */
222 xfs_fsblock_t
*firstblock
, /* first-block-allocated */
223 xfs_bmap_free_t
*flist
, /* blocks freed in xaction */
224 xfs_btree_cur_t
**curp
, /* cursor returned to caller */
225 int wasdel
, /* converting a delayed alloc */
226 int *logflagsp
, /* inode logging flags */
227 int whichfork
); /* data or attr fork */
230 * Convert a local file to an extents file.
231 * This code is sort of bogus, since the file data needs to get
232 * logged so it won't be lost. The bmap-level manipulations are ok, though.
234 STATIC
int /* error */
235 xfs_bmap_local_to_extents(
236 xfs_trans_t
*tp
, /* transaction pointer */
237 xfs_inode_t
*ip
, /* incore inode pointer */
238 xfs_fsblock_t
*firstblock
, /* first block allocated in xaction */
239 xfs_extlen_t total
, /* total blocks needed by transaction */
240 int *logflagsp
, /* inode logging flags */
241 int whichfork
); /* data or attr fork */
244 * Search the extents list for the inode, for the extent containing bno.
245 * If bno lies in a hole, point to the next entry. If bno lies past eof,
246 * *eofp will be set, and *prevp will contain the last entry (null if none).
247 * Else, *lastxp will be set to the index of the found
248 * entry; *gotp will contain the entry.
250 STATIC xfs_bmbt_rec_t
* /* pointer to found extent entry */
251 xfs_bmap_search_extents(
252 xfs_inode_t
*ip
, /* incore inode pointer */
253 xfs_fileoff_t bno
, /* block number searched for */
254 int whichfork
, /* data or attr fork */
255 int *eofp
, /* out: end of file found */
256 xfs_extnum_t
*lastxp
, /* out: last extent index */
257 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
258 xfs_bmbt_irec_t
*prevp
); /* out: previous extent entry found */
261 * Check the last inode extent to determine whether this allocation will result
262 * in blocks being allocated at the end of the file. When we allocate new data
263 * blocks at the end of the file which do not start at the previous data block,
264 * we will try to align the new blocks at stripe unit boundaries.
266 STATIC
int /* error */
268 xfs_inode_t
*ip
, /* incore inode pointer */
269 xfs_fileoff_t off
, /* file offset in fsblocks */
270 int whichfork
, /* data or attribute fork */
271 char *aeof
); /* return value */
273 #ifdef XFS_BMAP_TRACE
275 * Add a bmap trace buffer entry. Base routine for the others.
278 xfs_bmap_trace_addentry(
279 int opcode
, /* operation */
280 char *fname
, /* function name */
281 char *desc
, /* operation description */
282 xfs_inode_t
*ip
, /* incore inode pointer */
283 xfs_extnum_t idx
, /* index of entry(ies) */
284 xfs_extnum_t cnt
, /* count of entries, 1 or 2 */
285 xfs_bmbt_rec_t
*r1
, /* first record */
286 xfs_bmbt_rec_t
*r2
, /* second record or null */
287 int whichfork
); /* data or attr fork */
290 * Add bmap trace entry prior to a call to xfs_iext_remove.
293 xfs_bmap_trace_delete(
294 char *fname
, /* function name */
295 char *desc
, /* operation description */
296 xfs_inode_t
*ip
, /* incore inode pointer */
297 xfs_extnum_t idx
, /* index of entry(entries) deleted */
298 xfs_extnum_t cnt
, /* count of entries deleted, 1 or 2 */
299 int whichfork
); /* data or attr fork */
302 * Add bmap trace entry prior to a call to xfs_iext_insert, or
303 * reading in the extents list from the disk (in the btree).
306 xfs_bmap_trace_insert(
307 char *fname
, /* function name */
308 char *desc
, /* operation description */
309 xfs_inode_t
*ip
, /* incore inode pointer */
310 xfs_extnum_t idx
, /* index of entry(entries) inserted */
311 xfs_extnum_t cnt
, /* count of entries inserted, 1 or 2 */
312 xfs_bmbt_irec_t
*r1
, /* inserted record 1 */
313 xfs_bmbt_irec_t
*r2
, /* inserted record 2 or null */
314 int whichfork
); /* data or attr fork */
317 * Add bmap trace entry after updating an extent record in place.
320 xfs_bmap_trace_post_update(
321 char *fname
, /* function name */
322 char *desc
, /* operation description */
323 xfs_inode_t
*ip
, /* incore inode pointer */
324 xfs_extnum_t idx
, /* index of entry updated */
325 int whichfork
); /* data or attr fork */
328 * Add bmap trace entry prior to updating an extent record in place.
331 xfs_bmap_trace_pre_update(
332 char *fname
, /* function name */
333 char *desc
, /* operation description */
334 xfs_inode_t
*ip
, /* incore inode pointer */
335 xfs_extnum_t idx
, /* index of entry to be updated */
336 int whichfork
); /* data or attr fork */
339 #define xfs_bmap_trace_delete(f,d,ip,i,c,w)
340 #define xfs_bmap_trace_insert(f,d,ip,i,c,r1,r2,w)
341 #define xfs_bmap_trace_post_update(f,d,ip,i,w)
342 #define xfs_bmap_trace_pre_update(f,d,ip,i,w)
343 #endif /* XFS_BMAP_TRACE */
346 * Compute the worst-case number of indirect blocks that will be used
347 * for ip's delayed extent of length "len".
350 xfs_bmap_worst_indlen(
351 xfs_inode_t
*ip
, /* incore inode pointer */
352 xfs_filblks_t len
); /* delayed extent length */
356 * Perform various validation checks on the values being returned
360 xfs_bmap_validate_ret(
364 xfs_bmbt_irec_t
*mval
,
368 #define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
371 #if defined(XFS_RW_TRACE)
380 #define xfs_bunmap_trace(ip, bno, len, flags, ra)
381 #endif /* XFS_RW_TRACE */
388 xfs_fsblock_t blockno
,
393 xfs_bmap_count_leaves(
400 xfs_bmap_disk_count_leaves(
402 xfs_bmbt_block_t
*block
,
407 * Bmap internal routines.
411 * Called from xfs_bmap_add_attrfork to handle btree format files.
413 STATIC
int /* error */
414 xfs_bmap_add_attrfork_btree(
415 xfs_trans_t
*tp
, /* transaction pointer */
416 xfs_inode_t
*ip
, /* incore inode pointer */
417 xfs_fsblock_t
*firstblock
, /* first block allocated */
418 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
419 int *flags
) /* inode logging flags */
421 xfs_btree_cur_t
*cur
; /* btree cursor */
422 int error
; /* error return value */
423 xfs_mount_t
*mp
; /* file system mount struct */
424 int stat
; /* newroot status */
427 if (ip
->i_df
.if_broot_bytes
<= XFS_IFORK_DSIZE(ip
))
428 *flags
|= XFS_ILOG_DBROOT
;
430 cur
= xfs_btree_init_cursor(mp
, tp
, NULL
, 0, XFS_BTNUM_BMAP
, ip
,
432 cur
->bc_private
.b
.flist
= flist
;
433 cur
->bc_private
.b
.firstblock
= *firstblock
;
434 if ((error
= xfs_bmbt_lookup_ge(cur
, 0, 0, 0, &stat
)))
436 ASSERT(stat
== 1); /* must be at least one entry */
437 if ((error
= xfs_bmbt_newroot(cur
, flags
, &stat
)))
440 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
441 return XFS_ERROR(ENOSPC
);
443 *firstblock
= cur
->bc_private
.b
.firstblock
;
444 cur
->bc_private
.b
.allocated
= 0;
445 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
449 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
454 * Called from xfs_bmap_add_attrfork to handle extents format files.
456 STATIC
int /* error */
457 xfs_bmap_add_attrfork_extents(
458 xfs_trans_t
*tp
, /* transaction pointer */
459 xfs_inode_t
*ip
, /* incore inode pointer */
460 xfs_fsblock_t
*firstblock
, /* first block allocated */
461 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
462 int *flags
) /* inode logging flags */
464 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
465 int error
; /* error return value */
467 if (ip
->i_d
.di_nextents
* sizeof(xfs_bmbt_rec_t
) <= XFS_IFORK_DSIZE(ip
))
470 error
= xfs_bmap_extents_to_btree(tp
, ip
, firstblock
, flist
, &cur
, 0,
471 flags
, XFS_DATA_FORK
);
473 cur
->bc_private
.b
.allocated
= 0;
474 xfs_btree_del_cursor(cur
,
475 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
481 * Called from xfs_bmap_add_attrfork to handle local format files.
483 STATIC
int /* error */
484 xfs_bmap_add_attrfork_local(
485 xfs_trans_t
*tp
, /* transaction pointer */
486 xfs_inode_t
*ip
, /* incore inode pointer */
487 xfs_fsblock_t
*firstblock
, /* first block allocated */
488 xfs_bmap_free_t
*flist
, /* blocks to free at commit */
489 int *flags
) /* inode logging flags */
491 xfs_da_args_t dargs
; /* args for dir/attr code */
492 int error
; /* error return value */
493 xfs_mount_t
*mp
; /* mount structure pointer */
495 if (ip
->i_df
.if_bytes
<= XFS_IFORK_DSIZE(ip
))
497 if ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
) {
499 memset(&dargs
, 0, sizeof(dargs
));
501 dargs
.firstblock
= firstblock
;
503 dargs
.total
= mp
->m_dirblkfsbs
;
504 dargs
.whichfork
= XFS_DATA_FORK
;
506 error
= xfs_dir2_sf_to_block(&dargs
);
508 error
= xfs_bmap_local_to_extents(tp
, ip
, firstblock
, 1, flags
,
514 * Called by xfs_bmapi to update file extent records and the btree
515 * after allocating space (or doing a delayed allocation).
517 STATIC
int /* error */
519 xfs_inode_t
*ip
, /* incore inode pointer */
520 xfs_extnum_t idx
, /* extent number to update/insert */
521 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
522 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
523 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
524 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
525 int *logflagsp
, /* inode logging flags */
526 xfs_extdelta_t
*delta
, /* Change made to incore extents */
527 int whichfork
, /* data or attr fork */
528 int rsvd
) /* OK to use reserved data blocks */
530 xfs_btree_cur_t
*cur
; /* btree cursor or null */
531 xfs_filblks_t da_new
; /* new count del alloc blocks used */
532 xfs_filblks_t da_old
; /* old count del alloc blocks used */
533 int error
; /* error return value */
534 #ifdef XFS_BMAP_TRACE
535 static char fname
[] = "xfs_bmap_add_extent";
537 xfs_ifork_t
*ifp
; /* inode fork ptr */
538 int logflags
; /* returned value */
539 xfs_extnum_t nextents
; /* number of extents in file now */
541 XFS_STATS_INC(xs_add_exlist
);
543 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
544 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
545 ASSERT(idx
<= nextents
);
549 * This is the first extent added to a new/empty file.
550 * Special case this one, so other routines get to assume there are
551 * already extents in the list.
554 xfs_bmap_trace_insert(fname
, "insert empty", ip
, 0, 1, new,
556 xfs_iext_insert(ifp
, 0, 1, new);
559 if (!ISNULLSTARTBLOCK(new->br_startblock
)) {
560 XFS_IFORK_NEXT_SET(ip
, whichfork
, 1);
561 logflags
= XFS_ILOG_CORE
| XFS_ILOG_FEXT(whichfork
);
564 /* DELTA: single new extent */
566 if (delta
->xed_startoff
> new->br_startoff
)
567 delta
->xed_startoff
= new->br_startoff
;
568 if (delta
->xed_blockcount
<
569 new->br_startoff
+ new->br_blockcount
)
570 delta
->xed_blockcount
= new->br_startoff
+
575 * Any kind of new delayed allocation goes here.
577 else if (ISNULLSTARTBLOCK(new->br_startblock
)) {
579 ASSERT((cur
->bc_private
.b
.flags
&
580 XFS_BTCUR_BPRV_WASDEL
) == 0);
581 if ((error
= xfs_bmap_add_extent_hole_delay(ip
, idx
, new,
582 &logflags
, delta
, rsvd
)))
586 * Real allocation off the end of the file.
588 else if (idx
== nextents
) {
590 ASSERT((cur
->bc_private
.b
.flags
&
591 XFS_BTCUR_BPRV_WASDEL
) == 0);
592 if ((error
= xfs_bmap_add_extent_hole_real(ip
, idx
, cur
, new,
593 &logflags
, delta
, whichfork
)))
596 xfs_bmbt_irec_t prev
; /* old extent at offset idx */
599 * Get the record referred to by idx.
601 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
), &prev
);
603 * If it's a real allocation record, and the new allocation ends
604 * after the start of the referred to record, then we're filling
605 * in a delayed or unwritten allocation with a real one, or
606 * converting real back to unwritten.
608 if (!ISNULLSTARTBLOCK(new->br_startblock
) &&
609 new->br_startoff
+ new->br_blockcount
> prev
.br_startoff
) {
610 if (prev
.br_state
!= XFS_EXT_UNWRITTEN
&&
611 ISNULLSTARTBLOCK(prev
.br_startblock
)) {
612 da_old
= STARTBLOCKVAL(prev
.br_startblock
);
614 ASSERT(cur
->bc_private
.b
.flags
&
615 XFS_BTCUR_BPRV_WASDEL
);
616 if ((error
= xfs_bmap_add_extent_delay_real(ip
,
617 idx
, &cur
, new, &da_new
, first
, flist
,
618 &logflags
, delta
, rsvd
)))
620 } else if (new->br_state
== XFS_EXT_NORM
) {
621 ASSERT(new->br_state
== XFS_EXT_NORM
);
622 if ((error
= xfs_bmap_add_extent_unwritten_real(
623 ip
, idx
, &cur
, new, &logflags
, delta
)))
626 ASSERT(new->br_state
== XFS_EXT_UNWRITTEN
);
627 if ((error
= xfs_bmap_add_extent_unwritten_real(
628 ip
, idx
, &cur
, new, &logflags
, delta
)))
631 ASSERT(*curp
== cur
|| *curp
== NULL
);
634 * Otherwise we're filling in a hole with an allocation.
638 ASSERT((cur
->bc_private
.b
.flags
&
639 XFS_BTCUR_BPRV_WASDEL
) == 0);
640 if ((error
= xfs_bmap_add_extent_hole_real(ip
, idx
, cur
,
641 new, &logflags
, delta
, whichfork
)))
646 ASSERT(*curp
== cur
|| *curp
== NULL
);
648 * Convert to a btree if necessary.
650 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
651 XFS_IFORK_NEXTENTS(ip
, whichfork
) > ifp
->if_ext_max
) {
652 int tmp_logflags
; /* partial log flag return val */
655 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
, first
,
656 flist
, &cur
, da_old
> 0, &tmp_logflags
, whichfork
);
657 logflags
|= tmp_logflags
;
662 * Adjust for changes in reserved delayed indirect blocks.
663 * Nothing to do for disk quotas here.
665 if (da_old
|| da_new
) {
670 nblks
+= cur
->bc_private
.b
.allocated
;
671 ASSERT(nblks
<= da_old
);
673 xfs_mod_incore_sb(ip
->i_mount
, XFS_SBS_FDBLOCKS
,
674 (int64_t)(da_old
- nblks
), rsvd
);
677 * Clear out the allocated field, done with it now in any case.
680 cur
->bc_private
.b
.allocated
= 0;
686 xfs_bmap_check_leaf_extents(*curp
, ip
, whichfork
);
688 *logflagsp
= logflags
;
693 * Called by xfs_bmap_add_extent to handle cases converting a delayed
694 * allocation to a real allocation.
696 STATIC
int /* error */
697 xfs_bmap_add_extent_delay_real(
698 xfs_inode_t
*ip
, /* incore inode pointer */
699 xfs_extnum_t idx
, /* extent number to update/insert */
700 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
701 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
702 xfs_filblks_t
*dnew
, /* new delayed-alloc indirect blocks */
703 xfs_fsblock_t
*first
, /* pointer to firstblock variable */
704 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
705 int *logflagsp
, /* inode logging flags */
706 xfs_extdelta_t
*delta
, /* Change made to incore extents */
707 int rsvd
) /* OK to use reserved data block allocation */
709 xfs_btree_cur_t
*cur
; /* btree cursor */
710 int diff
; /* temp value */
711 xfs_bmbt_rec_t
*ep
; /* extent entry for idx */
712 int error
; /* error return value */
713 #ifdef XFS_BMAP_TRACE
714 static char fname
[] = "xfs_bmap_add_extent_delay_real";
716 int i
; /* temp state */
717 xfs_ifork_t
*ifp
; /* inode fork pointer */
718 xfs_fileoff_t new_endoff
; /* end offset of new entry */
719 xfs_bmbt_irec_t r
[3]; /* neighbor extent entries */
720 /* left is 0, right is 1, prev is 2 */
721 int rval
=0; /* return value (logging flags) */
722 int state
= 0;/* state bits, accessed thru macros */
723 xfs_filblks_t temp
=0; /* value for dnew calculations */
724 xfs_filblks_t temp2
=0;/* value for dnew calculations */
725 int tmp_rval
; /* partial logging flags */
726 enum { /* bit number definitions for state */
727 LEFT_CONTIG
, RIGHT_CONTIG
,
728 LEFT_FILLING
, RIGHT_FILLING
,
729 LEFT_DELAY
, RIGHT_DELAY
,
730 LEFT_VALID
, RIGHT_VALID
736 #define MASK(b) (1 << (b))
737 #define MASK2(a,b) (MASK(a) | MASK(b))
738 #define MASK3(a,b,c) (MASK2(a,b) | MASK(c))
739 #define MASK4(a,b,c,d) (MASK3(a,b,c) | MASK(d))
740 #define STATE_SET(b,v) ((v) ? (state |= MASK(b)) : (state &= ~MASK(b)))
741 #define STATE_TEST(b) (state & MASK(b))
742 #define STATE_SET_TEST(b,v) ((v) ? ((state |= MASK(b)), 1) : \
743 ((state &= ~MASK(b)), 0))
744 #define SWITCH_STATE \
745 (state & MASK4(LEFT_FILLING, RIGHT_FILLING, LEFT_CONTIG, RIGHT_CONTIG))
748 * Set up a bunch of variables to make the tests simpler.
751 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
752 ep
= xfs_iext_get_ext(ifp
, idx
);
753 xfs_bmbt_get_all(ep
, &PREV
);
754 new_endoff
= new->br_startoff
+ new->br_blockcount
;
755 ASSERT(PREV
.br_startoff
<= new->br_startoff
);
756 ASSERT(PREV
.br_startoff
+ PREV
.br_blockcount
>= new_endoff
);
758 * Set flags determining what part of the previous delayed allocation
759 * extent is being replaced by a real allocation.
761 STATE_SET(LEFT_FILLING
, PREV
.br_startoff
== new->br_startoff
);
762 STATE_SET(RIGHT_FILLING
,
763 PREV
.br_startoff
+ PREV
.br_blockcount
== new_endoff
);
765 * Check and set flags if this segment has a left neighbor.
766 * Don't set contiguous if the combined extent would be too large.
768 if (STATE_SET_TEST(LEFT_VALID
, idx
> 0)) {
769 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
- 1), &LEFT
);
770 STATE_SET(LEFT_DELAY
, ISNULLSTARTBLOCK(LEFT
.br_startblock
));
772 STATE_SET(LEFT_CONTIG
,
773 STATE_TEST(LEFT_VALID
) && !STATE_TEST(LEFT_DELAY
) &&
774 LEFT
.br_startoff
+ LEFT
.br_blockcount
== new->br_startoff
&&
775 LEFT
.br_startblock
+ LEFT
.br_blockcount
== new->br_startblock
&&
776 LEFT
.br_state
== new->br_state
&&
777 LEFT
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
);
779 * Check and set flags if this segment has a right neighbor.
780 * Don't set contiguous if the combined extent would be too large.
781 * Also check for all-three-contiguous being too large.
783 if (STATE_SET_TEST(RIGHT_VALID
,
785 ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
) - 1)) {
786 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
+ 1), &RIGHT
);
787 STATE_SET(RIGHT_DELAY
, ISNULLSTARTBLOCK(RIGHT
.br_startblock
));
789 STATE_SET(RIGHT_CONTIG
,
790 STATE_TEST(RIGHT_VALID
) && !STATE_TEST(RIGHT_DELAY
) &&
791 new_endoff
== RIGHT
.br_startoff
&&
792 new->br_startblock
+ new->br_blockcount
==
793 RIGHT
.br_startblock
&&
794 new->br_state
== RIGHT
.br_state
&&
795 new->br_blockcount
+ RIGHT
.br_blockcount
<= MAXEXTLEN
&&
796 ((state
& MASK3(LEFT_CONTIG
, LEFT_FILLING
, RIGHT_FILLING
)) !=
797 MASK3(LEFT_CONTIG
, LEFT_FILLING
, RIGHT_FILLING
) ||
798 LEFT
.br_blockcount
+ new->br_blockcount
+ RIGHT
.br_blockcount
802 * Switch out based on the FILLING and CONTIG state bits.
804 switch (SWITCH_STATE
) {
806 case MASK4(LEFT_FILLING
, RIGHT_FILLING
, LEFT_CONTIG
, RIGHT_CONTIG
):
808 * Filling in all of a previously delayed allocation extent.
809 * The left and right neighbors are both contiguous with new.
811 xfs_bmap_trace_pre_update(fname
, "LF|RF|LC|RC", ip
, idx
- 1,
813 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
814 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
815 RIGHT
.br_blockcount
);
816 xfs_bmap_trace_post_update(fname
, "LF|RF|LC|RC", ip
, idx
- 1,
818 xfs_bmap_trace_delete(fname
, "LF|RF|LC|RC", ip
, idx
, 2,
820 xfs_iext_remove(ifp
, idx
, 2);
821 ip
->i_df
.if_lastex
= idx
- 1;
822 ip
->i_d
.di_nextents
--;
824 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
826 rval
= XFS_ILOG_CORE
;
827 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
829 RIGHT
.br_blockcount
, &i
)))
832 if ((error
= xfs_bmbt_delete(cur
, &i
)))
835 if ((error
= xfs_bmbt_decrement(cur
, 0, &i
)))
838 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
842 RIGHT
.br_blockcount
, LEFT
.br_state
)))
846 /* DELTA: Three in-core extents are replaced by one. */
847 temp
= LEFT
.br_startoff
;
848 temp2
= LEFT
.br_blockcount
+
853 case MASK3(LEFT_FILLING
, RIGHT_FILLING
, LEFT_CONTIG
):
855 * Filling in all of a previously delayed allocation extent.
856 * The left neighbor is contiguous, the right is not.
858 xfs_bmap_trace_pre_update(fname
, "LF|RF|LC", ip
, idx
- 1,
860 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
861 LEFT
.br_blockcount
+ PREV
.br_blockcount
);
862 xfs_bmap_trace_post_update(fname
, "LF|RF|LC", ip
, idx
- 1,
864 ip
->i_df
.if_lastex
= idx
- 1;
865 xfs_bmap_trace_delete(fname
, "LF|RF|LC", ip
, idx
, 1,
867 xfs_iext_remove(ifp
, idx
, 1);
869 rval
= XFS_ILOG_DEXT
;
872 if ((error
= xfs_bmbt_lookup_eq(cur
, LEFT
.br_startoff
,
873 LEFT
.br_startblock
, LEFT
.br_blockcount
,
877 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
880 PREV
.br_blockcount
, LEFT
.br_state
)))
884 /* DELTA: Two in-core extents are replaced by one. */
885 temp
= LEFT
.br_startoff
;
886 temp2
= LEFT
.br_blockcount
+
890 case MASK3(LEFT_FILLING
, RIGHT_FILLING
, RIGHT_CONTIG
):
892 * Filling in all of a previously delayed allocation extent.
893 * The right neighbor is contiguous, the left is not.
895 xfs_bmap_trace_pre_update(fname
, "LF|RF|RC", ip
, idx
,
897 xfs_bmbt_set_startblock(ep
, new->br_startblock
);
898 xfs_bmbt_set_blockcount(ep
,
899 PREV
.br_blockcount
+ RIGHT
.br_blockcount
);
900 xfs_bmap_trace_post_update(fname
, "LF|RF|RC", ip
, idx
,
902 ip
->i_df
.if_lastex
= idx
;
903 xfs_bmap_trace_delete(fname
, "LF|RF|RC", ip
, idx
+ 1, 1,
905 xfs_iext_remove(ifp
, idx
+ 1, 1);
907 rval
= XFS_ILOG_DEXT
;
910 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
912 RIGHT
.br_blockcount
, &i
)))
915 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
918 RIGHT
.br_blockcount
, PREV
.br_state
)))
922 /* DELTA: Two in-core extents are replaced by one. */
923 temp
= PREV
.br_startoff
;
924 temp2
= PREV
.br_blockcount
+
928 case MASK2(LEFT_FILLING
, RIGHT_FILLING
):
930 * Filling in all of a previously delayed allocation extent.
931 * Neither the left nor right neighbors are contiguous with
934 xfs_bmap_trace_pre_update(fname
, "LF|RF", ip
, idx
,
936 xfs_bmbt_set_startblock(ep
, new->br_startblock
);
937 xfs_bmap_trace_post_update(fname
, "LF|RF", ip
, idx
,
939 ip
->i_df
.if_lastex
= idx
;
940 ip
->i_d
.di_nextents
++;
942 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
944 rval
= XFS_ILOG_CORE
;
945 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
946 new->br_startblock
, new->br_blockcount
,
950 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
951 if ((error
= xfs_bmbt_insert(cur
, &i
)))
956 /* DELTA: The in-core extent described by new changed type. */
957 temp
= new->br_startoff
;
958 temp2
= new->br_blockcount
;
961 case MASK2(LEFT_FILLING
, LEFT_CONTIG
):
963 * Filling in the first part of a previous delayed allocation.
964 * The left neighbor is contiguous.
966 xfs_bmap_trace_pre_update(fname
, "LF|LC", ip
, idx
- 1,
968 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
969 LEFT
.br_blockcount
+ new->br_blockcount
);
970 xfs_bmbt_set_startoff(ep
,
971 PREV
.br_startoff
+ new->br_blockcount
);
972 xfs_bmap_trace_post_update(fname
, "LF|LC", ip
, idx
- 1,
974 temp
= PREV
.br_blockcount
- new->br_blockcount
;
975 xfs_bmap_trace_pre_update(fname
, "LF|LC", ip
, idx
,
977 xfs_bmbt_set_blockcount(ep
, temp
);
978 ip
->i_df
.if_lastex
= idx
- 1;
980 rval
= XFS_ILOG_DEXT
;
983 if ((error
= xfs_bmbt_lookup_eq(cur
, LEFT
.br_startoff
,
984 LEFT
.br_startblock
, LEFT
.br_blockcount
,
988 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
995 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
996 STARTBLOCKVAL(PREV
.br_startblock
));
997 xfs_bmbt_set_startblock(ep
, NULLSTARTBLOCK((int)temp
));
998 xfs_bmap_trace_post_update(fname
, "LF|LC", ip
, idx
,
1001 /* DELTA: The boundary between two in-core extents moved. */
1002 temp
= LEFT
.br_startoff
;
1003 temp2
= LEFT
.br_blockcount
+
1007 case MASK(LEFT_FILLING
):
1009 * Filling in the first part of a previous delayed allocation.
1010 * The left neighbor is not contiguous.
1012 xfs_bmap_trace_pre_update(fname
, "LF", ip
, idx
, XFS_DATA_FORK
);
1013 xfs_bmbt_set_startoff(ep
, new_endoff
);
1014 temp
= PREV
.br_blockcount
- new->br_blockcount
;
1015 xfs_bmbt_set_blockcount(ep
, temp
);
1016 xfs_bmap_trace_insert(fname
, "LF", ip
, idx
, 1, new, NULL
,
1018 xfs_iext_insert(ifp
, idx
, 1, new);
1019 ip
->i_df
.if_lastex
= idx
;
1020 ip
->i_d
.di_nextents
++;
1022 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1024 rval
= XFS_ILOG_CORE
;
1025 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1026 new->br_startblock
, new->br_blockcount
,
1030 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1031 if ((error
= xfs_bmbt_insert(cur
, &i
)))
1035 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
1036 ip
->i_d
.di_nextents
> ip
->i_df
.if_ext_max
) {
1037 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
,
1038 first
, flist
, &cur
, 1, &tmp_rval
,
1044 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
1045 STARTBLOCKVAL(PREV
.br_startblock
) -
1046 (cur
? cur
->bc_private
.b
.allocated
: 0));
1047 ep
= xfs_iext_get_ext(ifp
, idx
+ 1);
1048 xfs_bmbt_set_startblock(ep
, NULLSTARTBLOCK((int)temp
));
1049 xfs_bmap_trace_post_update(fname
, "LF", ip
, idx
+ 1,
1052 /* DELTA: One in-core extent is split in two. */
1053 temp
= PREV
.br_startoff
;
1054 temp2
= PREV
.br_blockcount
;
1057 case MASK2(RIGHT_FILLING
, RIGHT_CONTIG
):
1059 * Filling in the last part of a previous delayed allocation.
1060 * The right neighbor is contiguous with the new allocation.
1062 temp
= PREV
.br_blockcount
- new->br_blockcount
;
1063 xfs_bmap_trace_pre_update(fname
, "RF|RC", ip
, idx
,
1065 xfs_bmap_trace_pre_update(fname
, "RF|RC", ip
, idx
+ 1,
1067 xfs_bmbt_set_blockcount(ep
, temp
);
1068 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, idx
+ 1),
1069 new->br_startoff
, new->br_startblock
,
1070 new->br_blockcount
+ RIGHT
.br_blockcount
,
1072 xfs_bmap_trace_post_update(fname
, "RF|RC", ip
, idx
+ 1,
1074 ip
->i_df
.if_lastex
= idx
+ 1;
1076 rval
= XFS_ILOG_DEXT
;
1079 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
1080 RIGHT
.br_startblock
,
1081 RIGHT
.br_blockcount
, &i
)))
1084 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1086 new->br_blockcount
+
1087 RIGHT
.br_blockcount
,
1091 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
1092 STARTBLOCKVAL(PREV
.br_startblock
));
1093 xfs_bmbt_set_startblock(ep
, NULLSTARTBLOCK((int)temp
));
1094 xfs_bmap_trace_post_update(fname
, "RF|RC", ip
, idx
,
1097 /* DELTA: The boundary between two in-core extents moved. */
1098 temp
= PREV
.br_startoff
;
1099 temp2
= PREV
.br_blockcount
+
1100 RIGHT
.br_blockcount
;
1103 case MASK(RIGHT_FILLING
):
1105 * Filling in the last part of a previous delayed allocation.
1106 * The right neighbor is not contiguous.
1108 temp
= PREV
.br_blockcount
- new->br_blockcount
;
1109 xfs_bmap_trace_pre_update(fname
, "RF", ip
, idx
, XFS_DATA_FORK
);
1110 xfs_bmbt_set_blockcount(ep
, temp
);
1111 xfs_bmap_trace_insert(fname
, "RF", ip
, idx
+ 1, 1,
1112 new, NULL
, XFS_DATA_FORK
);
1113 xfs_iext_insert(ifp
, idx
+ 1, 1, new);
1114 ip
->i_df
.if_lastex
= idx
+ 1;
1115 ip
->i_d
.di_nextents
++;
1117 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1119 rval
= XFS_ILOG_CORE
;
1120 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1121 new->br_startblock
, new->br_blockcount
,
1125 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1126 if ((error
= xfs_bmbt_insert(cur
, &i
)))
1130 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
1131 ip
->i_d
.di_nextents
> ip
->i_df
.if_ext_max
) {
1132 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
,
1133 first
, flist
, &cur
, 1, &tmp_rval
,
1139 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
1140 STARTBLOCKVAL(PREV
.br_startblock
) -
1141 (cur
? cur
->bc_private
.b
.allocated
: 0));
1142 ep
= xfs_iext_get_ext(ifp
, idx
);
1143 xfs_bmbt_set_startblock(ep
, NULLSTARTBLOCK((int)temp
));
1144 xfs_bmap_trace_post_update(fname
, "RF", ip
, idx
, XFS_DATA_FORK
);
1146 /* DELTA: One in-core extent is split in two. */
1147 temp
= PREV
.br_startoff
;
1148 temp2
= PREV
.br_blockcount
;
1153 * Filling in the middle part of a previous delayed allocation.
1154 * Contiguity is impossible here.
1155 * This case is avoided almost all the time.
1157 temp
= new->br_startoff
- PREV
.br_startoff
;
1158 xfs_bmap_trace_pre_update(fname
, "0", ip
, idx
, XFS_DATA_FORK
);
1159 xfs_bmbt_set_blockcount(ep
, temp
);
1161 r
[1].br_state
= PREV
.br_state
;
1162 r
[1].br_startblock
= 0;
1163 r
[1].br_startoff
= new_endoff
;
1164 temp2
= PREV
.br_startoff
+ PREV
.br_blockcount
- new_endoff
;
1165 r
[1].br_blockcount
= temp2
;
1166 xfs_bmap_trace_insert(fname
, "0", ip
, idx
+ 1, 2, &r
[0], &r
[1],
1168 xfs_iext_insert(ifp
, idx
+ 1, 2, &r
[0]);
1169 ip
->i_df
.if_lastex
= idx
+ 1;
1170 ip
->i_d
.di_nextents
++;
1172 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1174 rval
= XFS_ILOG_CORE
;
1175 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1176 new->br_startblock
, new->br_blockcount
,
1180 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1181 if ((error
= xfs_bmbt_insert(cur
, &i
)))
1185 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
&&
1186 ip
->i_d
.di_nextents
> ip
->i_df
.if_ext_max
) {
1187 error
= xfs_bmap_extents_to_btree(ip
->i_transp
, ip
,
1188 first
, flist
, &cur
, 1, &tmp_rval
,
1194 temp
= xfs_bmap_worst_indlen(ip
, temp
);
1195 temp2
= xfs_bmap_worst_indlen(ip
, temp2
);
1196 diff
= (int)(temp
+ temp2
- STARTBLOCKVAL(PREV
.br_startblock
) -
1197 (cur
? cur
->bc_private
.b
.allocated
: 0));
1199 xfs_mod_incore_sb(ip
->i_mount
, XFS_SBS_FDBLOCKS
, -((int64_t)diff
), rsvd
)) {
1201 * Ick gross gag me with a spoon.
1203 ASSERT(0); /* want to see if this ever happens! */
1209 !xfs_mod_incore_sb(ip
->i_mount
,
1210 XFS_SBS_FDBLOCKS
, -((int64_t)diff
), rsvd
))
1217 !xfs_mod_incore_sb(ip
->i_mount
,
1218 XFS_SBS_FDBLOCKS
, -((int64_t)diff
), rsvd
))
1223 ep
= xfs_iext_get_ext(ifp
, idx
);
1224 xfs_bmbt_set_startblock(ep
, NULLSTARTBLOCK((int)temp
));
1225 xfs_bmap_trace_post_update(fname
, "0", ip
, idx
, XFS_DATA_FORK
);
1226 xfs_bmap_trace_pre_update(fname
, "0", ip
, idx
+ 2,
1228 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, idx
+ 2),
1229 NULLSTARTBLOCK((int)temp2
));
1230 xfs_bmap_trace_post_update(fname
, "0", ip
, idx
+ 2,
1232 *dnew
= temp
+ temp2
;
1233 /* DELTA: One in-core extent is split in three. */
1234 temp
= PREV
.br_startoff
;
1235 temp2
= PREV
.br_blockcount
;
1238 case MASK3(LEFT_FILLING
, LEFT_CONTIG
, RIGHT_CONTIG
):
1239 case MASK3(RIGHT_FILLING
, LEFT_CONTIG
, RIGHT_CONTIG
):
1240 case MASK2(LEFT_FILLING
, RIGHT_CONTIG
):
1241 case MASK2(RIGHT_FILLING
, LEFT_CONTIG
):
1242 case MASK2(LEFT_CONTIG
, RIGHT_CONTIG
):
1243 case MASK(LEFT_CONTIG
):
1244 case MASK(RIGHT_CONTIG
):
1246 * These cases are all impossible.
1253 if (delta
->xed_startoff
> temp
)
1254 delta
->xed_startoff
= temp
;
1255 if (delta
->xed_blockcount
< temp2
)
1256 delta
->xed_blockcount
= temp2
;
1270 #undef STATE_SET_TEST
1275 * Called by xfs_bmap_add_extent to handle cases converting an unwritten
1276 * allocation to a real allocation or vice versa.
1278 STATIC
int /* error */
1279 xfs_bmap_add_extent_unwritten_real(
1280 xfs_inode_t
*ip
, /* incore inode pointer */
1281 xfs_extnum_t idx
, /* extent number to update/insert */
1282 xfs_btree_cur_t
**curp
, /* if *curp is null, not a btree */
1283 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
1284 int *logflagsp
, /* inode logging flags */
1285 xfs_extdelta_t
*delta
) /* Change made to incore extents */
1287 xfs_btree_cur_t
*cur
; /* btree cursor */
1288 xfs_bmbt_rec_t
*ep
; /* extent entry for idx */
1289 int error
; /* error return value */
1290 #ifdef XFS_BMAP_TRACE
1291 static char fname
[] = "xfs_bmap_add_extent_unwritten_real";
1293 int i
; /* temp state */
1294 xfs_ifork_t
*ifp
; /* inode fork pointer */
1295 xfs_fileoff_t new_endoff
; /* end offset of new entry */
1296 xfs_exntst_t newext
; /* new extent state */
1297 xfs_exntst_t oldext
; /* old extent state */
1298 xfs_bmbt_irec_t r
[3]; /* neighbor extent entries */
1299 /* left is 0, right is 1, prev is 2 */
1300 int rval
=0; /* return value (logging flags) */
1301 int state
= 0;/* state bits, accessed thru macros */
1302 xfs_filblks_t temp
=0;
1303 xfs_filblks_t temp2
=0;
1304 enum { /* bit number definitions for state */
1305 LEFT_CONTIG
, RIGHT_CONTIG
,
1306 LEFT_FILLING
, RIGHT_FILLING
,
1307 LEFT_DELAY
, RIGHT_DELAY
,
1308 LEFT_VALID
, RIGHT_VALID
1314 #define MASK(b) (1 << (b))
1315 #define MASK2(a,b) (MASK(a) | MASK(b))
1316 #define MASK3(a,b,c) (MASK2(a,b) | MASK(c))
1317 #define MASK4(a,b,c,d) (MASK3(a,b,c) | MASK(d))
1318 #define STATE_SET(b,v) ((v) ? (state |= MASK(b)) : (state &= ~MASK(b)))
1319 #define STATE_TEST(b) (state & MASK(b))
1320 #define STATE_SET_TEST(b,v) ((v) ? ((state |= MASK(b)), 1) : \
1321 ((state &= ~MASK(b)), 0))
1322 #define SWITCH_STATE \
1323 (state & MASK4(LEFT_FILLING, RIGHT_FILLING, LEFT_CONTIG, RIGHT_CONTIG))
1326 * Set up a bunch of variables to make the tests simpler.
1330 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
1331 ep
= xfs_iext_get_ext(ifp
, idx
);
1332 xfs_bmbt_get_all(ep
, &PREV
);
1333 newext
= new->br_state
;
1334 oldext
= (newext
== XFS_EXT_UNWRITTEN
) ?
1335 XFS_EXT_NORM
: XFS_EXT_UNWRITTEN
;
1336 ASSERT(PREV
.br_state
== oldext
);
1337 new_endoff
= new->br_startoff
+ new->br_blockcount
;
1338 ASSERT(PREV
.br_startoff
<= new->br_startoff
);
1339 ASSERT(PREV
.br_startoff
+ PREV
.br_blockcount
>= new_endoff
);
1341 * Set flags determining what part of the previous oldext allocation
1342 * extent is being replaced by a newext allocation.
1344 STATE_SET(LEFT_FILLING
, PREV
.br_startoff
== new->br_startoff
);
1345 STATE_SET(RIGHT_FILLING
,
1346 PREV
.br_startoff
+ PREV
.br_blockcount
== new_endoff
);
1348 * Check and set flags if this segment has a left neighbor.
1349 * Don't set contiguous if the combined extent would be too large.
1351 if (STATE_SET_TEST(LEFT_VALID
, idx
> 0)) {
1352 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
- 1), &LEFT
);
1353 STATE_SET(LEFT_DELAY
, ISNULLSTARTBLOCK(LEFT
.br_startblock
));
1355 STATE_SET(LEFT_CONTIG
,
1356 STATE_TEST(LEFT_VALID
) && !STATE_TEST(LEFT_DELAY
) &&
1357 LEFT
.br_startoff
+ LEFT
.br_blockcount
== new->br_startoff
&&
1358 LEFT
.br_startblock
+ LEFT
.br_blockcount
== new->br_startblock
&&
1359 LEFT
.br_state
== newext
&&
1360 LEFT
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
);
1362 * Check and set flags if this segment has a right neighbor.
1363 * Don't set contiguous if the combined extent would be too large.
1364 * Also check for all-three-contiguous being too large.
1366 if (STATE_SET_TEST(RIGHT_VALID
,
1368 ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
) - 1)) {
1369 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
+ 1), &RIGHT
);
1370 STATE_SET(RIGHT_DELAY
, ISNULLSTARTBLOCK(RIGHT
.br_startblock
));
1372 STATE_SET(RIGHT_CONTIG
,
1373 STATE_TEST(RIGHT_VALID
) && !STATE_TEST(RIGHT_DELAY
) &&
1374 new_endoff
== RIGHT
.br_startoff
&&
1375 new->br_startblock
+ new->br_blockcount
==
1376 RIGHT
.br_startblock
&&
1377 newext
== RIGHT
.br_state
&&
1378 new->br_blockcount
+ RIGHT
.br_blockcount
<= MAXEXTLEN
&&
1379 ((state
& MASK3(LEFT_CONTIG
, LEFT_FILLING
, RIGHT_FILLING
)) !=
1380 MASK3(LEFT_CONTIG
, LEFT_FILLING
, RIGHT_FILLING
) ||
1381 LEFT
.br_blockcount
+ new->br_blockcount
+ RIGHT
.br_blockcount
1384 * Switch out based on the FILLING and CONTIG state bits.
1386 switch (SWITCH_STATE
) {
1388 case MASK4(LEFT_FILLING
, RIGHT_FILLING
, LEFT_CONTIG
, RIGHT_CONTIG
):
1390 * Setting all of a previous oldext extent to newext.
1391 * The left and right neighbors are both contiguous with new.
1393 xfs_bmap_trace_pre_update(fname
, "LF|RF|LC|RC", ip
, idx
- 1,
1395 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
1396 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
1397 RIGHT
.br_blockcount
);
1398 xfs_bmap_trace_post_update(fname
, "LF|RF|LC|RC", ip
, idx
- 1,
1400 xfs_bmap_trace_delete(fname
, "LF|RF|LC|RC", ip
, idx
, 2,
1402 xfs_iext_remove(ifp
, idx
, 2);
1403 ip
->i_df
.if_lastex
= idx
- 1;
1404 ip
->i_d
.di_nextents
-= 2;
1406 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1408 rval
= XFS_ILOG_CORE
;
1409 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
1410 RIGHT
.br_startblock
,
1411 RIGHT
.br_blockcount
, &i
)))
1414 if ((error
= xfs_bmbt_delete(cur
, &i
)))
1417 if ((error
= xfs_bmbt_decrement(cur
, 0, &i
)))
1420 if ((error
= xfs_bmbt_delete(cur
, &i
)))
1423 if ((error
= xfs_bmbt_decrement(cur
, 0, &i
)))
1426 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
1428 LEFT
.br_blockcount
+ PREV
.br_blockcount
+
1429 RIGHT
.br_blockcount
, LEFT
.br_state
)))
1432 /* DELTA: Three in-core extents are replaced by one. */
1433 temp
= LEFT
.br_startoff
;
1434 temp2
= LEFT
.br_blockcount
+
1435 PREV
.br_blockcount
+
1436 RIGHT
.br_blockcount
;
1439 case MASK3(LEFT_FILLING
, RIGHT_FILLING
, LEFT_CONTIG
):
1441 * Setting all of a previous oldext extent to newext.
1442 * The left neighbor is contiguous, the right is not.
1444 xfs_bmap_trace_pre_update(fname
, "LF|RF|LC", ip
, idx
- 1,
1446 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
1447 LEFT
.br_blockcount
+ PREV
.br_blockcount
);
1448 xfs_bmap_trace_post_update(fname
, "LF|RF|LC", ip
, idx
- 1,
1450 ip
->i_df
.if_lastex
= idx
- 1;
1451 xfs_bmap_trace_delete(fname
, "LF|RF|LC", ip
, idx
, 1,
1453 xfs_iext_remove(ifp
, idx
, 1);
1454 ip
->i_d
.di_nextents
--;
1456 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1458 rval
= XFS_ILOG_CORE
;
1459 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1460 PREV
.br_startblock
, PREV
.br_blockcount
,
1464 if ((error
= xfs_bmbt_delete(cur
, &i
)))
1467 if ((error
= xfs_bmbt_decrement(cur
, 0, &i
)))
1470 if ((error
= xfs_bmbt_update(cur
, LEFT
.br_startoff
,
1472 LEFT
.br_blockcount
+ PREV
.br_blockcount
,
1476 /* DELTA: Two in-core extents are replaced by one. */
1477 temp
= LEFT
.br_startoff
;
1478 temp2
= LEFT
.br_blockcount
+
1482 case MASK3(LEFT_FILLING
, RIGHT_FILLING
, RIGHT_CONTIG
):
1484 * Setting all of a previous oldext extent to newext.
1485 * The right neighbor is contiguous, the left is not.
1487 xfs_bmap_trace_pre_update(fname
, "LF|RF|RC", ip
, idx
,
1489 xfs_bmbt_set_blockcount(ep
,
1490 PREV
.br_blockcount
+ RIGHT
.br_blockcount
);
1491 xfs_bmbt_set_state(ep
, newext
);
1492 xfs_bmap_trace_post_update(fname
, "LF|RF|RC", ip
, idx
,
1494 ip
->i_df
.if_lastex
= idx
;
1495 xfs_bmap_trace_delete(fname
, "LF|RF|RC", ip
, idx
+ 1, 1,
1497 xfs_iext_remove(ifp
, idx
+ 1, 1);
1498 ip
->i_d
.di_nextents
--;
1500 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1502 rval
= XFS_ILOG_CORE
;
1503 if ((error
= xfs_bmbt_lookup_eq(cur
, RIGHT
.br_startoff
,
1504 RIGHT
.br_startblock
,
1505 RIGHT
.br_blockcount
, &i
)))
1508 if ((error
= xfs_bmbt_delete(cur
, &i
)))
1511 if ((error
= xfs_bmbt_decrement(cur
, 0, &i
)))
1514 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1516 new->br_blockcount
+ RIGHT
.br_blockcount
,
1520 /* DELTA: Two in-core extents are replaced by one. */
1521 temp
= PREV
.br_startoff
;
1522 temp2
= PREV
.br_blockcount
+
1523 RIGHT
.br_blockcount
;
1526 case MASK2(LEFT_FILLING
, RIGHT_FILLING
):
1528 * Setting all of a previous oldext extent to newext.
1529 * Neither the left nor right neighbors are contiguous with
1532 xfs_bmap_trace_pre_update(fname
, "LF|RF", ip
, idx
,
1534 xfs_bmbt_set_state(ep
, newext
);
1535 xfs_bmap_trace_post_update(fname
, "LF|RF", ip
, idx
,
1537 ip
->i_df
.if_lastex
= idx
;
1539 rval
= XFS_ILOG_DEXT
;
1542 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1543 new->br_startblock
, new->br_blockcount
,
1547 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1548 new->br_startblock
, new->br_blockcount
,
1552 /* DELTA: The in-core extent described by new changed type. */
1553 temp
= new->br_startoff
;
1554 temp2
= new->br_blockcount
;
1557 case MASK2(LEFT_FILLING
, LEFT_CONTIG
):
1559 * Setting the first part of a previous oldext extent to newext.
1560 * The left neighbor is contiguous.
1562 xfs_bmap_trace_pre_update(fname
, "LF|LC", ip
, idx
- 1,
1564 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
1565 LEFT
.br_blockcount
+ new->br_blockcount
);
1566 xfs_bmbt_set_startoff(ep
,
1567 PREV
.br_startoff
+ new->br_blockcount
);
1568 xfs_bmap_trace_post_update(fname
, "LF|LC", ip
, idx
- 1,
1570 xfs_bmap_trace_pre_update(fname
, "LF|LC", ip
, idx
,
1572 xfs_bmbt_set_startblock(ep
,
1573 new->br_startblock
+ new->br_blockcount
);
1574 xfs_bmbt_set_blockcount(ep
,
1575 PREV
.br_blockcount
- new->br_blockcount
);
1576 xfs_bmap_trace_post_update(fname
, "LF|LC", ip
, idx
,
1578 ip
->i_df
.if_lastex
= idx
- 1;
1580 rval
= XFS_ILOG_DEXT
;
1583 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1584 PREV
.br_startblock
, PREV
.br_blockcount
,
1588 if ((error
= xfs_bmbt_update(cur
,
1589 PREV
.br_startoff
+ new->br_blockcount
,
1590 PREV
.br_startblock
+ new->br_blockcount
,
1591 PREV
.br_blockcount
- new->br_blockcount
,
1594 if ((error
= xfs_bmbt_decrement(cur
, 0, &i
)))
1596 if (xfs_bmbt_update(cur
, LEFT
.br_startoff
,
1598 LEFT
.br_blockcount
+ new->br_blockcount
,
1602 /* DELTA: The boundary between two in-core extents moved. */
1603 temp
= LEFT
.br_startoff
;
1604 temp2
= LEFT
.br_blockcount
+
1608 case MASK(LEFT_FILLING
):
1610 * Setting the first part of a previous oldext extent to newext.
1611 * The left neighbor is not contiguous.
1613 xfs_bmap_trace_pre_update(fname
, "LF", ip
, idx
, XFS_DATA_FORK
);
1614 ASSERT(ep
&& xfs_bmbt_get_state(ep
) == oldext
);
1615 xfs_bmbt_set_startoff(ep
, new_endoff
);
1616 xfs_bmbt_set_blockcount(ep
,
1617 PREV
.br_blockcount
- new->br_blockcount
);
1618 xfs_bmbt_set_startblock(ep
,
1619 new->br_startblock
+ new->br_blockcount
);
1620 xfs_bmap_trace_post_update(fname
, "LF", ip
, idx
, XFS_DATA_FORK
);
1621 xfs_bmap_trace_insert(fname
, "LF", ip
, idx
, 1, new, NULL
,
1623 xfs_iext_insert(ifp
, idx
, 1, new);
1624 ip
->i_df
.if_lastex
= idx
;
1625 ip
->i_d
.di_nextents
++;
1627 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1629 rval
= XFS_ILOG_CORE
;
1630 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1631 PREV
.br_startblock
, PREV
.br_blockcount
,
1635 if ((error
= xfs_bmbt_update(cur
,
1636 PREV
.br_startoff
+ new->br_blockcount
,
1637 PREV
.br_startblock
+ new->br_blockcount
,
1638 PREV
.br_blockcount
- new->br_blockcount
,
1641 cur
->bc_rec
.b
= *new;
1642 if ((error
= xfs_bmbt_insert(cur
, &i
)))
1646 /* DELTA: One in-core extent is split in two. */
1647 temp
= PREV
.br_startoff
;
1648 temp2
= PREV
.br_blockcount
;
1651 case MASK2(RIGHT_FILLING
, RIGHT_CONTIG
):
1653 * Setting the last part of a previous oldext extent to newext.
1654 * The right neighbor is contiguous with the new allocation.
1656 xfs_bmap_trace_pre_update(fname
, "RF|RC", ip
, idx
,
1658 xfs_bmap_trace_pre_update(fname
, "RF|RC", ip
, idx
+ 1,
1660 xfs_bmbt_set_blockcount(ep
,
1661 PREV
.br_blockcount
- new->br_blockcount
);
1662 xfs_bmap_trace_post_update(fname
, "RF|RC", ip
, idx
,
1664 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp
, idx
+ 1),
1665 new->br_startoff
, new->br_startblock
,
1666 new->br_blockcount
+ RIGHT
.br_blockcount
, newext
);
1667 xfs_bmap_trace_post_update(fname
, "RF|RC", ip
, idx
+ 1,
1669 ip
->i_df
.if_lastex
= idx
+ 1;
1671 rval
= XFS_ILOG_DEXT
;
1674 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1676 PREV
.br_blockcount
, &i
)))
1679 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
1681 PREV
.br_blockcount
- new->br_blockcount
,
1684 if ((error
= xfs_bmbt_increment(cur
, 0, &i
)))
1686 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
1688 new->br_blockcount
+ RIGHT
.br_blockcount
,
1692 /* DELTA: The boundary between two in-core extents moved. */
1693 temp
= PREV
.br_startoff
;
1694 temp2
= PREV
.br_blockcount
+
1695 RIGHT
.br_blockcount
;
1698 case MASK(RIGHT_FILLING
):
1700 * Setting the last part of a previous oldext extent to newext.
1701 * The right neighbor is not contiguous.
1703 xfs_bmap_trace_pre_update(fname
, "RF", ip
, idx
, XFS_DATA_FORK
);
1704 xfs_bmbt_set_blockcount(ep
,
1705 PREV
.br_blockcount
- new->br_blockcount
);
1706 xfs_bmap_trace_post_update(fname
, "RF", ip
, idx
, XFS_DATA_FORK
);
1707 xfs_bmap_trace_insert(fname
, "RF", ip
, idx
+ 1, 1,
1708 new, NULL
, XFS_DATA_FORK
);
1709 xfs_iext_insert(ifp
, idx
+ 1, 1, new);
1710 ip
->i_df
.if_lastex
= idx
+ 1;
1711 ip
->i_d
.di_nextents
++;
1713 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1715 rval
= XFS_ILOG_CORE
;
1716 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1717 PREV
.br_startblock
, PREV
.br_blockcount
,
1721 if ((error
= xfs_bmbt_update(cur
, PREV
.br_startoff
,
1723 PREV
.br_blockcount
- new->br_blockcount
,
1726 if ((error
= xfs_bmbt_lookup_eq(cur
, new->br_startoff
,
1727 new->br_startblock
, new->br_blockcount
,
1731 cur
->bc_rec
.b
.br_state
= XFS_EXT_NORM
;
1732 if ((error
= xfs_bmbt_insert(cur
, &i
)))
1736 /* DELTA: One in-core extent is split in two. */
1737 temp
= PREV
.br_startoff
;
1738 temp2
= PREV
.br_blockcount
;
1743 * Setting the middle part of a previous oldext extent to
1744 * newext. Contiguity is impossible here.
1745 * One extent becomes three extents.
1747 xfs_bmap_trace_pre_update(fname
, "0", ip
, idx
, XFS_DATA_FORK
);
1748 xfs_bmbt_set_blockcount(ep
,
1749 new->br_startoff
- PREV
.br_startoff
);
1750 xfs_bmap_trace_post_update(fname
, "0", ip
, idx
, XFS_DATA_FORK
);
1752 r
[1].br_startoff
= new_endoff
;
1753 r
[1].br_blockcount
=
1754 PREV
.br_startoff
+ PREV
.br_blockcount
- new_endoff
;
1755 r
[1].br_startblock
= new->br_startblock
+ new->br_blockcount
;
1756 r
[1].br_state
= oldext
;
1757 xfs_bmap_trace_insert(fname
, "0", ip
, idx
+ 1, 2, &r
[0], &r
[1],
1759 xfs_iext_insert(ifp
, idx
+ 1, 2, &r
[0]);
1760 ip
->i_df
.if_lastex
= idx
+ 1;
1761 ip
->i_d
.di_nextents
+= 2;
1763 rval
= XFS_ILOG_CORE
| XFS_ILOG_DEXT
;
1765 rval
= XFS_ILOG_CORE
;
1766 if ((error
= xfs_bmbt_lookup_eq(cur
, PREV
.br_startoff
,
1767 PREV
.br_startblock
, PREV
.br_blockcount
,
1771 /* new right extent - oldext */
1772 if ((error
= xfs_bmbt_update(cur
, r
[1].br_startoff
,
1773 r
[1].br_startblock
, r
[1].br_blockcount
,
1776 /* new left extent - oldext */
1777 PREV
.br_blockcount
=
1778 new->br_startoff
- PREV
.br_startoff
;
1779 cur
->bc_rec
.b
= PREV
;
1780 if ((error
= xfs_bmbt_insert(cur
, &i
)))
1783 if ((error
= xfs_bmbt_increment(cur
, 0, &i
)))
1786 /* new middle extent - newext */
1787 cur
->bc_rec
.b
= *new;
1788 if ((error
= xfs_bmbt_insert(cur
, &i
)))
1792 /* DELTA: One in-core extent is split in three. */
1793 temp
= PREV
.br_startoff
;
1794 temp2
= PREV
.br_blockcount
;
1797 case MASK3(LEFT_FILLING
, LEFT_CONTIG
, RIGHT_CONTIG
):
1798 case MASK3(RIGHT_FILLING
, LEFT_CONTIG
, RIGHT_CONTIG
):
1799 case MASK2(LEFT_FILLING
, RIGHT_CONTIG
):
1800 case MASK2(RIGHT_FILLING
, LEFT_CONTIG
):
1801 case MASK2(LEFT_CONTIG
, RIGHT_CONTIG
):
1802 case MASK(LEFT_CONTIG
):
1803 case MASK(RIGHT_CONTIG
):
1805 * These cases are all impossible.
1812 if (delta
->xed_startoff
> temp
)
1813 delta
->xed_startoff
= temp
;
1814 if (delta
->xed_blockcount
< temp2
)
1815 delta
->xed_blockcount
= temp2
;
1829 #undef STATE_SET_TEST
1834 * Called by xfs_bmap_add_extent to handle cases converting a hole
1835 * to a delayed allocation.
1838 STATIC
int /* error */
1839 xfs_bmap_add_extent_hole_delay(
1840 xfs_inode_t
*ip
, /* incore inode pointer */
1841 xfs_extnum_t idx
, /* extent number to update/insert */
1842 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
1843 int *logflagsp
, /* inode logging flags */
1844 xfs_extdelta_t
*delta
, /* Change made to incore extents */
1845 int rsvd
) /* OK to allocate reserved blocks */
1847 xfs_bmbt_rec_t
*ep
; /* extent record for idx */
1848 #ifdef XFS_BMAP_TRACE
1849 static char fname
[] = "xfs_bmap_add_extent_hole_delay";
1851 xfs_ifork_t
*ifp
; /* inode fork pointer */
1852 xfs_bmbt_irec_t left
; /* left neighbor extent entry */
1853 xfs_filblks_t newlen
=0; /* new indirect size */
1854 xfs_filblks_t oldlen
=0; /* old indirect size */
1855 xfs_bmbt_irec_t right
; /* right neighbor extent entry */
1856 int state
; /* state bits, accessed thru macros */
1857 xfs_filblks_t temp
=0; /* temp for indirect calculations */
1858 xfs_filblks_t temp2
=0;
1859 enum { /* bit number definitions for state */
1860 LEFT_CONTIG
, RIGHT_CONTIG
,
1861 LEFT_DELAY
, RIGHT_DELAY
,
1862 LEFT_VALID
, RIGHT_VALID
1865 #define MASK(b) (1 << (b))
1866 #define MASK2(a,b) (MASK(a) | MASK(b))
1867 #define STATE_SET(b,v) ((v) ? (state |= MASK(b)) : (state &= ~MASK(b)))
1868 #define STATE_TEST(b) (state & MASK(b))
1869 #define STATE_SET_TEST(b,v) ((v) ? ((state |= MASK(b)), 1) : \
1870 ((state &= ~MASK(b)), 0))
1871 #define SWITCH_STATE (state & MASK2(LEFT_CONTIG, RIGHT_CONTIG))
1873 ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
1874 ep
= xfs_iext_get_ext(ifp
, idx
);
1876 ASSERT(ISNULLSTARTBLOCK(new->br_startblock
));
1878 * Check and set flags if this segment has a left neighbor
1880 if (STATE_SET_TEST(LEFT_VALID
, idx
> 0)) {
1881 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
- 1), &left
);
1882 STATE_SET(LEFT_DELAY
, ISNULLSTARTBLOCK(left
.br_startblock
));
1885 * Check and set flags if the current (right) segment exists.
1886 * If it doesn't exist, we're converting the hole at end-of-file.
1888 if (STATE_SET_TEST(RIGHT_VALID
,
1890 ip
->i_df
.if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
))) {
1891 xfs_bmbt_get_all(ep
, &right
);
1892 STATE_SET(RIGHT_DELAY
, ISNULLSTARTBLOCK(right
.br_startblock
));
1895 * Set contiguity flags on the left and right neighbors.
1896 * Don't let extents get too large, even if the pieces are contiguous.
1898 STATE_SET(LEFT_CONTIG
,
1899 STATE_TEST(LEFT_VALID
) && STATE_TEST(LEFT_DELAY
) &&
1900 left
.br_startoff
+ left
.br_blockcount
== new->br_startoff
&&
1901 left
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
);
1902 STATE_SET(RIGHT_CONTIG
,
1903 STATE_TEST(RIGHT_VALID
) && STATE_TEST(RIGHT_DELAY
) &&
1904 new->br_startoff
+ new->br_blockcount
== right
.br_startoff
&&
1905 new->br_blockcount
+ right
.br_blockcount
<= MAXEXTLEN
&&
1906 (!STATE_TEST(LEFT_CONTIG
) ||
1907 (left
.br_blockcount
+ new->br_blockcount
+
1908 right
.br_blockcount
<= MAXEXTLEN
)));
1910 * Switch out based on the contiguity flags.
1912 switch (SWITCH_STATE
) {
1914 case MASK2(LEFT_CONTIG
, RIGHT_CONTIG
):
1916 * New allocation is contiguous with delayed allocations
1917 * on the left and on the right.
1918 * Merge all three into a single extent record.
1920 temp
= left
.br_blockcount
+ new->br_blockcount
+
1921 right
.br_blockcount
;
1922 xfs_bmap_trace_pre_update(fname
, "LC|RC", ip
, idx
- 1,
1924 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1), temp
);
1925 oldlen
= STARTBLOCKVAL(left
.br_startblock
) +
1926 STARTBLOCKVAL(new->br_startblock
) +
1927 STARTBLOCKVAL(right
.br_startblock
);
1928 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
1929 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, idx
- 1),
1930 NULLSTARTBLOCK((int)newlen
));
1931 xfs_bmap_trace_post_update(fname
, "LC|RC", ip
, idx
- 1,
1933 xfs_bmap_trace_delete(fname
, "LC|RC", ip
, idx
, 1,
1935 xfs_iext_remove(ifp
, idx
, 1);
1936 ip
->i_df
.if_lastex
= idx
- 1;
1937 /* DELTA: Two in-core extents were replaced by one. */
1939 temp
= left
.br_startoff
;
1942 case MASK(LEFT_CONTIG
):
1944 * New allocation is contiguous with a delayed allocation
1946 * Merge the new allocation with the left neighbor.
1948 temp
= left
.br_blockcount
+ new->br_blockcount
;
1949 xfs_bmap_trace_pre_update(fname
, "LC", ip
, idx
- 1,
1951 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1), temp
);
1952 oldlen
= STARTBLOCKVAL(left
.br_startblock
) +
1953 STARTBLOCKVAL(new->br_startblock
);
1954 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
1955 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp
, idx
- 1),
1956 NULLSTARTBLOCK((int)newlen
));
1957 xfs_bmap_trace_post_update(fname
, "LC", ip
, idx
- 1,
1959 ip
->i_df
.if_lastex
= idx
- 1;
1960 /* DELTA: One in-core extent grew into a hole. */
1962 temp
= left
.br_startoff
;
1965 case MASK(RIGHT_CONTIG
):
1967 * New allocation is contiguous with a delayed allocation
1969 * Merge the new allocation with the right neighbor.
1971 xfs_bmap_trace_pre_update(fname
, "RC", ip
, idx
, XFS_DATA_FORK
);
1972 temp
= new->br_blockcount
+ right
.br_blockcount
;
1973 oldlen
= STARTBLOCKVAL(new->br_startblock
) +
1974 STARTBLOCKVAL(right
.br_startblock
);
1975 newlen
= xfs_bmap_worst_indlen(ip
, temp
);
1976 xfs_bmbt_set_allf(ep
, new->br_startoff
,
1977 NULLSTARTBLOCK((int)newlen
), temp
, right
.br_state
);
1978 xfs_bmap_trace_post_update(fname
, "RC", ip
, idx
, XFS_DATA_FORK
);
1979 ip
->i_df
.if_lastex
= idx
;
1980 /* DELTA: One in-core extent grew into a hole. */
1982 temp
= new->br_startoff
;
1987 * New allocation is not contiguous with another
1988 * delayed allocation.
1989 * Insert a new entry.
1991 oldlen
= newlen
= 0;
1992 xfs_bmap_trace_insert(fname
, "0", ip
, idx
, 1, new, NULL
,
1994 xfs_iext_insert(ifp
, idx
, 1, new);
1995 ip
->i_df
.if_lastex
= idx
;
1996 /* DELTA: A new in-core extent was added in a hole. */
1997 temp2
= new->br_blockcount
;
1998 temp
= new->br_startoff
;
2001 if (oldlen
!= newlen
) {
2002 ASSERT(oldlen
> newlen
);
2003 xfs_mod_incore_sb(ip
->i_mount
, XFS_SBS_FDBLOCKS
,
2004 (int64_t)(oldlen
- newlen
), rsvd
);
2006 * Nothing to do for disk quota accounting here.
2011 if (delta
->xed_startoff
> temp
)
2012 delta
->xed_startoff
= temp
;
2013 if (delta
->xed_blockcount
< temp2
)
2014 delta
->xed_blockcount
= temp2
;
2022 #undef STATE_SET_TEST
2027 * Called by xfs_bmap_add_extent to handle cases converting a hole
2028 * to a real allocation.
2030 STATIC
int /* error */
2031 xfs_bmap_add_extent_hole_real(
2032 xfs_inode_t
*ip
, /* incore inode pointer */
2033 xfs_extnum_t idx
, /* extent number to update/insert */
2034 xfs_btree_cur_t
*cur
, /* if null, not a btree */
2035 xfs_bmbt_irec_t
*new, /* new data to add to file extents */
2036 int *logflagsp
, /* inode logging flags */
2037 xfs_extdelta_t
*delta
, /* Change made to incore extents */
2038 int whichfork
) /* data or attr fork */
2040 xfs_bmbt_rec_t
*ep
; /* pointer to extent entry ins. point */
2041 int error
; /* error return value */
2042 #ifdef XFS_BMAP_TRACE
2043 static char fname
[] = "xfs_bmap_add_extent_hole_real";
2045 int i
; /* temp state */
2046 xfs_ifork_t
*ifp
; /* inode fork pointer */
2047 xfs_bmbt_irec_t left
; /* left neighbor extent entry */
2048 xfs_bmbt_irec_t right
; /* right neighbor extent entry */
2049 int rval
=0; /* return value (logging flags) */
2050 int state
; /* state bits, accessed thru macros */
2051 xfs_filblks_t temp
=0;
2052 xfs_filblks_t temp2
=0;
2053 enum { /* bit number definitions for state */
2054 LEFT_CONTIG
, RIGHT_CONTIG
,
2055 LEFT_DELAY
, RIGHT_DELAY
,
2056 LEFT_VALID
, RIGHT_VALID
2059 #define MASK(b) (1 << (b))
2060 #define MASK2(a,b) (MASK(a) | MASK(b))
2061 #define STATE_SET(b,v) ((v) ? (state |= MASK(b)) : (state &= ~MASK(b)))
2062 #define STATE_TEST(b) (state & MASK(b))
2063 #define STATE_SET_TEST(b,v) ((v) ? ((state |= MASK(b)), 1) : \
2064 ((state &= ~MASK(b)), 0))
2065 #define SWITCH_STATE (state & MASK2(LEFT_CONTIG, RIGHT_CONTIG))
2067 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
2068 ASSERT(idx
<= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
));
2069 ep
= xfs_iext_get_ext(ifp
, idx
);
2072 * Check and set flags if this segment has a left neighbor.
2074 if (STATE_SET_TEST(LEFT_VALID
, idx
> 0)) {
2075 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
- 1), &left
);
2076 STATE_SET(LEFT_DELAY
, ISNULLSTARTBLOCK(left
.br_startblock
));
2079 * Check and set flags if this segment has a current value.
2080 * Not true if we're inserting into the "hole" at eof.
2082 if (STATE_SET_TEST(RIGHT_VALID
,
2084 ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
))) {
2085 xfs_bmbt_get_all(ep
, &right
);
2086 STATE_SET(RIGHT_DELAY
, ISNULLSTARTBLOCK(right
.br_startblock
));
2089 * We're inserting a real allocation between "left" and "right".
2090 * Set the contiguity flags. Don't let extents get too large.
2092 STATE_SET(LEFT_CONTIG
,
2093 STATE_TEST(LEFT_VALID
) && !STATE_TEST(LEFT_DELAY
) &&
2094 left
.br_startoff
+ left
.br_blockcount
== new->br_startoff
&&
2095 left
.br_startblock
+ left
.br_blockcount
== new->br_startblock
&&
2096 left
.br_state
== new->br_state
&&
2097 left
.br_blockcount
+ new->br_blockcount
<= MAXEXTLEN
);
2098 STATE_SET(RIGHT_CONTIG
,
2099 STATE_TEST(RIGHT_VALID
) && !STATE_TEST(RIGHT_DELAY
) &&
2100 new->br_startoff
+ new->br_blockcount
== right
.br_startoff
&&
2101 new->br_startblock
+ new->br_blockcount
==
2102 right
.br_startblock
&&
2103 new->br_state
== right
.br_state
&&
2104 new->br_blockcount
+ right
.br_blockcount
<= MAXEXTLEN
&&
2105 (!STATE_TEST(LEFT_CONTIG
) ||
2106 left
.br_blockcount
+ new->br_blockcount
+
2107 right
.br_blockcount
<= MAXEXTLEN
));
2111 * Select which case we're in here, and implement it.
2113 switch (SWITCH_STATE
) {
2115 case MASK2(LEFT_CONTIG
, RIGHT_CONTIG
):
2117 * New allocation is contiguous with real allocations on the
2118 * left and on the right.
2119 * Merge all three into a single extent record.
2121 xfs_bmap_trace_pre_update(fname
, "LC|RC", ip
, idx
- 1,
2123 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
2124 left
.br_blockcount
+ new->br_blockcount
+
2125 right
.br_blockcount
);
2126 xfs_bmap_trace_post_update(fname
, "LC|RC", ip
, idx
- 1,
2128 xfs_bmap_trace_delete(fname
, "LC|RC", ip
,
2130 xfs_iext_remove(ifp
, idx
, 1);
2131 ifp
->if_lastex
= idx
- 1;
2132 XFS_IFORK_NEXT_SET(ip
, whichfork
,
2133 XFS_IFORK_NEXTENTS(ip
, whichfork
) - 1);
2135 rval
= XFS_ILOG_CORE
| XFS_ILOG_FEXT(whichfork
);
2137 rval
= XFS_ILOG_CORE
;
2138 if ((error
= xfs_bmbt_lookup_eq(cur
,
2140 right
.br_startblock
,
2141 right
.br_blockcount
, &i
)))
2144 if ((error
= xfs_bmbt_delete(cur
, &i
)))
2147 if ((error
= xfs_bmbt_decrement(cur
, 0, &i
)))
2150 if ((error
= xfs_bmbt_update(cur
, left
.br_startoff
,
2152 left
.br_blockcount
+
2153 new->br_blockcount
+
2154 right
.br_blockcount
,
2158 /* DELTA: Two in-core extents were replaced by one. */
2159 temp
= left
.br_startoff
;
2160 temp2
= left
.br_blockcount
+
2161 new->br_blockcount
+
2162 right
.br_blockcount
;
2165 case MASK(LEFT_CONTIG
):
2167 * New allocation is contiguous with a real allocation
2169 * Merge the new allocation with the left neighbor.
2171 xfs_bmap_trace_pre_update(fname
, "LC", ip
, idx
- 1, whichfork
);
2172 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp
, idx
- 1),
2173 left
.br_blockcount
+ new->br_blockcount
);
2174 xfs_bmap_trace_post_update(fname
, "LC", ip
, idx
- 1, whichfork
);
2175 ifp
->if_lastex
= idx
- 1;
2177 rval
= XFS_ILOG_FEXT(whichfork
);
2180 if ((error
= xfs_bmbt_lookup_eq(cur
,
2183 left
.br_blockcount
, &i
)))
2186 if ((error
= xfs_bmbt_update(cur
, left
.br_startoff
,
2188 left
.br_blockcount
+
2193 /* DELTA: One in-core extent grew. */
2194 temp
= left
.br_startoff
;
2195 temp2
= left
.br_blockcount
+
2199 case MASK(RIGHT_CONTIG
):
2201 * New allocation is contiguous with a real allocation
2203 * Merge the new allocation with the right neighbor.
2205 xfs_bmap_trace_pre_update(fname
, "RC", ip
, idx
, whichfork
);
2206 xfs_bmbt_set_allf(ep
, new->br_startoff
, new->br_startblock
,
2207 new->br_blockcount
+ right
.br_blockcount
,
2209 xfs_bmap_trace_post_update(fname
, "RC", ip
, idx
, whichfork
);
2210 ifp
->if_lastex
= idx
;
2212 rval
= XFS_ILOG_FEXT(whichfork
);
2215 if ((error
= xfs_bmbt_lookup_eq(cur
,
2217 right
.br_startblock
,
2218 right
.br_blockcount
, &i
)))
2221 if ((error
= xfs_bmbt_update(cur
, new->br_startoff
,
2223 new->br_blockcount
+
2224 right
.br_blockcount
,
2228 /* DELTA: One in-core extent grew. */
2229 temp
= new->br_startoff
;
2230 temp2
= new->br_blockcount
+
2231 right
.br_blockcount
;
2236 * New allocation is not contiguous with another
2238 * Insert a new entry.
2240 xfs_bmap_trace_insert(fname
, "0", ip
, idx
, 1, new, NULL
,
2242 xfs_iext_insert(ifp
, idx
, 1, new);
2243 ifp
->if_lastex
= idx
;
2244 XFS_IFORK_NEXT_SET(ip
, whichfork
,
2245 XFS_IFORK_NEXTENTS(ip
, whichfork
) + 1);
2247 rval
= XFS_ILOG_CORE
| XFS_ILOG_FEXT(whichfork
);
2249 rval
= XFS_ILOG_CORE
;
2250 if ((error
= xfs_bmbt_lookup_eq(cur
,
2253 new->br_blockcount
, &i
)))
2256 cur
->bc_rec
.b
.br_state
= new->br_state
;
2257 if ((error
= xfs_bmbt_insert(cur
, &i
)))
2261 /* DELTA: A new extent was added in a hole. */
2262 temp
= new->br_startoff
;
2263 temp2
= new->br_blockcount
;
2268 if (delta
->xed_startoff
> temp
)
2269 delta
->xed_startoff
= temp
;
2270 if (delta
->xed_blockcount
< temp2
)
2271 delta
->xed_blockcount
= temp2
;
2280 #undef STATE_SET_TEST
2285 * Adjust the size of the new extent based on di_extsize and rt extsize.
2288 xfs_bmap_extsize_align(
2290 xfs_bmbt_irec_t
*gotp
, /* next extent pointer */
2291 xfs_bmbt_irec_t
*prevp
, /* previous extent pointer */
2292 xfs_extlen_t extsz
, /* align to this extent size */
2293 int rt
, /* is this a realtime inode? */
2294 int eof
, /* is extent at end-of-file? */
2295 int delay
, /* creating delalloc extent? */
2296 int convert
, /* overwriting unwritten extent? */
2297 xfs_fileoff_t
*offp
, /* in/out: aligned offset */
2298 xfs_extlen_t
*lenp
) /* in/out: aligned length */
2300 xfs_fileoff_t orig_off
; /* original offset */
2301 xfs_extlen_t orig_alen
; /* original length */
2302 xfs_fileoff_t orig_end
; /* original off+len */
2303 xfs_fileoff_t nexto
; /* next file offset */
2304 xfs_fileoff_t prevo
; /* previous file offset */
2305 xfs_fileoff_t align_off
; /* temp for offset */
2306 xfs_extlen_t align_alen
; /* temp for length */
2307 xfs_extlen_t temp
; /* temp for calculations */
2312 orig_off
= align_off
= *offp
;
2313 orig_alen
= align_alen
= *lenp
;
2314 orig_end
= orig_off
+ orig_alen
;
2317 * If this request overlaps an existing extent, then don't
2318 * attempt to perform any additional alignment.
2320 if (!delay
&& !eof
&&
2321 (orig_off
>= gotp
->br_startoff
) &&
2322 (orig_end
<= gotp
->br_startoff
+ gotp
->br_blockcount
)) {
2327 * If the file offset is unaligned vs. the extent size
2328 * we need to align it. This will be possible unless
2329 * the file was previously written with a kernel that didn't
2330 * perform this alignment, or if a truncate shot us in the
2333 temp
= do_mod(orig_off
, extsz
);
2339 * Same adjustment for the end of the requested area.
2341 if ((temp
= (align_alen
% extsz
))) {
2342 align_alen
+= extsz
- temp
;
2345 * If the previous block overlaps with this proposed allocation
2346 * then move the start forward without adjusting the length.
2348 if (prevp
->br_startoff
!= NULLFILEOFF
) {
2349 if (prevp
->br_startblock
== HOLESTARTBLOCK
)
2350 prevo
= prevp
->br_startoff
;
2352 prevo
= prevp
->br_startoff
+ prevp
->br_blockcount
;
2355 if (align_off
!= orig_off
&& align_off
< prevo
)
2358 * If the next block overlaps with this proposed allocation
2359 * then move the start back without adjusting the length,
2360 * but not before offset 0.
2361 * This may of course make the start overlap previous block,
2362 * and if we hit the offset 0 limit then the next block
2363 * can still overlap too.
2365 if (!eof
&& gotp
->br_startoff
!= NULLFILEOFF
) {
2366 if ((delay
&& gotp
->br_startblock
== HOLESTARTBLOCK
) ||
2367 (!delay
&& gotp
->br_startblock
== DELAYSTARTBLOCK
))
2368 nexto
= gotp
->br_startoff
+ gotp
->br_blockcount
;
2370 nexto
= gotp
->br_startoff
;
2372 nexto
= NULLFILEOFF
;
2374 align_off
+ align_alen
!= orig_end
&&
2375 align_off
+ align_alen
> nexto
)
2376 align_off
= nexto
> align_alen
? nexto
- align_alen
: 0;
2378 * If we're now overlapping the next or previous extent that
2379 * means we can't fit an extsz piece in this hole. Just move
2380 * the start forward to the first valid spot and set
2381 * the length so we hit the end.
2383 if (align_off
!= orig_off
&& align_off
< prevo
)
2385 if (align_off
+ align_alen
!= orig_end
&&
2386 align_off
+ align_alen
> nexto
&&
2387 nexto
!= NULLFILEOFF
) {
2388 ASSERT(nexto
> prevo
);
2389 align_alen
= nexto
- align_off
;
2393 * If realtime, and the result isn't a multiple of the realtime
2394 * extent size we need to remove blocks until it is.
2396 if (rt
&& (temp
= (align_alen
% mp
->m_sb
.sb_rextsize
))) {
2398 * We're not covering the original request, or
2399 * we won't be able to once we fix the length.
2401 if (orig_off
< align_off
||
2402 orig_end
> align_off
+ align_alen
||
2403 align_alen
- temp
< orig_alen
)
2404 return XFS_ERROR(EINVAL
);
2406 * Try to fix it by moving the start up.
2408 if (align_off
+ temp
<= orig_off
) {
2413 * Try to fix it by moving the end in.
2415 else if (align_off
+ align_alen
- temp
>= orig_end
)
2418 * Set the start to the minimum then trim the length.
2421 align_alen
-= orig_off
- align_off
;
2422 align_off
= orig_off
;
2423 align_alen
-= align_alen
% mp
->m_sb
.sb_rextsize
;
2426 * Result doesn't cover the request, fail it.
2428 if (orig_off
< align_off
|| orig_end
> align_off
+ align_alen
)
2429 return XFS_ERROR(EINVAL
);
2431 ASSERT(orig_off
>= align_off
);
2432 ASSERT(orig_end
<= align_off
+ align_alen
);
2436 if (!eof
&& gotp
->br_startoff
!= NULLFILEOFF
)
2437 ASSERT(align_off
+ align_alen
<= gotp
->br_startoff
);
2438 if (prevp
->br_startoff
!= NULLFILEOFF
)
2439 ASSERT(align_off
>= prevp
->br_startoff
+ prevp
->br_blockcount
);
2447 #define XFS_ALLOC_GAP_UNITS 4
2451 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2453 xfs_fsblock_t adjust
; /* adjustment to block numbers */
2454 xfs_agnumber_t fb_agno
; /* ag number of ap->firstblock */
2455 xfs_mount_t
*mp
; /* mount point structure */
2456 int nullfb
; /* true if ap->firstblock isn't set */
2457 int rt
; /* true if inode is realtime */
2459 #define ISVALID(x,y) \
2461 (x) < mp->m_sb.sb_rblocks : \
2462 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
2463 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
2464 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
2466 mp
= ap
->ip
->i_mount
;
2467 nullfb
= ap
->firstblock
== NULLFSBLOCK
;
2468 rt
= XFS_IS_REALTIME_INODE(ap
->ip
) && ap
->userdata
;
2469 fb_agno
= nullfb
? NULLAGNUMBER
: XFS_FSB_TO_AGNO(mp
, ap
->firstblock
);
2471 * If allocating at eof, and there's a previous real block,
2472 * try to use it's last block as our starting point.
2474 if (ap
->eof
&& ap
->prevp
->br_startoff
!= NULLFILEOFF
&&
2475 !ISNULLSTARTBLOCK(ap
->prevp
->br_startblock
) &&
2476 ISVALID(ap
->prevp
->br_startblock
+ ap
->prevp
->br_blockcount
,
2477 ap
->prevp
->br_startblock
)) {
2478 ap
->rval
= ap
->prevp
->br_startblock
+ ap
->prevp
->br_blockcount
;
2480 * Adjust for the gap between prevp and us.
2483 (ap
->prevp
->br_startoff
+ ap
->prevp
->br_blockcount
);
2485 ISVALID(ap
->rval
+ adjust
, ap
->prevp
->br_startblock
))
2489 * If not at eof, then compare the two neighbor blocks.
2490 * Figure out whether either one gives us a good starting point,
2491 * and pick the better one.
2493 else if (!ap
->eof
) {
2494 xfs_fsblock_t gotbno
; /* right side block number */
2495 xfs_fsblock_t gotdiff
=0; /* right side difference */
2496 xfs_fsblock_t prevbno
; /* left side block number */
2497 xfs_fsblock_t prevdiff
=0; /* left side difference */
2500 * If there's a previous (left) block, select a requested
2501 * start block based on it.
2503 if (ap
->prevp
->br_startoff
!= NULLFILEOFF
&&
2504 !ISNULLSTARTBLOCK(ap
->prevp
->br_startblock
) &&
2505 (prevbno
= ap
->prevp
->br_startblock
+
2506 ap
->prevp
->br_blockcount
) &&
2507 ISVALID(prevbno
, ap
->prevp
->br_startblock
)) {
2509 * Calculate gap to end of previous block.
2511 adjust
= prevdiff
= ap
->off
-
2512 (ap
->prevp
->br_startoff
+
2513 ap
->prevp
->br_blockcount
);
2515 * Figure the startblock based on the previous block's
2516 * end and the gap size.
2518 * If the gap is large relative to the piece we're
2519 * allocating, or using it gives us an invalid block
2520 * number, then just use the end of the previous block.
2522 if (prevdiff
<= XFS_ALLOC_GAP_UNITS
* ap
->alen
&&
2523 ISVALID(prevbno
+ prevdiff
,
2524 ap
->prevp
->br_startblock
))
2529 * If the firstblock forbids it, can't use it,
2532 if (!rt
&& !nullfb
&&
2533 XFS_FSB_TO_AGNO(mp
, prevbno
) != fb_agno
)
2534 prevbno
= NULLFSBLOCK
;
2537 * No previous block or can't follow it, just default.
2540 prevbno
= NULLFSBLOCK
;
2542 * If there's a following (right) block, select a requested
2543 * start block based on it.
2545 if (!ISNULLSTARTBLOCK(ap
->gotp
->br_startblock
)) {
2547 * Calculate gap to start of next block.
2549 adjust
= gotdiff
= ap
->gotp
->br_startoff
- ap
->off
;
2551 * Figure the startblock based on the next block's
2552 * start and the gap size.
2554 gotbno
= ap
->gotp
->br_startblock
;
2557 * If the gap is large relative to the piece we're
2558 * allocating, or using it gives us an invalid block
2559 * number, then just use the start of the next block
2560 * offset by our length.
2562 if (gotdiff
<= XFS_ALLOC_GAP_UNITS
* ap
->alen
&&
2563 ISVALID(gotbno
- gotdiff
, gotbno
))
2565 else if (ISVALID(gotbno
- ap
->alen
, gotbno
)) {
2567 gotdiff
+= adjust
- ap
->alen
;
2571 * If the firstblock forbids it, can't use it,
2574 if (!rt
&& !nullfb
&&
2575 XFS_FSB_TO_AGNO(mp
, gotbno
) != fb_agno
)
2576 gotbno
= NULLFSBLOCK
;
2579 * No next block, just default.
2582 gotbno
= NULLFSBLOCK
;
2584 * If both valid, pick the better one, else the only good
2585 * one, else ap->rval is already set (to 0 or the inode block).
2587 if (prevbno
!= NULLFSBLOCK
&& gotbno
!= NULLFSBLOCK
)
2588 ap
->rval
= prevdiff
<= gotdiff
? prevbno
: gotbno
;
2589 else if (prevbno
!= NULLFSBLOCK
)
2591 else if (gotbno
!= NULLFSBLOCK
)
2600 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2602 xfs_alloctype_t atype
= 0; /* type for allocation routines */
2603 int error
; /* error return value */
2604 xfs_mount_t
*mp
; /* mount point structure */
2605 xfs_extlen_t prod
= 0; /* product factor for allocators */
2606 xfs_extlen_t ralen
= 0; /* realtime allocation length */
2607 xfs_extlen_t align
; /* minimum allocation alignment */
2608 xfs_rtblock_t rtx
; /* realtime extent number */
2611 mp
= ap
->ip
->i_mount
;
2612 align
= ap
->ip
->i_d
.di_extsize
?
2613 ap
->ip
->i_d
.di_extsize
: mp
->m_sb
.sb_rextsize
;
2614 prod
= align
/ mp
->m_sb
.sb_rextsize
;
2615 error
= xfs_bmap_extsize_align(mp
, ap
->gotp
, ap
->prevp
,
2616 align
, 1, ap
->eof
, 0,
2617 ap
->conv
, &ap
->off
, &ap
->alen
);
2621 ASSERT(ap
->alen
% mp
->m_sb
.sb_rextsize
== 0);
2624 * If the offset & length are not perfectly aligned
2625 * then kill prod, it will just get us in trouble.
2627 if (do_mod(ap
->off
, align
) || ap
->alen
% align
)
2630 * Set ralen to be the actual requested length in rtextents.
2632 ralen
= ap
->alen
/ mp
->m_sb
.sb_rextsize
;
2634 * If the old value was close enough to MAXEXTLEN that
2635 * we rounded up to it, cut it back so it's valid again.
2636 * Note that if it's a really large request (bigger than
2637 * MAXEXTLEN), we don't hear about that number, and can't
2638 * adjust the starting point to match it.
2640 if (ralen
* mp
->m_sb
.sb_rextsize
>= MAXEXTLEN
)
2641 ralen
= MAXEXTLEN
/ mp
->m_sb
.sb_rextsize
;
2643 * If it's an allocation to an empty file at offset 0,
2644 * pick an extent that will space things out in the rt area.
2646 if (ap
->eof
&& ap
->off
== 0) {
2647 error
= xfs_rtpick_extent(mp
, ap
->tp
, ralen
, &rtx
);
2650 ap
->rval
= rtx
* mp
->m_sb
.sb_rextsize
;
2655 xfs_bmap_adjacent(ap
);
2658 * Realtime allocation, done through xfs_rtallocate_extent.
2660 atype
= ap
->rval
== 0 ? XFS_ALLOCTYPE_ANY_AG
: XFS_ALLOCTYPE_NEAR_BNO
;
2661 do_div(ap
->rval
, mp
->m_sb
.sb_rextsize
);
2664 if ((error
= xfs_rtallocate_extent(ap
->tp
, ap
->rval
, 1, ap
->alen
,
2665 &ralen
, atype
, ap
->wasdel
, prod
, &rtb
)))
2667 if (rtb
== NULLFSBLOCK
&& prod
> 1 &&
2668 (error
= xfs_rtallocate_extent(ap
->tp
, ap
->rval
, 1,
2669 ap
->alen
, &ralen
, atype
,
2670 ap
->wasdel
, 1, &rtb
)))
2673 if (ap
->rval
!= NULLFSBLOCK
) {
2674 ap
->rval
*= mp
->m_sb
.sb_rextsize
;
2675 ralen
*= mp
->m_sb
.sb_rextsize
;
2677 ap
->ip
->i_d
.di_nblocks
+= ralen
;
2678 xfs_trans_log_inode(ap
->tp
, ap
->ip
, XFS_ILOG_CORE
);
2680 ap
->ip
->i_delayed_blks
-= ralen
;
2682 * Adjust the disk quota also. This was reserved
2685 XFS_TRANS_MOD_DQUOT_BYINO(mp
, ap
->tp
, ap
->ip
,
2686 ap
->wasdel
? XFS_TRANS_DQ_DELRTBCOUNT
:
2687 XFS_TRANS_DQ_RTBCOUNT
, (long) ralen
);
2696 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2698 xfs_mount_t
*mp
; /* mount point structure */
2699 xfs_alloctype_t atype
= 0; /* type for allocation routines */
2700 xfs_extlen_t align
; /* minimum allocation alignment */
2702 xfs_agnumber_t fb_agno
; /* ag number of ap->firstblock */
2703 xfs_agnumber_t startag
;
2704 xfs_alloc_arg_t args
;
2707 xfs_extlen_t longest
;
2709 xfs_extlen_t nextminlen
= 0;
2711 int nullfb
; /* true if ap->firstblock isn't set */
2717 mp
= ap
->ip
->i_mount
;
2718 align
= (ap
->userdata
&& ap
->ip
->i_d
.di_extsize
&&
2719 (ap
->ip
->i_d
.di_flags
& XFS_DIFLAG_EXTSIZE
)) ?
2720 ap
->ip
->i_d
.di_extsize
: 0;
2721 if (unlikely(align
)) {
2722 error
= xfs_bmap_extsize_align(mp
, ap
->gotp
, ap
->prevp
,
2723 align
, 0, ap
->eof
, 0, ap
->conv
,
2724 &ap
->off
, &ap
->alen
);
2728 nullfb
= ap
->firstblock
== NULLFSBLOCK
;
2729 fb_agno
= nullfb
? NULLAGNUMBER
: XFS_FSB_TO_AGNO(mp
, ap
->firstblock
);
2731 ap
->rval
= XFS_INO_TO_FSB(mp
, ap
->ip
->i_ino
);
2733 ap
->rval
= ap
->firstblock
;
2735 xfs_bmap_adjacent(ap
);
2738 * If allowed, use ap->rval; otherwise must use firstblock since
2739 * it's in the right allocation group.
2741 if (nullfb
|| XFS_FSB_TO_AGNO(mp
, ap
->rval
) == fb_agno
)
2744 ap
->rval
= ap
->firstblock
;
2746 * Normal allocation, done through xfs_alloc_vextent.
2748 tryagain
= isaligned
= 0;
2751 args
.fsbno
= ap
->rval
;
2752 args
.maxlen
= MIN(ap
->alen
, mp
->m_sb
.sb_agblocks
);
2753 args
.firstblock
= ap
->firstblock
;
2756 args
.type
= XFS_ALLOCTYPE_START_BNO
;
2757 args
.total
= ap
->total
;
2759 * Find the longest available space.
2760 * We're going to try for the whole allocation at once.
2762 startag
= ag
= XFS_FSB_TO_AGNO(mp
, args
.fsbno
);
2764 down_read(&mp
->m_peraglock
);
2765 while (blen
< ap
->alen
) {
2766 pag
= &mp
->m_perag
[ag
];
2767 if (!pag
->pagf_init
&&
2768 (error
= xfs_alloc_pagf_init(mp
, args
.tp
,
2769 ag
, XFS_ALLOC_FLAG_TRYLOCK
))) {
2770 up_read(&mp
->m_peraglock
);
2774 * See xfs_alloc_fix_freelist...
2776 if (pag
->pagf_init
) {
2777 need
= XFS_MIN_FREELIST_PAG(pag
, mp
);
2778 delta
= need
> pag
->pagf_flcount
?
2779 need
- pag
->pagf_flcount
: 0;
2780 longest
= (pag
->pagf_longest
> delta
) ?
2781 (pag
->pagf_longest
- delta
) :
2782 (pag
->pagf_flcount
> 0 ||
2783 pag
->pagf_longest
> 0);
2788 if (++ag
== mp
->m_sb
.sb_agcount
)
2793 up_read(&mp
->m_peraglock
);
2795 * Since the above loop did a BUF_TRYLOCK, it is
2796 * possible that there is space for this request.
2798 if (notinit
|| blen
< ap
->minlen
)
2799 args
.minlen
= ap
->minlen
;
2801 * If the best seen length is less than the request
2802 * length, use the best as the minimum.
2804 else if (blen
< ap
->alen
)
2807 * Otherwise we've seen an extent as big as alen,
2808 * use that as the minimum.
2811 args
.minlen
= ap
->alen
;
2812 } else if (ap
->low
) {
2813 args
.type
= XFS_ALLOCTYPE_START_BNO
;
2814 args
.total
= args
.minlen
= ap
->minlen
;
2816 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
2817 args
.total
= ap
->total
;
2818 args
.minlen
= ap
->minlen
;
2820 if (unlikely(ap
->userdata
&& ap
->ip
->i_d
.di_extsize
&&
2821 (ap
->ip
->i_d
.di_flags
& XFS_DIFLAG_EXTSIZE
))) {
2822 args
.prod
= ap
->ip
->i_d
.di_extsize
;
2823 if ((args
.mod
= (xfs_extlen_t
)do_mod(ap
->off
, args
.prod
)))
2824 args
.mod
= (xfs_extlen_t
)(args
.prod
- args
.mod
);
2825 } else if (mp
->m_sb
.sb_blocksize
>= NBPP
) {
2829 args
.prod
= NBPP
>> mp
->m_sb
.sb_blocklog
;
2830 if ((args
.mod
= (xfs_extlen_t
)(do_mod(ap
->off
, args
.prod
))))
2831 args
.mod
= (xfs_extlen_t
)(args
.prod
- args
.mod
);
2834 * If we are not low on available data blocks, and the
2835 * underlying logical volume manager is a stripe, and
2836 * the file offset is zero then try to allocate data
2837 * blocks on stripe unit boundary.
2838 * NOTE: ap->aeof is only set if the allocation length
2839 * is >= the stripe unit and the allocation offset is
2840 * at the end of file.
2842 if (!ap
->low
&& ap
->aeof
) {
2844 args
.alignment
= mp
->m_dalign
;
2848 * Adjust for alignment
2850 if (blen
> args
.alignment
&& blen
<= ap
->alen
)
2851 args
.minlen
= blen
- args
.alignment
;
2852 args
.minalignslop
= 0;
2855 * First try an exact bno allocation.
2856 * If it fails then do a near or start bno
2857 * allocation with alignment turned on.
2861 args
.type
= XFS_ALLOCTYPE_THIS_BNO
;
2864 * Compute the minlen+alignment for the
2865 * next case. Set slop so that the value
2866 * of minlen+alignment+slop doesn't go up
2867 * between the calls.
2869 if (blen
> mp
->m_dalign
&& blen
<= ap
->alen
)
2870 nextminlen
= blen
- mp
->m_dalign
;
2872 nextminlen
= args
.minlen
;
2873 if (nextminlen
+ mp
->m_dalign
> args
.minlen
+ 1)
2875 nextminlen
+ mp
->m_dalign
-
2878 args
.minalignslop
= 0;
2882 args
.minalignslop
= 0;
2884 args
.minleft
= ap
->minleft
;
2885 args
.wasdel
= ap
->wasdel
;
2887 args
.userdata
= ap
->userdata
;
2888 if ((error
= xfs_alloc_vextent(&args
)))
2890 if (tryagain
&& args
.fsbno
== NULLFSBLOCK
) {
2892 * Exact allocation failed. Now try with alignment
2896 args
.fsbno
= ap
->rval
;
2897 args
.alignment
= mp
->m_dalign
;
2898 args
.minlen
= nextminlen
;
2899 args
.minalignslop
= 0;
2901 if ((error
= xfs_alloc_vextent(&args
)))
2904 if (isaligned
&& args
.fsbno
== NULLFSBLOCK
) {
2906 * allocation failed, so turn off alignment and
2910 args
.fsbno
= ap
->rval
;
2912 if ((error
= xfs_alloc_vextent(&args
)))
2915 if (args
.fsbno
== NULLFSBLOCK
&& nullfb
&&
2916 args
.minlen
> ap
->minlen
) {
2917 args
.minlen
= ap
->minlen
;
2918 args
.type
= XFS_ALLOCTYPE_START_BNO
;
2919 args
.fsbno
= ap
->rval
;
2920 if ((error
= xfs_alloc_vextent(&args
)))
2923 if (args
.fsbno
== NULLFSBLOCK
&& nullfb
) {
2925 args
.type
= XFS_ALLOCTYPE_FIRST_AG
;
2926 args
.total
= ap
->minlen
;
2928 if ((error
= xfs_alloc_vextent(&args
)))
2932 if (args
.fsbno
!= NULLFSBLOCK
) {
2933 ap
->firstblock
= ap
->rval
= args
.fsbno
;
2934 ASSERT(nullfb
|| fb_agno
== args
.agno
||
2935 (ap
->low
&& fb_agno
< args
.agno
));
2936 ap
->alen
= args
.len
;
2937 ap
->ip
->i_d
.di_nblocks
+= args
.len
;
2938 xfs_trans_log_inode(ap
->tp
, ap
->ip
, XFS_ILOG_CORE
);
2940 ap
->ip
->i_delayed_blks
-= args
.len
;
2942 * Adjust the disk quota also. This was reserved
2945 XFS_TRANS_MOD_DQUOT_BYINO(mp
, ap
->tp
, ap
->ip
,
2946 ap
->wasdel
? XFS_TRANS_DQ_DELBCOUNT
:
2947 XFS_TRANS_DQ_BCOUNT
,
2950 ap
->rval
= NULLFSBLOCK
;
2957 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
2958 * It figures out where to ask the underlying allocator to put the new extent.
2962 xfs_bmalloca_t
*ap
) /* bmap alloc argument struct */
2964 if ((ap
->ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
) && ap
->userdata
)
2965 return xfs_bmap_rtalloc(ap
);
2966 return xfs_bmap_btalloc(ap
);
2970 * Transform a btree format file with only one leaf node, where the
2971 * extents list will fit in the inode, into an extents format file.
2972 * Since the file extents are already in-core, all we have to do is
2973 * give up the space for the btree root and pitch the leaf block.
2975 STATIC
int /* error */
2976 xfs_bmap_btree_to_extents(
2977 xfs_trans_t
*tp
, /* transaction pointer */
2978 xfs_inode_t
*ip
, /* incore inode pointer */
2979 xfs_btree_cur_t
*cur
, /* btree cursor */
2980 int *logflagsp
, /* inode logging flags */
2981 int whichfork
) /* data or attr fork */
2984 xfs_bmbt_block_t
*cblock
;/* child btree block */
2985 xfs_fsblock_t cbno
; /* child block number */
2986 xfs_buf_t
*cbp
; /* child block's buffer */
2987 int error
; /* error return value */
2988 xfs_ifork_t
*ifp
; /* inode fork data */
2989 xfs_mount_t
*mp
; /* mount point structure */
2990 __be64
*pp
; /* ptr to block address */
2991 xfs_bmbt_block_t
*rblock
;/* root btree block */
2993 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
2994 ASSERT(ifp
->if_flags
& XFS_IFEXTENTS
);
2995 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
);
2996 rblock
= ifp
->if_broot
;
2997 ASSERT(be16_to_cpu(rblock
->bb_level
) == 1);
2998 ASSERT(be16_to_cpu(rblock
->bb_numrecs
) == 1);
2999 ASSERT(XFS_BMAP_BROOT_MAXRECS(ifp
->if_broot_bytes
) == 1);
3001 pp
= XFS_BMAP_BROOT_PTR_ADDR(rblock
, 1, ifp
->if_broot_bytes
);
3002 cbno
= be64_to_cpu(*pp
);
3005 if ((error
= xfs_btree_check_lptr(cur
, cbno
, 1)))
3008 if ((error
= xfs_btree_read_bufl(mp
, tp
, cbno
, 0, &cbp
,
3009 XFS_BMAP_BTREE_REF
)))
3011 cblock
= XFS_BUF_TO_BMBT_BLOCK(cbp
);
3012 if ((error
= xfs_btree_check_lblock(cur
, cblock
, 0, cbp
)))
3014 xfs_bmap_add_free(cbno
, 1, cur
->bc_private
.b
.flist
, mp
);
3015 ip
->i_d
.di_nblocks
--;
3016 XFS_TRANS_MOD_DQUOT_BYINO(mp
, tp
, ip
, XFS_TRANS_DQ_BCOUNT
, -1L);
3017 xfs_trans_binval(tp
, cbp
);
3018 if (cur
->bc_bufs
[0] == cbp
)
3019 cur
->bc_bufs
[0] = NULL
;
3020 xfs_iroot_realloc(ip
, -1, whichfork
);
3021 ASSERT(ifp
->if_broot
== NULL
);
3022 ASSERT((ifp
->if_flags
& XFS_IFBROOT
) == 0);
3023 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_EXTENTS
);
3024 *logflagsp
= XFS_ILOG_CORE
| XFS_ILOG_FEXT(whichfork
);
3029 * Called by xfs_bmapi to update file extent records and the btree
3030 * after removing space (or undoing a delayed allocation).
3032 STATIC
int /* error */
3033 xfs_bmap_del_extent(
3034 xfs_inode_t
*ip
, /* incore inode pointer */
3035 xfs_trans_t
*tp
, /* current transaction pointer */
3036 xfs_extnum_t idx
, /* extent number to update/delete */
3037 xfs_bmap_free_t
*flist
, /* list of extents to be freed */
3038 xfs_btree_cur_t
*cur
, /* if null, not a btree */
3039 xfs_bmbt_irec_t
*del
, /* data to remove from extents */
3040 int *logflagsp
, /* inode logging flags */
3041 xfs_extdelta_t
*delta
, /* Change made to incore extents */
3042 int whichfork
, /* data or attr fork */
3043 int rsvd
) /* OK to allocate reserved blocks */
3045 xfs_filblks_t da_new
; /* new delay-alloc indirect blocks */
3046 xfs_filblks_t da_old
; /* old delay-alloc indirect blocks */
3047 xfs_fsblock_t del_endblock
=0; /* first block past del */
3048 xfs_fileoff_t del_endoff
; /* first offset past del */
3049 int delay
; /* current block is delayed allocated */
3050 int do_fx
; /* free extent at end of routine */
3051 xfs_bmbt_rec_t
*ep
; /* current extent entry pointer */
3052 int error
; /* error return value */
3053 int flags
; /* inode logging flags */
3054 #ifdef XFS_BMAP_TRACE
3055 static char fname
[] = "xfs_bmap_del_extent";
3057 xfs_bmbt_irec_t got
; /* current extent entry */
3058 xfs_fileoff_t got_endoff
; /* first offset past got */
3059 int i
; /* temp state */
3060 xfs_ifork_t
*ifp
; /* inode fork pointer */
3061 xfs_mount_t
*mp
; /* mount structure */
3062 xfs_filblks_t nblks
; /* quota/sb block count */
3063 xfs_bmbt_irec_t
new; /* new record to be inserted */
3065 uint qfield
; /* quota field to update */
3066 xfs_filblks_t temp
; /* for indirect length calculations */
3067 xfs_filblks_t temp2
; /* for indirect length calculations */
3069 XFS_STATS_INC(xs_del_exlist
);
3071 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3072 ASSERT((idx
>= 0) && (idx
< ifp
->if_bytes
/
3073 (uint
)sizeof(xfs_bmbt_rec_t
)));
3074 ASSERT(del
->br_blockcount
> 0);
3075 ep
= xfs_iext_get_ext(ifp
, idx
);
3076 xfs_bmbt_get_all(ep
, &got
);
3077 ASSERT(got
.br_startoff
<= del
->br_startoff
);
3078 del_endoff
= del
->br_startoff
+ del
->br_blockcount
;
3079 got_endoff
= got
.br_startoff
+ got
.br_blockcount
;
3080 ASSERT(got_endoff
>= del_endoff
);
3081 delay
= ISNULLSTARTBLOCK(got
.br_startblock
);
3082 ASSERT(ISNULLSTARTBLOCK(del
->br_startblock
) == delay
);
3087 * If deleting a real allocation, must free up the disk space.
3090 flags
= XFS_ILOG_CORE
;
3092 * Realtime allocation. Free it and record di_nblocks update.
3094 if (whichfork
== XFS_DATA_FORK
&&
3095 (ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
)) {
3099 ASSERT(do_mod(del
->br_blockcount
,
3100 mp
->m_sb
.sb_rextsize
) == 0);
3101 ASSERT(do_mod(del
->br_startblock
,
3102 mp
->m_sb
.sb_rextsize
) == 0);
3103 bno
= del
->br_startblock
;
3104 len
= del
->br_blockcount
;
3105 do_div(bno
, mp
->m_sb
.sb_rextsize
);
3106 do_div(len
, mp
->m_sb
.sb_rextsize
);
3107 if ((error
= xfs_rtfree_extent(ip
->i_transp
, bno
,
3108 (xfs_extlen_t
)len
)))
3111 nblks
= len
* mp
->m_sb
.sb_rextsize
;
3112 qfield
= XFS_TRANS_DQ_RTBCOUNT
;
3115 * Ordinary allocation.
3119 nblks
= del
->br_blockcount
;
3120 qfield
= XFS_TRANS_DQ_BCOUNT
;
3123 * Set up del_endblock and cur for later.
3125 del_endblock
= del
->br_startblock
+ del
->br_blockcount
;
3127 if ((error
= xfs_bmbt_lookup_eq(cur
, got
.br_startoff
,
3128 got
.br_startblock
, got
.br_blockcount
,
3133 da_old
= da_new
= 0;
3135 da_old
= STARTBLOCKVAL(got
.br_startblock
);
3141 * Set flag value to use in switch statement.
3142 * Left-contig is 2, right-contig is 1.
3144 switch (((got
.br_startoff
== del
->br_startoff
) << 1) |
3145 (got_endoff
== del_endoff
)) {
3148 * Matches the whole extent. Delete the entry.
3150 xfs_bmap_trace_delete(fname
, "3", ip
, idx
, 1, whichfork
);
3151 xfs_iext_remove(ifp
, idx
, 1);
3152 ifp
->if_lastex
= idx
;
3155 XFS_IFORK_NEXT_SET(ip
, whichfork
,
3156 XFS_IFORK_NEXTENTS(ip
, whichfork
) - 1);
3157 flags
|= XFS_ILOG_CORE
;
3159 flags
|= XFS_ILOG_FEXT(whichfork
);
3162 if ((error
= xfs_bmbt_delete(cur
, &i
)))
3169 * Deleting the first part of the extent.
3171 xfs_bmap_trace_pre_update(fname
, "2", ip
, idx
, whichfork
);
3172 xfs_bmbt_set_startoff(ep
, del_endoff
);
3173 temp
= got
.br_blockcount
- del
->br_blockcount
;
3174 xfs_bmbt_set_blockcount(ep
, temp
);
3175 ifp
->if_lastex
= idx
;
3177 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
3179 xfs_bmbt_set_startblock(ep
, NULLSTARTBLOCK((int)temp
));
3180 xfs_bmap_trace_post_update(fname
, "2", ip
, idx
,
3185 xfs_bmbt_set_startblock(ep
, del_endblock
);
3186 xfs_bmap_trace_post_update(fname
, "2", ip
, idx
, whichfork
);
3188 flags
|= XFS_ILOG_FEXT(whichfork
);
3191 if ((error
= xfs_bmbt_update(cur
, del_endoff
, del_endblock
,
3192 got
.br_blockcount
- del
->br_blockcount
,
3199 * Deleting the last part of the extent.
3201 temp
= got
.br_blockcount
- del
->br_blockcount
;
3202 xfs_bmap_trace_pre_update(fname
, "1", ip
, idx
, whichfork
);
3203 xfs_bmbt_set_blockcount(ep
, temp
);
3204 ifp
->if_lastex
= idx
;
3206 temp
= XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip
, temp
),
3208 xfs_bmbt_set_startblock(ep
, NULLSTARTBLOCK((int)temp
));
3209 xfs_bmap_trace_post_update(fname
, "1", ip
, idx
,
3214 xfs_bmap_trace_post_update(fname
, "1", ip
, idx
, whichfork
);
3216 flags
|= XFS_ILOG_FEXT(whichfork
);
3219 if ((error
= xfs_bmbt_update(cur
, got
.br_startoff
,
3221 got
.br_blockcount
- del
->br_blockcount
,
3228 * Deleting the middle of the extent.
3230 temp
= del
->br_startoff
- got
.br_startoff
;
3231 xfs_bmap_trace_pre_update(fname
, "0", ip
, idx
, whichfork
);
3232 xfs_bmbt_set_blockcount(ep
, temp
);
3233 new.br_startoff
= del_endoff
;
3234 temp2
= got_endoff
- del_endoff
;
3235 new.br_blockcount
= temp2
;
3236 new.br_state
= got
.br_state
;
3238 new.br_startblock
= del_endblock
;
3239 flags
|= XFS_ILOG_CORE
;
3241 if ((error
= xfs_bmbt_update(cur
,
3243 got
.br_startblock
, temp
,
3246 if ((error
= xfs_bmbt_increment(cur
, 0, &i
)))
3248 cur
->bc_rec
.b
= new;
3249 error
= xfs_bmbt_insert(cur
, &i
);
3250 if (error
&& error
!= ENOSPC
)
3253 * If get no-space back from btree insert,
3254 * it tried a split, and we have a zero
3255 * block reservation.
3256 * Fix up our state and return the error.
3258 if (error
== ENOSPC
) {
3260 * Reset the cursor, don't trust
3261 * it after any insert operation.
3263 if ((error
= xfs_bmbt_lookup_eq(cur
,
3270 * Update the btree record back
3271 * to the original value.
3273 if ((error
= xfs_bmbt_update(cur
,
3280 * Reset the extent record back
3281 * to the original value.
3283 xfs_bmbt_set_blockcount(ep
,
3286 error
= XFS_ERROR(ENOSPC
);
3291 flags
|= XFS_ILOG_FEXT(whichfork
);
3292 XFS_IFORK_NEXT_SET(ip
, whichfork
,
3293 XFS_IFORK_NEXTENTS(ip
, whichfork
) + 1);
3295 ASSERT(whichfork
== XFS_DATA_FORK
);
3296 temp
= xfs_bmap_worst_indlen(ip
, temp
);
3297 xfs_bmbt_set_startblock(ep
, NULLSTARTBLOCK((int)temp
));
3298 temp2
= xfs_bmap_worst_indlen(ip
, temp2
);
3299 new.br_startblock
= NULLSTARTBLOCK((int)temp2
);
3300 da_new
= temp
+ temp2
;
3301 while (da_new
> da_old
) {
3305 xfs_bmbt_set_startblock(ep
,
3306 NULLSTARTBLOCK((int)temp
));
3308 if (da_new
== da_old
)
3314 NULLSTARTBLOCK((int)temp2
);
3318 xfs_bmap_trace_post_update(fname
, "0", ip
, idx
, whichfork
);
3319 xfs_bmap_trace_insert(fname
, "0", ip
, idx
+ 1, 1, &new, NULL
,
3321 xfs_iext_insert(ifp
, idx
+ 1, 1, &new);
3322 ifp
->if_lastex
= idx
+ 1;
3326 * If we need to, add to list of extents to delete.
3329 xfs_bmap_add_free(del
->br_startblock
, del
->br_blockcount
, flist
,
3332 * Adjust inode # blocks in the file.
3335 ip
->i_d
.di_nblocks
-= nblks
;
3337 * Adjust quota data.
3340 XFS_TRANS_MOD_DQUOT_BYINO(mp
, tp
, ip
, qfield
, (long)-nblks
);
3343 * Account for change in delayed indirect blocks.
3344 * Nothing to do for disk quota accounting here.
3346 ASSERT(da_old
>= da_new
);
3347 if (da_old
> da_new
)
3348 xfs_mod_incore_sb(mp
, XFS_SBS_FDBLOCKS
, (int64_t)(da_old
- da_new
),
3351 /* DELTA: report the original extent. */
3352 if (delta
->xed_startoff
> got
.br_startoff
)
3353 delta
->xed_startoff
= got
.br_startoff
;
3354 if (delta
->xed_blockcount
< got
.br_startoff
+got
.br_blockcount
)
3355 delta
->xed_blockcount
= got
.br_startoff
+
3364 * Remove the entry "free" from the free item list. Prev points to the
3365 * previous entry, unless "free" is the head of the list.
3369 xfs_bmap_free_t
*flist
, /* free item list header */
3370 xfs_bmap_free_item_t
*prev
, /* previous item on list, if any */
3371 xfs_bmap_free_item_t
*free
) /* list item to be freed */
3374 prev
->xbfi_next
= free
->xbfi_next
;
3376 flist
->xbf_first
= free
->xbfi_next
;
3378 kmem_zone_free(xfs_bmap_free_item_zone
, free
);
3382 * Convert an extents-format file into a btree-format file.
3383 * The new file will have a root block (in the inode) and a single child block.
3385 STATIC
int /* error */
3386 xfs_bmap_extents_to_btree(
3387 xfs_trans_t
*tp
, /* transaction pointer */
3388 xfs_inode_t
*ip
, /* incore inode pointer */
3389 xfs_fsblock_t
*firstblock
, /* first-block-allocated */
3390 xfs_bmap_free_t
*flist
, /* blocks freed in xaction */
3391 xfs_btree_cur_t
**curp
, /* cursor returned to caller */
3392 int wasdel
, /* converting a delayed alloc */
3393 int *logflagsp
, /* inode logging flags */
3394 int whichfork
) /* data or attr fork */
3396 xfs_bmbt_block_t
*ablock
; /* allocated (child) bt block */
3397 xfs_buf_t
*abp
; /* buffer for ablock */
3398 xfs_alloc_arg_t args
; /* allocation arguments */
3399 xfs_bmbt_rec_t
*arp
; /* child record pointer */
3400 xfs_bmbt_block_t
*block
; /* btree root block */
3401 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
3402 xfs_bmbt_rec_t
*ep
; /* extent record pointer */
3403 int error
; /* error return value */
3404 xfs_extnum_t i
, cnt
; /* extent record index */
3405 xfs_ifork_t
*ifp
; /* inode fork pointer */
3406 xfs_bmbt_key_t
*kp
; /* root block key pointer */
3407 xfs_mount_t
*mp
; /* mount structure */
3408 xfs_extnum_t nextents
; /* number of file extents */
3409 xfs_bmbt_ptr_t
*pp
; /* root block address pointer */
3411 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3412 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
);
3413 ASSERT(ifp
->if_ext_max
==
3414 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3416 * Make space in the inode incore.
3418 xfs_iroot_realloc(ip
, 1, whichfork
);
3419 ifp
->if_flags
|= XFS_IFBROOT
;
3423 block
= ifp
->if_broot
;
3424 block
->bb_magic
= cpu_to_be32(XFS_BMAP_MAGIC
);
3425 block
->bb_level
= cpu_to_be16(1);
3426 block
->bb_numrecs
= cpu_to_be16(1);
3427 block
->bb_leftsib
= cpu_to_be64(NULLDFSBNO
);
3428 block
->bb_rightsib
= cpu_to_be64(NULLDFSBNO
);
3430 * Need a cursor. Can't allocate until bb_level is filled in.
3433 cur
= xfs_btree_init_cursor(mp
, tp
, NULL
, 0, XFS_BTNUM_BMAP
, ip
,
3435 cur
->bc_private
.b
.firstblock
= *firstblock
;
3436 cur
->bc_private
.b
.flist
= flist
;
3437 cur
->bc_private
.b
.flags
= wasdel
? XFS_BTCUR_BPRV_WASDEL
: 0;
3439 * Convert to a btree with two levels, one record in root.
3441 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_BTREE
);
3444 args
.firstblock
= *firstblock
;
3445 if (*firstblock
== NULLFSBLOCK
) {
3446 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3447 args
.fsbno
= XFS_INO_TO_FSB(mp
, ip
->i_ino
);
3448 } else if (flist
->xbf_low
) {
3449 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3450 args
.fsbno
= *firstblock
;
3452 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
3453 args
.fsbno
= *firstblock
;
3455 args
.minlen
= args
.maxlen
= args
.prod
= 1;
3456 args
.total
= args
.minleft
= args
.alignment
= args
.mod
= args
.isfl
=
3457 args
.minalignslop
= 0;
3458 args
.wasdel
= wasdel
;
3460 if ((error
= xfs_alloc_vextent(&args
))) {
3461 xfs_iroot_realloc(ip
, -1, whichfork
);
3462 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
3466 * Allocation can't fail, the space was reserved.
3468 ASSERT(args
.fsbno
!= NULLFSBLOCK
);
3469 ASSERT(*firstblock
== NULLFSBLOCK
||
3470 args
.agno
== XFS_FSB_TO_AGNO(mp
, *firstblock
) ||
3472 args
.agno
> XFS_FSB_TO_AGNO(mp
, *firstblock
)));
3473 *firstblock
= cur
->bc_private
.b
.firstblock
= args
.fsbno
;
3474 cur
->bc_private
.b
.allocated
++;
3475 ip
->i_d
.di_nblocks
++;
3476 XFS_TRANS_MOD_DQUOT_BYINO(mp
, tp
, ip
, XFS_TRANS_DQ_BCOUNT
, 1L);
3477 abp
= xfs_btree_get_bufl(mp
, tp
, args
.fsbno
, 0);
3479 * Fill in the child block.
3481 ablock
= XFS_BUF_TO_BMBT_BLOCK(abp
);
3482 ablock
->bb_magic
= cpu_to_be32(XFS_BMAP_MAGIC
);
3483 ablock
->bb_level
= 0;
3484 ablock
->bb_leftsib
= cpu_to_be64(NULLDFSBNO
);
3485 ablock
->bb_rightsib
= cpu_to_be64(NULLDFSBNO
);
3486 arp
= XFS_BMAP_REC_IADDR(ablock
, 1, cur
);
3487 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
3488 for (cnt
= i
= 0; i
< nextents
; i
++) {
3489 ep
= xfs_iext_get_ext(ifp
, i
);
3490 if (!ISNULLSTARTBLOCK(xfs_bmbt_get_startblock(ep
))) {
3491 arp
->l0
= INT_GET(ep
->l0
, ARCH_CONVERT
);
3492 arp
->l1
= INT_GET(ep
->l1
, ARCH_CONVERT
);
3496 ASSERT(cnt
== XFS_IFORK_NEXTENTS(ip
, whichfork
));
3497 ablock
->bb_numrecs
= cpu_to_be16(cnt
);
3499 * Fill in the root key and pointer.
3501 kp
= XFS_BMAP_KEY_IADDR(block
, 1, cur
);
3502 arp
= XFS_BMAP_REC_IADDR(ablock
, 1, cur
);
3503 kp
->br_startoff
= cpu_to_be64(xfs_bmbt_disk_get_startoff(arp
));
3504 pp
= XFS_BMAP_PTR_IADDR(block
, 1, cur
);
3505 *pp
= cpu_to_be64(args
.fsbno
);
3507 * Do all this logging at the end so that
3508 * the root is at the right level.
3510 xfs_bmbt_log_block(cur
, abp
, XFS_BB_ALL_BITS
);
3511 xfs_bmbt_log_recs(cur
, abp
, 1, be16_to_cpu(ablock
->bb_numrecs
));
3512 ASSERT(*curp
== NULL
);
3514 *logflagsp
= XFS_ILOG_CORE
| XFS_ILOG_FBROOT(whichfork
);
3519 * Helper routine to reset inode di_forkoff field when switching
3520 * attribute fork from local to extent format - we reset it where
3521 * possible to make space available for inline data fork extents.
3524 xfs_bmap_forkoff_reset(
3529 if (whichfork
== XFS_ATTR_FORK
&&
3530 (ip
->i_d
.di_format
!= XFS_DINODE_FMT_DEV
) &&
3531 (ip
->i_d
.di_format
!= XFS_DINODE_FMT_UUID
) &&
3532 (ip
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
) &&
3533 ((mp
->m_attroffset
>> 3) > ip
->i_d
.di_forkoff
)) {
3534 ip
->i_d
.di_forkoff
= mp
->m_attroffset
>> 3;
3535 ip
->i_df
.if_ext_max
= XFS_IFORK_DSIZE(ip
) /
3536 (uint
)sizeof(xfs_bmbt_rec_t
);
3537 ip
->i_afp
->if_ext_max
= XFS_IFORK_ASIZE(ip
) /
3538 (uint
)sizeof(xfs_bmbt_rec_t
);
3543 * Convert a local file to an extents file.
3544 * This code is out of bounds for data forks of regular files,
3545 * since the file data needs to get logged so things will stay consistent.
3546 * (The bmap-level manipulations are ok, though).
3548 STATIC
int /* error */
3549 xfs_bmap_local_to_extents(
3550 xfs_trans_t
*tp
, /* transaction pointer */
3551 xfs_inode_t
*ip
, /* incore inode pointer */
3552 xfs_fsblock_t
*firstblock
, /* first block allocated in xaction */
3553 xfs_extlen_t total
, /* total blocks needed by transaction */
3554 int *logflagsp
, /* inode logging flags */
3555 int whichfork
) /* data or attr fork */
3557 int error
; /* error return value */
3558 int flags
; /* logging flags returned */
3559 #ifdef XFS_BMAP_TRACE
3560 static char fname
[] = "xfs_bmap_local_to_extents";
3562 xfs_ifork_t
*ifp
; /* inode fork pointer */
3565 * We don't want to deal with the case of keeping inode data inline yet.
3566 * So sending the data fork of a regular inode is invalid.
3568 ASSERT(!((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
&&
3569 whichfork
== XFS_DATA_FORK
));
3570 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3571 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
);
3574 if (ifp
->if_bytes
) {
3575 xfs_alloc_arg_t args
; /* allocation arguments */
3576 xfs_buf_t
*bp
; /* buffer for extent block */
3577 xfs_bmbt_rec_t
*ep
; /* extent record pointer */
3580 args
.mp
= ip
->i_mount
;
3581 args
.firstblock
= *firstblock
;
3582 ASSERT((ifp
->if_flags
&
3583 (XFS_IFINLINE
|XFS_IFEXTENTS
|XFS_IFEXTIREC
)) == XFS_IFINLINE
);
3585 * Allocate a block. We know we need only one, since the
3586 * file currently fits in an inode.
3588 if (*firstblock
== NULLFSBLOCK
) {
3589 args
.fsbno
= XFS_INO_TO_FSB(args
.mp
, ip
->i_ino
);
3590 args
.type
= XFS_ALLOCTYPE_START_BNO
;
3592 args
.fsbno
= *firstblock
;
3593 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
3596 args
.mod
= args
.minleft
= args
.alignment
= args
.wasdel
=
3597 args
.isfl
= args
.minalignslop
= 0;
3598 args
.minlen
= args
.maxlen
= args
.prod
= 1;
3599 if ((error
= xfs_alloc_vextent(&args
)))
3602 * Can't fail, the space was reserved.
3604 ASSERT(args
.fsbno
!= NULLFSBLOCK
);
3605 ASSERT(args
.len
== 1);
3606 *firstblock
= args
.fsbno
;
3607 bp
= xfs_btree_get_bufl(args
.mp
, tp
, args
.fsbno
, 0);
3608 memcpy((char *)XFS_BUF_PTR(bp
), ifp
->if_u1
.if_data
,
3610 xfs_trans_log_buf(tp
, bp
, 0, ifp
->if_bytes
- 1);
3611 xfs_bmap_forkoff_reset(args
.mp
, ip
, whichfork
);
3612 xfs_idata_realloc(ip
, -ifp
->if_bytes
, whichfork
);
3613 xfs_iext_add(ifp
, 0, 1);
3614 ep
= xfs_iext_get_ext(ifp
, 0);
3615 xfs_bmbt_set_allf(ep
, 0, args
.fsbno
, 1, XFS_EXT_NORM
);
3616 xfs_bmap_trace_post_update(fname
, "new", ip
, 0, whichfork
);
3617 XFS_IFORK_NEXT_SET(ip
, whichfork
, 1);
3618 ip
->i_d
.di_nblocks
= 1;
3619 XFS_TRANS_MOD_DQUOT_BYINO(args
.mp
, tp
, ip
,
3620 XFS_TRANS_DQ_BCOUNT
, 1L);
3621 flags
|= XFS_ILOG_FEXT(whichfork
);
3623 ASSERT(XFS_IFORK_NEXTENTS(ip
, whichfork
) == 0);
3624 xfs_bmap_forkoff_reset(ip
->i_mount
, ip
, whichfork
);
3626 ifp
->if_flags
&= ~XFS_IFINLINE
;
3627 ifp
->if_flags
|= XFS_IFEXTENTS
;
3628 XFS_IFORK_FMT_SET(ip
, whichfork
, XFS_DINODE_FMT_EXTENTS
);
3629 flags
|= XFS_ILOG_CORE
;
3636 * Search the extent records for the entry containing block bno.
3637 * If bno lies in a hole, point to the next entry. If bno lies
3638 * past eof, *eofp will be set, and *prevp will contain the last
3639 * entry (null if none). Else, *lastxp will be set to the index
3640 * of the found entry; *gotp will contain the entry.
3642 xfs_bmbt_rec_t
* /* pointer to found extent entry */
3643 xfs_bmap_search_multi_extents(
3644 xfs_ifork_t
*ifp
, /* inode fork pointer */
3645 xfs_fileoff_t bno
, /* block number searched for */
3646 int *eofp
, /* out: end of file found */
3647 xfs_extnum_t
*lastxp
, /* out: last extent index */
3648 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
3649 xfs_bmbt_irec_t
*prevp
) /* out: previous extent entry found */
3651 xfs_bmbt_rec_t
*ep
; /* extent record pointer */
3652 xfs_extnum_t lastx
; /* last extent index */
3655 * Initialize the extent entry structure to catch access to
3656 * uninitialized br_startblock field.
3658 gotp
->br_startoff
= 0xffa5a5a5a5a5a5a5LL
;
3659 gotp
->br_blockcount
= 0xa55a5a5a5a5a5a5aLL
;
3660 gotp
->br_state
= XFS_EXT_INVALID
;
3662 gotp
->br_startblock
= 0xffffa5a5a5a5a5a5LL
;
3664 gotp
->br_startblock
= 0xffffa5a5;
3666 prevp
->br_startoff
= NULLFILEOFF
;
3668 ep
= xfs_iext_bno_to_ext(ifp
, bno
, &lastx
);
3670 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, lastx
- 1), prevp
);
3672 if (lastx
< (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
))) {
3673 xfs_bmbt_get_all(ep
, gotp
);
3687 * Search the extents list for the inode, for the extent containing bno.
3688 * If bno lies in a hole, point to the next entry. If bno lies past eof,
3689 * *eofp will be set, and *prevp will contain the last entry (null if none).
3690 * Else, *lastxp will be set to the index of the found
3691 * entry; *gotp will contain the entry.
3693 STATIC xfs_bmbt_rec_t
* /* pointer to found extent entry */
3694 xfs_bmap_search_extents(
3695 xfs_inode_t
*ip
, /* incore inode pointer */
3696 xfs_fileoff_t bno
, /* block number searched for */
3697 int fork
, /* data or attr fork */
3698 int *eofp
, /* out: end of file found */
3699 xfs_extnum_t
*lastxp
, /* out: last extent index */
3700 xfs_bmbt_irec_t
*gotp
, /* out: extent entry found */
3701 xfs_bmbt_irec_t
*prevp
) /* out: previous extent entry found */
3703 xfs_ifork_t
*ifp
; /* inode fork pointer */
3704 xfs_bmbt_rec_t
*ep
; /* extent record pointer */
3706 XFS_STATS_INC(xs_look_exlist
);
3707 ifp
= XFS_IFORK_PTR(ip
, fork
);
3709 ep
= xfs_bmap_search_multi_extents(ifp
, bno
, eofp
, lastxp
, gotp
, prevp
);
3711 if (unlikely(!(gotp
->br_startblock
) && (*lastxp
!= NULLEXTNUM
) &&
3712 !(XFS_IS_REALTIME_INODE(ip
) && fork
== XFS_DATA_FORK
))) {
3713 xfs_cmn_err(XFS_PTAG_FSBLOCK_ZERO
, CE_ALERT
, ip
->i_mount
,
3714 "Access to block zero in inode %llu "
3715 "start_block: %llx start_off: %llx "
3716 "blkcnt: %llx extent-state: %x lastx: %x\n",
3717 (unsigned long long)ip
->i_ino
,
3718 (unsigned long long)gotp
->br_startblock
,
3719 (unsigned long long)gotp
->br_startoff
,
3720 (unsigned long long)gotp
->br_blockcount
,
3721 gotp
->br_state
, *lastxp
);
3722 *lastxp
= NULLEXTNUM
;
3730 #ifdef XFS_BMAP_TRACE
3731 ktrace_t
*xfs_bmap_trace_buf
;
3734 * Add a bmap trace buffer entry. Base routine for the others.
3737 xfs_bmap_trace_addentry(
3738 int opcode
, /* operation */
3739 char *fname
, /* function name */
3740 char *desc
, /* operation description */
3741 xfs_inode_t
*ip
, /* incore inode pointer */
3742 xfs_extnum_t idx
, /* index of entry(ies) */
3743 xfs_extnum_t cnt
, /* count of entries, 1 or 2 */
3744 xfs_bmbt_rec_t
*r1
, /* first record */
3745 xfs_bmbt_rec_t
*r2
, /* second record or null */
3746 int whichfork
) /* data or attr fork */
3750 ASSERT(cnt
== 1 || cnt
== 2);
3755 memset(&tr2
, 0, sizeof(tr2
));
3758 ktrace_enter(xfs_bmap_trace_buf
,
3759 (void *)(__psint_t
)(opcode
| (whichfork
<< 16)),
3760 (void *)fname
, (void *)desc
, (void *)ip
,
3761 (void *)(__psint_t
)idx
,
3762 (void *)(__psint_t
)cnt
,
3763 (void *)(__psunsigned_t
)(ip
->i_ino
>> 32),
3764 (void *)(__psunsigned_t
)(unsigned)ip
->i_ino
,
3765 (void *)(__psunsigned_t
)(r1
->l0
>> 32),
3766 (void *)(__psunsigned_t
)(unsigned)(r1
->l0
),
3767 (void *)(__psunsigned_t
)(r1
->l1
>> 32),
3768 (void *)(__psunsigned_t
)(unsigned)(r1
->l1
),
3769 (void *)(__psunsigned_t
)(r2
->l0
>> 32),
3770 (void *)(__psunsigned_t
)(unsigned)(r2
->l0
),
3771 (void *)(__psunsigned_t
)(r2
->l1
>> 32),
3772 (void *)(__psunsigned_t
)(unsigned)(r2
->l1
)
3774 ASSERT(ip
->i_xtrace
);
3775 ktrace_enter(ip
->i_xtrace
,
3776 (void *)(__psint_t
)(opcode
| (whichfork
<< 16)),
3777 (void *)fname
, (void *)desc
, (void *)ip
,
3778 (void *)(__psint_t
)idx
,
3779 (void *)(__psint_t
)cnt
,
3780 (void *)(__psunsigned_t
)(ip
->i_ino
>> 32),
3781 (void *)(__psunsigned_t
)(unsigned)ip
->i_ino
,
3782 (void *)(__psunsigned_t
)(r1
->l0
>> 32),
3783 (void *)(__psunsigned_t
)(unsigned)(r1
->l0
),
3784 (void *)(__psunsigned_t
)(r1
->l1
>> 32),
3785 (void *)(__psunsigned_t
)(unsigned)(r1
->l1
),
3786 (void *)(__psunsigned_t
)(r2
->l0
>> 32),
3787 (void *)(__psunsigned_t
)(unsigned)(r2
->l0
),
3788 (void *)(__psunsigned_t
)(r2
->l1
>> 32),
3789 (void *)(__psunsigned_t
)(unsigned)(r2
->l1
)
3794 * Add bmap trace entry prior to a call to xfs_iext_remove.
3797 xfs_bmap_trace_delete(
3798 char *fname
, /* function name */
3799 char *desc
, /* operation description */
3800 xfs_inode_t
*ip
, /* incore inode pointer */
3801 xfs_extnum_t idx
, /* index of entry(entries) deleted */
3802 xfs_extnum_t cnt
, /* count of entries deleted, 1 or 2 */
3803 int whichfork
) /* data or attr fork */
3805 xfs_ifork_t
*ifp
; /* inode fork pointer */
3807 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3808 xfs_bmap_trace_addentry(XFS_BMAP_KTRACE_DELETE
, fname
, desc
, ip
, idx
,
3809 cnt
, xfs_iext_get_ext(ifp
, idx
),
3810 cnt
== 2 ? xfs_iext_get_ext(ifp
, idx
+ 1) : NULL
,
3815 * Add bmap trace entry prior to a call to xfs_iext_insert, or
3816 * reading in the extents list from the disk (in the btree).
3819 xfs_bmap_trace_insert(
3820 char *fname
, /* function name */
3821 char *desc
, /* operation description */
3822 xfs_inode_t
*ip
, /* incore inode pointer */
3823 xfs_extnum_t idx
, /* index of entry(entries) inserted */
3824 xfs_extnum_t cnt
, /* count of entries inserted, 1 or 2 */
3825 xfs_bmbt_irec_t
*r1
, /* inserted record 1 */
3826 xfs_bmbt_irec_t
*r2
, /* inserted record 2 or null */
3827 int whichfork
) /* data or attr fork */
3829 xfs_bmbt_rec_t tr1
; /* compressed record 1 */
3830 xfs_bmbt_rec_t tr2
; /* compressed record 2 if needed */
3832 xfs_bmbt_set_all(&tr1
, r1
);
3835 xfs_bmbt_set_all(&tr2
, r2
);
3840 xfs_bmap_trace_addentry(XFS_BMAP_KTRACE_INSERT
, fname
, desc
, ip
, idx
,
3841 cnt
, &tr1
, cnt
== 2 ? &tr2
: NULL
, whichfork
);
3845 * Add bmap trace entry after updating an extent record in place.
3848 xfs_bmap_trace_post_update(
3849 char *fname
, /* function name */
3850 char *desc
, /* operation description */
3851 xfs_inode_t
*ip
, /* incore inode pointer */
3852 xfs_extnum_t idx
, /* index of entry updated */
3853 int whichfork
) /* data or attr fork */
3855 xfs_ifork_t
*ifp
; /* inode fork pointer */
3857 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3858 xfs_bmap_trace_addentry(XFS_BMAP_KTRACE_POST_UP
, fname
, desc
, ip
, idx
,
3859 1, xfs_iext_get_ext(ifp
, idx
), NULL
, whichfork
);
3863 * Add bmap trace entry prior to updating an extent record in place.
3866 xfs_bmap_trace_pre_update(
3867 char *fname
, /* function name */
3868 char *desc
, /* operation description */
3869 xfs_inode_t
*ip
, /* incore inode pointer */
3870 xfs_extnum_t idx
, /* index of entry to be updated */
3871 int whichfork
) /* data or attr fork */
3873 xfs_ifork_t
*ifp
; /* inode fork pointer */
3875 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
3876 xfs_bmap_trace_addentry(XFS_BMAP_KTRACE_PRE_UP
, fname
, desc
, ip
, idx
, 1,
3877 xfs_iext_get_ext(ifp
, idx
), NULL
, whichfork
);
3879 #endif /* XFS_BMAP_TRACE */
3882 * Compute the worst-case number of indirect blocks that will be used
3883 * for ip's delayed extent of length "len".
3885 STATIC xfs_filblks_t
3886 xfs_bmap_worst_indlen(
3887 xfs_inode_t
*ip
, /* incore inode pointer */
3888 xfs_filblks_t len
) /* delayed extent length */
3890 int level
; /* btree level number */
3891 int maxrecs
; /* maximum record count at this level */
3892 xfs_mount_t
*mp
; /* mount structure */
3893 xfs_filblks_t rval
; /* return value */
3896 maxrecs
= mp
->m_bmap_dmxr
[0];
3897 for (level
= 0, rval
= 0;
3898 level
< XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
);
3901 do_div(len
, maxrecs
);
3904 return rval
+ XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
) -
3907 maxrecs
= mp
->m_bmap_dmxr
[1];
3912 #if defined(XFS_RW_TRACE)
3921 if (ip
->i_rwtrace
== NULL
)
3923 ktrace_enter(ip
->i_rwtrace
,
3924 (void *)(__psint_t
)XFS_BUNMAP
,
3926 (void *)(__psint_t
)((ip
->i_d
.di_size
>> 32) & 0xffffffff),
3927 (void *)(__psint_t
)(ip
->i_d
.di_size
& 0xffffffff),
3928 (void *)(__psint_t
)(((xfs_dfiloff_t
)bno
>> 32) & 0xffffffff),
3929 (void *)(__psint_t
)((xfs_dfiloff_t
)bno
& 0xffffffff),
3930 (void *)(__psint_t
)len
,
3931 (void *)(__psint_t
)flags
,
3932 (void *)(unsigned long)current_cpu(),
3944 * Convert inode from non-attributed to attributed.
3945 * Must not be in a transaction, ip must not be locked.
3947 int /* error code */
3948 xfs_bmap_add_attrfork(
3949 xfs_inode_t
*ip
, /* incore inode pointer */
3950 int size
, /* space new attribute needs */
3951 int rsvd
) /* xact may use reserved blks */
3953 xfs_fsblock_t firstblock
; /* 1st block/ag allocated */
3954 xfs_bmap_free_t flist
; /* freed extent records */
3955 xfs_mount_t
*mp
; /* mount structure */
3956 xfs_trans_t
*tp
; /* transaction pointer */
3957 unsigned long s
; /* spinlock spl value */
3958 int blks
; /* space reservation */
3959 int version
= 1; /* superblock attr version */
3960 int committed
; /* xaction was committed */
3961 int logflags
; /* logging flags */
3962 int error
; /* error return value */
3964 ASSERT(XFS_IFORK_Q(ip
) == 0);
3965 ASSERT(ip
->i_df
.if_ext_max
==
3966 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
));
3969 ASSERT(!XFS_NOT_DQATTACHED(mp
, ip
));
3970 tp
= xfs_trans_alloc(mp
, XFS_TRANS_ADDAFORK
);
3971 blks
= XFS_ADDAFORK_SPACE_RES(mp
);
3973 tp
->t_flags
|= XFS_TRANS_RESERVE
;
3974 if ((error
= xfs_trans_reserve(tp
, blks
, XFS_ADDAFORK_LOG_RES(mp
), 0,
3975 XFS_TRANS_PERM_LOG_RES
, XFS_ADDAFORK_LOG_COUNT
)))
3977 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
3978 error
= XFS_TRANS_RESERVE_QUOTA_NBLKS(mp
, tp
, ip
, blks
, 0, rsvd
?
3979 XFS_QMOPT_RES_REGBLKS
| XFS_QMOPT_FORCE_RES
:
3980 XFS_QMOPT_RES_REGBLKS
);
3982 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
3983 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
);
3986 if (XFS_IFORK_Q(ip
))
3988 if (ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
) {
3990 * For inodes coming from pre-6.2 filesystems.
3992 ASSERT(ip
->i_d
.di_aformat
== 0);
3993 ip
->i_d
.di_aformat
= XFS_DINODE_FMT_EXTENTS
;
3995 ASSERT(ip
->i_d
.di_anextents
== 0);
3996 VN_HOLD(XFS_ITOV(ip
));
3997 xfs_trans_ijoin(tp
, ip
, XFS_ILOCK_EXCL
);
3998 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
3999 switch (ip
->i_d
.di_format
) {
4000 case XFS_DINODE_FMT_DEV
:
4001 ip
->i_d
.di_forkoff
= roundup(sizeof(xfs_dev_t
), 8) >> 3;
4003 case XFS_DINODE_FMT_UUID
:
4004 ip
->i_d
.di_forkoff
= roundup(sizeof(uuid_t
), 8) >> 3;
4006 case XFS_DINODE_FMT_LOCAL
:
4007 case XFS_DINODE_FMT_EXTENTS
:
4008 case XFS_DINODE_FMT_BTREE
:
4009 ip
->i_d
.di_forkoff
= xfs_attr_shortform_bytesfit(ip
, size
);
4010 if (!ip
->i_d
.di_forkoff
)
4011 ip
->i_d
.di_forkoff
= mp
->m_attroffset
>> 3;
4012 else if (mp
->m_flags
& XFS_MOUNT_ATTR2
)
4017 error
= XFS_ERROR(EINVAL
);
4020 ip
->i_df
.if_ext_max
=
4021 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
);
4022 ASSERT(ip
->i_afp
== NULL
);
4023 ip
->i_afp
= kmem_zone_zalloc(xfs_ifork_zone
, KM_SLEEP
);
4024 ip
->i_afp
->if_ext_max
=
4025 XFS_IFORK_ASIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
);
4026 ip
->i_afp
->if_flags
= XFS_IFEXTENTS
;
4028 XFS_BMAP_INIT(&flist
, &firstblock
);
4029 switch (ip
->i_d
.di_format
) {
4030 case XFS_DINODE_FMT_LOCAL
:
4031 error
= xfs_bmap_add_attrfork_local(tp
, ip
, &firstblock
, &flist
,
4034 case XFS_DINODE_FMT_EXTENTS
:
4035 error
= xfs_bmap_add_attrfork_extents(tp
, ip
, &firstblock
,
4038 case XFS_DINODE_FMT_BTREE
:
4039 error
= xfs_bmap_add_attrfork_btree(tp
, ip
, &firstblock
, &flist
,
4047 xfs_trans_log_inode(tp
, ip
, logflags
);
4050 if (!XFS_SB_VERSION_HASATTR(&mp
->m_sb
) ||
4051 (!XFS_SB_VERSION_HASATTR2(&mp
->m_sb
) && version
== 2)) {
4052 __int64_t sbfields
= 0;
4054 s
= XFS_SB_LOCK(mp
);
4055 if (!XFS_SB_VERSION_HASATTR(&mp
->m_sb
)) {
4056 XFS_SB_VERSION_ADDATTR(&mp
->m_sb
);
4057 sbfields
|= XFS_SB_VERSIONNUM
;
4059 if (!XFS_SB_VERSION_HASATTR2(&mp
->m_sb
) && version
== 2) {
4060 XFS_SB_VERSION_ADDATTR2(&mp
->m_sb
);
4061 sbfields
|= (XFS_SB_VERSIONNUM
| XFS_SB_FEATURES2
);
4064 XFS_SB_UNLOCK(mp
, s
);
4065 xfs_mod_sb(tp
, sbfields
);
4067 XFS_SB_UNLOCK(mp
, s
);
4069 if ((error
= xfs_bmap_finish(&tp
, &flist
, &committed
)))
4071 error
= xfs_trans_commit(tp
, XFS_TRANS_PERM_LOG_RES
);
4072 ASSERT(ip
->i_df
.if_ext_max
==
4073 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
));
4076 xfs_bmap_cancel(&flist
);
4078 ASSERT(ismrlocked(&ip
->i_lock
,MR_UPDATE
));
4079 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
4081 xfs_trans_cancel(tp
, XFS_TRANS_RELEASE_LOG_RES
|XFS_TRANS_ABORT
);
4082 ASSERT(ip
->i_df
.if_ext_max
==
4083 XFS_IFORK_DSIZE(ip
) / (uint
)sizeof(xfs_bmbt_rec_t
));
4088 * Add the extent to the list of extents to be free at transaction end.
4089 * The list is maintained sorted (by block number).
4094 xfs_fsblock_t bno
, /* fs block number of extent */
4095 xfs_filblks_t len
, /* length of extent */
4096 xfs_bmap_free_t
*flist
, /* list of extents */
4097 xfs_mount_t
*mp
) /* mount point structure */
4099 xfs_bmap_free_item_t
*cur
; /* current (next) element */
4100 xfs_bmap_free_item_t
*new; /* new element */
4101 xfs_bmap_free_item_t
*prev
; /* previous element */
4103 xfs_agnumber_t agno
;
4104 xfs_agblock_t agbno
;
4106 ASSERT(bno
!= NULLFSBLOCK
);
4108 ASSERT(len
<= MAXEXTLEN
);
4109 ASSERT(!ISNULLSTARTBLOCK(bno
));
4110 agno
= XFS_FSB_TO_AGNO(mp
, bno
);
4111 agbno
= XFS_FSB_TO_AGBNO(mp
, bno
);
4112 ASSERT(agno
< mp
->m_sb
.sb_agcount
);
4113 ASSERT(agbno
< mp
->m_sb
.sb_agblocks
);
4114 ASSERT(len
< mp
->m_sb
.sb_agblocks
);
4115 ASSERT(agbno
+ len
<= mp
->m_sb
.sb_agblocks
);
4117 ASSERT(xfs_bmap_free_item_zone
!= NULL
);
4118 new = kmem_zone_alloc(xfs_bmap_free_item_zone
, KM_SLEEP
);
4119 new->xbfi_startblock
= bno
;
4120 new->xbfi_blockcount
= (xfs_extlen_t
)len
;
4121 for (prev
= NULL
, cur
= flist
->xbf_first
;
4123 prev
= cur
, cur
= cur
->xbfi_next
) {
4124 if (cur
->xbfi_startblock
>= bno
)
4128 prev
->xbfi_next
= new;
4130 flist
->xbf_first
= new;
4131 new->xbfi_next
= cur
;
4136 * Compute and fill in the value of the maximum depth of a bmap btree
4137 * in this filesystem. Done once, during mount.
4140 xfs_bmap_compute_maxlevels(
4141 xfs_mount_t
*mp
, /* file system mount structure */
4142 int whichfork
) /* data or attr fork */
4144 int level
; /* btree level */
4145 uint maxblocks
; /* max blocks at this level */
4146 uint maxleafents
; /* max leaf entries possible */
4147 int maxrootrecs
; /* max records in root block */
4148 int minleafrecs
; /* min records in leaf block */
4149 int minnoderecs
; /* min records in node block */
4150 int sz
; /* root block size */
4153 * The maximum number of extents in a file, hence the maximum
4154 * number of leaf entries, is controlled by the type of di_nextents
4155 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
4156 * (a signed 16-bit number, xfs_aextnum_t).
4158 if (whichfork
== XFS_DATA_FORK
) {
4159 maxleafents
= MAXEXTNUM
;
4160 sz
= (mp
->m_flags
& XFS_MOUNT_ATTR2
) ?
4161 XFS_BMDR_SPACE_CALC(MINDBTPTRS
) : mp
->m_attroffset
;
4163 maxleafents
= MAXAEXTNUM
;
4164 sz
= (mp
->m_flags
& XFS_MOUNT_ATTR2
) ?
4165 XFS_BMDR_SPACE_CALC(MINABTPTRS
) :
4166 mp
->m_sb
.sb_inodesize
- mp
->m_attroffset
;
4168 maxrootrecs
= (int)XFS_BTREE_BLOCK_MAXRECS(sz
, xfs_bmdr
, 0);
4169 minleafrecs
= mp
->m_bmap_dmnr
[0];
4170 minnoderecs
= mp
->m_bmap_dmnr
[1];
4171 maxblocks
= (maxleafents
+ minleafrecs
- 1) / minleafrecs
;
4172 for (level
= 1; maxblocks
> 1; level
++) {
4173 if (maxblocks
<= maxrootrecs
)
4176 maxblocks
= (maxblocks
+ minnoderecs
- 1) / minnoderecs
;
4178 mp
->m_bm_maxlevels
[whichfork
] = level
;
4182 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
4183 * caller. Frees all the extents that need freeing, which must be done
4184 * last due to locking considerations. We never free any extents in
4185 * the first transaction. This is to allow the caller to make the first
4186 * transaction a synchronous one so that the pointers to the data being
4187 * broken in this transaction will be permanent before the data is actually
4188 * freed. This is necessary to prevent blocks from being reallocated
4189 * and written to before the free and reallocation are actually permanent.
4190 * We do not just make the first transaction synchronous here, because
4191 * there are more efficient ways to gain the same protection in some cases
4192 * (see the file truncation code).
4194 * Return 1 if the given transaction was committed and a new one
4195 * started, and 0 otherwise in the committed parameter.
4200 xfs_trans_t
**tp
, /* transaction pointer addr */
4201 xfs_bmap_free_t
*flist
, /* i/o: list extents to free */
4202 int *committed
) /* xact committed or not */
4204 xfs_efd_log_item_t
*efd
; /* extent free data */
4205 xfs_efi_log_item_t
*efi
; /* extent free intention */
4206 int error
; /* error return value */
4207 xfs_bmap_free_item_t
*free
; /* free extent item */
4208 unsigned int logres
; /* new log reservation */
4209 unsigned int logcount
; /* new log count */
4210 xfs_mount_t
*mp
; /* filesystem mount structure */
4211 xfs_bmap_free_item_t
*next
; /* next item on free list */
4212 xfs_trans_t
*ntp
; /* new transaction pointer */
4214 ASSERT((*tp
)->t_flags
& XFS_TRANS_PERM_LOG_RES
);
4215 if (flist
->xbf_count
== 0) {
4220 efi
= xfs_trans_get_efi(ntp
, flist
->xbf_count
);
4221 for (free
= flist
->xbf_first
; free
; free
= free
->xbfi_next
)
4222 xfs_trans_log_efi_extent(ntp
, efi
, free
->xbfi_startblock
,
4223 free
->xbfi_blockcount
);
4224 logres
= ntp
->t_log_res
;
4225 logcount
= ntp
->t_log_count
;
4226 ntp
= xfs_trans_dup(*tp
);
4227 error
= xfs_trans_commit(*tp
, 0);
4231 * We have a new transaction, so we should return committed=1,
4232 * even though we're returning an error.
4237 if ((error
= xfs_trans_reserve(ntp
, 0, logres
, 0, XFS_TRANS_PERM_LOG_RES
,
4240 efd
= xfs_trans_get_efd(ntp
, efi
, flist
->xbf_count
);
4241 for (free
= flist
->xbf_first
; free
!= NULL
; free
= next
) {
4242 next
= free
->xbfi_next
;
4243 if ((error
= xfs_free_extent(ntp
, free
->xbfi_startblock
,
4244 free
->xbfi_blockcount
))) {
4246 * The bmap free list will be cleaned up at a
4247 * higher level. The EFI will be canceled when
4248 * this transaction is aborted.
4249 * Need to force shutdown here to make sure it
4250 * happens, since this transaction may not be
4254 if (!XFS_FORCED_SHUTDOWN(mp
))
4255 xfs_force_shutdown(mp
,
4256 (error
== EFSCORRUPTED
) ?
4257 SHUTDOWN_CORRUPT_INCORE
:
4258 SHUTDOWN_META_IO_ERROR
);
4261 xfs_trans_log_efd_extent(ntp
, efd
, free
->xbfi_startblock
,
4262 free
->xbfi_blockcount
);
4263 xfs_bmap_del_free(flist
, NULL
, free
);
4269 * Free up any items left in the list.
4273 xfs_bmap_free_t
*flist
) /* list of bmap_free_items */
4275 xfs_bmap_free_item_t
*free
; /* free list item */
4276 xfs_bmap_free_item_t
*next
;
4278 if (flist
->xbf_count
== 0)
4280 ASSERT(flist
->xbf_first
!= NULL
);
4281 for (free
= flist
->xbf_first
; free
; free
= next
) {
4282 next
= free
->xbfi_next
;
4283 xfs_bmap_del_free(flist
, NULL
, free
);
4285 ASSERT(flist
->xbf_count
== 0);
4289 * Returns the file-relative block number of the first unused block(s)
4290 * in the file with at least "len" logically contiguous blocks free.
4291 * This is the lowest-address hole if the file has holes, else the first block
4292 * past the end of file.
4293 * Return 0 if the file is currently local (in-inode).
4296 xfs_bmap_first_unused(
4297 xfs_trans_t
*tp
, /* transaction pointer */
4298 xfs_inode_t
*ip
, /* incore inode */
4299 xfs_extlen_t len
, /* size of hole to find */
4300 xfs_fileoff_t
*first_unused
, /* unused block */
4301 int whichfork
) /* data or attr fork */
4303 xfs_bmbt_rec_t
*ep
; /* pointer to an extent entry */
4304 int error
; /* error return value */
4305 int idx
; /* extent record index */
4306 xfs_ifork_t
*ifp
; /* inode fork pointer */
4307 xfs_fileoff_t lastaddr
; /* last block number seen */
4308 xfs_fileoff_t lowest
; /* lowest useful block */
4309 xfs_fileoff_t max
; /* starting useful block */
4310 xfs_fileoff_t off
; /* offset for this block */
4311 xfs_extnum_t nextents
; /* number of extent entries */
4313 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
||
4314 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
||
4315 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
);
4316 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4320 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4321 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4322 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4324 lowest
= *first_unused
;
4325 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4326 for (idx
= 0, lastaddr
= 0, max
= lowest
; idx
< nextents
; idx
++) {
4327 ep
= xfs_iext_get_ext(ifp
, idx
);
4328 off
= xfs_bmbt_get_startoff(ep
);
4330 * See if the hole before this extent will work.
4332 if (off
>= lowest
+ len
&& off
- max
>= len
) {
4333 *first_unused
= max
;
4336 lastaddr
= off
+ xfs_bmbt_get_blockcount(ep
);
4337 max
= XFS_FILEOFF_MAX(lastaddr
, lowest
);
4339 *first_unused
= max
;
4344 * Returns the file-relative block number of the last block + 1 before
4345 * last_block (input value) in the file.
4346 * This is not based on i_size, it is based on the extent records.
4347 * Returns 0 for local files, as they do not have extent records.
4350 xfs_bmap_last_before(
4351 xfs_trans_t
*tp
, /* transaction pointer */
4352 xfs_inode_t
*ip
, /* incore inode */
4353 xfs_fileoff_t
*last_block
, /* last block */
4354 int whichfork
) /* data or attr fork */
4356 xfs_fileoff_t bno
; /* input file offset */
4357 int eof
; /* hit end of file */
4358 xfs_bmbt_rec_t
*ep
; /* pointer to last extent */
4359 int error
; /* error return value */
4360 xfs_bmbt_irec_t got
; /* current extent value */
4361 xfs_ifork_t
*ifp
; /* inode fork pointer */
4362 xfs_extnum_t lastx
; /* last extent used */
4363 xfs_bmbt_irec_t prev
; /* previous extent value */
4365 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
4366 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4367 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
)
4368 return XFS_ERROR(EIO
);
4369 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4373 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4374 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4375 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4377 bno
= *last_block
- 1;
4378 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
4380 if (eof
|| xfs_bmbt_get_startoff(ep
) > bno
) {
4381 if (prev
.br_startoff
== NULLFILEOFF
)
4384 *last_block
= prev
.br_startoff
+ prev
.br_blockcount
;
4387 * Otherwise *last_block is already the right answer.
4393 * Returns the file-relative block number of the first block past eof in
4394 * the file. This is not based on i_size, it is based on the extent records.
4395 * Returns 0 for local files, as they do not have extent records.
4398 xfs_bmap_last_offset(
4399 xfs_trans_t
*tp
, /* transaction pointer */
4400 xfs_inode_t
*ip
, /* incore inode */
4401 xfs_fileoff_t
*last_block
, /* last block */
4402 int whichfork
) /* data or attr fork */
4404 xfs_bmbt_rec_t
*ep
; /* pointer to last extent */
4405 int error
; /* error return value */
4406 xfs_ifork_t
*ifp
; /* inode fork pointer */
4407 xfs_extnum_t nextents
; /* number of extent entries */
4409 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
4410 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4411 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
)
4412 return XFS_ERROR(EIO
);
4413 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4417 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4418 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4419 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4421 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4426 ep
= xfs_iext_get_ext(ifp
, nextents
- 1);
4427 *last_block
= xfs_bmbt_get_startoff(ep
) + xfs_bmbt_get_blockcount(ep
);
4432 * Returns whether the selected fork of the inode has exactly one
4433 * block or not. For the data fork we check this matches di_size,
4434 * implying the file's range is 0..bsize-1.
4436 int /* 1=>1 block, 0=>otherwise */
4438 xfs_inode_t
*ip
, /* incore inode */
4439 int whichfork
) /* data or attr fork */
4441 xfs_bmbt_rec_t
*ep
; /* ptr to fork's extent */
4442 xfs_ifork_t
*ifp
; /* inode fork pointer */
4443 int rval
; /* return value */
4444 xfs_bmbt_irec_t s
; /* internal version of extent */
4447 if (whichfork
== XFS_DATA_FORK
) {
4448 return ((ip
->i_d
.di_mode
& S_IFMT
) == S_IFREG
) ?
4449 (ip
->i_size
== ip
->i_mount
->m_sb
.sb_blocksize
) :
4450 (ip
->i_d
.di_size
== ip
->i_mount
->m_sb
.sb_blocksize
);
4453 if (XFS_IFORK_NEXTENTS(ip
, whichfork
) != 1)
4455 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
4457 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4458 ASSERT(ifp
->if_flags
& XFS_IFEXTENTS
);
4459 ep
= xfs_iext_get_ext(ifp
, 0);
4460 xfs_bmbt_get_all(ep
, &s
);
4461 rval
= s
.br_startoff
== 0 && s
.br_blockcount
== 1;
4462 if (rval
&& whichfork
== XFS_DATA_FORK
)
4463 ASSERT(ip
->i_size
== ip
->i_mount
->m_sb
.sb_blocksize
);
4468 * Read in the extents to if_extents.
4469 * All inode fields are set up by caller, we just traverse the btree
4470 * and copy the records in. If the file system cannot contain unwritten
4471 * extents, the records are checked for no "state" flags.
4474 xfs_bmap_read_extents(
4475 xfs_trans_t
*tp
, /* transaction pointer */
4476 xfs_inode_t
*ip
, /* incore inode */
4477 int whichfork
) /* data or attr fork */
4479 xfs_bmbt_block_t
*block
; /* current btree block */
4480 xfs_fsblock_t bno
; /* block # of "block" */
4481 xfs_buf_t
*bp
; /* buffer for "block" */
4482 int error
; /* error return value */
4483 xfs_exntfmt_t exntf
; /* XFS_EXTFMT_NOSTATE, if checking */
4484 #ifdef XFS_BMAP_TRACE
4485 static char fname
[] = "xfs_bmap_read_extents";
4487 xfs_extnum_t i
, j
; /* index into the extents list */
4488 xfs_ifork_t
*ifp
; /* fork structure */
4489 int level
; /* btree level, for checking */
4490 xfs_mount_t
*mp
; /* file system mount structure */
4491 __be64
*pp
; /* pointer to block address */
4493 xfs_extnum_t room
; /* number of entries there's room for */
4497 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4498 exntf
= (whichfork
!= XFS_DATA_FORK
) ? XFS_EXTFMT_NOSTATE
:
4499 XFS_EXTFMT_INODE(ip
);
4500 block
= ifp
->if_broot
;
4502 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
4504 level
= be16_to_cpu(block
->bb_level
);
4506 pp
= XFS_BMAP_BROOT_PTR_ADDR(block
, 1, ifp
->if_broot_bytes
);
4507 bno
= be64_to_cpu(*pp
);
4508 ASSERT(bno
!= NULLDFSBNO
);
4509 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
4510 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
4512 * Go down the tree until leaf level is reached, following the first
4513 * pointer (leftmost) at each level.
4515 while (level
-- > 0) {
4516 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
4517 XFS_BMAP_BTREE_REF
)))
4519 block
= XFS_BUF_TO_BMBT_BLOCK(bp
);
4520 XFS_WANT_CORRUPTED_GOTO(
4521 XFS_BMAP_SANITY_CHECK(mp
, block
, level
),
4525 pp
= XFS_BTREE_PTR_ADDR(xfs_bmbt
, block
, 1, mp
->m_bmap_dmxr
[1]);
4526 bno
= be64_to_cpu(*pp
);
4527 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp
, bno
), error0
);
4528 xfs_trans_brelse(tp
, bp
);
4531 * Here with bp and block set to the leftmost leaf node in the tree.
4533 room
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4536 * Loop over all leaf nodes. Copy information to the extent records.
4539 xfs_bmbt_rec_t
*frp
, *trp
;
4540 xfs_fsblock_t nextbno
;
4541 xfs_extnum_t num_recs
;
4545 num_recs
= be16_to_cpu(block
->bb_numrecs
);
4546 if (unlikely(i
+ num_recs
> room
)) {
4547 ASSERT(i
+ num_recs
<= room
);
4548 xfs_fs_repair_cmn_err(CE_WARN
, ip
->i_mount
,
4549 "corrupt dinode %Lu, (btree extents).",
4550 (unsigned long long) ip
->i_ino
);
4551 XFS_ERROR_REPORT("xfs_bmap_read_extents(1)",
4556 XFS_WANT_CORRUPTED_GOTO(
4557 XFS_BMAP_SANITY_CHECK(mp
, block
, 0),
4560 * Read-ahead the next leaf block, if any.
4562 nextbno
= be64_to_cpu(block
->bb_rightsib
);
4563 if (nextbno
!= NULLFSBLOCK
)
4564 xfs_btree_reada_bufl(mp
, nextbno
, 1);
4566 * Copy records into the extent records.
4568 frp
= XFS_BTREE_REC_ADDR(xfs_bmbt
, block
, 1);
4570 for (j
= 0; j
< num_recs
; j
++, i
++, frp
++) {
4571 trp
= xfs_iext_get_ext(ifp
, i
);
4572 trp
->l0
= INT_GET(frp
->l0
, ARCH_CONVERT
);
4573 trp
->l1
= INT_GET(frp
->l1
, ARCH_CONVERT
);
4575 if (exntf
== XFS_EXTFMT_NOSTATE
) {
4577 * Check all attribute bmap btree records and
4578 * any "older" data bmap btree records for a
4579 * set bit in the "extent flag" position.
4581 if (unlikely(xfs_check_nostate_extents(ifp
,
4582 start
, num_recs
))) {
4583 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
4589 xfs_trans_brelse(tp
, bp
);
4592 * If we've reached the end, stop.
4594 if (bno
== NULLFSBLOCK
)
4596 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
4597 XFS_BMAP_BTREE_REF
)))
4599 block
= XFS_BUF_TO_BMBT_BLOCK(bp
);
4601 ASSERT(i
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)));
4602 ASSERT(i
== XFS_IFORK_NEXTENTS(ip
, whichfork
));
4603 xfs_bmap_trace_exlist(fname
, ip
, i
, whichfork
);
4606 xfs_trans_brelse(tp
, bp
);
4607 return XFS_ERROR(EFSCORRUPTED
);
4610 #ifdef XFS_BMAP_TRACE
4612 * Add bmap trace insert entries for all the contents of the extent records.
4615 xfs_bmap_trace_exlist(
4616 char *fname
, /* function name */
4617 xfs_inode_t
*ip
, /* incore inode pointer */
4618 xfs_extnum_t cnt
, /* count of entries in the list */
4619 int whichfork
) /* data or attr fork */
4621 xfs_bmbt_rec_t
*ep
; /* current extent record */
4622 xfs_extnum_t idx
; /* extent record index */
4623 xfs_ifork_t
*ifp
; /* inode fork pointer */
4624 xfs_bmbt_irec_t s
; /* file extent record */
4626 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4627 ASSERT(cnt
== (ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
)));
4628 for (idx
= 0; idx
< cnt
; idx
++) {
4629 ep
= xfs_iext_get_ext(ifp
, idx
);
4630 xfs_bmbt_get_all(ep
, &s
);
4631 xfs_bmap_trace_insert(fname
, "exlist", ip
, idx
, 1, &s
, NULL
,
4639 * Validate that the bmbt_irecs being returned from bmapi are valid
4640 * given the callers original parameters. Specifically check the
4641 * ranges of the returned irecs to ensure that they only extent beyond
4642 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
4645 xfs_bmap_validate_ret(
4649 xfs_bmbt_irec_t
*mval
,
4653 int i
; /* index to map values */
4655 ASSERT(ret_nmap
<= nmap
);
4657 for (i
= 0; i
< ret_nmap
; i
++) {
4658 ASSERT(mval
[i
].br_blockcount
> 0);
4659 if (!(flags
& XFS_BMAPI_ENTIRE
)) {
4660 ASSERT(mval
[i
].br_startoff
>= bno
);
4661 ASSERT(mval
[i
].br_blockcount
<= len
);
4662 ASSERT(mval
[i
].br_startoff
+ mval
[i
].br_blockcount
<=
4665 ASSERT(mval
[i
].br_startoff
< bno
+ len
);
4666 ASSERT(mval
[i
].br_startoff
+ mval
[i
].br_blockcount
>
4670 mval
[i
- 1].br_startoff
+ mval
[i
- 1].br_blockcount
==
4671 mval
[i
].br_startoff
);
4672 if ((flags
& XFS_BMAPI_WRITE
) && !(flags
& XFS_BMAPI_DELAY
))
4673 ASSERT(mval
[i
].br_startblock
!= DELAYSTARTBLOCK
&&
4674 mval
[i
].br_startblock
!= HOLESTARTBLOCK
);
4675 ASSERT(mval
[i
].br_state
== XFS_EXT_NORM
||
4676 mval
[i
].br_state
== XFS_EXT_UNWRITTEN
);
4683 * Map file blocks to filesystem blocks.
4684 * File range is given by the bno/len pair.
4685 * Adds blocks to file if a write ("flags & XFS_BMAPI_WRITE" set)
4686 * into a hole or past eof.
4687 * Only allocates blocks from a single allocation group,
4688 * to avoid locking problems.
4689 * The returned value in "firstblock" from the first call in a transaction
4690 * must be remembered and presented to subsequent calls in "firstblock".
4691 * An upper bound for the number of blocks to be allocated is supplied to
4692 * the first call in "total"; if no allocation group has that many free
4693 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4697 xfs_trans_t
*tp
, /* transaction pointer */
4698 xfs_inode_t
*ip
, /* incore inode */
4699 xfs_fileoff_t bno
, /* starting file offs. mapped */
4700 xfs_filblks_t len
, /* length to map in file */
4701 int flags
, /* XFS_BMAPI_... */
4702 xfs_fsblock_t
*firstblock
, /* first allocated block
4703 controls a.g. for allocs */
4704 xfs_extlen_t total
, /* total blocks needed */
4705 xfs_bmbt_irec_t
*mval
, /* output: map values */
4706 int *nmap
, /* i/o: mval size/count */
4707 xfs_bmap_free_t
*flist
, /* i/o: list extents to free */
4708 xfs_extdelta_t
*delta
) /* o: change made to incore extents */
4710 xfs_fsblock_t abno
; /* allocated block number */
4711 xfs_extlen_t alen
; /* allocated extent length */
4712 xfs_fileoff_t aoff
; /* allocated file offset */
4713 xfs_bmalloca_t bma
; /* args for xfs_bmap_alloc */
4714 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
4715 xfs_fileoff_t end
; /* end of mapped file region */
4716 int eof
; /* we've hit the end of extents */
4717 xfs_bmbt_rec_t
*ep
; /* extent record pointer */
4718 int error
; /* error return */
4719 xfs_bmbt_irec_t got
; /* current file extent record */
4720 xfs_ifork_t
*ifp
; /* inode fork pointer */
4721 xfs_extlen_t indlen
; /* indirect blocks length */
4722 xfs_extnum_t lastx
; /* last useful extent number */
4723 int logflags
; /* flags for transaction logging */
4724 xfs_extlen_t minleft
; /* min blocks left after allocation */
4725 xfs_extlen_t minlen
; /* min allocation size */
4726 xfs_mount_t
*mp
; /* xfs mount structure */
4727 int n
; /* current extent index */
4728 int nallocs
; /* number of extents alloc\'d */
4729 xfs_extnum_t nextents
; /* number of extents in file */
4730 xfs_fileoff_t obno
; /* old block number (offset) */
4731 xfs_bmbt_irec_t prev
; /* previous file extent record */
4732 int tmp_logflags
; /* temp flags holder */
4733 int whichfork
; /* data or attr fork */
4734 char inhole
; /* current location is hole in file */
4735 char wasdelay
; /* old extent was delayed */
4736 char wr
; /* this is a write request */
4737 char rt
; /* this is a realtime file */
4739 xfs_fileoff_t orig_bno
; /* original block number value */
4740 int orig_flags
; /* original flags arg value */
4741 xfs_filblks_t orig_len
; /* original value of len arg */
4742 xfs_bmbt_irec_t
*orig_mval
; /* original value of mval */
4743 int orig_nmap
; /* original value of *nmap */
4752 ASSERT(*nmap
<= XFS_BMAP_MAX_NMAP
|| !(flags
& XFS_BMAPI_WRITE
));
4753 whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
4754 XFS_ATTR_FORK
: XFS_DATA_FORK
;
4756 if (unlikely(XFS_TEST_ERROR(
4757 (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
4758 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
4759 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_LOCAL
),
4760 mp
, XFS_ERRTAG_BMAPIFORMAT
, XFS_RANDOM_BMAPIFORMAT
))) {
4761 XFS_ERROR_REPORT("xfs_bmapi", XFS_ERRLEVEL_LOW
, mp
);
4762 return XFS_ERROR(EFSCORRUPTED
);
4764 if (XFS_FORCED_SHUTDOWN(mp
))
4765 return XFS_ERROR(EIO
);
4766 rt
= (whichfork
== XFS_DATA_FORK
) && XFS_IS_REALTIME_INODE(ip
);
4767 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
4768 ASSERT(ifp
->if_ext_max
==
4769 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
4770 if ((wr
= (flags
& XFS_BMAPI_WRITE
)) != 0)
4771 XFS_STATS_INC(xs_blk_mapw
);
4773 XFS_STATS_INC(xs_blk_mapr
);
4775 * IGSTATE flag is used to combine extents which
4776 * differ only due to the state of the extents.
4777 * This technique is used from xfs_getbmap()
4778 * when the caller does not wish to see the
4779 * separation (which is the default).
4781 * This technique is also used when writing a
4782 * buffer which has been partially written,
4783 * (usually by being flushed during a chunkread),
4784 * to ensure one write takes place. This also
4785 * prevents a change in the xfs inode extents at
4786 * this time, intentionally. This change occurs
4787 * on completion of the write operation, in
4788 * xfs_strat_comp(), where the xfs_bmapi() call
4789 * is transactioned, and the extents combined.
4791 if ((flags
& XFS_BMAPI_IGSTATE
) && wr
) /* if writing unwritten space */
4792 wr
= 0; /* no allocations are allowed */
4793 ASSERT(wr
|| !(flags
& XFS_BMAPI_DELAY
));
4797 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_LOCAL
) {
4799 if ((error
= xfs_bmap_local_to_extents(tp
, ip
,
4800 firstblock
, total
, &logflags
, whichfork
)))
4803 if (wr
&& *firstblock
== NULLFSBLOCK
) {
4804 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
)
4805 minleft
= be16_to_cpu(ifp
->if_broot
->bb_level
) + 1;
4810 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
4811 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
4813 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
4815 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
4821 delta
->xed_startoff
= NULLFILEOFF
;
4822 delta
->xed_blockcount
= 0;
4824 while (bno
< end
&& n
< *nmap
) {
4826 * Reading past eof, act as though there's a hole
4830 got
.br_startoff
= end
;
4831 inhole
= eof
|| got
.br_startoff
> bno
;
4832 wasdelay
= wr
&& !inhole
&& !(flags
& XFS_BMAPI_DELAY
) &&
4833 ISNULLSTARTBLOCK(got
.br_startblock
);
4835 * First, deal with the hole before the allocated space
4836 * that we found, if any.
4838 if (wr
&& (inhole
|| wasdelay
)) {
4840 * For the wasdelay case, we could also just
4841 * allocate the stuff asked for in this bmap call
4842 * but that wouldn't be as good.
4844 if (wasdelay
&& !(flags
& XFS_BMAPI_EXACT
)) {
4845 alen
= (xfs_extlen_t
)got
.br_blockcount
;
4846 aoff
= got
.br_startoff
;
4847 if (lastx
!= NULLEXTNUM
&& lastx
) {
4848 ep
= xfs_iext_get_ext(ifp
, lastx
- 1);
4849 xfs_bmbt_get_all(ep
, &prev
);
4851 } else if (wasdelay
) {
4852 alen
= (xfs_extlen_t
)
4853 XFS_FILBLKS_MIN(len
,
4855 got
.br_blockcount
) - bno
);
4858 alen
= (xfs_extlen_t
)
4859 XFS_FILBLKS_MIN(len
, MAXEXTLEN
);
4861 alen
= (xfs_extlen_t
)
4862 XFS_FILBLKS_MIN(alen
,
4863 got
.br_startoff
- bno
);
4866 minlen
= (flags
& XFS_BMAPI_CONTIG
) ? alen
: 1;
4867 if (flags
& XFS_BMAPI_DELAY
) {
4870 /* Figure out the extent size, adjust alen */
4872 if (!(extsz
= ip
->i_d
.di_extsize
))
4873 extsz
= mp
->m_sb
.sb_rextsize
;
4875 extsz
= ip
->i_d
.di_extsize
;
4878 error
= xfs_bmap_extsize_align(mp
,
4881 flags
&XFS_BMAPI_DELAY
,
4882 flags
&XFS_BMAPI_CONVERT
,
4888 extsz
= alen
/ mp
->m_sb
.sb_rextsize
;
4891 * Make a transaction-less quota reservation for
4892 * delayed allocation blocks. This number gets
4893 * adjusted later. We return if we haven't
4894 * allocated blocks already inside this loop.
4896 if ((error
= XFS_TRANS_RESERVE_QUOTA_NBLKS(
4897 mp
, NULL
, ip
, (long)alen
, 0,
4898 rt
? XFS_QMOPT_RES_RTBLKS
:
4899 XFS_QMOPT_RES_REGBLKS
))) {
4902 ASSERT(cur
== NULL
);
4909 * Split changing sb for alen and indlen since
4910 * they could be coming from different places.
4912 indlen
= (xfs_extlen_t
)
4913 xfs_bmap_worst_indlen(ip
, alen
);
4917 error
= xfs_mod_incore_sb(mp
,
4919 -((int64_t)extsz
), (flags
&
4920 XFS_BMAPI_RSVBLOCKS
));
4922 error
= xfs_mod_incore_sb(mp
,
4924 -((int64_t)alen
), (flags
&
4925 XFS_BMAPI_RSVBLOCKS
));
4928 error
= xfs_mod_incore_sb(mp
,
4930 -((int64_t)indlen
), (flags
&
4931 XFS_BMAPI_RSVBLOCKS
));
4933 xfs_mod_incore_sb(mp
,
4935 (int64_t)extsz
, (flags
&
4936 XFS_BMAPI_RSVBLOCKS
));
4938 xfs_mod_incore_sb(mp
,
4940 (int64_t)alen
, (flags
&
4941 XFS_BMAPI_RSVBLOCKS
));
4945 if (XFS_IS_QUOTA_ON(mp
))
4946 /* unreserve the blocks now */
4948 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(
4951 XFS_QMOPT_RES_RTBLKS
:
4952 XFS_QMOPT_RES_REGBLKS
);
4956 ip
->i_delayed_blks
+= alen
;
4957 abno
= NULLSTARTBLOCK(indlen
);
4960 * If first time, allocate and fill in
4961 * once-only bma fields.
4963 if (bma
.ip
== NULL
) {
4971 /* Indicate if this is the first user data
4972 * in the file, or just any user data.
4974 if (!(flags
& XFS_BMAPI_METADATA
)) {
4975 bma
.userdata
= (aoff
== 0) ?
4976 XFS_ALLOC_INITIAL_USER_DATA
:
4980 * Fill in changeable bma fields.
4983 bma
.firstblock
= *firstblock
;
4986 bma
.conv
= !!(flags
& XFS_BMAPI_CONVERT
);
4987 bma
.wasdel
= wasdelay
;
4988 bma
.minlen
= minlen
;
4989 bma
.low
= flist
->xbf_low
;
4990 bma
.minleft
= minleft
;
4992 * Only want to do the alignment at the
4993 * eof if it is userdata and allocation length
4994 * is larger than a stripe unit.
4996 if (mp
->m_dalign
&& alen
>= mp
->m_dalign
&&
4997 (!(flags
& XFS_BMAPI_METADATA
)) &&
4998 (whichfork
== XFS_DATA_FORK
)) {
4999 if ((error
= xfs_bmap_isaeof(ip
, aoff
,
5000 whichfork
, &bma
.aeof
)))
5007 if ((error
= xfs_bmap_alloc(&bma
)))
5010 * Copy out result fields.
5013 if ((flist
->xbf_low
= bma
.low
))
5017 ASSERT(*firstblock
== NULLFSBLOCK
||
5018 XFS_FSB_TO_AGNO(mp
, *firstblock
) ==
5019 XFS_FSB_TO_AGNO(mp
, bma
.firstblock
) ||
5021 XFS_FSB_TO_AGNO(mp
, *firstblock
) <
5022 XFS_FSB_TO_AGNO(mp
, bma
.firstblock
)));
5023 *firstblock
= bma
.firstblock
;
5025 cur
->bc_private
.b
.firstblock
=
5027 if (abno
== NULLFSBLOCK
)
5029 if ((ifp
->if_flags
& XFS_IFBROOT
) && !cur
) {
5030 cur
= xfs_btree_init_cursor(mp
,
5031 tp
, NULL
, 0, XFS_BTNUM_BMAP
,
5033 cur
->bc_private
.b
.firstblock
=
5035 cur
->bc_private
.b
.flist
= flist
;
5038 * Bump the number of extents we've allocated
5044 cur
->bc_private
.b
.flags
=
5045 wasdelay
? XFS_BTCUR_BPRV_WASDEL
: 0;
5046 got
.br_startoff
= aoff
;
5047 got
.br_startblock
= abno
;
5048 got
.br_blockcount
= alen
;
5049 got
.br_state
= XFS_EXT_NORM
; /* assume normal */
5051 * Determine state of extent, and the filesystem.
5052 * A wasdelay extent has been initialized, so
5053 * shouldn't be flagged as unwritten.
5055 if (wr
&& XFS_SB_VERSION_HASEXTFLGBIT(&mp
->m_sb
)) {
5056 if (!wasdelay
&& (flags
& XFS_BMAPI_PREALLOC
))
5057 got
.br_state
= XFS_EXT_UNWRITTEN
;
5059 error
= xfs_bmap_add_extent(ip
, lastx
, &cur
, &got
,
5060 firstblock
, flist
, &tmp_logflags
, delta
,
5061 whichfork
, (flags
& XFS_BMAPI_RSVBLOCKS
));
5062 logflags
|= tmp_logflags
;
5065 lastx
= ifp
->if_lastex
;
5066 ep
= xfs_iext_get_ext(ifp
, lastx
);
5067 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5068 xfs_bmbt_get_all(ep
, &got
);
5069 ASSERT(got
.br_startoff
<= aoff
);
5070 ASSERT(got
.br_startoff
+ got
.br_blockcount
>=
5073 if (flags
& XFS_BMAPI_DELAY
) {
5074 ASSERT(ISNULLSTARTBLOCK(got
.br_startblock
));
5075 ASSERT(STARTBLOCKVAL(got
.br_startblock
) > 0);
5077 ASSERT(got
.br_state
== XFS_EXT_NORM
||
5078 got
.br_state
== XFS_EXT_UNWRITTEN
);
5081 * Fall down into the found allocated space case.
5083 } else if (inhole
) {
5085 * Reading in a hole.
5087 mval
->br_startoff
= bno
;
5088 mval
->br_startblock
= HOLESTARTBLOCK
;
5089 mval
->br_blockcount
=
5090 XFS_FILBLKS_MIN(len
, got
.br_startoff
- bno
);
5091 mval
->br_state
= XFS_EXT_NORM
;
5092 bno
+= mval
->br_blockcount
;
5093 len
-= mval
->br_blockcount
;
5099 * Then deal with the allocated space we found.
5102 if (!(flags
& XFS_BMAPI_ENTIRE
) &&
5103 (got
.br_startoff
+ got
.br_blockcount
> obno
)) {
5106 ASSERT((bno
>= obno
) || (n
== 0));
5108 mval
->br_startoff
= bno
;
5109 if (ISNULLSTARTBLOCK(got
.br_startblock
)) {
5110 ASSERT(!wr
|| (flags
& XFS_BMAPI_DELAY
));
5111 mval
->br_startblock
= DELAYSTARTBLOCK
;
5113 mval
->br_startblock
=
5115 (bno
- got
.br_startoff
);
5117 * Return the minimum of what we got and what we
5118 * asked for for the length. We can use the len
5119 * variable here because it is modified below
5120 * and we could have been there before coming
5121 * here if the first part of the allocation
5122 * didn't overlap what was asked for.
5124 mval
->br_blockcount
=
5125 XFS_FILBLKS_MIN(end
- bno
, got
.br_blockcount
-
5126 (bno
- got
.br_startoff
));
5127 mval
->br_state
= got
.br_state
;
5128 ASSERT(mval
->br_blockcount
<= len
);
5131 if (ISNULLSTARTBLOCK(mval
->br_startblock
)) {
5132 ASSERT(!wr
|| (flags
& XFS_BMAPI_DELAY
));
5133 mval
->br_startblock
= DELAYSTARTBLOCK
;
5138 * Check if writing previously allocated but
5139 * unwritten extents.
5141 if (wr
&& mval
->br_state
== XFS_EXT_UNWRITTEN
&&
5142 ((flags
& (XFS_BMAPI_PREALLOC
|XFS_BMAPI_DELAY
)) == 0)) {
5144 * Modify (by adding) the state flag, if writing.
5146 ASSERT(mval
->br_blockcount
<= len
);
5147 if ((ifp
->if_flags
& XFS_IFBROOT
) && !cur
) {
5148 cur
= xfs_btree_init_cursor(mp
,
5149 tp
, NULL
, 0, XFS_BTNUM_BMAP
,
5151 cur
->bc_private
.b
.firstblock
=
5153 cur
->bc_private
.b
.flist
= flist
;
5155 mval
->br_state
= XFS_EXT_NORM
;
5156 error
= xfs_bmap_add_extent(ip
, lastx
, &cur
, mval
,
5157 firstblock
, flist
, &tmp_logflags
, delta
,
5158 whichfork
, (flags
& XFS_BMAPI_RSVBLOCKS
));
5159 logflags
|= tmp_logflags
;
5162 lastx
= ifp
->if_lastex
;
5163 ep
= xfs_iext_get_ext(ifp
, lastx
);
5164 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5165 xfs_bmbt_get_all(ep
, &got
);
5167 * We may have combined previously unwritten
5168 * space with written space, so generate
5171 if (mval
->br_blockcount
< len
)
5175 ASSERT((flags
& XFS_BMAPI_ENTIRE
) ||
5176 ((mval
->br_startoff
+ mval
->br_blockcount
) <= end
));
5177 ASSERT((flags
& XFS_BMAPI_ENTIRE
) ||
5178 (mval
->br_blockcount
<= len
) ||
5179 (mval
->br_startoff
< obno
));
5180 bno
= mval
->br_startoff
+ mval
->br_blockcount
;
5182 if (n
> 0 && mval
->br_startoff
== mval
[-1].br_startoff
) {
5183 ASSERT(mval
->br_startblock
== mval
[-1].br_startblock
);
5184 ASSERT(mval
->br_blockcount
> mval
[-1].br_blockcount
);
5185 ASSERT(mval
->br_state
== mval
[-1].br_state
);
5186 mval
[-1].br_blockcount
= mval
->br_blockcount
;
5187 mval
[-1].br_state
= mval
->br_state
;
5188 } else if (n
> 0 && mval
->br_startblock
!= DELAYSTARTBLOCK
&&
5189 mval
[-1].br_startblock
!= DELAYSTARTBLOCK
&&
5190 mval
[-1].br_startblock
!= HOLESTARTBLOCK
&&
5191 mval
->br_startblock
==
5192 mval
[-1].br_startblock
+ mval
[-1].br_blockcount
&&
5193 ((flags
& XFS_BMAPI_IGSTATE
) ||
5194 mval
[-1].br_state
== mval
->br_state
)) {
5195 ASSERT(mval
->br_startoff
==
5196 mval
[-1].br_startoff
+ mval
[-1].br_blockcount
);
5197 mval
[-1].br_blockcount
+= mval
->br_blockcount
;
5199 mval
->br_startblock
== DELAYSTARTBLOCK
&&
5200 mval
[-1].br_startblock
== DELAYSTARTBLOCK
&&
5201 mval
->br_startoff
==
5202 mval
[-1].br_startoff
+ mval
[-1].br_blockcount
) {
5203 mval
[-1].br_blockcount
+= mval
->br_blockcount
;
5204 mval
[-1].br_state
= mval
->br_state
;
5205 } else if (!((n
== 0) &&
5206 ((mval
->br_startoff
+ mval
->br_blockcount
) <=
5212 * If we're done, stop now. Stop when we've allocated
5213 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
5214 * the transaction may get too big.
5216 if (bno
>= end
|| n
>= *nmap
|| nallocs
>= *nmap
)
5219 * Else go on to the next record.
5221 ep
= xfs_iext_get_ext(ifp
, ++lastx
);
5222 if (lastx
>= nextents
) {
5226 xfs_bmbt_get_all(ep
, &got
);
5228 ifp
->if_lastex
= lastx
;
5231 * Transform from btree to extents, give it cur.
5233 if (tp
&& XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
&&
5234 XFS_IFORK_NEXTENTS(ip
, whichfork
) <= ifp
->if_ext_max
) {
5236 error
= xfs_bmap_btree_to_extents(tp
, ip
, cur
,
5237 &tmp_logflags
, whichfork
);
5238 logflags
|= tmp_logflags
;
5242 ASSERT(ifp
->if_ext_max
==
5243 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5244 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
||
5245 XFS_IFORK_NEXTENTS(ip
, whichfork
) > ifp
->if_ext_max
);
5247 if (delta
&& delta
->xed_startoff
!= NULLFILEOFF
) {
5248 /* A change was actually made.
5249 * Note that delta->xed_blockount is an offset at this
5250 * point and needs to be converted to a block count.
5252 ASSERT(delta
->xed_blockcount
> delta
->xed_startoff
);
5253 delta
->xed_blockcount
-= delta
->xed_startoff
;
5257 * Log everything. Do this after conversion, there's no point in
5258 * logging the extent records if we've converted to btree format.
5260 if ((logflags
& XFS_ILOG_FEXT(whichfork
)) &&
5261 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
5262 logflags
&= ~XFS_ILOG_FEXT(whichfork
);
5263 else if ((logflags
& XFS_ILOG_FBROOT(whichfork
)) &&
5264 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)
5265 logflags
&= ~XFS_ILOG_FBROOT(whichfork
);
5267 * Log whatever the flags say, even if error. Otherwise we might miss
5268 * detecting a case where the data is changed, there's an error,
5269 * and it's not logged so we don't shutdown when we should.
5273 xfs_trans_log_inode(tp
, ip
, logflags
);
5277 ASSERT(*firstblock
== NULLFSBLOCK
||
5278 XFS_FSB_TO_AGNO(mp
, *firstblock
) ==
5280 cur
->bc_private
.b
.firstblock
) ||
5282 XFS_FSB_TO_AGNO(mp
, *firstblock
) <
5284 cur
->bc_private
.b
.firstblock
)));
5285 *firstblock
= cur
->bc_private
.b
.firstblock
;
5287 xfs_btree_del_cursor(cur
,
5288 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
5291 xfs_bmap_validate_ret(orig_bno
, orig_len
, orig_flags
, orig_mval
,
5297 * Map file blocks to filesystem blocks, simple version.
5298 * One block (extent) only, read-only.
5299 * For flags, only the XFS_BMAPI_ATTRFORK flag is examined.
5300 * For the other flag values, the effect is as if XFS_BMAPI_METADATA
5301 * was set and all the others were clear.
5305 xfs_trans_t
*tp
, /* transaction pointer */
5306 xfs_inode_t
*ip
, /* incore inode */
5307 int whichfork
, /* data or attr fork */
5308 xfs_fsblock_t
*fsb
, /* output: mapped block */
5309 xfs_fileoff_t bno
) /* starting file offs. mapped */
5311 int eof
; /* we've hit the end of extents */
5312 int error
; /* error return */
5313 xfs_bmbt_irec_t got
; /* current file extent record */
5314 xfs_ifork_t
*ifp
; /* inode fork pointer */
5315 xfs_extnum_t lastx
; /* last useful extent number */
5316 xfs_bmbt_irec_t prev
; /* previous file extent record */
5318 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5320 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
&&
5321 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)) {
5322 XFS_ERROR_REPORT("xfs_bmapi_single", XFS_ERRLEVEL_LOW
,
5324 return XFS_ERROR(EFSCORRUPTED
);
5326 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
5327 return XFS_ERROR(EIO
);
5328 XFS_STATS_INC(xs_blk_mapr
);
5329 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5330 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
5332 (void)xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
5335 * Reading past eof, act as though there's a hole
5338 if (eof
|| got
.br_startoff
> bno
) {
5342 ASSERT(!ISNULLSTARTBLOCK(got
.br_startblock
));
5343 ASSERT(bno
< got
.br_startoff
+ got
.br_blockcount
);
5344 *fsb
= got
.br_startblock
+ (bno
- got
.br_startoff
);
5345 ifp
->if_lastex
= lastx
;
5350 * Unmap (remove) blocks from a file.
5351 * If nexts is nonzero then the number of extents to remove is limited to
5352 * that value. If not all extents in the block range can be removed then
5357 xfs_trans_t
*tp
, /* transaction pointer */
5358 struct xfs_inode
*ip
, /* incore inode */
5359 xfs_fileoff_t bno
, /* starting offset to unmap */
5360 xfs_filblks_t len
, /* length to unmap in file */
5361 int flags
, /* misc flags */
5362 xfs_extnum_t nexts
, /* number of extents max */
5363 xfs_fsblock_t
*firstblock
, /* first allocated block
5364 controls a.g. for allocs */
5365 xfs_bmap_free_t
*flist
, /* i/o: list extents to free */
5366 xfs_extdelta_t
*delta
, /* o: change made to incore
5368 int *done
) /* set if not done yet */
5370 xfs_btree_cur_t
*cur
; /* bmap btree cursor */
5371 xfs_bmbt_irec_t del
; /* extent being deleted */
5372 int eof
; /* is deleting at eof */
5373 xfs_bmbt_rec_t
*ep
; /* extent record pointer */
5374 int error
; /* error return value */
5375 xfs_extnum_t extno
; /* extent number in list */
5376 xfs_bmbt_irec_t got
; /* current extent record */
5377 xfs_ifork_t
*ifp
; /* inode fork pointer */
5378 int isrt
; /* freeing in rt area */
5379 xfs_extnum_t lastx
; /* last extent index used */
5380 int logflags
; /* transaction logging flags */
5381 xfs_extlen_t mod
; /* rt extent offset */
5382 xfs_mount_t
*mp
; /* mount structure */
5383 xfs_extnum_t nextents
; /* number of file extents */
5384 xfs_bmbt_irec_t prev
; /* previous extent record */
5385 xfs_fileoff_t start
; /* first file offset deleted */
5386 int tmp_logflags
; /* partial logging flags */
5387 int wasdel
; /* was a delayed alloc extent */
5388 int whichfork
; /* data or attribute fork */
5389 int rsvd
; /* OK to allocate reserved blocks */
5392 xfs_bunmap_trace(ip
, bno
, len
, flags
, (inst_t
*)__return_address
);
5393 whichfork
= (flags
& XFS_BMAPI_ATTRFORK
) ?
5394 XFS_ATTR_FORK
: XFS_DATA_FORK
;
5395 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5397 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
&&
5398 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)) {
5399 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW
,
5401 return XFS_ERROR(EFSCORRUPTED
);
5404 if (XFS_FORCED_SHUTDOWN(mp
))
5405 return XFS_ERROR(EIO
);
5406 rsvd
= (flags
& XFS_BMAPI_RSVBLOCKS
) != 0;
5409 ASSERT(ifp
->if_ext_max
==
5410 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5411 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5412 (error
= xfs_iread_extents(tp
, ip
, whichfork
)))
5414 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5415 if (nextents
== 0) {
5419 XFS_STATS_INC(xs_blk_unmap
);
5420 isrt
= (whichfork
== XFS_DATA_FORK
) && XFS_IS_REALTIME_INODE(ip
);
5422 bno
= start
+ len
- 1;
5423 ep
= xfs_bmap_search_extents(ip
, bno
, whichfork
, &eof
, &lastx
, &got
,
5426 delta
->xed_startoff
= NULLFILEOFF
;
5427 delta
->xed_blockcount
= 0;
5430 * Check to see if the given block number is past the end of the
5431 * file, back up to the last block if so...
5434 ep
= xfs_iext_get_ext(ifp
, --lastx
);
5435 xfs_bmbt_get_all(ep
, &got
);
5436 bno
= got
.br_startoff
+ got
.br_blockcount
- 1;
5439 if (ifp
->if_flags
& XFS_IFBROOT
) {
5440 ASSERT(XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
);
5441 cur
= xfs_btree_init_cursor(mp
, tp
, NULL
, 0, XFS_BTNUM_BMAP
, ip
,
5443 cur
->bc_private
.b
.firstblock
= *firstblock
;
5444 cur
->bc_private
.b
.flist
= flist
;
5445 cur
->bc_private
.b
.flags
= 0;
5449 while (bno
!= (xfs_fileoff_t
)-1 && bno
>= start
&& lastx
>= 0 &&
5450 (nexts
== 0 || extno
< nexts
)) {
5452 * Is the found extent after a hole in which bno lives?
5453 * Just back up to the previous extent, if so.
5455 if (got
.br_startoff
> bno
) {
5458 ep
= xfs_iext_get_ext(ifp
, lastx
);
5459 xfs_bmbt_get_all(ep
, &got
);
5462 * Is the last block of this extent before the range
5463 * we're supposed to delete? If so, we're done.
5465 bno
= XFS_FILEOFF_MIN(bno
,
5466 got
.br_startoff
+ got
.br_blockcount
- 1);
5470 * Then deal with the (possibly delayed) allocated space
5475 wasdel
= ISNULLSTARTBLOCK(del
.br_startblock
);
5476 if (got
.br_startoff
< start
) {
5477 del
.br_startoff
= start
;
5478 del
.br_blockcount
-= start
- got
.br_startoff
;
5480 del
.br_startblock
+= start
- got
.br_startoff
;
5482 if (del
.br_startoff
+ del
.br_blockcount
> bno
+ 1)
5483 del
.br_blockcount
= bno
+ 1 - del
.br_startoff
;
5484 sum
= del
.br_startblock
+ del
.br_blockcount
;
5486 (mod
= do_mod(sum
, mp
->m_sb
.sb_rextsize
))) {
5488 * Realtime extent not lined up at the end.
5489 * The extent could have been split into written
5490 * and unwritten pieces, or we could just be
5491 * unmapping part of it. But we can't really
5492 * get rid of part of a realtime extent.
5494 if (del
.br_state
== XFS_EXT_UNWRITTEN
||
5495 !XFS_SB_VERSION_HASEXTFLGBIT(&mp
->m_sb
)) {
5497 * This piece is unwritten, or we're not
5498 * using unwritten extents. Skip over it.
5501 bno
-= mod
> del
.br_blockcount
?
5502 del
.br_blockcount
: mod
;
5503 if (bno
< got
.br_startoff
) {
5505 xfs_bmbt_get_all(xfs_iext_get_ext(
5511 * It's written, turn it unwritten.
5512 * This is better than zeroing it.
5514 ASSERT(del
.br_state
== XFS_EXT_NORM
);
5515 ASSERT(xfs_trans_get_block_res(tp
) > 0);
5517 * If this spans a realtime extent boundary,
5518 * chop it back to the start of the one we end at.
5520 if (del
.br_blockcount
> mod
) {
5521 del
.br_startoff
+= del
.br_blockcount
- mod
;
5522 del
.br_startblock
+= del
.br_blockcount
- mod
;
5523 del
.br_blockcount
= mod
;
5525 del
.br_state
= XFS_EXT_UNWRITTEN
;
5526 error
= xfs_bmap_add_extent(ip
, lastx
, &cur
, &del
,
5527 firstblock
, flist
, &logflags
, delta
,
5533 if (isrt
&& (mod
= do_mod(del
.br_startblock
, mp
->m_sb
.sb_rextsize
))) {
5535 * Realtime extent is lined up at the end but not
5536 * at the front. We'll get rid of full extents if
5539 mod
= mp
->m_sb
.sb_rextsize
- mod
;
5540 if (del
.br_blockcount
> mod
) {
5541 del
.br_blockcount
-= mod
;
5542 del
.br_startoff
+= mod
;
5543 del
.br_startblock
+= mod
;
5544 } else if ((del
.br_startoff
== start
&&
5545 (del
.br_state
== XFS_EXT_UNWRITTEN
||
5546 xfs_trans_get_block_res(tp
) == 0)) ||
5547 !XFS_SB_VERSION_HASEXTFLGBIT(&mp
->m_sb
)) {
5549 * Can't make it unwritten. There isn't
5550 * a full extent here so just skip it.
5552 ASSERT(bno
>= del
.br_blockcount
);
5553 bno
-= del
.br_blockcount
;
5554 if (bno
< got
.br_startoff
) {
5556 xfs_bmbt_get_all(--ep
, &got
);
5559 } else if (del
.br_state
== XFS_EXT_UNWRITTEN
) {
5561 * This one is already unwritten.
5562 * It must have a written left neighbor.
5563 * Unwrite the killed part of that one and
5567 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
,
5569 ASSERT(prev
.br_state
== XFS_EXT_NORM
);
5570 ASSERT(!ISNULLSTARTBLOCK(prev
.br_startblock
));
5571 ASSERT(del
.br_startblock
==
5572 prev
.br_startblock
+ prev
.br_blockcount
);
5573 if (prev
.br_startoff
< start
) {
5574 mod
= start
- prev
.br_startoff
;
5575 prev
.br_blockcount
-= mod
;
5576 prev
.br_startblock
+= mod
;
5577 prev
.br_startoff
= start
;
5579 prev
.br_state
= XFS_EXT_UNWRITTEN
;
5580 error
= xfs_bmap_add_extent(ip
, lastx
- 1, &cur
,
5581 &prev
, firstblock
, flist
, &logflags
,
5582 delta
, XFS_DATA_FORK
, 0);
5587 ASSERT(del
.br_state
== XFS_EXT_NORM
);
5588 del
.br_state
= XFS_EXT_UNWRITTEN
;
5589 error
= xfs_bmap_add_extent(ip
, lastx
, &cur
,
5590 &del
, firstblock
, flist
, &logflags
,
5591 delta
, XFS_DATA_FORK
, 0);
5598 ASSERT(STARTBLOCKVAL(del
.br_startblock
) > 0);
5599 /* Update realtime/data freespace, unreserve quota */
5601 xfs_filblks_t rtexts
;
5603 rtexts
= XFS_FSB_TO_B(mp
, del
.br_blockcount
);
5604 do_div(rtexts
, mp
->m_sb
.sb_rextsize
);
5605 xfs_mod_incore_sb(mp
, XFS_SBS_FREXTENTS
,
5606 (int64_t)rtexts
, rsvd
);
5607 (void)XFS_TRANS_RESERVE_QUOTA_NBLKS(mp
,
5608 NULL
, ip
, -((long)del
.br_blockcount
), 0,
5609 XFS_QMOPT_RES_RTBLKS
);
5611 xfs_mod_incore_sb(mp
, XFS_SBS_FDBLOCKS
,
5612 (int64_t)del
.br_blockcount
, rsvd
);
5613 (void)XFS_TRANS_RESERVE_QUOTA_NBLKS(mp
,
5614 NULL
, ip
, -((long)del
.br_blockcount
), 0,
5615 XFS_QMOPT_RES_REGBLKS
);
5617 ip
->i_delayed_blks
-= del
.br_blockcount
;
5619 cur
->bc_private
.b
.flags
|=
5620 XFS_BTCUR_BPRV_WASDEL
;
5622 cur
->bc_private
.b
.flags
&= ~XFS_BTCUR_BPRV_WASDEL
;
5624 * If it's the case where the directory code is running
5625 * with no block reservation, and the deleted block is in
5626 * the middle of its extent, and the resulting insert
5627 * of an extent would cause transformation to btree format,
5628 * then reject it. The calling code will then swap
5629 * blocks around instead.
5630 * We have to do this now, rather than waiting for the
5631 * conversion to btree format, since the transaction
5634 if (!wasdel
&& xfs_trans_get_block_res(tp
) == 0 &&
5635 XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
5636 XFS_IFORK_NEXTENTS(ip
, whichfork
) >= ifp
->if_ext_max
&&
5637 del
.br_startoff
> got
.br_startoff
&&
5638 del
.br_startoff
+ del
.br_blockcount
<
5639 got
.br_startoff
+ got
.br_blockcount
) {
5640 error
= XFS_ERROR(ENOSPC
);
5643 error
= xfs_bmap_del_extent(ip
, tp
, lastx
, flist
, cur
, &del
,
5644 &tmp_logflags
, delta
, whichfork
, rsvd
);
5645 logflags
|= tmp_logflags
;
5648 bno
= del
.br_startoff
- 1;
5650 lastx
= ifp
->if_lastex
;
5652 * If not done go on to the next (previous) record.
5653 * Reset ep in case the extents array was re-alloced.
5655 ep
= xfs_iext_get_ext(ifp
, lastx
);
5656 if (bno
!= (xfs_fileoff_t
)-1 && bno
>= start
) {
5657 if (lastx
>= XFS_IFORK_NEXTENTS(ip
, whichfork
) ||
5658 xfs_bmbt_get_startoff(ep
) > bno
) {
5660 ep
= xfs_iext_get_ext(ifp
, lastx
);
5663 xfs_bmbt_get_all(ep
, &got
);
5667 ifp
->if_lastex
= lastx
;
5668 *done
= bno
== (xfs_fileoff_t
)-1 || bno
< start
|| lastx
< 0;
5669 ASSERT(ifp
->if_ext_max
==
5670 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5672 * Convert to a btree if necessary.
5674 if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
&&
5675 XFS_IFORK_NEXTENTS(ip
, whichfork
) > ifp
->if_ext_max
) {
5676 ASSERT(cur
== NULL
);
5677 error
= xfs_bmap_extents_to_btree(tp
, ip
, firstblock
, flist
,
5678 &cur
, 0, &tmp_logflags
, whichfork
);
5679 logflags
|= tmp_logflags
;
5684 * transform from btree to extents, give it cur
5686 else if (XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_BTREE
&&
5687 XFS_IFORK_NEXTENTS(ip
, whichfork
) <= ifp
->if_ext_max
) {
5688 ASSERT(cur
!= NULL
);
5689 error
= xfs_bmap_btree_to_extents(tp
, ip
, cur
, &tmp_logflags
,
5691 logflags
|= tmp_logflags
;
5696 * transform from extents to local?
5698 ASSERT(ifp
->if_ext_max
==
5699 XFS_IFORK_SIZE(ip
, whichfork
) / (uint
)sizeof(xfs_bmbt_rec_t
));
5701 if (delta
&& delta
->xed_startoff
!= NULLFILEOFF
) {
5702 /* A change was actually made.
5703 * Note that delta->xed_blockount is an offset at this
5704 * point and needs to be converted to a block count.
5706 ASSERT(delta
->xed_blockcount
> delta
->xed_startoff
);
5707 delta
->xed_blockcount
-= delta
->xed_startoff
;
5711 * Log everything. Do this after conversion, there's no point in
5712 * logging the extent records if we've converted to btree format.
5714 if ((logflags
& XFS_ILOG_FEXT(whichfork
)) &&
5715 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_EXTENTS
)
5716 logflags
&= ~XFS_ILOG_FEXT(whichfork
);
5717 else if ((logflags
& XFS_ILOG_FBROOT(whichfork
)) &&
5718 XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
)
5719 logflags
&= ~XFS_ILOG_FBROOT(whichfork
);
5721 * Log inode even in the error case, if the transaction
5722 * is dirty we'll need to shut down the filesystem.
5725 xfs_trans_log_inode(tp
, ip
, logflags
);
5728 *firstblock
= cur
->bc_private
.b
.firstblock
;
5729 cur
->bc_private
.b
.allocated
= 0;
5731 xfs_btree_del_cursor(cur
,
5732 error
? XFS_BTREE_ERROR
: XFS_BTREE_NOERROR
);
5738 * Fcntl interface to xfs_bmapi.
5740 int /* error code */
5742 bhv_desc_t
*bdp
, /* XFS behavior descriptor*/
5743 struct getbmap
*bmv
, /* user bmap structure */
5744 void __user
*ap
, /* pointer to user's array */
5745 int interface
) /* interface flags */
5747 __int64_t bmvend
; /* last block requested */
5748 int error
; /* return value */
5749 __int64_t fixlen
; /* length for -1 case */
5750 int i
; /* extent number */
5751 xfs_inode_t
*ip
; /* xfs incore inode pointer */
5752 bhv_vnode_t
*vp
; /* corresponding vnode */
5753 int lock
; /* lock state */
5754 xfs_bmbt_irec_t
*map
; /* buffer for user's data */
5755 xfs_mount_t
*mp
; /* file system mount point */
5756 int nex
; /* # of user extents can do */
5757 int nexleft
; /* # of user extents left */
5758 int subnex
; /* # of bmapi's can do */
5759 int nmap
; /* number of map entries */
5760 struct getbmap out
; /* output structure */
5761 int whichfork
; /* data or attr fork */
5762 int prealloced
; /* this is a file with
5763 * preallocated data space */
5764 int sh_unwritten
; /* true, if unwritten */
5765 /* extents listed separately */
5766 int bmapi_flags
; /* flags for xfs_bmapi */
5767 __int32_t oflags
; /* getbmapx bmv_oflags field */
5769 vp
= BHV_TO_VNODE(bdp
);
5770 ip
= XFS_BHVTOI(bdp
);
5773 whichfork
= interface
& BMV_IF_ATTRFORK
? XFS_ATTR_FORK
: XFS_DATA_FORK
;
5774 sh_unwritten
= (interface
& BMV_IF_PREALLOC
) != 0;
5776 /* If the BMV_IF_NO_DMAPI_READ interface bit specified, do not
5777 * generate a DMAPI read event. Otherwise, if the DM_EVENT_READ
5778 * bit is set for the file, generate a read event in order
5779 * that the DMAPI application may do its thing before we return
5780 * the extents. Usually this means restoring user file data to
5781 * regions of the file that look like holes.
5783 * The "old behavior" (from XFS_IOC_GETBMAP) is to not specify
5784 * BMV_IF_NO_DMAPI_READ so that read events are generated.
5785 * If this were not true, callers of ioctl( XFS_IOC_GETBMAP )
5786 * could misinterpret holes in a DMAPI file as true holes,
5787 * when in fact they may represent offline user data.
5789 if ( (interface
& BMV_IF_NO_DMAPI_READ
) == 0
5790 && DM_EVENT_ENABLED(vp
->v_vfsp
, ip
, DM_EVENT_READ
)
5791 && whichfork
== XFS_DATA_FORK
) {
5793 error
= XFS_SEND_DATA(mp
, DM_EVENT_READ
, vp
, 0, 0, 0, NULL
);
5795 return XFS_ERROR(error
);
5798 if (whichfork
== XFS_ATTR_FORK
) {
5799 if (XFS_IFORK_Q(ip
)) {
5800 if (ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
&&
5801 ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_BTREE
&&
5802 ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_LOCAL
)
5803 return XFS_ERROR(EINVAL
);
5804 } else if (unlikely(
5805 ip
->i_d
.di_aformat
!= 0 &&
5806 ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_EXTENTS
)) {
5807 XFS_ERROR_REPORT("xfs_getbmap", XFS_ERRLEVEL_LOW
,
5809 return XFS_ERROR(EFSCORRUPTED
);
5811 } else if (ip
->i_d
.di_format
!= XFS_DINODE_FMT_EXTENTS
&&
5812 ip
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
&&
5813 ip
->i_d
.di_format
!= XFS_DINODE_FMT_LOCAL
)
5814 return XFS_ERROR(EINVAL
);
5815 if (whichfork
== XFS_DATA_FORK
) {
5816 if ((ip
->i_d
.di_extsize
&& (ip
->i_d
.di_flags
&
5817 (XFS_DIFLAG_REALTIME
|XFS_DIFLAG_EXTSIZE
))) ||
5818 ip
->i_d
.di_flags
& (XFS_DIFLAG_PREALLOC
|XFS_DIFLAG_APPEND
)){
5820 fixlen
= XFS_MAXIOFFSET(mp
);
5823 fixlen
= ip
->i_size
;
5830 if (bmv
->bmv_length
== -1) {
5831 fixlen
= XFS_FSB_TO_BB(mp
, XFS_B_TO_FSB(mp
, fixlen
));
5832 bmv
->bmv_length
= MAX( (__int64_t
)(fixlen
- bmv
->bmv_offset
),
5834 } else if (bmv
->bmv_length
< 0)
5835 return XFS_ERROR(EINVAL
);
5836 if (bmv
->bmv_length
== 0) {
5837 bmv
->bmv_entries
= 0;
5840 nex
= bmv
->bmv_count
- 1;
5842 return XFS_ERROR(EINVAL
);
5843 bmvend
= bmv
->bmv_offset
+ bmv
->bmv_length
;
5845 xfs_ilock(ip
, XFS_IOLOCK_SHARED
);
5847 if (whichfork
== XFS_DATA_FORK
&&
5848 (ip
->i_delayed_blks
|| ip
->i_size
> ip
->i_d
.di_size
)) {
5849 /* xfs_fsize_t last_byte = xfs_file_last_byte(ip); */
5850 error
= bhv_vop_flush_pages(vp
, (xfs_off_t
)0, -1, 0, FI_REMAPF
);
5853 ASSERT(whichfork
== XFS_ATTR_FORK
|| ip
->i_delayed_blks
== 0);
5855 lock
= xfs_ilock_map_shared(ip
);
5858 * Don't let nex be bigger than the number of extents
5859 * we can have assuming alternating holes and real extents.
5861 if (nex
> XFS_IFORK_NEXTENTS(ip
, whichfork
) * 2 + 1)
5862 nex
= XFS_IFORK_NEXTENTS(ip
, whichfork
) * 2 + 1;
5864 bmapi_flags
= XFS_BMAPI_AFLAG(whichfork
) |
5865 ((sh_unwritten
) ? 0 : XFS_BMAPI_IGSTATE
);
5868 * Allocate enough space to handle "subnex" maps at a time.
5871 map
= kmem_alloc(subnex
* sizeof(*map
), KM_SLEEP
);
5873 bmv
->bmv_entries
= 0;
5875 if (XFS_IFORK_NEXTENTS(ip
, whichfork
) == 0) {
5877 goto unlock_and_return
;
5883 nmap
= (nexleft
> subnex
) ? subnex
: nexleft
;
5884 error
= xfs_bmapi(NULL
, ip
, XFS_BB_TO_FSBT(mp
, bmv
->bmv_offset
),
5885 XFS_BB_TO_FSB(mp
, bmv
->bmv_length
),
5886 bmapi_flags
, NULL
, 0, map
, &nmap
,
5889 goto unlock_and_return
;
5890 ASSERT(nmap
<= subnex
);
5892 for (i
= 0; i
< nmap
&& nexleft
&& bmv
->bmv_length
; i
++) {
5894 oflags
= (map
[i
].br_state
== XFS_EXT_UNWRITTEN
) ?
5895 BMV_OF_PREALLOC
: 0;
5896 out
.bmv_offset
= XFS_FSB_TO_BB(mp
, map
[i
].br_startoff
);
5897 out
.bmv_length
= XFS_FSB_TO_BB(mp
, map
[i
].br_blockcount
);
5898 ASSERT(map
[i
].br_startblock
!= DELAYSTARTBLOCK
);
5899 if (map
[i
].br_startblock
== HOLESTARTBLOCK
&&
5900 ((prealloced
&& out
.bmv_offset
+ out
.bmv_length
== bmvend
) ||
5901 whichfork
== XFS_ATTR_FORK
)) {
5903 * came to hole at end of file or the end of
5906 goto unlock_and_return
;
5909 (map
[i
].br_startblock
== HOLESTARTBLOCK
) ?
5911 XFS_FSB_TO_DB(ip
, map
[i
].br_startblock
);
5913 /* return either getbmap/getbmapx structure. */
5914 if (interface
& BMV_IF_EXTENDED
) {
5915 struct getbmapx outx
;
5917 GETBMAP_CONVERT(out
,outx
);
5918 outx
.bmv_oflags
= oflags
;
5919 outx
.bmv_unused1
= outx
.bmv_unused2
= 0;
5920 if (copy_to_user(ap
, &outx
,
5922 error
= XFS_ERROR(EFAULT
);
5923 goto unlock_and_return
;
5926 if (copy_to_user(ap
, &out
,
5928 error
= XFS_ERROR(EFAULT
);
5929 goto unlock_and_return
;
5933 out
.bmv_offset
+ out
.bmv_length
;
5934 bmv
->bmv_length
= MAX((__int64_t
)0,
5935 (__int64_t
)(bmvend
- bmv
->bmv_offset
));
5937 ap
= (interface
& BMV_IF_EXTENDED
) ?
5939 ((struct getbmapx __user
*)ap
+ 1) :
5941 ((struct getbmap __user
*)ap
+ 1);
5944 } while (nmap
&& nexleft
&& bmv
->bmv_length
);
5947 xfs_iunlock_map_shared(ip
, lock
);
5948 xfs_iunlock(ip
, XFS_IOLOCK_SHARED
);
5950 kmem_free(map
, subnex
* sizeof(*map
));
5956 * Check the last inode extent to determine whether this allocation will result
5957 * in blocks being allocated at the end of the file. When we allocate new data
5958 * blocks at the end of the file which do not start at the previous data block,
5959 * we will try to align the new blocks at stripe unit boundaries.
5961 STATIC
int /* error */
5963 xfs_inode_t
*ip
, /* incore inode pointer */
5964 xfs_fileoff_t off
, /* file offset in fsblocks */
5965 int whichfork
, /* data or attribute fork */
5966 char *aeof
) /* return value */
5968 int error
; /* error return value */
5969 xfs_ifork_t
*ifp
; /* inode fork pointer */
5970 xfs_bmbt_rec_t
*lastrec
; /* extent record pointer */
5971 xfs_extnum_t nextents
; /* number of file extents */
5972 xfs_bmbt_irec_t s
; /* expanded extent record */
5974 ASSERT(whichfork
== XFS_DATA_FORK
);
5975 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
5976 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
5977 (error
= xfs_iread_extents(NULL
, ip
, whichfork
)))
5979 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
5980 if (nextents
== 0) {
5985 * Go to the last extent
5987 lastrec
= xfs_iext_get_ext(ifp
, nextents
- 1);
5988 xfs_bmbt_get_all(lastrec
, &s
);
5990 * Check we are allocating in the last extent (for delayed allocations)
5991 * or past the last extent for non-delayed allocations.
5993 *aeof
= (off
>= s
.br_startoff
&&
5994 off
< s
.br_startoff
+ s
.br_blockcount
&&
5995 ISNULLSTARTBLOCK(s
.br_startblock
)) ||
5996 off
>= s
.br_startoff
+ s
.br_blockcount
;
6001 * Check if the endoff is outside the last extent. If so the caller will grow
6002 * the allocation to a stripe unit boundary.
6006 xfs_inode_t
*ip
, /* incore inode pointer */
6007 xfs_fileoff_t endoff
, /* file offset in fsblocks */
6008 int whichfork
, /* data or attribute fork */
6009 int *eof
) /* result value */
6011 xfs_fsblock_t blockcount
; /* extent block count */
6012 int error
; /* error return value */
6013 xfs_ifork_t
*ifp
; /* inode fork pointer */
6014 xfs_bmbt_rec_t
*lastrec
; /* extent record pointer */
6015 xfs_extnum_t nextents
; /* number of file extents */
6016 xfs_fileoff_t startoff
; /* extent starting file offset */
6018 ASSERT(whichfork
== XFS_DATA_FORK
);
6019 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
6020 if (!(ifp
->if_flags
& XFS_IFEXTENTS
) &&
6021 (error
= xfs_iread_extents(NULL
, ip
, whichfork
)))
6023 nextents
= ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
);
6024 if (nextents
== 0) {
6029 * Go to the last extent
6031 lastrec
= xfs_iext_get_ext(ifp
, nextents
- 1);
6032 startoff
= xfs_bmbt_get_startoff(lastrec
);
6033 blockcount
= xfs_bmbt_get_blockcount(lastrec
);
6034 *eof
= endoff
>= startoff
+ blockcount
;
6042 xfs_btree_cur_t
*cur
,
6052 for(i
= 0; i
< XFS_BTREE_MAXLEVELS
; i
++) {
6053 bp
= cur
->bc_bufs
[i
];
6055 if (XFS_BUF_ADDR(bp
) == bno
)
6056 break; /* Found it */
6058 if (i
== XFS_BTREE_MAXLEVELS
)
6061 if (!bp
) { /* Chase down all the log items to see if the bp is there */
6062 xfs_log_item_chunk_t
*licp
;
6066 licp
= &tp
->t_items
;
6067 while (!bp
&& licp
!= NULL
) {
6068 if (XFS_LIC_ARE_ALL_FREE(licp
)) {
6069 licp
= licp
->lic_next
;
6072 for (i
= 0; i
< licp
->lic_unused
; i
++) {
6073 xfs_log_item_desc_t
*lidp
;
6074 xfs_log_item_t
*lip
;
6075 xfs_buf_log_item_t
*bip
;
6078 if (XFS_LIC_ISFREE(licp
, i
)) {
6082 lidp
= XFS_LIC_SLOT(licp
, i
);
6083 lip
= lidp
->lid_item
;
6084 if (lip
->li_type
!= XFS_LI_BUF
)
6087 bip
= (xfs_buf_log_item_t
*)lip
;
6090 if (XFS_BUF_ADDR(lbp
) == bno
) {
6092 break; /* Found it */
6095 licp
= licp
->lic_next
;
6103 xfs_bmbt_block_t
*block
,
6109 __be64
*pp
, *thispa
; /* pointer to block address */
6110 xfs_bmbt_key_t
*prevp
, *keyp
;
6112 ASSERT(be16_to_cpu(block
->bb_level
) > 0);
6115 for( i
= 1; i
<= be16_to_cpu(block
->bb_numrecs
); i
++) {
6116 dmxr
= mp
->m_bmap_dmxr
[0];
6119 keyp
= XFS_BMAP_BROOT_KEY_ADDR(block
, i
, sz
);
6121 keyp
= XFS_BTREE_KEY_ADDR(xfs_bmbt
, block
, i
);
6125 xfs_btree_check_key(XFS_BTNUM_BMAP
, prevp
, keyp
);
6130 * Compare the block numbers to see if there are dups.
6134 pp
= XFS_BMAP_BROOT_PTR_ADDR(block
, i
, sz
);
6136 pp
= XFS_BTREE_PTR_ADDR(xfs_bmbt
, block
, i
, dmxr
);
6138 for (j
= i
+1; j
<= be16_to_cpu(block
->bb_numrecs
); j
++) {
6140 thispa
= XFS_BMAP_BROOT_PTR_ADDR(block
, j
, sz
);
6142 thispa
= XFS_BTREE_PTR_ADDR(xfs_bmbt
, block
, j
,
6145 if (*thispa
== *pp
) {
6146 cmn_err(CE_WARN
, "%s: thispa(%d) == pp(%d) %Ld",
6148 (unsigned long long)be64_to_cpu(*thispa
));
6149 panic("%s: ptrs are equal in node\n",
6157 * Check that the extents for the inode ip are in the right order in all
6162 xfs_bmap_check_leaf_extents(
6163 xfs_btree_cur_t
*cur
, /* btree cursor or null */
6164 xfs_inode_t
*ip
, /* incore inode pointer */
6165 int whichfork
) /* data or attr fork */
6167 xfs_bmbt_block_t
*block
; /* current btree block */
6168 xfs_fsblock_t bno
; /* block # of "block" */
6169 xfs_buf_t
*bp
; /* buffer for "block" */
6170 int error
; /* error return value */
6171 xfs_extnum_t i
=0, j
; /* index into the extents list */
6172 xfs_ifork_t
*ifp
; /* fork structure */
6173 int level
; /* btree level, for checking */
6174 xfs_mount_t
*mp
; /* file system mount structure */
6175 __be64
*pp
; /* pointer to block address */
6176 xfs_bmbt_rec_t
*ep
; /* pointer to current extent */
6177 xfs_bmbt_rec_t
*lastp
; /* pointer to previous extent */
6178 xfs_bmbt_rec_t
*nextp
; /* pointer to next extent */
6181 if (XFS_IFORK_FORMAT(ip
, whichfork
) != XFS_DINODE_FMT_BTREE
) {
6187 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
6188 block
= ifp
->if_broot
;
6190 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
6192 level
= be16_to_cpu(block
->bb_level
);
6194 xfs_check_block(block
, mp
, 1, ifp
->if_broot_bytes
);
6195 pp
= XFS_BMAP_BROOT_PTR_ADDR(block
, 1, ifp
->if_broot_bytes
);
6196 bno
= be64_to_cpu(*pp
);
6198 ASSERT(bno
!= NULLDFSBNO
);
6199 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
6200 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
6203 * Go down the tree until leaf level is reached, following the first
6204 * pointer (leftmost) at each level.
6206 while (level
-- > 0) {
6207 /* See if buf is in cur first */
6208 bp
= xfs_bmap_get_bp(cur
, XFS_FSB_TO_DADDR(mp
, bno
));
6214 if (!bp
&& (error
= xfs_btree_read_bufl(mp
, NULL
, bno
, 0, &bp
,
6215 XFS_BMAP_BTREE_REF
)))
6217 block
= XFS_BUF_TO_BMBT_BLOCK(bp
);
6218 XFS_WANT_CORRUPTED_GOTO(
6219 XFS_BMAP_SANITY_CHECK(mp
, block
, level
),
6225 * Check this block for basic sanity (increasing keys and
6226 * no duplicate blocks).
6229 xfs_check_block(block
, mp
, 0, 0);
6230 pp
= XFS_BTREE_PTR_ADDR(xfs_bmbt
, block
, 1, mp
->m_bmap_dmxr
[1]);
6231 bno
= be64_to_cpu(*pp
);
6232 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp
, bno
), error0
);
6235 xfs_trans_brelse(NULL
, bp
);
6240 * Here with bp and block set to the leftmost leaf node in the tree.
6245 * Loop over all leaf nodes checking that all extents are in the right order.
6249 xfs_fsblock_t nextbno
;
6250 xfs_extnum_t num_recs
;
6253 num_recs
= be16_to_cpu(block
->bb_numrecs
);
6256 * Read-ahead the next leaf block, if any.
6259 nextbno
= be64_to_cpu(block
->bb_rightsib
);
6262 * Check all the extents to make sure they are OK.
6263 * If we had a previous block, the last entry should
6264 * conform with the first entry in this one.
6267 ep
= XFS_BTREE_REC_ADDR(xfs_bmbt
, block
, 1);
6268 for (j
= 1; j
< num_recs
; j
++) {
6269 nextp
= XFS_BTREE_REC_ADDR(xfs_bmbt
, block
, j
+ 1);
6271 xfs_btree_check_rec(XFS_BTNUM_BMAP
,
6272 (void *)lastp
, (void *)ep
);
6274 xfs_btree_check_rec(XFS_BTNUM_BMAP
, (void *)ep
,
6283 xfs_trans_brelse(NULL
, bp
);
6287 * If we've reached the end, stop.
6289 if (bno
== NULLFSBLOCK
)
6292 bp
= xfs_bmap_get_bp(cur
, XFS_FSB_TO_DADDR(mp
, bno
));
6298 if (!bp
&& (error
= xfs_btree_read_bufl(mp
, NULL
, bno
, 0, &bp
,
6299 XFS_BMAP_BTREE_REF
)))
6301 block
= XFS_BUF_TO_BMBT_BLOCK(bp
);
6305 xfs_trans_brelse(NULL
, bp
);
6310 cmn_err(CE_WARN
, "%s: at error0", __FUNCTION__
);
6312 xfs_trans_brelse(NULL
, bp
);
6314 cmn_err(CE_WARN
, "%s: BAD after btree leaves for %d extents",
6316 panic("%s: CORRUPTED BTREE OR SOMETHING", __FUNCTION__
);
6322 * Count fsblocks of the given fork.
6325 xfs_bmap_count_blocks(
6326 xfs_trans_t
*tp
, /* transaction pointer */
6327 xfs_inode_t
*ip
, /* incore inode */
6328 int whichfork
, /* data or attr fork */
6329 int *count
) /* out: count of blocks */
6331 xfs_bmbt_block_t
*block
; /* current btree block */
6332 xfs_fsblock_t bno
; /* block # of "block" */
6333 xfs_ifork_t
*ifp
; /* fork structure */
6334 int level
; /* btree level, for checking */
6335 xfs_mount_t
*mp
; /* file system mount structure */
6336 __be64
*pp
; /* pointer to block address */
6340 ifp
= XFS_IFORK_PTR(ip
, whichfork
);
6341 if ( XFS_IFORK_FORMAT(ip
, whichfork
) == XFS_DINODE_FMT_EXTENTS
) {
6342 if (unlikely(xfs_bmap_count_leaves(ifp
, 0,
6343 ifp
->if_bytes
/ (uint
)sizeof(xfs_bmbt_rec_t
),
6345 XFS_ERROR_REPORT("xfs_bmap_count_blocks(1)",
6346 XFS_ERRLEVEL_LOW
, mp
);
6347 return XFS_ERROR(EFSCORRUPTED
);
6353 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
6355 block
= ifp
->if_broot
;
6356 level
= be16_to_cpu(block
->bb_level
);
6358 pp
= XFS_BMAP_BROOT_PTR_ADDR(block
, 1, ifp
->if_broot_bytes
);
6359 bno
= be64_to_cpu(*pp
);
6360 ASSERT(bno
!= NULLDFSBNO
);
6361 ASSERT(XFS_FSB_TO_AGNO(mp
, bno
) < mp
->m_sb
.sb_agcount
);
6362 ASSERT(XFS_FSB_TO_AGBNO(mp
, bno
) < mp
->m_sb
.sb_agblocks
);
6364 if (unlikely(xfs_bmap_count_tree(mp
, tp
, ifp
, bno
, level
, count
) < 0)) {
6365 XFS_ERROR_REPORT("xfs_bmap_count_blocks(2)", XFS_ERRLEVEL_LOW
,
6367 return XFS_ERROR(EFSCORRUPTED
);
6374 * Recursively walks each level of a btree
6375 * to count total fsblocks is use.
6378 xfs_bmap_count_tree(
6379 xfs_mount_t
*mp
, /* file system mount point */
6380 xfs_trans_t
*tp
, /* transaction pointer */
6381 xfs_ifork_t
*ifp
, /* inode fork pointer */
6382 xfs_fsblock_t blockno
, /* file system block number */
6383 int levelin
, /* level in btree */
6384 int *count
) /* Count of blocks */
6387 xfs_buf_t
*bp
, *nbp
;
6388 int level
= levelin
;
6390 xfs_fsblock_t bno
= blockno
;
6391 xfs_fsblock_t nextbno
;
6392 xfs_bmbt_block_t
*block
, *nextblock
;
6395 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
, XFS_BMAP_BTREE_REF
)))
6398 block
= XFS_BUF_TO_BMBT_BLOCK(bp
);
6401 /* Not at node above leafs, count this level of nodes */
6402 nextbno
= be64_to_cpu(block
->bb_rightsib
);
6403 while (nextbno
!= NULLFSBLOCK
) {
6404 if ((error
= xfs_btree_read_bufl(mp
, tp
, nextbno
,
6405 0, &nbp
, XFS_BMAP_BTREE_REF
)))
6408 nextblock
= XFS_BUF_TO_BMBT_BLOCK(nbp
);
6409 nextbno
= be64_to_cpu(nextblock
->bb_rightsib
);
6410 xfs_trans_brelse(tp
, nbp
);
6413 /* Dive to the next level */
6414 pp
= XFS_BTREE_PTR_ADDR(xfs_bmbt
, block
, 1, mp
->m_bmap_dmxr
[1]);
6415 bno
= be64_to_cpu(*pp
);
6416 if (unlikely((error
=
6417 xfs_bmap_count_tree(mp
, tp
, ifp
, bno
, level
, count
)) < 0)) {
6418 xfs_trans_brelse(tp
, bp
);
6419 XFS_ERROR_REPORT("xfs_bmap_count_tree(1)",
6420 XFS_ERRLEVEL_LOW
, mp
);
6421 return XFS_ERROR(EFSCORRUPTED
);
6423 xfs_trans_brelse(tp
, bp
);
6425 /* count all level 1 nodes and their leaves */
6427 nextbno
= be64_to_cpu(block
->bb_rightsib
);
6428 numrecs
= be16_to_cpu(block
->bb_numrecs
);
6429 if (unlikely(xfs_bmap_disk_count_leaves(0,
6430 block
, numrecs
, count
) < 0)) {
6431 xfs_trans_brelse(tp
, bp
);
6432 XFS_ERROR_REPORT("xfs_bmap_count_tree(2)",
6433 XFS_ERRLEVEL_LOW
, mp
);
6434 return XFS_ERROR(EFSCORRUPTED
);
6436 xfs_trans_brelse(tp
, bp
);
6437 if (nextbno
== NULLFSBLOCK
)
6440 if ((error
= xfs_btree_read_bufl(mp
, tp
, bno
, 0, &bp
,
6441 XFS_BMAP_BTREE_REF
)))
6444 block
= XFS_BUF_TO_BMBT_BLOCK(bp
);
6451 * Count leaf blocks given a range of extent records.
6454 xfs_bmap_count_leaves(
6461 xfs_bmbt_rec_t
*frp
;
6463 for (b
= 0; b
< numrecs
; b
++) {
6464 frp
= xfs_iext_get_ext(ifp
, idx
+ b
);
6465 *count
+= xfs_bmbt_get_blockcount(frp
);
6471 * Count leaf blocks given a range of extent records originally
6475 xfs_bmap_disk_count_leaves(
6477 xfs_bmbt_block_t
*block
,
6482 xfs_bmbt_rec_t
*frp
;
6484 for (b
= 1; b
<= numrecs
; b
++) {
6485 frp
= XFS_BTREE_REC_ADDR(xfs_bmbt
, block
, idx
+ b
);
6486 *count
+= xfs_bmbt_disk_get_blockcount(frp
);