Merge branch 'xfs-generic-sb-counters' into for-next
[deliverable/linux.git] / fs / xfs / libxfs / 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_sb.h"
26 #include "xfs_mount.h"
27 #include "xfs_da_format.h"
28 #include "xfs_da_btree.h"
29 #include "xfs_dir2.h"
30 #include "xfs_inode.h"
31 #include "xfs_btree.h"
32 #include "xfs_trans.h"
33 #include "xfs_inode_item.h"
34 #include "xfs_extfree_item.h"
35 #include "xfs_alloc.h"
36 #include "xfs_bmap.h"
37 #include "xfs_bmap_util.h"
38 #include "xfs_bmap_btree.h"
39 #include "xfs_rtalloc.h"
40 #include "xfs_error.h"
41 #include "xfs_quota.h"
42 #include "xfs_trans_space.h"
43 #include "xfs_buf_item.h"
44 #include "xfs_trace.h"
45 #include "xfs_symlink.h"
46 #include "xfs_attr_leaf.h"
47 #include "xfs_filestream.h"
48
49
50 kmem_zone_t *xfs_bmap_free_item_zone;
51
52 /*
53 * Miscellaneous helper functions
54 */
55
56 /*
57 * Compute and fill in the value of the maximum depth of a bmap btree
58 * in this filesystem. Done once, during mount.
59 */
60 void
61 xfs_bmap_compute_maxlevels(
62 xfs_mount_t *mp, /* file system mount structure */
63 int whichfork) /* data or attr fork */
64 {
65 int level; /* btree level */
66 uint maxblocks; /* max blocks at this level */
67 uint maxleafents; /* max leaf entries possible */
68 int maxrootrecs; /* max records in root block */
69 int minleafrecs; /* min records in leaf block */
70 int minnoderecs; /* min records in node block */
71 int sz; /* root block size */
72
73 /*
74 * The maximum number of extents in a file, hence the maximum
75 * number of leaf entries, is controlled by the type of di_nextents
76 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
77 * (a signed 16-bit number, xfs_aextnum_t).
78 *
79 * Note that we can no longer assume that if we are in ATTR1 that
80 * the fork offset of all the inodes will be
81 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
82 * with ATTR2 and then mounted back with ATTR1, keeping the
83 * di_forkoff's fixed but probably at various positions. Therefore,
84 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
85 * of a minimum size available.
86 */
87 if (whichfork == XFS_DATA_FORK) {
88 maxleafents = MAXEXTNUM;
89 sz = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
90 } else {
91 maxleafents = MAXAEXTNUM;
92 sz = XFS_BMDR_SPACE_CALC(MINABTPTRS);
93 }
94 maxrootrecs = xfs_bmdr_maxrecs(sz, 0);
95 minleafrecs = mp->m_bmap_dmnr[0];
96 minnoderecs = mp->m_bmap_dmnr[1];
97 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
98 for (level = 1; maxblocks > 1; level++) {
99 if (maxblocks <= maxrootrecs)
100 maxblocks = 1;
101 else
102 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
103 }
104 mp->m_bm_maxlevels[whichfork] = level;
105 }
106
107 STATIC int /* error */
108 xfs_bmbt_lookup_eq(
109 struct xfs_btree_cur *cur,
110 xfs_fileoff_t off,
111 xfs_fsblock_t bno,
112 xfs_filblks_t len,
113 int *stat) /* success/failure */
114 {
115 cur->bc_rec.b.br_startoff = off;
116 cur->bc_rec.b.br_startblock = bno;
117 cur->bc_rec.b.br_blockcount = len;
118 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
119 }
120
121 STATIC int /* error */
122 xfs_bmbt_lookup_ge(
123 struct xfs_btree_cur *cur,
124 xfs_fileoff_t off,
125 xfs_fsblock_t bno,
126 xfs_filblks_t len,
127 int *stat) /* success/failure */
128 {
129 cur->bc_rec.b.br_startoff = off;
130 cur->bc_rec.b.br_startblock = bno;
131 cur->bc_rec.b.br_blockcount = len;
132 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
133 }
134
135 /*
136 * Check if the inode needs to be converted to btree format.
137 */
138 static inline bool xfs_bmap_needs_btree(struct xfs_inode *ip, int whichfork)
139 {
140 return XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
141 XFS_IFORK_NEXTENTS(ip, whichfork) >
142 XFS_IFORK_MAXEXT(ip, whichfork);
143 }
144
145 /*
146 * Check if the inode should be converted to extent format.
147 */
148 static inline bool xfs_bmap_wants_extents(struct xfs_inode *ip, int whichfork)
149 {
150 return XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
151 XFS_IFORK_NEXTENTS(ip, whichfork) <=
152 XFS_IFORK_MAXEXT(ip, whichfork);
153 }
154
155 /*
156 * Update the record referred to by cur to the value given
157 * by [off, bno, len, state].
158 * This either works (return 0) or gets an EFSCORRUPTED error.
159 */
160 STATIC int
161 xfs_bmbt_update(
162 struct xfs_btree_cur *cur,
163 xfs_fileoff_t off,
164 xfs_fsblock_t bno,
165 xfs_filblks_t len,
166 xfs_exntst_t state)
167 {
168 union xfs_btree_rec rec;
169
170 xfs_bmbt_disk_set_allf(&rec.bmbt, off, bno, len, state);
171 return xfs_btree_update(cur, &rec);
172 }
173
174 /*
175 * Compute the worst-case number of indirect blocks that will be used
176 * for ip's delayed extent of length "len".
177 */
178 STATIC xfs_filblks_t
179 xfs_bmap_worst_indlen(
180 xfs_inode_t *ip, /* incore inode pointer */
181 xfs_filblks_t len) /* delayed extent length */
182 {
183 int level; /* btree level number */
184 int maxrecs; /* maximum record count at this level */
185 xfs_mount_t *mp; /* mount structure */
186 xfs_filblks_t rval; /* return value */
187
188 mp = ip->i_mount;
189 maxrecs = mp->m_bmap_dmxr[0];
190 for (level = 0, rval = 0;
191 level < XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK);
192 level++) {
193 len += maxrecs - 1;
194 do_div(len, maxrecs);
195 rval += len;
196 if (len == 1)
197 return rval + XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) -
198 level - 1;
199 if (level == 0)
200 maxrecs = mp->m_bmap_dmxr[1];
201 }
202 return rval;
203 }
204
205 /*
206 * Calculate the default attribute fork offset for newly created inodes.
207 */
208 uint
209 xfs_default_attroffset(
210 struct xfs_inode *ip)
211 {
212 struct xfs_mount *mp = ip->i_mount;
213 uint offset;
214
215 if (mp->m_sb.sb_inodesize == 256) {
216 offset = XFS_LITINO(mp, ip->i_d.di_version) -
217 XFS_BMDR_SPACE_CALC(MINABTPTRS);
218 } else {
219 offset = XFS_BMDR_SPACE_CALC(6 * MINABTPTRS);
220 }
221
222 ASSERT(offset < XFS_LITINO(mp, ip->i_d.di_version));
223 return offset;
224 }
225
226 /*
227 * Helper routine to reset inode di_forkoff field when switching
228 * attribute fork from local to extent format - we reset it where
229 * possible to make space available for inline data fork extents.
230 */
231 STATIC void
232 xfs_bmap_forkoff_reset(
233 xfs_inode_t *ip,
234 int whichfork)
235 {
236 if (whichfork == XFS_ATTR_FORK &&
237 ip->i_d.di_format != XFS_DINODE_FMT_DEV &&
238 ip->i_d.di_format != XFS_DINODE_FMT_UUID &&
239 ip->i_d.di_format != XFS_DINODE_FMT_BTREE) {
240 uint dfl_forkoff = xfs_default_attroffset(ip) >> 3;
241
242 if (dfl_forkoff > ip->i_d.di_forkoff)
243 ip->i_d.di_forkoff = dfl_forkoff;
244 }
245 }
246
247 /*
248 * Debug/sanity checking code
249 */
250
251 STATIC int
252 xfs_bmap_sanity_check(
253 struct xfs_mount *mp,
254 struct xfs_buf *bp,
255 int level)
256 {
257 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
258
259 if (block->bb_magic != cpu_to_be32(XFS_BMAP_CRC_MAGIC) &&
260 block->bb_magic != cpu_to_be32(XFS_BMAP_MAGIC))
261 return 0;
262
263 if (be16_to_cpu(block->bb_level) != level ||
264 be16_to_cpu(block->bb_numrecs) == 0 ||
265 be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
266 return 0;
267
268 return 1;
269 }
270
271 #ifdef DEBUG
272 STATIC struct xfs_buf *
273 xfs_bmap_get_bp(
274 struct xfs_btree_cur *cur,
275 xfs_fsblock_t bno)
276 {
277 struct xfs_log_item_desc *lidp;
278 int i;
279
280 if (!cur)
281 return NULL;
282
283 for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) {
284 if (!cur->bc_bufs[i])
285 break;
286 if (XFS_BUF_ADDR(cur->bc_bufs[i]) == bno)
287 return cur->bc_bufs[i];
288 }
289
290 /* Chase down all the log items to see if the bp is there */
291 list_for_each_entry(lidp, &cur->bc_tp->t_items, lid_trans) {
292 struct xfs_buf_log_item *bip;
293 bip = (struct xfs_buf_log_item *)lidp->lid_item;
294 if (bip->bli_item.li_type == XFS_LI_BUF &&
295 XFS_BUF_ADDR(bip->bli_buf) == bno)
296 return bip->bli_buf;
297 }
298
299 return NULL;
300 }
301
302 STATIC void
303 xfs_check_block(
304 struct xfs_btree_block *block,
305 xfs_mount_t *mp,
306 int root,
307 short sz)
308 {
309 int i, j, dmxr;
310 __be64 *pp, *thispa; /* pointer to block address */
311 xfs_bmbt_key_t *prevp, *keyp;
312
313 ASSERT(be16_to_cpu(block->bb_level) > 0);
314
315 prevp = NULL;
316 for( i = 1; i <= xfs_btree_get_numrecs(block); i++) {
317 dmxr = mp->m_bmap_dmxr[0];
318 keyp = XFS_BMBT_KEY_ADDR(mp, block, i);
319
320 if (prevp) {
321 ASSERT(be64_to_cpu(prevp->br_startoff) <
322 be64_to_cpu(keyp->br_startoff));
323 }
324 prevp = keyp;
325
326 /*
327 * Compare the block numbers to see if there are dups.
328 */
329 if (root)
330 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, i, sz);
331 else
332 pp = XFS_BMBT_PTR_ADDR(mp, block, i, dmxr);
333
334 for (j = i+1; j <= be16_to_cpu(block->bb_numrecs); j++) {
335 if (root)
336 thispa = XFS_BMAP_BROOT_PTR_ADDR(mp, block, j, sz);
337 else
338 thispa = XFS_BMBT_PTR_ADDR(mp, block, j, dmxr);
339 if (*thispa == *pp) {
340 xfs_warn(mp, "%s: thispa(%d) == pp(%d) %Ld",
341 __func__, j, i,
342 (unsigned long long)be64_to_cpu(*thispa));
343 panic("%s: ptrs are equal in node\n",
344 __func__);
345 }
346 }
347 }
348 }
349
350 /*
351 * Check that the extents for the inode ip are in the right order in all
352 * btree leaves.
353 */
354
355 STATIC void
356 xfs_bmap_check_leaf_extents(
357 xfs_btree_cur_t *cur, /* btree cursor or null */
358 xfs_inode_t *ip, /* incore inode pointer */
359 int whichfork) /* data or attr fork */
360 {
361 struct xfs_btree_block *block; /* current btree block */
362 xfs_fsblock_t bno; /* block # of "block" */
363 xfs_buf_t *bp; /* buffer for "block" */
364 int error; /* error return value */
365 xfs_extnum_t i=0, j; /* index into the extents list */
366 xfs_ifork_t *ifp; /* fork structure */
367 int level; /* btree level, for checking */
368 xfs_mount_t *mp; /* file system mount structure */
369 __be64 *pp; /* pointer to block address */
370 xfs_bmbt_rec_t *ep; /* pointer to current extent */
371 xfs_bmbt_rec_t last = {0, 0}; /* last extent in prev block */
372 xfs_bmbt_rec_t *nextp; /* pointer to next extent */
373 int bp_release = 0;
374
375 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) {
376 return;
377 }
378
379 bno = NULLFSBLOCK;
380 mp = ip->i_mount;
381 ifp = XFS_IFORK_PTR(ip, whichfork);
382 block = ifp->if_broot;
383 /*
384 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
385 */
386 level = be16_to_cpu(block->bb_level);
387 ASSERT(level > 0);
388 xfs_check_block(block, mp, 1, ifp->if_broot_bytes);
389 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
390 bno = be64_to_cpu(*pp);
391
392 ASSERT(bno != NULLFSBLOCK);
393 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
394 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
395
396 /*
397 * Go down the tree until leaf level is reached, following the first
398 * pointer (leftmost) at each level.
399 */
400 while (level-- > 0) {
401 /* See if buf is in cur first */
402 bp_release = 0;
403 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
404 if (!bp) {
405 bp_release = 1;
406 error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
407 XFS_BMAP_BTREE_REF,
408 &xfs_bmbt_buf_ops);
409 if (error)
410 goto error_norelse;
411 }
412 block = XFS_BUF_TO_BLOCK(bp);
413 XFS_WANT_CORRUPTED_GOTO(mp,
414 xfs_bmap_sanity_check(mp, bp, level),
415 error0);
416 if (level == 0)
417 break;
418
419 /*
420 * Check this block for basic sanity (increasing keys and
421 * no duplicate blocks).
422 */
423
424 xfs_check_block(block, mp, 0, 0);
425 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
426 bno = be64_to_cpu(*pp);
427 XFS_WANT_CORRUPTED_GOTO(mp,
428 XFS_FSB_SANITY_CHECK(mp, bno), error0);
429 if (bp_release) {
430 bp_release = 0;
431 xfs_trans_brelse(NULL, bp);
432 }
433 }
434
435 /*
436 * Here with bp and block set to the leftmost leaf node in the tree.
437 */
438 i = 0;
439
440 /*
441 * Loop over all leaf nodes checking that all extents are in the right order.
442 */
443 for (;;) {
444 xfs_fsblock_t nextbno;
445 xfs_extnum_t num_recs;
446
447
448 num_recs = xfs_btree_get_numrecs(block);
449
450 /*
451 * Read-ahead the next leaf block, if any.
452 */
453
454 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
455
456 /*
457 * Check all the extents to make sure they are OK.
458 * If we had a previous block, the last entry should
459 * conform with the first entry in this one.
460 */
461
462 ep = XFS_BMBT_REC_ADDR(mp, block, 1);
463 if (i) {
464 ASSERT(xfs_bmbt_disk_get_startoff(&last) +
465 xfs_bmbt_disk_get_blockcount(&last) <=
466 xfs_bmbt_disk_get_startoff(ep));
467 }
468 for (j = 1; j < num_recs; j++) {
469 nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1);
470 ASSERT(xfs_bmbt_disk_get_startoff(ep) +
471 xfs_bmbt_disk_get_blockcount(ep) <=
472 xfs_bmbt_disk_get_startoff(nextp));
473 ep = nextp;
474 }
475
476 last = *ep;
477 i += num_recs;
478 if (bp_release) {
479 bp_release = 0;
480 xfs_trans_brelse(NULL, bp);
481 }
482 bno = nextbno;
483 /*
484 * If we've reached the end, stop.
485 */
486 if (bno == NULLFSBLOCK)
487 break;
488
489 bp_release = 0;
490 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
491 if (!bp) {
492 bp_release = 1;
493 error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
494 XFS_BMAP_BTREE_REF,
495 &xfs_bmbt_buf_ops);
496 if (error)
497 goto error_norelse;
498 }
499 block = XFS_BUF_TO_BLOCK(bp);
500 }
501 if (bp_release) {
502 bp_release = 0;
503 xfs_trans_brelse(NULL, bp);
504 }
505 return;
506
507 error0:
508 xfs_warn(mp, "%s: at error0", __func__);
509 if (bp_release)
510 xfs_trans_brelse(NULL, bp);
511 error_norelse:
512 xfs_warn(mp, "%s: BAD after btree leaves for %d extents",
513 __func__, i);
514 panic("%s: CORRUPTED BTREE OR SOMETHING", __func__);
515 return;
516 }
517
518 /*
519 * Add bmap trace insert entries for all the contents of the extent records.
520 */
521 void
522 xfs_bmap_trace_exlist(
523 xfs_inode_t *ip, /* incore inode pointer */
524 xfs_extnum_t cnt, /* count of entries in the list */
525 int whichfork, /* data or attr fork */
526 unsigned long caller_ip)
527 {
528 xfs_extnum_t idx; /* extent record index */
529 xfs_ifork_t *ifp; /* inode fork pointer */
530 int state = 0;
531
532 if (whichfork == XFS_ATTR_FORK)
533 state |= BMAP_ATTRFORK;
534
535 ifp = XFS_IFORK_PTR(ip, whichfork);
536 ASSERT(cnt == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
537 for (idx = 0; idx < cnt; idx++)
538 trace_xfs_extlist(ip, idx, whichfork, caller_ip);
539 }
540
541 /*
542 * Validate that the bmbt_irecs being returned from bmapi are valid
543 * given the caller's original parameters. Specifically check the
544 * ranges of the returned irecs to ensure that they only extend beyond
545 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
546 */
547 STATIC void
548 xfs_bmap_validate_ret(
549 xfs_fileoff_t bno,
550 xfs_filblks_t len,
551 int flags,
552 xfs_bmbt_irec_t *mval,
553 int nmap,
554 int ret_nmap)
555 {
556 int i; /* index to map values */
557
558 ASSERT(ret_nmap <= nmap);
559
560 for (i = 0; i < ret_nmap; i++) {
561 ASSERT(mval[i].br_blockcount > 0);
562 if (!(flags & XFS_BMAPI_ENTIRE)) {
563 ASSERT(mval[i].br_startoff >= bno);
564 ASSERT(mval[i].br_blockcount <= len);
565 ASSERT(mval[i].br_startoff + mval[i].br_blockcount <=
566 bno + len);
567 } else {
568 ASSERT(mval[i].br_startoff < bno + len);
569 ASSERT(mval[i].br_startoff + mval[i].br_blockcount >
570 bno);
571 }
572 ASSERT(i == 0 ||
573 mval[i - 1].br_startoff + mval[i - 1].br_blockcount ==
574 mval[i].br_startoff);
575 ASSERT(mval[i].br_startblock != DELAYSTARTBLOCK &&
576 mval[i].br_startblock != HOLESTARTBLOCK);
577 ASSERT(mval[i].br_state == XFS_EXT_NORM ||
578 mval[i].br_state == XFS_EXT_UNWRITTEN);
579 }
580 }
581
582 #else
583 #define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
584 #define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
585 #endif /* DEBUG */
586
587 /*
588 * bmap free list manipulation functions
589 */
590
591 /*
592 * Add the extent to the list of extents to be free at transaction end.
593 * The list is maintained sorted (by block number).
594 */
595 void
596 xfs_bmap_add_free(
597 xfs_fsblock_t bno, /* fs block number of extent */
598 xfs_filblks_t len, /* length of extent */
599 xfs_bmap_free_t *flist, /* list of extents */
600 xfs_mount_t *mp) /* mount point structure */
601 {
602 xfs_bmap_free_item_t *cur; /* current (next) element */
603 xfs_bmap_free_item_t *new; /* new element */
604 xfs_bmap_free_item_t *prev; /* previous element */
605 #ifdef DEBUG
606 xfs_agnumber_t agno;
607 xfs_agblock_t agbno;
608
609 ASSERT(bno != NULLFSBLOCK);
610 ASSERT(len > 0);
611 ASSERT(len <= MAXEXTLEN);
612 ASSERT(!isnullstartblock(bno));
613 agno = XFS_FSB_TO_AGNO(mp, bno);
614 agbno = XFS_FSB_TO_AGBNO(mp, bno);
615 ASSERT(agno < mp->m_sb.sb_agcount);
616 ASSERT(agbno < mp->m_sb.sb_agblocks);
617 ASSERT(len < mp->m_sb.sb_agblocks);
618 ASSERT(agbno + len <= mp->m_sb.sb_agblocks);
619 #endif
620 ASSERT(xfs_bmap_free_item_zone != NULL);
621 new = kmem_zone_alloc(xfs_bmap_free_item_zone, KM_SLEEP);
622 new->xbfi_startblock = bno;
623 new->xbfi_blockcount = (xfs_extlen_t)len;
624 for (prev = NULL, cur = flist->xbf_first;
625 cur != NULL;
626 prev = cur, cur = cur->xbfi_next) {
627 if (cur->xbfi_startblock >= bno)
628 break;
629 }
630 if (prev)
631 prev->xbfi_next = new;
632 else
633 flist->xbf_first = new;
634 new->xbfi_next = cur;
635 flist->xbf_count++;
636 }
637
638 /*
639 * Remove the entry "free" from the free item list. Prev points to the
640 * previous entry, unless "free" is the head of the list.
641 */
642 void
643 xfs_bmap_del_free(
644 xfs_bmap_free_t *flist, /* free item list header */
645 xfs_bmap_free_item_t *prev, /* previous item on list, if any */
646 xfs_bmap_free_item_t *free) /* list item to be freed */
647 {
648 if (prev)
649 prev->xbfi_next = free->xbfi_next;
650 else
651 flist->xbf_first = free->xbfi_next;
652 flist->xbf_count--;
653 kmem_zone_free(xfs_bmap_free_item_zone, free);
654 }
655
656 /*
657 * Free up any items left in the list.
658 */
659 void
660 xfs_bmap_cancel(
661 xfs_bmap_free_t *flist) /* list of bmap_free_items */
662 {
663 xfs_bmap_free_item_t *free; /* free list item */
664 xfs_bmap_free_item_t *next;
665
666 if (flist->xbf_count == 0)
667 return;
668 ASSERT(flist->xbf_first != NULL);
669 for (free = flist->xbf_first; free; free = next) {
670 next = free->xbfi_next;
671 xfs_bmap_del_free(flist, NULL, free);
672 }
673 ASSERT(flist->xbf_count == 0);
674 }
675
676 /*
677 * Inode fork format manipulation functions
678 */
679
680 /*
681 * Transform a btree format file with only one leaf node, where the
682 * extents list will fit in the inode, into an extents format file.
683 * Since the file extents are already in-core, all we have to do is
684 * give up the space for the btree root and pitch the leaf block.
685 */
686 STATIC int /* error */
687 xfs_bmap_btree_to_extents(
688 xfs_trans_t *tp, /* transaction pointer */
689 xfs_inode_t *ip, /* incore inode pointer */
690 xfs_btree_cur_t *cur, /* btree cursor */
691 int *logflagsp, /* inode logging flags */
692 int whichfork) /* data or attr fork */
693 {
694 /* REFERENCED */
695 struct xfs_btree_block *cblock;/* child btree block */
696 xfs_fsblock_t cbno; /* child block number */
697 xfs_buf_t *cbp; /* child block's buffer */
698 int error; /* error return value */
699 xfs_ifork_t *ifp; /* inode fork data */
700 xfs_mount_t *mp; /* mount point structure */
701 __be64 *pp; /* ptr to block address */
702 struct xfs_btree_block *rblock;/* root btree block */
703
704 mp = ip->i_mount;
705 ifp = XFS_IFORK_PTR(ip, whichfork);
706 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
707 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
708 rblock = ifp->if_broot;
709 ASSERT(be16_to_cpu(rblock->bb_level) == 1);
710 ASSERT(be16_to_cpu(rblock->bb_numrecs) == 1);
711 ASSERT(xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0) == 1);
712 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, ifp->if_broot_bytes);
713 cbno = be64_to_cpu(*pp);
714 *logflagsp = 0;
715 #ifdef DEBUG
716 if ((error = xfs_btree_check_lptr(cur, cbno, 1)))
717 return error;
718 #endif
719 error = xfs_btree_read_bufl(mp, tp, cbno, 0, &cbp, XFS_BMAP_BTREE_REF,
720 &xfs_bmbt_buf_ops);
721 if (error)
722 return error;
723 cblock = XFS_BUF_TO_BLOCK(cbp);
724 if ((error = xfs_btree_check_block(cur, cblock, 0, cbp)))
725 return error;
726 xfs_bmap_add_free(cbno, 1, cur->bc_private.b.flist, mp);
727 ip->i_d.di_nblocks--;
728 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
729 xfs_trans_binval(tp, cbp);
730 if (cur->bc_bufs[0] == cbp)
731 cur->bc_bufs[0] = NULL;
732 xfs_iroot_realloc(ip, -1, whichfork);
733 ASSERT(ifp->if_broot == NULL);
734 ASSERT((ifp->if_flags & XFS_IFBROOT) == 0);
735 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
736 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
737 return 0;
738 }
739
740 /*
741 * Convert an extents-format file into a btree-format file.
742 * The new file will have a root block (in the inode) and a single child block.
743 */
744 STATIC int /* error */
745 xfs_bmap_extents_to_btree(
746 xfs_trans_t *tp, /* transaction pointer */
747 xfs_inode_t *ip, /* incore inode pointer */
748 xfs_fsblock_t *firstblock, /* first-block-allocated */
749 xfs_bmap_free_t *flist, /* blocks freed in xaction */
750 xfs_btree_cur_t **curp, /* cursor returned to caller */
751 int wasdel, /* converting a delayed alloc */
752 int *logflagsp, /* inode logging flags */
753 int whichfork) /* data or attr fork */
754 {
755 struct xfs_btree_block *ablock; /* allocated (child) bt block */
756 xfs_buf_t *abp; /* buffer for ablock */
757 xfs_alloc_arg_t args; /* allocation arguments */
758 xfs_bmbt_rec_t *arp; /* child record pointer */
759 struct xfs_btree_block *block; /* btree root block */
760 xfs_btree_cur_t *cur; /* bmap btree cursor */
761 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
762 int error; /* error return value */
763 xfs_extnum_t i, cnt; /* extent record index */
764 xfs_ifork_t *ifp; /* inode fork pointer */
765 xfs_bmbt_key_t *kp; /* root block key pointer */
766 xfs_mount_t *mp; /* mount structure */
767 xfs_extnum_t nextents; /* number of file extents */
768 xfs_bmbt_ptr_t *pp; /* root block address pointer */
769
770 mp = ip->i_mount;
771 ifp = XFS_IFORK_PTR(ip, whichfork);
772 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS);
773
774 /*
775 * Make space in the inode incore.
776 */
777 xfs_iroot_realloc(ip, 1, whichfork);
778 ifp->if_flags |= XFS_IFBROOT;
779
780 /*
781 * Fill in the root.
782 */
783 block = ifp->if_broot;
784 if (xfs_sb_version_hascrc(&mp->m_sb))
785 xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL,
786 XFS_BMAP_CRC_MAGIC, 1, 1, ip->i_ino,
787 XFS_BTREE_LONG_PTRS | XFS_BTREE_CRC_BLOCKS);
788 else
789 xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL,
790 XFS_BMAP_MAGIC, 1, 1, ip->i_ino,
791 XFS_BTREE_LONG_PTRS);
792
793 /*
794 * Need a cursor. Can't allocate until bb_level is filled in.
795 */
796 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
797 cur->bc_private.b.firstblock = *firstblock;
798 cur->bc_private.b.flist = flist;
799 cur->bc_private.b.flags = wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
800 /*
801 * Convert to a btree with two levels, one record in root.
802 */
803 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_BTREE);
804 memset(&args, 0, sizeof(args));
805 args.tp = tp;
806 args.mp = mp;
807 args.firstblock = *firstblock;
808 if (*firstblock == NULLFSBLOCK) {
809 args.type = XFS_ALLOCTYPE_START_BNO;
810 args.fsbno = XFS_INO_TO_FSB(mp, ip->i_ino);
811 } else if (flist->xbf_low) {
812 args.type = XFS_ALLOCTYPE_START_BNO;
813 args.fsbno = *firstblock;
814 } else {
815 args.type = XFS_ALLOCTYPE_NEAR_BNO;
816 args.fsbno = *firstblock;
817 }
818 args.minlen = args.maxlen = args.prod = 1;
819 args.wasdel = wasdel;
820 *logflagsp = 0;
821 if ((error = xfs_alloc_vextent(&args))) {
822 xfs_iroot_realloc(ip, -1, whichfork);
823 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
824 return error;
825 }
826 /*
827 * Allocation can't fail, the space was reserved.
828 */
829 ASSERT(args.fsbno != NULLFSBLOCK);
830 ASSERT(*firstblock == NULLFSBLOCK ||
831 args.agno == XFS_FSB_TO_AGNO(mp, *firstblock) ||
832 (flist->xbf_low &&
833 args.agno > XFS_FSB_TO_AGNO(mp, *firstblock)));
834 *firstblock = cur->bc_private.b.firstblock = args.fsbno;
835 cur->bc_private.b.allocated++;
836 ip->i_d.di_nblocks++;
837 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, 1L);
838 abp = xfs_btree_get_bufl(mp, tp, args.fsbno, 0);
839 /*
840 * Fill in the child block.
841 */
842 abp->b_ops = &xfs_bmbt_buf_ops;
843 ablock = XFS_BUF_TO_BLOCK(abp);
844 if (xfs_sb_version_hascrc(&mp->m_sb))
845 xfs_btree_init_block_int(mp, ablock, abp->b_bn,
846 XFS_BMAP_CRC_MAGIC, 0, 0, ip->i_ino,
847 XFS_BTREE_LONG_PTRS | XFS_BTREE_CRC_BLOCKS);
848 else
849 xfs_btree_init_block_int(mp, ablock, abp->b_bn,
850 XFS_BMAP_MAGIC, 0, 0, ip->i_ino,
851 XFS_BTREE_LONG_PTRS);
852
853 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
854 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
855 for (cnt = i = 0; i < nextents; i++) {
856 ep = xfs_iext_get_ext(ifp, i);
857 if (!isnullstartblock(xfs_bmbt_get_startblock(ep))) {
858 arp->l0 = cpu_to_be64(ep->l0);
859 arp->l1 = cpu_to_be64(ep->l1);
860 arp++; cnt++;
861 }
862 }
863 ASSERT(cnt == XFS_IFORK_NEXTENTS(ip, whichfork));
864 xfs_btree_set_numrecs(ablock, cnt);
865
866 /*
867 * Fill in the root key and pointer.
868 */
869 kp = XFS_BMBT_KEY_ADDR(mp, block, 1);
870 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
871 kp->br_startoff = cpu_to_be64(xfs_bmbt_disk_get_startoff(arp));
872 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, xfs_bmbt_get_maxrecs(cur,
873 be16_to_cpu(block->bb_level)));
874 *pp = cpu_to_be64(args.fsbno);
875
876 /*
877 * Do all this logging at the end so that
878 * the root is at the right level.
879 */
880 xfs_btree_log_block(cur, abp, XFS_BB_ALL_BITS);
881 xfs_btree_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs));
882 ASSERT(*curp == NULL);
883 *curp = cur;
884 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fbroot(whichfork);
885 return 0;
886 }
887
888 /*
889 * Convert a local file to an extents file.
890 * This code is out of bounds for data forks of regular files,
891 * since the file data needs to get logged so things will stay consistent.
892 * (The bmap-level manipulations are ok, though).
893 */
894 void
895 xfs_bmap_local_to_extents_empty(
896 struct xfs_inode *ip,
897 int whichfork)
898 {
899 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
900
901 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
902 ASSERT(ifp->if_bytes == 0);
903 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) == 0);
904
905 xfs_bmap_forkoff_reset(ip, whichfork);
906 ifp->if_flags &= ~XFS_IFINLINE;
907 ifp->if_flags |= XFS_IFEXTENTS;
908 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
909 }
910
911
912 STATIC int /* error */
913 xfs_bmap_local_to_extents(
914 xfs_trans_t *tp, /* transaction pointer */
915 xfs_inode_t *ip, /* incore inode pointer */
916 xfs_fsblock_t *firstblock, /* first block allocated in xaction */
917 xfs_extlen_t total, /* total blocks needed by transaction */
918 int *logflagsp, /* inode logging flags */
919 int whichfork,
920 void (*init_fn)(struct xfs_trans *tp,
921 struct xfs_buf *bp,
922 struct xfs_inode *ip,
923 struct xfs_ifork *ifp))
924 {
925 int error = 0;
926 int flags; /* logging flags returned */
927 xfs_ifork_t *ifp; /* inode fork pointer */
928 xfs_alloc_arg_t args; /* allocation arguments */
929 xfs_buf_t *bp; /* buffer for extent block */
930 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
931
932 /*
933 * We don't want to deal with the case of keeping inode data inline yet.
934 * So sending the data fork of a regular inode is invalid.
935 */
936 ASSERT(!(S_ISREG(ip->i_d.di_mode) && whichfork == XFS_DATA_FORK));
937 ifp = XFS_IFORK_PTR(ip, whichfork);
938 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
939
940 if (!ifp->if_bytes) {
941 xfs_bmap_local_to_extents_empty(ip, whichfork);
942 flags = XFS_ILOG_CORE;
943 goto done;
944 }
945
946 flags = 0;
947 error = 0;
948 ASSERT((ifp->if_flags & (XFS_IFINLINE|XFS_IFEXTENTS|XFS_IFEXTIREC)) ==
949 XFS_IFINLINE);
950 memset(&args, 0, sizeof(args));
951 args.tp = tp;
952 args.mp = ip->i_mount;
953 args.firstblock = *firstblock;
954 /*
955 * Allocate a block. We know we need only one, since the
956 * file currently fits in an inode.
957 */
958 if (*firstblock == NULLFSBLOCK) {
959 args.fsbno = XFS_INO_TO_FSB(args.mp, ip->i_ino);
960 args.type = XFS_ALLOCTYPE_START_BNO;
961 } else {
962 args.fsbno = *firstblock;
963 args.type = XFS_ALLOCTYPE_NEAR_BNO;
964 }
965 args.total = total;
966 args.minlen = args.maxlen = args.prod = 1;
967 error = xfs_alloc_vextent(&args);
968 if (error)
969 goto done;
970
971 /* Can't fail, the space was reserved. */
972 ASSERT(args.fsbno != NULLFSBLOCK);
973 ASSERT(args.len == 1);
974 *firstblock = args.fsbno;
975 bp = xfs_btree_get_bufl(args.mp, tp, args.fsbno, 0);
976
977 /*
978 * Initialise the block and copy the data
979 *
980 * Note: init_fn must set the buffer log item type correctly!
981 */
982 init_fn(tp, bp, ip, ifp);
983
984 /* account for the change in fork size and log everything */
985 xfs_trans_log_buf(tp, bp, 0, ifp->if_bytes - 1);
986 xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
987 xfs_bmap_local_to_extents_empty(ip, whichfork);
988 flags |= XFS_ILOG_CORE;
989
990 xfs_iext_add(ifp, 0, 1);
991 ep = xfs_iext_get_ext(ifp, 0);
992 xfs_bmbt_set_allf(ep, 0, args.fsbno, 1, XFS_EXT_NORM);
993 trace_xfs_bmap_post_update(ip, 0,
994 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0,
995 _THIS_IP_);
996 XFS_IFORK_NEXT_SET(ip, whichfork, 1);
997 ip->i_d.di_nblocks = 1;
998 xfs_trans_mod_dquot_byino(tp, ip,
999 XFS_TRANS_DQ_BCOUNT, 1L);
1000 flags |= xfs_ilog_fext(whichfork);
1001
1002 done:
1003 *logflagsp = flags;
1004 return error;
1005 }
1006
1007 /*
1008 * Called from xfs_bmap_add_attrfork to handle btree format files.
1009 */
1010 STATIC int /* error */
1011 xfs_bmap_add_attrfork_btree(
1012 xfs_trans_t *tp, /* transaction pointer */
1013 xfs_inode_t *ip, /* incore inode pointer */
1014 xfs_fsblock_t *firstblock, /* first block allocated */
1015 xfs_bmap_free_t *flist, /* blocks to free at commit */
1016 int *flags) /* inode logging flags */
1017 {
1018 xfs_btree_cur_t *cur; /* btree cursor */
1019 int error; /* error return value */
1020 xfs_mount_t *mp; /* file system mount struct */
1021 int stat; /* newroot status */
1022
1023 mp = ip->i_mount;
1024 if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip))
1025 *flags |= XFS_ILOG_DBROOT;
1026 else {
1027 cur = xfs_bmbt_init_cursor(mp, tp, ip, XFS_DATA_FORK);
1028 cur->bc_private.b.flist = flist;
1029 cur->bc_private.b.firstblock = *firstblock;
1030 if ((error = xfs_bmbt_lookup_ge(cur, 0, 0, 0, &stat)))
1031 goto error0;
1032 /* must be at least one entry */
1033 XFS_WANT_CORRUPTED_GOTO(mp, stat == 1, error0);
1034 if ((error = xfs_btree_new_iroot(cur, flags, &stat)))
1035 goto error0;
1036 if (stat == 0) {
1037 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1038 return -ENOSPC;
1039 }
1040 *firstblock = cur->bc_private.b.firstblock;
1041 cur->bc_private.b.allocated = 0;
1042 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1043 }
1044 return 0;
1045 error0:
1046 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1047 return error;
1048 }
1049
1050 /*
1051 * Called from xfs_bmap_add_attrfork to handle extents format files.
1052 */
1053 STATIC int /* error */
1054 xfs_bmap_add_attrfork_extents(
1055 xfs_trans_t *tp, /* transaction pointer */
1056 xfs_inode_t *ip, /* incore inode pointer */
1057 xfs_fsblock_t *firstblock, /* first block allocated */
1058 xfs_bmap_free_t *flist, /* blocks to free at commit */
1059 int *flags) /* inode logging flags */
1060 {
1061 xfs_btree_cur_t *cur; /* bmap btree cursor */
1062 int error; /* error return value */
1063
1064 if (ip->i_d.di_nextents * sizeof(xfs_bmbt_rec_t) <= XFS_IFORK_DSIZE(ip))
1065 return 0;
1066 cur = NULL;
1067 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist, &cur, 0,
1068 flags, XFS_DATA_FORK);
1069 if (cur) {
1070 cur->bc_private.b.allocated = 0;
1071 xfs_btree_del_cursor(cur,
1072 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
1073 }
1074 return error;
1075 }
1076
1077 /*
1078 * Called from xfs_bmap_add_attrfork to handle local format files. Each
1079 * different data fork content type needs a different callout to do the
1080 * conversion. Some are basic and only require special block initialisation
1081 * callouts for the data formating, others (directories) are so specialised they
1082 * handle everything themselves.
1083 *
1084 * XXX (dgc): investigate whether directory conversion can use the generic
1085 * formatting callout. It should be possible - it's just a very complex
1086 * formatter.
1087 */
1088 STATIC int /* error */
1089 xfs_bmap_add_attrfork_local(
1090 xfs_trans_t *tp, /* transaction pointer */
1091 xfs_inode_t *ip, /* incore inode pointer */
1092 xfs_fsblock_t *firstblock, /* first block allocated */
1093 xfs_bmap_free_t *flist, /* blocks to free at commit */
1094 int *flags) /* inode logging flags */
1095 {
1096 xfs_da_args_t dargs; /* args for dir/attr code */
1097
1098 if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip))
1099 return 0;
1100
1101 if (S_ISDIR(ip->i_d.di_mode)) {
1102 memset(&dargs, 0, sizeof(dargs));
1103 dargs.geo = ip->i_mount->m_dir_geo;
1104 dargs.dp = ip;
1105 dargs.firstblock = firstblock;
1106 dargs.flist = flist;
1107 dargs.total = dargs.geo->fsbcount;
1108 dargs.whichfork = XFS_DATA_FORK;
1109 dargs.trans = tp;
1110 return xfs_dir2_sf_to_block(&dargs);
1111 }
1112
1113 if (S_ISLNK(ip->i_d.di_mode))
1114 return xfs_bmap_local_to_extents(tp, ip, firstblock, 1,
1115 flags, XFS_DATA_FORK,
1116 xfs_symlink_local_to_remote);
1117
1118 /* should only be called for types that support local format data */
1119 ASSERT(0);
1120 return -EFSCORRUPTED;
1121 }
1122
1123 /*
1124 * Convert inode from non-attributed to attributed.
1125 * Must not be in a transaction, ip must not be locked.
1126 */
1127 int /* error code */
1128 xfs_bmap_add_attrfork(
1129 xfs_inode_t *ip, /* incore inode pointer */
1130 int size, /* space new attribute needs */
1131 int rsvd) /* xact may use reserved blks */
1132 {
1133 xfs_fsblock_t firstblock; /* 1st block/ag allocated */
1134 xfs_bmap_free_t flist; /* freed extent records */
1135 xfs_mount_t *mp; /* mount structure */
1136 xfs_trans_t *tp; /* transaction pointer */
1137 int blks; /* space reservation */
1138 int version = 1; /* superblock attr version */
1139 int committed; /* xaction was committed */
1140 int logflags; /* logging flags */
1141 int error; /* error return value */
1142 int cancel_flags = 0;
1143
1144 ASSERT(XFS_IFORK_Q(ip) == 0);
1145
1146 mp = ip->i_mount;
1147 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
1148 tp = xfs_trans_alloc(mp, XFS_TRANS_ADDAFORK);
1149 blks = XFS_ADDAFORK_SPACE_RES(mp);
1150 if (rsvd)
1151 tp->t_flags |= XFS_TRANS_RESERVE;
1152 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_addafork, blks, 0);
1153 if (error) {
1154 xfs_trans_cancel(tp, 0);
1155 return error;
1156 }
1157 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1158 xfs_ilock(ip, XFS_ILOCK_EXCL);
1159 error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ?
1160 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
1161 XFS_QMOPT_RES_REGBLKS);
1162 if (error)
1163 goto trans_cancel;
1164 cancel_flags |= XFS_TRANS_ABORT;
1165 if (XFS_IFORK_Q(ip))
1166 goto trans_cancel;
1167 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) {
1168 /*
1169 * For inodes coming from pre-6.2 filesystems.
1170 */
1171 ASSERT(ip->i_d.di_aformat == 0);
1172 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1173 }
1174 ASSERT(ip->i_d.di_anextents == 0);
1175
1176 xfs_trans_ijoin(tp, ip, 0);
1177 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1178
1179 switch (ip->i_d.di_format) {
1180 case XFS_DINODE_FMT_DEV:
1181 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
1182 break;
1183 case XFS_DINODE_FMT_UUID:
1184 ip->i_d.di_forkoff = roundup(sizeof(uuid_t), 8) >> 3;
1185 break;
1186 case XFS_DINODE_FMT_LOCAL:
1187 case XFS_DINODE_FMT_EXTENTS:
1188 case XFS_DINODE_FMT_BTREE:
1189 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
1190 if (!ip->i_d.di_forkoff)
1191 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
1192 else if (mp->m_flags & XFS_MOUNT_ATTR2)
1193 version = 2;
1194 break;
1195 default:
1196 ASSERT(0);
1197 error = -EINVAL;
1198 goto trans_cancel;
1199 }
1200
1201 ASSERT(ip->i_afp == NULL);
1202 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
1203 ip->i_afp->if_flags = XFS_IFEXTENTS;
1204 logflags = 0;
1205 xfs_bmap_init(&flist, &firstblock);
1206 switch (ip->i_d.di_format) {
1207 case XFS_DINODE_FMT_LOCAL:
1208 error = xfs_bmap_add_attrfork_local(tp, ip, &firstblock, &flist,
1209 &logflags);
1210 break;
1211 case XFS_DINODE_FMT_EXTENTS:
1212 error = xfs_bmap_add_attrfork_extents(tp, ip, &firstblock,
1213 &flist, &logflags);
1214 break;
1215 case XFS_DINODE_FMT_BTREE:
1216 error = xfs_bmap_add_attrfork_btree(tp, ip, &firstblock, &flist,
1217 &logflags);
1218 break;
1219 default:
1220 error = 0;
1221 break;
1222 }
1223 if (logflags)
1224 xfs_trans_log_inode(tp, ip, logflags);
1225 if (error)
1226 goto bmap_cancel;
1227 if (!xfs_sb_version_hasattr(&mp->m_sb) ||
1228 (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) {
1229 bool log_sb = false;
1230
1231 spin_lock(&mp->m_sb_lock);
1232 if (!xfs_sb_version_hasattr(&mp->m_sb)) {
1233 xfs_sb_version_addattr(&mp->m_sb);
1234 log_sb = true;
1235 }
1236 if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) {
1237 xfs_sb_version_addattr2(&mp->m_sb);
1238 log_sb = true;
1239 }
1240 spin_unlock(&mp->m_sb_lock);
1241 if (log_sb)
1242 xfs_log_sb(tp);
1243 }
1244
1245 error = xfs_bmap_finish(&tp, &flist, &committed);
1246 if (error)
1247 goto bmap_cancel;
1248 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1249 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1250 return error;
1251
1252 bmap_cancel:
1253 xfs_bmap_cancel(&flist);
1254 trans_cancel:
1255 xfs_trans_cancel(tp, cancel_flags);
1256 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1257 return error;
1258 }
1259
1260 /*
1261 * Internal and external extent tree search functions.
1262 */
1263
1264 /*
1265 * Read in the extents to if_extents.
1266 * All inode fields are set up by caller, we just traverse the btree
1267 * and copy the records in. If the file system cannot contain unwritten
1268 * extents, the records are checked for no "state" flags.
1269 */
1270 int /* error */
1271 xfs_bmap_read_extents(
1272 xfs_trans_t *tp, /* transaction pointer */
1273 xfs_inode_t *ip, /* incore inode */
1274 int whichfork) /* data or attr fork */
1275 {
1276 struct xfs_btree_block *block; /* current btree block */
1277 xfs_fsblock_t bno; /* block # of "block" */
1278 xfs_buf_t *bp; /* buffer for "block" */
1279 int error; /* error return value */
1280 xfs_exntfmt_t exntf; /* XFS_EXTFMT_NOSTATE, if checking */
1281 xfs_extnum_t i, j; /* index into the extents list */
1282 xfs_ifork_t *ifp; /* fork structure */
1283 int level; /* btree level, for checking */
1284 xfs_mount_t *mp; /* file system mount structure */
1285 __be64 *pp; /* pointer to block address */
1286 /* REFERENCED */
1287 xfs_extnum_t room; /* number of entries there's room for */
1288
1289 bno = NULLFSBLOCK;
1290 mp = ip->i_mount;
1291 ifp = XFS_IFORK_PTR(ip, whichfork);
1292 exntf = (whichfork != XFS_DATA_FORK) ? XFS_EXTFMT_NOSTATE :
1293 XFS_EXTFMT_INODE(ip);
1294 block = ifp->if_broot;
1295 /*
1296 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
1297 */
1298 level = be16_to_cpu(block->bb_level);
1299 ASSERT(level > 0);
1300 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
1301 bno = be64_to_cpu(*pp);
1302 ASSERT(bno != NULLFSBLOCK);
1303 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
1304 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
1305 /*
1306 * Go down the tree until leaf level is reached, following the first
1307 * pointer (leftmost) at each level.
1308 */
1309 while (level-- > 0) {
1310 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1311 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1312 if (error)
1313 return error;
1314 block = XFS_BUF_TO_BLOCK(bp);
1315 XFS_WANT_CORRUPTED_GOTO(mp,
1316 xfs_bmap_sanity_check(mp, bp, level), 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(mp,
1322 XFS_FSB_SANITY_CHECK(mp, bno), error0);
1323 xfs_trans_brelse(tp, bp);
1324 }
1325 /*
1326 * Here with bp and block set to the leftmost leaf node in the tree.
1327 */
1328 room = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1329 i = 0;
1330 /*
1331 * Loop over all leaf nodes. Copy information to the extent records.
1332 */
1333 for (;;) {
1334 xfs_bmbt_rec_t *frp;
1335 xfs_fsblock_t nextbno;
1336 xfs_extnum_t num_recs;
1337 xfs_extnum_t start;
1338
1339 num_recs = xfs_btree_get_numrecs(block);
1340 if (unlikely(i + num_recs > room)) {
1341 ASSERT(i + num_recs <= room);
1342 xfs_warn(ip->i_mount,
1343 "corrupt dinode %Lu, (btree extents).",
1344 (unsigned long long) ip->i_ino);
1345 XFS_CORRUPTION_ERROR("xfs_bmap_read_extents(1)",
1346 XFS_ERRLEVEL_LOW, ip->i_mount, block);
1347 goto error0;
1348 }
1349 XFS_WANT_CORRUPTED_GOTO(mp,
1350 xfs_bmap_sanity_check(mp, bp, 0),
1351 error0);
1352 /*
1353 * Read-ahead the next leaf block, if any.
1354 */
1355 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
1356 if (nextbno != NULLFSBLOCK)
1357 xfs_btree_reada_bufl(mp, nextbno, 1,
1358 &xfs_bmbt_buf_ops);
1359 /*
1360 * Copy records into the extent records.
1361 */
1362 frp = XFS_BMBT_REC_ADDR(mp, block, 1);
1363 start = i;
1364 for (j = 0; j < num_recs; j++, i++, frp++) {
1365 xfs_bmbt_rec_host_t *trp = xfs_iext_get_ext(ifp, i);
1366 trp->l0 = be64_to_cpu(frp->l0);
1367 trp->l1 = be64_to_cpu(frp->l1);
1368 }
1369 if (exntf == XFS_EXTFMT_NOSTATE) {
1370 /*
1371 * Check all attribute bmap btree records and
1372 * any "older" data bmap btree records for a
1373 * set bit in the "extent flag" position.
1374 */
1375 if (unlikely(xfs_check_nostate_extents(ifp,
1376 start, num_recs))) {
1377 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
1378 XFS_ERRLEVEL_LOW,
1379 ip->i_mount);
1380 goto error0;
1381 }
1382 }
1383 xfs_trans_brelse(tp, bp);
1384 bno = nextbno;
1385 /*
1386 * If we've reached the end, stop.
1387 */
1388 if (bno == NULLFSBLOCK)
1389 break;
1390 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1391 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1392 if (error)
1393 return error;
1394 block = XFS_BUF_TO_BLOCK(bp);
1395 }
1396 ASSERT(i == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
1397 ASSERT(i == XFS_IFORK_NEXTENTS(ip, whichfork));
1398 XFS_BMAP_TRACE_EXLIST(ip, i, whichfork);
1399 return 0;
1400 error0:
1401 xfs_trans_brelse(tp, bp);
1402 return -EFSCORRUPTED;
1403 }
1404
1405
1406 /*
1407 * Search the extent records for the entry containing block bno.
1408 * If bno lies in a hole, point to the next entry. If bno lies
1409 * past eof, *eofp will be set, and *prevp will contain the last
1410 * entry (null if none). Else, *lastxp will be set to the index
1411 * of the found entry; *gotp will contain the entry.
1412 */
1413 STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1414 xfs_bmap_search_multi_extents(
1415 xfs_ifork_t *ifp, /* inode fork pointer */
1416 xfs_fileoff_t bno, /* block number searched for */
1417 int *eofp, /* out: end of file found */
1418 xfs_extnum_t *lastxp, /* out: last extent index */
1419 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1420 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1421 {
1422 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1423 xfs_extnum_t lastx; /* last extent index */
1424
1425 /*
1426 * Initialize the extent entry structure to catch access to
1427 * uninitialized br_startblock field.
1428 */
1429 gotp->br_startoff = 0xffa5a5a5a5a5a5a5LL;
1430 gotp->br_blockcount = 0xa55a5a5a5a5a5a5aLL;
1431 gotp->br_state = XFS_EXT_INVALID;
1432 gotp->br_startblock = 0xffffa5a5a5a5a5a5LL;
1433 prevp->br_startoff = NULLFILEOFF;
1434
1435 ep = xfs_iext_bno_to_ext(ifp, bno, &lastx);
1436 if (lastx > 0) {
1437 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx - 1), prevp);
1438 }
1439 if (lastx < (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))) {
1440 xfs_bmbt_get_all(ep, gotp);
1441 *eofp = 0;
1442 } else {
1443 if (lastx > 0) {
1444 *gotp = *prevp;
1445 }
1446 *eofp = 1;
1447 ep = NULL;
1448 }
1449 *lastxp = lastx;
1450 return ep;
1451 }
1452
1453 /*
1454 * Search the extents list for the inode, for the extent containing bno.
1455 * If bno lies in a hole, point to the next entry. If bno lies past eof,
1456 * *eofp will be set, and *prevp will contain the last entry (null if none).
1457 * Else, *lastxp will be set to the index of the found
1458 * entry; *gotp will contain the entry.
1459 */
1460 STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1461 xfs_bmap_search_extents(
1462 xfs_inode_t *ip, /* incore inode pointer */
1463 xfs_fileoff_t bno, /* block number searched for */
1464 int fork, /* data or attr fork */
1465 int *eofp, /* out: end of file found */
1466 xfs_extnum_t *lastxp, /* out: last extent index */
1467 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1468 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1469 {
1470 xfs_ifork_t *ifp; /* inode fork pointer */
1471 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1472
1473 XFS_STATS_INC(xs_look_exlist);
1474 ifp = XFS_IFORK_PTR(ip, fork);
1475
1476 ep = xfs_bmap_search_multi_extents(ifp, bno, eofp, lastxp, gotp, prevp);
1477
1478 if (unlikely(!(gotp->br_startblock) && (*lastxp != NULLEXTNUM) &&
1479 !(XFS_IS_REALTIME_INODE(ip) && fork == XFS_DATA_FORK))) {
1480 xfs_alert_tag(ip->i_mount, XFS_PTAG_FSBLOCK_ZERO,
1481 "Access to block zero in inode %llu "
1482 "start_block: %llx start_off: %llx "
1483 "blkcnt: %llx extent-state: %x lastx: %x",
1484 (unsigned long long)ip->i_ino,
1485 (unsigned long long)gotp->br_startblock,
1486 (unsigned long long)gotp->br_startoff,
1487 (unsigned long long)gotp->br_blockcount,
1488 gotp->br_state, *lastxp);
1489 *lastxp = NULLEXTNUM;
1490 *eofp = 1;
1491 return NULL;
1492 }
1493 return ep;
1494 }
1495
1496 /*
1497 * Returns the file-relative block number of the first unused block(s)
1498 * in the file with at least "len" logically contiguous blocks free.
1499 * This is the lowest-address hole if the file has holes, else the first block
1500 * past the end of file.
1501 * Return 0 if the file is currently local (in-inode).
1502 */
1503 int /* error */
1504 xfs_bmap_first_unused(
1505 xfs_trans_t *tp, /* transaction pointer */
1506 xfs_inode_t *ip, /* incore inode */
1507 xfs_extlen_t len, /* size of hole to find */
1508 xfs_fileoff_t *first_unused, /* unused block */
1509 int whichfork) /* data or attr fork */
1510 {
1511 int error; /* error return value */
1512 int idx; /* extent record index */
1513 xfs_ifork_t *ifp; /* inode fork pointer */
1514 xfs_fileoff_t lastaddr; /* last block number seen */
1515 xfs_fileoff_t lowest; /* lowest useful block */
1516 xfs_fileoff_t max; /* starting useful block */
1517 xfs_fileoff_t off; /* offset for this block */
1518 xfs_extnum_t nextents; /* number of extent entries */
1519
1520 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE ||
1521 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ||
1522 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
1523 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1524 *first_unused = 0;
1525 return 0;
1526 }
1527 ifp = XFS_IFORK_PTR(ip, whichfork);
1528 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1529 (error = xfs_iread_extents(tp, ip, whichfork)))
1530 return error;
1531 lowest = *first_unused;
1532 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1533 for (idx = 0, lastaddr = 0, max = lowest; idx < nextents; idx++) {
1534 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
1535 off = xfs_bmbt_get_startoff(ep);
1536 /*
1537 * See if the hole before this extent will work.
1538 */
1539 if (off >= lowest + len && off - max >= len) {
1540 *first_unused = max;
1541 return 0;
1542 }
1543 lastaddr = off + xfs_bmbt_get_blockcount(ep);
1544 max = XFS_FILEOFF_MAX(lastaddr, lowest);
1545 }
1546 *first_unused = max;
1547 return 0;
1548 }
1549
1550 /*
1551 * Returns the file-relative block number of the last block - 1 before
1552 * last_block (input value) in the file.
1553 * This is not based on i_size, it is based on the extent records.
1554 * Returns 0 for local files, as they do not have extent records.
1555 */
1556 int /* error */
1557 xfs_bmap_last_before(
1558 xfs_trans_t *tp, /* transaction pointer */
1559 xfs_inode_t *ip, /* incore inode */
1560 xfs_fileoff_t *last_block, /* last block */
1561 int whichfork) /* data or attr fork */
1562 {
1563 xfs_fileoff_t bno; /* input file offset */
1564 int eof; /* hit end of file */
1565 xfs_bmbt_rec_host_t *ep; /* pointer to last extent */
1566 int error; /* error return value */
1567 xfs_bmbt_irec_t got; /* current extent value */
1568 xfs_ifork_t *ifp; /* inode fork pointer */
1569 xfs_extnum_t lastx; /* last extent used */
1570 xfs_bmbt_irec_t prev; /* previous extent value */
1571
1572 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1573 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
1574 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
1575 return -EIO;
1576 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1577 *last_block = 0;
1578 return 0;
1579 }
1580 ifp = XFS_IFORK_PTR(ip, whichfork);
1581 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1582 (error = xfs_iread_extents(tp, ip, whichfork)))
1583 return error;
1584 bno = *last_block - 1;
1585 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
1586 &prev);
1587 if (eof || xfs_bmbt_get_startoff(ep) > bno) {
1588 if (prev.br_startoff == NULLFILEOFF)
1589 *last_block = 0;
1590 else
1591 *last_block = prev.br_startoff + prev.br_blockcount;
1592 }
1593 /*
1594 * Otherwise *last_block is already the right answer.
1595 */
1596 return 0;
1597 }
1598
1599 int
1600 xfs_bmap_last_extent(
1601 struct xfs_trans *tp,
1602 struct xfs_inode *ip,
1603 int whichfork,
1604 struct xfs_bmbt_irec *rec,
1605 int *is_empty)
1606 {
1607 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1608 int error;
1609 int nextents;
1610
1611 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1612 error = xfs_iread_extents(tp, ip, whichfork);
1613 if (error)
1614 return error;
1615 }
1616
1617 nextents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
1618 if (nextents == 0) {
1619 *is_empty = 1;
1620 return 0;
1621 }
1622
1623 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, nextents - 1), rec);
1624 *is_empty = 0;
1625 return 0;
1626 }
1627
1628 /*
1629 * Check the last inode extent to determine whether this allocation will result
1630 * in blocks being allocated at the end of the file. When we allocate new data
1631 * blocks at the end of the file which do not start at the previous data block,
1632 * we will try to align the new blocks at stripe unit boundaries.
1633 *
1634 * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be
1635 * at, or past the EOF.
1636 */
1637 STATIC int
1638 xfs_bmap_isaeof(
1639 struct xfs_bmalloca *bma,
1640 int whichfork)
1641 {
1642 struct xfs_bmbt_irec rec;
1643 int is_empty;
1644 int error;
1645
1646 bma->aeof = 0;
1647 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec,
1648 &is_empty);
1649 if (error)
1650 return error;
1651
1652 if (is_empty) {
1653 bma->aeof = 1;
1654 return 0;
1655 }
1656
1657 /*
1658 * Check if we are allocation or past the last extent, or at least into
1659 * the last delayed allocated extent.
1660 */
1661 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount ||
1662 (bma->offset >= rec.br_startoff &&
1663 isnullstartblock(rec.br_startblock));
1664 return 0;
1665 }
1666
1667 /*
1668 * Returns the file-relative block number of the first block past eof in
1669 * the file. This is not based on i_size, it is based on the extent records.
1670 * Returns 0 for local files, as they do not have extent records.
1671 */
1672 int
1673 xfs_bmap_last_offset(
1674 struct xfs_inode *ip,
1675 xfs_fileoff_t *last_block,
1676 int whichfork)
1677 {
1678 struct xfs_bmbt_irec rec;
1679 int is_empty;
1680 int error;
1681
1682 *last_block = 0;
1683
1684 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL)
1685 return 0;
1686
1687 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1688 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1689 return -EIO;
1690
1691 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty);
1692 if (error || is_empty)
1693 return error;
1694
1695 *last_block = rec.br_startoff + rec.br_blockcount;
1696 return 0;
1697 }
1698
1699 /*
1700 * Returns whether the selected fork of the inode has exactly one
1701 * block or not. For the data fork we check this matches di_size,
1702 * implying the file's range is 0..bsize-1.
1703 */
1704 int /* 1=>1 block, 0=>otherwise */
1705 xfs_bmap_one_block(
1706 xfs_inode_t *ip, /* incore inode */
1707 int whichfork) /* data or attr fork */
1708 {
1709 xfs_bmbt_rec_host_t *ep; /* ptr to fork's extent */
1710 xfs_ifork_t *ifp; /* inode fork pointer */
1711 int rval; /* return value */
1712 xfs_bmbt_irec_t s; /* internal version of extent */
1713
1714 #ifndef DEBUG
1715 if (whichfork == XFS_DATA_FORK)
1716 return XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize;
1717 #endif /* !DEBUG */
1718 if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1)
1719 return 0;
1720 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1721 return 0;
1722 ifp = XFS_IFORK_PTR(ip, whichfork);
1723 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
1724 ep = xfs_iext_get_ext(ifp, 0);
1725 xfs_bmbt_get_all(ep, &s);
1726 rval = s.br_startoff == 0 && s.br_blockcount == 1;
1727 if (rval && whichfork == XFS_DATA_FORK)
1728 ASSERT(XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize);
1729 return rval;
1730 }
1731
1732 /*
1733 * Extent tree manipulation functions used during allocation.
1734 */
1735
1736 /*
1737 * Convert a delayed allocation to a real allocation.
1738 */
1739 STATIC int /* error */
1740 xfs_bmap_add_extent_delay_real(
1741 struct xfs_bmalloca *bma)
1742 {
1743 struct xfs_bmbt_irec *new = &bma->got;
1744 int diff; /* temp value */
1745 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
1746 int error; /* error return value */
1747 int i; /* temp state */
1748 xfs_ifork_t *ifp; /* inode fork pointer */
1749 xfs_fileoff_t new_endoff; /* end offset of new entry */
1750 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
1751 /* left is 0, right is 1, prev is 2 */
1752 int rval=0; /* return value (logging flags) */
1753 int state = 0;/* state bits, accessed thru macros */
1754 xfs_filblks_t da_new; /* new count del alloc blocks used */
1755 xfs_filblks_t da_old; /* old count del alloc blocks used */
1756 xfs_filblks_t temp=0; /* value for da_new calculations */
1757 xfs_filblks_t temp2=0;/* value for da_new calculations */
1758 int tmp_rval; /* partial logging flags */
1759 struct xfs_mount *mp;
1760
1761 mp = bma->tp ? bma->tp->t_mountp : NULL;
1762 ifp = XFS_IFORK_PTR(bma->ip, XFS_DATA_FORK);
1763
1764 ASSERT(bma->idx >= 0);
1765 ASSERT(bma->idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
1766 ASSERT(!isnullstartblock(new->br_startblock));
1767 ASSERT(!bma->cur ||
1768 (bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
1769
1770 XFS_STATS_INC(xs_add_exlist);
1771
1772 #define LEFT r[0]
1773 #define RIGHT r[1]
1774 #define PREV r[2]
1775
1776 /*
1777 * Set up a bunch of variables to make the tests simpler.
1778 */
1779 ep = xfs_iext_get_ext(ifp, bma->idx);
1780 xfs_bmbt_get_all(ep, &PREV);
1781 new_endoff = new->br_startoff + new->br_blockcount;
1782 ASSERT(PREV.br_startoff <= new->br_startoff);
1783 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
1784
1785 da_old = startblockval(PREV.br_startblock);
1786 da_new = 0;
1787
1788 /*
1789 * Set flags determining what part of the previous delayed allocation
1790 * extent is being replaced by a real allocation.
1791 */
1792 if (PREV.br_startoff == new->br_startoff)
1793 state |= BMAP_LEFT_FILLING;
1794 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
1795 state |= BMAP_RIGHT_FILLING;
1796
1797 /*
1798 * Check and set flags if this segment has a left neighbor.
1799 * Don't set contiguous if the combined extent would be too large.
1800 */
1801 if (bma->idx > 0) {
1802 state |= BMAP_LEFT_VALID;
1803 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &LEFT);
1804
1805 if (isnullstartblock(LEFT.br_startblock))
1806 state |= BMAP_LEFT_DELAY;
1807 }
1808
1809 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
1810 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
1811 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
1812 LEFT.br_state == new->br_state &&
1813 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1814 state |= BMAP_LEFT_CONTIG;
1815
1816 /*
1817 * Check and set flags if this segment has a right neighbor.
1818 * Don't set contiguous if the combined extent would be too large.
1819 * Also check for all-three-contiguous being too large.
1820 */
1821 if (bma->idx < bma->ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
1822 state |= BMAP_RIGHT_VALID;
1823 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx + 1), &RIGHT);
1824
1825 if (isnullstartblock(RIGHT.br_startblock))
1826 state |= BMAP_RIGHT_DELAY;
1827 }
1828
1829 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1830 new_endoff == RIGHT.br_startoff &&
1831 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
1832 new->br_state == RIGHT.br_state &&
1833 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1834 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1835 BMAP_RIGHT_FILLING)) !=
1836 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1837 BMAP_RIGHT_FILLING) ||
1838 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1839 <= MAXEXTLEN))
1840 state |= BMAP_RIGHT_CONTIG;
1841
1842 error = 0;
1843 /*
1844 * Switch out based on the FILLING and CONTIG state bits.
1845 */
1846 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1847 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
1848 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1849 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
1850 /*
1851 * Filling in all of a previously delayed allocation extent.
1852 * The left and right neighbors are both contiguous with new.
1853 */
1854 bma->idx--;
1855 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1856 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
1857 LEFT.br_blockcount + PREV.br_blockcount +
1858 RIGHT.br_blockcount);
1859 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1860
1861 xfs_iext_remove(bma->ip, bma->idx + 1, 2, state);
1862 bma->ip->i_d.di_nextents--;
1863 if (bma->cur == NULL)
1864 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1865 else {
1866 rval = XFS_ILOG_CORE;
1867 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
1868 RIGHT.br_startblock,
1869 RIGHT.br_blockcount, &i);
1870 if (error)
1871 goto done;
1872 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
1873 error = xfs_btree_delete(bma->cur, &i);
1874 if (error)
1875 goto done;
1876 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
1877 error = xfs_btree_decrement(bma->cur, 0, &i);
1878 if (error)
1879 goto done;
1880 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
1881 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
1882 LEFT.br_startblock,
1883 LEFT.br_blockcount +
1884 PREV.br_blockcount +
1885 RIGHT.br_blockcount, LEFT.br_state);
1886 if (error)
1887 goto done;
1888 }
1889 break;
1890
1891 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
1892 /*
1893 * Filling in all of a previously delayed allocation extent.
1894 * The left neighbor is contiguous, the right is not.
1895 */
1896 bma->idx--;
1897
1898 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1899 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
1900 LEFT.br_blockcount + PREV.br_blockcount);
1901 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1902
1903 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1904 if (bma->cur == NULL)
1905 rval = XFS_ILOG_DEXT;
1906 else {
1907 rval = 0;
1908 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
1909 LEFT.br_startblock, LEFT.br_blockcount,
1910 &i);
1911 if (error)
1912 goto done;
1913 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
1914 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
1915 LEFT.br_startblock,
1916 LEFT.br_blockcount +
1917 PREV.br_blockcount, LEFT.br_state);
1918 if (error)
1919 goto done;
1920 }
1921 break;
1922
1923 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
1924 /*
1925 * Filling in all of a previously delayed allocation extent.
1926 * The right neighbor is contiguous, the left is not.
1927 */
1928 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1929 xfs_bmbt_set_startblock(ep, new->br_startblock);
1930 xfs_bmbt_set_blockcount(ep,
1931 PREV.br_blockcount + RIGHT.br_blockcount);
1932 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1933
1934 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1935 if (bma->cur == NULL)
1936 rval = XFS_ILOG_DEXT;
1937 else {
1938 rval = 0;
1939 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
1940 RIGHT.br_startblock,
1941 RIGHT.br_blockcount, &i);
1942 if (error)
1943 goto done;
1944 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
1945 error = xfs_bmbt_update(bma->cur, PREV.br_startoff,
1946 new->br_startblock,
1947 PREV.br_blockcount +
1948 RIGHT.br_blockcount, PREV.br_state);
1949 if (error)
1950 goto done;
1951 }
1952 break;
1953
1954 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
1955 /*
1956 * Filling in all of a previously delayed allocation extent.
1957 * Neither the left nor right neighbors are contiguous with
1958 * the new one.
1959 */
1960 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1961 xfs_bmbt_set_startblock(ep, new->br_startblock);
1962 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
1963
1964 bma->ip->i_d.di_nextents++;
1965 if (bma->cur == NULL)
1966 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1967 else {
1968 rval = XFS_ILOG_CORE;
1969 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
1970 new->br_startblock, new->br_blockcount,
1971 &i);
1972 if (error)
1973 goto done;
1974 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
1975 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
1976 error = xfs_btree_insert(bma->cur, &i);
1977 if (error)
1978 goto done;
1979 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
1980 }
1981 break;
1982
1983 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
1984 /*
1985 * Filling in the first part of a previous delayed allocation.
1986 * The left neighbor is contiguous.
1987 */
1988 trace_xfs_bmap_pre_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
1989 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx - 1),
1990 LEFT.br_blockcount + new->br_blockcount);
1991 xfs_bmbt_set_startoff(ep,
1992 PREV.br_startoff + new->br_blockcount);
1993 trace_xfs_bmap_post_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
1994
1995 temp = PREV.br_blockcount - new->br_blockcount;
1996 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1997 xfs_bmbt_set_blockcount(ep, temp);
1998 if (bma->cur == NULL)
1999 rval = XFS_ILOG_DEXT;
2000 else {
2001 rval = 0;
2002 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
2003 LEFT.br_startblock, LEFT.br_blockcount,
2004 &i);
2005 if (error)
2006 goto done;
2007 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2008 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
2009 LEFT.br_startblock,
2010 LEFT.br_blockcount +
2011 new->br_blockcount,
2012 LEFT.br_state);
2013 if (error)
2014 goto done;
2015 }
2016 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2017 startblockval(PREV.br_startblock));
2018 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2019 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2020
2021 bma->idx--;
2022 break;
2023
2024 case BMAP_LEFT_FILLING:
2025 /*
2026 * Filling in the first part of a previous delayed allocation.
2027 * The left neighbor is not contiguous.
2028 */
2029 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2030 xfs_bmbt_set_startoff(ep, new_endoff);
2031 temp = PREV.br_blockcount - new->br_blockcount;
2032 xfs_bmbt_set_blockcount(ep, temp);
2033 xfs_iext_insert(bma->ip, bma->idx, 1, new, state);
2034 bma->ip->i_d.di_nextents++;
2035 if (bma->cur == NULL)
2036 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2037 else {
2038 rval = XFS_ILOG_CORE;
2039 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
2040 new->br_startblock, new->br_blockcount,
2041 &i);
2042 if (error)
2043 goto done;
2044 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
2045 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2046 error = xfs_btree_insert(bma->cur, &i);
2047 if (error)
2048 goto done;
2049 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2050 }
2051
2052 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2053 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2054 bma->firstblock, bma->flist,
2055 &bma->cur, 1, &tmp_rval, XFS_DATA_FORK);
2056 rval |= tmp_rval;
2057 if (error)
2058 goto done;
2059 }
2060 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2061 startblockval(PREV.br_startblock) -
2062 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2063 ep = xfs_iext_get_ext(ifp, bma->idx + 1);
2064 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2065 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2066 break;
2067
2068 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2069 /*
2070 * Filling in the last part of a previous delayed allocation.
2071 * The right neighbor is contiguous with the new allocation.
2072 */
2073 temp = PREV.br_blockcount - new->br_blockcount;
2074 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2075 xfs_bmbt_set_blockcount(ep, temp);
2076 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, bma->idx + 1),
2077 new->br_startoff, new->br_startblock,
2078 new->br_blockcount + RIGHT.br_blockcount,
2079 RIGHT.br_state);
2080 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2081 if (bma->cur == NULL)
2082 rval = XFS_ILOG_DEXT;
2083 else {
2084 rval = 0;
2085 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
2086 RIGHT.br_startblock,
2087 RIGHT.br_blockcount, &i);
2088 if (error)
2089 goto done;
2090 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2091 error = xfs_bmbt_update(bma->cur, new->br_startoff,
2092 new->br_startblock,
2093 new->br_blockcount +
2094 RIGHT.br_blockcount,
2095 RIGHT.br_state);
2096 if (error)
2097 goto done;
2098 }
2099
2100 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2101 startblockval(PREV.br_startblock));
2102 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2103 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2104 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2105
2106 bma->idx++;
2107 break;
2108
2109 case BMAP_RIGHT_FILLING:
2110 /*
2111 * Filling in the last part of a previous delayed allocation.
2112 * The right neighbor is not contiguous.
2113 */
2114 temp = PREV.br_blockcount - new->br_blockcount;
2115 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
2116 xfs_bmbt_set_blockcount(ep, temp);
2117 xfs_iext_insert(bma->ip, bma->idx + 1, 1, new, state);
2118 bma->ip->i_d.di_nextents++;
2119 if (bma->cur == NULL)
2120 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2121 else {
2122 rval = XFS_ILOG_CORE;
2123 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
2124 new->br_startblock, new->br_blockcount,
2125 &i);
2126 if (error)
2127 goto done;
2128 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
2129 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2130 error = xfs_btree_insert(bma->cur, &i);
2131 if (error)
2132 goto done;
2133 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2134 }
2135
2136 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2137 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2138 bma->firstblock, bma->flist, &bma->cur, 1,
2139 &tmp_rval, XFS_DATA_FORK);
2140 rval |= tmp_rval;
2141 if (error)
2142 goto done;
2143 }
2144 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
2145 startblockval(PREV.br_startblock) -
2146 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2147 ep = xfs_iext_get_ext(ifp, bma->idx);
2148 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
2149 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2150
2151 bma->idx++;
2152 break;
2153
2154 case 0:
2155 /*
2156 * Filling in the middle part of a previous delayed allocation.
2157 * Contiguity is impossible here.
2158 * This case is avoided almost all the time.
2159 *
2160 * We start with a delayed allocation:
2161 *
2162 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
2163 * PREV @ idx
2164 *
2165 * and we are allocating:
2166 * +rrrrrrrrrrrrrrrrr+
2167 * new
2168 *
2169 * and we set it up for insertion as:
2170 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
2171 * new
2172 * PREV @ idx LEFT RIGHT
2173 * inserted at idx + 1
2174 */
2175 temp = new->br_startoff - PREV.br_startoff;
2176 temp2 = PREV.br_startoff + PREV.br_blockcount - new_endoff;
2177 trace_xfs_bmap_pre_update(bma->ip, bma->idx, 0, _THIS_IP_);
2178 xfs_bmbt_set_blockcount(ep, temp); /* truncate PREV */
2179 LEFT = *new;
2180 RIGHT.br_state = PREV.br_state;
2181 RIGHT.br_startblock = nullstartblock(
2182 (int)xfs_bmap_worst_indlen(bma->ip, temp2));
2183 RIGHT.br_startoff = new_endoff;
2184 RIGHT.br_blockcount = temp2;
2185 /* insert LEFT (r[0]) and RIGHT (r[1]) at the same time */
2186 xfs_iext_insert(bma->ip, bma->idx + 1, 2, &LEFT, state);
2187 bma->ip->i_d.di_nextents++;
2188 if (bma->cur == NULL)
2189 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2190 else {
2191 rval = XFS_ILOG_CORE;
2192 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
2193 new->br_startblock, new->br_blockcount,
2194 &i);
2195 if (error)
2196 goto done;
2197 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
2198 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2199 error = xfs_btree_insert(bma->cur, &i);
2200 if (error)
2201 goto done;
2202 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2203 }
2204
2205 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2206 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2207 bma->firstblock, bma->flist, &bma->cur,
2208 1, &tmp_rval, XFS_DATA_FORK);
2209 rval |= tmp_rval;
2210 if (error)
2211 goto done;
2212 }
2213 temp = xfs_bmap_worst_indlen(bma->ip, temp);
2214 temp2 = xfs_bmap_worst_indlen(bma->ip, temp2);
2215 diff = (int)(temp + temp2 - startblockval(PREV.br_startblock) -
2216 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2217 if (diff > 0) {
2218 error = xfs_mod_fdblocks(bma->ip->i_mount,
2219 -((int64_t)diff), false);
2220 ASSERT(!error);
2221 if (error)
2222 goto done;
2223 }
2224
2225 ep = xfs_iext_get_ext(ifp, bma->idx);
2226 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
2227 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2228 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
2229 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, bma->idx + 2),
2230 nullstartblock((int)temp2));
2231 trace_xfs_bmap_post_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
2232
2233 bma->idx++;
2234 da_new = temp + temp2;
2235 break;
2236
2237 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2238 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2239 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2240 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2241 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2242 case BMAP_LEFT_CONTIG:
2243 case BMAP_RIGHT_CONTIG:
2244 /*
2245 * These cases are all impossible.
2246 */
2247 ASSERT(0);
2248 }
2249
2250 /* convert to a btree if necessary */
2251 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
2252 int tmp_logflags; /* partial log flag return val */
2253
2254 ASSERT(bma->cur == NULL);
2255 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2256 bma->firstblock, bma->flist, &bma->cur,
2257 da_old > 0, &tmp_logflags, XFS_DATA_FORK);
2258 bma->logflags |= tmp_logflags;
2259 if (error)
2260 goto done;
2261 }
2262
2263 /* adjust for changes in reserved delayed indirect blocks */
2264 if (da_old || da_new) {
2265 temp = da_new;
2266 if (bma->cur)
2267 temp += bma->cur->bc_private.b.allocated;
2268 ASSERT(temp <= da_old);
2269 if (temp < da_old)
2270 xfs_mod_fdblocks(bma->ip->i_mount,
2271 (int64_t)(da_old - temp), false);
2272 }
2273
2274 /* clear out the allocated field, done with it now in any case. */
2275 if (bma->cur)
2276 bma->cur->bc_private.b.allocated = 0;
2277
2278 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, XFS_DATA_FORK);
2279 done:
2280 bma->logflags |= rval;
2281 return error;
2282 #undef LEFT
2283 #undef RIGHT
2284 #undef PREV
2285 }
2286
2287 /*
2288 * Convert an unwritten allocation to a real allocation or vice versa.
2289 */
2290 STATIC int /* error */
2291 xfs_bmap_add_extent_unwritten_real(
2292 struct xfs_trans *tp,
2293 xfs_inode_t *ip, /* incore inode pointer */
2294 xfs_extnum_t *idx, /* extent number to update/insert */
2295 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
2296 xfs_bmbt_irec_t *new, /* new data to add to file extents */
2297 xfs_fsblock_t *first, /* pointer to firstblock variable */
2298 xfs_bmap_free_t *flist, /* list of extents to be freed */
2299 int *logflagsp) /* inode logging flags */
2300 {
2301 xfs_btree_cur_t *cur; /* btree cursor */
2302 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
2303 int error; /* error return value */
2304 int i; /* temp state */
2305 xfs_ifork_t *ifp; /* inode fork pointer */
2306 xfs_fileoff_t new_endoff; /* end offset of new entry */
2307 xfs_exntst_t newext; /* new extent state */
2308 xfs_exntst_t oldext; /* old extent state */
2309 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
2310 /* left is 0, right is 1, prev is 2 */
2311 int rval=0; /* return value (logging flags) */
2312 int state = 0;/* state bits, accessed thru macros */
2313 struct xfs_mount *mp = tp->t_mountp;
2314
2315 *logflagsp = 0;
2316
2317 cur = *curp;
2318 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
2319
2320 ASSERT(*idx >= 0);
2321 ASSERT(*idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
2322 ASSERT(!isnullstartblock(new->br_startblock));
2323
2324 XFS_STATS_INC(xs_add_exlist);
2325
2326 #define LEFT r[0]
2327 #define RIGHT r[1]
2328 #define PREV r[2]
2329
2330 /*
2331 * Set up a bunch of variables to make the tests simpler.
2332 */
2333 error = 0;
2334 ep = xfs_iext_get_ext(ifp, *idx);
2335 xfs_bmbt_get_all(ep, &PREV);
2336 newext = new->br_state;
2337 oldext = (newext == XFS_EXT_UNWRITTEN) ?
2338 XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
2339 ASSERT(PREV.br_state == oldext);
2340 new_endoff = new->br_startoff + new->br_blockcount;
2341 ASSERT(PREV.br_startoff <= new->br_startoff);
2342 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
2343
2344 /*
2345 * Set flags determining what part of the previous oldext allocation
2346 * extent is being replaced by a newext allocation.
2347 */
2348 if (PREV.br_startoff == new->br_startoff)
2349 state |= BMAP_LEFT_FILLING;
2350 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
2351 state |= BMAP_RIGHT_FILLING;
2352
2353 /*
2354 * Check and set flags if this segment has a left neighbor.
2355 * Don't set contiguous if the combined extent would be too large.
2356 */
2357 if (*idx > 0) {
2358 state |= BMAP_LEFT_VALID;
2359 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &LEFT);
2360
2361 if (isnullstartblock(LEFT.br_startblock))
2362 state |= BMAP_LEFT_DELAY;
2363 }
2364
2365 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2366 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
2367 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
2368 LEFT.br_state == newext &&
2369 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2370 state |= BMAP_LEFT_CONTIG;
2371
2372 /*
2373 * Check and set flags if this segment has a right neighbor.
2374 * Don't set contiguous if the combined extent would be too large.
2375 * Also check for all-three-contiguous being too large.
2376 */
2377 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
2378 state |= BMAP_RIGHT_VALID;
2379 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx + 1), &RIGHT);
2380 if (isnullstartblock(RIGHT.br_startblock))
2381 state |= BMAP_RIGHT_DELAY;
2382 }
2383
2384 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2385 new_endoff == RIGHT.br_startoff &&
2386 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
2387 newext == RIGHT.br_state &&
2388 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
2389 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2390 BMAP_RIGHT_FILLING)) !=
2391 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2392 BMAP_RIGHT_FILLING) ||
2393 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
2394 <= MAXEXTLEN))
2395 state |= BMAP_RIGHT_CONTIG;
2396
2397 /*
2398 * Switch out based on the FILLING and CONTIG state bits.
2399 */
2400 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2401 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
2402 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2403 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2404 /*
2405 * Setting all of a previous oldext extent to newext.
2406 * The left and right neighbors are both contiguous with new.
2407 */
2408 --*idx;
2409
2410 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2411 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
2412 LEFT.br_blockcount + PREV.br_blockcount +
2413 RIGHT.br_blockcount);
2414 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2415
2416 xfs_iext_remove(ip, *idx + 1, 2, state);
2417 ip->i_d.di_nextents -= 2;
2418 if (cur == NULL)
2419 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2420 else {
2421 rval = XFS_ILOG_CORE;
2422 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2423 RIGHT.br_startblock,
2424 RIGHT.br_blockcount, &i)))
2425 goto done;
2426 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2427 if ((error = xfs_btree_delete(cur, &i)))
2428 goto done;
2429 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2430 if ((error = xfs_btree_decrement(cur, 0, &i)))
2431 goto done;
2432 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2433 if ((error = xfs_btree_delete(cur, &i)))
2434 goto done;
2435 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2436 if ((error = xfs_btree_decrement(cur, 0, &i)))
2437 goto done;
2438 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2439 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2440 LEFT.br_startblock,
2441 LEFT.br_blockcount + PREV.br_blockcount +
2442 RIGHT.br_blockcount, LEFT.br_state)))
2443 goto done;
2444 }
2445 break;
2446
2447 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2448 /*
2449 * Setting all of a previous oldext extent to newext.
2450 * The left neighbor is contiguous, the right is not.
2451 */
2452 --*idx;
2453
2454 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2455 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
2456 LEFT.br_blockcount + PREV.br_blockcount);
2457 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2458
2459 xfs_iext_remove(ip, *idx + 1, 1, state);
2460 ip->i_d.di_nextents--;
2461 if (cur == NULL)
2462 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2463 else {
2464 rval = XFS_ILOG_CORE;
2465 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2466 PREV.br_startblock, PREV.br_blockcount,
2467 &i)))
2468 goto done;
2469 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2470 if ((error = xfs_btree_delete(cur, &i)))
2471 goto done;
2472 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2473 if ((error = xfs_btree_decrement(cur, 0, &i)))
2474 goto done;
2475 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2476 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2477 LEFT.br_startblock,
2478 LEFT.br_blockcount + PREV.br_blockcount,
2479 LEFT.br_state)))
2480 goto done;
2481 }
2482 break;
2483
2484 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2485 /*
2486 * Setting all of a previous oldext extent to newext.
2487 * The right neighbor is contiguous, the left is not.
2488 */
2489 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2490 xfs_bmbt_set_blockcount(ep,
2491 PREV.br_blockcount + RIGHT.br_blockcount);
2492 xfs_bmbt_set_state(ep, newext);
2493 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2494 xfs_iext_remove(ip, *idx + 1, 1, state);
2495 ip->i_d.di_nextents--;
2496 if (cur == NULL)
2497 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2498 else {
2499 rval = XFS_ILOG_CORE;
2500 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2501 RIGHT.br_startblock,
2502 RIGHT.br_blockcount, &i)))
2503 goto done;
2504 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2505 if ((error = xfs_btree_delete(cur, &i)))
2506 goto done;
2507 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2508 if ((error = xfs_btree_decrement(cur, 0, &i)))
2509 goto done;
2510 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2511 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2512 new->br_startblock,
2513 new->br_blockcount + RIGHT.br_blockcount,
2514 newext)))
2515 goto done;
2516 }
2517 break;
2518
2519 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
2520 /*
2521 * Setting all of a previous oldext extent to newext.
2522 * Neither the left nor right neighbors are contiguous with
2523 * the new one.
2524 */
2525 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2526 xfs_bmbt_set_state(ep, newext);
2527 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2528
2529 if (cur == NULL)
2530 rval = XFS_ILOG_DEXT;
2531 else {
2532 rval = 0;
2533 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2534 new->br_startblock, new->br_blockcount,
2535 &i)))
2536 goto done;
2537 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2538 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2539 new->br_startblock, new->br_blockcount,
2540 newext)))
2541 goto done;
2542 }
2543 break;
2544
2545 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
2546 /*
2547 * Setting the first part of a previous oldext extent to newext.
2548 * The left neighbor is contiguous.
2549 */
2550 trace_xfs_bmap_pre_update(ip, *idx - 1, state, _THIS_IP_);
2551 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx - 1),
2552 LEFT.br_blockcount + new->br_blockcount);
2553 xfs_bmbt_set_startoff(ep,
2554 PREV.br_startoff + new->br_blockcount);
2555 trace_xfs_bmap_post_update(ip, *idx - 1, state, _THIS_IP_);
2556
2557 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2558 xfs_bmbt_set_startblock(ep,
2559 new->br_startblock + new->br_blockcount);
2560 xfs_bmbt_set_blockcount(ep,
2561 PREV.br_blockcount - new->br_blockcount);
2562 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2563
2564 --*idx;
2565
2566 if (cur == NULL)
2567 rval = XFS_ILOG_DEXT;
2568 else {
2569 rval = 0;
2570 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2571 PREV.br_startblock, PREV.br_blockcount,
2572 &i)))
2573 goto done;
2574 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2575 if ((error = xfs_bmbt_update(cur,
2576 PREV.br_startoff + new->br_blockcount,
2577 PREV.br_startblock + new->br_blockcount,
2578 PREV.br_blockcount - new->br_blockcount,
2579 oldext)))
2580 goto done;
2581 if ((error = xfs_btree_decrement(cur, 0, &i)))
2582 goto done;
2583 error = xfs_bmbt_update(cur, LEFT.br_startoff,
2584 LEFT.br_startblock,
2585 LEFT.br_blockcount + new->br_blockcount,
2586 LEFT.br_state);
2587 if (error)
2588 goto done;
2589 }
2590 break;
2591
2592 case BMAP_LEFT_FILLING:
2593 /*
2594 * Setting the first part of a previous oldext extent to newext.
2595 * The left neighbor is not contiguous.
2596 */
2597 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2598 ASSERT(ep && xfs_bmbt_get_state(ep) == oldext);
2599 xfs_bmbt_set_startoff(ep, new_endoff);
2600 xfs_bmbt_set_blockcount(ep,
2601 PREV.br_blockcount - new->br_blockcount);
2602 xfs_bmbt_set_startblock(ep,
2603 new->br_startblock + new->br_blockcount);
2604 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2605
2606 xfs_iext_insert(ip, *idx, 1, new, state);
2607 ip->i_d.di_nextents++;
2608 if (cur == NULL)
2609 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2610 else {
2611 rval = XFS_ILOG_CORE;
2612 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2613 PREV.br_startblock, PREV.br_blockcount,
2614 &i)))
2615 goto done;
2616 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2617 if ((error = xfs_bmbt_update(cur,
2618 PREV.br_startoff + new->br_blockcount,
2619 PREV.br_startblock + new->br_blockcount,
2620 PREV.br_blockcount - new->br_blockcount,
2621 oldext)))
2622 goto done;
2623 cur->bc_rec.b = *new;
2624 if ((error = xfs_btree_insert(cur, &i)))
2625 goto done;
2626 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2627 }
2628 break;
2629
2630 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2631 /*
2632 * Setting the last part of a previous oldext extent to newext.
2633 * The right neighbor is contiguous with the new allocation.
2634 */
2635 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2636 xfs_bmbt_set_blockcount(ep,
2637 PREV.br_blockcount - new->br_blockcount);
2638 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2639
2640 ++*idx;
2641
2642 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2643 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
2644 new->br_startoff, new->br_startblock,
2645 new->br_blockcount + RIGHT.br_blockcount, newext);
2646 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2647
2648 if (cur == NULL)
2649 rval = XFS_ILOG_DEXT;
2650 else {
2651 rval = 0;
2652 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2653 PREV.br_startblock,
2654 PREV.br_blockcount, &i)))
2655 goto done;
2656 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2657 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2658 PREV.br_startblock,
2659 PREV.br_blockcount - new->br_blockcount,
2660 oldext)))
2661 goto done;
2662 if ((error = xfs_btree_increment(cur, 0, &i)))
2663 goto done;
2664 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2665 new->br_startblock,
2666 new->br_blockcount + RIGHT.br_blockcount,
2667 newext)))
2668 goto done;
2669 }
2670 break;
2671
2672 case BMAP_RIGHT_FILLING:
2673 /*
2674 * Setting the last part of a previous oldext extent to newext.
2675 * The right neighbor is not contiguous.
2676 */
2677 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2678 xfs_bmbt_set_blockcount(ep,
2679 PREV.br_blockcount - new->br_blockcount);
2680 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2681
2682 ++*idx;
2683 xfs_iext_insert(ip, *idx, 1, new, state);
2684
2685 ip->i_d.di_nextents++;
2686 if (cur == NULL)
2687 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2688 else {
2689 rval = XFS_ILOG_CORE;
2690 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2691 PREV.br_startblock, PREV.br_blockcount,
2692 &i)))
2693 goto done;
2694 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2695 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2696 PREV.br_startblock,
2697 PREV.br_blockcount - new->br_blockcount,
2698 oldext)))
2699 goto done;
2700 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2701 new->br_startblock, new->br_blockcount,
2702 &i)))
2703 goto done;
2704 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
2705 cur->bc_rec.b.br_state = XFS_EXT_NORM;
2706 if ((error = xfs_btree_insert(cur, &i)))
2707 goto done;
2708 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2709 }
2710 break;
2711
2712 case 0:
2713 /*
2714 * Setting the middle part of a previous oldext extent to
2715 * newext. Contiguity is impossible here.
2716 * One extent becomes three extents.
2717 */
2718 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2719 xfs_bmbt_set_blockcount(ep,
2720 new->br_startoff - PREV.br_startoff);
2721 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2722
2723 r[0] = *new;
2724 r[1].br_startoff = new_endoff;
2725 r[1].br_blockcount =
2726 PREV.br_startoff + PREV.br_blockcount - new_endoff;
2727 r[1].br_startblock = new->br_startblock + new->br_blockcount;
2728 r[1].br_state = oldext;
2729
2730 ++*idx;
2731 xfs_iext_insert(ip, *idx, 2, &r[0], state);
2732
2733 ip->i_d.di_nextents += 2;
2734 if (cur == NULL)
2735 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2736 else {
2737 rval = XFS_ILOG_CORE;
2738 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2739 PREV.br_startblock, PREV.br_blockcount,
2740 &i)))
2741 goto done;
2742 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2743 /* new right extent - oldext */
2744 if ((error = xfs_bmbt_update(cur, r[1].br_startoff,
2745 r[1].br_startblock, r[1].br_blockcount,
2746 r[1].br_state)))
2747 goto done;
2748 /* new left extent - oldext */
2749 cur->bc_rec.b = PREV;
2750 cur->bc_rec.b.br_blockcount =
2751 new->br_startoff - PREV.br_startoff;
2752 if ((error = xfs_btree_insert(cur, &i)))
2753 goto done;
2754 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2755 /*
2756 * Reset the cursor to the position of the new extent
2757 * we are about to insert as we can't trust it after
2758 * the previous insert.
2759 */
2760 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2761 new->br_startblock, new->br_blockcount,
2762 &i)))
2763 goto done;
2764 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
2765 /* new middle extent - newext */
2766 cur->bc_rec.b.br_state = new->br_state;
2767 if ((error = xfs_btree_insert(cur, &i)))
2768 goto done;
2769 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
2770 }
2771 break;
2772
2773 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2774 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2775 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2776 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2777 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2778 case BMAP_LEFT_CONTIG:
2779 case BMAP_RIGHT_CONTIG:
2780 /*
2781 * These cases are all impossible.
2782 */
2783 ASSERT(0);
2784 }
2785
2786 /* convert to a btree if necessary */
2787 if (xfs_bmap_needs_btree(ip, XFS_DATA_FORK)) {
2788 int tmp_logflags; /* partial log flag return val */
2789
2790 ASSERT(cur == NULL);
2791 error = xfs_bmap_extents_to_btree(tp, ip, first, flist, &cur,
2792 0, &tmp_logflags, XFS_DATA_FORK);
2793 *logflagsp |= tmp_logflags;
2794 if (error)
2795 goto done;
2796 }
2797
2798 /* clear out the allocated field, done with it now in any case. */
2799 if (cur) {
2800 cur->bc_private.b.allocated = 0;
2801 *curp = cur;
2802 }
2803
2804 xfs_bmap_check_leaf_extents(*curp, ip, XFS_DATA_FORK);
2805 done:
2806 *logflagsp |= rval;
2807 return error;
2808 #undef LEFT
2809 #undef RIGHT
2810 #undef PREV
2811 }
2812
2813 /*
2814 * Convert a hole to a delayed allocation.
2815 */
2816 STATIC void
2817 xfs_bmap_add_extent_hole_delay(
2818 xfs_inode_t *ip, /* incore inode pointer */
2819 xfs_extnum_t *idx, /* extent number to update/insert */
2820 xfs_bmbt_irec_t *new) /* new data to add to file extents */
2821 {
2822 xfs_ifork_t *ifp; /* inode fork pointer */
2823 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2824 xfs_filblks_t newlen=0; /* new indirect size */
2825 xfs_filblks_t oldlen=0; /* old indirect size */
2826 xfs_bmbt_irec_t right; /* right neighbor extent entry */
2827 int state; /* state bits, accessed thru macros */
2828 xfs_filblks_t temp=0; /* temp for indirect calculations */
2829
2830 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
2831 state = 0;
2832 ASSERT(isnullstartblock(new->br_startblock));
2833
2834 /*
2835 * Check and set flags if this segment has a left neighbor
2836 */
2837 if (*idx > 0) {
2838 state |= BMAP_LEFT_VALID;
2839 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &left);
2840
2841 if (isnullstartblock(left.br_startblock))
2842 state |= BMAP_LEFT_DELAY;
2843 }
2844
2845 /*
2846 * Check and set flags if the current (right) segment exists.
2847 * If it doesn't exist, we're converting the hole at end-of-file.
2848 */
2849 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
2850 state |= BMAP_RIGHT_VALID;
2851 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx), &right);
2852
2853 if (isnullstartblock(right.br_startblock))
2854 state |= BMAP_RIGHT_DELAY;
2855 }
2856
2857 /*
2858 * Set contiguity flags on the left and right neighbors.
2859 * Don't let extents get too large, even if the pieces are contiguous.
2860 */
2861 if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) &&
2862 left.br_startoff + left.br_blockcount == new->br_startoff &&
2863 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2864 state |= BMAP_LEFT_CONTIG;
2865
2866 if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) &&
2867 new->br_startoff + new->br_blockcount == right.br_startoff &&
2868 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2869 (!(state & BMAP_LEFT_CONTIG) ||
2870 (left.br_blockcount + new->br_blockcount +
2871 right.br_blockcount <= MAXEXTLEN)))
2872 state |= BMAP_RIGHT_CONTIG;
2873
2874 /*
2875 * Switch out based on the contiguity flags.
2876 */
2877 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2878 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2879 /*
2880 * New allocation is contiguous with delayed allocations
2881 * on the left and on the right.
2882 * Merge all three into a single extent record.
2883 */
2884 --*idx;
2885 temp = left.br_blockcount + new->br_blockcount +
2886 right.br_blockcount;
2887
2888 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2889 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
2890 oldlen = startblockval(left.br_startblock) +
2891 startblockval(new->br_startblock) +
2892 startblockval(right.br_startblock);
2893 newlen = xfs_bmap_worst_indlen(ip, temp);
2894 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
2895 nullstartblock((int)newlen));
2896 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2897
2898 xfs_iext_remove(ip, *idx + 1, 1, state);
2899 break;
2900
2901 case BMAP_LEFT_CONTIG:
2902 /*
2903 * New allocation is contiguous with a delayed allocation
2904 * on the left.
2905 * Merge the new allocation with the left neighbor.
2906 */
2907 --*idx;
2908 temp = left.br_blockcount + new->br_blockcount;
2909
2910 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2911 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
2912 oldlen = startblockval(left.br_startblock) +
2913 startblockval(new->br_startblock);
2914 newlen = xfs_bmap_worst_indlen(ip, temp);
2915 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
2916 nullstartblock((int)newlen));
2917 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2918 break;
2919
2920 case BMAP_RIGHT_CONTIG:
2921 /*
2922 * New allocation is contiguous with a delayed allocation
2923 * on the right.
2924 * Merge the new allocation with the right neighbor.
2925 */
2926 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2927 temp = new->br_blockcount + right.br_blockcount;
2928 oldlen = startblockval(new->br_startblock) +
2929 startblockval(right.br_startblock);
2930 newlen = xfs_bmap_worst_indlen(ip, temp);
2931 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
2932 new->br_startoff,
2933 nullstartblock((int)newlen), temp, right.br_state);
2934 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2935 break;
2936
2937 case 0:
2938 /*
2939 * New allocation is not contiguous with another
2940 * delayed allocation.
2941 * Insert a new entry.
2942 */
2943 oldlen = newlen = 0;
2944 xfs_iext_insert(ip, *idx, 1, new, state);
2945 break;
2946 }
2947 if (oldlen != newlen) {
2948 ASSERT(oldlen > newlen);
2949 xfs_mod_fdblocks(ip->i_mount, (int64_t)(oldlen - newlen),
2950 false);
2951 /*
2952 * Nothing to do for disk quota accounting here.
2953 */
2954 }
2955 }
2956
2957 /*
2958 * Convert a hole to a real allocation.
2959 */
2960 STATIC int /* error */
2961 xfs_bmap_add_extent_hole_real(
2962 struct xfs_bmalloca *bma,
2963 int whichfork)
2964 {
2965 struct xfs_bmbt_irec *new = &bma->got;
2966 int error; /* error return value */
2967 int i; /* temp state */
2968 xfs_ifork_t *ifp; /* inode fork pointer */
2969 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2970 xfs_bmbt_irec_t right; /* right neighbor extent entry */
2971 int rval=0; /* return value (logging flags) */
2972 int state; /* state bits, accessed thru macros */
2973 struct xfs_mount *mp;
2974
2975 mp = bma->tp ? bma->tp->t_mountp : NULL;
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(mp, i == 1, done);
3064 error = xfs_btree_delete(bma->cur, &i);
3065 if (error)
3066 goto done;
3067 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
3068 error = xfs_btree_decrement(bma->cur, 0, &i);
3069 if (error)
3070 goto done;
3071 XFS_WANT_CORRUPTED_GOTO(mp, 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(mp, 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(mp, 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(mp, 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(mp, 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 -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 -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 -EFSCORRUPTED;
4054 }
4055
4056 if (XFS_FORCED_SHUTDOWN(mp))
4057 return -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_frextents(mp, -((int64_t)extsz));
4168 } else {
4169 error = xfs_mod_fdblocks(mp, -((int64_t)alen), false);
4170 }
4171
4172 if (error)
4173 goto out_unreserve_quota;
4174
4175 error = xfs_mod_fdblocks(mp, -((int64_t)indlen), false);
4176 if (error)
4177 goto out_unreserve_blocks;
4178
4179
4180 ip->i_delayed_blks += alen;
4181
4182 got->br_startoff = aoff;
4183 got->br_startblock = nullstartblock(indlen);
4184 got->br_blockcount = alen;
4185 got->br_state = XFS_EXT_NORM;
4186 xfs_bmap_add_extent_hole_delay(ip, lastx, got);
4187
4188 /*
4189 * Update our extent pointer, given that xfs_bmap_add_extent_hole_delay
4190 * might have merged it into one of the neighbouring ones.
4191 */
4192 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *lastx), got);
4193
4194 ASSERT(got->br_startoff <= aoff);
4195 ASSERT(got->br_startoff + got->br_blockcount >= aoff + alen);
4196 ASSERT(isnullstartblock(got->br_startblock));
4197 ASSERT(got->br_state == XFS_EXT_NORM);
4198 return 0;
4199
4200 out_unreserve_blocks:
4201 if (rt)
4202 xfs_mod_frextents(mp, extsz);
4203 else
4204 xfs_mod_fdblocks(mp, alen, false);
4205 out_unreserve_quota:
4206 if (XFS_IS_QUOTA_ON(mp))
4207 xfs_trans_unreserve_quota_nblks(NULL, ip, (long)alen, 0, rt ?
4208 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4209 return error;
4210 }
4211
4212 /*
4213 * Map file blocks to filesystem blocks, adding delayed allocations as needed.
4214 */
4215 int
4216 xfs_bmapi_delay(
4217 struct xfs_inode *ip, /* incore inode */
4218 xfs_fileoff_t bno, /* starting file offs. mapped */
4219 xfs_filblks_t len, /* length to map in file */
4220 struct xfs_bmbt_irec *mval, /* output: map values */
4221 int *nmap, /* i/o: mval size/count */
4222 int flags) /* XFS_BMAPI_... */
4223 {
4224 struct xfs_mount *mp = ip->i_mount;
4225 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4226 struct xfs_bmbt_irec got; /* current file extent record */
4227 struct xfs_bmbt_irec prev; /* previous file extent record */
4228 xfs_fileoff_t obno; /* old block number (offset) */
4229 xfs_fileoff_t end; /* end of mapped file region */
4230 xfs_extnum_t lastx; /* last useful extent number */
4231 int eof; /* we've hit the end of extents */
4232 int n = 0; /* current extent index */
4233 int error = 0;
4234
4235 ASSERT(*nmap >= 1);
4236 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4237 ASSERT(!(flags & ~XFS_BMAPI_ENTIRE));
4238 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
4239
4240 if (unlikely(XFS_TEST_ERROR(
4241 (XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_EXTENTS &&
4242 XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_BTREE),
4243 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4244 XFS_ERROR_REPORT("xfs_bmapi_delay", XFS_ERRLEVEL_LOW, mp);
4245 return -EFSCORRUPTED;
4246 }
4247
4248 if (XFS_FORCED_SHUTDOWN(mp))
4249 return -EIO;
4250
4251 XFS_STATS_INC(xs_blk_mapw);
4252
4253 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4254 error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK);
4255 if (error)
4256 return error;
4257 }
4258
4259 xfs_bmap_search_extents(ip, bno, XFS_DATA_FORK, &eof, &lastx, &got, &prev);
4260 end = bno + len;
4261 obno = bno;
4262
4263 while (bno < end && n < *nmap) {
4264 if (eof || got.br_startoff > bno) {
4265 error = xfs_bmapi_reserve_delalloc(ip, bno, len, &got,
4266 &prev, &lastx, eof);
4267 if (error) {
4268 if (n == 0) {
4269 *nmap = 0;
4270 return error;
4271 }
4272 break;
4273 }
4274 }
4275
4276 /* set up the extent map to return. */
4277 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4278 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4279
4280 /* If we're done, stop now. */
4281 if (bno >= end || n >= *nmap)
4282 break;
4283
4284 /* Else go on to the next record. */
4285 prev = got;
4286 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4287 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4288 else
4289 eof = 1;
4290 }
4291
4292 *nmap = n;
4293 return 0;
4294 }
4295
4296
4297 static int
4298 xfs_bmapi_allocate(
4299 struct xfs_bmalloca *bma)
4300 {
4301 struct xfs_mount *mp = bma->ip->i_mount;
4302 int whichfork = (bma->flags & XFS_BMAPI_ATTRFORK) ?
4303 XFS_ATTR_FORK : XFS_DATA_FORK;
4304 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4305 int tmp_logflags = 0;
4306 int error;
4307
4308 ASSERT(bma->length > 0);
4309
4310 /*
4311 * For the wasdelay case, we could also just allocate the stuff asked
4312 * for in this bmap call but that wouldn't be as good.
4313 */
4314 if (bma->wasdel) {
4315 bma->length = (xfs_extlen_t)bma->got.br_blockcount;
4316 bma->offset = bma->got.br_startoff;
4317 if (bma->idx != NULLEXTNUM && bma->idx) {
4318 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1),
4319 &bma->prev);
4320 }
4321 } else {
4322 bma->length = XFS_FILBLKS_MIN(bma->length, MAXEXTLEN);
4323 if (!bma->eof)
4324 bma->length = XFS_FILBLKS_MIN(bma->length,
4325 bma->got.br_startoff - bma->offset);
4326 }
4327
4328 /*
4329 * Indicate if this is the first user data in the file, or just any
4330 * user data.
4331 */
4332 if (!(bma->flags & XFS_BMAPI_METADATA)) {
4333 bma->userdata = (bma->offset == 0) ?
4334 XFS_ALLOC_INITIAL_USER_DATA : XFS_ALLOC_USERDATA;
4335 }
4336
4337 bma->minlen = (bma->flags & XFS_BMAPI_CONTIG) ? bma->length : 1;
4338
4339 /*
4340 * Only want to do the alignment at the eof if it is userdata and
4341 * allocation length is larger than a stripe unit.
4342 */
4343 if (mp->m_dalign && bma->length >= mp->m_dalign &&
4344 !(bma->flags & XFS_BMAPI_METADATA) && whichfork == XFS_DATA_FORK) {
4345 error = xfs_bmap_isaeof(bma, whichfork);
4346 if (error)
4347 return error;
4348 }
4349
4350 error = xfs_bmap_alloc(bma);
4351 if (error)
4352 return error;
4353
4354 if (bma->flist->xbf_low)
4355 bma->minleft = 0;
4356 if (bma->cur)
4357 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4358 if (bma->blkno == NULLFSBLOCK)
4359 return 0;
4360 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4361 bma->cur = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork);
4362 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4363 bma->cur->bc_private.b.flist = bma->flist;
4364 }
4365 /*
4366 * Bump the number of extents we've allocated
4367 * in this call.
4368 */
4369 bma->nallocs++;
4370
4371 if (bma->cur)
4372 bma->cur->bc_private.b.flags =
4373 bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
4374
4375 bma->got.br_startoff = bma->offset;
4376 bma->got.br_startblock = bma->blkno;
4377 bma->got.br_blockcount = bma->length;
4378 bma->got.br_state = XFS_EXT_NORM;
4379
4380 /*
4381 * A wasdelay extent has been initialized, so shouldn't be flagged
4382 * as unwritten.
4383 */
4384 if (!bma->wasdel && (bma->flags & XFS_BMAPI_PREALLOC) &&
4385 xfs_sb_version_hasextflgbit(&mp->m_sb))
4386 bma->got.br_state = XFS_EXT_UNWRITTEN;
4387
4388 if (bma->wasdel)
4389 error = xfs_bmap_add_extent_delay_real(bma);
4390 else
4391 error = xfs_bmap_add_extent_hole_real(bma, whichfork);
4392
4393 bma->logflags |= tmp_logflags;
4394 if (error)
4395 return error;
4396
4397 /*
4398 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4399 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4400 * the neighbouring ones.
4401 */
4402 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
4403
4404 ASSERT(bma->got.br_startoff <= bma->offset);
4405 ASSERT(bma->got.br_startoff + bma->got.br_blockcount >=
4406 bma->offset + bma->length);
4407 ASSERT(bma->got.br_state == XFS_EXT_NORM ||
4408 bma->got.br_state == XFS_EXT_UNWRITTEN);
4409 return 0;
4410 }
4411
4412 STATIC int
4413 xfs_bmapi_convert_unwritten(
4414 struct xfs_bmalloca *bma,
4415 struct xfs_bmbt_irec *mval,
4416 xfs_filblks_t len,
4417 int flags)
4418 {
4419 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4420 XFS_ATTR_FORK : XFS_DATA_FORK;
4421 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4422 int tmp_logflags = 0;
4423 int error;
4424
4425 /* check if we need to do unwritten->real conversion */
4426 if (mval->br_state == XFS_EXT_UNWRITTEN &&
4427 (flags & XFS_BMAPI_PREALLOC))
4428 return 0;
4429
4430 /* check if we need to do real->unwritten conversion */
4431 if (mval->br_state == XFS_EXT_NORM &&
4432 (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) !=
4433 (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT))
4434 return 0;
4435
4436 /*
4437 * Modify (by adding) the state flag, if writing.
4438 */
4439 ASSERT(mval->br_blockcount <= len);
4440 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4441 bma->cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp,
4442 bma->ip, whichfork);
4443 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4444 bma->cur->bc_private.b.flist = bma->flist;
4445 }
4446 mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN)
4447 ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
4448
4449 error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, &bma->idx,
4450 &bma->cur, mval, bma->firstblock, bma->flist,
4451 &tmp_logflags);
4452 bma->logflags |= tmp_logflags;
4453 if (error)
4454 return error;
4455
4456 /*
4457 * Update our extent pointer, given that
4458 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4459 * of the neighbouring ones.
4460 */
4461 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
4462
4463 /*
4464 * We may have combined previously unwritten space with written space,
4465 * so generate another request.
4466 */
4467 if (mval->br_blockcount < len)
4468 return -EAGAIN;
4469 return 0;
4470 }
4471
4472 /*
4473 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4474 * extent state if necessary. Details behaviour is controlled by the flags
4475 * parameter. Only allocates blocks from a single allocation group, to avoid
4476 * locking problems.
4477 *
4478 * The returned value in "firstblock" from the first call in a transaction
4479 * must be remembered and presented to subsequent calls in "firstblock".
4480 * An upper bound for the number of blocks to be allocated is supplied to
4481 * the first call in "total"; if no allocation group has that many free
4482 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4483 */
4484 int
4485 xfs_bmapi_write(
4486 struct xfs_trans *tp, /* transaction pointer */
4487 struct xfs_inode *ip, /* incore inode */
4488 xfs_fileoff_t bno, /* starting file offs. mapped */
4489 xfs_filblks_t len, /* length to map in file */
4490 int flags, /* XFS_BMAPI_... */
4491 xfs_fsblock_t *firstblock, /* first allocated block
4492 controls a.g. for allocs */
4493 xfs_extlen_t total, /* total blocks needed */
4494 struct xfs_bmbt_irec *mval, /* output: map values */
4495 int *nmap, /* i/o: mval size/count */
4496 struct xfs_bmap_free *flist) /* i/o: list extents to free */
4497 {
4498 struct xfs_mount *mp = ip->i_mount;
4499 struct xfs_ifork *ifp;
4500 struct xfs_bmalloca bma = { NULL }; /* args for xfs_bmap_alloc */
4501 xfs_fileoff_t end; /* end of mapped file region */
4502 int eof; /* after the end of extents */
4503 int error; /* error return */
4504 int n; /* current extent index */
4505 xfs_fileoff_t obno; /* old block number (offset) */
4506 int whichfork; /* data or attr fork */
4507 char inhole; /* current location is hole in file */
4508 char wasdelay; /* old extent was delayed */
4509
4510 #ifdef DEBUG
4511 xfs_fileoff_t orig_bno; /* original block number value */
4512 int orig_flags; /* original flags arg value */
4513 xfs_filblks_t orig_len; /* original value of len arg */
4514 struct xfs_bmbt_irec *orig_mval; /* original value of mval */
4515 int orig_nmap; /* original value of *nmap */
4516
4517 orig_bno = bno;
4518 orig_len = len;
4519 orig_flags = flags;
4520 orig_mval = mval;
4521 orig_nmap = *nmap;
4522 #endif
4523 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4524 XFS_ATTR_FORK : XFS_DATA_FORK;
4525
4526 ASSERT(*nmap >= 1);
4527 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4528 ASSERT(!(flags & XFS_BMAPI_IGSTATE));
4529 ASSERT(tp != NULL);
4530 ASSERT(len > 0);
4531 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL);
4532 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
4533
4534 if (unlikely(XFS_TEST_ERROR(
4535 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4536 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
4537 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4538 XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW, mp);
4539 return -EFSCORRUPTED;
4540 }
4541
4542 if (XFS_FORCED_SHUTDOWN(mp))
4543 return -EIO;
4544
4545 ifp = XFS_IFORK_PTR(ip, whichfork);
4546
4547 XFS_STATS_INC(xs_blk_mapw);
4548
4549 if (*firstblock == NULLFSBLOCK) {
4550 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE)
4551 bma.minleft = be16_to_cpu(ifp->if_broot->bb_level) + 1;
4552 else
4553 bma.minleft = 1;
4554 } else {
4555 bma.minleft = 0;
4556 }
4557
4558 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4559 error = xfs_iread_extents(tp, ip, whichfork);
4560 if (error)
4561 goto error0;
4562 }
4563
4564 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &bma.idx, &bma.got,
4565 &bma.prev);
4566 n = 0;
4567 end = bno + len;
4568 obno = bno;
4569
4570 bma.tp = tp;
4571 bma.ip = ip;
4572 bma.total = total;
4573 bma.userdata = 0;
4574 bma.flist = flist;
4575 bma.firstblock = firstblock;
4576
4577 while (bno < end && n < *nmap) {
4578 inhole = eof || bma.got.br_startoff > bno;
4579 wasdelay = !inhole && isnullstartblock(bma.got.br_startblock);
4580
4581 /*
4582 * First, deal with the hole before the allocated space
4583 * that we found, if any.
4584 */
4585 if (inhole || wasdelay) {
4586 bma.eof = eof;
4587 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
4588 bma.wasdel = wasdelay;
4589 bma.offset = bno;
4590 bma.flags = flags;
4591
4592 /*
4593 * There's a 32/64 bit type mismatch between the
4594 * allocation length request (which can be 64 bits in
4595 * length) and the bma length request, which is
4596 * xfs_extlen_t and therefore 32 bits. Hence we have to
4597 * check for 32-bit overflows and handle them here.
4598 */
4599 if (len > (xfs_filblks_t)MAXEXTLEN)
4600 bma.length = MAXEXTLEN;
4601 else
4602 bma.length = len;
4603
4604 ASSERT(len > 0);
4605 ASSERT(bma.length > 0);
4606 error = xfs_bmapi_allocate(&bma);
4607 if (error)
4608 goto error0;
4609 if (bma.blkno == NULLFSBLOCK)
4610 break;
4611 }
4612
4613 /* Deal with the allocated space we found. */
4614 xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno,
4615 end, n, flags);
4616
4617 /* Execute unwritten extent conversion if necessary */
4618 error = xfs_bmapi_convert_unwritten(&bma, mval, len, flags);
4619 if (error == -EAGAIN)
4620 continue;
4621 if (error)
4622 goto error0;
4623
4624 /* update the extent map to return */
4625 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4626
4627 /*
4628 * If we're done, stop now. Stop when we've allocated
4629 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4630 * the transaction may get too big.
4631 */
4632 if (bno >= end || n >= *nmap || bma.nallocs >= *nmap)
4633 break;
4634
4635 /* Else go on to the next record. */
4636 bma.prev = bma.got;
4637 if (++bma.idx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t)) {
4638 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma.idx),
4639 &bma.got);
4640 } else
4641 eof = 1;
4642 }
4643 *nmap = n;
4644
4645 /*
4646 * Transform from btree to extents, give it cur.
4647 */
4648 if (xfs_bmap_wants_extents(ip, whichfork)) {
4649 int tmp_logflags = 0;
4650
4651 ASSERT(bma.cur);
4652 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur,
4653 &tmp_logflags, whichfork);
4654 bma.logflags |= tmp_logflags;
4655 if (error)
4656 goto error0;
4657 }
4658
4659 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE ||
4660 XFS_IFORK_NEXTENTS(ip, whichfork) >
4661 XFS_IFORK_MAXEXT(ip, whichfork));
4662 error = 0;
4663 error0:
4664 /*
4665 * Log everything. Do this after conversion, there's no point in
4666 * logging the extent records if we've converted to btree format.
4667 */
4668 if ((bma.logflags & xfs_ilog_fext(whichfork)) &&
4669 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
4670 bma.logflags &= ~xfs_ilog_fext(whichfork);
4671 else if ((bma.logflags & xfs_ilog_fbroot(whichfork)) &&
4672 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
4673 bma.logflags &= ~xfs_ilog_fbroot(whichfork);
4674 /*
4675 * Log whatever the flags say, even if error. Otherwise we might miss
4676 * detecting a case where the data is changed, there's an error,
4677 * and it's not logged so we don't shutdown when we should.
4678 */
4679 if (bma.logflags)
4680 xfs_trans_log_inode(tp, ip, bma.logflags);
4681
4682 if (bma.cur) {
4683 if (!error) {
4684 ASSERT(*firstblock == NULLFSBLOCK ||
4685 XFS_FSB_TO_AGNO(mp, *firstblock) ==
4686 XFS_FSB_TO_AGNO(mp,
4687 bma.cur->bc_private.b.firstblock) ||
4688 (flist->xbf_low &&
4689 XFS_FSB_TO_AGNO(mp, *firstblock) <
4690 XFS_FSB_TO_AGNO(mp,
4691 bma.cur->bc_private.b.firstblock)));
4692 *firstblock = bma.cur->bc_private.b.firstblock;
4693 }
4694 xfs_btree_del_cursor(bma.cur,
4695 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
4696 }
4697 if (!error)
4698 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
4699 orig_nmap, *nmap);
4700 return error;
4701 }
4702
4703 /*
4704 * Called by xfs_bmapi to update file extent records and the btree
4705 * after removing space (or undoing a delayed allocation).
4706 */
4707 STATIC int /* error */
4708 xfs_bmap_del_extent(
4709 xfs_inode_t *ip, /* incore inode pointer */
4710 xfs_trans_t *tp, /* current transaction pointer */
4711 xfs_extnum_t *idx, /* extent number to update/delete */
4712 xfs_bmap_free_t *flist, /* list of extents to be freed */
4713 xfs_btree_cur_t *cur, /* if null, not a btree */
4714 xfs_bmbt_irec_t *del, /* data to remove from extents */
4715 int *logflagsp, /* inode logging flags */
4716 int whichfork) /* data or attr fork */
4717 {
4718 xfs_filblks_t da_new; /* new delay-alloc indirect blocks */
4719 xfs_filblks_t da_old; /* old delay-alloc indirect blocks */
4720 xfs_fsblock_t del_endblock=0; /* first block past del */
4721 xfs_fileoff_t del_endoff; /* first offset past del */
4722 int delay; /* current block is delayed allocated */
4723 int do_fx; /* free extent at end of routine */
4724 xfs_bmbt_rec_host_t *ep; /* current extent entry pointer */
4725 int error; /* error return value */
4726 int flags; /* inode logging flags */
4727 xfs_bmbt_irec_t got; /* current extent entry */
4728 xfs_fileoff_t got_endoff; /* first offset past got */
4729 int i; /* temp state */
4730 xfs_ifork_t *ifp; /* inode fork pointer */
4731 xfs_mount_t *mp; /* mount structure */
4732 xfs_filblks_t nblks; /* quota/sb block count */
4733 xfs_bmbt_irec_t new; /* new record to be inserted */
4734 /* REFERENCED */
4735 uint qfield; /* quota field to update */
4736 xfs_filblks_t temp; /* for indirect length calculations */
4737 xfs_filblks_t temp2; /* for indirect length calculations */
4738 int state = 0;
4739
4740 XFS_STATS_INC(xs_del_exlist);
4741
4742 if (whichfork == XFS_ATTR_FORK)
4743 state |= BMAP_ATTRFORK;
4744
4745 mp = ip->i_mount;
4746 ifp = XFS_IFORK_PTR(ip, whichfork);
4747 ASSERT((*idx >= 0) && (*idx < ifp->if_bytes /
4748 (uint)sizeof(xfs_bmbt_rec_t)));
4749 ASSERT(del->br_blockcount > 0);
4750 ep = xfs_iext_get_ext(ifp, *idx);
4751 xfs_bmbt_get_all(ep, &got);
4752 ASSERT(got.br_startoff <= del->br_startoff);
4753 del_endoff = del->br_startoff + del->br_blockcount;
4754 got_endoff = got.br_startoff + got.br_blockcount;
4755 ASSERT(got_endoff >= del_endoff);
4756 delay = isnullstartblock(got.br_startblock);
4757 ASSERT(isnullstartblock(del->br_startblock) == delay);
4758 flags = 0;
4759 qfield = 0;
4760 error = 0;
4761 /*
4762 * If deleting a real allocation, must free up the disk space.
4763 */
4764 if (!delay) {
4765 flags = XFS_ILOG_CORE;
4766 /*
4767 * Realtime allocation. Free it and record di_nblocks update.
4768 */
4769 if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) {
4770 xfs_fsblock_t bno;
4771 xfs_filblks_t len;
4772
4773 ASSERT(do_mod(del->br_blockcount,
4774 mp->m_sb.sb_rextsize) == 0);
4775 ASSERT(do_mod(del->br_startblock,
4776 mp->m_sb.sb_rextsize) == 0);
4777 bno = del->br_startblock;
4778 len = del->br_blockcount;
4779 do_div(bno, mp->m_sb.sb_rextsize);
4780 do_div(len, mp->m_sb.sb_rextsize);
4781 error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len);
4782 if (error)
4783 goto done;
4784 do_fx = 0;
4785 nblks = len * mp->m_sb.sb_rextsize;
4786 qfield = XFS_TRANS_DQ_RTBCOUNT;
4787 }
4788 /*
4789 * Ordinary allocation.
4790 */
4791 else {
4792 do_fx = 1;
4793 nblks = del->br_blockcount;
4794 qfield = XFS_TRANS_DQ_BCOUNT;
4795 }
4796 /*
4797 * Set up del_endblock and cur for later.
4798 */
4799 del_endblock = del->br_startblock + del->br_blockcount;
4800 if (cur) {
4801 if ((error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
4802 got.br_startblock, got.br_blockcount,
4803 &i)))
4804 goto done;
4805 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
4806 }
4807 da_old = da_new = 0;
4808 } else {
4809 da_old = startblockval(got.br_startblock);
4810 da_new = 0;
4811 nblks = 0;
4812 do_fx = 0;
4813 }
4814 /*
4815 * Set flag value to use in switch statement.
4816 * Left-contig is 2, right-contig is 1.
4817 */
4818 switch (((got.br_startoff == del->br_startoff) << 1) |
4819 (got_endoff == del_endoff)) {
4820 case 3:
4821 /*
4822 * Matches the whole extent. Delete the entry.
4823 */
4824 xfs_iext_remove(ip, *idx, 1,
4825 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0);
4826 --*idx;
4827 if (delay)
4828 break;
4829
4830 XFS_IFORK_NEXT_SET(ip, whichfork,
4831 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
4832 flags |= XFS_ILOG_CORE;
4833 if (!cur) {
4834 flags |= xfs_ilog_fext(whichfork);
4835 break;
4836 }
4837 if ((error = xfs_btree_delete(cur, &i)))
4838 goto done;
4839 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
4840 break;
4841
4842 case 2:
4843 /*
4844 * Deleting the first part of the extent.
4845 */
4846 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4847 xfs_bmbt_set_startoff(ep, del_endoff);
4848 temp = got.br_blockcount - del->br_blockcount;
4849 xfs_bmbt_set_blockcount(ep, temp);
4850 if (delay) {
4851 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4852 da_old);
4853 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4854 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4855 da_new = temp;
4856 break;
4857 }
4858 xfs_bmbt_set_startblock(ep, del_endblock);
4859 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4860 if (!cur) {
4861 flags |= xfs_ilog_fext(whichfork);
4862 break;
4863 }
4864 if ((error = xfs_bmbt_update(cur, del_endoff, del_endblock,
4865 got.br_blockcount - del->br_blockcount,
4866 got.br_state)))
4867 goto done;
4868 break;
4869
4870 case 1:
4871 /*
4872 * Deleting the last part of the extent.
4873 */
4874 temp = got.br_blockcount - del->br_blockcount;
4875 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4876 xfs_bmbt_set_blockcount(ep, temp);
4877 if (delay) {
4878 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4879 da_old);
4880 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4881 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4882 da_new = temp;
4883 break;
4884 }
4885 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4886 if (!cur) {
4887 flags |= xfs_ilog_fext(whichfork);
4888 break;
4889 }
4890 if ((error = xfs_bmbt_update(cur, got.br_startoff,
4891 got.br_startblock,
4892 got.br_blockcount - del->br_blockcount,
4893 got.br_state)))
4894 goto done;
4895 break;
4896
4897 case 0:
4898 /*
4899 * Deleting the middle of the extent.
4900 */
4901 temp = del->br_startoff - got.br_startoff;
4902 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4903 xfs_bmbt_set_blockcount(ep, temp);
4904 new.br_startoff = del_endoff;
4905 temp2 = got_endoff - del_endoff;
4906 new.br_blockcount = temp2;
4907 new.br_state = got.br_state;
4908 if (!delay) {
4909 new.br_startblock = del_endblock;
4910 flags |= XFS_ILOG_CORE;
4911 if (cur) {
4912 if ((error = xfs_bmbt_update(cur,
4913 got.br_startoff,
4914 got.br_startblock, temp,
4915 got.br_state)))
4916 goto done;
4917 if ((error = xfs_btree_increment(cur, 0, &i)))
4918 goto done;
4919 cur->bc_rec.b = new;
4920 error = xfs_btree_insert(cur, &i);
4921 if (error && error != -ENOSPC)
4922 goto done;
4923 /*
4924 * If get no-space back from btree insert,
4925 * it tried a split, and we have a zero
4926 * block reservation.
4927 * Fix up our state and return the error.
4928 */
4929 if (error == -ENOSPC) {
4930 /*
4931 * Reset the cursor, don't trust
4932 * it after any insert operation.
4933 */
4934 if ((error = xfs_bmbt_lookup_eq(cur,
4935 got.br_startoff,
4936 got.br_startblock,
4937 temp, &i)))
4938 goto done;
4939 XFS_WANT_CORRUPTED_GOTO(mp,
4940 i == 1, done);
4941 /*
4942 * Update the btree record back
4943 * to the original value.
4944 */
4945 if ((error = xfs_bmbt_update(cur,
4946 got.br_startoff,
4947 got.br_startblock,
4948 got.br_blockcount,
4949 got.br_state)))
4950 goto done;
4951 /*
4952 * Reset the extent record back
4953 * to the original value.
4954 */
4955 xfs_bmbt_set_blockcount(ep,
4956 got.br_blockcount);
4957 flags = 0;
4958 error = -ENOSPC;
4959 goto done;
4960 }
4961 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
4962 } else
4963 flags |= xfs_ilog_fext(whichfork);
4964 XFS_IFORK_NEXT_SET(ip, whichfork,
4965 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
4966 } else {
4967 ASSERT(whichfork == XFS_DATA_FORK);
4968 temp = xfs_bmap_worst_indlen(ip, temp);
4969 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4970 temp2 = xfs_bmap_worst_indlen(ip, temp2);
4971 new.br_startblock = nullstartblock((int)temp2);
4972 da_new = temp + temp2;
4973 while (da_new > da_old) {
4974 if (temp) {
4975 temp--;
4976 da_new--;
4977 xfs_bmbt_set_startblock(ep,
4978 nullstartblock((int)temp));
4979 }
4980 if (da_new == da_old)
4981 break;
4982 if (temp2) {
4983 temp2--;
4984 da_new--;
4985 new.br_startblock =
4986 nullstartblock((int)temp2);
4987 }
4988 }
4989 }
4990 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4991 xfs_iext_insert(ip, *idx + 1, 1, &new, state);
4992 ++*idx;
4993 break;
4994 }
4995 /*
4996 * If we need to, add to list of extents to delete.
4997 */
4998 if (do_fx)
4999 xfs_bmap_add_free(del->br_startblock, del->br_blockcount, flist,
5000 mp);
5001 /*
5002 * Adjust inode # blocks in the file.
5003 */
5004 if (nblks)
5005 ip->i_d.di_nblocks -= nblks;
5006 /*
5007 * Adjust quota data.
5008 */
5009 if (qfield)
5010 xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks);
5011
5012 /*
5013 * Account for change in delayed indirect blocks.
5014 * Nothing to do for disk quota accounting here.
5015 */
5016 ASSERT(da_old >= da_new);
5017 if (da_old > da_new)
5018 xfs_mod_fdblocks(mp, (int64_t)(da_old - da_new), false);
5019 done:
5020 *logflagsp = flags;
5021 return error;
5022 }
5023
5024 /*
5025 * Unmap (remove) blocks from a file.
5026 * If nexts is nonzero then the number of extents to remove is limited to
5027 * that value. If not all extents in the block range can be removed then
5028 * *done is set.
5029 */
5030 int /* error */
5031 xfs_bunmapi(
5032 xfs_trans_t *tp, /* transaction pointer */
5033 struct xfs_inode *ip, /* incore inode */
5034 xfs_fileoff_t bno, /* starting offset to unmap */
5035 xfs_filblks_t len, /* length to unmap in file */
5036 int flags, /* misc flags */
5037 xfs_extnum_t nexts, /* number of extents max */
5038 xfs_fsblock_t *firstblock, /* first allocated block
5039 controls a.g. for allocs */
5040 xfs_bmap_free_t *flist, /* i/o: list extents to free */
5041 int *done) /* set if not done yet */
5042 {
5043 xfs_btree_cur_t *cur; /* bmap btree cursor */
5044 xfs_bmbt_irec_t del; /* extent being deleted */
5045 int eof; /* is deleting at eof */
5046 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
5047 int error; /* error return value */
5048 xfs_extnum_t extno; /* extent number in list */
5049 xfs_bmbt_irec_t got; /* current extent record */
5050 xfs_ifork_t *ifp; /* inode fork pointer */
5051 int isrt; /* freeing in rt area */
5052 xfs_extnum_t lastx; /* last extent index used */
5053 int logflags; /* transaction logging flags */
5054 xfs_extlen_t mod; /* rt extent offset */
5055 xfs_mount_t *mp; /* mount structure */
5056 xfs_extnum_t nextents; /* number of file extents */
5057 xfs_bmbt_irec_t prev; /* previous extent record */
5058 xfs_fileoff_t start; /* first file offset deleted */
5059 int tmp_logflags; /* partial logging flags */
5060 int wasdel; /* was a delayed alloc extent */
5061 int whichfork; /* data or attribute fork */
5062 xfs_fsblock_t sum;
5063
5064 trace_xfs_bunmap(ip, bno, len, flags, _RET_IP_);
5065
5066 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
5067 XFS_ATTR_FORK : XFS_DATA_FORK;
5068 ifp = XFS_IFORK_PTR(ip, whichfork);
5069 if (unlikely(
5070 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5071 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
5072 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW,
5073 ip->i_mount);
5074 return -EFSCORRUPTED;
5075 }
5076 mp = ip->i_mount;
5077 if (XFS_FORCED_SHUTDOWN(mp))
5078 return -EIO;
5079
5080 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
5081 ASSERT(len > 0);
5082 ASSERT(nexts >= 0);
5083
5084 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5085 (error = xfs_iread_extents(tp, ip, whichfork)))
5086 return error;
5087 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5088 if (nextents == 0) {
5089 *done = 1;
5090 return 0;
5091 }
5092 XFS_STATS_INC(xs_blk_unmap);
5093 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
5094 start = bno;
5095 bno = start + len - 1;
5096 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
5097 &prev);
5098
5099 /*
5100 * Check to see if the given block number is past the end of the
5101 * file, back up to the last block if so...
5102 */
5103 if (eof) {
5104 ep = xfs_iext_get_ext(ifp, --lastx);
5105 xfs_bmbt_get_all(ep, &got);
5106 bno = got.br_startoff + got.br_blockcount - 1;
5107 }
5108 logflags = 0;
5109 if (ifp->if_flags & XFS_IFBROOT) {
5110 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
5111 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5112 cur->bc_private.b.firstblock = *firstblock;
5113 cur->bc_private.b.flist = flist;
5114 cur->bc_private.b.flags = 0;
5115 } else
5116 cur = NULL;
5117
5118 if (isrt) {
5119 /*
5120 * Synchronize by locking the bitmap inode.
5121 */
5122 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL);
5123 xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
5124 }
5125
5126 extno = 0;
5127 while (bno != (xfs_fileoff_t)-1 && bno >= start && lastx >= 0 &&
5128 (nexts == 0 || extno < nexts)) {
5129 /*
5130 * Is the found extent after a hole in which bno lives?
5131 * Just back up to the previous extent, if so.
5132 */
5133 if (got.br_startoff > bno) {
5134 if (--lastx < 0)
5135 break;
5136 ep = xfs_iext_get_ext(ifp, lastx);
5137 xfs_bmbt_get_all(ep, &got);
5138 }
5139 /*
5140 * Is the last block of this extent before the range
5141 * we're supposed to delete? If so, we're done.
5142 */
5143 bno = XFS_FILEOFF_MIN(bno,
5144 got.br_startoff + got.br_blockcount - 1);
5145 if (bno < start)
5146 break;
5147 /*
5148 * Then deal with the (possibly delayed) allocated space
5149 * we found.
5150 */
5151 ASSERT(ep != NULL);
5152 del = got;
5153 wasdel = isnullstartblock(del.br_startblock);
5154 if (got.br_startoff < start) {
5155 del.br_startoff = start;
5156 del.br_blockcount -= start - got.br_startoff;
5157 if (!wasdel)
5158 del.br_startblock += start - got.br_startoff;
5159 }
5160 if (del.br_startoff + del.br_blockcount > bno + 1)
5161 del.br_blockcount = bno + 1 - del.br_startoff;
5162 sum = del.br_startblock + del.br_blockcount;
5163 if (isrt &&
5164 (mod = do_mod(sum, mp->m_sb.sb_rextsize))) {
5165 /*
5166 * Realtime extent not lined up at the end.
5167 * The extent could have been split into written
5168 * and unwritten pieces, or we could just be
5169 * unmapping part of it. But we can't really
5170 * get rid of part of a realtime extent.
5171 */
5172 if (del.br_state == XFS_EXT_UNWRITTEN ||
5173 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
5174 /*
5175 * This piece is unwritten, or we're not
5176 * using unwritten extents. Skip over it.
5177 */
5178 ASSERT(bno >= mod);
5179 bno -= mod > del.br_blockcount ?
5180 del.br_blockcount : mod;
5181 if (bno < got.br_startoff) {
5182 if (--lastx >= 0)
5183 xfs_bmbt_get_all(xfs_iext_get_ext(
5184 ifp, lastx), &got);
5185 }
5186 continue;
5187 }
5188 /*
5189 * It's written, turn it unwritten.
5190 * This is better than zeroing it.
5191 */
5192 ASSERT(del.br_state == XFS_EXT_NORM);
5193 ASSERT(xfs_trans_get_block_res(tp) > 0);
5194 /*
5195 * If this spans a realtime extent boundary,
5196 * chop it back to the start of the one we end at.
5197 */
5198 if (del.br_blockcount > mod) {
5199 del.br_startoff += del.br_blockcount - mod;
5200 del.br_startblock += del.br_blockcount - mod;
5201 del.br_blockcount = mod;
5202 }
5203 del.br_state = XFS_EXT_UNWRITTEN;
5204 error = xfs_bmap_add_extent_unwritten_real(tp, ip,
5205 &lastx, &cur, &del, firstblock, flist,
5206 &logflags);
5207 if (error)
5208 goto error0;
5209 goto nodelete;
5210 }
5211 if (isrt && (mod = do_mod(del.br_startblock, mp->m_sb.sb_rextsize))) {
5212 /*
5213 * Realtime extent is lined up at the end but not
5214 * at the front. We'll get rid of full extents if
5215 * we can.
5216 */
5217 mod = mp->m_sb.sb_rextsize - mod;
5218 if (del.br_blockcount > mod) {
5219 del.br_blockcount -= mod;
5220 del.br_startoff += mod;
5221 del.br_startblock += mod;
5222 } else if ((del.br_startoff == start &&
5223 (del.br_state == XFS_EXT_UNWRITTEN ||
5224 xfs_trans_get_block_res(tp) == 0)) ||
5225 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
5226 /*
5227 * Can't make it unwritten. There isn't
5228 * a full extent here so just skip it.
5229 */
5230 ASSERT(bno >= del.br_blockcount);
5231 bno -= del.br_blockcount;
5232 if (got.br_startoff > bno) {
5233 if (--lastx >= 0) {
5234 ep = xfs_iext_get_ext(ifp,
5235 lastx);
5236 xfs_bmbt_get_all(ep, &got);
5237 }
5238 }
5239 continue;
5240 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
5241 /*
5242 * This one is already unwritten.
5243 * It must have a written left neighbor.
5244 * Unwrite the killed part of that one and
5245 * try again.
5246 */
5247 ASSERT(lastx > 0);
5248 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5249 lastx - 1), &prev);
5250 ASSERT(prev.br_state == XFS_EXT_NORM);
5251 ASSERT(!isnullstartblock(prev.br_startblock));
5252 ASSERT(del.br_startblock ==
5253 prev.br_startblock + prev.br_blockcount);
5254 if (prev.br_startoff < start) {
5255 mod = start - prev.br_startoff;
5256 prev.br_blockcount -= mod;
5257 prev.br_startblock += mod;
5258 prev.br_startoff = start;
5259 }
5260 prev.br_state = XFS_EXT_UNWRITTEN;
5261 lastx--;
5262 error = xfs_bmap_add_extent_unwritten_real(tp,
5263 ip, &lastx, &cur, &prev,
5264 firstblock, flist, &logflags);
5265 if (error)
5266 goto error0;
5267 goto nodelete;
5268 } else {
5269 ASSERT(del.br_state == XFS_EXT_NORM);
5270 del.br_state = XFS_EXT_UNWRITTEN;
5271 error = xfs_bmap_add_extent_unwritten_real(tp,
5272 ip, &lastx, &cur, &del,
5273 firstblock, flist, &logflags);
5274 if (error)
5275 goto error0;
5276 goto nodelete;
5277 }
5278 }
5279 if (wasdel) {
5280 ASSERT(startblockval(del.br_startblock) > 0);
5281 /* Update realtime/data freespace, unreserve quota */
5282 if (isrt) {
5283 xfs_filblks_t rtexts;
5284
5285 rtexts = XFS_FSB_TO_B(mp, del.br_blockcount);
5286 do_div(rtexts, mp->m_sb.sb_rextsize);
5287 xfs_mod_frextents(mp, (int64_t)rtexts);
5288 (void)xfs_trans_reserve_quota_nblks(NULL,
5289 ip, -((long)del.br_blockcount), 0,
5290 XFS_QMOPT_RES_RTBLKS);
5291 } else {
5292 xfs_mod_fdblocks(mp, (int64_t)del.br_blockcount,
5293 false);
5294 (void)xfs_trans_reserve_quota_nblks(NULL,
5295 ip, -((long)del.br_blockcount), 0,
5296 XFS_QMOPT_RES_REGBLKS);
5297 }
5298 ip->i_delayed_blks -= del.br_blockcount;
5299 if (cur)
5300 cur->bc_private.b.flags |=
5301 XFS_BTCUR_BPRV_WASDEL;
5302 } else if (cur)
5303 cur->bc_private.b.flags &= ~XFS_BTCUR_BPRV_WASDEL;
5304 /*
5305 * If it's the case where the directory code is running
5306 * with no block reservation, and the deleted block is in
5307 * the middle of its extent, and the resulting insert
5308 * of an extent would cause transformation to btree format,
5309 * then reject it. The calling code will then swap
5310 * blocks around instead.
5311 * We have to do this now, rather than waiting for the
5312 * conversion to btree format, since the transaction
5313 * will be dirty.
5314 */
5315 if (!wasdel && xfs_trans_get_block_res(tp) == 0 &&
5316 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
5317 XFS_IFORK_NEXTENTS(ip, whichfork) >= /* Note the >= */
5318 XFS_IFORK_MAXEXT(ip, whichfork) &&
5319 del.br_startoff > got.br_startoff &&
5320 del.br_startoff + del.br_blockcount <
5321 got.br_startoff + got.br_blockcount) {
5322 error = -ENOSPC;
5323 goto error0;
5324 }
5325 error = xfs_bmap_del_extent(ip, tp, &lastx, flist, cur, &del,
5326 &tmp_logflags, whichfork);
5327 logflags |= tmp_logflags;
5328 if (error)
5329 goto error0;
5330 bno = del.br_startoff - 1;
5331 nodelete:
5332 /*
5333 * If not done go on to the next (previous) record.
5334 */
5335 if (bno != (xfs_fileoff_t)-1 && bno >= start) {
5336 if (lastx >= 0) {
5337 ep = xfs_iext_get_ext(ifp, lastx);
5338 if (xfs_bmbt_get_startoff(ep) > bno) {
5339 if (--lastx >= 0)
5340 ep = xfs_iext_get_ext(ifp,
5341 lastx);
5342 }
5343 xfs_bmbt_get_all(ep, &got);
5344 }
5345 extno++;
5346 }
5347 }
5348 *done = bno == (xfs_fileoff_t)-1 || bno < start || lastx < 0;
5349
5350 /*
5351 * Convert to a btree if necessary.
5352 */
5353 if (xfs_bmap_needs_btree(ip, whichfork)) {
5354 ASSERT(cur == NULL);
5355 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist,
5356 &cur, 0, &tmp_logflags, whichfork);
5357 logflags |= tmp_logflags;
5358 if (error)
5359 goto error0;
5360 }
5361 /*
5362 * transform from btree to extents, give it cur
5363 */
5364 else if (xfs_bmap_wants_extents(ip, whichfork)) {
5365 ASSERT(cur != NULL);
5366 error = xfs_bmap_btree_to_extents(tp, ip, cur, &tmp_logflags,
5367 whichfork);
5368 logflags |= tmp_logflags;
5369 if (error)
5370 goto error0;
5371 }
5372 /*
5373 * transform from extents to local?
5374 */
5375 error = 0;
5376 error0:
5377 /*
5378 * Log everything. Do this after conversion, there's no point in
5379 * logging the extent records if we've converted to btree format.
5380 */
5381 if ((logflags & xfs_ilog_fext(whichfork)) &&
5382 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
5383 logflags &= ~xfs_ilog_fext(whichfork);
5384 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
5385 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
5386 logflags &= ~xfs_ilog_fbroot(whichfork);
5387 /*
5388 * Log inode even in the error case, if the transaction
5389 * is dirty we'll need to shut down the filesystem.
5390 */
5391 if (logflags)
5392 xfs_trans_log_inode(tp, ip, logflags);
5393 if (cur) {
5394 if (!error) {
5395 *firstblock = cur->bc_private.b.firstblock;
5396 cur->bc_private.b.allocated = 0;
5397 }
5398 xfs_btree_del_cursor(cur,
5399 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5400 }
5401 return error;
5402 }
5403
5404 /*
5405 * Determine whether an extent shift can be accomplished by a merge with the
5406 * extent that precedes the target hole of the shift.
5407 */
5408 STATIC bool
5409 xfs_bmse_can_merge(
5410 struct xfs_bmbt_irec *left, /* preceding extent */
5411 struct xfs_bmbt_irec *got, /* current extent to shift */
5412 xfs_fileoff_t shift) /* shift fsb */
5413 {
5414 xfs_fileoff_t startoff;
5415
5416 startoff = got->br_startoff - shift;
5417
5418 /*
5419 * The extent, once shifted, must be adjacent in-file and on-disk with
5420 * the preceding extent.
5421 */
5422 if ((left->br_startoff + left->br_blockcount != startoff) ||
5423 (left->br_startblock + left->br_blockcount != got->br_startblock) ||
5424 (left->br_state != got->br_state) ||
5425 (left->br_blockcount + got->br_blockcount > MAXEXTLEN))
5426 return false;
5427
5428 return true;
5429 }
5430
5431 /*
5432 * A bmap extent shift adjusts the file offset of an extent to fill a preceding
5433 * hole in the file. If an extent shift would result in the extent being fully
5434 * adjacent to the extent that currently precedes the hole, we can merge with
5435 * the preceding extent rather than do the shift.
5436 *
5437 * This function assumes the caller has verified a shift-by-merge is possible
5438 * with the provided extents via xfs_bmse_can_merge().
5439 */
5440 STATIC int
5441 xfs_bmse_merge(
5442 struct xfs_inode *ip,
5443 int whichfork,
5444 xfs_fileoff_t shift, /* shift fsb */
5445 int current_ext, /* idx of gotp */
5446 struct xfs_bmbt_rec_host *gotp, /* extent to shift */
5447 struct xfs_bmbt_rec_host *leftp, /* preceding extent */
5448 struct xfs_btree_cur *cur,
5449 int *logflags) /* output */
5450 {
5451 struct xfs_bmbt_irec got;
5452 struct xfs_bmbt_irec left;
5453 xfs_filblks_t blockcount;
5454 int error, i;
5455 struct xfs_mount *mp = ip->i_mount;
5456
5457 xfs_bmbt_get_all(gotp, &got);
5458 xfs_bmbt_get_all(leftp, &left);
5459 blockcount = left.br_blockcount + got.br_blockcount;
5460
5461 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
5462 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
5463 ASSERT(xfs_bmse_can_merge(&left, &got, shift));
5464
5465 /*
5466 * Merge the in-core extents. Note that the host record pointers and
5467 * current_ext index are invalid once the extent has been removed via
5468 * xfs_iext_remove().
5469 */
5470 xfs_bmbt_set_blockcount(leftp, blockcount);
5471 xfs_iext_remove(ip, current_ext, 1, 0);
5472
5473 /*
5474 * Update the on-disk extent count, the btree if necessary and log the
5475 * inode.
5476 */
5477 XFS_IFORK_NEXT_SET(ip, whichfork,
5478 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
5479 *logflags |= XFS_ILOG_CORE;
5480 if (!cur) {
5481 *logflags |= XFS_ILOG_DEXT;
5482 return 0;
5483 }
5484
5485 /* lookup and remove the extent to merge */
5486 error = xfs_bmbt_lookup_eq(cur, got.br_startoff, got.br_startblock,
5487 got.br_blockcount, &i);
5488 if (error)
5489 return error;
5490 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
5491
5492 error = xfs_btree_delete(cur, &i);
5493 if (error)
5494 return error;
5495 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
5496
5497 /* lookup and update size of the previous extent */
5498 error = xfs_bmbt_lookup_eq(cur, left.br_startoff, left.br_startblock,
5499 left.br_blockcount, &i);
5500 if (error)
5501 return error;
5502 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
5503
5504 left.br_blockcount = blockcount;
5505
5506 return xfs_bmbt_update(cur, left.br_startoff, left.br_startblock,
5507 left.br_blockcount, left.br_state);
5508 }
5509
5510 /*
5511 * Shift a single extent.
5512 */
5513 STATIC int
5514 xfs_bmse_shift_one(
5515 struct xfs_inode *ip,
5516 int whichfork,
5517 xfs_fileoff_t offset_shift_fsb,
5518 int *current_ext,
5519 struct xfs_bmbt_rec_host *gotp,
5520 struct xfs_btree_cur *cur,
5521 int *logflags)
5522 {
5523 struct xfs_ifork *ifp;
5524 struct xfs_mount *mp;
5525 xfs_fileoff_t startoff;
5526 struct xfs_bmbt_rec_host *leftp;
5527 struct xfs_bmbt_irec got;
5528 struct xfs_bmbt_irec left;
5529 int error;
5530 int i;
5531
5532 mp = ip->i_mount;
5533 ifp = XFS_IFORK_PTR(ip, whichfork);
5534
5535 xfs_bmbt_get_all(gotp, &got);
5536 startoff = got.br_startoff - offset_shift_fsb;
5537
5538 /* delalloc extents should be prevented by caller */
5539 XFS_WANT_CORRUPTED_RETURN(mp, !isnullstartblock(got.br_startblock));
5540
5541 /*
5542 * Check for merge if we've got an extent to the left, otherwise make
5543 * sure there's enough room at the start of the file for the shift.
5544 */
5545 if (*current_ext) {
5546 /* grab the left extent and check for a large enough hole */
5547 leftp = xfs_iext_get_ext(ifp, *current_ext - 1);
5548 xfs_bmbt_get_all(leftp, &left);
5549
5550 if (startoff < left.br_startoff + left.br_blockcount)
5551 return -EINVAL;
5552
5553 /* check whether to merge the extent or shift it down */
5554 if (xfs_bmse_can_merge(&left, &got, offset_shift_fsb)) {
5555 return xfs_bmse_merge(ip, whichfork, offset_shift_fsb,
5556 *current_ext, gotp, leftp, cur,
5557 logflags);
5558 }
5559 } else if (got.br_startoff < offset_shift_fsb)
5560 return -EINVAL;
5561
5562 /*
5563 * Increment the extent index for the next iteration, update the start
5564 * offset of the in-core extent and update the btree if applicable.
5565 */
5566 (*current_ext)++;
5567 xfs_bmbt_set_startoff(gotp, startoff);
5568 *logflags |= XFS_ILOG_CORE;
5569 if (!cur) {
5570 *logflags |= XFS_ILOG_DEXT;
5571 return 0;
5572 }
5573
5574 error = xfs_bmbt_lookup_eq(cur, got.br_startoff, got.br_startblock,
5575 got.br_blockcount, &i);
5576 if (error)
5577 return error;
5578 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
5579
5580 got.br_startoff = startoff;
5581 return xfs_bmbt_update(cur, got.br_startoff, got.br_startblock,
5582 got.br_blockcount, got.br_state);
5583 }
5584
5585 /*
5586 * Shift extent records to the left to cover a hole.
5587 *
5588 * The maximum number of extents to be shifted in a single operation is
5589 * @num_exts. @start_fsb specifies the file offset to start the shift and the
5590 * file offset where we've left off is returned in @next_fsb. @offset_shift_fsb
5591 * is the length by which each extent is shifted. If there is no hole to shift
5592 * the extents into, this will be considered invalid operation and we abort
5593 * immediately.
5594 */
5595 int
5596 xfs_bmap_shift_extents(
5597 struct xfs_trans *tp,
5598 struct xfs_inode *ip,
5599 xfs_fileoff_t start_fsb,
5600 xfs_fileoff_t offset_shift_fsb,
5601 int *done,
5602 xfs_fileoff_t *next_fsb,
5603 xfs_fsblock_t *firstblock,
5604 struct xfs_bmap_free *flist,
5605 int num_exts)
5606 {
5607 struct xfs_btree_cur *cur = NULL;
5608 struct xfs_bmbt_rec_host *gotp;
5609 struct xfs_bmbt_irec got;
5610 struct xfs_mount *mp = ip->i_mount;
5611 struct xfs_ifork *ifp;
5612 xfs_extnum_t nexts = 0;
5613 xfs_extnum_t current_ext;
5614 int error = 0;
5615 int whichfork = XFS_DATA_FORK;
5616 int logflags = 0;
5617 int total_extents;
5618
5619 if (unlikely(XFS_TEST_ERROR(
5620 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5621 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
5622 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
5623 XFS_ERROR_REPORT("xfs_bmap_shift_extents",
5624 XFS_ERRLEVEL_LOW, mp);
5625 return -EFSCORRUPTED;
5626 }
5627
5628 if (XFS_FORCED_SHUTDOWN(mp))
5629 return -EIO;
5630
5631 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
5632 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
5633
5634 ifp = XFS_IFORK_PTR(ip, whichfork);
5635 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5636 /* Read in all the extents */
5637 error = xfs_iread_extents(tp, ip, whichfork);
5638 if (error)
5639 return error;
5640 }
5641
5642 if (ifp->if_flags & XFS_IFBROOT) {
5643 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5644 cur->bc_private.b.firstblock = *firstblock;
5645 cur->bc_private.b.flist = flist;
5646 cur->bc_private.b.flags = 0;
5647 }
5648
5649 /*
5650 * Look up the extent index for the fsb where we start shifting. We can
5651 * henceforth iterate with current_ext as extent list changes are locked
5652 * out via ilock.
5653 *
5654 * gotp can be null in 2 cases: 1) if there are no extents or 2)
5655 * start_fsb lies in a hole beyond which there are no extents. Either
5656 * way, we are done.
5657 */
5658 gotp = xfs_iext_bno_to_ext(ifp, start_fsb, &current_ext);
5659 if (!gotp) {
5660 *done = 1;
5661 goto del_cursor;
5662 }
5663
5664 /*
5665 * There may be delalloc extents in the data fork before the range we
5666 * are collapsing out, so we cannot use the count of real extents here.
5667 * Instead we have to calculate it from the incore fork.
5668 */
5669 total_extents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
5670 while (nexts++ < num_exts && current_ext < total_extents) {
5671 error = xfs_bmse_shift_one(ip, whichfork, offset_shift_fsb,
5672 &current_ext, gotp, cur, &logflags);
5673 if (error)
5674 goto del_cursor;
5675
5676 /* update total extent count and grab the next record */
5677 total_extents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
5678 if (current_ext >= total_extents)
5679 break;
5680 gotp = xfs_iext_get_ext(ifp, current_ext);
5681 }
5682
5683 /* Check if we are done */
5684 if (current_ext == total_extents) {
5685 *done = 1;
5686 } else if (next_fsb) {
5687 xfs_bmbt_get_all(gotp, &got);
5688 *next_fsb = got.br_startoff;
5689 }
5690
5691 del_cursor:
5692 if (cur)
5693 xfs_btree_del_cursor(cur,
5694 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5695
5696 if (logflags)
5697 xfs_trans_log_inode(tp, ip, logflags);
5698
5699 return error;
5700 }
This page took 0.155559 seconds and 5 git commands to generate.