xfs: convert directory segment limits to xfs_da_geometry
[deliverable/linux.git] / fs / xfs / xfs_bmap.c
1 /*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
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.
8 *
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.
13 *
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
17 */
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"
51
52
53 kmem_zone_t *xfs_bmap_free_item_zone;
54
55 /*
56 * Miscellaneous helper functions
57 */
58
59 /*
60 * Compute and fill in the value of the maximum depth of a bmap btree
61 * in this filesystem. Done once, during mount.
62 */
63 void
64 xfs_bmap_compute_maxlevels(
65 xfs_mount_t *mp, /* file system mount structure */
66 int whichfork) /* data or attr fork */
67 {
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 */
75
76 /*
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).
81 *
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.
89 */
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);
96 }
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;
106 }
107 mp->m_bm_maxlevels[whichfork] = level;
108 }
109
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 */
117 {
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);
122 }
123
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 */
131 {
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);
136 }
137
138 /*
139 * Check if the inode needs to be converted to btree format.
140 */
141 static inline bool xfs_bmap_needs_btree(struct xfs_inode *ip, int whichfork)
142 {
143 return XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
144 XFS_IFORK_NEXTENTS(ip, whichfork) >
145 XFS_IFORK_MAXEXT(ip, whichfork);
146 }
147
148 /*
149 * Check if the inode should be converted to extent format.
150 */
151 static inline bool xfs_bmap_wants_extents(struct xfs_inode *ip, int whichfork)
152 {
153 return XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
154 XFS_IFORK_NEXTENTS(ip, whichfork) <=
155 XFS_IFORK_MAXEXT(ip, whichfork);
156 }
157
158 /*
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.
162 */
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)
170 {
171 union xfs_btree_rec rec;
172
173 xfs_bmbt_disk_set_allf(&rec.bmbt, off, bno, len, state);
174 return xfs_btree_update(cur, &rec);
175 }
176
177 /*
178 * Compute the worst-case number of indirect blocks that will be used
179 * for ip's delayed extent of length "len".
180 */
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 */
185 {
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 */
190
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];
204 }
205 return rval;
206 }
207
208 /*
209 * Calculate the default attribute fork offset for newly created inodes.
210 */
211 uint
212 xfs_default_attroffset(
213 struct xfs_inode *ip)
214 {
215 struct xfs_mount *mp = ip->i_mount;
216 uint offset;
217
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);
223 }
224
225 ASSERT(offset < XFS_LITINO(mp, ip->i_d.di_version));
226 return offset;
227 }
228
229 /*
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.
233 */
234 STATIC void
235 xfs_bmap_forkoff_reset(
236 xfs_inode_t *ip,
237 int whichfork)
238 {
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;
244
245 if (dfl_forkoff > ip->i_d.di_forkoff)
246 ip->i_d.di_forkoff = dfl_forkoff;
247 }
248 }
249
250 /*
251 * Debug/sanity checking code
252 */
253
254 STATIC int
255 xfs_bmap_sanity_check(
256 struct xfs_mount *mp,
257 struct xfs_buf *bp,
258 int level)
259 {
260 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
261
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;
265
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;
270
271 return 1;
272 }
273
274 #ifdef DEBUG
275 STATIC struct xfs_buf *
276 xfs_bmap_get_bp(
277 struct xfs_btree_cur *cur,
278 xfs_fsblock_t bno)
279 {
280 struct xfs_log_item_desc *lidp;
281 int i;
282
283 if (!cur)
284 return NULL;
285
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];
291 }
292
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;
300 }
301
302 return NULL;
303 }
304
305 STATIC void
306 xfs_check_block(
307 struct xfs_btree_block *block,
308 xfs_mount_t *mp,
309 int root,
310 short sz)
311 {
312 int i, j, dmxr;
313 __be64 *pp, *thispa; /* pointer to block address */
314 xfs_bmbt_key_t *prevp, *keyp;
315
316 ASSERT(be16_to_cpu(block->bb_level) > 0);
317
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);
322
323 if (prevp) {
324 ASSERT(be64_to_cpu(prevp->br_startoff) <
325 be64_to_cpu(keyp->br_startoff));
326 }
327 prevp = keyp;
328
329 /*
330 * Compare the block numbers to see if there are dups.
331 */
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);
336
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__);
348 }
349 }
350 }
351 }
352
353 /*
354 * Check that the extents for the inode ip are in the right order in all
355 * btree leaves.
356 */
357
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 */
363 {
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;
377
378 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) {
379 return;
380 }
381
382 bno = NULLFSBLOCK;
383 mp = ip->i_mount;
384 ifp = XFS_IFORK_PTR(ip, whichfork);
385 block = ifp->if_broot;
386 /*
387 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
388 */
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);
394
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);
398
399 /*
400 * Go down the tree until leaf level is reached, following the first
401 * pointer (leftmost) at each level.
402 */
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;
414 }
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;
421
422 /*
423 * Check this block for basic sanity (increasing keys and
424 * no duplicate blocks).
425 */
426
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);
434 }
435 }
436
437 /*
438 * Here with bp and block set to the leftmost leaf node in the tree.
439 */
440 i = 0;
441
442 /*
443 * Loop over all leaf nodes checking that all extents are in the right order.
444 */
445 for (;;) {
446 xfs_fsblock_t nextbno;
447 xfs_extnum_t num_recs;
448
449
450 num_recs = xfs_btree_get_numrecs(block);
451
452 /*
453 * Read-ahead the next leaf block, if any.
454 */
455
456 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
457
458 /*
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.
462 */
463
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));
469 }
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;
476 }
477
478 last = *ep;
479 i += num_recs;
480 if (bp_release) {
481 bp_release = 0;
482 xfs_trans_brelse(NULL, bp);
483 }
484 bno = nextbno;
485 /*
486 * If we've reached the end, stop.
487 */
488 if (bno == NULLFSBLOCK)
489 break;
490
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;
500 }
501 block = XFS_BUF_TO_BLOCK(bp);
502 }
503 if (bp_release) {
504 bp_release = 0;
505 xfs_trans_brelse(NULL, bp);
506 }
507 return;
508
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;
518 }
519
520 /*
521 * Add bmap trace insert entries for all the contents of the extent records.
522 */
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)
529 {
530 xfs_extnum_t idx; /* extent record index */
531 xfs_ifork_t *ifp; /* inode fork pointer */
532 int state = 0;
533
534 if (whichfork == XFS_ATTR_FORK)
535 state |= BMAP_ATTRFORK;
536
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);
541 }
542
543 /*
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.
548 */
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)
557 {
558 int i; /* index to map values */
559
560 ASSERT(ret_nmap <= nmap);
561
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);
573 }
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);
581 }
582 }
583
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 */
588
589 /*
590 * bmap free list manipulation functions
591 */
592
593 /*
594 * Add the extent to the list of extents to be free at transaction end.
595 * The list is maintained sorted (by block number).
596 */
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 */
603 {
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;
610
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;
631 }
632 if (prev)
633 prev->xbfi_next = new;
634 else
635 flist->xbf_first = new;
636 new->xbfi_next = cur;
637 flist->xbf_count++;
638 }
639
640 /*
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.
643 */
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 */
649 {
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);
656 }
657
658 /*
659 * Free up any items left in the list.
660 */
661 void
662 xfs_bmap_cancel(
663 xfs_bmap_free_t *flist) /* list of bmap_free_items */
664 {
665 xfs_bmap_free_item_t *free; /* free list item */
666 xfs_bmap_free_item_t *next;
667
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);
674 }
675 ASSERT(flist->xbf_count == 0);
676 }
677
678 /*
679 * Inode fork format manipulation functions
680 */
681
682 /*
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.
687 */
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 */
695 {
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 */
705
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;
740 }
741
742 /*
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.
745 */
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 */
756 {
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 */
771
772 mp = ip->i_mount;
773 ifp = XFS_IFORK_PTR(ip, whichfork);
774 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS);
775
776 /*
777 * Make space in the inode incore.
778 */
779 xfs_iroot_realloc(ip, 1, whichfork);
780 ifp->if_flags |= XFS_IFBROOT;
781
782 /*
783 * Fill in the root.
784 */
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);
794
795 /*
796 * Need a cursor. Can't allocate until bb_level is filled in.
797 */
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;
802 /*
803 * Convert to a btree with two levels, one record in root.
804 */
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;
819 }
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;
827 }
828 /*
829 * Allocation can't fail, the space was reserved.
830 */
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);
841 /*
842 * Fill in the child block.
843 */
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);
854
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++;
863 }
864 }
865 ASSERT(cnt == XFS_IFORK_NEXTENTS(ip, whichfork));
866 xfs_btree_set_numrecs(ablock, cnt);
867
868 /*
869 * Fill in the root key and pointer.
870 */
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);
877
878 /*
879 * Do all this logging at the end so that
880 * the root is at the right level.
881 */
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;
888 }
889
890 /*
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).
895 */
896 void
897 xfs_bmap_local_to_extents_empty(
898 struct xfs_inode *ip,
899 int whichfork)
900 {
901 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
902
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);
906
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);
911 }
912
913
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))
926 {
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 */
933
934 /*
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.
937 */
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);
941
942 if (!ifp->if_bytes) {
943 xfs_bmap_local_to_extents_empty(ip, whichfork);
944 flags = XFS_ILOG_CORE;
945 goto done;
946 }
947
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;
956 /*
957 * Allocate a block. We know we need only one, since the
958 * file currently fits in an inode.
959 */
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;
966 }
967 args.total = total;
968 args.minlen = args.maxlen = args.prod = 1;
969 error = xfs_alloc_vextent(&args);
970 if (error)
971 goto done;
972
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);
978
979 /* initialise the block and copy the data */
980 init_fn(tp, bp, ip, ifp);
981
982 /* account for the change in fork size and log everything */
983 xfs_trans_log_buf(tp, bp, 0, ifp->if_bytes - 1);
984 xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
985 xfs_bmap_local_to_extents_empty(ip, whichfork);
986 flags |= XFS_ILOG_CORE;
987
988 xfs_iext_add(ifp, 0, 1);
989 ep = xfs_iext_get_ext(ifp, 0);
990 xfs_bmbt_set_allf(ep, 0, args.fsbno, 1, XFS_EXT_NORM);
991 trace_xfs_bmap_post_update(ip, 0,
992 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0,
993 _THIS_IP_);
994 XFS_IFORK_NEXT_SET(ip, whichfork, 1);
995 ip->i_d.di_nblocks = 1;
996 xfs_trans_mod_dquot_byino(tp, ip,
997 XFS_TRANS_DQ_BCOUNT, 1L);
998 flags |= xfs_ilog_fext(whichfork);
999
1000 done:
1001 *logflagsp = flags;
1002 return error;
1003 }
1004
1005 /*
1006 * Called from xfs_bmap_add_attrfork to handle btree format files.
1007 */
1008 STATIC int /* error */
1009 xfs_bmap_add_attrfork_btree(
1010 xfs_trans_t *tp, /* transaction pointer */
1011 xfs_inode_t *ip, /* incore inode pointer */
1012 xfs_fsblock_t *firstblock, /* first block allocated */
1013 xfs_bmap_free_t *flist, /* blocks to free at commit */
1014 int *flags) /* inode logging flags */
1015 {
1016 xfs_btree_cur_t *cur; /* btree cursor */
1017 int error; /* error return value */
1018 xfs_mount_t *mp; /* file system mount struct */
1019 int stat; /* newroot status */
1020
1021 mp = ip->i_mount;
1022 if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip))
1023 *flags |= XFS_ILOG_DBROOT;
1024 else {
1025 cur = xfs_bmbt_init_cursor(mp, tp, ip, XFS_DATA_FORK);
1026 cur->bc_private.b.flist = flist;
1027 cur->bc_private.b.firstblock = *firstblock;
1028 if ((error = xfs_bmbt_lookup_ge(cur, 0, 0, 0, &stat)))
1029 goto error0;
1030 /* must be at least one entry */
1031 XFS_WANT_CORRUPTED_GOTO(stat == 1, error0);
1032 if ((error = xfs_btree_new_iroot(cur, flags, &stat)))
1033 goto error0;
1034 if (stat == 0) {
1035 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1036 return XFS_ERROR(ENOSPC);
1037 }
1038 *firstblock = cur->bc_private.b.firstblock;
1039 cur->bc_private.b.allocated = 0;
1040 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1041 }
1042 return 0;
1043 error0:
1044 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1045 return error;
1046 }
1047
1048 /*
1049 * Called from xfs_bmap_add_attrfork to handle extents format files.
1050 */
1051 STATIC int /* error */
1052 xfs_bmap_add_attrfork_extents(
1053 xfs_trans_t *tp, /* transaction pointer */
1054 xfs_inode_t *ip, /* incore inode pointer */
1055 xfs_fsblock_t *firstblock, /* first block allocated */
1056 xfs_bmap_free_t *flist, /* blocks to free at commit */
1057 int *flags) /* inode logging flags */
1058 {
1059 xfs_btree_cur_t *cur; /* bmap btree cursor */
1060 int error; /* error return value */
1061
1062 if (ip->i_d.di_nextents * sizeof(xfs_bmbt_rec_t) <= XFS_IFORK_DSIZE(ip))
1063 return 0;
1064 cur = NULL;
1065 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist, &cur, 0,
1066 flags, XFS_DATA_FORK);
1067 if (cur) {
1068 cur->bc_private.b.allocated = 0;
1069 xfs_btree_del_cursor(cur,
1070 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
1071 }
1072 return error;
1073 }
1074
1075 /*
1076 * Called from xfs_bmap_add_attrfork to handle local format files. Each
1077 * different data fork content type needs a different callout to do the
1078 * conversion. Some are basic and only require special block initialisation
1079 * callouts for the data formating, others (directories) are so specialised they
1080 * handle everything themselves.
1081 *
1082 * XXX (dgc): investigate whether directory conversion can use the generic
1083 * formatting callout. It should be possible - it's just a very complex
1084 * formatter.
1085 */
1086 STATIC int /* error */
1087 xfs_bmap_add_attrfork_local(
1088 xfs_trans_t *tp, /* transaction pointer */
1089 xfs_inode_t *ip, /* incore inode pointer */
1090 xfs_fsblock_t *firstblock, /* first block allocated */
1091 xfs_bmap_free_t *flist, /* blocks to free at commit */
1092 int *flags) /* inode logging flags */
1093 {
1094 xfs_da_args_t dargs; /* args for dir/attr code */
1095
1096 if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip))
1097 return 0;
1098
1099 if (S_ISDIR(ip->i_d.di_mode)) {
1100 memset(&dargs, 0, sizeof(dargs));
1101 dargs.dp = ip;
1102 dargs.firstblock = firstblock;
1103 dargs.flist = flist;
1104 dargs.total = ip->i_mount->m_dirblkfsbs;
1105 dargs.whichfork = XFS_DATA_FORK;
1106 dargs.trans = tp;
1107 return xfs_dir2_sf_to_block(&dargs);
1108 }
1109
1110 if (S_ISLNK(ip->i_d.di_mode))
1111 return xfs_bmap_local_to_extents(tp, ip, firstblock, 1,
1112 flags, XFS_DATA_FORK,
1113 xfs_symlink_local_to_remote);
1114
1115 /* should only be called for types that support local format data */
1116 ASSERT(0);
1117 return EFSCORRUPTED;
1118 }
1119
1120 /*
1121 * Convert inode from non-attributed to attributed.
1122 * Must not be in a transaction, ip must not be locked.
1123 */
1124 int /* error code */
1125 xfs_bmap_add_attrfork(
1126 xfs_inode_t *ip, /* incore inode pointer */
1127 int size, /* space new attribute needs */
1128 int rsvd) /* xact may use reserved blks */
1129 {
1130 xfs_fsblock_t firstblock; /* 1st block/ag allocated */
1131 xfs_bmap_free_t flist; /* freed extent records */
1132 xfs_mount_t *mp; /* mount structure */
1133 xfs_trans_t *tp; /* transaction pointer */
1134 int blks; /* space reservation */
1135 int version = 1; /* superblock attr version */
1136 int committed; /* xaction was committed */
1137 int logflags; /* logging flags */
1138 int error; /* error return value */
1139 int cancel_flags = 0;
1140
1141 ASSERT(XFS_IFORK_Q(ip) == 0);
1142
1143 mp = ip->i_mount;
1144 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
1145 tp = xfs_trans_alloc(mp, XFS_TRANS_ADDAFORK);
1146 blks = XFS_ADDAFORK_SPACE_RES(mp);
1147 if (rsvd)
1148 tp->t_flags |= XFS_TRANS_RESERVE;
1149 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_addafork, blks, 0);
1150 if (error) {
1151 xfs_trans_cancel(tp, 0);
1152 return error;
1153 }
1154 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1155 xfs_ilock(ip, XFS_ILOCK_EXCL);
1156 error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ?
1157 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
1158 XFS_QMOPT_RES_REGBLKS);
1159 if (error)
1160 goto trans_cancel;
1161 cancel_flags |= XFS_TRANS_ABORT;
1162 if (XFS_IFORK_Q(ip))
1163 goto trans_cancel;
1164 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) {
1165 /*
1166 * For inodes coming from pre-6.2 filesystems.
1167 */
1168 ASSERT(ip->i_d.di_aformat == 0);
1169 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1170 }
1171 ASSERT(ip->i_d.di_anextents == 0);
1172
1173 xfs_trans_ijoin(tp, ip, 0);
1174 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1175
1176 switch (ip->i_d.di_format) {
1177 case XFS_DINODE_FMT_DEV:
1178 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
1179 break;
1180 case XFS_DINODE_FMT_UUID:
1181 ip->i_d.di_forkoff = roundup(sizeof(uuid_t), 8) >> 3;
1182 break;
1183 case XFS_DINODE_FMT_LOCAL:
1184 case XFS_DINODE_FMT_EXTENTS:
1185 case XFS_DINODE_FMT_BTREE:
1186 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
1187 if (!ip->i_d.di_forkoff)
1188 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
1189 else if (mp->m_flags & XFS_MOUNT_ATTR2)
1190 version = 2;
1191 break;
1192 default:
1193 ASSERT(0);
1194 error = XFS_ERROR(EINVAL);
1195 goto trans_cancel;
1196 }
1197
1198 ASSERT(ip->i_afp == NULL);
1199 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
1200 ip->i_afp->if_flags = XFS_IFEXTENTS;
1201 logflags = 0;
1202 xfs_bmap_init(&flist, &firstblock);
1203 switch (ip->i_d.di_format) {
1204 case XFS_DINODE_FMT_LOCAL:
1205 error = xfs_bmap_add_attrfork_local(tp, ip, &firstblock, &flist,
1206 &logflags);
1207 break;
1208 case XFS_DINODE_FMT_EXTENTS:
1209 error = xfs_bmap_add_attrfork_extents(tp, ip, &firstblock,
1210 &flist, &logflags);
1211 break;
1212 case XFS_DINODE_FMT_BTREE:
1213 error = xfs_bmap_add_attrfork_btree(tp, ip, &firstblock, &flist,
1214 &logflags);
1215 break;
1216 default:
1217 error = 0;
1218 break;
1219 }
1220 if (logflags)
1221 xfs_trans_log_inode(tp, ip, logflags);
1222 if (error)
1223 goto bmap_cancel;
1224 if (!xfs_sb_version_hasattr(&mp->m_sb) ||
1225 (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) {
1226 __int64_t sbfields = 0;
1227
1228 spin_lock(&mp->m_sb_lock);
1229 if (!xfs_sb_version_hasattr(&mp->m_sb)) {
1230 xfs_sb_version_addattr(&mp->m_sb);
1231 sbfields |= XFS_SB_VERSIONNUM;
1232 }
1233 if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) {
1234 xfs_sb_version_addattr2(&mp->m_sb);
1235 sbfields |= (XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
1236 }
1237 if (sbfields) {
1238 spin_unlock(&mp->m_sb_lock);
1239 xfs_mod_sb(tp, sbfields);
1240 } else
1241 spin_unlock(&mp->m_sb_lock);
1242 }
1243
1244 error = xfs_bmap_finish(&tp, &flist, &committed);
1245 if (error)
1246 goto bmap_cancel;
1247 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1248 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1249 return error;
1250
1251 bmap_cancel:
1252 xfs_bmap_cancel(&flist);
1253 trans_cancel:
1254 xfs_trans_cancel(tp, cancel_flags);
1255 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1256 return error;
1257 }
1258
1259 /*
1260 * Internal and external extent tree search functions.
1261 */
1262
1263 /*
1264 * Read in the extents to if_extents.
1265 * All inode fields are set up by caller, we just traverse the btree
1266 * and copy the records in. If the file system cannot contain unwritten
1267 * extents, the records are checked for no "state" flags.
1268 */
1269 int /* error */
1270 xfs_bmap_read_extents(
1271 xfs_trans_t *tp, /* transaction pointer */
1272 xfs_inode_t *ip, /* incore inode */
1273 int whichfork) /* data or attr fork */
1274 {
1275 struct xfs_btree_block *block; /* current btree block */
1276 xfs_fsblock_t bno; /* block # of "block" */
1277 xfs_buf_t *bp; /* buffer for "block" */
1278 int error; /* error return value */
1279 xfs_exntfmt_t exntf; /* XFS_EXTFMT_NOSTATE, if checking */
1280 xfs_extnum_t i, j; /* index into the extents list */
1281 xfs_ifork_t *ifp; /* fork structure */
1282 int level; /* btree level, for checking */
1283 xfs_mount_t *mp; /* file system mount structure */
1284 __be64 *pp; /* pointer to block address */
1285 /* REFERENCED */
1286 xfs_extnum_t room; /* number of entries there's room for */
1287
1288 bno = NULLFSBLOCK;
1289 mp = ip->i_mount;
1290 ifp = XFS_IFORK_PTR(ip, whichfork);
1291 exntf = (whichfork != XFS_DATA_FORK) ? XFS_EXTFMT_NOSTATE :
1292 XFS_EXTFMT_INODE(ip);
1293 block = ifp->if_broot;
1294 /*
1295 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
1296 */
1297 level = be16_to_cpu(block->bb_level);
1298 ASSERT(level > 0);
1299 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
1300 bno = be64_to_cpu(*pp);
1301 ASSERT(bno != NULLDFSBNO);
1302 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
1303 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
1304 /*
1305 * Go down the tree until leaf level is reached, following the first
1306 * pointer (leftmost) at each level.
1307 */
1308 while (level-- > 0) {
1309 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1310 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1311 if (error)
1312 return error;
1313 block = XFS_BUF_TO_BLOCK(bp);
1314 XFS_WANT_CORRUPTED_GOTO(
1315 xfs_bmap_sanity_check(mp, bp, level),
1316 error0);
1317 if (level == 0)
1318 break;
1319 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
1320 bno = be64_to_cpu(*pp);
1321 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
1322 xfs_trans_brelse(tp, bp);
1323 }
1324 /*
1325 * Here with bp and block set to the leftmost leaf node in the tree.
1326 */
1327 room = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1328 i = 0;
1329 /*
1330 * Loop over all leaf nodes. Copy information to the extent records.
1331 */
1332 for (;;) {
1333 xfs_bmbt_rec_t *frp;
1334 xfs_fsblock_t nextbno;
1335 xfs_extnum_t num_recs;
1336 xfs_extnum_t start;
1337
1338 num_recs = xfs_btree_get_numrecs(block);
1339 if (unlikely(i + num_recs > room)) {
1340 ASSERT(i + num_recs <= room);
1341 xfs_warn(ip->i_mount,
1342 "corrupt dinode %Lu, (btree extents).",
1343 (unsigned long long) ip->i_ino);
1344 XFS_CORRUPTION_ERROR("xfs_bmap_read_extents(1)",
1345 XFS_ERRLEVEL_LOW, ip->i_mount, block);
1346 goto error0;
1347 }
1348 XFS_WANT_CORRUPTED_GOTO(
1349 xfs_bmap_sanity_check(mp, bp, 0),
1350 error0);
1351 /*
1352 * Read-ahead the next leaf block, if any.
1353 */
1354 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
1355 if (nextbno != NULLFSBLOCK)
1356 xfs_btree_reada_bufl(mp, nextbno, 1,
1357 &xfs_bmbt_buf_ops);
1358 /*
1359 * Copy records into the extent records.
1360 */
1361 frp = XFS_BMBT_REC_ADDR(mp, block, 1);
1362 start = i;
1363 for (j = 0; j < num_recs; j++, i++, frp++) {
1364 xfs_bmbt_rec_host_t *trp = xfs_iext_get_ext(ifp, i);
1365 trp->l0 = be64_to_cpu(frp->l0);
1366 trp->l1 = be64_to_cpu(frp->l1);
1367 }
1368 if (exntf == XFS_EXTFMT_NOSTATE) {
1369 /*
1370 * Check all attribute bmap btree records and
1371 * any "older" data bmap btree records for a
1372 * set bit in the "extent flag" position.
1373 */
1374 if (unlikely(xfs_check_nostate_extents(ifp,
1375 start, num_recs))) {
1376 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
1377 XFS_ERRLEVEL_LOW,
1378 ip->i_mount);
1379 goto error0;
1380 }
1381 }
1382 xfs_trans_brelse(tp, bp);
1383 bno = nextbno;
1384 /*
1385 * If we've reached the end, stop.
1386 */
1387 if (bno == NULLFSBLOCK)
1388 break;
1389 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1390 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1391 if (error)
1392 return error;
1393 block = XFS_BUF_TO_BLOCK(bp);
1394 }
1395 ASSERT(i == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
1396 ASSERT(i == XFS_IFORK_NEXTENTS(ip, whichfork));
1397 XFS_BMAP_TRACE_EXLIST(ip, i, whichfork);
1398 return 0;
1399 error0:
1400 xfs_trans_brelse(tp, bp);
1401 return XFS_ERROR(EFSCORRUPTED);
1402 }
1403
1404
1405 /*
1406 * Search the extent records for the entry containing block bno.
1407 * If bno lies in a hole, point to the next entry. If bno lies
1408 * past eof, *eofp will be set, and *prevp will contain the last
1409 * entry (null if none). Else, *lastxp will be set to the index
1410 * of the found entry; *gotp will contain the entry.
1411 */
1412 STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1413 xfs_bmap_search_multi_extents(
1414 xfs_ifork_t *ifp, /* inode fork pointer */
1415 xfs_fileoff_t bno, /* block number searched for */
1416 int *eofp, /* out: end of file found */
1417 xfs_extnum_t *lastxp, /* out: last extent index */
1418 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1419 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1420 {
1421 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1422 xfs_extnum_t lastx; /* last extent index */
1423
1424 /*
1425 * Initialize the extent entry structure to catch access to
1426 * uninitialized br_startblock field.
1427 */
1428 gotp->br_startoff = 0xffa5a5a5a5a5a5a5LL;
1429 gotp->br_blockcount = 0xa55a5a5a5a5a5a5aLL;
1430 gotp->br_state = XFS_EXT_INVALID;
1431 #if XFS_BIG_BLKNOS
1432 gotp->br_startblock = 0xffffa5a5a5a5a5a5LL;
1433 #else
1434 gotp->br_startblock = 0xffffa5a5;
1435 #endif
1436 prevp->br_startoff = NULLFILEOFF;
1437
1438 ep = xfs_iext_bno_to_ext(ifp, bno, &lastx);
1439 if (lastx > 0) {
1440 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx - 1), prevp);
1441 }
1442 if (lastx < (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))) {
1443 xfs_bmbt_get_all(ep, gotp);
1444 *eofp = 0;
1445 } else {
1446 if (lastx > 0) {
1447 *gotp = *prevp;
1448 }
1449 *eofp = 1;
1450 ep = NULL;
1451 }
1452 *lastxp = lastx;
1453 return ep;
1454 }
1455
1456 /*
1457 * Search the extents list for the inode, for the extent containing bno.
1458 * If bno lies in a hole, point to the next entry. If bno lies past eof,
1459 * *eofp will be set, and *prevp will contain the last entry (null if none).
1460 * Else, *lastxp will be set to the index of the found
1461 * entry; *gotp will contain the entry.
1462 */
1463 STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1464 xfs_bmap_search_extents(
1465 xfs_inode_t *ip, /* incore inode pointer */
1466 xfs_fileoff_t bno, /* block number searched for */
1467 int fork, /* data or attr fork */
1468 int *eofp, /* out: end of file found */
1469 xfs_extnum_t *lastxp, /* out: last extent index */
1470 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1471 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1472 {
1473 xfs_ifork_t *ifp; /* inode fork pointer */
1474 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1475
1476 XFS_STATS_INC(xs_look_exlist);
1477 ifp = XFS_IFORK_PTR(ip, fork);
1478
1479 ep = xfs_bmap_search_multi_extents(ifp, bno, eofp, lastxp, gotp, prevp);
1480
1481 if (unlikely(!(gotp->br_startblock) && (*lastxp != NULLEXTNUM) &&
1482 !(XFS_IS_REALTIME_INODE(ip) && fork == XFS_DATA_FORK))) {
1483 xfs_alert_tag(ip->i_mount, XFS_PTAG_FSBLOCK_ZERO,
1484 "Access to block zero in inode %llu "
1485 "start_block: %llx start_off: %llx "
1486 "blkcnt: %llx extent-state: %x lastx: %x",
1487 (unsigned long long)ip->i_ino,
1488 (unsigned long long)gotp->br_startblock,
1489 (unsigned long long)gotp->br_startoff,
1490 (unsigned long long)gotp->br_blockcount,
1491 gotp->br_state, *lastxp);
1492 *lastxp = NULLEXTNUM;
1493 *eofp = 1;
1494 return NULL;
1495 }
1496 return ep;
1497 }
1498
1499 /*
1500 * Returns the file-relative block number of the first unused block(s)
1501 * in the file with at least "len" logically contiguous blocks free.
1502 * This is the lowest-address hole if the file has holes, else the first block
1503 * past the end of file.
1504 * Return 0 if the file is currently local (in-inode).
1505 */
1506 int /* error */
1507 xfs_bmap_first_unused(
1508 xfs_trans_t *tp, /* transaction pointer */
1509 xfs_inode_t *ip, /* incore inode */
1510 xfs_extlen_t len, /* size of hole to find */
1511 xfs_fileoff_t *first_unused, /* unused block */
1512 int whichfork) /* data or attr fork */
1513 {
1514 int error; /* error return value */
1515 int idx; /* extent record index */
1516 xfs_ifork_t *ifp; /* inode fork pointer */
1517 xfs_fileoff_t lastaddr; /* last block number seen */
1518 xfs_fileoff_t lowest; /* lowest useful block */
1519 xfs_fileoff_t max; /* starting useful block */
1520 xfs_fileoff_t off; /* offset for this block */
1521 xfs_extnum_t nextents; /* number of extent entries */
1522
1523 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE ||
1524 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ||
1525 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
1526 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1527 *first_unused = 0;
1528 return 0;
1529 }
1530 ifp = XFS_IFORK_PTR(ip, whichfork);
1531 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1532 (error = xfs_iread_extents(tp, ip, whichfork)))
1533 return error;
1534 lowest = *first_unused;
1535 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1536 for (idx = 0, lastaddr = 0, max = lowest; idx < nextents; idx++) {
1537 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
1538 off = xfs_bmbt_get_startoff(ep);
1539 /*
1540 * See if the hole before this extent will work.
1541 */
1542 if (off >= lowest + len && off - max >= len) {
1543 *first_unused = max;
1544 return 0;
1545 }
1546 lastaddr = off + xfs_bmbt_get_blockcount(ep);
1547 max = XFS_FILEOFF_MAX(lastaddr, lowest);
1548 }
1549 *first_unused = max;
1550 return 0;
1551 }
1552
1553 /*
1554 * Returns the file-relative block number of the last block - 1 before
1555 * last_block (input value) in the file.
1556 * This is not based on i_size, it is based on the extent records.
1557 * Returns 0 for local files, as they do not have extent records.
1558 */
1559 int /* error */
1560 xfs_bmap_last_before(
1561 xfs_trans_t *tp, /* transaction pointer */
1562 xfs_inode_t *ip, /* incore inode */
1563 xfs_fileoff_t *last_block, /* last block */
1564 int whichfork) /* data or attr fork */
1565 {
1566 xfs_fileoff_t bno; /* input file offset */
1567 int eof; /* hit end of file */
1568 xfs_bmbt_rec_host_t *ep; /* pointer to last extent */
1569 int error; /* error return value */
1570 xfs_bmbt_irec_t got; /* current extent value */
1571 xfs_ifork_t *ifp; /* inode fork pointer */
1572 xfs_extnum_t lastx; /* last extent used */
1573 xfs_bmbt_irec_t prev; /* previous extent value */
1574
1575 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1576 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
1577 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
1578 return XFS_ERROR(EIO);
1579 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1580 *last_block = 0;
1581 return 0;
1582 }
1583 ifp = XFS_IFORK_PTR(ip, whichfork);
1584 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1585 (error = xfs_iread_extents(tp, ip, whichfork)))
1586 return error;
1587 bno = *last_block - 1;
1588 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
1589 &prev);
1590 if (eof || xfs_bmbt_get_startoff(ep) > bno) {
1591 if (prev.br_startoff == NULLFILEOFF)
1592 *last_block = 0;
1593 else
1594 *last_block = prev.br_startoff + prev.br_blockcount;
1595 }
1596 /*
1597 * Otherwise *last_block is already the right answer.
1598 */
1599 return 0;
1600 }
1601
1602 int
1603 xfs_bmap_last_extent(
1604 struct xfs_trans *tp,
1605 struct xfs_inode *ip,
1606 int whichfork,
1607 struct xfs_bmbt_irec *rec,
1608 int *is_empty)
1609 {
1610 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1611 int error;
1612 int nextents;
1613
1614 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1615 error = xfs_iread_extents(tp, ip, whichfork);
1616 if (error)
1617 return error;
1618 }
1619
1620 nextents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
1621 if (nextents == 0) {
1622 *is_empty = 1;
1623 return 0;
1624 }
1625
1626 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, nextents - 1), rec);
1627 *is_empty = 0;
1628 return 0;
1629 }
1630
1631 /*
1632 * Check the last inode extent to determine whether this allocation will result
1633 * in blocks being allocated at the end of the file. When we allocate new data
1634 * blocks at the end of the file which do not start at the previous data block,
1635 * we will try to align the new blocks at stripe unit boundaries.
1636 *
1637 * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be
1638 * at, or past the EOF.
1639 */
1640 STATIC int
1641 xfs_bmap_isaeof(
1642 struct xfs_bmalloca *bma,
1643 int whichfork)
1644 {
1645 struct xfs_bmbt_irec rec;
1646 int is_empty;
1647 int error;
1648
1649 bma->aeof = 0;
1650 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec,
1651 &is_empty);
1652 if (error)
1653 return error;
1654
1655 if (is_empty) {
1656 bma->aeof = 1;
1657 return 0;
1658 }
1659
1660 /*
1661 * Check if we are allocation or past the last extent, or at least into
1662 * the last delayed allocated extent.
1663 */
1664 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount ||
1665 (bma->offset >= rec.br_startoff &&
1666 isnullstartblock(rec.br_startblock));
1667 return 0;
1668 }
1669
1670 /*
1671 * Returns the file-relative block number of the first block past eof in
1672 * the file. This is not based on i_size, it is based on the extent records.
1673 * Returns 0 for local files, as they do not have extent records.
1674 */
1675 int
1676 xfs_bmap_last_offset(
1677 struct xfs_inode *ip,
1678 xfs_fileoff_t *last_block,
1679 int whichfork)
1680 {
1681 struct xfs_bmbt_irec rec;
1682 int is_empty;
1683 int error;
1684
1685 *last_block = 0;
1686
1687 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL)
1688 return 0;
1689
1690 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1691 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1692 return XFS_ERROR(EIO);
1693
1694 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty);
1695 if (error || is_empty)
1696 return error;
1697
1698 *last_block = rec.br_startoff + rec.br_blockcount;
1699 return 0;
1700 }
1701
1702 /*
1703 * Returns whether the selected fork of the inode has exactly one
1704 * block or not. For the data fork we check this matches di_size,
1705 * implying the file's range is 0..bsize-1.
1706 */
1707 int /* 1=>1 block, 0=>otherwise */
1708 xfs_bmap_one_block(
1709 xfs_inode_t *ip, /* incore inode */
1710 int whichfork) /* data or attr fork */
1711 {
1712 xfs_bmbt_rec_host_t *ep; /* ptr to fork's extent */
1713 xfs_ifork_t *ifp; /* inode fork pointer */
1714 int rval; /* return value */
1715 xfs_bmbt_irec_t s; /* internal version of extent */
1716
1717 #ifndef DEBUG
1718 if (whichfork == XFS_DATA_FORK)
1719 return XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize;
1720 #endif /* !DEBUG */
1721 if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1)
1722 return 0;
1723 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1724 return 0;
1725 ifp = XFS_IFORK_PTR(ip, whichfork);
1726 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
1727 ep = xfs_iext_get_ext(ifp, 0);
1728 xfs_bmbt_get_all(ep, &s);
1729 rval = s.br_startoff == 0 && s.br_blockcount == 1;
1730 if (rval && whichfork == XFS_DATA_FORK)
1731 ASSERT(XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize);
1732 return rval;
1733 }
1734
1735 /*
1736 * Extent tree manipulation functions used during allocation.
1737 */
1738
1739 /*
1740 * Convert a delayed allocation to a real allocation.
1741 */
1742 STATIC int /* error */
1743 xfs_bmap_add_extent_delay_real(
1744 struct xfs_bmalloca *bma)
1745 {
1746 struct xfs_bmbt_irec *new = &bma->got;
1747 int diff; /* temp value */
1748 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
1749 int error; /* error return value */
1750 int i; /* temp state */
1751 xfs_ifork_t *ifp; /* inode fork pointer */
1752 xfs_fileoff_t new_endoff; /* end offset of new entry */
1753 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
1754 /* left is 0, right is 1, prev is 2 */
1755 int rval=0; /* return value (logging flags) */
1756 int state = 0;/* state bits, accessed thru macros */
1757 xfs_filblks_t da_new; /* new count del alloc blocks used */
1758 xfs_filblks_t da_old; /* old count del alloc blocks used */
1759 xfs_filblks_t temp=0; /* value for da_new calculations */
1760 xfs_filblks_t temp2=0;/* value for da_new calculations */
1761 int tmp_rval; /* partial logging flags */
1762
1763 ifp = XFS_IFORK_PTR(bma->ip, XFS_DATA_FORK);
1764
1765 ASSERT(bma->idx >= 0);
1766 ASSERT(bma->idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
1767 ASSERT(!isnullstartblock(new->br_startblock));
1768 ASSERT(!bma->cur ||
1769 (bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
1770
1771 XFS_STATS_INC(xs_add_exlist);
1772
1773 #define LEFT r[0]
1774 #define RIGHT r[1]
1775 #define PREV r[2]
1776
1777 /*
1778 * Set up a bunch of variables to make the tests simpler.
1779 */
1780 ep = xfs_iext_get_ext(ifp, bma->idx);
1781 xfs_bmbt_get_all(ep, &PREV);
1782 new_endoff = new->br_startoff + new->br_blockcount;
1783 ASSERT(PREV.br_startoff <= new->br_startoff);
1784 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
1785
1786 da_old = startblockval(PREV.br_startblock);
1787 da_new = 0;
1788
1789 /*
1790 * Set flags determining what part of the previous delayed allocation
1791 * extent is being replaced by a real allocation.
1792 */
1793 if (PREV.br_startoff == new->br_startoff)
1794 state |= BMAP_LEFT_FILLING;
1795 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
1796 state |= BMAP_RIGHT_FILLING;
1797
1798 /*
1799 * Check and set flags if this segment has a left neighbor.
1800 * Don't set contiguous if the combined extent would be too large.
1801 */
1802 if (bma->idx > 0) {
1803 state |= BMAP_LEFT_VALID;
1804 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &LEFT);
1805
1806 if (isnullstartblock(LEFT.br_startblock))
1807 state |= BMAP_LEFT_DELAY;
1808 }
1809
1810 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
1811 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
1812 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
1813 LEFT.br_state == new->br_state &&
1814 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1815 state |= BMAP_LEFT_CONTIG;
1816
1817 /*
1818 * Check and set flags if this segment has a right neighbor.
1819 * Don't set contiguous if the combined extent would be too large.
1820 * Also check for all-three-contiguous being too large.
1821 */
1822 if (bma->idx < bma->ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
1823 state |= BMAP_RIGHT_VALID;
1824 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx + 1), &RIGHT);
1825
1826 if (isnullstartblock(RIGHT.br_startblock))
1827 state |= BMAP_RIGHT_DELAY;
1828 }
1829
1830 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1831 new_endoff == RIGHT.br_startoff &&
1832 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
1833 new->br_state == RIGHT.br_state &&
1834 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1835 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1836 BMAP_RIGHT_FILLING)) !=
1837 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1838 BMAP_RIGHT_FILLING) ||
1839 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1840 <= MAXEXTLEN))
1841 state |= BMAP_RIGHT_CONTIG;
1842
1843 error = 0;
1844 /*
1845 * Switch out based on the FILLING and CONTIG state bits.
1846 */
1847 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1848 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
1849 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1850 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
1851 /*
1852 * Filling in all of a previously delayed allocation extent.
1853 * The left and right neighbors are both contiguous with new.
1854 */
1855 bma->idx--;
1856 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1857 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
1858 LEFT.br_blockcount + PREV.br_blockcount +
1859 RIGHT.br_blockcount);
1860 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1861
1862 xfs_iext_remove(bma->ip, bma->idx + 1, 2, state);
1863 bma->ip->i_d.di_nextents--;
1864 if (bma->cur == NULL)
1865 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1866 else {
1867 rval = XFS_ILOG_CORE;
1868 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
1869 RIGHT.br_startblock,
1870 RIGHT.br_blockcount, &i);
1871 if (error)
1872 goto done;
1873 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1874 error = xfs_btree_delete(bma->cur, &i);
1875 if (error)
1876 goto done;
1877 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1878 error = xfs_btree_decrement(bma->cur, 0, &i);
1879 if (error)
1880 goto done;
1881 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1882 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
1883 LEFT.br_startblock,
1884 LEFT.br_blockcount +
1885 PREV.br_blockcount +
1886 RIGHT.br_blockcount, LEFT.br_state);
1887 if (error)
1888 goto done;
1889 }
1890 break;
1891
1892 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
1893 /*
1894 * Filling in all of a previously delayed allocation extent.
1895 * The left neighbor is contiguous, the right is not.
1896 */
1897 bma->idx--;
1898
1899 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1900 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
1901 LEFT.br_blockcount + PREV.br_blockcount);
1902 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1903
1904 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1905 if (bma->cur == NULL)
1906 rval = XFS_ILOG_DEXT;
1907 else {
1908 rval = 0;
1909 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
1910 LEFT.br_startblock, LEFT.br_blockcount,
1911 &i);
1912 if (error)
1913 goto done;
1914 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1915 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
1916 LEFT.br_startblock,
1917 LEFT.br_blockcount +
1918 PREV.br_blockcount, LEFT.br_state);
1919 if (error)
1920 goto done;
1921 }
1922 break;
1923
1924 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
1925 /*
1926 * Filling in all of a previously delayed allocation extent.
1927 * The right neighbor is contiguous, the left is not.
1928 */
1929 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1930 xfs_bmbt_set_startblock(ep, new->br_startblock);
1931 xfs_bmbt_set_blockcount(ep,
1932 PREV.br_blockcount + RIGHT.br_blockcount);
1933 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1934
1935 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1936 if (bma->cur == NULL)
1937 rval = XFS_ILOG_DEXT;
1938 else {
1939 rval = 0;
1940 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
1941 RIGHT.br_startblock,
1942 RIGHT.br_blockcount, &i);
1943 if (error)
1944 goto done;
1945 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1946 error = xfs_bmbt_update(bma->cur, PREV.br_startoff,
1947 new->br_startblock,
1948 PREV.br_blockcount +
1949 RIGHT.br_blockcount, PREV.br_state);
1950 if (error)
1951 goto done;
1952 }
1953 break;
1954
1955 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
1956 /*
1957 * Filling in all of a previously delayed allocation extent.
1958 * Neither the left nor right neighbors are contiguous with
1959 * the new one.
1960 */
1961 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1962 xfs_bmbt_set_startblock(ep, new->br_startblock);
1963 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1964
1965 bma->ip->i_d.di_nextents++;
1966 if (bma->cur == NULL)
1967 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1968 else {
1969 rval = XFS_ILOG_CORE;
1970 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
1971 new->br_startblock, new->br_blockcount,
1972 &i);
1973 if (error)
1974 goto done;
1975 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
1976 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
1977 error = xfs_btree_insert(bma->cur, &i);
1978 if (error)
1979 goto done;
1980 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
1981 }
1982 break;
1983
1984 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
1985 /*
1986 * Filling in the first part of a previous delayed allocation.
1987 * The left neighbor is contiguous.
1988 */
1989 trace_xfs_bmap_pre_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
1990 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx - 1),
1991 LEFT.br_blockcount + new->br_blockcount);
1992 xfs_bmbt_set_startoff(ep,
1993 PREV.br_startoff + new->br_blockcount);
1994 trace_xfs_bmap_post_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
1995
1996 temp = PREV.br_blockcount - new->br_blockcount;
1997 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1998 xfs_bmbt_set_blockcount(ep, temp);
1999 if (bma->cur == NULL)
2000 rval = XFS_ILOG_DEXT;
2001 else {
2002 rval = 0;
2003 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
2004 LEFT.br_startblock, LEFT.br_blockcount,
2005 &i);
2006 if (error)
2007 goto done;
2008 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2009 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
2010 LEFT.br_startblock,
2011 LEFT.br_blockcount +
2012 new->br_blockcount,
2013 LEFT.br_state);
2014 if (error)
2015 goto done;
2016 }
2017 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2018 startblockval(PREV.br_startblock));
2019 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2020 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2021
2022 bma->idx--;
2023 break;
2024
2025 case BMAP_LEFT_FILLING:
2026 /*
2027 * Filling in the first part of a previous delayed allocation.
2028 * The left neighbor is not contiguous.
2029 */
2030 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2031 xfs_bmbt_set_startoff(ep, new_endoff);
2032 temp = PREV.br_blockcount - new->br_blockcount;
2033 xfs_bmbt_set_blockcount(ep, temp);
2034 xfs_iext_insert(bma->ip, bma->idx, 1, new, state);
2035 bma->ip->i_d.di_nextents++;
2036 if (bma->cur == NULL)
2037 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2038 else {
2039 rval = XFS_ILOG_CORE;
2040 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
2041 new->br_startblock, new->br_blockcount,
2042 &i);
2043 if (error)
2044 goto done;
2045 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2046 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2047 error = xfs_btree_insert(bma->cur, &i);
2048 if (error)
2049 goto done;
2050 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2051 }
2052
2053 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2054 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2055 bma->firstblock, bma->flist,
2056 &bma->cur, 1, &tmp_rval, XFS_DATA_FORK);
2057 rval |= tmp_rval;
2058 if (error)
2059 goto done;
2060 }
2061 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2062 startblockval(PREV.br_startblock) -
2063 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2064 ep = xfs_iext_get_ext(ifp, bma->idx + 1);
2065 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2066 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2067 break;
2068
2069 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2070 /*
2071 * Filling in the last part of a previous delayed allocation.
2072 * The right neighbor is contiguous with the new allocation.
2073 */
2074 temp = PREV.br_blockcount - new->br_blockcount;
2075 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2076 xfs_bmbt_set_blockcount(ep, temp);
2077 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, bma->idx + 1),
2078 new->br_startoff, new->br_startblock,
2079 new->br_blockcount + RIGHT.br_blockcount,
2080 RIGHT.br_state);
2081 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2082 if (bma->cur == NULL)
2083 rval = XFS_ILOG_DEXT;
2084 else {
2085 rval = 0;
2086 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
2087 RIGHT.br_startblock,
2088 RIGHT.br_blockcount, &i);
2089 if (error)
2090 goto done;
2091 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2092 error = xfs_bmbt_update(bma->cur, new->br_startoff,
2093 new->br_startblock,
2094 new->br_blockcount +
2095 RIGHT.br_blockcount,
2096 RIGHT.br_state);
2097 if (error)
2098 goto done;
2099 }
2100
2101 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2102 startblockval(PREV.br_startblock));
2103 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2104 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2105 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2106
2107 bma->idx++;
2108 break;
2109
2110 case BMAP_RIGHT_FILLING:
2111 /*
2112 * Filling in the last part of a previous delayed allocation.
2113 * The right neighbor is not contiguous.
2114 */
2115 temp = PREV.br_blockcount - new->br_blockcount;
2116 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2117 xfs_bmbt_set_blockcount(ep, temp);
2118 xfs_iext_insert(bma->ip, bma->idx + 1, 1, new, state);
2119 bma->ip->i_d.di_nextents++;
2120 if (bma->cur == NULL)
2121 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2122 else {
2123 rval = XFS_ILOG_CORE;
2124 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
2125 new->br_startblock, new->br_blockcount,
2126 &i);
2127 if (error)
2128 goto done;
2129 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2130 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2131 error = xfs_btree_insert(bma->cur, &i);
2132 if (error)
2133 goto done;
2134 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2135 }
2136
2137 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2138 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2139 bma->firstblock, bma->flist, &bma->cur, 1,
2140 &tmp_rval, XFS_DATA_FORK);
2141 rval |= tmp_rval;
2142 if (error)
2143 goto done;
2144 }
2145 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2146 startblockval(PREV.br_startblock) -
2147 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2148 ep = xfs_iext_get_ext(ifp, bma->idx);
2149 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2150 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2151
2152 bma->idx++;
2153 break;
2154
2155 case 0:
2156 /*
2157 * Filling in the middle part of a previous delayed allocation.
2158 * Contiguity is impossible here.
2159 * This case is avoided almost all the time.
2160 *
2161 * We start with a delayed allocation:
2162 *
2163 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
2164 * PREV @ idx
2165 *
2166 * and we are allocating:
2167 * +rrrrrrrrrrrrrrrrr+
2168 * new
2169 *
2170 * and we set it up for insertion as:
2171 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
2172 * new
2173 * PREV @ idx LEFT RIGHT
2174 * inserted at idx + 1
2175 */
2176 temp = new->br_startoff - PREV.br_startoff;
2177 temp2 = PREV.br_startoff + PREV.br_blockcount - new_endoff;
2178 trace_xfs_bmap_pre_update(bma->ip, bma->idx, 0, _THIS_IP_);
2179 xfs_bmbt_set_blockcount(ep, temp); /* truncate PREV */
2180 LEFT = *new;
2181 RIGHT.br_state = PREV.br_state;
2182 RIGHT.br_startblock = nullstartblock(
2183 (int)xfs_bmap_worst_indlen(bma->ip, temp2));
2184 RIGHT.br_startoff = new_endoff;
2185 RIGHT.br_blockcount = temp2;
2186 /* insert LEFT (r[0]) and RIGHT (r[1]) at the same time */
2187 xfs_iext_insert(bma->ip, bma->idx + 1, 2, &LEFT, state);
2188 bma->ip->i_d.di_nextents++;
2189 if (bma->cur == NULL)
2190 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2191 else {
2192 rval = XFS_ILOG_CORE;
2193 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
2194 new->br_startblock, new->br_blockcount,
2195 &i);
2196 if (error)
2197 goto done;
2198 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2199 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2200 error = xfs_btree_insert(bma->cur, &i);
2201 if (error)
2202 goto done;
2203 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2204 }
2205
2206 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2207 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2208 bma->firstblock, bma->flist, &bma->cur,
2209 1, &tmp_rval, XFS_DATA_FORK);
2210 rval |= tmp_rval;
2211 if (error)
2212 goto done;
2213 }
2214 temp = xfs_bmap_worst_indlen(bma->ip, temp);
2215 temp2 = xfs_bmap_worst_indlen(bma->ip, temp2);
2216 diff = (int)(temp + temp2 - startblockval(PREV.br_startblock) -
2217 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2218 if (diff > 0) {
2219 error = xfs_icsb_modify_counters(bma->ip->i_mount,
2220 XFS_SBS_FDBLOCKS,
2221 -((int64_t)diff), 0);
2222 ASSERT(!error);
2223 if (error)
2224 goto done;
2225 }
2226
2227 ep = xfs_iext_get_ext(ifp, bma->idx);
2228 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
2229 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2230 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
2231 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, bma->idx + 2),
2232 nullstartblock((int)temp2));
2233 trace_xfs_bmap_post_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
2234
2235 bma->idx++;
2236 da_new = temp + temp2;
2237 break;
2238
2239 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2240 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2241 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2242 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2243 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2244 case BMAP_LEFT_CONTIG:
2245 case BMAP_RIGHT_CONTIG:
2246 /*
2247 * These cases are all impossible.
2248 */
2249 ASSERT(0);
2250 }
2251
2252 /* convert to a btree if necessary */
2253 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2254 int tmp_logflags; /* partial log flag return val */
2255
2256 ASSERT(bma->cur == NULL);
2257 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2258 bma->firstblock, bma->flist, &bma->cur,
2259 da_old > 0, &tmp_logflags, XFS_DATA_FORK);
2260 bma->logflags |= tmp_logflags;
2261 if (error)
2262 goto done;
2263 }
2264
2265 /* adjust for changes in reserved delayed indirect blocks */
2266 if (da_old || da_new) {
2267 temp = da_new;
2268 if (bma->cur)
2269 temp += bma->cur->bc_private.b.allocated;
2270 ASSERT(temp <= da_old);
2271 if (temp < da_old)
2272 xfs_icsb_modify_counters(bma->ip->i_mount,
2273 XFS_SBS_FDBLOCKS,
2274 (int64_t)(da_old - temp), 0);
2275 }
2276
2277 /* clear out the allocated field, done with it now in any case. */
2278 if (bma->cur)
2279 bma->cur->bc_private.b.allocated = 0;
2280
2281 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, XFS_DATA_FORK);
2282 done:
2283 bma->logflags |= rval;
2284 return error;
2285 #undef LEFT
2286 #undef RIGHT
2287 #undef PREV
2288 }
2289
2290 /*
2291 * Convert an unwritten allocation to a real allocation or vice versa.
2292 */
2293 STATIC int /* error */
2294 xfs_bmap_add_extent_unwritten_real(
2295 struct xfs_trans *tp,
2296 xfs_inode_t *ip, /* incore inode pointer */
2297 xfs_extnum_t *idx, /* extent number to update/insert */
2298 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
2299 xfs_bmbt_irec_t *new, /* new data to add to file extents */
2300 xfs_fsblock_t *first, /* pointer to firstblock variable */
2301 xfs_bmap_free_t *flist, /* list of extents to be freed */
2302 int *logflagsp) /* inode logging flags */
2303 {
2304 xfs_btree_cur_t *cur; /* btree cursor */
2305 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
2306 int error; /* error return value */
2307 int i; /* temp state */
2308 xfs_ifork_t *ifp; /* inode fork pointer */
2309 xfs_fileoff_t new_endoff; /* end offset of new entry */
2310 xfs_exntst_t newext; /* new extent state */
2311 xfs_exntst_t oldext; /* old extent state */
2312 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
2313 /* left is 0, right is 1, prev is 2 */
2314 int rval=0; /* return value (logging flags) */
2315 int state = 0;/* state bits, accessed thru macros */
2316
2317 *logflagsp = 0;
2318
2319 cur = *curp;
2320 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
2321
2322 ASSERT(*idx >= 0);
2323 ASSERT(*idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
2324 ASSERT(!isnullstartblock(new->br_startblock));
2325
2326 XFS_STATS_INC(xs_add_exlist);
2327
2328 #define LEFT r[0]
2329 #define RIGHT r[1]
2330 #define PREV r[2]
2331
2332 /*
2333 * Set up a bunch of variables to make the tests simpler.
2334 */
2335 error = 0;
2336 ep = xfs_iext_get_ext(ifp, *idx);
2337 xfs_bmbt_get_all(ep, &PREV);
2338 newext = new->br_state;
2339 oldext = (newext == XFS_EXT_UNWRITTEN) ?
2340 XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
2341 ASSERT(PREV.br_state == oldext);
2342 new_endoff = new->br_startoff + new->br_blockcount;
2343 ASSERT(PREV.br_startoff <= new->br_startoff);
2344 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
2345
2346 /*
2347 * Set flags determining what part of the previous oldext allocation
2348 * extent is being replaced by a newext allocation.
2349 */
2350 if (PREV.br_startoff == new->br_startoff)
2351 state |= BMAP_LEFT_FILLING;
2352 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
2353 state |= BMAP_RIGHT_FILLING;
2354
2355 /*
2356 * Check and set flags if this segment has a left neighbor.
2357 * Don't set contiguous if the combined extent would be too large.
2358 */
2359 if (*idx > 0) {
2360 state |= BMAP_LEFT_VALID;
2361 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &LEFT);
2362
2363 if (isnullstartblock(LEFT.br_startblock))
2364 state |= BMAP_LEFT_DELAY;
2365 }
2366
2367 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2368 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
2369 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
2370 LEFT.br_state == newext &&
2371 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2372 state |= BMAP_LEFT_CONTIG;
2373
2374 /*
2375 * Check and set flags if this segment has a right neighbor.
2376 * Don't set contiguous if the combined extent would be too large.
2377 * Also check for all-three-contiguous being too large.
2378 */
2379 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
2380 state |= BMAP_RIGHT_VALID;
2381 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx + 1), &RIGHT);
2382 if (isnullstartblock(RIGHT.br_startblock))
2383 state |= BMAP_RIGHT_DELAY;
2384 }
2385
2386 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2387 new_endoff == RIGHT.br_startoff &&
2388 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
2389 newext == RIGHT.br_state &&
2390 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
2391 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2392 BMAP_RIGHT_FILLING)) !=
2393 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2394 BMAP_RIGHT_FILLING) ||
2395 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
2396 <= MAXEXTLEN))
2397 state |= BMAP_RIGHT_CONTIG;
2398
2399 /*
2400 * Switch out based on the FILLING and CONTIG state bits.
2401 */
2402 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2403 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
2404 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2405 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2406 /*
2407 * Setting all of a previous oldext extent to newext.
2408 * The left and right neighbors are both contiguous with new.
2409 */
2410 --*idx;
2411
2412 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2413 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
2414 LEFT.br_blockcount + PREV.br_blockcount +
2415 RIGHT.br_blockcount);
2416 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2417
2418 xfs_iext_remove(ip, *idx + 1, 2, state);
2419 ip->i_d.di_nextents -= 2;
2420 if (cur == NULL)
2421 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2422 else {
2423 rval = XFS_ILOG_CORE;
2424 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2425 RIGHT.br_startblock,
2426 RIGHT.br_blockcount, &i)))
2427 goto done;
2428 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2429 if ((error = xfs_btree_delete(cur, &i)))
2430 goto done;
2431 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2432 if ((error = xfs_btree_decrement(cur, 0, &i)))
2433 goto done;
2434 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2435 if ((error = xfs_btree_delete(cur, &i)))
2436 goto done;
2437 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2438 if ((error = xfs_btree_decrement(cur, 0, &i)))
2439 goto done;
2440 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2441 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2442 LEFT.br_startblock,
2443 LEFT.br_blockcount + PREV.br_blockcount +
2444 RIGHT.br_blockcount, LEFT.br_state)))
2445 goto done;
2446 }
2447 break;
2448
2449 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2450 /*
2451 * Setting all of a previous oldext extent to newext.
2452 * The left neighbor is contiguous, the right is not.
2453 */
2454 --*idx;
2455
2456 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2457 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
2458 LEFT.br_blockcount + PREV.br_blockcount);
2459 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2460
2461 xfs_iext_remove(ip, *idx + 1, 1, state);
2462 ip->i_d.di_nextents--;
2463 if (cur == NULL)
2464 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2465 else {
2466 rval = XFS_ILOG_CORE;
2467 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2468 PREV.br_startblock, PREV.br_blockcount,
2469 &i)))
2470 goto done;
2471 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2472 if ((error = xfs_btree_delete(cur, &i)))
2473 goto done;
2474 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2475 if ((error = xfs_btree_decrement(cur, 0, &i)))
2476 goto done;
2477 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2478 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2479 LEFT.br_startblock,
2480 LEFT.br_blockcount + PREV.br_blockcount,
2481 LEFT.br_state)))
2482 goto done;
2483 }
2484 break;
2485
2486 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2487 /*
2488 * Setting all of a previous oldext extent to newext.
2489 * The right neighbor is contiguous, the left is not.
2490 */
2491 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2492 xfs_bmbt_set_blockcount(ep,
2493 PREV.br_blockcount + RIGHT.br_blockcount);
2494 xfs_bmbt_set_state(ep, newext);
2495 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2496 xfs_iext_remove(ip, *idx + 1, 1, state);
2497 ip->i_d.di_nextents--;
2498 if (cur == NULL)
2499 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2500 else {
2501 rval = XFS_ILOG_CORE;
2502 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2503 RIGHT.br_startblock,
2504 RIGHT.br_blockcount, &i)))
2505 goto done;
2506 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2507 if ((error = xfs_btree_delete(cur, &i)))
2508 goto done;
2509 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2510 if ((error = xfs_btree_decrement(cur, 0, &i)))
2511 goto done;
2512 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2513 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2514 new->br_startblock,
2515 new->br_blockcount + RIGHT.br_blockcount,
2516 newext)))
2517 goto done;
2518 }
2519 break;
2520
2521 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
2522 /*
2523 * Setting all of a previous oldext extent to newext.
2524 * Neither the left nor right neighbors are contiguous with
2525 * the new one.
2526 */
2527 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2528 xfs_bmbt_set_state(ep, newext);
2529 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2530
2531 if (cur == NULL)
2532 rval = XFS_ILOG_DEXT;
2533 else {
2534 rval = 0;
2535 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2536 new->br_startblock, new->br_blockcount,
2537 &i)))
2538 goto done;
2539 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2540 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2541 new->br_startblock, new->br_blockcount,
2542 newext)))
2543 goto done;
2544 }
2545 break;
2546
2547 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
2548 /*
2549 * Setting the first part of a previous oldext extent to newext.
2550 * The left neighbor is contiguous.
2551 */
2552 trace_xfs_bmap_pre_update(ip, *idx - 1, state, _THIS_IP_);
2553 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx - 1),
2554 LEFT.br_blockcount + new->br_blockcount);
2555 xfs_bmbt_set_startoff(ep,
2556 PREV.br_startoff + new->br_blockcount);
2557 trace_xfs_bmap_post_update(ip, *idx - 1, state, _THIS_IP_);
2558
2559 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2560 xfs_bmbt_set_startblock(ep,
2561 new->br_startblock + new->br_blockcount);
2562 xfs_bmbt_set_blockcount(ep,
2563 PREV.br_blockcount - new->br_blockcount);
2564 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2565
2566 --*idx;
2567
2568 if (cur == NULL)
2569 rval = XFS_ILOG_DEXT;
2570 else {
2571 rval = 0;
2572 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2573 PREV.br_startblock, PREV.br_blockcount,
2574 &i)))
2575 goto done;
2576 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2577 if ((error = xfs_bmbt_update(cur,
2578 PREV.br_startoff + new->br_blockcount,
2579 PREV.br_startblock + new->br_blockcount,
2580 PREV.br_blockcount - new->br_blockcount,
2581 oldext)))
2582 goto done;
2583 if ((error = xfs_btree_decrement(cur, 0, &i)))
2584 goto done;
2585 error = xfs_bmbt_update(cur, LEFT.br_startoff,
2586 LEFT.br_startblock,
2587 LEFT.br_blockcount + new->br_blockcount,
2588 LEFT.br_state);
2589 if (error)
2590 goto done;
2591 }
2592 break;
2593
2594 case BMAP_LEFT_FILLING:
2595 /*
2596 * Setting the first part of a previous oldext extent to newext.
2597 * The left neighbor is not contiguous.
2598 */
2599 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2600 ASSERT(ep && xfs_bmbt_get_state(ep) == oldext);
2601 xfs_bmbt_set_startoff(ep, new_endoff);
2602 xfs_bmbt_set_blockcount(ep,
2603 PREV.br_blockcount - new->br_blockcount);
2604 xfs_bmbt_set_startblock(ep,
2605 new->br_startblock + new->br_blockcount);
2606 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2607
2608 xfs_iext_insert(ip, *idx, 1, new, state);
2609 ip->i_d.di_nextents++;
2610 if (cur == NULL)
2611 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2612 else {
2613 rval = XFS_ILOG_CORE;
2614 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2615 PREV.br_startblock, PREV.br_blockcount,
2616 &i)))
2617 goto done;
2618 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2619 if ((error = xfs_bmbt_update(cur,
2620 PREV.br_startoff + new->br_blockcount,
2621 PREV.br_startblock + new->br_blockcount,
2622 PREV.br_blockcount - new->br_blockcount,
2623 oldext)))
2624 goto done;
2625 cur->bc_rec.b = *new;
2626 if ((error = xfs_btree_insert(cur, &i)))
2627 goto done;
2628 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2629 }
2630 break;
2631
2632 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2633 /*
2634 * Setting the last part of a previous oldext extent to newext.
2635 * The right neighbor is contiguous with the new allocation.
2636 */
2637 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2638 xfs_bmbt_set_blockcount(ep,
2639 PREV.br_blockcount - new->br_blockcount);
2640 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2641
2642 ++*idx;
2643
2644 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2645 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
2646 new->br_startoff, new->br_startblock,
2647 new->br_blockcount + RIGHT.br_blockcount, newext);
2648 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2649
2650 if (cur == NULL)
2651 rval = XFS_ILOG_DEXT;
2652 else {
2653 rval = 0;
2654 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2655 PREV.br_startblock,
2656 PREV.br_blockcount, &i)))
2657 goto done;
2658 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2659 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2660 PREV.br_startblock,
2661 PREV.br_blockcount - new->br_blockcount,
2662 oldext)))
2663 goto done;
2664 if ((error = xfs_btree_increment(cur, 0, &i)))
2665 goto done;
2666 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2667 new->br_startblock,
2668 new->br_blockcount + RIGHT.br_blockcount,
2669 newext)))
2670 goto done;
2671 }
2672 break;
2673
2674 case BMAP_RIGHT_FILLING:
2675 /*
2676 * Setting the last part of a previous oldext extent to newext.
2677 * The right neighbor is not contiguous.
2678 */
2679 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2680 xfs_bmbt_set_blockcount(ep,
2681 PREV.br_blockcount - new->br_blockcount);
2682 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2683
2684 ++*idx;
2685 xfs_iext_insert(ip, *idx, 1, new, state);
2686
2687 ip->i_d.di_nextents++;
2688 if (cur == NULL)
2689 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2690 else {
2691 rval = XFS_ILOG_CORE;
2692 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2693 PREV.br_startblock, PREV.br_blockcount,
2694 &i)))
2695 goto done;
2696 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2697 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2698 PREV.br_startblock,
2699 PREV.br_blockcount - new->br_blockcount,
2700 oldext)))
2701 goto done;
2702 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2703 new->br_startblock, new->br_blockcount,
2704 &i)))
2705 goto done;
2706 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2707 cur->bc_rec.b.br_state = XFS_EXT_NORM;
2708 if ((error = xfs_btree_insert(cur, &i)))
2709 goto done;
2710 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2711 }
2712 break;
2713
2714 case 0:
2715 /*
2716 * Setting the middle part of a previous oldext extent to
2717 * newext. Contiguity is impossible here.
2718 * One extent becomes three extents.
2719 */
2720 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2721 xfs_bmbt_set_blockcount(ep,
2722 new->br_startoff - PREV.br_startoff);
2723 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2724
2725 r[0] = *new;
2726 r[1].br_startoff = new_endoff;
2727 r[1].br_blockcount =
2728 PREV.br_startoff + PREV.br_blockcount - new_endoff;
2729 r[1].br_startblock = new->br_startblock + new->br_blockcount;
2730 r[1].br_state = oldext;
2731
2732 ++*idx;
2733 xfs_iext_insert(ip, *idx, 2, &r[0], state);
2734
2735 ip->i_d.di_nextents += 2;
2736 if (cur == NULL)
2737 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2738 else {
2739 rval = XFS_ILOG_CORE;
2740 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2741 PREV.br_startblock, PREV.br_blockcount,
2742 &i)))
2743 goto done;
2744 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2745 /* new right extent - oldext */
2746 if ((error = xfs_bmbt_update(cur, r[1].br_startoff,
2747 r[1].br_startblock, r[1].br_blockcount,
2748 r[1].br_state)))
2749 goto done;
2750 /* new left extent - oldext */
2751 cur->bc_rec.b = PREV;
2752 cur->bc_rec.b.br_blockcount =
2753 new->br_startoff - PREV.br_startoff;
2754 if ((error = xfs_btree_insert(cur, &i)))
2755 goto done;
2756 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2757 /*
2758 * Reset the cursor to the position of the new extent
2759 * we are about to insert as we can't trust it after
2760 * the previous insert.
2761 */
2762 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2763 new->br_startblock, new->br_blockcount,
2764 &i)))
2765 goto done;
2766 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
2767 /* new middle extent - newext */
2768 cur->bc_rec.b.br_state = new->br_state;
2769 if ((error = xfs_btree_insert(cur, &i)))
2770 goto done;
2771 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
2772 }
2773 break;
2774
2775 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2776 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2777 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2778 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2779 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2780 case BMAP_LEFT_CONTIG:
2781 case BMAP_RIGHT_CONTIG:
2782 /*
2783 * These cases are all impossible.
2784 */
2785 ASSERT(0);
2786 }
2787
2788 /* convert to a btree if necessary */
2789 if (xfs_bmap_needs_btree(ip, XFS_DATA_FORK)) {
2790 int tmp_logflags; /* partial log flag return val */
2791
2792 ASSERT(cur == NULL);
2793 error = xfs_bmap_extents_to_btree(tp, ip, first, flist, &cur,
2794 0, &tmp_logflags, XFS_DATA_FORK);
2795 *logflagsp |= tmp_logflags;
2796 if (error)
2797 goto done;
2798 }
2799
2800 /* clear out the allocated field, done with it now in any case. */
2801 if (cur) {
2802 cur->bc_private.b.allocated = 0;
2803 *curp = cur;
2804 }
2805
2806 xfs_bmap_check_leaf_extents(*curp, ip, XFS_DATA_FORK);
2807 done:
2808 *logflagsp |= rval;
2809 return error;
2810 #undef LEFT
2811 #undef RIGHT
2812 #undef PREV
2813 }
2814
2815 /*
2816 * Convert a hole to a delayed allocation.
2817 */
2818 STATIC void
2819 xfs_bmap_add_extent_hole_delay(
2820 xfs_inode_t *ip, /* incore inode pointer */
2821 xfs_extnum_t *idx, /* extent number to update/insert */
2822 xfs_bmbt_irec_t *new) /* new data to add to file extents */
2823 {
2824 xfs_ifork_t *ifp; /* inode fork pointer */
2825 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2826 xfs_filblks_t newlen=0; /* new indirect size */
2827 xfs_filblks_t oldlen=0; /* old indirect size */
2828 xfs_bmbt_irec_t right; /* right neighbor extent entry */
2829 int state; /* state bits, accessed thru macros */
2830 xfs_filblks_t temp=0; /* temp for indirect calculations */
2831
2832 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
2833 state = 0;
2834 ASSERT(isnullstartblock(new->br_startblock));
2835
2836 /*
2837 * Check and set flags if this segment has a left neighbor
2838 */
2839 if (*idx > 0) {
2840 state |= BMAP_LEFT_VALID;
2841 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &left);
2842
2843 if (isnullstartblock(left.br_startblock))
2844 state |= BMAP_LEFT_DELAY;
2845 }
2846
2847 /*
2848 * Check and set flags if the current (right) segment exists.
2849 * If it doesn't exist, we're converting the hole at end-of-file.
2850 */
2851 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
2852 state |= BMAP_RIGHT_VALID;
2853 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx), &right);
2854
2855 if (isnullstartblock(right.br_startblock))
2856 state |= BMAP_RIGHT_DELAY;
2857 }
2858
2859 /*
2860 * Set contiguity flags on the left and right neighbors.
2861 * Don't let extents get too large, even if the pieces are contiguous.
2862 */
2863 if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) &&
2864 left.br_startoff + left.br_blockcount == new->br_startoff &&
2865 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2866 state |= BMAP_LEFT_CONTIG;
2867
2868 if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) &&
2869 new->br_startoff + new->br_blockcount == right.br_startoff &&
2870 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2871 (!(state & BMAP_LEFT_CONTIG) ||
2872 (left.br_blockcount + new->br_blockcount +
2873 right.br_blockcount <= MAXEXTLEN)))
2874 state |= BMAP_RIGHT_CONTIG;
2875
2876 /*
2877 * Switch out based on the contiguity flags.
2878 */
2879 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2880 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2881 /*
2882 * New allocation is contiguous with delayed allocations
2883 * on the left and on the right.
2884 * Merge all three into a single extent record.
2885 */
2886 --*idx;
2887 temp = left.br_blockcount + new->br_blockcount +
2888 right.br_blockcount;
2889
2890 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2891 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
2892 oldlen = startblockval(left.br_startblock) +
2893 startblockval(new->br_startblock) +
2894 startblockval(right.br_startblock);
2895 newlen = xfs_bmap_worst_indlen(ip, temp);
2896 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
2897 nullstartblock((int)newlen));
2898 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2899
2900 xfs_iext_remove(ip, *idx + 1, 1, state);
2901 break;
2902
2903 case BMAP_LEFT_CONTIG:
2904 /*
2905 * New allocation is contiguous with a delayed allocation
2906 * on the left.
2907 * Merge the new allocation with the left neighbor.
2908 */
2909 --*idx;
2910 temp = left.br_blockcount + new->br_blockcount;
2911
2912 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2913 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
2914 oldlen = startblockval(left.br_startblock) +
2915 startblockval(new->br_startblock);
2916 newlen = xfs_bmap_worst_indlen(ip, temp);
2917 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
2918 nullstartblock((int)newlen));
2919 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2920 break;
2921
2922 case BMAP_RIGHT_CONTIG:
2923 /*
2924 * New allocation is contiguous with a delayed allocation
2925 * on the right.
2926 * Merge the new allocation with the right neighbor.
2927 */
2928 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2929 temp = new->br_blockcount + right.br_blockcount;
2930 oldlen = startblockval(new->br_startblock) +
2931 startblockval(right.br_startblock);
2932 newlen = xfs_bmap_worst_indlen(ip, temp);
2933 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
2934 new->br_startoff,
2935 nullstartblock((int)newlen), temp, right.br_state);
2936 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2937 break;
2938
2939 case 0:
2940 /*
2941 * New allocation is not contiguous with another
2942 * delayed allocation.
2943 * Insert a new entry.
2944 */
2945 oldlen = newlen = 0;
2946 xfs_iext_insert(ip, *idx, 1, new, state);
2947 break;
2948 }
2949 if (oldlen != newlen) {
2950 ASSERT(oldlen > newlen);
2951 xfs_icsb_modify_counters(ip->i_mount, XFS_SBS_FDBLOCKS,
2952 (int64_t)(oldlen - newlen), 0);
2953 /*
2954 * Nothing to do for disk quota accounting here.
2955 */
2956 }
2957 }
2958
2959 /*
2960 * Convert a hole to a real allocation.
2961 */
2962 STATIC int /* error */
2963 xfs_bmap_add_extent_hole_real(
2964 struct xfs_bmalloca *bma,
2965 int whichfork)
2966 {
2967 struct xfs_bmbt_irec *new = &bma->got;
2968 int error; /* error return value */
2969 int i; /* temp state */
2970 xfs_ifork_t *ifp; /* inode fork pointer */
2971 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2972 xfs_bmbt_irec_t right; /* right neighbor extent entry */
2973 int rval=0; /* return value (logging flags) */
2974 int state; /* state bits, accessed thru macros */
2975
2976 ifp = XFS_IFORK_PTR(bma->ip, whichfork);
2977
2978 ASSERT(bma->idx >= 0);
2979 ASSERT(bma->idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
2980 ASSERT(!isnullstartblock(new->br_startblock));
2981 ASSERT(!bma->cur ||
2982 !(bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
2983
2984 XFS_STATS_INC(xs_add_exlist);
2985
2986 state = 0;
2987 if (whichfork == XFS_ATTR_FORK)
2988 state |= BMAP_ATTRFORK;
2989
2990 /*
2991 * Check and set flags if this segment has a left neighbor.
2992 */
2993 if (bma->idx > 0) {
2994 state |= BMAP_LEFT_VALID;
2995 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &left);
2996 if (isnullstartblock(left.br_startblock))
2997 state |= BMAP_LEFT_DELAY;
2998 }
2999
3000 /*
3001 * Check and set flags if this segment has a current value.
3002 * Not true if we're inserting into the "hole" at eof.
3003 */
3004 if (bma->idx < ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
3005 state |= BMAP_RIGHT_VALID;
3006 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &right);
3007 if (isnullstartblock(right.br_startblock))
3008 state |= BMAP_RIGHT_DELAY;
3009 }
3010
3011 /*
3012 * We're inserting a real allocation between "left" and "right".
3013 * Set the contiguity flags. Don't let extents get too large.
3014 */
3015 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
3016 left.br_startoff + left.br_blockcount == new->br_startoff &&
3017 left.br_startblock + left.br_blockcount == new->br_startblock &&
3018 left.br_state == new->br_state &&
3019 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
3020 state |= BMAP_LEFT_CONTIG;
3021
3022 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
3023 new->br_startoff + new->br_blockcount == right.br_startoff &&
3024 new->br_startblock + new->br_blockcount == right.br_startblock &&
3025 new->br_state == right.br_state &&
3026 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
3027 (!(state & BMAP_LEFT_CONTIG) ||
3028 left.br_blockcount + new->br_blockcount +
3029 right.br_blockcount <= MAXEXTLEN))
3030 state |= BMAP_RIGHT_CONTIG;
3031
3032 error = 0;
3033 /*
3034 * Select which case we're in here, and implement it.
3035 */
3036 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
3037 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
3038 /*
3039 * New allocation is contiguous with real allocations on the
3040 * left and on the right.
3041 * Merge all three into a single extent record.
3042 */
3043 --bma->idx;
3044 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3045 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
3046 left.br_blockcount + new->br_blockcount +
3047 right.br_blockcount);
3048 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
3049
3050 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
3051
3052 XFS_IFORK_NEXT_SET(bma->ip, whichfork,
3053 XFS_IFORK_NEXTENTS(bma->ip, whichfork) - 1);
3054 if (bma->cur == NULL) {
3055 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
3056 } else {
3057 rval = XFS_ILOG_CORE;
3058 error = xfs_bmbt_lookup_eq(bma->cur, right.br_startoff,
3059 right.br_startblock, right.br_blockcount,
3060 &i);
3061 if (error)
3062 goto done;
3063 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3064 error = xfs_btree_delete(bma->cur, &i);
3065 if (error)
3066 goto done;
3067 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3068 error = xfs_btree_decrement(bma->cur, 0, &i);
3069 if (error)
3070 goto done;
3071 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3072 error = xfs_bmbt_update(bma->cur, left.br_startoff,
3073 left.br_startblock,
3074 left.br_blockcount +
3075 new->br_blockcount +
3076 right.br_blockcount,
3077 left.br_state);
3078 if (error)
3079 goto done;
3080 }
3081 break;
3082
3083 case BMAP_LEFT_CONTIG:
3084 /*
3085 * New allocation is contiguous with a real allocation
3086 * on the left.
3087 * Merge the new allocation with the left neighbor.
3088 */
3089 --bma->idx;
3090 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3091 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
3092 left.br_blockcount + new->br_blockcount);
3093 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
3094
3095 if (bma->cur == NULL) {
3096 rval = xfs_ilog_fext(whichfork);
3097 } else {
3098 rval = 0;
3099 error = xfs_bmbt_lookup_eq(bma->cur, left.br_startoff,
3100 left.br_startblock, left.br_blockcount,
3101 &i);
3102 if (error)
3103 goto done;
3104 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3105 error = xfs_bmbt_update(bma->cur, left.br_startoff,
3106 left.br_startblock,
3107 left.br_blockcount +
3108 new->br_blockcount,
3109 left.br_state);
3110 if (error)
3111 goto done;
3112 }
3113 break;
3114
3115 case BMAP_RIGHT_CONTIG:
3116 /*
3117 * New allocation is contiguous with a real allocation
3118 * on the right.
3119 * Merge the new allocation with the right neighbor.
3120 */
3121 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3122 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, bma->idx),
3123 new->br_startoff, new->br_startblock,
3124 new->br_blockcount + right.br_blockcount,
3125 right.br_state);
3126 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
3127
3128 if (bma->cur == NULL) {
3129 rval = xfs_ilog_fext(whichfork);
3130 } else {
3131 rval = 0;
3132 error = xfs_bmbt_lookup_eq(bma->cur,
3133 right.br_startoff,
3134 right.br_startblock,
3135 right.br_blockcount, &i);
3136 if (error)
3137 goto done;
3138 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3139 error = xfs_bmbt_update(bma->cur, new->br_startoff,
3140 new->br_startblock,
3141 new->br_blockcount +
3142 right.br_blockcount,
3143 right.br_state);
3144 if (error)
3145 goto done;
3146 }
3147 break;
3148
3149 case 0:
3150 /*
3151 * New allocation is not contiguous with another
3152 * real allocation.
3153 * Insert a new entry.
3154 */
3155 xfs_iext_insert(bma->ip, bma->idx, 1, new, state);
3156 XFS_IFORK_NEXT_SET(bma->ip, whichfork,
3157 XFS_IFORK_NEXTENTS(bma->ip, whichfork) + 1);
3158 if (bma->cur == NULL) {
3159 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
3160 } else {
3161 rval = XFS_ILOG_CORE;
3162 error = xfs_bmbt_lookup_eq(bma->cur,
3163 new->br_startoff,
3164 new->br_startblock,
3165 new->br_blockcount, &i);
3166 if (error)
3167 goto done;
3168 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
3169 bma->cur->bc_rec.b.br_state = new->br_state;
3170 error = xfs_btree_insert(bma->cur, &i);
3171 if (error)
3172 goto done;
3173 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
3174 }
3175 break;
3176 }
3177
3178 /* convert to a btree if necessary */
3179 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
3180 int tmp_logflags; /* partial log flag return val */
3181
3182 ASSERT(bma->cur == NULL);
3183 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
3184 bma->firstblock, bma->flist, &bma->cur,
3185 0, &tmp_logflags, whichfork);
3186 bma->logflags |= tmp_logflags;
3187 if (error)
3188 goto done;
3189 }
3190
3191 /* clear out the allocated field, done with it now in any case. */
3192 if (bma->cur)
3193 bma->cur->bc_private.b.allocated = 0;
3194
3195 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, whichfork);
3196 done:
3197 bma->logflags |= rval;
3198 return error;
3199 }
3200
3201 /*
3202 * Functions used in the extent read, allocate and remove paths
3203 */
3204
3205 /*
3206 * Adjust the size of the new extent based on di_extsize and rt extsize.
3207 */
3208 int
3209 xfs_bmap_extsize_align(
3210 xfs_mount_t *mp,
3211 xfs_bmbt_irec_t *gotp, /* next extent pointer */
3212 xfs_bmbt_irec_t *prevp, /* previous extent pointer */
3213 xfs_extlen_t extsz, /* align to this extent size */
3214 int rt, /* is this a realtime inode? */
3215 int eof, /* is extent at end-of-file? */
3216 int delay, /* creating delalloc extent? */
3217 int convert, /* overwriting unwritten extent? */
3218 xfs_fileoff_t *offp, /* in/out: aligned offset */
3219 xfs_extlen_t *lenp) /* in/out: aligned length */
3220 {
3221 xfs_fileoff_t orig_off; /* original offset */
3222 xfs_extlen_t orig_alen; /* original length */
3223 xfs_fileoff_t orig_end; /* original off+len */
3224 xfs_fileoff_t nexto; /* next file offset */
3225 xfs_fileoff_t prevo; /* previous file offset */
3226 xfs_fileoff_t align_off; /* temp for offset */
3227 xfs_extlen_t align_alen; /* temp for length */
3228 xfs_extlen_t temp; /* temp for calculations */
3229
3230 if (convert)
3231 return 0;
3232
3233 orig_off = align_off = *offp;
3234 orig_alen = align_alen = *lenp;
3235 orig_end = orig_off + orig_alen;
3236
3237 /*
3238 * If this request overlaps an existing extent, then don't
3239 * attempt to perform any additional alignment.
3240 */
3241 if (!delay && !eof &&
3242 (orig_off >= gotp->br_startoff) &&
3243 (orig_end <= gotp->br_startoff + gotp->br_blockcount)) {
3244 return 0;
3245 }
3246
3247 /*
3248 * If the file offset is unaligned vs. the extent size
3249 * we need to align it. This will be possible unless
3250 * the file was previously written with a kernel that didn't
3251 * perform this alignment, or if a truncate shot us in the
3252 * foot.
3253 */
3254 temp = do_mod(orig_off, extsz);
3255 if (temp) {
3256 align_alen += temp;
3257 align_off -= temp;
3258 }
3259 /*
3260 * Same adjustment for the end of the requested area.
3261 */
3262 if ((temp = (align_alen % extsz))) {
3263 align_alen += extsz - temp;
3264 }
3265 /*
3266 * If the previous block overlaps with this proposed allocation
3267 * then move the start forward without adjusting the length.
3268 */
3269 if (prevp->br_startoff != NULLFILEOFF) {
3270 if (prevp->br_startblock == HOLESTARTBLOCK)
3271 prevo = prevp->br_startoff;
3272 else
3273 prevo = prevp->br_startoff + prevp->br_blockcount;
3274 } else
3275 prevo = 0;
3276 if (align_off != orig_off && align_off < prevo)
3277 align_off = prevo;
3278 /*
3279 * If the next block overlaps with this proposed allocation
3280 * then move the start back without adjusting the length,
3281 * but not before offset 0.
3282 * This may of course make the start overlap previous block,
3283 * and if we hit the offset 0 limit then the next block
3284 * can still overlap too.
3285 */
3286 if (!eof && gotp->br_startoff != NULLFILEOFF) {
3287 if ((delay && gotp->br_startblock == HOLESTARTBLOCK) ||
3288 (!delay && gotp->br_startblock == DELAYSTARTBLOCK))
3289 nexto = gotp->br_startoff + gotp->br_blockcount;
3290 else
3291 nexto = gotp->br_startoff;
3292 } else
3293 nexto = NULLFILEOFF;
3294 if (!eof &&
3295 align_off + align_alen != orig_end &&
3296 align_off + align_alen > nexto)
3297 align_off = nexto > align_alen ? nexto - align_alen : 0;
3298 /*
3299 * If we're now overlapping the next or previous extent that
3300 * means we can't fit an extsz piece in this hole. Just move
3301 * the start forward to the first valid spot and set
3302 * the length so we hit the end.
3303 */
3304 if (align_off != orig_off && align_off < prevo)
3305 align_off = prevo;
3306 if (align_off + align_alen != orig_end &&
3307 align_off + align_alen > nexto &&
3308 nexto != NULLFILEOFF) {
3309 ASSERT(nexto > prevo);
3310 align_alen = nexto - align_off;
3311 }
3312
3313 /*
3314 * If realtime, and the result isn't a multiple of the realtime
3315 * extent size we need to remove blocks until it is.
3316 */
3317 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
3318 /*
3319 * We're not covering the original request, or
3320 * we won't be able to once we fix the length.
3321 */
3322 if (orig_off < align_off ||
3323 orig_end > align_off + align_alen ||
3324 align_alen - temp < orig_alen)
3325 return XFS_ERROR(EINVAL);
3326 /*
3327 * Try to fix it by moving the start up.
3328 */
3329 if (align_off + temp <= orig_off) {
3330 align_alen -= temp;
3331 align_off += temp;
3332 }
3333 /*
3334 * Try to fix it by moving the end in.
3335 */
3336 else if (align_off + align_alen - temp >= orig_end)
3337 align_alen -= temp;
3338 /*
3339 * Set the start to the minimum then trim the length.
3340 */
3341 else {
3342 align_alen -= orig_off - align_off;
3343 align_off = orig_off;
3344 align_alen -= align_alen % mp->m_sb.sb_rextsize;
3345 }
3346 /*
3347 * Result doesn't cover the request, fail it.
3348 */
3349 if (orig_off < align_off || orig_end > align_off + align_alen)
3350 return XFS_ERROR(EINVAL);
3351 } else {
3352 ASSERT(orig_off >= align_off);
3353 ASSERT(orig_end <= align_off + align_alen);
3354 }
3355
3356 #ifdef DEBUG
3357 if (!eof && gotp->br_startoff != NULLFILEOFF)
3358 ASSERT(align_off + align_alen <= gotp->br_startoff);
3359 if (prevp->br_startoff != NULLFILEOFF)
3360 ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount);
3361 #endif
3362
3363 *lenp = align_alen;
3364 *offp = align_off;
3365 return 0;
3366 }
3367
3368 #define XFS_ALLOC_GAP_UNITS 4
3369
3370 void
3371 xfs_bmap_adjacent(
3372 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
3373 {
3374 xfs_fsblock_t adjust; /* adjustment to block numbers */
3375 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3376 xfs_mount_t *mp; /* mount point structure */
3377 int nullfb; /* true if ap->firstblock isn't set */
3378 int rt; /* true if inode is realtime */
3379
3380 #define ISVALID(x,y) \
3381 (rt ? \
3382 (x) < mp->m_sb.sb_rblocks : \
3383 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
3384 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
3385 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
3386
3387 mp = ap->ip->i_mount;
3388 nullfb = *ap->firstblock == NULLFSBLOCK;
3389 rt = XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata;
3390 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
3391 /*
3392 * If allocating at eof, and there's a previous real block,
3393 * try to use its last block as our starting point.
3394 */
3395 if (ap->eof && ap->prev.br_startoff != NULLFILEOFF &&
3396 !isnullstartblock(ap->prev.br_startblock) &&
3397 ISVALID(ap->prev.br_startblock + ap->prev.br_blockcount,
3398 ap->prev.br_startblock)) {
3399 ap->blkno = ap->prev.br_startblock + ap->prev.br_blockcount;
3400 /*
3401 * Adjust for the gap between prevp and us.
3402 */
3403 adjust = ap->offset -
3404 (ap->prev.br_startoff + ap->prev.br_blockcount);
3405 if (adjust &&
3406 ISVALID(ap->blkno + adjust, ap->prev.br_startblock))
3407 ap->blkno += adjust;
3408 }
3409 /*
3410 * If not at eof, then compare the two neighbor blocks.
3411 * Figure out whether either one gives us a good starting point,
3412 * and pick the better one.
3413 */
3414 else if (!ap->eof) {
3415 xfs_fsblock_t gotbno; /* right side block number */
3416 xfs_fsblock_t gotdiff=0; /* right side difference */
3417 xfs_fsblock_t prevbno; /* left side block number */
3418 xfs_fsblock_t prevdiff=0; /* left side difference */
3419
3420 /*
3421 * If there's a previous (left) block, select a requested
3422 * start block based on it.
3423 */
3424 if (ap->prev.br_startoff != NULLFILEOFF &&
3425 !isnullstartblock(ap->prev.br_startblock) &&
3426 (prevbno = ap->prev.br_startblock +
3427 ap->prev.br_blockcount) &&
3428 ISVALID(prevbno, ap->prev.br_startblock)) {
3429 /*
3430 * Calculate gap to end of previous block.
3431 */
3432 adjust = prevdiff = ap->offset -
3433 (ap->prev.br_startoff +
3434 ap->prev.br_blockcount);
3435 /*
3436 * Figure the startblock based on the previous block's
3437 * end and the gap size.
3438 * Heuristic!
3439 * If the gap is large relative to the piece we're
3440 * allocating, or using it gives us an invalid block
3441 * number, then just use the end of the previous block.
3442 */
3443 if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
3444 ISVALID(prevbno + prevdiff,
3445 ap->prev.br_startblock))
3446 prevbno += adjust;
3447 else
3448 prevdiff += adjust;
3449 /*
3450 * If the firstblock forbids it, can't use it,
3451 * must use default.
3452 */
3453 if (!rt && !nullfb &&
3454 XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno)
3455 prevbno = NULLFSBLOCK;
3456 }
3457 /*
3458 * No previous block or can't follow it, just default.
3459 */
3460 else
3461 prevbno = NULLFSBLOCK;
3462 /*
3463 * If there's a following (right) block, select a requested
3464 * start block based on it.
3465 */
3466 if (!isnullstartblock(ap->got.br_startblock)) {
3467 /*
3468 * Calculate gap to start of next block.
3469 */
3470 adjust = gotdiff = ap->got.br_startoff - ap->offset;
3471 /*
3472 * Figure the startblock based on the next block's
3473 * start and the gap size.
3474 */
3475 gotbno = ap->got.br_startblock;
3476 /*
3477 * Heuristic!
3478 * If the gap is large relative to the piece we're
3479 * allocating, or using it gives us an invalid block
3480 * number, then just use the start of the next block
3481 * offset by our length.
3482 */
3483 if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
3484 ISVALID(gotbno - gotdiff, gotbno))
3485 gotbno -= adjust;
3486 else if (ISVALID(gotbno - ap->length, gotbno)) {
3487 gotbno -= ap->length;
3488 gotdiff += adjust - ap->length;
3489 } else
3490 gotdiff += adjust;
3491 /*
3492 * If the firstblock forbids it, can't use it,
3493 * must use default.
3494 */
3495 if (!rt && !nullfb &&
3496 XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno)
3497 gotbno = NULLFSBLOCK;
3498 }
3499 /*
3500 * No next block, just default.
3501 */
3502 else
3503 gotbno = NULLFSBLOCK;
3504 /*
3505 * If both valid, pick the better one, else the only good
3506 * one, else ap->blkno is already set (to 0 or the inode block).
3507 */
3508 if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK)
3509 ap->blkno = prevdiff <= gotdiff ? prevbno : gotbno;
3510 else if (prevbno != NULLFSBLOCK)
3511 ap->blkno = prevbno;
3512 else if (gotbno != NULLFSBLOCK)
3513 ap->blkno = gotbno;
3514 }
3515 #undef ISVALID
3516 }
3517
3518 static int
3519 xfs_bmap_longest_free_extent(
3520 struct xfs_trans *tp,
3521 xfs_agnumber_t ag,
3522 xfs_extlen_t *blen,
3523 int *notinit)
3524 {
3525 struct xfs_mount *mp = tp->t_mountp;
3526 struct xfs_perag *pag;
3527 xfs_extlen_t longest;
3528 int error = 0;
3529
3530 pag = xfs_perag_get(mp, ag);
3531 if (!pag->pagf_init) {
3532 error = xfs_alloc_pagf_init(mp, tp, ag, XFS_ALLOC_FLAG_TRYLOCK);
3533 if (error)
3534 goto out;
3535
3536 if (!pag->pagf_init) {
3537 *notinit = 1;
3538 goto out;
3539 }
3540 }
3541
3542 longest = xfs_alloc_longest_free_extent(mp, pag);
3543 if (*blen < longest)
3544 *blen = longest;
3545
3546 out:
3547 xfs_perag_put(pag);
3548 return error;
3549 }
3550
3551 static void
3552 xfs_bmap_select_minlen(
3553 struct xfs_bmalloca *ap,
3554 struct xfs_alloc_arg *args,
3555 xfs_extlen_t *blen,
3556 int notinit)
3557 {
3558 if (notinit || *blen < ap->minlen) {
3559 /*
3560 * Since we did a BUF_TRYLOCK above, it is possible that
3561 * there is space for this request.
3562 */
3563 args->minlen = ap->minlen;
3564 } else if (*blen < args->maxlen) {
3565 /*
3566 * If the best seen length is less than the request length,
3567 * use the best as the minimum.
3568 */
3569 args->minlen = *blen;
3570 } else {
3571 /*
3572 * Otherwise we've seen an extent as big as maxlen, use that
3573 * as the minimum.
3574 */
3575 args->minlen = args->maxlen;
3576 }
3577 }
3578
3579 STATIC int
3580 xfs_bmap_btalloc_nullfb(
3581 struct xfs_bmalloca *ap,
3582 struct xfs_alloc_arg *args,
3583 xfs_extlen_t *blen)
3584 {
3585 struct xfs_mount *mp = ap->ip->i_mount;
3586 xfs_agnumber_t ag, startag;
3587 int notinit = 0;
3588 int error;
3589
3590 args->type = XFS_ALLOCTYPE_START_BNO;
3591 args->total = ap->total;
3592
3593 startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3594 if (startag == NULLAGNUMBER)
3595 startag = ag = 0;
3596
3597 while (*blen < args->maxlen) {
3598 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3599 &notinit);
3600 if (error)
3601 return error;
3602
3603 if (++ag == mp->m_sb.sb_agcount)
3604 ag = 0;
3605 if (ag == startag)
3606 break;
3607 }
3608
3609 xfs_bmap_select_minlen(ap, args, blen, notinit);
3610 return 0;
3611 }
3612
3613 STATIC int
3614 xfs_bmap_btalloc_filestreams(
3615 struct xfs_bmalloca *ap,
3616 struct xfs_alloc_arg *args,
3617 xfs_extlen_t *blen)
3618 {
3619 struct xfs_mount *mp = ap->ip->i_mount;
3620 xfs_agnumber_t ag;
3621 int notinit = 0;
3622 int error;
3623
3624 args->type = XFS_ALLOCTYPE_NEAR_BNO;
3625 args->total = ap->total;
3626
3627 ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3628 if (ag == NULLAGNUMBER)
3629 ag = 0;
3630
3631 error = xfs_bmap_longest_free_extent(args->tp, ag, blen, &notinit);
3632 if (error)
3633 return error;
3634
3635 if (*blen < args->maxlen) {
3636 error = xfs_filestream_new_ag(ap, &ag);
3637 if (error)
3638 return error;
3639
3640 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3641 &notinit);
3642 if (error)
3643 return error;
3644
3645 }
3646
3647 xfs_bmap_select_minlen(ap, args, blen, notinit);
3648
3649 /*
3650 * Set the failure fallback case to look in the selected AG as stream
3651 * may have moved.
3652 */
3653 ap->blkno = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0);
3654 return 0;
3655 }
3656
3657 STATIC int
3658 xfs_bmap_btalloc(
3659 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
3660 {
3661 xfs_mount_t *mp; /* mount point structure */
3662 xfs_alloctype_t atype = 0; /* type for allocation routines */
3663 xfs_extlen_t align; /* minimum allocation alignment */
3664 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3665 xfs_agnumber_t ag;
3666 xfs_alloc_arg_t args;
3667 xfs_extlen_t blen;
3668 xfs_extlen_t nextminlen = 0;
3669 int nullfb; /* true if ap->firstblock isn't set */
3670 int isaligned;
3671 int tryagain;
3672 int error;
3673 int stripe_align;
3674
3675 ASSERT(ap->length);
3676
3677 mp = ap->ip->i_mount;
3678
3679 /* stripe alignment for allocation is determined by mount parameters */
3680 stripe_align = 0;
3681 if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC))
3682 stripe_align = mp->m_swidth;
3683 else if (mp->m_dalign)
3684 stripe_align = mp->m_dalign;
3685
3686 align = ap->userdata ? xfs_get_extsz_hint(ap->ip) : 0;
3687 if (unlikely(align)) {
3688 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
3689 align, 0, ap->eof, 0, ap->conv,
3690 &ap->offset, &ap->length);
3691 ASSERT(!error);
3692 ASSERT(ap->length);
3693 }
3694
3695
3696 nullfb = *ap->firstblock == NULLFSBLOCK;
3697 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
3698 if (nullfb) {
3699 if (ap->userdata && xfs_inode_is_filestream(ap->ip)) {
3700 ag = xfs_filestream_lookup_ag(ap->ip);
3701 ag = (ag != NULLAGNUMBER) ? ag : 0;
3702 ap->blkno = XFS_AGB_TO_FSB(mp, ag, 0);
3703 } else {
3704 ap->blkno = XFS_INO_TO_FSB(mp, ap->ip->i_ino);
3705 }
3706 } else
3707 ap->blkno = *ap->firstblock;
3708
3709 xfs_bmap_adjacent(ap);
3710
3711 /*
3712 * If allowed, use ap->blkno; otherwise must use firstblock since
3713 * it's in the right allocation group.
3714 */
3715 if (nullfb || XFS_FSB_TO_AGNO(mp, ap->blkno) == fb_agno)
3716 ;
3717 else
3718 ap->blkno = *ap->firstblock;
3719 /*
3720 * Normal allocation, done through xfs_alloc_vextent.
3721 */
3722 tryagain = isaligned = 0;
3723 memset(&args, 0, sizeof(args));
3724 args.tp = ap->tp;
3725 args.mp = mp;
3726 args.fsbno = ap->blkno;
3727
3728 /* Trim the allocation back to the maximum an AG can fit. */
3729 args.maxlen = MIN(ap->length, XFS_ALLOC_AG_MAX_USABLE(mp));
3730 args.firstblock = *ap->firstblock;
3731 blen = 0;
3732 if (nullfb) {
3733 /*
3734 * Search for an allocation group with a single extent large
3735 * enough for the request. If one isn't found, then adjust
3736 * the minimum allocation size to the largest space found.
3737 */
3738 if (ap->userdata && xfs_inode_is_filestream(ap->ip))
3739 error = xfs_bmap_btalloc_filestreams(ap, &args, &blen);
3740 else
3741 error = xfs_bmap_btalloc_nullfb(ap, &args, &blen);
3742 if (error)
3743 return error;
3744 } else if (ap->flist->xbf_low) {
3745 if (xfs_inode_is_filestream(ap->ip))
3746 args.type = XFS_ALLOCTYPE_FIRST_AG;
3747 else
3748 args.type = XFS_ALLOCTYPE_START_BNO;
3749 args.total = args.minlen = ap->minlen;
3750 } else {
3751 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3752 args.total = ap->total;
3753 args.minlen = ap->minlen;
3754 }
3755 /* apply extent size hints if obtained earlier */
3756 if (unlikely(align)) {
3757 args.prod = align;
3758 if ((args.mod = (xfs_extlen_t)do_mod(ap->offset, args.prod)))
3759 args.mod = (xfs_extlen_t)(args.prod - args.mod);
3760 } else if (mp->m_sb.sb_blocksize >= PAGE_CACHE_SIZE) {
3761 args.prod = 1;
3762 args.mod = 0;
3763 } else {
3764 args.prod = PAGE_CACHE_SIZE >> mp->m_sb.sb_blocklog;
3765 if ((args.mod = (xfs_extlen_t)(do_mod(ap->offset, args.prod))))
3766 args.mod = (xfs_extlen_t)(args.prod - args.mod);
3767 }
3768 /*
3769 * If we are not low on available data blocks, and the
3770 * underlying logical volume manager is a stripe, and
3771 * the file offset is zero then try to allocate data
3772 * blocks on stripe unit boundary.
3773 * NOTE: ap->aeof is only set if the allocation length
3774 * is >= the stripe unit and the allocation offset is
3775 * at the end of file.
3776 */
3777 if (!ap->flist->xbf_low && ap->aeof) {
3778 if (!ap->offset) {
3779 args.alignment = stripe_align;
3780 atype = args.type;
3781 isaligned = 1;
3782 /*
3783 * Adjust for alignment
3784 */
3785 if (blen > args.alignment && blen <= args.maxlen)
3786 args.minlen = blen - args.alignment;
3787 args.minalignslop = 0;
3788 } else {
3789 /*
3790 * First try an exact bno allocation.
3791 * If it fails then do a near or start bno
3792 * allocation with alignment turned on.
3793 */
3794 atype = args.type;
3795 tryagain = 1;
3796 args.type = XFS_ALLOCTYPE_THIS_BNO;
3797 args.alignment = 1;
3798 /*
3799 * Compute the minlen+alignment for the
3800 * next case. Set slop so that the value
3801 * of minlen+alignment+slop doesn't go up
3802 * between the calls.
3803 */
3804 if (blen > stripe_align && blen <= args.maxlen)
3805 nextminlen = blen - stripe_align;
3806 else
3807 nextminlen = args.minlen;
3808 if (nextminlen + stripe_align > args.minlen + 1)
3809 args.minalignslop =
3810 nextminlen + stripe_align -
3811 args.minlen - 1;
3812 else
3813 args.minalignslop = 0;
3814 }
3815 } else {
3816 args.alignment = 1;
3817 args.minalignslop = 0;
3818 }
3819 args.minleft = ap->minleft;
3820 args.wasdel = ap->wasdel;
3821 args.isfl = 0;
3822 args.userdata = ap->userdata;
3823 if ((error = xfs_alloc_vextent(&args)))
3824 return error;
3825 if (tryagain && args.fsbno == NULLFSBLOCK) {
3826 /*
3827 * Exact allocation failed. Now try with alignment
3828 * turned on.
3829 */
3830 args.type = atype;
3831 args.fsbno = ap->blkno;
3832 args.alignment = stripe_align;
3833 args.minlen = nextminlen;
3834 args.minalignslop = 0;
3835 isaligned = 1;
3836 if ((error = xfs_alloc_vextent(&args)))
3837 return error;
3838 }
3839 if (isaligned && args.fsbno == NULLFSBLOCK) {
3840 /*
3841 * allocation failed, so turn off alignment and
3842 * try again.
3843 */
3844 args.type = atype;
3845 args.fsbno = ap->blkno;
3846 args.alignment = 0;
3847 if ((error = xfs_alloc_vextent(&args)))
3848 return error;
3849 }
3850 if (args.fsbno == NULLFSBLOCK && nullfb &&
3851 args.minlen > ap->minlen) {
3852 args.minlen = ap->minlen;
3853 args.type = XFS_ALLOCTYPE_START_BNO;
3854 args.fsbno = ap->blkno;
3855 if ((error = xfs_alloc_vextent(&args)))
3856 return error;
3857 }
3858 if (args.fsbno == NULLFSBLOCK && nullfb) {
3859 args.fsbno = 0;
3860 args.type = XFS_ALLOCTYPE_FIRST_AG;
3861 args.total = ap->minlen;
3862 args.minleft = 0;
3863 if ((error = xfs_alloc_vextent(&args)))
3864 return error;
3865 ap->flist->xbf_low = 1;
3866 }
3867 if (args.fsbno != NULLFSBLOCK) {
3868 /*
3869 * check the allocation happened at the same or higher AG than
3870 * the first block that was allocated.
3871 */
3872 ASSERT(*ap->firstblock == NULLFSBLOCK ||
3873 XFS_FSB_TO_AGNO(mp, *ap->firstblock) ==
3874 XFS_FSB_TO_AGNO(mp, args.fsbno) ||
3875 (ap->flist->xbf_low &&
3876 XFS_FSB_TO_AGNO(mp, *ap->firstblock) <
3877 XFS_FSB_TO_AGNO(mp, args.fsbno)));
3878
3879 ap->blkno = args.fsbno;
3880 if (*ap->firstblock == NULLFSBLOCK)
3881 *ap->firstblock = args.fsbno;
3882 ASSERT(nullfb || fb_agno == args.agno ||
3883 (ap->flist->xbf_low && fb_agno < args.agno));
3884 ap->length = args.len;
3885 ap->ip->i_d.di_nblocks += args.len;
3886 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
3887 if (ap->wasdel)
3888 ap->ip->i_delayed_blks -= args.len;
3889 /*
3890 * Adjust the disk quota also. This was reserved
3891 * earlier.
3892 */
3893 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
3894 ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT :
3895 XFS_TRANS_DQ_BCOUNT,
3896 (long) args.len);
3897 } else {
3898 ap->blkno = NULLFSBLOCK;
3899 ap->length = 0;
3900 }
3901 return 0;
3902 }
3903
3904 /*
3905 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
3906 * It figures out where to ask the underlying allocator to put the new extent.
3907 */
3908 STATIC int
3909 xfs_bmap_alloc(
3910 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
3911 {
3912 if (XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata)
3913 return xfs_bmap_rtalloc(ap);
3914 return xfs_bmap_btalloc(ap);
3915 }
3916
3917 /*
3918 * Trim the returned map to the required bounds
3919 */
3920 STATIC void
3921 xfs_bmapi_trim_map(
3922 struct xfs_bmbt_irec *mval,
3923 struct xfs_bmbt_irec *got,
3924 xfs_fileoff_t *bno,
3925 xfs_filblks_t len,
3926 xfs_fileoff_t obno,
3927 xfs_fileoff_t end,
3928 int n,
3929 int flags)
3930 {
3931 if ((flags & XFS_BMAPI_ENTIRE) ||
3932 got->br_startoff + got->br_blockcount <= obno) {
3933 *mval = *got;
3934 if (isnullstartblock(got->br_startblock))
3935 mval->br_startblock = DELAYSTARTBLOCK;
3936 return;
3937 }
3938
3939 if (obno > *bno)
3940 *bno = obno;
3941 ASSERT((*bno >= obno) || (n == 0));
3942 ASSERT(*bno < end);
3943 mval->br_startoff = *bno;
3944 if (isnullstartblock(got->br_startblock))
3945 mval->br_startblock = DELAYSTARTBLOCK;
3946 else
3947 mval->br_startblock = got->br_startblock +
3948 (*bno - got->br_startoff);
3949 /*
3950 * Return the minimum of what we got and what we asked for for
3951 * the length. We can use the len variable here because it is
3952 * modified below and we could have been there before coming
3953 * here if the first part of the allocation didn't overlap what
3954 * was asked for.
3955 */
3956 mval->br_blockcount = XFS_FILBLKS_MIN(end - *bno,
3957 got->br_blockcount - (*bno - got->br_startoff));
3958 mval->br_state = got->br_state;
3959 ASSERT(mval->br_blockcount <= len);
3960 return;
3961 }
3962
3963 /*
3964 * Update and validate the extent map to return
3965 */
3966 STATIC void
3967 xfs_bmapi_update_map(
3968 struct xfs_bmbt_irec **map,
3969 xfs_fileoff_t *bno,
3970 xfs_filblks_t *len,
3971 xfs_fileoff_t obno,
3972 xfs_fileoff_t end,
3973 int *n,
3974 int flags)
3975 {
3976 xfs_bmbt_irec_t *mval = *map;
3977
3978 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
3979 ((mval->br_startoff + mval->br_blockcount) <= end));
3980 ASSERT((flags & XFS_BMAPI_ENTIRE) || (mval->br_blockcount <= *len) ||
3981 (mval->br_startoff < obno));
3982
3983 *bno = mval->br_startoff + mval->br_blockcount;
3984 *len = end - *bno;
3985 if (*n > 0 && mval->br_startoff == mval[-1].br_startoff) {
3986 /* update previous map with new information */
3987 ASSERT(mval->br_startblock == mval[-1].br_startblock);
3988 ASSERT(mval->br_blockcount > mval[-1].br_blockcount);
3989 ASSERT(mval->br_state == mval[-1].br_state);
3990 mval[-1].br_blockcount = mval->br_blockcount;
3991 mval[-1].br_state = mval->br_state;
3992 } else if (*n > 0 && mval->br_startblock != DELAYSTARTBLOCK &&
3993 mval[-1].br_startblock != DELAYSTARTBLOCK &&
3994 mval[-1].br_startblock != HOLESTARTBLOCK &&
3995 mval->br_startblock == mval[-1].br_startblock +
3996 mval[-1].br_blockcount &&
3997 ((flags & XFS_BMAPI_IGSTATE) ||
3998 mval[-1].br_state == mval->br_state)) {
3999 ASSERT(mval->br_startoff ==
4000 mval[-1].br_startoff + mval[-1].br_blockcount);
4001 mval[-1].br_blockcount += mval->br_blockcount;
4002 } else if (*n > 0 &&
4003 mval->br_startblock == DELAYSTARTBLOCK &&
4004 mval[-1].br_startblock == DELAYSTARTBLOCK &&
4005 mval->br_startoff ==
4006 mval[-1].br_startoff + mval[-1].br_blockcount) {
4007 mval[-1].br_blockcount += mval->br_blockcount;
4008 mval[-1].br_state = mval->br_state;
4009 } else if (!((*n == 0) &&
4010 ((mval->br_startoff + mval->br_blockcount) <=
4011 obno))) {
4012 mval++;
4013 (*n)++;
4014 }
4015 *map = mval;
4016 }
4017
4018 /*
4019 * Map file blocks to filesystem blocks without allocation.
4020 */
4021 int
4022 xfs_bmapi_read(
4023 struct xfs_inode *ip,
4024 xfs_fileoff_t bno,
4025 xfs_filblks_t len,
4026 struct xfs_bmbt_irec *mval,
4027 int *nmap,
4028 int flags)
4029 {
4030 struct xfs_mount *mp = ip->i_mount;
4031 struct xfs_ifork *ifp;
4032 struct xfs_bmbt_irec got;
4033 struct xfs_bmbt_irec prev;
4034 xfs_fileoff_t obno;
4035 xfs_fileoff_t end;
4036 xfs_extnum_t lastx;
4037 int error;
4038 int eof;
4039 int n = 0;
4040 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4041 XFS_ATTR_FORK : XFS_DATA_FORK;
4042
4043 ASSERT(*nmap >= 1);
4044 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK|XFS_BMAPI_ENTIRE|
4045 XFS_BMAPI_IGSTATE)));
4046 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED|XFS_ILOCK_EXCL));
4047
4048 if (unlikely(XFS_TEST_ERROR(
4049 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4050 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
4051 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4052 XFS_ERROR_REPORT("xfs_bmapi_read", XFS_ERRLEVEL_LOW, mp);
4053 return XFS_ERROR(EFSCORRUPTED);
4054 }
4055
4056 if (XFS_FORCED_SHUTDOWN(mp))
4057 return XFS_ERROR(EIO);
4058
4059 XFS_STATS_INC(xs_blk_mapr);
4060
4061 ifp = XFS_IFORK_PTR(ip, whichfork);
4062
4063 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4064 error = xfs_iread_extents(NULL, ip, whichfork);
4065 if (error)
4066 return error;
4067 }
4068
4069 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got, &prev);
4070 end = bno + len;
4071 obno = bno;
4072
4073 while (bno < end && n < *nmap) {
4074 /* Reading past eof, act as though there's a hole up to end. */
4075 if (eof)
4076 got.br_startoff = end;
4077 if (got.br_startoff > bno) {
4078 /* Reading in a hole. */
4079 mval->br_startoff = bno;
4080 mval->br_startblock = HOLESTARTBLOCK;
4081 mval->br_blockcount =
4082 XFS_FILBLKS_MIN(len, got.br_startoff - bno);
4083 mval->br_state = XFS_EXT_NORM;
4084 bno += mval->br_blockcount;
4085 len -= mval->br_blockcount;
4086 mval++;
4087 n++;
4088 continue;
4089 }
4090
4091 /* set up the extent map to return. */
4092 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4093 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4094
4095 /* If we're done, stop now. */
4096 if (bno >= end || n >= *nmap)
4097 break;
4098
4099 /* Else go on to the next record. */
4100 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4101 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4102 else
4103 eof = 1;
4104 }
4105 *nmap = n;
4106 return 0;
4107 }
4108
4109 STATIC int
4110 xfs_bmapi_reserve_delalloc(
4111 struct xfs_inode *ip,
4112 xfs_fileoff_t aoff,
4113 xfs_filblks_t len,
4114 struct xfs_bmbt_irec *got,
4115 struct xfs_bmbt_irec *prev,
4116 xfs_extnum_t *lastx,
4117 int eof)
4118 {
4119 struct xfs_mount *mp = ip->i_mount;
4120 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4121 xfs_extlen_t alen;
4122 xfs_extlen_t indlen;
4123 char rt = XFS_IS_REALTIME_INODE(ip);
4124 xfs_extlen_t extsz;
4125 int error;
4126
4127 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN);
4128 if (!eof)
4129 alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff);
4130
4131 /* Figure out the extent size, adjust alen */
4132 extsz = xfs_get_extsz_hint(ip);
4133 if (extsz) {
4134 /*
4135 * Make sure we don't exceed a single extent length when we
4136 * align the extent by reducing length we are going to
4137 * allocate by the maximum amount extent size aligment may
4138 * require.
4139 */
4140 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN - (2 * extsz - 1));
4141 error = xfs_bmap_extsize_align(mp, got, prev, extsz, rt, eof,
4142 1, 0, &aoff, &alen);
4143 ASSERT(!error);
4144 }
4145
4146 if (rt)
4147 extsz = alen / mp->m_sb.sb_rextsize;
4148
4149 /*
4150 * Make a transaction-less quota reservation for delayed allocation
4151 * blocks. This number gets adjusted later. We return if we haven't
4152 * allocated blocks already inside this loop.
4153 */
4154 error = xfs_trans_reserve_quota_nblks(NULL, ip, (long)alen, 0,
4155 rt ? XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4156 if (error)
4157 return error;
4158
4159 /*
4160 * Split changing sb for alen and indlen since they could be coming
4161 * from different places.
4162 */
4163 indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen);
4164 ASSERT(indlen > 0);
4165
4166 if (rt) {
4167 error = xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
4168 -((int64_t)extsz), 0);
4169 } else {
4170 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4171 -((int64_t)alen), 0);
4172 }
4173
4174 if (error)
4175 goto out_unreserve_quota;
4176
4177 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4178 -((int64_t)indlen), 0);
4179 if (error)
4180 goto out_unreserve_blocks;
4181
4182
4183 ip->i_delayed_blks += alen;
4184
4185 got->br_startoff = aoff;
4186 got->br_startblock = nullstartblock(indlen);
4187 got->br_blockcount = alen;
4188 got->br_state = XFS_EXT_NORM;
4189 xfs_bmap_add_extent_hole_delay(ip, lastx, got);
4190
4191 /*
4192 * Update our extent pointer, given that xfs_bmap_add_extent_hole_delay
4193 * might have merged it into one of the neighbouring ones.
4194 */
4195 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *lastx), got);
4196
4197 ASSERT(got->br_startoff <= aoff);
4198 ASSERT(got->br_startoff + got->br_blockcount >= aoff + alen);
4199 ASSERT(isnullstartblock(got->br_startblock));
4200 ASSERT(got->br_state == XFS_EXT_NORM);
4201 return 0;
4202
4203 out_unreserve_blocks:
4204 if (rt)
4205 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS, extsz, 0);
4206 else
4207 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS, alen, 0);
4208 out_unreserve_quota:
4209 if (XFS_IS_QUOTA_ON(mp))
4210 xfs_trans_unreserve_quota_nblks(NULL, ip, (long)alen, 0, rt ?
4211 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4212 return error;
4213 }
4214
4215 /*
4216 * Map file blocks to filesystem blocks, adding delayed allocations as needed.
4217 */
4218 int
4219 xfs_bmapi_delay(
4220 struct xfs_inode *ip, /* incore inode */
4221 xfs_fileoff_t bno, /* starting file offs. mapped */
4222 xfs_filblks_t len, /* length to map in file */
4223 struct xfs_bmbt_irec *mval, /* output: map values */
4224 int *nmap, /* i/o: mval size/count */
4225 int flags) /* XFS_BMAPI_... */
4226 {
4227 struct xfs_mount *mp = ip->i_mount;
4228 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4229 struct xfs_bmbt_irec got; /* current file extent record */
4230 struct xfs_bmbt_irec prev; /* previous file extent record */
4231 xfs_fileoff_t obno; /* old block number (offset) */
4232 xfs_fileoff_t end; /* end of mapped file region */
4233 xfs_extnum_t lastx; /* last useful extent number */
4234 int eof; /* we've hit the end of extents */
4235 int n = 0; /* current extent index */
4236 int error = 0;
4237
4238 ASSERT(*nmap >= 1);
4239 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4240 ASSERT(!(flags & ~XFS_BMAPI_ENTIRE));
4241 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
4242
4243 if (unlikely(XFS_TEST_ERROR(
4244 (XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_EXTENTS &&
4245 XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_BTREE),
4246 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4247 XFS_ERROR_REPORT("xfs_bmapi_delay", XFS_ERRLEVEL_LOW, mp);
4248 return XFS_ERROR(EFSCORRUPTED);
4249 }
4250
4251 if (XFS_FORCED_SHUTDOWN(mp))
4252 return XFS_ERROR(EIO);
4253
4254 XFS_STATS_INC(xs_blk_mapw);
4255
4256 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4257 error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK);
4258 if (error)
4259 return error;
4260 }
4261
4262 xfs_bmap_search_extents(ip, bno, XFS_DATA_FORK, &eof, &lastx, &got, &prev);
4263 end = bno + len;
4264 obno = bno;
4265
4266 while (bno < end && n < *nmap) {
4267 if (eof || got.br_startoff > bno) {
4268 error = xfs_bmapi_reserve_delalloc(ip, bno, len, &got,
4269 &prev, &lastx, eof);
4270 if (error) {
4271 if (n == 0) {
4272 *nmap = 0;
4273 return error;
4274 }
4275 break;
4276 }
4277 }
4278
4279 /* set up the extent map to return. */
4280 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4281 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4282
4283 /* If we're done, stop now. */
4284 if (bno >= end || n >= *nmap)
4285 break;
4286
4287 /* Else go on to the next record. */
4288 prev = got;
4289 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4290 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4291 else
4292 eof = 1;
4293 }
4294
4295 *nmap = n;
4296 return 0;
4297 }
4298
4299
4300 int
4301 __xfs_bmapi_allocate(
4302 struct xfs_bmalloca *bma)
4303 {
4304 struct xfs_mount *mp = bma->ip->i_mount;
4305 int whichfork = (bma->flags & XFS_BMAPI_ATTRFORK) ?
4306 XFS_ATTR_FORK : XFS_DATA_FORK;
4307 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4308 int tmp_logflags = 0;
4309 int error;
4310
4311 ASSERT(bma->length > 0);
4312
4313 /*
4314 * For the wasdelay case, we could also just allocate the stuff asked
4315 * for in this bmap call but that wouldn't be as good.
4316 */
4317 if (bma->wasdel) {
4318 bma->length = (xfs_extlen_t)bma->got.br_blockcount;
4319 bma->offset = bma->got.br_startoff;
4320 if (bma->idx != NULLEXTNUM && bma->idx) {
4321 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1),
4322 &bma->prev);
4323 }
4324 } else {
4325 bma->length = XFS_FILBLKS_MIN(bma->length, MAXEXTLEN);
4326 if (!bma->eof)
4327 bma->length = XFS_FILBLKS_MIN(bma->length,
4328 bma->got.br_startoff - bma->offset);
4329 }
4330
4331 /*
4332 * Indicate if this is the first user data in the file, or just any
4333 * user data.
4334 */
4335 if (!(bma->flags & XFS_BMAPI_METADATA)) {
4336 bma->userdata = (bma->offset == 0) ?
4337 XFS_ALLOC_INITIAL_USER_DATA : XFS_ALLOC_USERDATA;
4338 }
4339
4340 bma->minlen = (bma->flags & XFS_BMAPI_CONTIG) ? bma->length : 1;
4341
4342 /*
4343 * Only want to do the alignment at the eof if it is userdata and
4344 * allocation length is larger than a stripe unit.
4345 */
4346 if (mp->m_dalign && bma->length >= mp->m_dalign &&
4347 !(bma->flags & XFS_BMAPI_METADATA) && whichfork == XFS_DATA_FORK) {
4348 error = xfs_bmap_isaeof(bma, whichfork);
4349 if (error)
4350 return error;
4351 }
4352
4353 error = xfs_bmap_alloc(bma);
4354 if (error)
4355 return error;
4356
4357 if (bma->flist->xbf_low)
4358 bma->minleft = 0;
4359 if (bma->cur)
4360 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4361 if (bma->blkno == NULLFSBLOCK)
4362 return 0;
4363 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4364 bma->cur = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork);
4365 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4366 bma->cur->bc_private.b.flist = bma->flist;
4367 }
4368 /*
4369 * Bump the number of extents we've allocated
4370 * in this call.
4371 */
4372 bma->nallocs++;
4373
4374 if (bma->cur)
4375 bma->cur->bc_private.b.flags =
4376 bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
4377
4378 bma->got.br_startoff = bma->offset;
4379 bma->got.br_startblock = bma->blkno;
4380 bma->got.br_blockcount = bma->length;
4381 bma->got.br_state = XFS_EXT_NORM;
4382
4383 /*
4384 * A wasdelay extent has been initialized, so shouldn't be flagged
4385 * as unwritten.
4386 */
4387 if (!bma->wasdel && (bma->flags & XFS_BMAPI_PREALLOC) &&
4388 xfs_sb_version_hasextflgbit(&mp->m_sb))
4389 bma->got.br_state = XFS_EXT_UNWRITTEN;
4390
4391 if (bma->wasdel)
4392 error = xfs_bmap_add_extent_delay_real(bma);
4393 else
4394 error = xfs_bmap_add_extent_hole_real(bma, whichfork);
4395
4396 bma->logflags |= tmp_logflags;
4397 if (error)
4398 return error;
4399
4400 /*
4401 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4402 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4403 * the neighbouring ones.
4404 */
4405 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
4406
4407 ASSERT(bma->got.br_startoff <= bma->offset);
4408 ASSERT(bma->got.br_startoff + bma->got.br_blockcount >=
4409 bma->offset + bma->length);
4410 ASSERT(bma->got.br_state == XFS_EXT_NORM ||
4411 bma->got.br_state == XFS_EXT_UNWRITTEN);
4412 return 0;
4413 }
4414
4415 STATIC int
4416 xfs_bmapi_convert_unwritten(
4417 struct xfs_bmalloca *bma,
4418 struct xfs_bmbt_irec *mval,
4419 xfs_filblks_t len,
4420 int flags)
4421 {
4422 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4423 XFS_ATTR_FORK : XFS_DATA_FORK;
4424 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4425 int tmp_logflags = 0;
4426 int error;
4427
4428 /* check if we need to do unwritten->real conversion */
4429 if (mval->br_state == XFS_EXT_UNWRITTEN &&
4430 (flags & XFS_BMAPI_PREALLOC))
4431 return 0;
4432
4433 /* check if we need to do real->unwritten conversion */
4434 if (mval->br_state == XFS_EXT_NORM &&
4435 (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) !=
4436 (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT))
4437 return 0;
4438
4439 /*
4440 * Modify (by adding) the state flag, if writing.
4441 */
4442 ASSERT(mval->br_blockcount <= len);
4443 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4444 bma->cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp,
4445 bma->ip, whichfork);
4446 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4447 bma->cur->bc_private.b.flist = bma->flist;
4448 }
4449 mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN)
4450 ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
4451
4452 error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, &bma->idx,
4453 &bma->cur, mval, bma->firstblock, bma->flist,
4454 &tmp_logflags);
4455 bma->logflags |= tmp_logflags;
4456 if (error)
4457 return error;
4458
4459 /*
4460 * Update our extent pointer, given that
4461 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4462 * of the neighbouring ones.
4463 */
4464 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
4465
4466 /*
4467 * We may have combined previously unwritten space with written space,
4468 * so generate another request.
4469 */
4470 if (mval->br_blockcount < len)
4471 return EAGAIN;
4472 return 0;
4473 }
4474
4475 /*
4476 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4477 * extent state if necessary. Details behaviour is controlled by the flags
4478 * parameter. Only allocates blocks from a single allocation group, to avoid
4479 * locking problems.
4480 *
4481 * The returned value in "firstblock" from the first call in a transaction
4482 * must be remembered and presented to subsequent calls in "firstblock".
4483 * An upper bound for the number of blocks to be allocated is supplied to
4484 * the first call in "total"; if no allocation group has that many free
4485 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4486 */
4487 int
4488 xfs_bmapi_write(
4489 struct xfs_trans *tp, /* transaction pointer */
4490 struct xfs_inode *ip, /* incore inode */
4491 xfs_fileoff_t bno, /* starting file offs. mapped */
4492 xfs_filblks_t len, /* length to map in file */
4493 int flags, /* XFS_BMAPI_... */
4494 xfs_fsblock_t *firstblock, /* first allocated block
4495 controls a.g. for allocs */
4496 xfs_extlen_t total, /* total blocks needed */
4497 struct xfs_bmbt_irec *mval, /* output: map values */
4498 int *nmap, /* i/o: mval size/count */
4499 struct xfs_bmap_free *flist) /* i/o: list extents to free */
4500 {
4501 struct xfs_mount *mp = ip->i_mount;
4502 struct xfs_ifork *ifp;
4503 struct xfs_bmalloca bma = { NULL }; /* args for xfs_bmap_alloc */
4504 xfs_fileoff_t end; /* end of mapped file region */
4505 int eof; /* after the end of extents */
4506 int error; /* error return */
4507 int n; /* current extent index */
4508 xfs_fileoff_t obno; /* old block number (offset) */
4509 int whichfork; /* data or attr fork */
4510 char inhole; /* current location is hole in file */
4511 char wasdelay; /* old extent was delayed */
4512
4513 #ifdef DEBUG
4514 xfs_fileoff_t orig_bno; /* original block number value */
4515 int orig_flags; /* original flags arg value */
4516 xfs_filblks_t orig_len; /* original value of len arg */
4517 struct xfs_bmbt_irec *orig_mval; /* original value of mval */
4518 int orig_nmap; /* original value of *nmap */
4519
4520 orig_bno = bno;
4521 orig_len = len;
4522 orig_flags = flags;
4523 orig_mval = mval;
4524 orig_nmap = *nmap;
4525 #endif
4526 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4527 XFS_ATTR_FORK : XFS_DATA_FORK;
4528
4529 ASSERT(*nmap >= 1);
4530 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4531 ASSERT(!(flags & XFS_BMAPI_IGSTATE));
4532 ASSERT(tp != NULL);
4533 ASSERT(len > 0);
4534 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL);
4535 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
4536
4537 if (unlikely(XFS_TEST_ERROR(
4538 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4539 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
4540 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4541 XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW, mp);
4542 return XFS_ERROR(EFSCORRUPTED);
4543 }
4544
4545 if (XFS_FORCED_SHUTDOWN(mp))
4546 return XFS_ERROR(EIO);
4547
4548 ifp = XFS_IFORK_PTR(ip, whichfork);
4549
4550 XFS_STATS_INC(xs_blk_mapw);
4551
4552 if (*firstblock == NULLFSBLOCK) {
4553 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE)
4554 bma.minleft = be16_to_cpu(ifp->if_broot->bb_level) + 1;
4555 else
4556 bma.minleft = 1;
4557 } else {
4558 bma.minleft = 0;
4559 }
4560
4561 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4562 error = xfs_iread_extents(tp, ip, whichfork);
4563 if (error)
4564 goto error0;
4565 }
4566
4567 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &bma.idx, &bma.got,
4568 &bma.prev);
4569 n = 0;
4570 end = bno + len;
4571 obno = bno;
4572
4573 bma.tp = tp;
4574 bma.ip = ip;
4575 bma.total = total;
4576 bma.userdata = 0;
4577 bma.flist = flist;
4578 bma.firstblock = firstblock;
4579
4580 if (flags & XFS_BMAPI_STACK_SWITCH)
4581 bma.stack_switch = 1;
4582
4583 while (bno < end && n < *nmap) {
4584 inhole = eof || bma.got.br_startoff > bno;
4585 wasdelay = !inhole && isnullstartblock(bma.got.br_startblock);
4586
4587 /*
4588 * First, deal with the hole before the allocated space
4589 * that we found, if any.
4590 */
4591 if (inhole || wasdelay) {
4592 bma.eof = eof;
4593 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
4594 bma.wasdel = wasdelay;
4595 bma.offset = bno;
4596 bma.flags = flags;
4597
4598 /*
4599 * There's a 32/64 bit type mismatch between the
4600 * allocation length request (which can be 64 bits in
4601 * length) and the bma length request, which is
4602 * xfs_extlen_t and therefore 32 bits. Hence we have to
4603 * check for 32-bit overflows and handle them here.
4604 */
4605 if (len > (xfs_filblks_t)MAXEXTLEN)
4606 bma.length = MAXEXTLEN;
4607 else
4608 bma.length = len;
4609
4610 ASSERT(len > 0);
4611 ASSERT(bma.length > 0);
4612 error = xfs_bmapi_allocate(&bma);
4613 if (error)
4614 goto error0;
4615 if (bma.blkno == NULLFSBLOCK)
4616 break;
4617 }
4618
4619 /* Deal with the allocated space we found. */
4620 xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno,
4621 end, n, flags);
4622
4623 /* Execute unwritten extent conversion if necessary */
4624 error = xfs_bmapi_convert_unwritten(&bma, mval, len, flags);
4625 if (error == EAGAIN)
4626 continue;
4627 if (error)
4628 goto error0;
4629
4630 /* update the extent map to return */
4631 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4632
4633 /*
4634 * If we're done, stop now. Stop when we've allocated
4635 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4636 * the transaction may get too big.
4637 */
4638 if (bno >= end || n >= *nmap || bma.nallocs >= *nmap)
4639 break;
4640
4641 /* Else go on to the next record. */
4642 bma.prev = bma.got;
4643 if (++bma.idx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t)) {
4644 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma.idx),
4645 &bma.got);
4646 } else
4647 eof = 1;
4648 }
4649 *nmap = n;
4650
4651 /*
4652 * Transform from btree to extents, give it cur.
4653 */
4654 if (xfs_bmap_wants_extents(ip, whichfork)) {
4655 int tmp_logflags = 0;
4656
4657 ASSERT(bma.cur);
4658 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur,
4659 &tmp_logflags, whichfork);
4660 bma.logflags |= tmp_logflags;
4661 if (error)
4662 goto error0;
4663 }
4664
4665 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE ||
4666 XFS_IFORK_NEXTENTS(ip, whichfork) >
4667 XFS_IFORK_MAXEXT(ip, whichfork));
4668 error = 0;
4669 error0:
4670 /*
4671 * Log everything. Do this after conversion, there's no point in
4672 * logging the extent records if we've converted to btree format.
4673 */
4674 if ((bma.logflags & xfs_ilog_fext(whichfork)) &&
4675 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
4676 bma.logflags &= ~xfs_ilog_fext(whichfork);
4677 else if ((bma.logflags & xfs_ilog_fbroot(whichfork)) &&
4678 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
4679 bma.logflags &= ~xfs_ilog_fbroot(whichfork);
4680 /*
4681 * Log whatever the flags say, even if error. Otherwise we might miss
4682 * detecting a case where the data is changed, there's an error,
4683 * and it's not logged so we don't shutdown when we should.
4684 */
4685 if (bma.logflags)
4686 xfs_trans_log_inode(tp, ip, bma.logflags);
4687
4688 if (bma.cur) {
4689 if (!error) {
4690 ASSERT(*firstblock == NULLFSBLOCK ||
4691 XFS_FSB_TO_AGNO(mp, *firstblock) ==
4692 XFS_FSB_TO_AGNO(mp,
4693 bma.cur->bc_private.b.firstblock) ||
4694 (flist->xbf_low &&
4695 XFS_FSB_TO_AGNO(mp, *firstblock) <
4696 XFS_FSB_TO_AGNO(mp,
4697 bma.cur->bc_private.b.firstblock)));
4698 *firstblock = bma.cur->bc_private.b.firstblock;
4699 }
4700 xfs_btree_del_cursor(bma.cur,
4701 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
4702 }
4703 if (!error)
4704 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
4705 orig_nmap, *nmap);
4706 return error;
4707 }
4708
4709 /*
4710 * Called by xfs_bmapi to update file extent records and the btree
4711 * after removing space (or undoing a delayed allocation).
4712 */
4713 STATIC int /* error */
4714 xfs_bmap_del_extent(
4715 xfs_inode_t *ip, /* incore inode pointer */
4716 xfs_trans_t *tp, /* current transaction pointer */
4717 xfs_extnum_t *idx, /* extent number to update/delete */
4718 xfs_bmap_free_t *flist, /* list of extents to be freed */
4719 xfs_btree_cur_t *cur, /* if null, not a btree */
4720 xfs_bmbt_irec_t *del, /* data to remove from extents */
4721 int *logflagsp, /* inode logging flags */
4722 int whichfork) /* data or attr fork */
4723 {
4724 xfs_filblks_t da_new; /* new delay-alloc indirect blocks */
4725 xfs_filblks_t da_old; /* old delay-alloc indirect blocks */
4726 xfs_fsblock_t del_endblock=0; /* first block past del */
4727 xfs_fileoff_t del_endoff; /* first offset past del */
4728 int delay; /* current block is delayed allocated */
4729 int do_fx; /* free extent at end of routine */
4730 xfs_bmbt_rec_host_t *ep; /* current extent entry pointer */
4731 int error; /* error return value */
4732 int flags; /* inode logging flags */
4733 xfs_bmbt_irec_t got; /* current extent entry */
4734 xfs_fileoff_t got_endoff; /* first offset past got */
4735 int i; /* temp state */
4736 xfs_ifork_t *ifp; /* inode fork pointer */
4737 xfs_mount_t *mp; /* mount structure */
4738 xfs_filblks_t nblks; /* quota/sb block count */
4739 xfs_bmbt_irec_t new; /* new record to be inserted */
4740 /* REFERENCED */
4741 uint qfield; /* quota field to update */
4742 xfs_filblks_t temp; /* for indirect length calculations */
4743 xfs_filblks_t temp2; /* for indirect length calculations */
4744 int state = 0;
4745
4746 XFS_STATS_INC(xs_del_exlist);
4747
4748 if (whichfork == XFS_ATTR_FORK)
4749 state |= BMAP_ATTRFORK;
4750
4751 mp = ip->i_mount;
4752 ifp = XFS_IFORK_PTR(ip, whichfork);
4753 ASSERT((*idx >= 0) && (*idx < ifp->if_bytes /
4754 (uint)sizeof(xfs_bmbt_rec_t)));
4755 ASSERT(del->br_blockcount > 0);
4756 ep = xfs_iext_get_ext(ifp, *idx);
4757 xfs_bmbt_get_all(ep, &got);
4758 ASSERT(got.br_startoff <= del->br_startoff);
4759 del_endoff = del->br_startoff + del->br_blockcount;
4760 got_endoff = got.br_startoff + got.br_blockcount;
4761 ASSERT(got_endoff >= del_endoff);
4762 delay = isnullstartblock(got.br_startblock);
4763 ASSERT(isnullstartblock(del->br_startblock) == delay);
4764 flags = 0;
4765 qfield = 0;
4766 error = 0;
4767 /*
4768 * If deleting a real allocation, must free up the disk space.
4769 */
4770 if (!delay) {
4771 flags = XFS_ILOG_CORE;
4772 /*
4773 * Realtime allocation. Free it and record di_nblocks update.
4774 */
4775 if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) {
4776 xfs_fsblock_t bno;
4777 xfs_filblks_t len;
4778
4779 ASSERT(do_mod(del->br_blockcount,
4780 mp->m_sb.sb_rextsize) == 0);
4781 ASSERT(do_mod(del->br_startblock,
4782 mp->m_sb.sb_rextsize) == 0);
4783 bno = del->br_startblock;
4784 len = del->br_blockcount;
4785 do_div(bno, mp->m_sb.sb_rextsize);
4786 do_div(len, mp->m_sb.sb_rextsize);
4787 error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len);
4788 if (error)
4789 goto done;
4790 do_fx = 0;
4791 nblks = len * mp->m_sb.sb_rextsize;
4792 qfield = XFS_TRANS_DQ_RTBCOUNT;
4793 }
4794 /*
4795 * Ordinary allocation.
4796 */
4797 else {
4798 do_fx = 1;
4799 nblks = del->br_blockcount;
4800 qfield = XFS_TRANS_DQ_BCOUNT;
4801 }
4802 /*
4803 * Set up del_endblock and cur for later.
4804 */
4805 del_endblock = del->br_startblock + del->br_blockcount;
4806 if (cur) {
4807 if ((error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
4808 got.br_startblock, got.br_blockcount,
4809 &i)))
4810 goto done;
4811 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4812 }
4813 da_old = da_new = 0;
4814 } else {
4815 da_old = startblockval(got.br_startblock);
4816 da_new = 0;
4817 nblks = 0;
4818 do_fx = 0;
4819 }
4820 /*
4821 * Set flag value to use in switch statement.
4822 * Left-contig is 2, right-contig is 1.
4823 */
4824 switch (((got.br_startoff == del->br_startoff) << 1) |
4825 (got_endoff == del_endoff)) {
4826 case 3:
4827 /*
4828 * Matches the whole extent. Delete the entry.
4829 */
4830 xfs_iext_remove(ip, *idx, 1,
4831 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0);
4832 --*idx;
4833 if (delay)
4834 break;
4835
4836 XFS_IFORK_NEXT_SET(ip, whichfork,
4837 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
4838 flags |= XFS_ILOG_CORE;
4839 if (!cur) {
4840 flags |= xfs_ilog_fext(whichfork);
4841 break;
4842 }
4843 if ((error = xfs_btree_delete(cur, &i)))
4844 goto done;
4845 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4846 break;
4847
4848 case 2:
4849 /*
4850 * Deleting the first part of the extent.
4851 */
4852 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4853 xfs_bmbt_set_startoff(ep, del_endoff);
4854 temp = got.br_blockcount - del->br_blockcount;
4855 xfs_bmbt_set_blockcount(ep, temp);
4856 if (delay) {
4857 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4858 da_old);
4859 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4860 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4861 da_new = temp;
4862 break;
4863 }
4864 xfs_bmbt_set_startblock(ep, del_endblock);
4865 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4866 if (!cur) {
4867 flags |= xfs_ilog_fext(whichfork);
4868 break;
4869 }
4870 if ((error = xfs_bmbt_update(cur, del_endoff, del_endblock,
4871 got.br_blockcount - del->br_blockcount,
4872 got.br_state)))
4873 goto done;
4874 break;
4875
4876 case 1:
4877 /*
4878 * Deleting the last part of the extent.
4879 */
4880 temp = got.br_blockcount - del->br_blockcount;
4881 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4882 xfs_bmbt_set_blockcount(ep, temp);
4883 if (delay) {
4884 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4885 da_old);
4886 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4887 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4888 da_new = temp;
4889 break;
4890 }
4891 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4892 if (!cur) {
4893 flags |= xfs_ilog_fext(whichfork);
4894 break;
4895 }
4896 if ((error = xfs_bmbt_update(cur, got.br_startoff,
4897 got.br_startblock,
4898 got.br_blockcount - del->br_blockcount,
4899 got.br_state)))
4900 goto done;
4901 break;
4902
4903 case 0:
4904 /*
4905 * Deleting the middle of the extent.
4906 */
4907 temp = del->br_startoff - got.br_startoff;
4908 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4909 xfs_bmbt_set_blockcount(ep, temp);
4910 new.br_startoff = del_endoff;
4911 temp2 = got_endoff - del_endoff;
4912 new.br_blockcount = temp2;
4913 new.br_state = got.br_state;
4914 if (!delay) {
4915 new.br_startblock = del_endblock;
4916 flags |= XFS_ILOG_CORE;
4917 if (cur) {
4918 if ((error = xfs_bmbt_update(cur,
4919 got.br_startoff,
4920 got.br_startblock, temp,
4921 got.br_state)))
4922 goto done;
4923 if ((error = xfs_btree_increment(cur, 0, &i)))
4924 goto done;
4925 cur->bc_rec.b = new;
4926 error = xfs_btree_insert(cur, &i);
4927 if (error && error != ENOSPC)
4928 goto done;
4929 /*
4930 * If get no-space back from btree insert,
4931 * it tried a split, and we have a zero
4932 * block reservation.
4933 * Fix up our state and return the error.
4934 */
4935 if (error == ENOSPC) {
4936 /*
4937 * Reset the cursor, don't trust
4938 * it after any insert operation.
4939 */
4940 if ((error = xfs_bmbt_lookup_eq(cur,
4941 got.br_startoff,
4942 got.br_startblock,
4943 temp, &i)))
4944 goto done;
4945 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4946 /*
4947 * Update the btree record back
4948 * to the original value.
4949 */
4950 if ((error = xfs_bmbt_update(cur,
4951 got.br_startoff,
4952 got.br_startblock,
4953 got.br_blockcount,
4954 got.br_state)))
4955 goto done;
4956 /*
4957 * Reset the extent record back
4958 * to the original value.
4959 */
4960 xfs_bmbt_set_blockcount(ep,
4961 got.br_blockcount);
4962 flags = 0;
4963 error = XFS_ERROR(ENOSPC);
4964 goto done;
4965 }
4966 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4967 } else
4968 flags |= xfs_ilog_fext(whichfork);
4969 XFS_IFORK_NEXT_SET(ip, whichfork,
4970 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
4971 } else {
4972 ASSERT(whichfork == XFS_DATA_FORK);
4973 temp = xfs_bmap_worst_indlen(ip, temp);
4974 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4975 temp2 = xfs_bmap_worst_indlen(ip, temp2);
4976 new.br_startblock = nullstartblock((int)temp2);
4977 da_new = temp + temp2;
4978 while (da_new > da_old) {
4979 if (temp) {
4980 temp--;
4981 da_new--;
4982 xfs_bmbt_set_startblock(ep,
4983 nullstartblock((int)temp));
4984 }
4985 if (da_new == da_old)
4986 break;
4987 if (temp2) {
4988 temp2--;
4989 da_new--;
4990 new.br_startblock =
4991 nullstartblock((int)temp2);
4992 }
4993 }
4994 }
4995 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4996 xfs_iext_insert(ip, *idx + 1, 1, &new, state);
4997 ++*idx;
4998 break;
4999 }
5000 /*
5001 * If we need to, add to list of extents to delete.
5002 */
5003 if (do_fx)
5004 xfs_bmap_add_free(del->br_startblock, del->br_blockcount, flist,
5005 mp);
5006 /*
5007 * Adjust inode # blocks in the file.
5008 */
5009 if (nblks)
5010 ip->i_d.di_nblocks -= nblks;
5011 /*
5012 * Adjust quota data.
5013 */
5014 if (qfield)
5015 xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks);
5016
5017 /*
5018 * Account for change in delayed indirect blocks.
5019 * Nothing to do for disk quota accounting here.
5020 */
5021 ASSERT(da_old >= da_new);
5022 if (da_old > da_new) {
5023 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
5024 (int64_t)(da_old - da_new), 0);
5025 }
5026 done:
5027 *logflagsp = flags;
5028 return error;
5029 }
5030
5031 /*
5032 * Unmap (remove) blocks from a file.
5033 * If nexts is nonzero then the number of extents to remove is limited to
5034 * that value. If not all extents in the block range can be removed then
5035 * *done is set.
5036 */
5037 int /* error */
5038 xfs_bunmapi(
5039 xfs_trans_t *tp, /* transaction pointer */
5040 struct xfs_inode *ip, /* incore inode */
5041 xfs_fileoff_t bno, /* starting offset to unmap */
5042 xfs_filblks_t len, /* length to unmap in file */
5043 int flags, /* misc flags */
5044 xfs_extnum_t nexts, /* number of extents max */
5045 xfs_fsblock_t *firstblock, /* first allocated block
5046 controls a.g. for allocs */
5047 xfs_bmap_free_t *flist, /* i/o: list extents to free */
5048 int *done) /* set if not done yet */
5049 {
5050 xfs_btree_cur_t *cur; /* bmap btree cursor */
5051 xfs_bmbt_irec_t del; /* extent being deleted */
5052 int eof; /* is deleting at eof */
5053 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
5054 int error; /* error return value */
5055 xfs_extnum_t extno; /* extent number in list */
5056 xfs_bmbt_irec_t got; /* current extent record */
5057 xfs_ifork_t *ifp; /* inode fork pointer */
5058 int isrt; /* freeing in rt area */
5059 xfs_extnum_t lastx; /* last extent index used */
5060 int logflags; /* transaction logging flags */
5061 xfs_extlen_t mod; /* rt extent offset */
5062 xfs_mount_t *mp; /* mount structure */
5063 xfs_extnum_t nextents; /* number of file extents */
5064 xfs_bmbt_irec_t prev; /* previous extent record */
5065 xfs_fileoff_t start; /* first file offset deleted */
5066 int tmp_logflags; /* partial logging flags */
5067 int wasdel; /* was a delayed alloc extent */
5068 int whichfork; /* data or attribute fork */
5069 xfs_fsblock_t sum;
5070
5071 trace_xfs_bunmap(ip, bno, len, flags, _RET_IP_);
5072
5073 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
5074 XFS_ATTR_FORK : XFS_DATA_FORK;
5075 ifp = XFS_IFORK_PTR(ip, whichfork);
5076 if (unlikely(
5077 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5078 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
5079 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW,
5080 ip->i_mount);
5081 return XFS_ERROR(EFSCORRUPTED);
5082 }
5083 mp = ip->i_mount;
5084 if (XFS_FORCED_SHUTDOWN(mp))
5085 return XFS_ERROR(EIO);
5086
5087 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
5088 ASSERT(len > 0);
5089 ASSERT(nexts >= 0);
5090
5091 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5092 (error = xfs_iread_extents(tp, ip, whichfork)))
5093 return error;
5094 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5095 if (nextents == 0) {
5096 *done = 1;
5097 return 0;
5098 }
5099 XFS_STATS_INC(xs_blk_unmap);
5100 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
5101 start = bno;
5102 bno = start + len - 1;
5103 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
5104 &prev);
5105
5106 /*
5107 * Check to see if the given block number is past the end of the
5108 * file, back up to the last block if so...
5109 */
5110 if (eof) {
5111 ep = xfs_iext_get_ext(ifp, --lastx);
5112 xfs_bmbt_get_all(ep, &got);
5113 bno = got.br_startoff + got.br_blockcount - 1;
5114 }
5115 logflags = 0;
5116 if (ifp->if_flags & XFS_IFBROOT) {
5117 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
5118 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5119 cur->bc_private.b.firstblock = *firstblock;
5120 cur->bc_private.b.flist = flist;
5121 cur->bc_private.b.flags = 0;
5122 } else
5123 cur = NULL;
5124
5125 if (isrt) {
5126 /*
5127 * Synchronize by locking the bitmap inode.
5128 */
5129 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL);
5130 xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
5131 }
5132
5133 extno = 0;
5134 while (bno != (xfs_fileoff_t)-1 && bno >= start && lastx >= 0 &&
5135 (nexts == 0 || extno < nexts)) {
5136 /*
5137 * Is the found extent after a hole in which bno lives?
5138 * Just back up to the previous extent, if so.
5139 */
5140 if (got.br_startoff > bno) {
5141 if (--lastx < 0)
5142 break;
5143 ep = xfs_iext_get_ext(ifp, lastx);
5144 xfs_bmbt_get_all(ep, &got);
5145 }
5146 /*
5147 * Is the last block of this extent before the range
5148 * we're supposed to delete? If so, we're done.
5149 */
5150 bno = XFS_FILEOFF_MIN(bno,
5151 got.br_startoff + got.br_blockcount - 1);
5152 if (bno < start)
5153 break;
5154 /*
5155 * Then deal with the (possibly delayed) allocated space
5156 * we found.
5157 */
5158 ASSERT(ep != NULL);
5159 del = got;
5160 wasdel = isnullstartblock(del.br_startblock);
5161 if (got.br_startoff < start) {
5162 del.br_startoff = start;
5163 del.br_blockcount -= start - got.br_startoff;
5164 if (!wasdel)
5165 del.br_startblock += start - got.br_startoff;
5166 }
5167 if (del.br_startoff + del.br_blockcount > bno + 1)
5168 del.br_blockcount = bno + 1 - del.br_startoff;
5169 sum = del.br_startblock + del.br_blockcount;
5170 if (isrt &&
5171 (mod = do_mod(sum, mp->m_sb.sb_rextsize))) {
5172 /*
5173 * Realtime extent not lined up at the end.
5174 * The extent could have been split into written
5175 * and unwritten pieces, or we could just be
5176 * unmapping part of it. But we can't really
5177 * get rid of part of a realtime extent.
5178 */
5179 if (del.br_state == XFS_EXT_UNWRITTEN ||
5180 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
5181 /*
5182 * This piece is unwritten, or we're not
5183 * using unwritten extents. Skip over it.
5184 */
5185 ASSERT(bno >= mod);
5186 bno -= mod > del.br_blockcount ?
5187 del.br_blockcount : mod;
5188 if (bno < got.br_startoff) {
5189 if (--lastx >= 0)
5190 xfs_bmbt_get_all(xfs_iext_get_ext(
5191 ifp, lastx), &got);
5192 }
5193 continue;
5194 }
5195 /*
5196 * It's written, turn it unwritten.
5197 * This is better than zeroing it.
5198 */
5199 ASSERT(del.br_state == XFS_EXT_NORM);
5200 ASSERT(xfs_trans_get_block_res(tp) > 0);
5201 /*
5202 * If this spans a realtime extent boundary,
5203 * chop it back to the start of the one we end at.
5204 */
5205 if (del.br_blockcount > mod) {
5206 del.br_startoff += del.br_blockcount - mod;
5207 del.br_startblock += del.br_blockcount - mod;
5208 del.br_blockcount = mod;
5209 }
5210 del.br_state = XFS_EXT_UNWRITTEN;
5211 error = xfs_bmap_add_extent_unwritten_real(tp, ip,
5212 &lastx, &cur, &del, firstblock, flist,
5213 &logflags);
5214 if (error)
5215 goto error0;
5216 goto nodelete;
5217 }
5218 if (isrt && (mod = do_mod(del.br_startblock, mp->m_sb.sb_rextsize))) {
5219 /*
5220 * Realtime extent is lined up at the end but not
5221 * at the front. We'll get rid of full extents if
5222 * we can.
5223 */
5224 mod = mp->m_sb.sb_rextsize - mod;
5225 if (del.br_blockcount > mod) {
5226 del.br_blockcount -= mod;
5227 del.br_startoff += mod;
5228 del.br_startblock += mod;
5229 } else if ((del.br_startoff == start &&
5230 (del.br_state == XFS_EXT_UNWRITTEN ||
5231 xfs_trans_get_block_res(tp) == 0)) ||
5232 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
5233 /*
5234 * Can't make it unwritten. There isn't
5235 * a full extent here so just skip it.
5236 */
5237 ASSERT(bno >= del.br_blockcount);
5238 bno -= del.br_blockcount;
5239 if (got.br_startoff > bno) {
5240 if (--lastx >= 0) {
5241 ep = xfs_iext_get_ext(ifp,
5242 lastx);
5243 xfs_bmbt_get_all(ep, &got);
5244 }
5245 }
5246 continue;
5247 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
5248 /*
5249 * This one is already unwritten.
5250 * It must have a written left neighbor.
5251 * Unwrite the killed part of that one and
5252 * try again.
5253 */
5254 ASSERT(lastx > 0);
5255 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5256 lastx - 1), &prev);
5257 ASSERT(prev.br_state == XFS_EXT_NORM);
5258 ASSERT(!isnullstartblock(prev.br_startblock));
5259 ASSERT(del.br_startblock ==
5260 prev.br_startblock + prev.br_blockcount);
5261 if (prev.br_startoff < start) {
5262 mod = start - prev.br_startoff;
5263 prev.br_blockcount -= mod;
5264 prev.br_startblock += mod;
5265 prev.br_startoff = start;
5266 }
5267 prev.br_state = XFS_EXT_UNWRITTEN;
5268 lastx--;
5269 error = xfs_bmap_add_extent_unwritten_real(tp,
5270 ip, &lastx, &cur, &prev,
5271 firstblock, flist, &logflags);
5272 if (error)
5273 goto error0;
5274 goto nodelete;
5275 } else {
5276 ASSERT(del.br_state == XFS_EXT_NORM);
5277 del.br_state = XFS_EXT_UNWRITTEN;
5278 error = xfs_bmap_add_extent_unwritten_real(tp,
5279 ip, &lastx, &cur, &del,
5280 firstblock, flist, &logflags);
5281 if (error)
5282 goto error0;
5283 goto nodelete;
5284 }
5285 }
5286 if (wasdel) {
5287 ASSERT(startblockval(del.br_startblock) > 0);
5288 /* Update realtime/data freespace, unreserve quota */
5289 if (isrt) {
5290 xfs_filblks_t rtexts;
5291
5292 rtexts = XFS_FSB_TO_B(mp, del.br_blockcount);
5293 do_div(rtexts, mp->m_sb.sb_rextsize);
5294 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
5295 (int64_t)rtexts, 0);
5296 (void)xfs_trans_reserve_quota_nblks(NULL,
5297 ip, -((long)del.br_blockcount), 0,
5298 XFS_QMOPT_RES_RTBLKS);
5299 } else {
5300 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
5301 (int64_t)del.br_blockcount, 0);
5302 (void)xfs_trans_reserve_quota_nblks(NULL,
5303 ip, -((long)del.br_blockcount), 0,
5304 XFS_QMOPT_RES_REGBLKS);
5305 }
5306 ip->i_delayed_blks -= del.br_blockcount;
5307 if (cur)
5308 cur->bc_private.b.flags |=
5309 XFS_BTCUR_BPRV_WASDEL;
5310 } else if (cur)
5311 cur->bc_private.b.flags &= ~XFS_BTCUR_BPRV_WASDEL;
5312 /*
5313 * If it's the case where the directory code is running
5314 * with no block reservation, and the deleted block is in
5315 * the middle of its extent, and the resulting insert
5316 * of an extent would cause transformation to btree format,
5317 * then reject it. The calling code will then swap
5318 * blocks around instead.
5319 * We have to do this now, rather than waiting for the
5320 * conversion to btree format, since the transaction
5321 * will be dirty.
5322 */
5323 if (!wasdel && xfs_trans_get_block_res(tp) == 0 &&
5324 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
5325 XFS_IFORK_NEXTENTS(ip, whichfork) >= /* Note the >= */
5326 XFS_IFORK_MAXEXT(ip, whichfork) &&
5327 del.br_startoff > got.br_startoff &&
5328 del.br_startoff + del.br_blockcount <
5329 got.br_startoff + got.br_blockcount) {
5330 error = XFS_ERROR(ENOSPC);
5331 goto error0;
5332 }
5333 error = xfs_bmap_del_extent(ip, tp, &lastx, flist, cur, &del,
5334 &tmp_logflags, whichfork);
5335 logflags |= tmp_logflags;
5336 if (error)
5337 goto error0;
5338 bno = del.br_startoff - 1;
5339 nodelete:
5340 /*
5341 * If not done go on to the next (previous) record.
5342 */
5343 if (bno != (xfs_fileoff_t)-1 && bno >= start) {
5344 if (lastx >= 0) {
5345 ep = xfs_iext_get_ext(ifp, lastx);
5346 if (xfs_bmbt_get_startoff(ep) > bno) {
5347 if (--lastx >= 0)
5348 ep = xfs_iext_get_ext(ifp,
5349 lastx);
5350 }
5351 xfs_bmbt_get_all(ep, &got);
5352 }
5353 extno++;
5354 }
5355 }
5356 *done = bno == (xfs_fileoff_t)-1 || bno < start || lastx < 0;
5357
5358 /*
5359 * Convert to a btree if necessary.
5360 */
5361 if (xfs_bmap_needs_btree(ip, whichfork)) {
5362 ASSERT(cur == NULL);
5363 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist,
5364 &cur, 0, &tmp_logflags, whichfork);
5365 logflags |= tmp_logflags;
5366 if (error)
5367 goto error0;
5368 }
5369 /*
5370 * transform from btree to extents, give it cur
5371 */
5372 else if (xfs_bmap_wants_extents(ip, whichfork)) {
5373 ASSERT(cur != NULL);
5374 error = xfs_bmap_btree_to_extents(tp, ip, cur, &tmp_logflags,
5375 whichfork);
5376 logflags |= tmp_logflags;
5377 if (error)
5378 goto error0;
5379 }
5380 /*
5381 * transform from extents to local?
5382 */
5383 error = 0;
5384 error0:
5385 /*
5386 * Log everything. Do this after conversion, there's no point in
5387 * logging the extent records if we've converted to btree format.
5388 */
5389 if ((logflags & xfs_ilog_fext(whichfork)) &&
5390 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
5391 logflags &= ~xfs_ilog_fext(whichfork);
5392 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
5393 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
5394 logflags &= ~xfs_ilog_fbroot(whichfork);
5395 /*
5396 * Log inode even in the error case, if the transaction
5397 * is dirty we'll need to shut down the filesystem.
5398 */
5399 if (logflags)
5400 xfs_trans_log_inode(tp, ip, logflags);
5401 if (cur) {
5402 if (!error) {
5403 *firstblock = cur->bc_private.b.firstblock;
5404 cur->bc_private.b.allocated = 0;
5405 }
5406 xfs_btree_del_cursor(cur,
5407 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5408 }
5409 return error;
5410 }
5411
5412 /*
5413 * Shift extent records to the left to cover a hole.
5414 *
5415 * The maximum number of extents to be shifted in a single operation
5416 * is @num_exts, and @current_ext keeps track of the current extent
5417 * index we have shifted. @offset_shift_fsb is the length by which each
5418 * extent is shifted. If there is no hole to shift the extents
5419 * into, this will be considered invalid operation and we abort immediately.
5420 */
5421 int
5422 xfs_bmap_shift_extents(
5423 struct xfs_trans *tp,
5424 struct xfs_inode *ip,
5425 int *done,
5426 xfs_fileoff_t start_fsb,
5427 xfs_fileoff_t offset_shift_fsb,
5428 xfs_extnum_t *current_ext,
5429 xfs_fsblock_t *firstblock,
5430 struct xfs_bmap_free *flist,
5431 int num_exts)
5432 {
5433 struct xfs_btree_cur *cur;
5434 struct xfs_bmbt_rec_host *gotp;
5435 struct xfs_bmbt_irec got;
5436 struct xfs_bmbt_irec left;
5437 struct xfs_mount *mp = ip->i_mount;
5438 struct xfs_ifork *ifp;
5439 xfs_extnum_t nexts = 0;
5440 xfs_fileoff_t startoff;
5441 int error = 0;
5442 int i;
5443 int whichfork = XFS_DATA_FORK;
5444 int logflags;
5445 xfs_filblks_t blockcount = 0;
5446 int total_extents;
5447
5448 if (unlikely(XFS_TEST_ERROR(
5449 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5450 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
5451 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
5452 XFS_ERROR_REPORT("xfs_bmap_shift_extents",
5453 XFS_ERRLEVEL_LOW, mp);
5454 return XFS_ERROR(EFSCORRUPTED);
5455 }
5456
5457 if (XFS_FORCED_SHUTDOWN(mp))
5458 return XFS_ERROR(EIO);
5459
5460 ASSERT(current_ext != NULL);
5461
5462 ifp = XFS_IFORK_PTR(ip, whichfork);
5463 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5464 /* Read in all the extents */
5465 error = xfs_iread_extents(tp, ip, whichfork);
5466 if (error)
5467 return error;
5468 }
5469
5470 /*
5471 * If *current_ext is 0, we would need to lookup the extent
5472 * from where we would start shifting and store it in gotp.
5473 */
5474 if (!*current_ext) {
5475 gotp = xfs_iext_bno_to_ext(ifp, start_fsb, current_ext);
5476 /*
5477 * gotp can be null in 2 cases: 1) if there are no extents
5478 * or 2) start_fsb lies in a hole beyond which there are
5479 * no extents. Either way, we are done.
5480 */
5481 if (!gotp) {
5482 *done = 1;
5483 return 0;
5484 }
5485 }
5486
5487 /* We are going to change core inode */
5488 logflags = XFS_ILOG_CORE;
5489 if (ifp->if_flags & XFS_IFBROOT) {
5490 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5491 cur->bc_private.b.firstblock = *firstblock;
5492 cur->bc_private.b.flist = flist;
5493 cur->bc_private.b.flags = 0;
5494 } else {
5495 cur = NULL;
5496 logflags |= XFS_ILOG_DEXT;
5497 }
5498
5499 /*
5500 * There may be delalloc extents in the data fork before the range we
5501 * are collapsing out, so we cannot
5502 * use the count of real extents here. Instead we have to calculate it
5503 * from the incore fork.
5504 */
5505 total_extents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
5506 while (nexts++ < num_exts && *current_ext < total_extents) {
5507
5508 gotp = xfs_iext_get_ext(ifp, *current_ext);
5509 xfs_bmbt_get_all(gotp, &got);
5510 startoff = got.br_startoff - offset_shift_fsb;
5511
5512 /*
5513 * Before shifting extent into hole, make sure that the hole
5514 * is large enough to accomodate the shift.
5515 */
5516 if (*current_ext) {
5517 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5518 *current_ext - 1), &left);
5519
5520 if (startoff < left.br_startoff + left.br_blockcount)
5521 error = XFS_ERROR(EINVAL);
5522 } else if (offset_shift_fsb > got.br_startoff) {
5523 /*
5524 * When first extent is shifted, offset_shift_fsb
5525 * should be less than the stating offset of
5526 * the first extent.
5527 */
5528 error = XFS_ERROR(EINVAL);
5529 }
5530
5531 if (error)
5532 goto del_cursor;
5533
5534 if (cur) {
5535 error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
5536 got.br_startblock,
5537 got.br_blockcount,
5538 &i);
5539 if (error)
5540 goto del_cursor;
5541 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5542 }
5543
5544 /* Check if we can merge 2 adjacent extents */
5545 if (*current_ext &&
5546 left.br_startoff + left.br_blockcount == startoff &&
5547 left.br_startblock + left.br_blockcount ==
5548 got.br_startblock &&
5549 left.br_state == got.br_state &&
5550 left.br_blockcount + got.br_blockcount <= MAXEXTLEN) {
5551 blockcount = left.br_blockcount +
5552 got.br_blockcount;
5553 xfs_iext_remove(ip, *current_ext, 1, 0);
5554 if (cur) {
5555 error = xfs_btree_delete(cur, &i);
5556 if (error)
5557 goto del_cursor;
5558 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5559 }
5560 XFS_IFORK_NEXT_SET(ip, whichfork,
5561 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
5562 gotp = xfs_iext_get_ext(ifp, --*current_ext);
5563 xfs_bmbt_get_all(gotp, &got);
5564
5565 /* Make cursor point to the extent we will update */
5566 if (cur) {
5567 error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
5568 got.br_startblock,
5569 got.br_blockcount,
5570 &i);
5571 if (error)
5572 goto del_cursor;
5573 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5574 }
5575
5576 xfs_bmbt_set_blockcount(gotp, blockcount);
5577 got.br_blockcount = blockcount;
5578 } else {
5579 /* We have to update the startoff */
5580 xfs_bmbt_set_startoff(gotp, startoff);
5581 got.br_startoff = startoff;
5582 }
5583
5584 if (cur) {
5585 error = xfs_bmbt_update(cur, got.br_startoff,
5586 got.br_startblock,
5587 got.br_blockcount,
5588 got.br_state);
5589 if (error)
5590 goto del_cursor;
5591 }
5592
5593 (*current_ext)++;
5594 total_extents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
5595 }
5596
5597 /* Check if we are done */
5598 if (*current_ext == total_extents)
5599 *done = 1;
5600
5601 del_cursor:
5602 if (cur)
5603 xfs_btree_del_cursor(cur,
5604 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5605
5606 xfs_trans_log_inode(tp, ip, logflags);
5607 return error;
5608 }
This page took 0.707284 seconds and 5 git commands to generate.