usb: renesas_usbhs: disable TX IRQ before starting TX DMAC transfer
[linux/fpc-iii.git] / fs / xfs / xfs_bmap.c
blob94a5c1914fb339d7ec7c4f7509564e81fb838a45
1 /*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * All Rights Reserved.
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
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_shared.h"
21 #include "xfs_format.h"
22 #include "xfs_log_format.h"
23 #include "xfs_trans_resv.h"
24 #include "xfs_bit.h"
25 #include "xfs_inum.h"
26 #include "xfs_sb.h"
27 #include "xfs_ag.h"
28 #include "xfs_mount.h"
29 #include "xfs_da_format.h"
30 #include "xfs_da_btree.h"
31 #include "xfs_dir2.h"
32 #include "xfs_inode.h"
33 #include "xfs_btree.h"
34 #include "xfs_trans.h"
35 #include "xfs_inode_item.h"
36 #include "xfs_extfree_item.h"
37 #include "xfs_alloc.h"
38 #include "xfs_bmap.h"
39 #include "xfs_bmap_util.h"
40 #include "xfs_bmap_btree.h"
41 #include "xfs_rtalloc.h"
42 #include "xfs_error.h"
43 #include "xfs_quota.h"
44 #include "xfs_trans_space.h"
45 #include "xfs_buf_item.h"
46 #include "xfs_trace.h"
47 #include "xfs_symlink.h"
48 #include "xfs_attr_leaf.h"
49 #include "xfs_dinode.h"
50 #include "xfs_filestream.h"
53 kmem_zone_t *xfs_bmap_free_item_zone;
56 * Miscellaneous helper functions
60 * Compute and fill in the value of the maximum depth of a bmap btree
61 * in this filesystem. Done once, during mount.
63 void
64 xfs_bmap_compute_maxlevels(
65 xfs_mount_t *mp, /* file system mount structure */
66 int whichfork) /* data or attr fork */
68 int level; /* btree level */
69 uint maxblocks; /* max blocks at this level */
70 uint maxleafents; /* max leaf entries possible */
71 int maxrootrecs; /* max records in root block */
72 int minleafrecs; /* min records in leaf block */
73 int minnoderecs; /* min records in node block */
74 int sz; /* root block size */
77 * The maximum number of extents in a file, hence the maximum
78 * number of leaf entries, is controlled by the type of di_nextents
79 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
80 * (a signed 16-bit number, xfs_aextnum_t).
82 * Note that we can no longer assume that if we are in ATTR1 that
83 * the fork offset of all the inodes will be
84 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
85 * with ATTR2 and then mounted back with ATTR1, keeping the
86 * di_forkoff's fixed but probably at various positions. Therefore,
87 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
88 * of a minimum size available.
90 if (whichfork == XFS_DATA_FORK) {
91 maxleafents = MAXEXTNUM;
92 sz = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
93 } else {
94 maxleafents = MAXAEXTNUM;
95 sz = XFS_BMDR_SPACE_CALC(MINABTPTRS);
97 maxrootrecs = xfs_bmdr_maxrecs(sz, 0);
98 minleafrecs = mp->m_bmap_dmnr[0];
99 minnoderecs = mp->m_bmap_dmnr[1];
100 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
101 for (level = 1; maxblocks > 1; level++) {
102 if (maxblocks <= maxrootrecs)
103 maxblocks = 1;
104 else
105 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
107 mp->m_bm_maxlevels[whichfork] = level;
110 STATIC int /* error */
111 xfs_bmbt_lookup_eq(
112 struct xfs_btree_cur *cur,
113 xfs_fileoff_t off,
114 xfs_fsblock_t bno,
115 xfs_filblks_t len,
116 int *stat) /* success/failure */
118 cur->bc_rec.b.br_startoff = off;
119 cur->bc_rec.b.br_startblock = bno;
120 cur->bc_rec.b.br_blockcount = len;
121 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
124 STATIC int /* error */
125 xfs_bmbt_lookup_ge(
126 struct xfs_btree_cur *cur,
127 xfs_fileoff_t off,
128 xfs_fsblock_t bno,
129 xfs_filblks_t len,
130 int *stat) /* success/failure */
132 cur->bc_rec.b.br_startoff = off;
133 cur->bc_rec.b.br_startblock = bno;
134 cur->bc_rec.b.br_blockcount = len;
135 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
139 * Check if the inode needs to be converted to btree format.
141 static inline bool xfs_bmap_needs_btree(struct xfs_inode *ip, int whichfork)
143 return XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
144 XFS_IFORK_NEXTENTS(ip, whichfork) >
145 XFS_IFORK_MAXEXT(ip, whichfork);
149 * Check if the inode should be converted to extent format.
151 static inline bool xfs_bmap_wants_extents(struct xfs_inode *ip, int whichfork)
153 return XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
154 XFS_IFORK_NEXTENTS(ip, whichfork) <=
155 XFS_IFORK_MAXEXT(ip, whichfork);
159 * Update the record referred to by cur to the value given
160 * by [off, bno, len, state].
161 * This either works (return 0) or gets an EFSCORRUPTED error.
163 STATIC int
164 xfs_bmbt_update(
165 struct xfs_btree_cur *cur,
166 xfs_fileoff_t off,
167 xfs_fsblock_t bno,
168 xfs_filblks_t len,
169 xfs_exntst_t state)
171 union xfs_btree_rec rec;
173 xfs_bmbt_disk_set_allf(&rec.bmbt, off, bno, len, state);
174 return xfs_btree_update(cur, &rec);
178 * Compute the worst-case number of indirect blocks that will be used
179 * for ip's delayed extent of length "len".
181 STATIC xfs_filblks_t
182 xfs_bmap_worst_indlen(
183 xfs_inode_t *ip, /* incore inode pointer */
184 xfs_filblks_t len) /* delayed extent length */
186 int level; /* btree level number */
187 int maxrecs; /* maximum record count at this level */
188 xfs_mount_t *mp; /* mount structure */
189 xfs_filblks_t rval; /* return value */
191 mp = ip->i_mount;
192 maxrecs = mp->m_bmap_dmxr[0];
193 for (level = 0, rval = 0;
194 level < XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK);
195 level++) {
196 len += maxrecs - 1;
197 do_div(len, maxrecs);
198 rval += len;
199 if (len == 1)
200 return rval + XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) -
201 level - 1;
202 if (level == 0)
203 maxrecs = mp->m_bmap_dmxr[1];
205 return rval;
209 * Calculate the default attribute fork offset for newly created inodes.
211 uint
212 xfs_default_attroffset(
213 struct xfs_inode *ip)
215 struct xfs_mount *mp = ip->i_mount;
216 uint offset;
218 if (mp->m_sb.sb_inodesize == 256) {
219 offset = XFS_LITINO(mp, ip->i_d.di_version) -
220 XFS_BMDR_SPACE_CALC(MINABTPTRS);
221 } else {
222 offset = XFS_BMDR_SPACE_CALC(6 * MINABTPTRS);
225 ASSERT(offset < XFS_LITINO(mp, ip->i_d.di_version));
226 return offset;
230 * Helper routine to reset inode di_forkoff field when switching
231 * attribute fork from local to extent format - we reset it where
232 * possible to make space available for inline data fork extents.
234 STATIC void
235 xfs_bmap_forkoff_reset(
236 xfs_inode_t *ip,
237 int whichfork)
239 if (whichfork == XFS_ATTR_FORK &&
240 ip->i_d.di_format != XFS_DINODE_FMT_DEV &&
241 ip->i_d.di_format != XFS_DINODE_FMT_UUID &&
242 ip->i_d.di_format != XFS_DINODE_FMT_BTREE) {
243 uint dfl_forkoff = xfs_default_attroffset(ip) >> 3;
245 if (dfl_forkoff > ip->i_d.di_forkoff)
246 ip->i_d.di_forkoff = dfl_forkoff;
251 * Debug/sanity checking code
254 STATIC int
255 xfs_bmap_sanity_check(
256 struct xfs_mount *mp,
257 struct xfs_buf *bp,
258 int level)
260 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
262 if (block->bb_magic != cpu_to_be32(XFS_BMAP_CRC_MAGIC) &&
263 block->bb_magic != cpu_to_be32(XFS_BMAP_MAGIC))
264 return 0;
266 if (be16_to_cpu(block->bb_level) != level ||
267 be16_to_cpu(block->bb_numrecs) == 0 ||
268 be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
269 return 0;
271 return 1;
274 #ifdef DEBUG
275 STATIC struct xfs_buf *
276 xfs_bmap_get_bp(
277 struct xfs_btree_cur *cur,
278 xfs_fsblock_t bno)
280 struct xfs_log_item_desc *lidp;
281 int i;
283 if (!cur)
284 return NULL;
286 for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) {
287 if (!cur->bc_bufs[i])
288 break;
289 if (XFS_BUF_ADDR(cur->bc_bufs[i]) == bno)
290 return cur->bc_bufs[i];
293 /* Chase down all the log items to see if the bp is there */
294 list_for_each_entry(lidp, &cur->bc_tp->t_items, lid_trans) {
295 struct xfs_buf_log_item *bip;
296 bip = (struct xfs_buf_log_item *)lidp->lid_item;
297 if (bip->bli_item.li_type == XFS_LI_BUF &&
298 XFS_BUF_ADDR(bip->bli_buf) == bno)
299 return bip->bli_buf;
302 return NULL;
305 STATIC void
306 xfs_check_block(
307 struct xfs_btree_block *block,
308 xfs_mount_t *mp,
309 int root,
310 short sz)
312 int i, j, dmxr;
313 __be64 *pp, *thispa; /* pointer to block address */
314 xfs_bmbt_key_t *prevp, *keyp;
316 ASSERT(be16_to_cpu(block->bb_level) > 0);
318 prevp = NULL;
319 for( i = 1; i <= xfs_btree_get_numrecs(block); i++) {
320 dmxr = mp->m_bmap_dmxr[0];
321 keyp = XFS_BMBT_KEY_ADDR(mp, block, i);
323 if (prevp) {
324 ASSERT(be64_to_cpu(prevp->br_startoff) <
325 be64_to_cpu(keyp->br_startoff));
327 prevp = keyp;
330 * Compare the block numbers to see if there are dups.
332 if (root)
333 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, i, sz);
334 else
335 pp = XFS_BMBT_PTR_ADDR(mp, block, i, dmxr);
337 for (j = i+1; j <= be16_to_cpu(block->bb_numrecs); j++) {
338 if (root)
339 thispa = XFS_BMAP_BROOT_PTR_ADDR(mp, block, j, sz);
340 else
341 thispa = XFS_BMBT_PTR_ADDR(mp, block, j, dmxr);
342 if (*thispa == *pp) {
343 xfs_warn(mp, "%s: thispa(%d) == pp(%d) %Ld",
344 __func__, j, i,
345 (unsigned long long)be64_to_cpu(*thispa));
346 panic("%s: ptrs are equal in node\n",
347 __func__);
354 * Check that the extents for the inode ip are in the right order in all
355 * btree leaves.
358 STATIC void
359 xfs_bmap_check_leaf_extents(
360 xfs_btree_cur_t *cur, /* btree cursor or null */
361 xfs_inode_t *ip, /* incore inode pointer */
362 int whichfork) /* data or attr fork */
364 struct xfs_btree_block *block; /* current btree block */
365 xfs_fsblock_t bno; /* block # of "block" */
366 xfs_buf_t *bp; /* buffer for "block" */
367 int error; /* error return value */
368 xfs_extnum_t i=0, j; /* index into the extents list */
369 xfs_ifork_t *ifp; /* fork structure */
370 int level; /* btree level, for checking */
371 xfs_mount_t *mp; /* file system mount structure */
372 __be64 *pp; /* pointer to block address */
373 xfs_bmbt_rec_t *ep; /* pointer to current extent */
374 xfs_bmbt_rec_t last = {0, 0}; /* last extent in prev block */
375 xfs_bmbt_rec_t *nextp; /* pointer to next extent */
376 int bp_release = 0;
378 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) {
379 return;
382 bno = NULLFSBLOCK;
383 mp = ip->i_mount;
384 ifp = XFS_IFORK_PTR(ip, whichfork);
385 block = ifp->if_broot;
387 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
389 level = be16_to_cpu(block->bb_level);
390 ASSERT(level > 0);
391 xfs_check_block(block, mp, 1, ifp->if_broot_bytes);
392 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
393 bno = be64_to_cpu(*pp);
395 ASSERT(bno != NULLDFSBNO);
396 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
397 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
400 * Go down the tree until leaf level is reached, following the first
401 * pointer (leftmost) at each level.
403 while (level-- > 0) {
404 /* See if buf is in cur first */
405 bp_release = 0;
406 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
407 if (!bp) {
408 bp_release = 1;
409 error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
410 XFS_BMAP_BTREE_REF,
411 &xfs_bmbt_buf_ops);
412 if (error)
413 goto error_norelse;
415 block = XFS_BUF_TO_BLOCK(bp);
416 XFS_WANT_CORRUPTED_GOTO(
417 xfs_bmap_sanity_check(mp, bp, level),
418 error0);
419 if (level == 0)
420 break;
423 * Check this block for basic sanity (increasing keys and
424 * no duplicate blocks).
427 xfs_check_block(block, mp, 0, 0);
428 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
429 bno = be64_to_cpu(*pp);
430 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
431 if (bp_release) {
432 bp_release = 0;
433 xfs_trans_brelse(NULL, bp);
438 * Here with bp and block set to the leftmost leaf node in the tree.
440 i = 0;
443 * Loop over all leaf nodes checking that all extents are in the right order.
445 for (;;) {
446 xfs_fsblock_t nextbno;
447 xfs_extnum_t num_recs;
450 num_recs = xfs_btree_get_numrecs(block);
453 * Read-ahead the next leaf block, if any.
456 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
459 * Check all the extents to make sure they are OK.
460 * If we had a previous block, the last entry should
461 * conform with the first entry in this one.
464 ep = XFS_BMBT_REC_ADDR(mp, block, 1);
465 if (i) {
466 ASSERT(xfs_bmbt_disk_get_startoff(&last) +
467 xfs_bmbt_disk_get_blockcount(&last) <=
468 xfs_bmbt_disk_get_startoff(ep));
470 for (j = 1; j < num_recs; j++) {
471 nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1);
472 ASSERT(xfs_bmbt_disk_get_startoff(ep) +
473 xfs_bmbt_disk_get_blockcount(ep) <=
474 xfs_bmbt_disk_get_startoff(nextp));
475 ep = nextp;
478 last = *ep;
479 i += num_recs;
480 if (bp_release) {
481 bp_release = 0;
482 xfs_trans_brelse(NULL, bp);
484 bno = nextbno;
486 * If we've reached the end, stop.
488 if (bno == NULLFSBLOCK)
489 break;
491 bp_release = 0;
492 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
493 if (!bp) {
494 bp_release = 1;
495 error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
496 XFS_BMAP_BTREE_REF,
497 &xfs_bmbt_buf_ops);
498 if (error)
499 goto error_norelse;
501 block = XFS_BUF_TO_BLOCK(bp);
503 if (bp_release) {
504 bp_release = 0;
505 xfs_trans_brelse(NULL, bp);
507 return;
509 error0:
510 xfs_warn(mp, "%s: at error0", __func__);
511 if (bp_release)
512 xfs_trans_brelse(NULL, bp);
513 error_norelse:
514 xfs_warn(mp, "%s: BAD after btree leaves for %d extents",
515 __func__, i);
516 panic("%s: CORRUPTED BTREE OR SOMETHING", __func__);
517 return;
521 * Add bmap trace insert entries for all the contents of the extent records.
523 void
524 xfs_bmap_trace_exlist(
525 xfs_inode_t *ip, /* incore inode pointer */
526 xfs_extnum_t cnt, /* count of entries in the list */
527 int whichfork, /* data or attr fork */
528 unsigned long caller_ip)
530 xfs_extnum_t idx; /* extent record index */
531 xfs_ifork_t *ifp; /* inode fork pointer */
532 int state = 0;
534 if (whichfork == XFS_ATTR_FORK)
535 state |= BMAP_ATTRFORK;
537 ifp = XFS_IFORK_PTR(ip, whichfork);
538 ASSERT(cnt == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
539 for (idx = 0; idx < cnt; idx++)
540 trace_xfs_extlist(ip, idx, whichfork, caller_ip);
544 * Validate that the bmbt_irecs being returned from bmapi are valid
545 * given the caller's original parameters. Specifically check the
546 * ranges of the returned irecs to ensure that they only extend beyond
547 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
549 STATIC void
550 xfs_bmap_validate_ret(
551 xfs_fileoff_t bno,
552 xfs_filblks_t len,
553 int flags,
554 xfs_bmbt_irec_t *mval,
555 int nmap,
556 int ret_nmap)
558 int i; /* index to map values */
560 ASSERT(ret_nmap <= nmap);
562 for (i = 0; i < ret_nmap; i++) {
563 ASSERT(mval[i].br_blockcount > 0);
564 if (!(flags & XFS_BMAPI_ENTIRE)) {
565 ASSERT(mval[i].br_startoff >= bno);
566 ASSERT(mval[i].br_blockcount <= len);
567 ASSERT(mval[i].br_startoff + mval[i].br_blockcount <=
568 bno + len);
569 } else {
570 ASSERT(mval[i].br_startoff < bno + len);
571 ASSERT(mval[i].br_startoff + mval[i].br_blockcount >
572 bno);
574 ASSERT(i == 0 ||
575 mval[i - 1].br_startoff + mval[i - 1].br_blockcount ==
576 mval[i].br_startoff);
577 ASSERT(mval[i].br_startblock != DELAYSTARTBLOCK &&
578 mval[i].br_startblock != HOLESTARTBLOCK);
579 ASSERT(mval[i].br_state == XFS_EXT_NORM ||
580 mval[i].br_state == XFS_EXT_UNWRITTEN);
584 #else
585 #define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
586 #define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
587 #endif /* DEBUG */
590 * bmap free list manipulation functions
594 * Add the extent to the list of extents to be free at transaction end.
595 * The list is maintained sorted (by block number).
597 void
598 xfs_bmap_add_free(
599 xfs_fsblock_t bno, /* fs block number of extent */
600 xfs_filblks_t len, /* length of extent */
601 xfs_bmap_free_t *flist, /* list of extents */
602 xfs_mount_t *mp) /* mount point structure */
604 xfs_bmap_free_item_t *cur; /* current (next) element */
605 xfs_bmap_free_item_t *new; /* new element */
606 xfs_bmap_free_item_t *prev; /* previous element */
607 #ifdef DEBUG
608 xfs_agnumber_t agno;
609 xfs_agblock_t agbno;
611 ASSERT(bno != NULLFSBLOCK);
612 ASSERT(len > 0);
613 ASSERT(len <= MAXEXTLEN);
614 ASSERT(!isnullstartblock(bno));
615 agno = XFS_FSB_TO_AGNO(mp, bno);
616 agbno = XFS_FSB_TO_AGBNO(mp, bno);
617 ASSERT(agno < mp->m_sb.sb_agcount);
618 ASSERT(agbno < mp->m_sb.sb_agblocks);
619 ASSERT(len < mp->m_sb.sb_agblocks);
620 ASSERT(agbno + len <= mp->m_sb.sb_agblocks);
621 #endif
622 ASSERT(xfs_bmap_free_item_zone != NULL);
623 new = kmem_zone_alloc(xfs_bmap_free_item_zone, KM_SLEEP);
624 new->xbfi_startblock = bno;
625 new->xbfi_blockcount = (xfs_extlen_t)len;
626 for (prev = NULL, cur = flist->xbf_first;
627 cur != NULL;
628 prev = cur, cur = cur->xbfi_next) {
629 if (cur->xbfi_startblock >= bno)
630 break;
632 if (prev)
633 prev->xbfi_next = new;
634 else
635 flist->xbf_first = new;
636 new->xbfi_next = cur;
637 flist->xbf_count++;
641 * Remove the entry "free" from the free item list. Prev points to the
642 * previous entry, unless "free" is the head of the list.
644 void
645 xfs_bmap_del_free(
646 xfs_bmap_free_t *flist, /* free item list header */
647 xfs_bmap_free_item_t *prev, /* previous item on list, if any */
648 xfs_bmap_free_item_t *free) /* list item to be freed */
650 if (prev)
651 prev->xbfi_next = free->xbfi_next;
652 else
653 flist->xbf_first = free->xbfi_next;
654 flist->xbf_count--;
655 kmem_zone_free(xfs_bmap_free_item_zone, free);
659 * Free up any items left in the list.
661 void
662 xfs_bmap_cancel(
663 xfs_bmap_free_t *flist) /* list of bmap_free_items */
665 xfs_bmap_free_item_t *free; /* free list item */
666 xfs_bmap_free_item_t *next;
668 if (flist->xbf_count == 0)
669 return;
670 ASSERT(flist->xbf_first != NULL);
671 for (free = flist->xbf_first; free; free = next) {
672 next = free->xbfi_next;
673 xfs_bmap_del_free(flist, NULL, free);
675 ASSERT(flist->xbf_count == 0);
679 * Inode fork format manipulation functions
683 * Transform a btree format file with only one leaf node, where the
684 * extents list will fit in the inode, into an extents format file.
685 * Since the file extents are already in-core, all we have to do is
686 * give up the space for the btree root and pitch the leaf block.
688 STATIC int /* error */
689 xfs_bmap_btree_to_extents(
690 xfs_trans_t *tp, /* transaction pointer */
691 xfs_inode_t *ip, /* incore inode pointer */
692 xfs_btree_cur_t *cur, /* btree cursor */
693 int *logflagsp, /* inode logging flags */
694 int whichfork) /* data or attr fork */
696 /* REFERENCED */
697 struct xfs_btree_block *cblock;/* child btree block */
698 xfs_fsblock_t cbno; /* child block number */
699 xfs_buf_t *cbp; /* child block's buffer */
700 int error; /* error return value */
701 xfs_ifork_t *ifp; /* inode fork data */
702 xfs_mount_t *mp; /* mount point structure */
703 __be64 *pp; /* ptr to block address */
704 struct xfs_btree_block *rblock;/* root btree block */
706 mp = ip->i_mount;
707 ifp = XFS_IFORK_PTR(ip, whichfork);
708 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
709 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
710 rblock = ifp->if_broot;
711 ASSERT(be16_to_cpu(rblock->bb_level) == 1);
712 ASSERT(be16_to_cpu(rblock->bb_numrecs) == 1);
713 ASSERT(xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0) == 1);
714 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, ifp->if_broot_bytes);
715 cbno = be64_to_cpu(*pp);
716 *logflagsp = 0;
717 #ifdef DEBUG
718 if ((error = xfs_btree_check_lptr(cur, cbno, 1)))
719 return error;
720 #endif
721 error = xfs_btree_read_bufl(mp, tp, cbno, 0, &cbp, XFS_BMAP_BTREE_REF,
722 &xfs_bmbt_buf_ops);
723 if (error)
724 return error;
725 cblock = XFS_BUF_TO_BLOCK(cbp);
726 if ((error = xfs_btree_check_block(cur, cblock, 0, cbp)))
727 return error;
728 xfs_bmap_add_free(cbno, 1, cur->bc_private.b.flist, mp);
729 ip->i_d.di_nblocks--;
730 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
731 xfs_trans_binval(tp, cbp);
732 if (cur->bc_bufs[0] == cbp)
733 cur->bc_bufs[0] = NULL;
734 xfs_iroot_realloc(ip, -1, whichfork);
735 ASSERT(ifp->if_broot == NULL);
736 ASSERT((ifp->if_flags & XFS_IFBROOT) == 0);
737 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
738 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
739 return 0;
743 * Convert an extents-format file into a btree-format file.
744 * The new file will have a root block (in the inode) and a single child block.
746 STATIC int /* error */
747 xfs_bmap_extents_to_btree(
748 xfs_trans_t *tp, /* transaction pointer */
749 xfs_inode_t *ip, /* incore inode pointer */
750 xfs_fsblock_t *firstblock, /* first-block-allocated */
751 xfs_bmap_free_t *flist, /* blocks freed in xaction */
752 xfs_btree_cur_t **curp, /* cursor returned to caller */
753 int wasdel, /* converting a delayed alloc */
754 int *logflagsp, /* inode logging flags */
755 int whichfork) /* data or attr fork */
757 struct xfs_btree_block *ablock; /* allocated (child) bt block */
758 xfs_buf_t *abp; /* buffer for ablock */
759 xfs_alloc_arg_t args; /* allocation arguments */
760 xfs_bmbt_rec_t *arp; /* child record pointer */
761 struct xfs_btree_block *block; /* btree root block */
762 xfs_btree_cur_t *cur; /* bmap btree cursor */
763 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
764 int error; /* error return value */
765 xfs_extnum_t i, cnt; /* extent record index */
766 xfs_ifork_t *ifp; /* inode fork pointer */
767 xfs_bmbt_key_t *kp; /* root block key pointer */
768 xfs_mount_t *mp; /* mount structure */
769 xfs_extnum_t nextents; /* number of file extents */
770 xfs_bmbt_ptr_t *pp; /* root block address pointer */
772 mp = ip->i_mount;
773 ifp = XFS_IFORK_PTR(ip, whichfork);
774 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS);
777 * Make space in the inode incore.
779 xfs_iroot_realloc(ip, 1, whichfork);
780 ifp->if_flags |= XFS_IFBROOT;
783 * Fill in the root.
785 block = ifp->if_broot;
786 if (xfs_sb_version_hascrc(&mp->m_sb))
787 xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL,
788 XFS_BMAP_CRC_MAGIC, 1, 1, ip->i_ino,
789 XFS_BTREE_LONG_PTRS | XFS_BTREE_CRC_BLOCKS);
790 else
791 xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL,
792 XFS_BMAP_MAGIC, 1, 1, ip->i_ino,
793 XFS_BTREE_LONG_PTRS);
796 * Need a cursor. Can't allocate until bb_level is filled in.
798 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
799 cur->bc_private.b.firstblock = *firstblock;
800 cur->bc_private.b.flist = flist;
801 cur->bc_private.b.flags = wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
803 * Convert to a btree with two levels, one record in root.
805 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_BTREE);
806 memset(&args, 0, sizeof(args));
807 args.tp = tp;
808 args.mp = mp;
809 args.firstblock = *firstblock;
810 if (*firstblock == NULLFSBLOCK) {
811 args.type = XFS_ALLOCTYPE_START_BNO;
812 args.fsbno = XFS_INO_TO_FSB(mp, ip->i_ino);
813 } else if (flist->xbf_low) {
814 args.type = XFS_ALLOCTYPE_START_BNO;
815 args.fsbno = *firstblock;
816 } else {
817 args.type = XFS_ALLOCTYPE_NEAR_BNO;
818 args.fsbno = *firstblock;
820 args.minlen = args.maxlen = args.prod = 1;
821 args.wasdel = wasdel;
822 *logflagsp = 0;
823 if ((error = xfs_alloc_vextent(&args))) {
824 xfs_iroot_realloc(ip, -1, whichfork);
825 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
826 return error;
829 * Allocation can't fail, the space was reserved.
831 ASSERT(args.fsbno != NULLFSBLOCK);
832 ASSERT(*firstblock == NULLFSBLOCK ||
833 args.agno == XFS_FSB_TO_AGNO(mp, *firstblock) ||
834 (flist->xbf_low &&
835 args.agno > XFS_FSB_TO_AGNO(mp, *firstblock)));
836 *firstblock = cur->bc_private.b.firstblock = args.fsbno;
837 cur->bc_private.b.allocated++;
838 ip->i_d.di_nblocks++;
839 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, 1L);
840 abp = xfs_btree_get_bufl(mp, tp, args.fsbno, 0);
842 * Fill in the child block.
844 abp->b_ops = &xfs_bmbt_buf_ops;
845 ablock = XFS_BUF_TO_BLOCK(abp);
846 if (xfs_sb_version_hascrc(&mp->m_sb))
847 xfs_btree_init_block_int(mp, ablock, abp->b_bn,
848 XFS_BMAP_CRC_MAGIC, 0, 0, ip->i_ino,
849 XFS_BTREE_LONG_PTRS | XFS_BTREE_CRC_BLOCKS);
850 else
851 xfs_btree_init_block_int(mp, ablock, abp->b_bn,
852 XFS_BMAP_MAGIC, 0, 0, ip->i_ino,
853 XFS_BTREE_LONG_PTRS);
855 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
856 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
857 for (cnt = i = 0; i < nextents; i++) {
858 ep = xfs_iext_get_ext(ifp, i);
859 if (!isnullstartblock(xfs_bmbt_get_startblock(ep))) {
860 arp->l0 = cpu_to_be64(ep->l0);
861 arp->l1 = cpu_to_be64(ep->l1);
862 arp++; cnt++;
865 ASSERT(cnt == XFS_IFORK_NEXTENTS(ip, whichfork));
866 xfs_btree_set_numrecs(ablock, cnt);
869 * Fill in the root key and pointer.
871 kp = XFS_BMBT_KEY_ADDR(mp, block, 1);
872 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
873 kp->br_startoff = cpu_to_be64(xfs_bmbt_disk_get_startoff(arp));
874 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, xfs_bmbt_get_maxrecs(cur,
875 be16_to_cpu(block->bb_level)));
876 *pp = cpu_to_be64(args.fsbno);
879 * Do all this logging at the end so that
880 * the root is at the right level.
882 xfs_btree_log_block(cur, abp, XFS_BB_ALL_BITS);
883 xfs_btree_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs));
884 ASSERT(*curp == NULL);
885 *curp = cur;
886 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fbroot(whichfork);
887 return 0;
891 * Convert a local file to an extents file.
892 * This code is out of bounds for data forks of regular files,
893 * since the file data needs to get logged so things will stay consistent.
894 * (The bmap-level manipulations are ok, though).
896 void
897 xfs_bmap_local_to_extents_empty(
898 struct xfs_inode *ip,
899 int whichfork)
901 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
903 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
904 ASSERT(ifp->if_bytes == 0);
905 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) == 0);
907 xfs_bmap_forkoff_reset(ip, whichfork);
908 ifp->if_flags &= ~XFS_IFINLINE;
909 ifp->if_flags |= XFS_IFEXTENTS;
910 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
914 STATIC int /* error */
915 xfs_bmap_local_to_extents(
916 xfs_trans_t *tp, /* transaction pointer */
917 xfs_inode_t *ip, /* incore inode pointer */
918 xfs_fsblock_t *firstblock, /* first block allocated in xaction */
919 xfs_extlen_t total, /* total blocks needed by transaction */
920 int *logflagsp, /* inode logging flags */
921 int whichfork,
922 void (*init_fn)(struct xfs_trans *tp,
923 struct xfs_buf *bp,
924 struct xfs_inode *ip,
925 struct xfs_ifork *ifp))
927 int error = 0;
928 int flags; /* logging flags returned */
929 xfs_ifork_t *ifp; /* inode fork pointer */
930 xfs_alloc_arg_t args; /* allocation arguments */
931 xfs_buf_t *bp; /* buffer for extent block */
932 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
935 * We don't want to deal with the case of keeping inode data inline yet.
936 * So sending the data fork of a regular inode is invalid.
938 ASSERT(!(S_ISREG(ip->i_d.di_mode) && whichfork == XFS_DATA_FORK));
939 ifp = XFS_IFORK_PTR(ip, whichfork);
940 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
942 if (!ifp->if_bytes) {
943 xfs_bmap_local_to_extents_empty(ip, whichfork);
944 flags = XFS_ILOG_CORE;
945 goto done;
948 flags = 0;
949 error = 0;
950 ASSERT((ifp->if_flags & (XFS_IFINLINE|XFS_IFEXTENTS|XFS_IFEXTIREC)) ==
951 XFS_IFINLINE);
952 memset(&args, 0, sizeof(args));
953 args.tp = tp;
954 args.mp = ip->i_mount;
955 args.firstblock = *firstblock;
957 * Allocate a block. We know we need only one, since the
958 * file currently fits in an inode.
960 if (*firstblock == NULLFSBLOCK) {
961 args.fsbno = XFS_INO_TO_FSB(args.mp, ip->i_ino);
962 args.type = XFS_ALLOCTYPE_START_BNO;
963 } else {
964 args.fsbno = *firstblock;
965 args.type = XFS_ALLOCTYPE_NEAR_BNO;
967 args.total = total;
968 args.minlen = args.maxlen = args.prod = 1;
969 error = xfs_alloc_vextent(&args);
970 if (error)
971 goto done;
973 /* Can't fail, the space was reserved. */
974 ASSERT(args.fsbno != NULLFSBLOCK);
975 ASSERT(args.len == 1);
976 *firstblock = args.fsbno;
977 bp = xfs_btree_get_bufl(args.mp, tp, args.fsbno, 0);
980 * Initialise the block and copy the data
982 * Note: init_fn must set the buffer log item type correctly!
984 init_fn(tp, bp, ip, ifp);
986 /* account for the change in fork size and log everything */
987 xfs_trans_log_buf(tp, bp, 0, ifp->if_bytes - 1);
988 xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
989 xfs_bmap_local_to_extents_empty(ip, whichfork);
990 flags |= XFS_ILOG_CORE;
992 xfs_iext_add(ifp, 0, 1);
993 ep = xfs_iext_get_ext(ifp, 0);
994 xfs_bmbt_set_allf(ep, 0, args.fsbno, 1, XFS_EXT_NORM);
995 trace_xfs_bmap_post_update(ip, 0,
996 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0,
997 _THIS_IP_);
998 XFS_IFORK_NEXT_SET(ip, whichfork, 1);
999 ip->i_d.di_nblocks = 1;
1000 xfs_trans_mod_dquot_byino(tp, ip,
1001 XFS_TRANS_DQ_BCOUNT, 1L);
1002 flags |= xfs_ilog_fext(whichfork);
1004 done:
1005 *logflagsp = flags;
1006 return error;
1010 * Called from xfs_bmap_add_attrfork to handle btree format files.
1012 STATIC int /* error */
1013 xfs_bmap_add_attrfork_btree(
1014 xfs_trans_t *tp, /* transaction pointer */
1015 xfs_inode_t *ip, /* incore inode pointer */
1016 xfs_fsblock_t *firstblock, /* first block allocated */
1017 xfs_bmap_free_t *flist, /* blocks to free at commit */
1018 int *flags) /* inode logging flags */
1020 xfs_btree_cur_t *cur; /* btree cursor */
1021 int error; /* error return value */
1022 xfs_mount_t *mp; /* file system mount struct */
1023 int stat; /* newroot status */
1025 mp = ip->i_mount;
1026 if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip))
1027 *flags |= XFS_ILOG_DBROOT;
1028 else {
1029 cur = xfs_bmbt_init_cursor(mp, tp, ip, XFS_DATA_FORK);
1030 cur->bc_private.b.flist = flist;
1031 cur->bc_private.b.firstblock = *firstblock;
1032 if ((error = xfs_bmbt_lookup_ge(cur, 0, 0, 0, &stat)))
1033 goto error0;
1034 /* must be at least one entry */
1035 XFS_WANT_CORRUPTED_GOTO(stat == 1, error0);
1036 if ((error = xfs_btree_new_iroot(cur, flags, &stat)))
1037 goto error0;
1038 if (stat == 0) {
1039 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1040 return XFS_ERROR(ENOSPC);
1042 *firstblock = cur->bc_private.b.firstblock;
1043 cur->bc_private.b.allocated = 0;
1044 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1046 return 0;
1047 error0:
1048 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1049 return error;
1053 * Called from xfs_bmap_add_attrfork to handle extents format files.
1055 STATIC int /* error */
1056 xfs_bmap_add_attrfork_extents(
1057 xfs_trans_t *tp, /* transaction pointer */
1058 xfs_inode_t *ip, /* incore inode pointer */
1059 xfs_fsblock_t *firstblock, /* first block allocated */
1060 xfs_bmap_free_t *flist, /* blocks to free at commit */
1061 int *flags) /* inode logging flags */
1063 xfs_btree_cur_t *cur; /* bmap btree cursor */
1064 int error; /* error return value */
1066 if (ip->i_d.di_nextents * sizeof(xfs_bmbt_rec_t) <= XFS_IFORK_DSIZE(ip))
1067 return 0;
1068 cur = NULL;
1069 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist, &cur, 0,
1070 flags, XFS_DATA_FORK);
1071 if (cur) {
1072 cur->bc_private.b.allocated = 0;
1073 xfs_btree_del_cursor(cur,
1074 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
1076 return error;
1080 * Called from xfs_bmap_add_attrfork to handle local format files. Each
1081 * different data fork content type needs a different callout to do the
1082 * conversion. Some are basic and only require special block initialisation
1083 * callouts for the data formating, others (directories) are so specialised they
1084 * handle everything themselves.
1086 * XXX (dgc): investigate whether directory conversion can use the generic
1087 * formatting callout. It should be possible - it's just a very complex
1088 * formatter.
1090 STATIC int /* error */
1091 xfs_bmap_add_attrfork_local(
1092 xfs_trans_t *tp, /* transaction pointer */
1093 xfs_inode_t *ip, /* incore inode pointer */
1094 xfs_fsblock_t *firstblock, /* first block allocated */
1095 xfs_bmap_free_t *flist, /* blocks to free at commit */
1096 int *flags) /* inode logging flags */
1098 xfs_da_args_t dargs; /* args for dir/attr code */
1100 if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip))
1101 return 0;
1103 if (S_ISDIR(ip->i_d.di_mode)) {
1104 memset(&dargs, 0, sizeof(dargs));
1105 dargs.geo = ip->i_mount->m_dir_geo;
1106 dargs.dp = ip;
1107 dargs.firstblock = firstblock;
1108 dargs.flist = flist;
1109 dargs.total = dargs.geo->fsbcount;
1110 dargs.whichfork = XFS_DATA_FORK;
1111 dargs.trans = tp;
1112 return xfs_dir2_sf_to_block(&dargs);
1115 if (S_ISLNK(ip->i_d.di_mode))
1116 return xfs_bmap_local_to_extents(tp, ip, firstblock, 1,
1117 flags, XFS_DATA_FORK,
1118 xfs_symlink_local_to_remote);
1120 /* should only be called for types that support local format data */
1121 ASSERT(0);
1122 return EFSCORRUPTED;
1126 * Convert inode from non-attributed to attributed.
1127 * Must not be in a transaction, ip must not be locked.
1129 int /* error code */
1130 xfs_bmap_add_attrfork(
1131 xfs_inode_t *ip, /* incore inode pointer */
1132 int size, /* space new attribute needs */
1133 int rsvd) /* xact may use reserved blks */
1135 xfs_fsblock_t firstblock; /* 1st block/ag allocated */
1136 xfs_bmap_free_t flist; /* freed extent records */
1137 xfs_mount_t *mp; /* mount structure */
1138 xfs_trans_t *tp; /* transaction pointer */
1139 int blks; /* space reservation */
1140 int version = 1; /* superblock attr version */
1141 int committed; /* xaction was committed */
1142 int logflags; /* logging flags */
1143 int error; /* error return value */
1144 int cancel_flags = 0;
1146 ASSERT(XFS_IFORK_Q(ip) == 0);
1148 mp = ip->i_mount;
1149 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
1150 tp = xfs_trans_alloc(mp, XFS_TRANS_ADDAFORK);
1151 blks = XFS_ADDAFORK_SPACE_RES(mp);
1152 if (rsvd)
1153 tp->t_flags |= XFS_TRANS_RESERVE;
1154 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_addafork, blks, 0);
1155 if (error) {
1156 xfs_trans_cancel(tp, 0);
1157 return error;
1159 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1160 xfs_ilock(ip, XFS_ILOCK_EXCL);
1161 error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ?
1162 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
1163 XFS_QMOPT_RES_REGBLKS);
1164 if (error)
1165 goto trans_cancel;
1166 cancel_flags |= XFS_TRANS_ABORT;
1167 if (XFS_IFORK_Q(ip))
1168 goto trans_cancel;
1169 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) {
1171 * For inodes coming from pre-6.2 filesystems.
1173 ASSERT(ip->i_d.di_aformat == 0);
1174 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1176 ASSERT(ip->i_d.di_anextents == 0);
1178 xfs_trans_ijoin(tp, ip, 0);
1179 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1181 switch (ip->i_d.di_format) {
1182 case XFS_DINODE_FMT_DEV:
1183 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
1184 break;
1185 case XFS_DINODE_FMT_UUID:
1186 ip->i_d.di_forkoff = roundup(sizeof(uuid_t), 8) >> 3;
1187 break;
1188 case XFS_DINODE_FMT_LOCAL:
1189 case XFS_DINODE_FMT_EXTENTS:
1190 case XFS_DINODE_FMT_BTREE:
1191 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
1192 if (!ip->i_d.di_forkoff)
1193 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
1194 else if (mp->m_flags & XFS_MOUNT_ATTR2)
1195 version = 2;
1196 break;
1197 default:
1198 ASSERT(0);
1199 error = XFS_ERROR(EINVAL);
1200 goto trans_cancel;
1203 ASSERT(ip->i_afp == NULL);
1204 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
1205 ip->i_afp->if_flags = XFS_IFEXTENTS;
1206 logflags = 0;
1207 xfs_bmap_init(&flist, &firstblock);
1208 switch (ip->i_d.di_format) {
1209 case XFS_DINODE_FMT_LOCAL:
1210 error = xfs_bmap_add_attrfork_local(tp, ip, &firstblock, &flist,
1211 &logflags);
1212 break;
1213 case XFS_DINODE_FMT_EXTENTS:
1214 error = xfs_bmap_add_attrfork_extents(tp, ip, &firstblock,
1215 &flist, &logflags);
1216 break;
1217 case XFS_DINODE_FMT_BTREE:
1218 error = xfs_bmap_add_attrfork_btree(tp, ip, &firstblock, &flist,
1219 &logflags);
1220 break;
1221 default:
1222 error = 0;
1223 break;
1225 if (logflags)
1226 xfs_trans_log_inode(tp, ip, logflags);
1227 if (error)
1228 goto bmap_cancel;
1229 if (!xfs_sb_version_hasattr(&mp->m_sb) ||
1230 (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) {
1231 __int64_t sbfields = 0;
1233 spin_lock(&mp->m_sb_lock);
1234 if (!xfs_sb_version_hasattr(&mp->m_sb)) {
1235 xfs_sb_version_addattr(&mp->m_sb);
1236 sbfields |= XFS_SB_VERSIONNUM;
1238 if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) {
1239 xfs_sb_version_addattr2(&mp->m_sb);
1240 sbfields |= (XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
1242 if (sbfields) {
1243 spin_unlock(&mp->m_sb_lock);
1244 xfs_mod_sb(tp, sbfields);
1245 } else
1246 spin_unlock(&mp->m_sb_lock);
1249 error = xfs_bmap_finish(&tp, &flist, &committed);
1250 if (error)
1251 goto bmap_cancel;
1252 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1253 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1254 return error;
1256 bmap_cancel:
1257 xfs_bmap_cancel(&flist);
1258 trans_cancel:
1259 xfs_trans_cancel(tp, cancel_flags);
1260 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1261 return error;
1265 * Internal and external extent tree search functions.
1269 * Read in the extents to if_extents.
1270 * All inode fields are set up by caller, we just traverse the btree
1271 * and copy the records in. If the file system cannot contain unwritten
1272 * extents, the records are checked for no "state" flags.
1274 int /* error */
1275 xfs_bmap_read_extents(
1276 xfs_trans_t *tp, /* transaction pointer */
1277 xfs_inode_t *ip, /* incore inode */
1278 int whichfork) /* data or attr fork */
1280 struct xfs_btree_block *block; /* current btree block */
1281 xfs_fsblock_t bno; /* block # of "block" */
1282 xfs_buf_t *bp; /* buffer for "block" */
1283 int error; /* error return value */
1284 xfs_exntfmt_t exntf; /* XFS_EXTFMT_NOSTATE, if checking */
1285 xfs_extnum_t i, j; /* index into the extents list */
1286 xfs_ifork_t *ifp; /* fork structure */
1287 int level; /* btree level, for checking */
1288 xfs_mount_t *mp; /* file system mount structure */
1289 __be64 *pp; /* pointer to block address */
1290 /* REFERENCED */
1291 xfs_extnum_t room; /* number of entries there's room for */
1293 bno = NULLFSBLOCK;
1294 mp = ip->i_mount;
1295 ifp = XFS_IFORK_PTR(ip, whichfork);
1296 exntf = (whichfork != XFS_DATA_FORK) ? XFS_EXTFMT_NOSTATE :
1297 XFS_EXTFMT_INODE(ip);
1298 block = ifp->if_broot;
1300 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
1302 level = be16_to_cpu(block->bb_level);
1303 ASSERT(level > 0);
1304 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
1305 bno = be64_to_cpu(*pp);
1306 ASSERT(bno != NULLDFSBNO);
1307 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
1308 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
1310 * Go down the tree until leaf level is reached, following the first
1311 * pointer (leftmost) at each level.
1313 while (level-- > 0) {
1314 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1315 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1316 if (error)
1317 return error;
1318 block = XFS_BUF_TO_BLOCK(bp);
1319 XFS_WANT_CORRUPTED_GOTO(
1320 xfs_bmap_sanity_check(mp, bp, level),
1321 error0);
1322 if (level == 0)
1323 break;
1324 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
1325 bno = be64_to_cpu(*pp);
1326 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
1327 xfs_trans_brelse(tp, bp);
1330 * Here with bp and block set to the leftmost leaf node in the tree.
1332 room = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1333 i = 0;
1335 * Loop over all leaf nodes. Copy information to the extent records.
1337 for (;;) {
1338 xfs_bmbt_rec_t *frp;
1339 xfs_fsblock_t nextbno;
1340 xfs_extnum_t num_recs;
1341 xfs_extnum_t start;
1343 num_recs = xfs_btree_get_numrecs(block);
1344 if (unlikely(i + num_recs > room)) {
1345 ASSERT(i + num_recs <= room);
1346 xfs_warn(ip->i_mount,
1347 "corrupt dinode %Lu, (btree extents).",
1348 (unsigned long long) ip->i_ino);
1349 XFS_CORRUPTION_ERROR("xfs_bmap_read_extents(1)",
1350 XFS_ERRLEVEL_LOW, ip->i_mount, block);
1351 goto error0;
1353 XFS_WANT_CORRUPTED_GOTO(
1354 xfs_bmap_sanity_check(mp, bp, 0),
1355 error0);
1357 * Read-ahead the next leaf block, if any.
1359 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
1360 if (nextbno != NULLFSBLOCK)
1361 xfs_btree_reada_bufl(mp, nextbno, 1,
1362 &xfs_bmbt_buf_ops);
1364 * Copy records into the extent records.
1366 frp = XFS_BMBT_REC_ADDR(mp, block, 1);
1367 start = i;
1368 for (j = 0; j < num_recs; j++, i++, frp++) {
1369 xfs_bmbt_rec_host_t *trp = xfs_iext_get_ext(ifp, i);
1370 trp->l0 = be64_to_cpu(frp->l0);
1371 trp->l1 = be64_to_cpu(frp->l1);
1373 if (exntf == XFS_EXTFMT_NOSTATE) {
1375 * Check all attribute bmap btree records and
1376 * any "older" data bmap btree records for a
1377 * set bit in the "extent flag" position.
1379 if (unlikely(xfs_check_nostate_extents(ifp,
1380 start, num_recs))) {
1381 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
1382 XFS_ERRLEVEL_LOW,
1383 ip->i_mount);
1384 goto error0;
1387 xfs_trans_brelse(tp, bp);
1388 bno = nextbno;
1390 * If we've reached the end, stop.
1392 if (bno == NULLFSBLOCK)
1393 break;
1394 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1395 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1396 if (error)
1397 return error;
1398 block = XFS_BUF_TO_BLOCK(bp);
1400 ASSERT(i == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
1401 ASSERT(i == XFS_IFORK_NEXTENTS(ip, whichfork));
1402 XFS_BMAP_TRACE_EXLIST(ip, i, whichfork);
1403 return 0;
1404 error0:
1405 xfs_trans_brelse(tp, bp);
1406 return XFS_ERROR(EFSCORRUPTED);
1411 * Search the extent records for the entry containing block bno.
1412 * If bno lies in a hole, point to the next entry. If bno lies
1413 * past eof, *eofp will be set, and *prevp will contain the last
1414 * entry (null if none). Else, *lastxp will be set to the index
1415 * of the found entry; *gotp will contain the entry.
1417 STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1418 xfs_bmap_search_multi_extents(
1419 xfs_ifork_t *ifp, /* inode fork pointer */
1420 xfs_fileoff_t bno, /* block number searched for */
1421 int *eofp, /* out: end of file found */
1422 xfs_extnum_t *lastxp, /* out: last extent index */
1423 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1424 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1426 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1427 xfs_extnum_t lastx; /* last extent index */
1430 * Initialize the extent entry structure to catch access to
1431 * uninitialized br_startblock field.
1433 gotp->br_startoff = 0xffa5a5a5a5a5a5a5LL;
1434 gotp->br_blockcount = 0xa55a5a5a5a5a5a5aLL;
1435 gotp->br_state = XFS_EXT_INVALID;
1436 #if XFS_BIG_BLKNOS
1437 gotp->br_startblock = 0xffffa5a5a5a5a5a5LL;
1438 #else
1439 gotp->br_startblock = 0xffffa5a5;
1440 #endif
1441 prevp->br_startoff = NULLFILEOFF;
1443 ep = xfs_iext_bno_to_ext(ifp, bno, &lastx);
1444 if (lastx > 0) {
1445 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx - 1), prevp);
1447 if (lastx < (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))) {
1448 xfs_bmbt_get_all(ep, gotp);
1449 *eofp = 0;
1450 } else {
1451 if (lastx > 0) {
1452 *gotp = *prevp;
1454 *eofp = 1;
1455 ep = NULL;
1457 *lastxp = lastx;
1458 return ep;
1462 * Search the extents list for the inode, for the extent containing bno.
1463 * If bno lies in a hole, point to the next entry. If bno lies past eof,
1464 * *eofp will be set, and *prevp will contain the last entry (null if none).
1465 * Else, *lastxp will be set to the index of the found
1466 * entry; *gotp will contain the entry.
1468 STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1469 xfs_bmap_search_extents(
1470 xfs_inode_t *ip, /* incore inode pointer */
1471 xfs_fileoff_t bno, /* block number searched for */
1472 int fork, /* data or attr fork */
1473 int *eofp, /* out: end of file found */
1474 xfs_extnum_t *lastxp, /* out: last extent index */
1475 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1476 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1478 xfs_ifork_t *ifp; /* inode fork pointer */
1479 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1481 XFS_STATS_INC(xs_look_exlist);
1482 ifp = XFS_IFORK_PTR(ip, fork);
1484 ep = xfs_bmap_search_multi_extents(ifp, bno, eofp, lastxp, gotp, prevp);
1486 if (unlikely(!(gotp->br_startblock) && (*lastxp != NULLEXTNUM) &&
1487 !(XFS_IS_REALTIME_INODE(ip) && fork == XFS_DATA_FORK))) {
1488 xfs_alert_tag(ip->i_mount, XFS_PTAG_FSBLOCK_ZERO,
1489 "Access to block zero in inode %llu "
1490 "start_block: %llx start_off: %llx "
1491 "blkcnt: %llx extent-state: %x lastx: %x",
1492 (unsigned long long)ip->i_ino,
1493 (unsigned long long)gotp->br_startblock,
1494 (unsigned long long)gotp->br_startoff,
1495 (unsigned long long)gotp->br_blockcount,
1496 gotp->br_state, *lastxp);
1497 *lastxp = NULLEXTNUM;
1498 *eofp = 1;
1499 return NULL;
1501 return ep;
1505 * Returns the file-relative block number of the first unused block(s)
1506 * in the file with at least "len" logically contiguous blocks free.
1507 * This is the lowest-address hole if the file has holes, else the first block
1508 * past the end of file.
1509 * Return 0 if the file is currently local (in-inode).
1511 int /* error */
1512 xfs_bmap_first_unused(
1513 xfs_trans_t *tp, /* transaction pointer */
1514 xfs_inode_t *ip, /* incore inode */
1515 xfs_extlen_t len, /* size of hole to find */
1516 xfs_fileoff_t *first_unused, /* unused block */
1517 int whichfork) /* data or attr fork */
1519 int error; /* error return value */
1520 int idx; /* extent record index */
1521 xfs_ifork_t *ifp; /* inode fork pointer */
1522 xfs_fileoff_t lastaddr; /* last block number seen */
1523 xfs_fileoff_t lowest; /* lowest useful block */
1524 xfs_fileoff_t max; /* starting useful block */
1525 xfs_fileoff_t off; /* offset for this block */
1526 xfs_extnum_t nextents; /* number of extent entries */
1528 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE ||
1529 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ||
1530 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
1531 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1532 *first_unused = 0;
1533 return 0;
1535 ifp = XFS_IFORK_PTR(ip, whichfork);
1536 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1537 (error = xfs_iread_extents(tp, ip, whichfork)))
1538 return error;
1539 lowest = *first_unused;
1540 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1541 for (idx = 0, lastaddr = 0, max = lowest; idx < nextents; idx++) {
1542 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
1543 off = xfs_bmbt_get_startoff(ep);
1545 * See if the hole before this extent will work.
1547 if (off >= lowest + len && off - max >= len) {
1548 *first_unused = max;
1549 return 0;
1551 lastaddr = off + xfs_bmbt_get_blockcount(ep);
1552 max = XFS_FILEOFF_MAX(lastaddr, lowest);
1554 *first_unused = max;
1555 return 0;
1559 * Returns the file-relative block number of the last block - 1 before
1560 * last_block (input value) in the file.
1561 * This is not based on i_size, it is based on the extent records.
1562 * Returns 0 for local files, as they do not have extent records.
1564 int /* error */
1565 xfs_bmap_last_before(
1566 xfs_trans_t *tp, /* transaction pointer */
1567 xfs_inode_t *ip, /* incore inode */
1568 xfs_fileoff_t *last_block, /* last block */
1569 int whichfork) /* data or attr fork */
1571 xfs_fileoff_t bno; /* input file offset */
1572 int eof; /* hit end of file */
1573 xfs_bmbt_rec_host_t *ep; /* pointer to last extent */
1574 int error; /* error return value */
1575 xfs_bmbt_irec_t got; /* current extent value */
1576 xfs_ifork_t *ifp; /* inode fork pointer */
1577 xfs_extnum_t lastx; /* last extent used */
1578 xfs_bmbt_irec_t prev; /* previous extent value */
1580 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1581 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
1582 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
1583 return XFS_ERROR(EIO);
1584 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1585 *last_block = 0;
1586 return 0;
1588 ifp = XFS_IFORK_PTR(ip, whichfork);
1589 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1590 (error = xfs_iread_extents(tp, ip, whichfork)))
1591 return error;
1592 bno = *last_block - 1;
1593 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
1594 &prev);
1595 if (eof || xfs_bmbt_get_startoff(ep) > bno) {
1596 if (prev.br_startoff == NULLFILEOFF)
1597 *last_block = 0;
1598 else
1599 *last_block = prev.br_startoff + prev.br_blockcount;
1602 * Otherwise *last_block is already the right answer.
1604 return 0;
1608 xfs_bmap_last_extent(
1609 struct xfs_trans *tp,
1610 struct xfs_inode *ip,
1611 int whichfork,
1612 struct xfs_bmbt_irec *rec,
1613 int *is_empty)
1615 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1616 int error;
1617 int nextents;
1619 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1620 error = xfs_iread_extents(tp, ip, whichfork);
1621 if (error)
1622 return error;
1625 nextents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
1626 if (nextents == 0) {
1627 *is_empty = 1;
1628 return 0;
1631 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, nextents - 1), rec);
1632 *is_empty = 0;
1633 return 0;
1637 * Check the last inode extent to determine whether this allocation will result
1638 * in blocks being allocated at the end of the file. When we allocate new data
1639 * blocks at the end of the file which do not start at the previous data block,
1640 * we will try to align the new blocks at stripe unit boundaries.
1642 * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be
1643 * at, or past the EOF.
1645 STATIC int
1646 xfs_bmap_isaeof(
1647 struct xfs_bmalloca *bma,
1648 int whichfork)
1650 struct xfs_bmbt_irec rec;
1651 int is_empty;
1652 int error;
1654 bma->aeof = 0;
1655 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec,
1656 &is_empty);
1657 if (error)
1658 return error;
1660 if (is_empty) {
1661 bma->aeof = 1;
1662 return 0;
1666 * Check if we are allocation or past the last extent, or at least into
1667 * the last delayed allocated extent.
1669 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount ||
1670 (bma->offset >= rec.br_startoff &&
1671 isnullstartblock(rec.br_startblock));
1672 return 0;
1676 * Returns the file-relative block number of the first block past eof in
1677 * the file. This is not based on i_size, it is based on the extent records.
1678 * Returns 0 for local files, as they do not have extent records.
1681 xfs_bmap_last_offset(
1682 struct xfs_inode *ip,
1683 xfs_fileoff_t *last_block,
1684 int whichfork)
1686 struct xfs_bmbt_irec rec;
1687 int is_empty;
1688 int error;
1690 *last_block = 0;
1692 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL)
1693 return 0;
1695 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1696 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1697 return XFS_ERROR(EIO);
1699 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty);
1700 if (error || is_empty)
1701 return error;
1703 *last_block = rec.br_startoff + rec.br_blockcount;
1704 return 0;
1708 * Returns whether the selected fork of the inode has exactly one
1709 * block or not. For the data fork we check this matches di_size,
1710 * implying the file's range is 0..bsize-1.
1712 int /* 1=>1 block, 0=>otherwise */
1713 xfs_bmap_one_block(
1714 xfs_inode_t *ip, /* incore inode */
1715 int whichfork) /* data or attr fork */
1717 xfs_bmbt_rec_host_t *ep; /* ptr to fork's extent */
1718 xfs_ifork_t *ifp; /* inode fork pointer */
1719 int rval; /* return value */
1720 xfs_bmbt_irec_t s; /* internal version of extent */
1722 #ifndef DEBUG
1723 if (whichfork == XFS_DATA_FORK)
1724 return XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize;
1725 #endif /* !DEBUG */
1726 if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1)
1727 return 0;
1728 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1729 return 0;
1730 ifp = XFS_IFORK_PTR(ip, whichfork);
1731 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
1732 ep = xfs_iext_get_ext(ifp, 0);
1733 xfs_bmbt_get_all(ep, &s);
1734 rval = s.br_startoff == 0 && s.br_blockcount == 1;
1735 if (rval && whichfork == XFS_DATA_FORK)
1736 ASSERT(XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize);
1737 return rval;
1741 * Extent tree manipulation functions used during allocation.
1745 * Convert a delayed allocation to a real allocation.
1747 STATIC int /* error */
1748 xfs_bmap_add_extent_delay_real(
1749 struct xfs_bmalloca *bma)
1751 struct xfs_bmbt_irec *new = &bma->got;
1752 int diff; /* temp value */
1753 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
1754 int error; /* error return value */
1755 int i; /* temp state */
1756 xfs_ifork_t *ifp; /* inode fork pointer */
1757 xfs_fileoff_t new_endoff; /* end offset of new entry */
1758 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
1759 /* left is 0, right is 1, prev is 2 */
1760 int rval=0; /* return value (logging flags) */
1761 int state = 0;/* state bits, accessed thru macros */
1762 xfs_filblks_t da_new; /* new count del alloc blocks used */
1763 xfs_filblks_t da_old; /* old count del alloc blocks used */
1764 xfs_filblks_t temp=0; /* value for da_new calculations */
1765 xfs_filblks_t temp2=0;/* value for da_new calculations */
1766 int tmp_rval; /* partial logging flags */
1768 ifp = XFS_IFORK_PTR(bma->ip, XFS_DATA_FORK);
1770 ASSERT(bma->idx >= 0);
1771 ASSERT(bma->idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
1772 ASSERT(!isnullstartblock(new->br_startblock));
1773 ASSERT(!bma->cur ||
1774 (bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
1776 XFS_STATS_INC(xs_add_exlist);
1778 #define LEFT r[0]
1779 #define RIGHT r[1]
1780 #define PREV r[2]
1783 * Set up a bunch of variables to make the tests simpler.
1785 ep = xfs_iext_get_ext(ifp, bma->idx);
1786 xfs_bmbt_get_all(ep, &PREV);
1787 new_endoff = new->br_startoff + new->br_blockcount;
1788 ASSERT(PREV.br_startoff <= new->br_startoff);
1789 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
1791 da_old = startblockval(PREV.br_startblock);
1792 da_new = 0;
1795 * Set flags determining what part of the previous delayed allocation
1796 * extent is being replaced by a real allocation.
1798 if (PREV.br_startoff == new->br_startoff)
1799 state |= BMAP_LEFT_FILLING;
1800 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
1801 state |= BMAP_RIGHT_FILLING;
1804 * Check and set flags if this segment has a left neighbor.
1805 * Don't set contiguous if the combined extent would be too large.
1807 if (bma->idx > 0) {
1808 state |= BMAP_LEFT_VALID;
1809 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &LEFT);
1811 if (isnullstartblock(LEFT.br_startblock))
1812 state |= BMAP_LEFT_DELAY;
1815 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
1816 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
1817 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
1818 LEFT.br_state == new->br_state &&
1819 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1820 state |= BMAP_LEFT_CONTIG;
1823 * Check and set flags if this segment has a right neighbor.
1824 * Don't set contiguous if the combined extent would be too large.
1825 * Also check for all-three-contiguous being too large.
1827 if (bma->idx < bma->ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
1828 state |= BMAP_RIGHT_VALID;
1829 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx + 1), &RIGHT);
1831 if (isnullstartblock(RIGHT.br_startblock))
1832 state |= BMAP_RIGHT_DELAY;
1835 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1836 new_endoff == RIGHT.br_startoff &&
1837 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
1838 new->br_state == RIGHT.br_state &&
1839 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1840 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1841 BMAP_RIGHT_FILLING)) !=
1842 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1843 BMAP_RIGHT_FILLING) ||
1844 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1845 <= MAXEXTLEN))
1846 state |= BMAP_RIGHT_CONTIG;
1848 error = 0;
1850 * Switch out based on the FILLING and CONTIG state bits.
1852 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1853 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
1854 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1855 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
1857 * Filling in all of a previously delayed allocation extent.
1858 * The left and right neighbors are both contiguous with new.
1860 bma->idx--;
1861 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1862 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
1863 LEFT.br_blockcount + PREV.br_blockcount +
1864 RIGHT.br_blockcount);
1865 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1867 xfs_iext_remove(bma->ip, bma->idx + 1, 2, state);
1868 bma->ip->i_d.di_nextents--;
1869 if (bma->cur == NULL)
1870 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1871 else {
1872 rval = XFS_ILOG_CORE;
1873 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
1874 RIGHT.br_startblock,
1875 RIGHT.br_blockcount, &i);
1876 if (error)
1877 goto done;
1878 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1879 error = xfs_btree_delete(bma->cur, &i);
1880 if (error)
1881 goto done;
1882 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1883 error = xfs_btree_decrement(bma->cur, 0, &i);
1884 if (error)
1885 goto done;
1886 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1887 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
1888 LEFT.br_startblock,
1889 LEFT.br_blockcount +
1890 PREV.br_blockcount +
1891 RIGHT.br_blockcount, LEFT.br_state);
1892 if (error)
1893 goto done;
1895 break;
1897 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
1899 * Filling in all of a previously delayed allocation extent.
1900 * The left neighbor is contiguous, the right is not.
1902 bma->idx--;
1904 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1905 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
1906 LEFT.br_blockcount + PREV.br_blockcount);
1907 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1909 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1910 if (bma->cur == NULL)
1911 rval = XFS_ILOG_DEXT;
1912 else {
1913 rval = 0;
1914 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
1915 LEFT.br_startblock, LEFT.br_blockcount,
1916 &i);
1917 if (error)
1918 goto done;
1919 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1920 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
1921 LEFT.br_startblock,
1922 LEFT.br_blockcount +
1923 PREV.br_blockcount, LEFT.br_state);
1924 if (error)
1925 goto done;
1927 break;
1929 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
1931 * Filling in all of a previously delayed allocation extent.
1932 * The right neighbor is contiguous, the left is not.
1934 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1935 xfs_bmbt_set_startblock(ep, new->br_startblock);
1936 xfs_bmbt_set_blockcount(ep,
1937 PREV.br_blockcount + RIGHT.br_blockcount);
1938 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1940 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1941 if (bma->cur == NULL)
1942 rval = XFS_ILOG_DEXT;
1943 else {
1944 rval = 0;
1945 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
1946 RIGHT.br_startblock,
1947 RIGHT.br_blockcount, &i);
1948 if (error)
1949 goto done;
1950 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1951 error = xfs_bmbt_update(bma->cur, PREV.br_startoff,
1952 new->br_startblock,
1953 PREV.br_blockcount +
1954 RIGHT.br_blockcount, PREV.br_state);
1955 if (error)
1956 goto done;
1958 break;
1960 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
1962 * Filling in all of a previously delayed allocation extent.
1963 * Neither the left nor right neighbors are contiguous with
1964 * the new one.
1966 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1967 xfs_bmbt_set_startblock(ep, new->br_startblock);
1968 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1970 bma->ip->i_d.di_nextents++;
1971 if (bma->cur == NULL)
1972 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1973 else {
1974 rval = XFS_ILOG_CORE;
1975 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
1976 new->br_startblock, new->br_blockcount,
1977 &i);
1978 if (error)
1979 goto done;
1980 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
1981 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
1982 error = xfs_btree_insert(bma->cur, &i);
1983 if (error)
1984 goto done;
1985 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1987 break;
1989 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
1991 * Filling in the first part of a previous delayed allocation.
1992 * The left neighbor is contiguous.
1994 trace_xfs_bmap_pre_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
1995 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx - 1),
1996 LEFT.br_blockcount + new->br_blockcount);
1997 xfs_bmbt_set_startoff(ep,
1998 PREV.br_startoff + new->br_blockcount);
1999 trace_xfs_bmap_post_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
2001 temp = PREV.br_blockcount - new->br_blockcount;
2002 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2003 xfs_bmbt_set_blockcount(ep, temp);
2004 if (bma->cur == NULL)
2005 rval = XFS_ILOG_DEXT;
2006 else {
2007 rval = 0;
2008 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
2009 LEFT.br_startblock, LEFT.br_blockcount,
2010 &i);
2011 if (error)
2012 goto done;
2013 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2014 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
2015 LEFT.br_startblock,
2016 LEFT.br_blockcount +
2017 new->br_blockcount,
2018 LEFT.br_state);
2019 if (error)
2020 goto done;
2022 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2023 startblockval(PREV.br_startblock));
2024 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2025 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2027 bma->idx--;
2028 break;
2030 case BMAP_LEFT_FILLING:
2032 * Filling in the first part of a previous delayed allocation.
2033 * The left neighbor is not contiguous.
2035 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2036 xfs_bmbt_set_startoff(ep, new_endoff);
2037 temp = PREV.br_blockcount - new->br_blockcount;
2038 xfs_bmbt_set_blockcount(ep, temp);
2039 xfs_iext_insert(bma->ip, bma->idx, 1, new, state);
2040 bma->ip->i_d.di_nextents++;
2041 if (bma->cur == NULL)
2042 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2043 else {
2044 rval = XFS_ILOG_CORE;
2045 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
2046 new->br_startblock, new->br_blockcount,
2047 &i);
2048 if (error)
2049 goto done;
2050 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2051 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2052 error = xfs_btree_insert(bma->cur, &i);
2053 if (error)
2054 goto done;
2055 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2058 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2059 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2060 bma->firstblock, bma->flist,
2061 &bma->cur, 1, &tmp_rval, XFS_DATA_FORK);
2062 rval |= tmp_rval;
2063 if (error)
2064 goto done;
2066 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2067 startblockval(PREV.br_startblock) -
2068 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2069 ep = xfs_iext_get_ext(ifp, bma->idx + 1);
2070 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2071 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2072 break;
2074 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2076 * Filling in the last part of a previous delayed allocation.
2077 * The right neighbor is contiguous with the new allocation.
2079 temp = PREV.br_blockcount - new->br_blockcount;
2080 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2081 xfs_bmbt_set_blockcount(ep, temp);
2082 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, bma->idx + 1),
2083 new->br_startoff, new->br_startblock,
2084 new->br_blockcount + RIGHT.br_blockcount,
2085 RIGHT.br_state);
2086 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2087 if (bma->cur == NULL)
2088 rval = XFS_ILOG_DEXT;
2089 else {
2090 rval = 0;
2091 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
2092 RIGHT.br_startblock,
2093 RIGHT.br_blockcount, &i);
2094 if (error)
2095 goto done;
2096 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2097 error = xfs_bmbt_update(bma->cur, new->br_startoff,
2098 new->br_startblock,
2099 new->br_blockcount +
2100 RIGHT.br_blockcount,
2101 RIGHT.br_state);
2102 if (error)
2103 goto done;
2106 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2107 startblockval(PREV.br_startblock));
2108 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2109 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2110 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2112 bma->idx++;
2113 break;
2115 case BMAP_RIGHT_FILLING:
2117 * Filling in the last part of a previous delayed allocation.
2118 * The right neighbor is not contiguous.
2120 temp = PREV.br_blockcount - new->br_blockcount;
2121 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2122 xfs_bmbt_set_blockcount(ep, temp);
2123 xfs_iext_insert(bma->ip, bma->idx + 1, 1, new, state);
2124 bma->ip->i_d.di_nextents++;
2125 if (bma->cur == NULL)
2126 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2127 else {
2128 rval = XFS_ILOG_CORE;
2129 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
2130 new->br_startblock, new->br_blockcount,
2131 &i);
2132 if (error)
2133 goto done;
2134 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2135 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2136 error = xfs_btree_insert(bma->cur, &i);
2137 if (error)
2138 goto done;
2139 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2142 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2143 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2144 bma->firstblock, bma->flist, &bma->cur, 1,
2145 &tmp_rval, XFS_DATA_FORK);
2146 rval |= tmp_rval;
2147 if (error)
2148 goto done;
2150 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2151 startblockval(PREV.br_startblock) -
2152 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2153 ep = xfs_iext_get_ext(ifp, bma->idx);
2154 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2155 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2157 bma->idx++;
2158 break;
2160 case 0:
2162 * Filling in the middle part of a previous delayed allocation.
2163 * Contiguity is impossible here.
2164 * This case is avoided almost all the time.
2166 * We start with a delayed allocation:
2168 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
2169 * PREV @ idx
2171 * and we are allocating:
2172 * +rrrrrrrrrrrrrrrrr+
2173 * new
2175 * and we set it up for insertion as:
2176 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
2177 * new
2178 * PREV @ idx LEFT RIGHT
2179 * inserted at idx + 1
2181 temp = new->br_startoff - PREV.br_startoff;
2182 temp2 = PREV.br_startoff + PREV.br_blockcount - new_endoff;
2183 trace_xfs_bmap_pre_update(bma->ip, bma->idx, 0, _THIS_IP_);
2184 xfs_bmbt_set_blockcount(ep, temp); /* truncate PREV */
2185 LEFT = *new;
2186 RIGHT.br_state = PREV.br_state;
2187 RIGHT.br_startblock = nullstartblock(
2188 (int)xfs_bmap_worst_indlen(bma->ip, temp2));
2189 RIGHT.br_startoff = new_endoff;
2190 RIGHT.br_blockcount = temp2;
2191 /* insert LEFT (r[0]) and RIGHT (r[1]) at the same time */
2192 xfs_iext_insert(bma->ip, bma->idx + 1, 2, &LEFT, state);
2193 bma->ip->i_d.di_nextents++;
2194 if (bma->cur == NULL)
2195 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2196 else {
2197 rval = XFS_ILOG_CORE;
2198 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
2199 new->br_startblock, new->br_blockcount,
2200 &i);
2201 if (error)
2202 goto done;
2203 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2204 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2205 error = xfs_btree_insert(bma->cur, &i);
2206 if (error)
2207 goto done;
2208 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2211 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2212 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2213 bma->firstblock, bma->flist, &bma->cur,
2214 1, &tmp_rval, XFS_DATA_FORK);
2215 rval |= tmp_rval;
2216 if (error)
2217 goto done;
2219 temp = xfs_bmap_worst_indlen(bma->ip, temp);
2220 temp2 = xfs_bmap_worst_indlen(bma->ip, temp2);
2221 diff = (int)(temp + temp2 - startblockval(PREV.br_startblock) -
2222 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2223 if (diff > 0) {
2224 error = xfs_icsb_modify_counters(bma->ip->i_mount,
2225 XFS_SBS_FDBLOCKS,
2226 -((int64_t)diff), 0);
2227 ASSERT(!error);
2228 if (error)
2229 goto done;
2232 ep = xfs_iext_get_ext(ifp, bma->idx);
2233 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
2234 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2235 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
2236 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, bma->idx + 2),
2237 nullstartblock((int)temp2));
2238 trace_xfs_bmap_post_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
2240 bma->idx++;
2241 da_new = temp + temp2;
2242 break;
2244 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2245 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2246 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2247 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2248 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2249 case BMAP_LEFT_CONTIG:
2250 case BMAP_RIGHT_CONTIG:
2252 * These cases are all impossible.
2254 ASSERT(0);
2257 /* convert to a btree if necessary */
2258 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2259 int tmp_logflags; /* partial log flag return val */
2261 ASSERT(bma->cur == NULL);
2262 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2263 bma->firstblock, bma->flist, &bma->cur,
2264 da_old > 0, &tmp_logflags, XFS_DATA_FORK);
2265 bma->logflags |= tmp_logflags;
2266 if (error)
2267 goto done;
2270 /* adjust for changes in reserved delayed indirect blocks */
2271 if (da_old || da_new) {
2272 temp = da_new;
2273 if (bma->cur)
2274 temp += bma->cur->bc_private.b.allocated;
2275 ASSERT(temp <= da_old);
2276 if (temp < da_old)
2277 xfs_icsb_modify_counters(bma->ip->i_mount,
2278 XFS_SBS_FDBLOCKS,
2279 (int64_t)(da_old - temp), 0);
2282 /* clear out the allocated field, done with it now in any case. */
2283 if (bma->cur)
2284 bma->cur->bc_private.b.allocated = 0;
2286 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, XFS_DATA_FORK);
2287 done:
2288 bma->logflags |= rval;
2289 return error;
2290 #undef LEFT
2291 #undef RIGHT
2292 #undef PREV
2296 * Convert an unwritten allocation to a real allocation or vice versa.
2298 STATIC int /* error */
2299 xfs_bmap_add_extent_unwritten_real(
2300 struct xfs_trans *tp,
2301 xfs_inode_t *ip, /* incore inode pointer */
2302 xfs_extnum_t *idx, /* extent number to update/insert */
2303 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
2304 xfs_bmbt_irec_t *new, /* new data to add to file extents */
2305 xfs_fsblock_t *first, /* pointer to firstblock variable */
2306 xfs_bmap_free_t *flist, /* list of extents to be freed */
2307 int *logflagsp) /* inode logging flags */
2309 xfs_btree_cur_t *cur; /* btree cursor */
2310 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
2311 int error; /* error return value */
2312 int i; /* temp state */
2313 xfs_ifork_t *ifp; /* inode fork pointer */
2314 xfs_fileoff_t new_endoff; /* end offset of new entry */
2315 xfs_exntst_t newext; /* new extent state */
2316 xfs_exntst_t oldext; /* old extent state */
2317 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
2318 /* left is 0, right is 1, prev is 2 */
2319 int rval=0; /* return value (logging flags) */
2320 int state = 0;/* state bits, accessed thru macros */
2322 *logflagsp = 0;
2324 cur = *curp;
2325 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
2327 ASSERT(*idx >= 0);
2328 ASSERT(*idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
2329 ASSERT(!isnullstartblock(new->br_startblock));
2331 XFS_STATS_INC(xs_add_exlist);
2333 #define LEFT r[0]
2334 #define RIGHT r[1]
2335 #define PREV r[2]
2338 * Set up a bunch of variables to make the tests simpler.
2340 error = 0;
2341 ep = xfs_iext_get_ext(ifp, *idx);
2342 xfs_bmbt_get_all(ep, &PREV);
2343 newext = new->br_state;
2344 oldext = (newext == XFS_EXT_UNWRITTEN) ?
2345 XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
2346 ASSERT(PREV.br_state == oldext);
2347 new_endoff = new->br_startoff + new->br_blockcount;
2348 ASSERT(PREV.br_startoff <= new->br_startoff);
2349 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
2352 * Set flags determining what part of the previous oldext allocation
2353 * extent is being replaced by a newext allocation.
2355 if (PREV.br_startoff == new->br_startoff)
2356 state |= BMAP_LEFT_FILLING;
2357 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
2358 state |= BMAP_RIGHT_FILLING;
2361 * Check and set flags if this segment has a left neighbor.
2362 * Don't set contiguous if the combined extent would be too large.
2364 if (*idx > 0) {
2365 state |= BMAP_LEFT_VALID;
2366 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &LEFT);
2368 if (isnullstartblock(LEFT.br_startblock))
2369 state |= BMAP_LEFT_DELAY;
2372 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2373 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
2374 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
2375 LEFT.br_state == newext &&
2376 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2377 state |= BMAP_LEFT_CONTIG;
2380 * Check and set flags if this segment has a right neighbor.
2381 * Don't set contiguous if the combined extent would be too large.
2382 * Also check for all-three-contiguous being too large.
2384 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
2385 state |= BMAP_RIGHT_VALID;
2386 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx + 1), &RIGHT);
2387 if (isnullstartblock(RIGHT.br_startblock))
2388 state |= BMAP_RIGHT_DELAY;
2391 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2392 new_endoff == RIGHT.br_startoff &&
2393 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
2394 newext == RIGHT.br_state &&
2395 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
2396 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2397 BMAP_RIGHT_FILLING)) !=
2398 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2399 BMAP_RIGHT_FILLING) ||
2400 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
2401 <= MAXEXTLEN))
2402 state |= BMAP_RIGHT_CONTIG;
2405 * Switch out based on the FILLING and CONTIG state bits.
2407 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2408 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
2409 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2410 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2412 * Setting all of a previous oldext extent to newext.
2413 * The left and right neighbors are both contiguous with new.
2415 --*idx;
2417 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2418 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
2419 LEFT.br_blockcount + PREV.br_blockcount +
2420 RIGHT.br_blockcount);
2421 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2423 xfs_iext_remove(ip, *idx + 1, 2, state);
2424 ip->i_d.di_nextents -= 2;
2425 if (cur == NULL)
2426 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2427 else {
2428 rval = XFS_ILOG_CORE;
2429 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2430 RIGHT.br_startblock,
2431 RIGHT.br_blockcount, &i)))
2432 goto done;
2433 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2434 if ((error = xfs_btree_delete(cur, &i)))
2435 goto done;
2436 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2437 if ((error = xfs_btree_decrement(cur, 0, &i)))
2438 goto done;
2439 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2440 if ((error = xfs_btree_delete(cur, &i)))
2441 goto done;
2442 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2443 if ((error = xfs_btree_decrement(cur, 0, &i)))
2444 goto done;
2445 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2446 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2447 LEFT.br_startblock,
2448 LEFT.br_blockcount + PREV.br_blockcount +
2449 RIGHT.br_blockcount, LEFT.br_state)))
2450 goto done;
2452 break;
2454 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2456 * Setting all of a previous oldext extent to newext.
2457 * The left neighbor is contiguous, the right is not.
2459 --*idx;
2461 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2462 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
2463 LEFT.br_blockcount + PREV.br_blockcount);
2464 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2466 xfs_iext_remove(ip, *idx + 1, 1, state);
2467 ip->i_d.di_nextents--;
2468 if (cur == NULL)
2469 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2470 else {
2471 rval = XFS_ILOG_CORE;
2472 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2473 PREV.br_startblock, PREV.br_blockcount,
2474 &i)))
2475 goto done;
2476 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2477 if ((error = xfs_btree_delete(cur, &i)))
2478 goto done;
2479 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2480 if ((error = xfs_btree_decrement(cur, 0, &i)))
2481 goto done;
2482 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2483 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2484 LEFT.br_startblock,
2485 LEFT.br_blockcount + PREV.br_blockcount,
2486 LEFT.br_state)))
2487 goto done;
2489 break;
2491 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2493 * Setting all of a previous oldext extent to newext.
2494 * The right neighbor is contiguous, the left is not.
2496 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2497 xfs_bmbt_set_blockcount(ep,
2498 PREV.br_blockcount + RIGHT.br_blockcount);
2499 xfs_bmbt_set_state(ep, newext);
2500 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2501 xfs_iext_remove(ip, *idx + 1, 1, state);
2502 ip->i_d.di_nextents--;
2503 if (cur == NULL)
2504 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2505 else {
2506 rval = XFS_ILOG_CORE;
2507 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2508 RIGHT.br_startblock,
2509 RIGHT.br_blockcount, &i)))
2510 goto done;
2511 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2512 if ((error = xfs_btree_delete(cur, &i)))
2513 goto done;
2514 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2515 if ((error = xfs_btree_decrement(cur, 0, &i)))
2516 goto done;
2517 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2518 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2519 new->br_startblock,
2520 new->br_blockcount + RIGHT.br_blockcount,
2521 newext)))
2522 goto done;
2524 break;
2526 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
2528 * Setting all of a previous oldext extent to newext.
2529 * Neither the left nor right neighbors are contiguous with
2530 * the new one.
2532 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2533 xfs_bmbt_set_state(ep, newext);
2534 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2536 if (cur == NULL)
2537 rval = XFS_ILOG_DEXT;
2538 else {
2539 rval = 0;
2540 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2541 new->br_startblock, new->br_blockcount,
2542 &i)))
2543 goto done;
2544 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2545 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2546 new->br_startblock, new->br_blockcount,
2547 newext)))
2548 goto done;
2550 break;
2552 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
2554 * Setting the first part of a previous oldext extent to newext.
2555 * The left neighbor is contiguous.
2557 trace_xfs_bmap_pre_update(ip, *idx - 1, state, _THIS_IP_);
2558 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx - 1),
2559 LEFT.br_blockcount + new->br_blockcount);
2560 xfs_bmbt_set_startoff(ep,
2561 PREV.br_startoff + new->br_blockcount);
2562 trace_xfs_bmap_post_update(ip, *idx - 1, state, _THIS_IP_);
2564 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2565 xfs_bmbt_set_startblock(ep,
2566 new->br_startblock + new->br_blockcount);
2567 xfs_bmbt_set_blockcount(ep,
2568 PREV.br_blockcount - new->br_blockcount);
2569 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2571 --*idx;
2573 if (cur == NULL)
2574 rval = XFS_ILOG_DEXT;
2575 else {
2576 rval = 0;
2577 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2578 PREV.br_startblock, PREV.br_blockcount,
2579 &i)))
2580 goto done;
2581 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2582 if ((error = xfs_bmbt_update(cur,
2583 PREV.br_startoff + new->br_blockcount,
2584 PREV.br_startblock + new->br_blockcount,
2585 PREV.br_blockcount - new->br_blockcount,
2586 oldext)))
2587 goto done;
2588 if ((error = xfs_btree_decrement(cur, 0, &i)))
2589 goto done;
2590 error = xfs_bmbt_update(cur, LEFT.br_startoff,
2591 LEFT.br_startblock,
2592 LEFT.br_blockcount + new->br_blockcount,
2593 LEFT.br_state);
2594 if (error)
2595 goto done;
2597 break;
2599 case BMAP_LEFT_FILLING:
2601 * Setting the first part of a previous oldext extent to newext.
2602 * The left neighbor is not contiguous.
2604 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2605 ASSERT(ep && xfs_bmbt_get_state(ep) == oldext);
2606 xfs_bmbt_set_startoff(ep, new_endoff);
2607 xfs_bmbt_set_blockcount(ep,
2608 PREV.br_blockcount - new->br_blockcount);
2609 xfs_bmbt_set_startblock(ep,
2610 new->br_startblock + new->br_blockcount);
2611 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2613 xfs_iext_insert(ip, *idx, 1, new, state);
2614 ip->i_d.di_nextents++;
2615 if (cur == NULL)
2616 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2617 else {
2618 rval = XFS_ILOG_CORE;
2619 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2620 PREV.br_startblock, PREV.br_blockcount,
2621 &i)))
2622 goto done;
2623 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2624 if ((error = xfs_bmbt_update(cur,
2625 PREV.br_startoff + new->br_blockcount,
2626 PREV.br_startblock + new->br_blockcount,
2627 PREV.br_blockcount - new->br_blockcount,
2628 oldext)))
2629 goto done;
2630 cur->bc_rec.b = *new;
2631 if ((error = xfs_btree_insert(cur, &i)))
2632 goto done;
2633 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2635 break;
2637 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2639 * Setting the last part of a previous oldext extent to newext.
2640 * The right neighbor is contiguous with the new allocation.
2642 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2643 xfs_bmbt_set_blockcount(ep,
2644 PREV.br_blockcount - new->br_blockcount);
2645 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2647 ++*idx;
2649 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2650 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
2651 new->br_startoff, new->br_startblock,
2652 new->br_blockcount + RIGHT.br_blockcount, newext);
2653 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2655 if (cur == NULL)
2656 rval = XFS_ILOG_DEXT;
2657 else {
2658 rval = 0;
2659 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2660 PREV.br_startblock,
2661 PREV.br_blockcount, &i)))
2662 goto done;
2663 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2664 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2665 PREV.br_startblock,
2666 PREV.br_blockcount - new->br_blockcount,
2667 oldext)))
2668 goto done;
2669 if ((error = xfs_btree_increment(cur, 0, &i)))
2670 goto done;
2671 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2672 new->br_startblock,
2673 new->br_blockcount + RIGHT.br_blockcount,
2674 newext)))
2675 goto done;
2677 break;
2679 case BMAP_RIGHT_FILLING:
2681 * Setting the last part of a previous oldext extent to newext.
2682 * The right neighbor is not contiguous.
2684 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2685 xfs_bmbt_set_blockcount(ep,
2686 PREV.br_blockcount - new->br_blockcount);
2687 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2689 ++*idx;
2690 xfs_iext_insert(ip, *idx, 1, new, state);
2692 ip->i_d.di_nextents++;
2693 if (cur == NULL)
2694 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2695 else {
2696 rval = XFS_ILOG_CORE;
2697 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2698 PREV.br_startblock, PREV.br_blockcount,
2699 &i)))
2700 goto done;
2701 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2702 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2703 PREV.br_startblock,
2704 PREV.br_blockcount - new->br_blockcount,
2705 oldext)))
2706 goto done;
2707 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2708 new->br_startblock, new->br_blockcount,
2709 &i)))
2710 goto done;
2711 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2712 cur->bc_rec.b.br_state = XFS_EXT_NORM;
2713 if ((error = xfs_btree_insert(cur, &i)))
2714 goto done;
2715 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2717 break;
2719 case 0:
2721 * Setting the middle part of a previous oldext extent to
2722 * newext. Contiguity is impossible here.
2723 * One extent becomes three extents.
2725 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2726 xfs_bmbt_set_blockcount(ep,
2727 new->br_startoff - PREV.br_startoff);
2728 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2730 r[0] = *new;
2731 r[1].br_startoff = new_endoff;
2732 r[1].br_blockcount =
2733 PREV.br_startoff + PREV.br_blockcount - new_endoff;
2734 r[1].br_startblock = new->br_startblock + new->br_blockcount;
2735 r[1].br_state = oldext;
2737 ++*idx;
2738 xfs_iext_insert(ip, *idx, 2, &r[0], state);
2740 ip->i_d.di_nextents += 2;
2741 if (cur == NULL)
2742 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2743 else {
2744 rval = XFS_ILOG_CORE;
2745 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2746 PREV.br_startblock, PREV.br_blockcount,
2747 &i)))
2748 goto done;
2749 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2750 /* new right extent - oldext */
2751 if ((error = xfs_bmbt_update(cur, r[1].br_startoff,
2752 r[1].br_startblock, r[1].br_blockcount,
2753 r[1].br_state)))
2754 goto done;
2755 /* new left extent - oldext */
2756 cur->bc_rec.b = PREV;
2757 cur->bc_rec.b.br_blockcount =
2758 new->br_startoff - PREV.br_startoff;
2759 if ((error = xfs_btree_insert(cur, &i)))
2760 goto done;
2761 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2763 * Reset the cursor to the position of the new extent
2764 * we are about to insert as we can't trust it after
2765 * the previous insert.
2767 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2768 new->br_startblock, new->br_blockcount,
2769 &i)))
2770 goto done;
2771 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2772 /* new middle extent - newext */
2773 cur->bc_rec.b.br_state = new->br_state;
2774 if ((error = xfs_btree_insert(cur, &i)))
2775 goto done;
2776 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2778 break;
2780 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2781 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2782 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2783 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2784 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2785 case BMAP_LEFT_CONTIG:
2786 case BMAP_RIGHT_CONTIG:
2788 * These cases are all impossible.
2790 ASSERT(0);
2793 /* convert to a btree if necessary */
2794 if (xfs_bmap_needs_btree(ip, XFS_DATA_FORK)) {
2795 int tmp_logflags; /* partial log flag return val */
2797 ASSERT(cur == NULL);
2798 error = xfs_bmap_extents_to_btree(tp, ip, first, flist, &cur,
2799 0, &tmp_logflags, XFS_DATA_FORK);
2800 *logflagsp |= tmp_logflags;
2801 if (error)
2802 goto done;
2805 /* clear out the allocated field, done with it now in any case. */
2806 if (cur) {
2807 cur->bc_private.b.allocated = 0;
2808 *curp = cur;
2811 xfs_bmap_check_leaf_extents(*curp, ip, XFS_DATA_FORK);
2812 done:
2813 *logflagsp |= rval;
2814 return error;
2815 #undef LEFT
2816 #undef RIGHT
2817 #undef PREV
2821 * Convert a hole to a delayed allocation.
2823 STATIC void
2824 xfs_bmap_add_extent_hole_delay(
2825 xfs_inode_t *ip, /* incore inode pointer */
2826 xfs_extnum_t *idx, /* extent number to update/insert */
2827 xfs_bmbt_irec_t *new) /* new data to add to file extents */
2829 xfs_ifork_t *ifp; /* inode fork pointer */
2830 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2831 xfs_filblks_t newlen=0; /* new indirect size */
2832 xfs_filblks_t oldlen=0; /* old indirect size */
2833 xfs_bmbt_irec_t right; /* right neighbor extent entry */
2834 int state; /* state bits, accessed thru macros */
2835 xfs_filblks_t temp=0; /* temp for indirect calculations */
2837 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
2838 state = 0;
2839 ASSERT(isnullstartblock(new->br_startblock));
2842 * Check and set flags if this segment has a left neighbor
2844 if (*idx > 0) {
2845 state |= BMAP_LEFT_VALID;
2846 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &left);
2848 if (isnullstartblock(left.br_startblock))
2849 state |= BMAP_LEFT_DELAY;
2853 * Check and set flags if the current (right) segment exists.
2854 * If it doesn't exist, we're converting the hole at end-of-file.
2856 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
2857 state |= BMAP_RIGHT_VALID;
2858 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx), &right);
2860 if (isnullstartblock(right.br_startblock))
2861 state |= BMAP_RIGHT_DELAY;
2865 * Set contiguity flags on the left and right neighbors.
2866 * Don't let extents get too large, even if the pieces are contiguous.
2868 if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) &&
2869 left.br_startoff + left.br_blockcount == new->br_startoff &&
2870 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2871 state |= BMAP_LEFT_CONTIG;
2873 if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) &&
2874 new->br_startoff + new->br_blockcount == right.br_startoff &&
2875 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2876 (!(state & BMAP_LEFT_CONTIG) ||
2877 (left.br_blockcount + new->br_blockcount +
2878 right.br_blockcount <= MAXEXTLEN)))
2879 state |= BMAP_RIGHT_CONTIG;
2882 * Switch out based on the contiguity flags.
2884 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2885 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2887 * New allocation is contiguous with delayed allocations
2888 * on the left and on the right.
2889 * Merge all three into a single extent record.
2891 --*idx;
2892 temp = left.br_blockcount + new->br_blockcount +
2893 right.br_blockcount;
2895 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2896 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
2897 oldlen = startblockval(left.br_startblock) +
2898 startblockval(new->br_startblock) +
2899 startblockval(right.br_startblock);
2900 newlen = xfs_bmap_worst_indlen(ip, temp);
2901 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
2902 nullstartblock((int)newlen));
2903 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2905 xfs_iext_remove(ip, *idx + 1, 1, state);
2906 break;
2908 case BMAP_LEFT_CONTIG:
2910 * New allocation is contiguous with a delayed allocation
2911 * on the left.
2912 * Merge the new allocation with the left neighbor.
2914 --*idx;
2915 temp = left.br_blockcount + new->br_blockcount;
2917 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2918 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
2919 oldlen = startblockval(left.br_startblock) +
2920 startblockval(new->br_startblock);
2921 newlen = xfs_bmap_worst_indlen(ip, temp);
2922 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
2923 nullstartblock((int)newlen));
2924 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2925 break;
2927 case BMAP_RIGHT_CONTIG:
2929 * New allocation is contiguous with a delayed allocation
2930 * on the right.
2931 * Merge the new allocation with the right neighbor.
2933 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2934 temp = new->br_blockcount + right.br_blockcount;
2935 oldlen = startblockval(new->br_startblock) +
2936 startblockval(right.br_startblock);
2937 newlen = xfs_bmap_worst_indlen(ip, temp);
2938 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
2939 new->br_startoff,
2940 nullstartblock((int)newlen), temp, right.br_state);
2941 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2942 break;
2944 case 0:
2946 * New allocation is not contiguous with another
2947 * delayed allocation.
2948 * Insert a new entry.
2950 oldlen = newlen = 0;
2951 xfs_iext_insert(ip, *idx, 1, new, state);
2952 break;
2954 if (oldlen != newlen) {
2955 ASSERT(oldlen > newlen);
2956 xfs_icsb_modify_counters(ip->i_mount, XFS_SBS_FDBLOCKS,
2957 (int64_t)(oldlen - newlen), 0);
2959 * Nothing to do for disk quota accounting here.
2965 * Convert a hole to a real allocation.
2967 STATIC int /* error */
2968 xfs_bmap_add_extent_hole_real(
2969 struct xfs_bmalloca *bma,
2970 int whichfork)
2972 struct xfs_bmbt_irec *new = &bma->got;
2973 int error; /* error return value */
2974 int i; /* temp state */
2975 xfs_ifork_t *ifp; /* inode fork pointer */
2976 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2977 xfs_bmbt_irec_t right; /* right neighbor extent entry */
2978 int rval=0; /* return value (logging flags) */
2979 int state; /* state bits, accessed thru macros */
2981 ifp = XFS_IFORK_PTR(bma->ip, whichfork);
2983 ASSERT(bma->idx >= 0);
2984 ASSERT(bma->idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
2985 ASSERT(!isnullstartblock(new->br_startblock));
2986 ASSERT(!bma->cur ||
2987 !(bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
2989 XFS_STATS_INC(xs_add_exlist);
2991 state = 0;
2992 if (whichfork == XFS_ATTR_FORK)
2993 state |= BMAP_ATTRFORK;
2996 * Check and set flags if this segment has a left neighbor.
2998 if (bma->idx > 0) {
2999 state |= BMAP_LEFT_VALID;
3000 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &left);
3001 if (isnullstartblock(left.br_startblock))
3002 state |= BMAP_LEFT_DELAY;
3006 * Check and set flags if this segment has a current value.
3007 * Not true if we're inserting into the "hole" at eof.
3009 if (bma->idx < ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
3010 state |= BMAP_RIGHT_VALID;
3011 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &right);
3012 if (isnullstartblock(right.br_startblock))
3013 state |= BMAP_RIGHT_DELAY;
3017 * We're inserting a real allocation between "left" and "right".
3018 * Set the contiguity flags. Don't let extents get too large.
3020 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
3021 left.br_startoff + left.br_blockcount == new->br_startoff &&
3022 left.br_startblock + left.br_blockcount == new->br_startblock &&
3023 left.br_state == new->br_state &&
3024 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
3025 state |= BMAP_LEFT_CONTIG;
3027 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
3028 new->br_startoff + new->br_blockcount == right.br_startoff &&
3029 new->br_startblock + new->br_blockcount == right.br_startblock &&
3030 new->br_state == right.br_state &&
3031 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
3032 (!(state & BMAP_LEFT_CONTIG) ||
3033 left.br_blockcount + new->br_blockcount +
3034 right.br_blockcount <= MAXEXTLEN))
3035 state |= BMAP_RIGHT_CONTIG;
3037 error = 0;
3039 * Select which case we're in here, and implement it.
3041 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
3042 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
3044 * New allocation is contiguous with real allocations on the
3045 * left and on the right.
3046 * Merge all three into a single extent record.
3048 --bma->idx;
3049 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3050 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
3051 left.br_blockcount + new->br_blockcount +
3052 right.br_blockcount);
3053 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
3055 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
3057 XFS_IFORK_NEXT_SET(bma->ip, whichfork,
3058 XFS_IFORK_NEXTENTS(bma->ip, whichfork) - 1);
3059 if (bma->cur == NULL) {
3060 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
3061 } else {
3062 rval = XFS_ILOG_CORE;
3063 error = xfs_bmbt_lookup_eq(bma->cur, right.br_startoff,
3064 right.br_startblock, right.br_blockcount,
3065 &i);
3066 if (error)
3067 goto done;
3068 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3069 error = xfs_btree_delete(bma->cur, &i);
3070 if (error)
3071 goto done;
3072 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3073 error = xfs_btree_decrement(bma->cur, 0, &i);
3074 if (error)
3075 goto done;
3076 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3077 error = xfs_bmbt_update(bma->cur, left.br_startoff,
3078 left.br_startblock,
3079 left.br_blockcount +
3080 new->br_blockcount +
3081 right.br_blockcount,
3082 left.br_state);
3083 if (error)
3084 goto done;
3086 break;
3088 case BMAP_LEFT_CONTIG:
3090 * New allocation is contiguous with a real allocation
3091 * on the left.
3092 * Merge the new allocation with the left neighbor.
3094 --bma->idx;
3095 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3096 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
3097 left.br_blockcount + new->br_blockcount);
3098 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
3100 if (bma->cur == NULL) {
3101 rval = xfs_ilog_fext(whichfork);
3102 } else {
3103 rval = 0;
3104 error = xfs_bmbt_lookup_eq(bma->cur, left.br_startoff,
3105 left.br_startblock, left.br_blockcount,
3106 &i);
3107 if (error)
3108 goto done;
3109 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3110 error = xfs_bmbt_update(bma->cur, left.br_startoff,
3111 left.br_startblock,
3112 left.br_blockcount +
3113 new->br_blockcount,
3114 left.br_state);
3115 if (error)
3116 goto done;
3118 break;
3120 case BMAP_RIGHT_CONTIG:
3122 * New allocation is contiguous with a real allocation
3123 * on the right.
3124 * Merge the new allocation with the right neighbor.
3126 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3127 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, bma->idx),
3128 new->br_startoff, new->br_startblock,
3129 new->br_blockcount + right.br_blockcount,
3130 right.br_state);
3131 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
3133 if (bma->cur == NULL) {
3134 rval = xfs_ilog_fext(whichfork);
3135 } else {
3136 rval = 0;
3137 error = xfs_bmbt_lookup_eq(bma->cur,
3138 right.br_startoff,
3139 right.br_startblock,
3140 right.br_blockcount, &i);
3141 if (error)
3142 goto done;
3143 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3144 error = xfs_bmbt_update(bma->cur, new->br_startoff,
3145 new->br_startblock,
3146 new->br_blockcount +
3147 right.br_blockcount,
3148 right.br_state);
3149 if (error)
3150 goto done;
3152 break;
3154 case 0:
3156 * New allocation is not contiguous with another
3157 * real allocation.
3158 * Insert a new entry.
3160 xfs_iext_insert(bma->ip, bma->idx, 1, new, state);
3161 XFS_IFORK_NEXT_SET(bma->ip, whichfork,
3162 XFS_IFORK_NEXTENTS(bma->ip, whichfork) + 1);
3163 if (bma->cur == NULL) {
3164 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
3165 } else {
3166 rval = XFS_ILOG_CORE;
3167 error = xfs_bmbt_lookup_eq(bma->cur,
3168 new->br_startoff,
3169 new->br_startblock,
3170 new->br_blockcount, &i);
3171 if (error)
3172 goto done;
3173 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
3174 bma->cur->bc_rec.b.br_state = new->br_state;
3175 error = xfs_btree_insert(bma->cur, &i);
3176 if (error)
3177 goto done;
3178 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3180 break;
3183 /* convert to a btree if necessary */
3184 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
3185 int tmp_logflags; /* partial log flag return val */
3187 ASSERT(bma->cur == NULL);
3188 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
3189 bma->firstblock, bma->flist, &bma->cur,
3190 0, &tmp_logflags, whichfork);
3191 bma->logflags |= tmp_logflags;
3192 if (error)
3193 goto done;
3196 /* clear out the allocated field, done with it now in any case. */
3197 if (bma->cur)
3198 bma->cur->bc_private.b.allocated = 0;
3200 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, whichfork);
3201 done:
3202 bma->logflags |= rval;
3203 return error;
3207 * Functions used in the extent read, allocate and remove paths
3211 * Adjust the size of the new extent based on di_extsize and rt extsize.
3214 xfs_bmap_extsize_align(
3215 xfs_mount_t *mp,
3216 xfs_bmbt_irec_t *gotp, /* next extent pointer */
3217 xfs_bmbt_irec_t *prevp, /* previous extent pointer */
3218 xfs_extlen_t extsz, /* align to this extent size */
3219 int rt, /* is this a realtime inode? */
3220 int eof, /* is extent at end-of-file? */
3221 int delay, /* creating delalloc extent? */
3222 int convert, /* overwriting unwritten extent? */
3223 xfs_fileoff_t *offp, /* in/out: aligned offset */
3224 xfs_extlen_t *lenp) /* in/out: aligned length */
3226 xfs_fileoff_t orig_off; /* original offset */
3227 xfs_extlen_t orig_alen; /* original length */
3228 xfs_fileoff_t orig_end; /* original off+len */
3229 xfs_fileoff_t nexto; /* next file offset */
3230 xfs_fileoff_t prevo; /* previous file offset */
3231 xfs_fileoff_t align_off; /* temp for offset */
3232 xfs_extlen_t align_alen; /* temp for length */
3233 xfs_extlen_t temp; /* temp for calculations */
3235 if (convert)
3236 return 0;
3238 orig_off = align_off = *offp;
3239 orig_alen = align_alen = *lenp;
3240 orig_end = orig_off + orig_alen;
3243 * If this request overlaps an existing extent, then don't
3244 * attempt to perform any additional alignment.
3246 if (!delay && !eof &&
3247 (orig_off >= gotp->br_startoff) &&
3248 (orig_end <= gotp->br_startoff + gotp->br_blockcount)) {
3249 return 0;
3253 * If the file offset is unaligned vs. the extent size
3254 * we need to align it. This will be possible unless
3255 * the file was previously written with a kernel that didn't
3256 * perform this alignment, or if a truncate shot us in the
3257 * foot.
3259 temp = do_mod(orig_off, extsz);
3260 if (temp) {
3261 align_alen += temp;
3262 align_off -= temp;
3265 * Same adjustment for the end of the requested area.
3267 if ((temp = (align_alen % extsz))) {
3268 align_alen += extsz - temp;
3271 * If the previous block overlaps with this proposed allocation
3272 * then move the start forward without adjusting the length.
3274 if (prevp->br_startoff != NULLFILEOFF) {
3275 if (prevp->br_startblock == HOLESTARTBLOCK)
3276 prevo = prevp->br_startoff;
3277 else
3278 prevo = prevp->br_startoff + prevp->br_blockcount;
3279 } else
3280 prevo = 0;
3281 if (align_off != orig_off && align_off < prevo)
3282 align_off = prevo;
3284 * If the next block overlaps with this proposed allocation
3285 * then move the start back without adjusting the length,
3286 * but not before offset 0.
3287 * This may of course make the start overlap previous block,
3288 * and if we hit the offset 0 limit then the next block
3289 * can still overlap too.
3291 if (!eof && gotp->br_startoff != NULLFILEOFF) {
3292 if ((delay && gotp->br_startblock == HOLESTARTBLOCK) ||
3293 (!delay && gotp->br_startblock == DELAYSTARTBLOCK))
3294 nexto = gotp->br_startoff + gotp->br_blockcount;
3295 else
3296 nexto = gotp->br_startoff;
3297 } else
3298 nexto = NULLFILEOFF;
3299 if (!eof &&
3300 align_off + align_alen != orig_end &&
3301 align_off + align_alen > nexto)
3302 align_off = nexto > align_alen ? nexto - align_alen : 0;
3304 * If we're now overlapping the next or previous extent that
3305 * means we can't fit an extsz piece in this hole. Just move
3306 * the start forward to the first valid spot and set
3307 * the length so we hit the end.
3309 if (align_off != orig_off && align_off < prevo)
3310 align_off = prevo;
3311 if (align_off + align_alen != orig_end &&
3312 align_off + align_alen > nexto &&
3313 nexto != NULLFILEOFF) {
3314 ASSERT(nexto > prevo);
3315 align_alen = nexto - align_off;
3319 * If realtime, and the result isn't a multiple of the realtime
3320 * extent size we need to remove blocks until it is.
3322 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
3324 * We're not covering the original request, or
3325 * we won't be able to once we fix the length.
3327 if (orig_off < align_off ||
3328 orig_end > align_off + align_alen ||
3329 align_alen - temp < orig_alen)
3330 return XFS_ERROR(EINVAL);
3332 * Try to fix it by moving the start up.
3334 if (align_off + temp <= orig_off) {
3335 align_alen -= temp;
3336 align_off += temp;
3339 * Try to fix it by moving the end in.
3341 else if (align_off + align_alen - temp >= orig_end)
3342 align_alen -= temp;
3344 * Set the start to the minimum then trim the length.
3346 else {
3347 align_alen -= orig_off - align_off;
3348 align_off = orig_off;
3349 align_alen -= align_alen % mp->m_sb.sb_rextsize;
3352 * Result doesn't cover the request, fail it.
3354 if (orig_off < align_off || orig_end > align_off + align_alen)
3355 return XFS_ERROR(EINVAL);
3356 } else {
3357 ASSERT(orig_off >= align_off);
3358 ASSERT(orig_end <= align_off + align_alen);
3361 #ifdef DEBUG
3362 if (!eof && gotp->br_startoff != NULLFILEOFF)
3363 ASSERT(align_off + align_alen <= gotp->br_startoff);
3364 if (prevp->br_startoff != NULLFILEOFF)
3365 ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount);
3366 #endif
3368 *lenp = align_alen;
3369 *offp = align_off;
3370 return 0;
3373 #define XFS_ALLOC_GAP_UNITS 4
3375 void
3376 xfs_bmap_adjacent(
3377 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
3379 xfs_fsblock_t adjust; /* adjustment to block numbers */
3380 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3381 xfs_mount_t *mp; /* mount point structure */
3382 int nullfb; /* true if ap->firstblock isn't set */
3383 int rt; /* true if inode is realtime */
3385 #define ISVALID(x,y) \
3386 (rt ? \
3387 (x) < mp->m_sb.sb_rblocks : \
3388 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
3389 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
3390 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
3392 mp = ap->ip->i_mount;
3393 nullfb = *ap->firstblock == NULLFSBLOCK;
3394 rt = XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata;
3395 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
3397 * If allocating at eof, and there's a previous real block,
3398 * try to use its last block as our starting point.
3400 if (ap->eof && ap->prev.br_startoff != NULLFILEOFF &&
3401 !isnullstartblock(ap->prev.br_startblock) &&
3402 ISVALID(ap->prev.br_startblock + ap->prev.br_blockcount,
3403 ap->prev.br_startblock)) {
3404 ap->blkno = ap->prev.br_startblock + ap->prev.br_blockcount;
3406 * Adjust for the gap between prevp and us.
3408 adjust = ap->offset -
3409 (ap->prev.br_startoff + ap->prev.br_blockcount);
3410 if (adjust &&
3411 ISVALID(ap->blkno + adjust, ap->prev.br_startblock))
3412 ap->blkno += adjust;
3415 * If not at eof, then compare the two neighbor blocks.
3416 * Figure out whether either one gives us a good starting point,
3417 * and pick the better one.
3419 else if (!ap->eof) {
3420 xfs_fsblock_t gotbno; /* right side block number */
3421 xfs_fsblock_t gotdiff=0; /* right side difference */
3422 xfs_fsblock_t prevbno; /* left side block number */
3423 xfs_fsblock_t prevdiff=0; /* left side difference */
3426 * If there's a previous (left) block, select a requested
3427 * start block based on it.
3429 if (ap->prev.br_startoff != NULLFILEOFF &&
3430 !isnullstartblock(ap->prev.br_startblock) &&
3431 (prevbno = ap->prev.br_startblock +
3432 ap->prev.br_blockcount) &&
3433 ISVALID(prevbno, ap->prev.br_startblock)) {
3435 * Calculate gap to end of previous block.
3437 adjust = prevdiff = ap->offset -
3438 (ap->prev.br_startoff +
3439 ap->prev.br_blockcount);
3441 * Figure the startblock based on the previous block's
3442 * end and the gap size.
3443 * Heuristic!
3444 * If the gap is large relative to the piece we're
3445 * allocating, or using it gives us an invalid block
3446 * number, then just use the end of the previous block.
3448 if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
3449 ISVALID(prevbno + prevdiff,
3450 ap->prev.br_startblock))
3451 prevbno += adjust;
3452 else
3453 prevdiff += adjust;
3455 * If the firstblock forbids it, can't use it,
3456 * must use default.
3458 if (!rt && !nullfb &&
3459 XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno)
3460 prevbno = NULLFSBLOCK;
3463 * No previous block or can't follow it, just default.
3465 else
3466 prevbno = NULLFSBLOCK;
3468 * If there's a following (right) block, select a requested
3469 * start block based on it.
3471 if (!isnullstartblock(ap->got.br_startblock)) {
3473 * Calculate gap to start of next block.
3475 adjust = gotdiff = ap->got.br_startoff - ap->offset;
3477 * Figure the startblock based on the next block's
3478 * start and the gap size.
3480 gotbno = ap->got.br_startblock;
3482 * Heuristic!
3483 * If the gap is large relative to the piece we're
3484 * allocating, or using it gives us an invalid block
3485 * number, then just use the start of the next block
3486 * offset by our length.
3488 if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
3489 ISVALID(gotbno - gotdiff, gotbno))
3490 gotbno -= adjust;
3491 else if (ISVALID(gotbno - ap->length, gotbno)) {
3492 gotbno -= ap->length;
3493 gotdiff += adjust - ap->length;
3494 } else
3495 gotdiff += adjust;
3497 * If the firstblock forbids it, can't use it,
3498 * must use default.
3500 if (!rt && !nullfb &&
3501 XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno)
3502 gotbno = NULLFSBLOCK;
3505 * No next block, just default.
3507 else
3508 gotbno = NULLFSBLOCK;
3510 * If both valid, pick the better one, else the only good
3511 * one, else ap->blkno is already set (to 0 or the inode block).
3513 if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK)
3514 ap->blkno = prevdiff <= gotdiff ? prevbno : gotbno;
3515 else if (prevbno != NULLFSBLOCK)
3516 ap->blkno = prevbno;
3517 else if (gotbno != NULLFSBLOCK)
3518 ap->blkno = gotbno;
3520 #undef ISVALID
3523 static int
3524 xfs_bmap_longest_free_extent(
3525 struct xfs_trans *tp,
3526 xfs_agnumber_t ag,
3527 xfs_extlen_t *blen,
3528 int *notinit)
3530 struct xfs_mount *mp = tp->t_mountp;
3531 struct xfs_perag *pag;
3532 xfs_extlen_t longest;
3533 int error = 0;
3535 pag = xfs_perag_get(mp, ag);
3536 if (!pag->pagf_init) {
3537 error = xfs_alloc_pagf_init(mp, tp, ag, XFS_ALLOC_FLAG_TRYLOCK);
3538 if (error)
3539 goto out;
3541 if (!pag->pagf_init) {
3542 *notinit = 1;
3543 goto out;
3547 longest = xfs_alloc_longest_free_extent(mp, pag);
3548 if (*blen < longest)
3549 *blen = longest;
3551 out:
3552 xfs_perag_put(pag);
3553 return error;
3556 static void
3557 xfs_bmap_select_minlen(
3558 struct xfs_bmalloca *ap,
3559 struct xfs_alloc_arg *args,
3560 xfs_extlen_t *blen,
3561 int notinit)
3563 if (notinit || *blen < ap->minlen) {
3565 * Since we did a BUF_TRYLOCK above, it is possible that
3566 * there is space for this request.
3568 args->minlen = ap->minlen;
3569 } else if (*blen < args->maxlen) {
3571 * If the best seen length is less than the request length,
3572 * use the best as the minimum.
3574 args->minlen = *blen;
3575 } else {
3577 * Otherwise we've seen an extent as big as maxlen, use that
3578 * as the minimum.
3580 args->minlen = args->maxlen;
3584 STATIC int
3585 xfs_bmap_btalloc_nullfb(
3586 struct xfs_bmalloca *ap,
3587 struct xfs_alloc_arg *args,
3588 xfs_extlen_t *blen)
3590 struct xfs_mount *mp = ap->ip->i_mount;
3591 xfs_agnumber_t ag, startag;
3592 int notinit = 0;
3593 int error;
3595 args->type = XFS_ALLOCTYPE_START_BNO;
3596 args->total = ap->total;
3598 startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3599 if (startag == NULLAGNUMBER)
3600 startag = ag = 0;
3602 while (*blen < args->maxlen) {
3603 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3604 &notinit);
3605 if (error)
3606 return error;
3608 if (++ag == mp->m_sb.sb_agcount)
3609 ag = 0;
3610 if (ag == startag)
3611 break;
3614 xfs_bmap_select_minlen(ap, args, blen, notinit);
3615 return 0;
3618 STATIC int
3619 xfs_bmap_btalloc_filestreams(
3620 struct xfs_bmalloca *ap,
3621 struct xfs_alloc_arg *args,
3622 xfs_extlen_t *blen)
3624 struct xfs_mount *mp = ap->ip->i_mount;
3625 xfs_agnumber_t ag;
3626 int notinit = 0;
3627 int error;
3629 args->type = XFS_ALLOCTYPE_NEAR_BNO;
3630 args->total = ap->total;
3632 ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3633 if (ag == NULLAGNUMBER)
3634 ag = 0;
3636 error = xfs_bmap_longest_free_extent(args->tp, ag, blen, &notinit);
3637 if (error)
3638 return error;
3640 if (*blen < args->maxlen) {
3641 error = xfs_filestream_new_ag(ap, &ag);
3642 if (error)
3643 return error;
3645 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3646 &notinit);
3647 if (error)
3648 return error;
3652 xfs_bmap_select_minlen(ap, args, blen, notinit);
3655 * Set the failure fallback case to look in the selected AG as stream
3656 * may have moved.
3658 ap->blkno = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0);
3659 return 0;
3662 STATIC int
3663 xfs_bmap_btalloc(
3664 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
3666 xfs_mount_t *mp; /* mount point structure */
3667 xfs_alloctype_t atype = 0; /* type for allocation routines */
3668 xfs_extlen_t align; /* minimum allocation alignment */
3669 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3670 xfs_agnumber_t ag;
3671 xfs_alloc_arg_t args;
3672 xfs_extlen_t blen;
3673 xfs_extlen_t nextminlen = 0;
3674 int nullfb; /* true if ap->firstblock isn't set */
3675 int isaligned;
3676 int tryagain;
3677 int error;
3678 int stripe_align;
3680 ASSERT(ap->length);
3682 mp = ap->ip->i_mount;
3684 /* stripe alignment for allocation is determined by mount parameters */
3685 stripe_align = 0;
3686 if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC))
3687 stripe_align = mp->m_swidth;
3688 else if (mp->m_dalign)
3689 stripe_align = mp->m_dalign;
3691 align = ap->userdata ? xfs_get_extsz_hint(ap->ip) : 0;
3692 if (unlikely(align)) {
3693 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
3694 align, 0, ap->eof, 0, ap->conv,
3695 &ap->offset, &ap->length);
3696 ASSERT(!error);
3697 ASSERT(ap->length);
3701 nullfb = *ap->firstblock == NULLFSBLOCK;
3702 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
3703 if (nullfb) {
3704 if (ap->userdata && xfs_inode_is_filestream(ap->ip)) {
3705 ag = xfs_filestream_lookup_ag(ap->ip);
3706 ag = (ag != NULLAGNUMBER) ? ag : 0;
3707 ap->blkno = XFS_AGB_TO_FSB(mp, ag, 0);
3708 } else {
3709 ap->blkno = XFS_INO_TO_FSB(mp, ap->ip->i_ino);
3711 } else
3712 ap->blkno = *ap->firstblock;
3714 xfs_bmap_adjacent(ap);
3717 * If allowed, use ap->blkno; otherwise must use firstblock since
3718 * it's in the right allocation group.
3720 if (nullfb || XFS_FSB_TO_AGNO(mp, ap->blkno) == fb_agno)
3722 else
3723 ap->blkno = *ap->firstblock;
3725 * Normal allocation, done through xfs_alloc_vextent.
3727 tryagain = isaligned = 0;
3728 memset(&args, 0, sizeof(args));
3729 args.tp = ap->tp;
3730 args.mp = mp;
3731 args.fsbno = ap->blkno;
3733 /* Trim the allocation back to the maximum an AG can fit. */
3734 args.maxlen = MIN(ap->length, XFS_ALLOC_AG_MAX_USABLE(mp));
3735 args.firstblock = *ap->firstblock;
3736 blen = 0;
3737 if (nullfb) {
3739 * Search for an allocation group with a single extent large
3740 * enough for the request. If one isn't found, then adjust
3741 * the minimum allocation size to the largest space found.
3743 if (ap->userdata && xfs_inode_is_filestream(ap->ip))
3744 error = xfs_bmap_btalloc_filestreams(ap, &args, &blen);
3745 else
3746 error = xfs_bmap_btalloc_nullfb(ap, &args, &blen);
3747 if (error)
3748 return error;
3749 } else if (ap->flist->xbf_low) {
3750 if (xfs_inode_is_filestream(ap->ip))
3751 args.type = XFS_ALLOCTYPE_FIRST_AG;
3752 else
3753 args.type = XFS_ALLOCTYPE_START_BNO;
3754 args.total = args.minlen = ap->minlen;
3755 } else {
3756 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3757 args.total = ap->total;
3758 args.minlen = ap->minlen;
3760 /* apply extent size hints if obtained earlier */
3761 if (unlikely(align)) {
3762 args.prod = align;
3763 if ((args.mod = (xfs_extlen_t)do_mod(ap->offset, args.prod)))
3764 args.mod = (xfs_extlen_t)(args.prod - args.mod);
3765 } else if (mp->m_sb.sb_blocksize >= PAGE_CACHE_SIZE) {
3766 args.prod = 1;
3767 args.mod = 0;
3768 } else {
3769 args.prod = PAGE_CACHE_SIZE >> mp->m_sb.sb_blocklog;
3770 if ((args.mod = (xfs_extlen_t)(do_mod(ap->offset, args.prod))))
3771 args.mod = (xfs_extlen_t)(args.prod - args.mod);
3774 * If we are not low on available data blocks, and the
3775 * underlying logical volume manager is a stripe, and
3776 * the file offset is zero then try to allocate data
3777 * blocks on stripe unit boundary.
3778 * NOTE: ap->aeof is only set if the allocation length
3779 * is >= the stripe unit and the allocation offset is
3780 * at the end of file.
3782 if (!ap->flist->xbf_low && ap->aeof) {
3783 if (!ap->offset) {
3784 args.alignment = stripe_align;
3785 atype = args.type;
3786 isaligned = 1;
3788 * Adjust for alignment
3790 if (blen > args.alignment && blen <= args.maxlen)
3791 args.minlen = blen - args.alignment;
3792 args.minalignslop = 0;
3793 } else {
3795 * First try an exact bno allocation.
3796 * If it fails then do a near or start bno
3797 * allocation with alignment turned on.
3799 atype = args.type;
3800 tryagain = 1;
3801 args.type = XFS_ALLOCTYPE_THIS_BNO;
3802 args.alignment = 1;
3804 * Compute the minlen+alignment for the
3805 * next case. Set slop so that the value
3806 * of minlen+alignment+slop doesn't go up
3807 * between the calls.
3809 if (blen > stripe_align && blen <= args.maxlen)
3810 nextminlen = blen - stripe_align;
3811 else
3812 nextminlen = args.minlen;
3813 if (nextminlen + stripe_align > args.minlen + 1)
3814 args.minalignslop =
3815 nextminlen + stripe_align -
3816 args.minlen - 1;
3817 else
3818 args.minalignslop = 0;
3820 } else {
3821 args.alignment = 1;
3822 args.minalignslop = 0;
3824 args.minleft = ap->minleft;
3825 args.wasdel = ap->wasdel;
3826 args.isfl = 0;
3827 args.userdata = ap->userdata;
3828 if ((error = xfs_alloc_vextent(&args)))
3829 return error;
3830 if (tryagain && args.fsbno == NULLFSBLOCK) {
3832 * Exact allocation failed. Now try with alignment
3833 * turned on.
3835 args.type = atype;
3836 args.fsbno = ap->blkno;
3837 args.alignment = stripe_align;
3838 args.minlen = nextminlen;
3839 args.minalignslop = 0;
3840 isaligned = 1;
3841 if ((error = xfs_alloc_vextent(&args)))
3842 return error;
3844 if (isaligned && args.fsbno == NULLFSBLOCK) {
3846 * allocation failed, so turn off alignment and
3847 * try again.
3849 args.type = atype;
3850 args.fsbno = ap->blkno;
3851 args.alignment = 0;
3852 if ((error = xfs_alloc_vextent(&args)))
3853 return error;
3855 if (args.fsbno == NULLFSBLOCK && nullfb &&
3856 args.minlen > ap->minlen) {
3857 args.minlen = ap->minlen;
3858 args.type = XFS_ALLOCTYPE_START_BNO;
3859 args.fsbno = ap->blkno;
3860 if ((error = xfs_alloc_vextent(&args)))
3861 return error;
3863 if (args.fsbno == NULLFSBLOCK && nullfb) {
3864 args.fsbno = 0;
3865 args.type = XFS_ALLOCTYPE_FIRST_AG;
3866 args.total = ap->minlen;
3867 args.minleft = 0;
3868 if ((error = xfs_alloc_vextent(&args)))
3869 return error;
3870 ap->flist->xbf_low = 1;
3872 if (args.fsbno != NULLFSBLOCK) {
3874 * check the allocation happened at the same or higher AG than
3875 * the first block that was allocated.
3877 ASSERT(*ap->firstblock == NULLFSBLOCK ||
3878 XFS_FSB_TO_AGNO(mp, *ap->firstblock) ==
3879 XFS_FSB_TO_AGNO(mp, args.fsbno) ||
3880 (ap->flist->xbf_low &&
3881 XFS_FSB_TO_AGNO(mp, *ap->firstblock) <
3882 XFS_FSB_TO_AGNO(mp, args.fsbno)));
3884 ap->blkno = args.fsbno;
3885 if (*ap->firstblock == NULLFSBLOCK)
3886 *ap->firstblock = args.fsbno;
3887 ASSERT(nullfb || fb_agno == args.agno ||
3888 (ap->flist->xbf_low && fb_agno < args.agno));
3889 ap->length = args.len;
3890 ap->ip->i_d.di_nblocks += args.len;
3891 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
3892 if (ap->wasdel)
3893 ap->ip->i_delayed_blks -= args.len;
3895 * Adjust the disk quota also. This was reserved
3896 * earlier.
3898 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
3899 ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT :
3900 XFS_TRANS_DQ_BCOUNT,
3901 (long) args.len);
3902 } else {
3903 ap->blkno = NULLFSBLOCK;
3904 ap->length = 0;
3906 return 0;
3910 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
3911 * It figures out where to ask the underlying allocator to put the new extent.
3913 STATIC int
3914 xfs_bmap_alloc(
3915 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
3917 if (XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata)
3918 return xfs_bmap_rtalloc(ap);
3919 return xfs_bmap_btalloc(ap);
3923 * Trim the returned map to the required bounds
3925 STATIC void
3926 xfs_bmapi_trim_map(
3927 struct xfs_bmbt_irec *mval,
3928 struct xfs_bmbt_irec *got,
3929 xfs_fileoff_t *bno,
3930 xfs_filblks_t len,
3931 xfs_fileoff_t obno,
3932 xfs_fileoff_t end,
3933 int n,
3934 int flags)
3936 if ((flags & XFS_BMAPI_ENTIRE) ||
3937 got->br_startoff + got->br_blockcount <= obno) {
3938 *mval = *got;
3939 if (isnullstartblock(got->br_startblock))
3940 mval->br_startblock = DELAYSTARTBLOCK;
3941 return;
3944 if (obno > *bno)
3945 *bno = obno;
3946 ASSERT((*bno >= obno) || (n == 0));
3947 ASSERT(*bno < end);
3948 mval->br_startoff = *bno;
3949 if (isnullstartblock(got->br_startblock))
3950 mval->br_startblock = DELAYSTARTBLOCK;
3951 else
3952 mval->br_startblock = got->br_startblock +
3953 (*bno - got->br_startoff);
3955 * Return the minimum of what we got and what we asked for for
3956 * the length. We can use the len variable here because it is
3957 * modified below and we could have been there before coming
3958 * here if the first part of the allocation didn't overlap what
3959 * was asked for.
3961 mval->br_blockcount = XFS_FILBLKS_MIN(end - *bno,
3962 got->br_blockcount - (*bno - got->br_startoff));
3963 mval->br_state = got->br_state;
3964 ASSERT(mval->br_blockcount <= len);
3965 return;
3969 * Update and validate the extent map to return
3971 STATIC void
3972 xfs_bmapi_update_map(
3973 struct xfs_bmbt_irec **map,
3974 xfs_fileoff_t *bno,
3975 xfs_filblks_t *len,
3976 xfs_fileoff_t obno,
3977 xfs_fileoff_t end,
3978 int *n,
3979 int flags)
3981 xfs_bmbt_irec_t *mval = *map;
3983 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
3984 ((mval->br_startoff + mval->br_blockcount) <= end));
3985 ASSERT((flags & XFS_BMAPI_ENTIRE) || (mval->br_blockcount <= *len) ||
3986 (mval->br_startoff < obno));
3988 *bno = mval->br_startoff + mval->br_blockcount;
3989 *len = end - *bno;
3990 if (*n > 0 && mval->br_startoff == mval[-1].br_startoff) {
3991 /* update previous map with new information */
3992 ASSERT(mval->br_startblock == mval[-1].br_startblock);
3993 ASSERT(mval->br_blockcount > mval[-1].br_blockcount);
3994 ASSERT(mval->br_state == mval[-1].br_state);
3995 mval[-1].br_blockcount = mval->br_blockcount;
3996 mval[-1].br_state = mval->br_state;
3997 } else if (*n > 0 && mval->br_startblock != DELAYSTARTBLOCK &&
3998 mval[-1].br_startblock != DELAYSTARTBLOCK &&
3999 mval[-1].br_startblock != HOLESTARTBLOCK &&
4000 mval->br_startblock == mval[-1].br_startblock +
4001 mval[-1].br_blockcount &&
4002 ((flags & XFS_BMAPI_IGSTATE) ||
4003 mval[-1].br_state == mval->br_state)) {
4004 ASSERT(mval->br_startoff ==
4005 mval[-1].br_startoff + mval[-1].br_blockcount);
4006 mval[-1].br_blockcount += mval->br_blockcount;
4007 } else if (*n > 0 &&
4008 mval->br_startblock == DELAYSTARTBLOCK &&
4009 mval[-1].br_startblock == DELAYSTARTBLOCK &&
4010 mval->br_startoff ==
4011 mval[-1].br_startoff + mval[-1].br_blockcount) {
4012 mval[-1].br_blockcount += mval->br_blockcount;
4013 mval[-1].br_state = mval->br_state;
4014 } else if (!((*n == 0) &&
4015 ((mval->br_startoff + mval->br_blockcount) <=
4016 obno))) {
4017 mval++;
4018 (*n)++;
4020 *map = mval;
4024 * Map file blocks to filesystem blocks without allocation.
4027 xfs_bmapi_read(
4028 struct xfs_inode *ip,
4029 xfs_fileoff_t bno,
4030 xfs_filblks_t len,
4031 struct xfs_bmbt_irec *mval,
4032 int *nmap,
4033 int flags)
4035 struct xfs_mount *mp = ip->i_mount;
4036 struct xfs_ifork *ifp;
4037 struct xfs_bmbt_irec got;
4038 struct xfs_bmbt_irec prev;
4039 xfs_fileoff_t obno;
4040 xfs_fileoff_t end;
4041 xfs_extnum_t lastx;
4042 int error;
4043 int eof;
4044 int n = 0;
4045 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4046 XFS_ATTR_FORK : XFS_DATA_FORK;
4048 ASSERT(*nmap >= 1);
4049 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK|XFS_BMAPI_ENTIRE|
4050 XFS_BMAPI_IGSTATE)));
4051 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED|XFS_ILOCK_EXCL));
4053 if (unlikely(XFS_TEST_ERROR(
4054 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4055 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
4056 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4057 XFS_ERROR_REPORT("xfs_bmapi_read", XFS_ERRLEVEL_LOW, mp);
4058 return XFS_ERROR(EFSCORRUPTED);
4061 if (XFS_FORCED_SHUTDOWN(mp))
4062 return XFS_ERROR(EIO);
4064 XFS_STATS_INC(xs_blk_mapr);
4066 ifp = XFS_IFORK_PTR(ip, whichfork);
4068 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4069 error = xfs_iread_extents(NULL, ip, whichfork);
4070 if (error)
4071 return error;
4074 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got, &prev);
4075 end = bno + len;
4076 obno = bno;
4078 while (bno < end && n < *nmap) {
4079 /* Reading past eof, act as though there's a hole up to end. */
4080 if (eof)
4081 got.br_startoff = end;
4082 if (got.br_startoff > bno) {
4083 /* Reading in a hole. */
4084 mval->br_startoff = bno;
4085 mval->br_startblock = HOLESTARTBLOCK;
4086 mval->br_blockcount =
4087 XFS_FILBLKS_MIN(len, got.br_startoff - bno);
4088 mval->br_state = XFS_EXT_NORM;
4089 bno += mval->br_blockcount;
4090 len -= mval->br_blockcount;
4091 mval++;
4092 n++;
4093 continue;
4096 /* set up the extent map to return. */
4097 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4098 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4100 /* If we're done, stop now. */
4101 if (bno >= end || n >= *nmap)
4102 break;
4104 /* Else go on to the next record. */
4105 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4106 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4107 else
4108 eof = 1;
4110 *nmap = n;
4111 return 0;
4114 STATIC int
4115 xfs_bmapi_reserve_delalloc(
4116 struct xfs_inode *ip,
4117 xfs_fileoff_t aoff,
4118 xfs_filblks_t len,
4119 struct xfs_bmbt_irec *got,
4120 struct xfs_bmbt_irec *prev,
4121 xfs_extnum_t *lastx,
4122 int eof)
4124 struct xfs_mount *mp = ip->i_mount;
4125 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4126 xfs_extlen_t alen;
4127 xfs_extlen_t indlen;
4128 char rt = XFS_IS_REALTIME_INODE(ip);
4129 xfs_extlen_t extsz;
4130 int error;
4132 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN);
4133 if (!eof)
4134 alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff);
4136 /* Figure out the extent size, adjust alen */
4137 extsz = xfs_get_extsz_hint(ip);
4138 if (extsz) {
4140 * Make sure we don't exceed a single extent length when we
4141 * align the extent by reducing length we are going to
4142 * allocate by the maximum amount extent size aligment may
4143 * require.
4145 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN - (2 * extsz - 1));
4146 error = xfs_bmap_extsize_align(mp, got, prev, extsz, rt, eof,
4147 1, 0, &aoff, &alen);
4148 ASSERT(!error);
4151 if (rt)
4152 extsz = alen / mp->m_sb.sb_rextsize;
4155 * Make a transaction-less quota reservation for delayed allocation
4156 * blocks. This number gets adjusted later. We return if we haven't
4157 * allocated blocks already inside this loop.
4159 error = xfs_trans_reserve_quota_nblks(NULL, ip, (long)alen, 0,
4160 rt ? XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4161 if (error)
4162 return error;
4165 * Split changing sb for alen and indlen since they could be coming
4166 * from different places.
4168 indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen);
4169 ASSERT(indlen > 0);
4171 if (rt) {
4172 error = xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
4173 -((int64_t)extsz), 0);
4174 } else {
4175 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4176 -((int64_t)alen), 0);
4179 if (error)
4180 goto out_unreserve_quota;
4182 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4183 -((int64_t)indlen), 0);
4184 if (error)
4185 goto out_unreserve_blocks;
4188 ip->i_delayed_blks += alen;
4190 got->br_startoff = aoff;
4191 got->br_startblock = nullstartblock(indlen);
4192 got->br_blockcount = alen;
4193 got->br_state = XFS_EXT_NORM;
4194 xfs_bmap_add_extent_hole_delay(ip, lastx, got);
4197 * Update our extent pointer, given that xfs_bmap_add_extent_hole_delay
4198 * might have merged it into one of the neighbouring ones.
4200 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *lastx), got);
4202 ASSERT(got->br_startoff <= aoff);
4203 ASSERT(got->br_startoff + got->br_blockcount >= aoff + alen);
4204 ASSERT(isnullstartblock(got->br_startblock));
4205 ASSERT(got->br_state == XFS_EXT_NORM);
4206 return 0;
4208 out_unreserve_blocks:
4209 if (rt)
4210 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS, extsz, 0);
4211 else
4212 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS, alen, 0);
4213 out_unreserve_quota:
4214 if (XFS_IS_QUOTA_ON(mp))
4215 xfs_trans_unreserve_quota_nblks(NULL, ip, (long)alen, 0, rt ?
4216 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4217 return error;
4221 * Map file blocks to filesystem blocks, adding delayed allocations as needed.
4224 xfs_bmapi_delay(
4225 struct xfs_inode *ip, /* incore inode */
4226 xfs_fileoff_t bno, /* starting file offs. mapped */
4227 xfs_filblks_t len, /* length to map in file */
4228 struct xfs_bmbt_irec *mval, /* output: map values */
4229 int *nmap, /* i/o: mval size/count */
4230 int flags) /* XFS_BMAPI_... */
4232 struct xfs_mount *mp = ip->i_mount;
4233 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4234 struct xfs_bmbt_irec got; /* current file extent record */
4235 struct xfs_bmbt_irec prev; /* previous file extent record */
4236 xfs_fileoff_t obno; /* old block number (offset) */
4237 xfs_fileoff_t end; /* end of mapped file region */
4238 xfs_extnum_t lastx; /* last useful extent number */
4239 int eof; /* we've hit the end of extents */
4240 int n = 0; /* current extent index */
4241 int error = 0;
4243 ASSERT(*nmap >= 1);
4244 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4245 ASSERT(!(flags & ~XFS_BMAPI_ENTIRE));
4246 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
4248 if (unlikely(XFS_TEST_ERROR(
4249 (XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_EXTENTS &&
4250 XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_BTREE),
4251 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4252 XFS_ERROR_REPORT("xfs_bmapi_delay", XFS_ERRLEVEL_LOW, mp);
4253 return XFS_ERROR(EFSCORRUPTED);
4256 if (XFS_FORCED_SHUTDOWN(mp))
4257 return XFS_ERROR(EIO);
4259 XFS_STATS_INC(xs_blk_mapw);
4261 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4262 error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK);
4263 if (error)
4264 return error;
4267 xfs_bmap_search_extents(ip, bno, XFS_DATA_FORK, &eof, &lastx, &got, &prev);
4268 end = bno + len;
4269 obno = bno;
4271 while (bno < end && n < *nmap) {
4272 if (eof || got.br_startoff > bno) {
4273 error = xfs_bmapi_reserve_delalloc(ip, bno, len, &got,
4274 &prev, &lastx, eof);
4275 if (error) {
4276 if (n == 0) {
4277 *nmap = 0;
4278 return error;
4280 break;
4284 /* set up the extent map to return. */
4285 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4286 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4288 /* If we're done, stop now. */
4289 if (bno >= end || n >= *nmap)
4290 break;
4292 /* Else go on to the next record. */
4293 prev = got;
4294 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4295 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4296 else
4297 eof = 1;
4300 *nmap = n;
4301 return 0;
4305 static int
4306 xfs_bmapi_allocate(
4307 struct xfs_bmalloca *bma)
4309 struct xfs_mount *mp = bma->ip->i_mount;
4310 int whichfork = (bma->flags & XFS_BMAPI_ATTRFORK) ?
4311 XFS_ATTR_FORK : XFS_DATA_FORK;
4312 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4313 int tmp_logflags = 0;
4314 int error;
4316 ASSERT(bma->length > 0);
4319 * For the wasdelay case, we could also just allocate the stuff asked
4320 * for in this bmap call but that wouldn't be as good.
4322 if (bma->wasdel) {
4323 bma->length = (xfs_extlen_t)bma->got.br_blockcount;
4324 bma->offset = bma->got.br_startoff;
4325 if (bma->idx != NULLEXTNUM && bma->idx) {
4326 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1),
4327 &bma->prev);
4329 } else {
4330 bma->length = XFS_FILBLKS_MIN(bma->length, MAXEXTLEN);
4331 if (!bma->eof)
4332 bma->length = XFS_FILBLKS_MIN(bma->length,
4333 bma->got.br_startoff - bma->offset);
4337 * Indicate if this is the first user data in the file, or just any
4338 * user data.
4340 if (!(bma->flags & XFS_BMAPI_METADATA)) {
4341 bma->userdata = (bma->offset == 0) ?
4342 XFS_ALLOC_INITIAL_USER_DATA : XFS_ALLOC_USERDATA;
4345 bma->minlen = (bma->flags & XFS_BMAPI_CONTIG) ? bma->length : 1;
4348 * Only want to do the alignment at the eof if it is userdata and
4349 * allocation length is larger than a stripe unit.
4351 if (mp->m_dalign && bma->length >= mp->m_dalign &&
4352 !(bma->flags & XFS_BMAPI_METADATA) && whichfork == XFS_DATA_FORK) {
4353 error = xfs_bmap_isaeof(bma, whichfork);
4354 if (error)
4355 return error;
4358 error = xfs_bmap_alloc(bma);
4359 if (error)
4360 return error;
4362 if (bma->flist->xbf_low)
4363 bma->minleft = 0;
4364 if (bma->cur)
4365 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4366 if (bma->blkno == NULLFSBLOCK)
4367 return 0;
4368 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4369 bma->cur = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork);
4370 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4371 bma->cur->bc_private.b.flist = bma->flist;
4374 * Bump the number of extents we've allocated
4375 * in this call.
4377 bma->nallocs++;
4379 if (bma->cur)
4380 bma->cur->bc_private.b.flags =
4381 bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
4383 bma->got.br_startoff = bma->offset;
4384 bma->got.br_startblock = bma->blkno;
4385 bma->got.br_blockcount = bma->length;
4386 bma->got.br_state = XFS_EXT_NORM;
4389 * A wasdelay extent has been initialized, so shouldn't be flagged
4390 * as unwritten.
4392 if (!bma->wasdel && (bma->flags & XFS_BMAPI_PREALLOC) &&
4393 xfs_sb_version_hasextflgbit(&mp->m_sb))
4394 bma->got.br_state = XFS_EXT_UNWRITTEN;
4396 if (bma->wasdel)
4397 error = xfs_bmap_add_extent_delay_real(bma);
4398 else
4399 error = xfs_bmap_add_extent_hole_real(bma, whichfork);
4401 bma->logflags |= tmp_logflags;
4402 if (error)
4403 return error;
4406 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4407 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4408 * the neighbouring ones.
4410 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
4412 ASSERT(bma->got.br_startoff <= bma->offset);
4413 ASSERT(bma->got.br_startoff + bma->got.br_blockcount >=
4414 bma->offset + bma->length);
4415 ASSERT(bma->got.br_state == XFS_EXT_NORM ||
4416 bma->got.br_state == XFS_EXT_UNWRITTEN);
4417 return 0;
4420 STATIC int
4421 xfs_bmapi_convert_unwritten(
4422 struct xfs_bmalloca *bma,
4423 struct xfs_bmbt_irec *mval,
4424 xfs_filblks_t len,
4425 int flags)
4427 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4428 XFS_ATTR_FORK : XFS_DATA_FORK;
4429 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4430 int tmp_logflags = 0;
4431 int error;
4433 /* check if we need to do unwritten->real conversion */
4434 if (mval->br_state == XFS_EXT_UNWRITTEN &&
4435 (flags & XFS_BMAPI_PREALLOC))
4436 return 0;
4438 /* check if we need to do real->unwritten conversion */
4439 if (mval->br_state == XFS_EXT_NORM &&
4440 (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) !=
4441 (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT))
4442 return 0;
4445 * Modify (by adding) the state flag, if writing.
4447 ASSERT(mval->br_blockcount <= len);
4448 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4449 bma->cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp,
4450 bma->ip, whichfork);
4451 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4452 bma->cur->bc_private.b.flist = bma->flist;
4454 mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN)
4455 ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
4457 error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, &bma->idx,
4458 &bma->cur, mval, bma->firstblock, bma->flist,
4459 &tmp_logflags);
4460 bma->logflags |= tmp_logflags;
4461 if (error)
4462 return error;
4465 * Update our extent pointer, given that
4466 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4467 * of the neighbouring ones.
4469 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
4472 * We may have combined previously unwritten space with written space,
4473 * so generate another request.
4475 if (mval->br_blockcount < len)
4476 return EAGAIN;
4477 return 0;
4481 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4482 * extent state if necessary. Details behaviour is controlled by the flags
4483 * parameter. Only allocates blocks from a single allocation group, to avoid
4484 * locking problems.
4486 * The returned value in "firstblock" from the first call in a transaction
4487 * must be remembered and presented to subsequent calls in "firstblock".
4488 * An upper bound for the number of blocks to be allocated is supplied to
4489 * the first call in "total"; if no allocation group has that many free
4490 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4493 xfs_bmapi_write(
4494 struct xfs_trans *tp, /* transaction pointer */
4495 struct xfs_inode *ip, /* incore inode */
4496 xfs_fileoff_t bno, /* starting file offs. mapped */
4497 xfs_filblks_t len, /* length to map in file */
4498 int flags, /* XFS_BMAPI_... */
4499 xfs_fsblock_t *firstblock, /* first allocated block
4500 controls a.g. for allocs */
4501 xfs_extlen_t total, /* total blocks needed */
4502 struct xfs_bmbt_irec *mval, /* output: map values */
4503 int *nmap, /* i/o: mval size/count */
4504 struct xfs_bmap_free *flist) /* i/o: list extents to free */
4506 struct xfs_mount *mp = ip->i_mount;
4507 struct xfs_ifork *ifp;
4508 struct xfs_bmalloca bma = { NULL }; /* args for xfs_bmap_alloc */
4509 xfs_fileoff_t end; /* end of mapped file region */
4510 int eof; /* after the end of extents */
4511 int error; /* error return */
4512 int n; /* current extent index */
4513 xfs_fileoff_t obno; /* old block number (offset) */
4514 int whichfork; /* data or attr fork */
4515 char inhole; /* current location is hole in file */
4516 char wasdelay; /* old extent was delayed */
4518 #ifdef DEBUG
4519 xfs_fileoff_t orig_bno; /* original block number value */
4520 int orig_flags; /* original flags arg value */
4521 xfs_filblks_t orig_len; /* original value of len arg */
4522 struct xfs_bmbt_irec *orig_mval; /* original value of mval */
4523 int orig_nmap; /* original value of *nmap */
4525 orig_bno = bno;
4526 orig_len = len;
4527 orig_flags = flags;
4528 orig_mval = mval;
4529 orig_nmap = *nmap;
4530 #endif
4531 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4532 XFS_ATTR_FORK : XFS_DATA_FORK;
4534 ASSERT(*nmap >= 1);
4535 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4536 ASSERT(!(flags & XFS_BMAPI_IGSTATE));
4537 ASSERT(tp != NULL);
4538 ASSERT(len > 0);
4539 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL);
4540 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
4542 if (unlikely(XFS_TEST_ERROR(
4543 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4544 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
4545 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4546 XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW, mp);
4547 return XFS_ERROR(EFSCORRUPTED);
4550 if (XFS_FORCED_SHUTDOWN(mp))
4551 return XFS_ERROR(EIO);
4553 ifp = XFS_IFORK_PTR(ip, whichfork);
4555 XFS_STATS_INC(xs_blk_mapw);
4557 if (*firstblock == NULLFSBLOCK) {
4558 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE)
4559 bma.minleft = be16_to_cpu(ifp->if_broot->bb_level) + 1;
4560 else
4561 bma.minleft = 1;
4562 } else {
4563 bma.minleft = 0;
4566 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4567 error = xfs_iread_extents(tp, ip, whichfork);
4568 if (error)
4569 goto error0;
4572 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &bma.idx, &bma.got,
4573 &bma.prev);
4574 n = 0;
4575 end = bno + len;
4576 obno = bno;
4578 bma.tp = tp;
4579 bma.ip = ip;
4580 bma.total = total;
4581 bma.userdata = 0;
4582 bma.flist = flist;
4583 bma.firstblock = firstblock;
4585 while (bno < end && n < *nmap) {
4586 inhole = eof || bma.got.br_startoff > bno;
4587 wasdelay = !inhole && isnullstartblock(bma.got.br_startblock);
4590 * First, deal with the hole before the allocated space
4591 * that we found, if any.
4593 if (inhole || wasdelay) {
4594 bma.eof = eof;
4595 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
4596 bma.wasdel = wasdelay;
4597 bma.offset = bno;
4598 bma.flags = flags;
4601 * There's a 32/64 bit type mismatch between the
4602 * allocation length request (which can be 64 bits in
4603 * length) and the bma length request, which is
4604 * xfs_extlen_t and therefore 32 bits. Hence we have to
4605 * check for 32-bit overflows and handle them here.
4607 if (len > (xfs_filblks_t)MAXEXTLEN)
4608 bma.length = MAXEXTLEN;
4609 else
4610 bma.length = len;
4612 ASSERT(len > 0);
4613 ASSERT(bma.length > 0);
4614 error = xfs_bmapi_allocate(&bma);
4615 if (error)
4616 goto error0;
4617 if (bma.blkno == NULLFSBLOCK)
4618 break;
4621 /* Deal with the allocated space we found. */
4622 xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno,
4623 end, n, flags);
4625 /* Execute unwritten extent conversion if necessary */
4626 error = xfs_bmapi_convert_unwritten(&bma, mval, len, flags);
4627 if (error == EAGAIN)
4628 continue;
4629 if (error)
4630 goto error0;
4632 /* update the extent map to return */
4633 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4636 * If we're done, stop now. Stop when we've allocated
4637 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4638 * the transaction may get too big.
4640 if (bno >= end || n >= *nmap || bma.nallocs >= *nmap)
4641 break;
4643 /* Else go on to the next record. */
4644 bma.prev = bma.got;
4645 if (++bma.idx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t)) {
4646 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma.idx),
4647 &bma.got);
4648 } else
4649 eof = 1;
4651 *nmap = n;
4654 * Transform from btree to extents, give it cur.
4656 if (xfs_bmap_wants_extents(ip, whichfork)) {
4657 int tmp_logflags = 0;
4659 ASSERT(bma.cur);
4660 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur,
4661 &tmp_logflags, whichfork);
4662 bma.logflags |= tmp_logflags;
4663 if (error)
4664 goto error0;
4667 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE ||
4668 XFS_IFORK_NEXTENTS(ip, whichfork) >
4669 XFS_IFORK_MAXEXT(ip, whichfork));
4670 error = 0;
4671 error0:
4673 * Log everything. Do this after conversion, there's no point in
4674 * logging the extent records if we've converted to btree format.
4676 if ((bma.logflags & xfs_ilog_fext(whichfork)) &&
4677 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
4678 bma.logflags &= ~xfs_ilog_fext(whichfork);
4679 else if ((bma.logflags & xfs_ilog_fbroot(whichfork)) &&
4680 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
4681 bma.logflags &= ~xfs_ilog_fbroot(whichfork);
4683 * Log whatever the flags say, even if error. Otherwise we might miss
4684 * detecting a case where the data is changed, there's an error,
4685 * and it's not logged so we don't shutdown when we should.
4687 if (bma.logflags)
4688 xfs_trans_log_inode(tp, ip, bma.logflags);
4690 if (bma.cur) {
4691 if (!error) {
4692 ASSERT(*firstblock == NULLFSBLOCK ||
4693 XFS_FSB_TO_AGNO(mp, *firstblock) ==
4694 XFS_FSB_TO_AGNO(mp,
4695 bma.cur->bc_private.b.firstblock) ||
4696 (flist->xbf_low &&
4697 XFS_FSB_TO_AGNO(mp, *firstblock) <
4698 XFS_FSB_TO_AGNO(mp,
4699 bma.cur->bc_private.b.firstblock)));
4700 *firstblock = bma.cur->bc_private.b.firstblock;
4702 xfs_btree_del_cursor(bma.cur,
4703 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
4705 if (!error)
4706 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
4707 orig_nmap, *nmap);
4708 return error;
4712 * Called by xfs_bmapi to update file extent records and the btree
4713 * after removing space (or undoing a delayed allocation).
4715 STATIC int /* error */
4716 xfs_bmap_del_extent(
4717 xfs_inode_t *ip, /* incore inode pointer */
4718 xfs_trans_t *tp, /* current transaction pointer */
4719 xfs_extnum_t *idx, /* extent number to update/delete */
4720 xfs_bmap_free_t *flist, /* list of extents to be freed */
4721 xfs_btree_cur_t *cur, /* if null, not a btree */
4722 xfs_bmbt_irec_t *del, /* data to remove from extents */
4723 int *logflagsp, /* inode logging flags */
4724 int whichfork) /* data or attr fork */
4726 xfs_filblks_t da_new; /* new delay-alloc indirect blocks */
4727 xfs_filblks_t da_old; /* old delay-alloc indirect blocks */
4728 xfs_fsblock_t del_endblock=0; /* first block past del */
4729 xfs_fileoff_t del_endoff; /* first offset past del */
4730 int delay; /* current block is delayed allocated */
4731 int do_fx; /* free extent at end of routine */
4732 xfs_bmbt_rec_host_t *ep; /* current extent entry pointer */
4733 int error; /* error return value */
4734 int flags; /* inode logging flags */
4735 xfs_bmbt_irec_t got; /* current extent entry */
4736 xfs_fileoff_t got_endoff; /* first offset past got */
4737 int i; /* temp state */
4738 xfs_ifork_t *ifp; /* inode fork pointer */
4739 xfs_mount_t *mp; /* mount structure */
4740 xfs_filblks_t nblks; /* quota/sb block count */
4741 xfs_bmbt_irec_t new; /* new record to be inserted */
4742 /* REFERENCED */
4743 uint qfield; /* quota field to update */
4744 xfs_filblks_t temp; /* for indirect length calculations */
4745 xfs_filblks_t temp2; /* for indirect length calculations */
4746 int state = 0;
4748 XFS_STATS_INC(xs_del_exlist);
4750 if (whichfork == XFS_ATTR_FORK)
4751 state |= BMAP_ATTRFORK;
4753 mp = ip->i_mount;
4754 ifp = XFS_IFORK_PTR(ip, whichfork);
4755 ASSERT((*idx >= 0) && (*idx < ifp->if_bytes /
4756 (uint)sizeof(xfs_bmbt_rec_t)));
4757 ASSERT(del->br_blockcount > 0);
4758 ep = xfs_iext_get_ext(ifp, *idx);
4759 xfs_bmbt_get_all(ep, &got);
4760 ASSERT(got.br_startoff <= del->br_startoff);
4761 del_endoff = del->br_startoff + del->br_blockcount;
4762 got_endoff = got.br_startoff + got.br_blockcount;
4763 ASSERT(got_endoff >= del_endoff);
4764 delay = isnullstartblock(got.br_startblock);
4765 ASSERT(isnullstartblock(del->br_startblock) == delay);
4766 flags = 0;
4767 qfield = 0;
4768 error = 0;
4770 * If deleting a real allocation, must free up the disk space.
4772 if (!delay) {
4773 flags = XFS_ILOG_CORE;
4775 * Realtime allocation. Free it and record di_nblocks update.
4777 if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) {
4778 xfs_fsblock_t bno;
4779 xfs_filblks_t len;
4781 ASSERT(do_mod(del->br_blockcount,
4782 mp->m_sb.sb_rextsize) == 0);
4783 ASSERT(do_mod(del->br_startblock,
4784 mp->m_sb.sb_rextsize) == 0);
4785 bno = del->br_startblock;
4786 len = del->br_blockcount;
4787 do_div(bno, mp->m_sb.sb_rextsize);
4788 do_div(len, mp->m_sb.sb_rextsize);
4789 error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len);
4790 if (error)
4791 goto done;
4792 do_fx = 0;
4793 nblks = len * mp->m_sb.sb_rextsize;
4794 qfield = XFS_TRANS_DQ_RTBCOUNT;
4797 * Ordinary allocation.
4799 else {
4800 do_fx = 1;
4801 nblks = del->br_blockcount;
4802 qfield = XFS_TRANS_DQ_BCOUNT;
4805 * Set up del_endblock and cur for later.
4807 del_endblock = del->br_startblock + del->br_blockcount;
4808 if (cur) {
4809 if ((error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
4810 got.br_startblock, got.br_blockcount,
4811 &i)))
4812 goto done;
4813 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4815 da_old = da_new = 0;
4816 } else {
4817 da_old = startblockval(got.br_startblock);
4818 da_new = 0;
4819 nblks = 0;
4820 do_fx = 0;
4823 * Set flag value to use in switch statement.
4824 * Left-contig is 2, right-contig is 1.
4826 switch (((got.br_startoff == del->br_startoff) << 1) |
4827 (got_endoff == del_endoff)) {
4828 case 3:
4830 * Matches the whole extent. Delete the entry.
4832 xfs_iext_remove(ip, *idx, 1,
4833 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0);
4834 --*idx;
4835 if (delay)
4836 break;
4838 XFS_IFORK_NEXT_SET(ip, whichfork,
4839 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
4840 flags |= XFS_ILOG_CORE;
4841 if (!cur) {
4842 flags |= xfs_ilog_fext(whichfork);
4843 break;
4845 if ((error = xfs_btree_delete(cur, &i)))
4846 goto done;
4847 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4848 break;
4850 case 2:
4852 * Deleting the first part of the extent.
4854 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4855 xfs_bmbt_set_startoff(ep, del_endoff);
4856 temp = got.br_blockcount - del->br_blockcount;
4857 xfs_bmbt_set_blockcount(ep, temp);
4858 if (delay) {
4859 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4860 da_old);
4861 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4862 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4863 da_new = temp;
4864 break;
4866 xfs_bmbt_set_startblock(ep, del_endblock);
4867 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4868 if (!cur) {
4869 flags |= xfs_ilog_fext(whichfork);
4870 break;
4872 if ((error = xfs_bmbt_update(cur, del_endoff, del_endblock,
4873 got.br_blockcount - del->br_blockcount,
4874 got.br_state)))
4875 goto done;
4876 break;
4878 case 1:
4880 * Deleting the last part of the extent.
4882 temp = got.br_blockcount - del->br_blockcount;
4883 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4884 xfs_bmbt_set_blockcount(ep, temp);
4885 if (delay) {
4886 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4887 da_old);
4888 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4889 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4890 da_new = temp;
4891 break;
4893 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4894 if (!cur) {
4895 flags |= xfs_ilog_fext(whichfork);
4896 break;
4898 if ((error = xfs_bmbt_update(cur, got.br_startoff,
4899 got.br_startblock,
4900 got.br_blockcount - del->br_blockcount,
4901 got.br_state)))
4902 goto done;
4903 break;
4905 case 0:
4907 * Deleting the middle of the extent.
4909 temp = del->br_startoff - got.br_startoff;
4910 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4911 xfs_bmbt_set_blockcount(ep, temp);
4912 new.br_startoff = del_endoff;
4913 temp2 = got_endoff - del_endoff;
4914 new.br_blockcount = temp2;
4915 new.br_state = got.br_state;
4916 if (!delay) {
4917 new.br_startblock = del_endblock;
4918 flags |= XFS_ILOG_CORE;
4919 if (cur) {
4920 if ((error = xfs_bmbt_update(cur,
4921 got.br_startoff,
4922 got.br_startblock, temp,
4923 got.br_state)))
4924 goto done;
4925 if ((error = xfs_btree_increment(cur, 0, &i)))
4926 goto done;
4927 cur->bc_rec.b = new;
4928 error = xfs_btree_insert(cur, &i);
4929 if (error && error != ENOSPC)
4930 goto done;
4932 * If get no-space back from btree insert,
4933 * it tried a split, and we have a zero
4934 * block reservation.
4935 * Fix up our state and return the error.
4937 if (error == ENOSPC) {
4939 * Reset the cursor, don't trust
4940 * it after any insert operation.
4942 if ((error = xfs_bmbt_lookup_eq(cur,
4943 got.br_startoff,
4944 got.br_startblock,
4945 temp, &i)))
4946 goto done;
4947 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4949 * Update the btree record back
4950 * to the original value.
4952 if ((error = xfs_bmbt_update(cur,
4953 got.br_startoff,
4954 got.br_startblock,
4955 got.br_blockcount,
4956 got.br_state)))
4957 goto done;
4959 * Reset the extent record back
4960 * to the original value.
4962 xfs_bmbt_set_blockcount(ep,
4963 got.br_blockcount);
4964 flags = 0;
4965 error = XFS_ERROR(ENOSPC);
4966 goto done;
4968 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4969 } else
4970 flags |= xfs_ilog_fext(whichfork);
4971 XFS_IFORK_NEXT_SET(ip, whichfork,
4972 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
4973 } else {
4974 ASSERT(whichfork == XFS_DATA_FORK);
4975 temp = xfs_bmap_worst_indlen(ip, temp);
4976 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4977 temp2 = xfs_bmap_worst_indlen(ip, temp2);
4978 new.br_startblock = nullstartblock((int)temp2);
4979 da_new = temp + temp2;
4980 while (da_new > da_old) {
4981 if (temp) {
4982 temp--;
4983 da_new--;
4984 xfs_bmbt_set_startblock(ep,
4985 nullstartblock((int)temp));
4987 if (da_new == da_old)
4988 break;
4989 if (temp2) {
4990 temp2--;
4991 da_new--;
4992 new.br_startblock =
4993 nullstartblock((int)temp2);
4997 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4998 xfs_iext_insert(ip, *idx + 1, 1, &new, state);
4999 ++*idx;
5000 break;
5003 * If we need to, add to list of extents to delete.
5005 if (do_fx)
5006 xfs_bmap_add_free(del->br_startblock, del->br_blockcount, flist,
5007 mp);
5009 * Adjust inode # blocks in the file.
5011 if (nblks)
5012 ip->i_d.di_nblocks -= nblks;
5014 * Adjust quota data.
5016 if (qfield)
5017 xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks);
5020 * Account for change in delayed indirect blocks.
5021 * Nothing to do for disk quota accounting here.
5023 ASSERT(da_old >= da_new);
5024 if (da_old > da_new) {
5025 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
5026 (int64_t)(da_old - da_new), 0);
5028 done:
5029 *logflagsp = flags;
5030 return error;
5034 * Unmap (remove) blocks from a file.
5035 * If nexts is nonzero then the number of extents to remove is limited to
5036 * that value. If not all extents in the block range can be removed then
5037 * *done is set.
5039 int /* error */
5040 xfs_bunmapi(
5041 xfs_trans_t *tp, /* transaction pointer */
5042 struct xfs_inode *ip, /* incore inode */
5043 xfs_fileoff_t bno, /* starting offset to unmap */
5044 xfs_filblks_t len, /* length to unmap in file */
5045 int flags, /* misc flags */
5046 xfs_extnum_t nexts, /* number of extents max */
5047 xfs_fsblock_t *firstblock, /* first allocated block
5048 controls a.g. for allocs */
5049 xfs_bmap_free_t *flist, /* i/o: list extents to free */
5050 int *done) /* set if not done yet */
5052 xfs_btree_cur_t *cur; /* bmap btree cursor */
5053 xfs_bmbt_irec_t del; /* extent being deleted */
5054 int eof; /* is deleting at eof */
5055 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
5056 int error; /* error return value */
5057 xfs_extnum_t extno; /* extent number in list */
5058 xfs_bmbt_irec_t got; /* current extent record */
5059 xfs_ifork_t *ifp; /* inode fork pointer */
5060 int isrt; /* freeing in rt area */
5061 xfs_extnum_t lastx; /* last extent index used */
5062 int logflags; /* transaction logging flags */
5063 xfs_extlen_t mod; /* rt extent offset */
5064 xfs_mount_t *mp; /* mount structure */
5065 xfs_extnum_t nextents; /* number of file extents */
5066 xfs_bmbt_irec_t prev; /* previous extent record */
5067 xfs_fileoff_t start; /* first file offset deleted */
5068 int tmp_logflags; /* partial logging flags */
5069 int wasdel; /* was a delayed alloc extent */
5070 int whichfork; /* data or attribute fork */
5071 xfs_fsblock_t sum;
5073 trace_xfs_bunmap(ip, bno, len, flags, _RET_IP_);
5075 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
5076 XFS_ATTR_FORK : XFS_DATA_FORK;
5077 ifp = XFS_IFORK_PTR(ip, whichfork);
5078 if (unlikely(
5079 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5080 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
5081 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW,
5082 ip->i_mount);
5083 return XFS_ERROR(EFSCORRUPTED);
5085 mp = ip->i_mount;
5086 if (XFS_FORCED_SHUTDOWN(mp))
5087 return XFS_ERROR(EIO);
5089 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
5090 ASSERT(len > 0);
5091 ASSERT(nexts >= 0);
5093 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5094 (error = xfs_iread_extents(tp, ip, whichfork)))
5095 return error;
5096 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5097 if (nextents == 0) {
5098 *done = 1;
5099 return 0;
5101 XFS_STATS_INC(xs_blk_unmap);
5102 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
5103 start = bno;
5104 bno = start + len - 1;
5105 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
5106 &prev);
5109 * Check to see if the given block number is past the end of the
5110 * file, back up to the last block if so...
5112 if (eof) {
5113 ep = xfs_iext_get_ext(ifp, --lastx);
5114 xfs_bmbt_get_all(ep, &got);
5115 bno = got.br_startoff + got.br_blockcount - 1;
5117 logflags = 0;
5118 if (ifp->if_flags & XFS_IFBROOT) {
5119 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
5120 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5121 cur->bc_private.b.firstblock = *firstblock;
5122 cur->bc_private.b.flist = flist;
5123 cur->bc_private.b.flags = 0;
5124 } else
5125 cur = NULL;
5127 if (isrt) {
5129 * Synchronize by locking the bitmap inode.
5131 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL);
5132 xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
5135 extno = 0;
5136 while (bno != (xfs_fileoff_t)-1 && bno >= start && lastx >= 0 &&
5137 (nexts == 0 || extno < nexts)) {
5139 * Is the found extent after a hole in which bno lives?
5140 * Just back up to the previous extent, if so.
5142 if (got.br_startoff > bno) {
5143 if (--lastx < 0)
5144 break;
5145 ep = xfs_iext_get_ext(ifp, lastx);
5146 xfs_bmbt_get_all(ep, &got);
5149 * Is the last block of this extent before the range
5150 * we're supposed to delete? If so, we're done.
5152 bno = XFS_FILEOFF_MIN(bno,
5153 got.br_startoff + got.br_blockcount - 1);
5154 if (bno < start)
5155 break;
5157 * Then deal with the (possibly delayed) allocated space
5158 * we found.
5160 ASSERT(ep != NULL);
5161 del = got;
5162 wasdel = isnullstartblock(del.br_startblock);
5163 if (got.br_startoff < start) {
5164 del.br_startoff = start;
5165 del.br_blockcount -= start - got.br_startoff;
5166 if (!wasdel)
5167 del.br_startblock += start - got.br_startoff;
5169 if (del.br_startoff + del.br_blockcount > bno + 1)
5170 del.br_blockcount = bno + 1 - del.br_startoff;
5171 sum = del.br_startblock + del.br_blockcount;
5172 if (isrt &&
5173 (mod = do_mod(sum, mp->m_sb.sb_rextsize))) {
5175 * Realtime extent not lined up at the end.
5176 * The extent could have been split into written
5177 * and unwritten pieces, or we could just be
5178 * unmapping part of it. But we can't really
5179 * get rid of part of a realtime extent.
5181 if (del.br_state == XFS_EXT_UNWRITTEN ||
5182 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
5184 * This piece is unwritten, or we're not
5185 * using unwritten extents. Skip over it.
5187 ASSERT(bno >= mod);
5188 bno -= mod > del.br_blockcount ?
5189 del.br_blockcount : mod;
5190 if (bno < got.br_startoff) {
5191 if (--lastx >= 0)
5192 xfs_bmbt_get_all(xfs_iext_get_ext(
5193 ifp, lastx), &got);
5195 continue;
5198 * It's written, turn it unwritten.
5199 * This is better than zeroing it.
5201 ASSERT(del.br_state == XFS_EXT_NORM);
5202 ASSERT(xfs_trans_get_block_res(tp) > 0);
5204 * If this spans a realtime extent boundary,
5205 * chop it back to the start of the one we end at.
5207 if (del.br_blockcount > mod) {
5208 del.br_startoff += del.br_blockcount - mod;
5209 del.br_startblock += del.br_blockcount - mod;
5210 del.br_blockcount = mod;
5212 del.br_state = XFS_EXT_UNWRITTEN;
5213 error = xfs_bmap_add_extent_unwritten_real(tp, ip,
5214 &lastx, &cur, &del, firstblock, flist,
5215 &logflags);
5216 if (error)
5217 goto error0;
5218 goto nodelete;
5220 if (isrt && (mod = do_mod(del.br_startblock, mp->m_sb.sb_rextsize))) {
5222 * Realtime extent is lined up at the end but not
5223 * at the front. We'll get rid of full extents if
5224 * we can.
5226 mod = mp->m_sb.sb_rextsize - mod;
5227 if (del.br_blockcount > mod) {
5228 del.br_blockcount -= mod;
5229 del.br_startoff += mod;
5230 del.br_startblock += mod;
5231 } else if ((del.br_startoff == start &&
5232 (del.br_state == XFS_EXT_UNWRITTEN ||
5233 xfs_trans_get_block_res(tp) == 0)) ||
5234 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
5236 * Can't make it unwritten. There isn't
5237 * a full extent here so just skip it.
5239 ASSERT(bno >= del.br_blockcount);
5240 bno -= del.br_blockcount;
5241 if (got.br_startoff > bno) {
5242 if (--lastx >= 0) {
5243 ep = xfs_iext_get_ext(ifp,
5244 lastx);
5245 xfs_bmbt_get_all(ep, &got);
5248 continue;
5249 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
5251 * This one is already unwritten.
5252 * It must have a written left neighbor.
5253 * Unwrite the killed part of that one and
5254 * try again.
5256 ASSERT(lastx > 0);
5257 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5258 lastx - 1), &prev);
5259 ASSERT(prev.br_state == XFS_EXT_NORM);
5260 ASSERT(!isnullstartblock(prev.br_startblock));
5261 ASSERT(del.br_startblock ==
5262 prev.br_startblock + prev.br_blockcount);
5263 if (prev.br_startoff < start) {
5264 mod = start - prev.br_startoff;
5265 prev.br_blockcount -= mod;
5266 prev.br_startblock += mod;
5267 prev.br_startoff = start;
5269 prev.br_state = XFS_EXT_UNWRITTEN;
5270 lastx--;
5271 error = xfs_bmap_add_extent_unwritten_real(tp,
5272 ip, &lastx, &cur, &prev,
5273 firstblock, flist, &logflags);
5274 if (error)
5275 goto error0;
5276 goto nodelete;
5277 } else {
5278 ASSERT(del.br_state == XFS_EXT_NORM);
5279 del.br_state = XFS_EXT_UNWRITTEN;
5280 error = xfs_bmap_add_extent_unwritten_real(tp,
5281 ip, &lastx, &cur, &del,
5282 firstblock, flist, &logflags);
5283 if (error)
5284 goto error0;
5285 goto nodelete;
5288 if (wasdel) {
5289 ASSERT(startblockval(del.br_startblock) > 0);
5290 /* Update realtime/data freespace, unreserve quota */
5291 if (isrt) {
5292 xfs_filblks_t rtexts;
5294 rtexts = XFS_FSB_TO_B(mp, del.br_blockcount);
5295 do_div(rtexts, mp->m_sb.sb_rextsize);
5296 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
5297 (int64_t)rtexts, 0);
5298 (void)xfs_trans_reserve_quota_nblks(NULL,
5299 ip, -((long)del.br_blockcount), 0,
5300 XFS_QMOPT_RES_RTBLKS);
5301 } else {
5302 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
5303 (int64_t)del.br_blockcount, 0);
5304 (void)xfs_trans_reserve_quota_nblks(NULL,
5305 ip, -((long)del.br_blockcount), 0,
5306 XFS_QMOPT_RES_REGBLKS);
5308 ip->i_delayed_blks -= del.br_blockcount;
5309 if (cur)
5310 cur->bc_private.b.flags |=
5311 XFS_BTCUR_BPRV_WASDEL;
5312 } else if (cur)
5313 cur->bc_private.b.flags &= ~XFS_BTCUR_BPRV_WASDEL;
5315 * If it's the case where the directory code is running
5316 * with no block reservation, and the deleted block is in
5317 * the middle of its extent, and the resulting insert
5318 * of an extent would cause transformation to btree format,
5319 * then reject it. The calling code will then swap
5320 * blocks around instead.
5321 * We have to do this now, rather than waiting for the
5322 * conversion to btree format, since the transaction
5323 * will be dirty.
5325 if (!wasdel && xfs_trans_get_block_res(tp) == 0 &&
5326 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
5327 XFS_IFORK_NEXTENTS(ip, whichfork) >= /* Note the >= */
5328 XFS_IFORK_MAXEXT(ip, whichfork) &&
5329 del.br_startoff > got.br_startoff &&
5330 del.br_startoff + del.br_blockcount <
5331 got.br_startoff + got.br_blockcount) {
5332 error = XFS_ERROR(ENOSPC);
5333 goto error0;
5335 error = xfs_bmap_del_extent(ip, tp, &lastx, flist, cur, &del,
5336 &tmp_logflags, whichfork);
5337 logflags |= tmp_logflags;
5338 if (error)
5339 goto error0;
5340 bno = del.br_startoff - 1;
5341 nodelete:
5343 * If not done go on to the next (previous) record.
5345 if (bno != (xfs_fileoff_t)-1 && bno >= start) {
5346 if (lastx >= 0) {
5347 ep = xfs_iext_get_ext(ifp, lastx);
5348 if (xfs_bmbt_get_startoff(ep) > bno) {
5349 if (--lastx >= 0)
5350 ep = xfs_iext_get_ext(ifp,
5351 lastx);
5353 xfs_bmbt_get_all(ep, &got);
5355 extno++;
5358 *done = bno == (xfs_fileoff_t)-1 || bno < start || lastx < 0;
5361 * Convert to a btree if necessary.
5363 if (xfs_bmap_needs_btree(ip, whichfork)) {
5364 ASSERT(cur == NULL);
5365 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist,
5366 &cur, 0, &tmp_logflags, whichfork);
5367 logflags |= tmp_logflags;
5368 if (error)
5369 goto error0;
5372 * transform from btree to extents, give it cur
5374 else if (xfs_bmap_wants_extents(ip, whichfork)) {
5375 ASSERT(cur != NULL);
5376 error = xfs_bmap_btree_to_extents(tp, ip, cur, &tmp_logflags,
5377 whichfork);
5378 logflags |= tmp_logflags;
5379 if (error)
5380 goto error0;
5383 * transform from extents to local?
5385 error = 0;
5386 error0:
5388 * Log everything. Do this after conversion, there's no point in
5389 * logging the extent records if we've converted to btree format.
5391 if ((logflags & xfs_ilog_fext(whichfork)) &&
5392 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
5393 logflags &= ~xfs_ilog_fext(whichfork);
5394 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
5395 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
5396 logflags &= ~xfs_ilog_fbroot(whichfork);
5398 * Log inode even in the error case, if the transaction
5399 * is dirty we'll need to shut down the filesystem.
5401 if (logflags)
5402 xfs_trans_log_inode(tp, ip, logflags);
5403 if (cur) {
5404 if (!error) {
5405 *firstblock = cur->bc_private.b.firstblock;
5406 cur->bc_private.b.allocated = 0;
5408 xfs_btree_del_cursor(cur,
5409 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5411 return error;
5415 * Shift extent records to the left to cover a hole.
5417 * The maximum number of extents to be shifted in a single operation
5418 * is @num_exts, and @current_ext keeps track of the current extent
5419 * index we have shifted. @offset_shift_fsb is the length by which each
5420 * extent is shifted. If there is no hole to shift the extents
5421 * into, this will be considered invalid operation and we abort immediately.
5424 xfs_bmap_shift_extents(
5425 struct xfs_trans *tp,
5426 struct xfs_inode *ip,
5427 int *done,
5428 xfs_fileoff_t start_fsb,
5429 xfs_fileoff_t offset_shift_fsb,
5430 xfs_extnum_t *current_ext,
5431 xfs_fsblock_t *firstblock,
5432 struct xfs_bmap_free *flist,
5433 int num_exts)
5435 struct xfs_btree_cur *cur;
5436 struct xfs_bmbt_rec_host *gotp;
5437 struct xfs_bmbt_irec got;
5438 struct xfs_bmbt_irec left;
5439 struct xfs_mount *mp = ip->i_mount;
5440 struct xfs_ifork *ifp;
5441 xfs_extnum_t nexts = 0;
5442 xfs_fileoff_t startoff;
5443 int error = 0;
5444 int i;
5445 int whichfork = XFS_DATA_FORK;
5446 int logflags;
5447 xfs_filblks_t blockcount = 0;
5448 int total_extents;
5450 if (unlikely(XFS_TEST_ERROR(
5451 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5452 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
5453 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
5454 XFS_ERROR_REPORT("xfs_bmap_shift_extents",
5455 XFS_ERRLEVEL_LOW, mp);
5456 return XFS_ERROR(EFSCORRUPTED);
5459 if (XFS_FORCED_SHUTDOWN(mp))
5460 return XFS_ERROR(EIO);
5462 ASSERT(current_ext != NULL);
5464 ifp = XFS_IFORK_PTR(ip, whichfork);
5465 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5466 /* Read in all the extents */
5467 error = xfs_iread_extents(tp, ip, whichfork);
5468 if (error)
5469 return error;
5473 * If *current_ext is 0, we would need to lookup the extent
5474 * from where we would start shifting and store it in gotp.
5476 if (!*current_ext) {
5477 gotp = xfs_iext_bno_to_ext(ifp, start_fsb, current_ext);
5479 * gotp can be null in 2 cases: 1) if there are no extents
5480 * or 2) start_fsb lies in a hole beyond which there are
5481 * no extents. Either way, we are done.
5483 if (!gotp) {
5484 *done = 1;
5485 return 0;
5489 /* We are going to change core inode */
5490 logflags = XFS_ILOG_CORE;
5491 if (ifp->if_flags & XFS_IFBROOT) {
5492 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5493 cur->bc_private.b.firstblock = *firstblock;
5494 cur->bc_private.b.flist = flist;
5495 cur->bc_private.b.flags = 0;
5496 } else {
5497 cur = NULL;
5498 logflags |= XFS_ILOG_DEXT;
5502 * There may be delalloc extents in the data fork before the range we
5503 * are collapsing out, so we cannot
5504 * use the count of real extents here. Instead we have to calculate it
5505 * from the incore fork.
5507 total_extents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
5508 while (nexts++ < num_exts && *current_ext < total_extents) {
5510 gotp = xfs_iext_get_ext(ifp, *current_ext);
5511 xfs_bmbt_get_all(gotp, &got);
5512 startoff = got.br_startoff - offset_shift_fsb;
5515 * Before shifting extent into hole, make sure that the hole
5516 * is large enough to accomodate the shift.
5518 if (*current_ext) {
5519 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5520 *current_ext - 1), &left);
5522 if (startoff < left.br_startoff + left.br_blockcount)
5523 error = XFS_ERROR(EINVAL);
5524 } else if (offset_shift_fsb > got.br_startoff) {
5526 * When first extent is shifted, offset_shift_fsb
5527 * should be less than the stating offset of
5528 * the first extent.
5530 error = XFS_ERROR(EINVAL);
5533 if (error)
5534 goto del_cursor;
5536 if (cur) {
5537 error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
5538 got.br_startblock,
5539 got.br_blockcount,
5540 &i);
5541 if (error)
5542 goto del_cursor;
5543 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5546 /* Check if we can merge 2 adjacent extents */
5547 if (*current_ext &&
5548 left.br_startoff + left.br_blockcount == startoff &&
5549 left.br_startblock + left.br_blockcount ==
5550 got.br_startblock &&
5551 left.br_state == got.br_state &&
5552 left.br_blockcount + got.br_blockcount <= MAXEXTLEN) {
5553 blockcount = left.br_blockcount +
5554 got.br_blockcount;
5555 xfs_iext_remove(ip, *current_ext, 1, 0);
5556 if (cur) {
5557 error = xfs_btree_delete(cur, &i);
5558 if (error)
5559 goto del_cursor;
5560 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5562 XFS_IFORK_NEXT_SET(ip, whichfork,
5563 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
5564 gotp = xfs_iext_get_ext(ifp, --*current_ext);
5565 xfs_bmbt_get_all(gotp, &got);
5567 /* Make cursor point to the extent we will update */
5568 if (cur) {
5569 error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
5570 got.br_startblock,
5571 got.br_blockcount,
5572 &i);
5573 if (error)
5574 goto del_cursor;
5575 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5578 xfs_bmbt_set_blockcount(gotp, blockcount);
5579 got.br_blockcount = blockcount;
5580 } else {
5581 /* We have to update the startoff */
5582 xfs_bmbt_set_startoff(gotp, startoff);
5583 got.br_startoff = startoff;
5586 if (cur) {
5587 error = xfs_bmbt_update(cur, got.br_startoff,
5588 got.br_startblock,
5589 got.br_blockcount,
5590 got.br_state);
5591 if (error)
5592 goto del_cursor;
5595 (*current_ext)++;
5596 total_extents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
5599 /* Check if we are done */
5600 if (*current_ext == total_extents)
5601 *done = 1;
5603 del_cursor:
5604 if (cur)
5605 xfs_btree_del_cursor(cur,
5606 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5608 xfs_trans_log_inode(tp, ip, logflags);
5609 return error;