]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libxfs/xfs_bmap.c
xfs: Compute bmap extent alignments in a separate function
[thirdparty/xfsprogs-dev.git] / libxfs / xfs_bmap.c
CommitLineData
37b3b4d6 1// SPDX-License-Identifier: GPL-2.0
2bd0ea18 2/*
5e656dbb 3 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
da23017d 4 * All Rights Reserved.
2bd0ea18 5 */
9c799827 6#include "libxfs_priv.h"
b626fb59
DC
7#include "xfs_fs.h"
8#include "xfs_shared.h"
9#include "xfs_format.h"
10#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
12#include "xfs_bit.h"
13#include "xfs_sb.h"
14#include "xfs_mount.h"
f944d3d0 15#include "xfs_defer.h"
b626fb59
DC
16#include "xfs_dir2.h"
17#include "xfs_inode.h"
18#include "xfs_btree.h"
19#include "xfs_trans.h"
20#include "xfs_alloc.h"
21#include "xfs_bmap.h"
22#include "xfs_bmap_btree.h"
2cf10e4c 23#include "xfs_errortag.h"
b626fb59
DC
24#include "xfs_trans_space.h"
25#include "xfs_trace.h"
26#include "xfs_attr_leaf.h"
27#include "xfs_quota_defs.h"
85aec44f 28#include "xfs_rmap.h"
cf8ce220 29#include "xfs_ag_resv.h"
cfe32f0d 30#include "xfs_refcount.h"
b626fb59 31
2bd0ea18 32
5e656dbb
BN
33kmem_zone_t *xfs_bmap_free_item_zone;
34
35/*
49f693fa 36 * Miscellaneous helper functions
5e656dbb 37 */
5e656dbb 38
5e656dbb 39/*
49f693fa
DC
40 * Compute and fill in the value of the maximum depth of a bmap btree
41 * in this filesystem. Done once, during mount.
5e656dbb 42 */
49f693fa
DC
43void
44xfs_bmap_compute_maxlevels(
45 xfs_mount_t *mp, /* file system mount structure */
46 int whichfork) /* data or attr fork */
47{
48 int level; /* btree level */
49 uint maxblocks; /* max blocks at this level */
50 uint maxleafents; /* max leaf entries possible */
51 int maxrootrecs; /* max records in root block */
52 int minleafrecs; /* min records in leaf block */
53 int minnoderecs; /* min records in node block */
54 int sz; /* root block size */
5e656dbb 55
49f693fa 56 /*
87c472b7
CH
57 * The maximum number of extents in a file, hence the maximum number of
58 * leaf entries, is controlled by the size of the on-disk extent count,
59 * either a signed 32-bit number for the data fork, or a signed 16-bit
60 * number for the attr fork.
49f693fa
DC
61 *
62 * Note that we can no longer assume that if we are in ATTR1 that
63 * the fork offset of all the inodes will be
64 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
65 * with ATTR2 and then mounted back with ATTR1, keeping the
66 * di_forkoff's fixed but probably at various positions. Therefore,
67 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
68 * of a minimum size available.
69 */
70 if (whichfork == XFS_DATA_FORK) {
71 maxleafents = MAXEXTNUM;
72 sz = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
73 } else {
74 maxleafents = MAXAEXTNUM;
75 sz = XFS_BMDR_SPACE_CALC(MINABTPTRS);
76 }
ff105f75 77 maxrootrecs = xfs_bmdr_maxrecs(sz, 0);
49f693fa
DC
78 minleafrecs = mp->m_bmap_dmnr[0];
79 minnoderecs = mp->m_bmap_dmnr[1];
80 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
81 for (level = 1; maxblocks > 1; level++) {
82 if (maxblocks <= maxrootrecs)
83 maxblocks = 1;
84 else
85 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
86 }
87 mp->m_bm_maxlevels[whichfork] = level;
88}
5e656dbb 89
b194c7d8
BN
90STATIC int /* error */
91xfs_bmbt_lookup_eq(
92 struct xfs_btree_cur *cur,
70a93110 93 struct xfs_bmbt_irec *irec,
b194c7d8
BN
94 int *stat) /* success/failure */
95{
70a93110 96 cur->bc_rec.b = *irec;
b194c7d8
BN
97 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
98}
99
100STATIC int /* error */
4f76f49c 101xfs_bmbt_lookup_first(
b194c7d8 102 struct xfs_btree_cur *cur,
b194c7d8
BN
103 int *stat) /* success/failure */
104{
4f76f49c
CH
105 cur->bc_rec.b.br_startoff = 0;
106 cur->bc_rec.b.br_startblock = 0;
107 cur->bc_rec.b.br_blockcount = 0;
b194c7d8
BN
108 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
109}
110
111/*
a2ceac1f
DC
112 * Check if the inode needs to be converted to btree format.
113 */
114static inline bool xfs_bmap_needs_btree(struct xfs_inode *ip, int whichfork)
115{
87c472b7
CH
116 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
117
1277a5e0 118 return whichfork != XFS_COW_FORK &&
d967a68d 119 ifp->if_format == XFS_DINODE_FMT_EXTENTS &&
87c472b7 120 ifp->if_nextents > XFS_IFORK_MAXEXT(ip, whichfork);
a2ceac1f
DC
121}
122
123/*
124 * Check if the inode should be converted to extent format.
125 */
126static inline bool xfs_bmap_wants_extents(struct xfs_inode *ip, int whichfork)
127{
87c472b7
CH
128 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
129
1277a5e0 130 return whichfork != XFS_COW_FORK &&
d967a68d 131 ifp->if_format == XFS_DINODE_FMT_BTREE &&
87c472b7 132 ifp->if_nextents <= XFS_IFORK_MAXEXT(ip, whichfork);
a2ceac1f
DC
133}
134
135/*
d0e5f1ff 136 * Update the record referred to by cur to the value given by irec
b194c7d8
BN
137 * This either works (return 0) or gets an EFSCORRUPTED error.
138 */
139STATIC int
140xfs_bmbt_update(
141 struct xfs_btree_cur *cur,
d0e5f1ff 142 struct xfs_bmbt_irec *irec)
b194c7d8
BN
143{
144 union xfs_btree_rec rec;
145
d0e5f1ff 146 xfs_bmbt_disk_set_all(&rec.bmbt, irec);
b194c7d8
BN
147 return xfs_btree_update(cur, &rec);
148}
149
5e656dbb 150/*
49f693fa
DC
151 * Compute the worst-case number of indirect blocks that will be used
152 * for ip's delayed extent of length "len".
5e656dbb 153 */
49f693fa
DC
154STATIC xfs_filblks_t
155xfs_bmap_worst_indlen(
156 xfs_inode_t *ip, /* incore inode pointer */
157 xfs_filblks_t len) /* delayed extent length */
57c9fccb 158{
49f693fa
DC
159 int level; /* btree level number */
160 int maxrecs; /* maximum record count at this level */
161 xfs_mount_t *mp; /* mount structure */
162 xfs_filblks_t rval; /* return value */
57c9fccb
NS
163
164 mp = ip->i_mount;
49f693fa
DC
165 maxrecs = mp->m_bmap_dmxr[0];
166 for (level = 0, rval = 0;
167 level < XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK);
168 level++) {
169 len += maxrecs - 1;
170 do_div(len, maxrecs);
171 rval += len;
7fbe9b54
DW
172 if (len == 1)
173 return rval + XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) -
49f693fa
DC
174 level - 1;
175 if (level == 0)
176 maxrecs = mp->m_bmap_dmxr[1];
57c9fccb 177 }
49f693fa 178 return rval;
57c9fccb
NS
179}
180
181/*
49f693fa 182 * Calculate the default attribute fork offset for newly created inodes.
57c9fccb 183 */
49f693fa
DC
184uint
185xfs_default_attroffset(
186 struct xfs_inode *ip)
57c9fccb 187{
49f693fa
DC
188 struct xfs_mount *mp = ip->i_mount;
189 uint offset;
57c9fccb 190
4de63245
CH
191 if (mp->m_sb.sb_inodesize == 256)
192 offset = XFS_LITINO(mp) - XFS_BMDR_SPACE_CALC(MINABTPTRS);
193 else
49f693fa 194 offset = XFS_BMDR_SPACE_CALC(6 * MINABTPTRS);
49f693fa 195
4de63245 196 ASSERT(offset < XFS_LITINO(mp));
49f693fa 197 return offset;
57c9fccb
NS
198}
199
200/*
49f693fa
DC
201 * Helper routine to reset inode di_forkoff field when switching
202 * attribute fork from local to extent format - we reset it where
203 * possible to make space available for inline data fork extents.
57c9fccb 204 */
49f693fa
DC
205STATIC void
206xfs_bmap_forkoff_reset(
49f693fa
DC
207 xfs_inode_t *ip,
208 int whichfork)
57c9fccb 209{
49f693fa 210 if (whichfork == XFS_ATTR_FORK &&
d967a68d
CH
211 ip->i_df.if_format != XFS_DINODE_FMT_DEV &&
212 ip->i_df.if_format != XFS_DINODE_FMT_BTREE) {
49f693fa 213 uint dfl_forkoff = xfs_default_attroffset(ip) >> 3;
57c9fccb 214
49f693fa
DC
215 if (dfl_forkoff > ip->i_d.di_forkoff)
216 ip->i_d.di_forkoff = dfl_forkoff;
217 }
57c9fccb
NS
218}
219
49f693fa
DC
220#ifdef DEBUG
221STATIC struct xfs_buf *
222xfs_bmap_get_bp(
223 struct xfs_btree_cur *cur,
224 xfs_fsblock_t bno)
225{
2fdd378a 226 struct xfs_log_item *lip;
49f693fa 227 int i;
56b2de80 228
49f693fa
DC
229 if (!cur)
230 return NULL;
2bd0ea18 231
49f693fa
DC
232 for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) {
233 if (!cur->bc_bufs[i])
234 break;
235 if (XFS_BUF_ADDR(cur->bc_bufs[i]) == bno)
236 return cur->bc_bufs[i];
237 }
56b2de80 238
49f693fa 239 /* Chase down all the log items to see if the bp is there */
2fdd378a
DC
240 list_for_each_entry(lip, &cur->bc_tp->t_items, li_trans) {
241 struct xfs_buf_log_item *bip = (struct xfs_buf_log_item *)lip;
242
49f693fa
DC
243 if (bip->bli_item.li_type == XFS_LI_BUF &&
244 XFS_BUF_ADDR(bip->bli_buf) == bno)
245 return bip->bli_buf;
246 }
2bd0ea18 247
49f693fa
DC
248 return NULL;
249}
56b2de80 250
49f693fa
DC
251STATIC void
252xfs_check_block(
253 struct xfs_btree_block *block,
254 xfs_mount_t *mp,
255 int root,
256 short sz)
257{
258 int i, j, dmxr;
259 __be64 *pp, *thispa; /* pointer to block address */
260 xfs_bmbt_key_t *prevp, *keyp;
2bd0ea18 261
49f693fa 262 ASSERT(be16_to_cpu(block->bb_level) > 0);
56b2de80 263
49f693fa
DC
264 prevp = NULL;
265 for( i = 1; i <= xfs_btree_get_numrecs(block); i++) {
266 dmxr = mp->m_bmap_dmxr[0];
267 keyp = XFS_BMBT_KEY_ADDR(mp, block, i);
a2ceac1f 268
49f693fa
DC
269 if (prevp) {
270 ASSERT(be64_to_cpu(prevp->br_startoff) <
271 be64_to_cpu(keyp->br_startoff));
272 }
273 prevp = keyp;
2bd0ea18 274
2bd0ea18 275 /*
49f693fa 276 * Compare the block numbers to see if there are dups.
2bd0ea18 277 */
49f693fa
DC
278 if (root)
279 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, i, sz);
280 else
281 pp = XFS_BMBT_PTR_ADDR(mp, block, i, dmxr);
282
283 for (j = i+1; j <= be16_to_cpu(block->bb_numrecs); j++) {
284 if (root)
285 thispa = XFS_BMAP_BROOT_PTR_ADDR(mp, block, j, sz);
286 else
287 thispa = XFS_BMBT_PTR_ADDR(mp, block, j, dmxr);
288 if (*thispa == *pp) {
289 xfs_warn(mp, "%s: thispa(%d) == pp(%d) %Ld",
290 __func__, j, i,
291 (unsigned long long)be64_to_cpu(*thispa));
4d5e2888 292 xfs_err(mp, "%s: ptrs are equal in node\n",
49f693fa 293 __func__);
4d5e2888 294 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
49f693fa 295 }
2bd0ea18 296 }
49f693fa
DC
297 }
298}
a2ceac1f 299
49f693fa
DC
300/*
301 * Check that the extents for the inode ip are in the right order in all
f07ae2a6
DC
302 * btree leaves. THis becomes prohibitively expensive for large extent count
303 * files, so don't bother with inodes that have more than 10,000 extents in
304 * them. The btree record ordering checks will still be done, so for such large
305 * bmapbt constructs that is going to catch most corruptions.
49f693fa 306 */
49f693fa
DC
307STATIC void
308xfs_bmap_check_leaf_extents(
309 xfs_btree_cur_t *cur, /* btree cursor or null */
310 xfs_inode_t *ip, /* incore inode pointer */
311 int whichfork) /* data or attr fork */
312{
d967a68d
CH
313 struct xfs_mount *mp = ip->i_mount;
314 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
49f693fa
DC
315 struct xfs_btree_block *block; /* current btree block */
316 xfs_fsblock_t bno; /* block # of "block" */
167137fe 317 struct xfs_buf *bp; /* buffer for "block" */
49f693fa
DC
318 int error; /* error return value */
319 xfs_extnum_t i=0, j; /* index into the extents list */
49f693fa 320 int level; /* btree level, for checking */
49f693fa
DC
321 __be64 *pp; /* pointer to block address */
322 xfs_bmbt_rec_t *ep; /* pointer to current extent */
323 xfs_bmbt_rec_t last = {0, 0}; /* last extent in prev block */
324 xfs_bmbt_rec_t *nextp; /* pointer to next extent */
325 int bp_release = 0;
326
d967a68d 327 if (ifp->if_format != XFS_DINODE_FMT_BTREE)
49f693fa 328 return;
49f693fa 329
f07ae2a6 330 /* skip large extent count inodes */
87c472b7 331 if (ip->i_df.if_nextents > 10000)
f07ae2a6
DC
332 return;
333
49f693fa 334 bno = NULLFSBLOCK;
49f693fa
DC
335 block = ifp->if_broot;
336 /*
337 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
338 */
339 level = be16_to_cpu(block->bb_level);
340 ASSERT(level > 0);
341 xfs_check_block(block, mp, 1, ifp->if_broot_bytes);
342 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
343 bno = be64_to_cpu(*pp);
344
5a35bf2c 345 ASSERT(bno != NULLFSBLOCK);
49f693fa
DC
346 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
347 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
348
349 /*
350 * Go down the tree until leaf level is reached, following the first
351 * pointer (leftmost) at each level.
352 */
353 while (level-- > 0) {
354 /* See if buf is in cur first */
355 bp_release = 0;
356 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
357 if (!bp) {
358 bp_release = 1;
4aa01a59 359 error = xfs_btree_read_bufl(mp, NULL, bno, &bp,
49f693fa
DC
360 XFS_BMAP_BTREE_REF,
361 &xfs_bmbt_buf_ops);
2bd0ea18 362 if (error)
49f693fa 363 goto error_norelse;
2bd0ea18 364 }
49f693fa 365 block = XFS_BUF_TO_BLOCK(bp);
49f693fa
DC
366 if (level == 0)
367 break;
2bd0ea18 368
2bd0ea18 369 /*
49f693fa
DC
370 * Check this block for basic sanity (increasing keys and
371 * no duplicate blocks).
2bd0ea18 372 */
49f693fa
DC
373
374 xfs_check_block(block, mp, 0, 0);
375 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
376 bno = be64_to_cpu(*pp);
fbb4fa7f
DW
377 if (XFS_IS_CORRUPT(mp, !xfs_verify_fsbno(mp, bno))) {
378 error = -EFSCORRUPTED;
379 goto error0;
380 }
49f693fa
DC
381 if (bp_release) {
382 bp_release = 0;
383 xfs_trans_brelse(NULL, bp);
2bd0ea18 384 }
49f693fa 385 }
a2ceac1f 386
49f693fa
DC
387 /*
388 * Here with bp and block set to the leftmost leaf node in the tree.
389 */
390 i = 0;
a2ceac1f 391
49f693fa
DC
392 /*
393 * Loop over all leaf nodes checking that all extents are in the right order.
394 */
395 for (;;) {
396 xfs_fsblock_t nextbno;
397 xfs_extnum_t num_recs;
398
399
400 num_recs = xfs_btree_get_numrecs(block);
2bd0ea18 401
2bd0ea18 402 /*
49f693fa 403 * Read-ahead the next leaf block, if any.
2bd0ea18 404 */
a2ceac1f 405
49f693fa 406 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
a2ceac1f 407
49f693fa
DC
408 /*
409 * Check all the extents to make sure they are OK.
410 * If we had a previous block, the last entry should
411 * conform with the first entry in this one.
412 */
2bd0ea18 413
49f693fa
DC
414 ep = XFS_BMBT_REC_ADDR(mp, block, 1);
415 if (i) {
416 ASSERT(xfs_bmbt_disk_get_startoff(&last) +
417 xfs_bmbt_disk_get_blockcount(&last) <=
418 xfs_bmbt_disk_get_startoff(ep));
419 }
420 for (j = 1; j < num_recs; j++) {
421 nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1);
422 ASSERT(xfs_bmbt_disk_get_startoff(ep) +
423 xfs_bmbt_disk_get_blockcount(ep) <=
424 xfs_bmbt_disk_get_startoff(nextp));
425 ep = nextp;
426 }
427
428 last = *ep;
429 i += num_recs;
430 if (bp_release) {
431 bp_release = 0;
432 xfs_trans_brelse(NULL, bp);
433 }
434 bno = nextbno;
2bd0ea18 435 /*
49f693fa 436 * If we've reached the end, stop.
2bd0ea18 437 */
49f693fa
DC
438 if (bno == NULLFSBLOCK)
439 break;
a2ceac1f 440
49f693fa
DC
441 bp_release = 0;
442 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
443 if (!bp) {
444 bp_release = 1;
4aa01a59 445 error = xfs_btree_read_bufl(mp, NULL, bno, &bp,
49f693fa
DC
446 XFS_BMAP_BTREE_REF,
447 &xfs_bmbt_buf_ops);
a2ceac1f 448 if (error)
49f693fa 449 goto error_norelse;
2bd0ea18 450 }
49f693fa 451 block = XFS_BUF_TO_BLOCK(bp);
a2ceac1f 452 }
4d4a192c 453
49f693fa 454 return;
a2ceac1f 455
49f693fa
DC
456error0:
457 xfs_warn(mp, "%s: at error0", __func__);
458 if (bp_release)
459 xfs_trans_brelse(NULL, bp);
460error_norelse:
461 xfs_warn(mp, "%s: BAD after btree leaves for %d extents",
462 __func__, i);
4d5e2888
DW
463 xfs_err(mp, "%s: CORRUPTED BTREE OR SOMETHING", __func__);
464 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
49f693fa 465 return;
2bd0ea18
NS
466}
467
49f693fa
DC
468/*
469 * Validate that the bmbt_irecs being returned from bmapi are valid
e6d77a21
DC
470 * given the caller's original parameters. Specifically check the
471 * ranges of the returned irecs to ensure that they only extend beyond
49f693fa
DC
472 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
473 */
474STATIC void
475xfs_bmap_validate_ret(
476 xfs_fileoff_t bno,
477 xfs_filblks_t len,
478 int flags,
479 xfs_bmbt_irec_t *mval,
480 int nmap,
481 int ret_nmap)
482{
483 int i; /* index to map values */
a2ceac1f 484
49f693fa 485 ASSERT(ret_nmap <= nmap);
a2ceac1f 486
49f693fa
DC
487 for (i = 0; i < ret_nmap; i++) {
488 ASSERT(mval[i].br_blockcount > 0);
489 if (!(flags & XFS_BMAPI_ENTIRE)) {
490 ASSERT(mval[i].br_startoff >= bno);
491 ASSERT(mval[i].br_blockcount <= len);
492 ASSERT(mval[i].br_startoff + mval[i].br_blockcount <=
493 bno + len);
494 } else {
495 ASSERT(mval[i].br_startoff < bno + len);
496 ASSERT(mval[i].br_startoff + mval[i].br_blockcount >
497 bno);
498 }
499 ASSERT(i == 0 ||
500 mval[i - 1].br_startoff + mval[i - 1].br_blockcount ==
501 mval[i].br_startoff);
502 ASSERT(mval[i].br_startblock != DELAYSTARTBLOCK &&
503 mval[i].br_startblock != HOLESTARTBLOCK);
504 ASSERT(mval[i].br_state == XFS_EXT_NORM ||
505 mval[i].br_state == XFS_EXT_UNWRITTEN);
506 }
507}
56b2de80 508
49f693fa
DC
509#else
510#define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
9587a34c 511#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap) do { } while (0)
49f693fa 512#endif /* DEBUG */
56b2de80 513
49f693fa
DC
514/*
515 * bmap free list manipulation functions
516 */
56b2de80 517
49f693fa
DC
518/*
519 * Add the extent to the list of extents to be free at transaction end.
520 * The list is maintained sorted (by block number).
521 */
522void
3a13f959 523__xfs_bmap_add_free(
21375e5d 524 struct xfs_trans *tp,
85aec44f
DW
525 xfs_fsblock_t bno,
526 xfs_filblks_t len,
5837e73b 527 const struct xfs_owner_info *oinfo,
3a13f959 528 bool skip_discard)
49f693fa 529{
6f530e9a 530 struct xfs_extent_free_item *new; /* new element */
49f693fa 531#ifdef DEBUG
21375e5d
BF
532 struct xfs_mount *mp = tp->t_mountp;
533 xfs_agnumber_t agno;
534 xfs_agblock_t agbno;
56b2de80 535
49f693fa
DC
536 ASSERT(bno != NULLFSBLOCK);
537 ASSERT(len > 0);
538 ASSERT(len <= MAXEXTLEN);
539 ASSERT(!isnullstartblock(bno));
540 agno = XFS_FSB_TO_AGNO(mp, bno);
541 agbno = XFS_FSB_TO_AGBNO(mp, bno);
542 ASSERT(agno < mp->m_sb.sb_agcount);
543 ASSERT(agbno < mp->m_sb.sb_agblocks);
544 ASSERT(len < mp->m_sb.sb_agblocks);
545 ASSERT(agbno + len <= mp->m_sb.sb_agblocks);
546#endif
547 ASSERT(xfs_bmap_free_item_zone != NULL);
85aec44f 548
d7faa18a
CM
549 new = kmem_cache_alloc(xfs_bmap_free_item_zone,
550 GFP_KERNEL | __GFP_NOFAIL);
6f530e9a
DW
551 new->xefi_startblock = bno;
552 new->xefi_blockcount = (xfs_extlen_t)len;
85aec44f
DW
553 if (oinfo)
554 new->xefi_oinfo = *oinfo;
555 else
007347e3 556 new->xefi_oinfo = XFS_RMAP_OINFO_SKIP_UPDATE;
3a13f959 557 new->xefi_skip_discard = skip_discard;
21375e5d
BF
558 trace_xfs_bmap_free_defer(tp->t_mountp,
559 XFS_FSB_TO_AGNO(tp->t_mountp, bno), 0,
560 XFS_FSB_TO_AGBNO(tp->t_mountp, bno), len);
561 xfs_defer_add(tp, XFS_DEFER_OPS_TYPE_FREE, &new->xefi_list);
49f693fa 562}
2bd0ea18 563
49f693fa
DC
564/*
565 * Inode fork format manipulation functions
566 */
a2ceac1f 567
49f693fa 568/*
939ebc1a
CH
569 * Convert the inode format to extent format if it currently is in btree format,
570 * but the extent list is small enough that it fits into the extent format.
571 *
572 * Since the extents are already in-core, all we have to do is give up the space
573 * for the btree root and pitch the leaf block.
49f693fa
DC
574 */
575STATIC int /* error */
576xfs_bmap_btree_to_extents(
939ebc1a
CH
577 struct xfs_trans *tp, /* transaction pointer */
578 struct xfs_inode *ip, /* incore inode pointer */
579 struct xfs_btree_cur *cur, /* btree cursor */
49f693fa
DC
580 int *logflagsp, /* inode logging flags */
581 int whichfork) /* data or attr fork */
582{
939ebc1a
CH
583 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
584 struct xfs_mount *mp = ip->i_mount;
585 struct xfs_btree_block *rblock = ifp->if_broot;
49f693fa
DC
586 struct xfs_btree_block *cblock;/* child btree block */
587 xfs_fsblock_t cbno; /* child block number */
167137fe 588 struct xfs_buf *cbp; /* child block's buffer */
49f693fa 589 int error; /* error return value */
49f693fa 590 __be64 *pp; /* ptr to block address */
85aec44f 591 struct xfs_owner_info oinfo;
56b2de80 592
939ebc1a
CH
593 /* check if we actually need the extent format first: */
594 if (!xfs_bmap_wants_extents(ip, whichfork))
595 return 0;
596
597 ASSERT(cur);
1277a5e0 598 ASSERT(whichfork != XFS_COW_FORK);
49f693fa 599 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
d967a68d 600 ASSERT(ifp->if_format == XFS_DINODE_FMT_BTREE);
49f693fa
DC
601 ASSERT(be16_to_cpu(rblock->bb_level) == 1);
602 ASSERT(be16_to_cpu(rblock->bb_numrecs) == 1);
603 ASSERT(xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0) == 1);
939ebc1a 604
49f693fa
DC
605 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, ifp->if_broot_bytes);
606 cbno = be64_to_cpu(*pp);
49f693fa 607#ifdef DEBUG
fbb4fa7f
DW
608 if (XFS_IS_CORRUPT(cur->bc_mp, !xfs_btree_check_lptr(cur, cbno, 1)))
609 return -EFSCORRUPTED;
49f693fa 610#endif
4aa01a59 611 error = xfs_btree_read_bufl(mp, tp, cbno, &cbp, XFS_BMAP_BTREE_REF,
49f693fa
DC
612 &xfs_bmbt_buf_ops);
613 if (error)
614 return error;
615 cblock = XFS_BUF_TO_BLOCK(cbp);
616 if ((error = xfs_btree_check_block(cur, cblock, 0, cbp)))
617 return error;
85aec44f 618 xfs_rmap_ino_bmbt_owner(&oinfo, ip->i_ino, whichfork);
21375e5d 619 xfs_bmap_add_free(cur->bc_tp, cbno, 1, &oinfo);
49f693fa
DC
620 ip->i_d.di_nblocks--;
621 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
622 xfs_trans_binval(tp, cbp);
623 if (cur->bc_bufs[0] == cbp)
624 cur->bc_bufs[0] = NULL;
625 xfs_iroot_realloc(ip, -1, whichfork);
626 ASSERT(ifp->if_broot == NULL);
627 ASSERT((ifp->if_flags & XFS_IFBROOT) == 0);
d967a68d 628 ifp->if_format = XFS_DINODE_FMT_EXTENTS;
939ebc1a 629 *logflagsp |= XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
49f693fa
DC
630 return 0;
631}
2bd0ea18
NS
632
633/*
49f693fa
DC
634 * Convert an extents-format file into a btree-format file.
635 * The new file will have a root block (in the inode) and a single child block.
2bd0ea18 636 */
49f693fa
DC
637STATIC int /* error */
638xfs_bmap_extents_to_btree(
52f6ed9d
BF
639 struct xfs_trans *tp, /* transaction pointer */
640 struct xfs_inode *ip, /* incore inode pointer */
52f6ed9d 641 struct xfs_btree_cur **curp, /* cursor returned to caller */
49f693fa
DC
642 int wasdel, /* converting a delayed alloc */
643 int *logflagsp, /* inode logging flags */
644 int whichfork) /* data or attr fork */
2bd0ea18 645{
49f693fa 646 struct xfs_btree_block *ablock; /* allocated (child) bt block */
52f6ed9d
BF
647 struct xfs_buf *abp; /* buffer for ablock */
648 struct xfs_alloc_arg args; /* allocation arguments */
649 struct xfs_bmbt_rec *arp; /* child record pointer */
49f693fa 650 struct xfs_btree_block *block; /* btree root block */
52f6ed9d 651 struct xfs_btree_cur *cur; /* bmap btree cursor */
49f693fa 652 int error; /* error return value */
52f6ed9d
BF
653 struct xfs_ifork *ifp; /* inode fork pointer */
654 struct xfs_bmbt_key *kp; /* root block key pointer */
655 struct xfs_mount *mp; /* mount structure */
49f693fa 656 xfs_bmbt_ptr_t *pp; /* root block address pointer */
9788e059 657 struct xfs_iext_cursor icur;
62ed7338 658 struct xfs_bmbt_irec rec;
9788e059 659 xfs_extnum_t cnt = 0;
2bd0ea18 660
5dfa5cd2 661 mp = ip->i_mount;
1277a5e0 662 ASSERT(whichfork != XFS_COW_FORK);
49f693fa 663 ifp = XFS_IFORK_PTR(ip, whichfork);
d967a68d 664 ASSERT(ifp->if_format == XFS_DINODE_FMT_EXTENTS);
56b2de80 665
2bd0ea18 666 /*
d7c2f6cb
DC
667 * Make space in the inode incore. This needs to be undone if we fail
668 * to expand the root.
2bd0ea18 669 */
49f693fa
DC
670 xfs_iroot_realloc(ip, 1, whichfork);
671 ifp->if_flags |= XFS_IFBROOT;
56b2de80 672
2bd0ea18 673 /*
49f693fa 674 * Fill in the root.
2bd0ea18 675 */
49f693fa 676 block = ifp->if_broot;
e394a4b1
ES
677 xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL,
678 XFS_BTNUM_BMAP, 1, 1, ip->i_ino,
f4241a08 679 XFS_BTREE_LONG_PTRS);
49f693fa
DC
680 /*
681 * Need a cursor. Can't allocate until bb_level is filled in.
682 */
49f693fa 683 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
bbf943f8 684 cur->bc_ino.flags = wasdel ? XFS_BTCUR_BMBT_WASDEL : 0;
49f693fa
DC
685 /*
686 * Convert to a btree with two levels, one record in root.
687 */
d967a68d 688 ifp->if_format = XFS_DINODE_FMT_BTREE;
49f693fa
DC
689 memset(&args, 0, sizeof(args));
690 args.tp = tp;
691 args.mp = mp;
85aec44f 692 xfs_rmap_ino_bmbt_owner(&args.oinfo, ip->i_ino, whichfork);
f7253505 693 if (tp->t_firstblock == NULLFSBLOCK) {
49f693fa
DC
694 args.type = XFS_ALLOCTYPE_START_BNO;
695 args.fsbno = XFS_INO_TO_FSB(mp, ip->i_ino);
565e96c6 696 } else if (tp->t_flags & XFS_TRANS_LOWMODE) {
49f693fa 697 args.type = XFS_ALLOCTYPE_START_BNO;
f7253505 698 args.fsbno = tp->t_firstblock;
49f693fa
DC
699 } else {
700 args.type = XFS_ALLOCTYPE_NEAR_BNO;
f7253505 701 args.fsbno = tp->t_firstblock;
49f693fa
DC
702 }
703 args.minlen = args.maxlen = args.prod = 1;
704 args.wasdel = wasdel;
705 *logflagsp = 0;
d7c2f6cb
DC
706 error = xfs_alloc_vextent(&args);
707 if (error)
708 goto out_root_realloc;
68d06dce 709
c1587ecf 710 if (WARN_ON_ONCE(args.fsbno == NULLFSBLOCK)) {
b5c71bcd 711 error = -ENOSPC;
d7c2f6cb 712 goto out_root_realloc;
c1587ecf 713 }
d7c2f6cb 714
2bd0ea18 715 /*
49f693fa 716 * Allocation can't fail, the space was reserved.
2bd0ea18 717 */
f7253505
BF
718 ASSERT(tp->t_firstblock == NULLFSBLOCK ||
719 args.agno >= XFS_FSB_TO_AGNO(mp, tp->t_firstblock));
f44a348b 720 tp->t_firstblock = args.fsbno;
116c6a88 721 cur->bc_ino.allocated++;
49f693fa
DC
722 ip->i_d.di_nblocks++;
723 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, 1L);
78fcd346
DW
724 error = xfs_trans_get_buf(tp, mp->m_ddev_targp,
725 XFS_FSB_TO_DADDR(mp, args.fsbno),
726 mp->m_bsize, 0, &abp);
727 if (error)
d7c2f6cb 728 goto out_unreserve_dquot;
d7c2f6cb 729
2bd0ea18 730 /*
49f693fa 731 * Fill in the child block.
2bd0ea18 732 */
49f693fa
DC
733 abp->b_ops = &xfs_bmbt_buf_ops;
734 ablock = XFS_BUF_TO_BLOCK(abp);
e394a4b1
ES
735 xfs_btree_init_block_int(mp, ablock, abp->b_bn,
736 XFS_BTNUM_BMAP, 0, 0, ip->i_ino,
5dfa5cd2
DC
737 XFS_BTREE_LONG_PTRS);
738
9788e059 739 for_each_xfs_iext(ifp, &icur, &rec) {
62ed7338
CH
740 if (isnullstartblock(rec.br_startblock))
741 continue;
742 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1 + cnt);
743 xfs_bmbt_disk_set_all(arp, &rec);
744 cnt++;
49f693fa 745 }
87c472b7 746 ASSERT(cnt == ifp->if_nextents);
49f693fa 747 xfs_btree_set_numrecs(ablock, cnt);
56b2de80 748
49f693fa
DC
749 /*
750 * Fill in the root key and pointer.
751 */
752 kp = XFS_BMBT_KEY_ADDR(mp, block, 1);
753 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
754 kp->br_startoff = cpu_to_be64(xfs_bmbt_disk_get_startoff(arp));
755 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, xfs_bmbt_get_maxrecs(cur,
756 be16_to_cpu(block->bb_level)));
757 *pp = cpu_to_be64(args.fsbno);
2bd0ea18 758
49f693fa
DC
759 /*
760 * Do all this logging at the end so that
761 * the root is at the right level.
762 */
5dfa5cd2 763 xfs_btree_log_block(cur, abp, XFS_BB_ALL_BITS);
613e6057 764 xfs_btree_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs));
49f693fa
DC
765 ASSERT(*curp == NULL);
766 *curp = cur;
767 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fbroot(whichfork);
768 return 0;
b5c71bcd 769
d7c2f6cb 770out_unreserve_dquot:
b5c71bcd 771 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
d7c2f6cb 772out_root_realloc:
b5c71bcd 773 xfs_iroot_realloc(ip, -1, whichfork);
d967a68d 774 ifp->if_format = XFS_DINODE_FMT_EXTENTS;
d7c2f6cb 775 ASSERT(ifp->if_broot == NULL);
b5c71bcd
SH
776 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
777
778 return error;
49f693fa 779}
a2ceac1f 780
49f693fa
DC
781/*
782 * Convert a local file to an extents file.
783 * This code is out of bounds for data forks of regular files,
784 * since the file data needs to get logged so things will stay consistent.
785 * (The bmap-level manipulations are ok, though).
786 */
3f17ed4b
DC
787void
788xfs_bmap_local_to_extents_empty(
feee8e52 789 struct xfs_trans *tp,
3f17ed4b
DC
790 struct xfs_inode *ip,
791 int whichfork)
792{
793 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
794
1277a5e0 795 ASSERT(whichfork != XFS_COW_FORK);
d967a68d 796 ASSERT(ifp->if_format == XFS_DINODE_FMT_LOCAL);
3f17ed4b 797 ASSERT(ifp->if_bytes == 0);
87c472b7 798 ASSERT(ifp->if_nextents == 0);
3f17ed4b 799
ff105f75 800 xfs_bmap_forkoff_reset(ip, whichfork);
3f17ed4b
DC
801 ifp->if_flags &= ~XFS_IFINLINE;
802 ifp->if_flags |= XFS_IFEXTENTS;
b37d753d
CH
803 ifp->if_u1.if_root = NULL;
804 ifp->if_height = 0;
d967a68d 805 ifp->if_format = XFS_DINODE_FMT_EXTENTS;
feee8e52 806 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
3f17ed4b
DC
807}
808
809
49f693fa
DC
810STATIC int /* error */
811xfs_bmap_local_to_extents(
812 xfs_trans_t *tp, /* transaction pointer */
813 xfs_inode_t *ip, /* incore inode pointer */
49f693fa
DC
814 xfs_extlen_t total, /* total blocks needed by transaction */
815 int *logflagsp, /* inode logging flags */
816 int whichfork,
5dfa5cd2
DC
817 void (*init_fn)(struct xfs_trans *tp,
818 struct xfs_buf *bp,
49f693fa
DC
819 struct xfs_inode *ip,
820 struct xfs_ifork *ifp))
821{
3f17ed4b 822 int error = 0;
49f693fa 823 int flags; /* logging flags returned */
e07055b8 824 struct xfs_ifork *ifp; /* inode fork pointer */
3f17ed4b 825 xfs_alloc_arg_t args; /* allocation arguments */
167137fe 826 struct xfs_buf *bp; /* buffer for extent block */
05104e43 827 struct xfs_bmbt_irec rec;
9788e059 828 struct xfs_iext_cursor icur;
2bd0ea18 829
49f693fa
DC
830 /*
831 * We don't want to deal with the case of keeping inode data inline yet.
832 * So sending the data fork of a regular inode is invalid.
833 */
e37bf53c 834 ASSERT(!(S_ISREG(VFS_I(ip)->i_mode) && whichfork == XFS_DATA_FORK));
49f693fa 835 ifp = XFS_IFORK_PTR(ip, whichfork);
d967a68d 836 ASSERT(ifp->if_format == XFS_DINODE_FMT_LOCAL);
3f17ed4b
DC
837
838 if (!ifp->if_bytes) {
feee8e52 839 xfs_bmap_local_to_extents_empty(tp, ip, whichfork);
3f17ed4b
DC
840 flags = XFS_ILOG_CORE;
841 goto done;
842 }
843
49f693fa
DC
844 flags = 0;
845 error = 0;
b37d753d 846 ASSERT((ifp->if_flags & (XFS_IFINLINE|XFS_IFEXTENTS)) == XFS_IFINLINE);
3f17ed4b
DC
847 memset(&args, 0, sizeof(args));
848 args.tp = tp;
849 args.mp = ip->i_mount;
85aec44f 850 xfs_rmap_ino_owner(&args.oinfo, ip->i_ino, whichfork, 0);
3f17ed4b
DC
851 /*
852 * Allocate a block. We know we need only one, since the
853 * file currently fits in an inode.
854 */
f7253505 855 if (tp->t_firstblock == NULLFSBLOCK) {
3f17ed4b
DC
856 args.fsbno = XFS_INO_TO_FSB(args.mp, ip->i_ino);
857 args.type = XFS_ALLOCTYPE_START_BNO;
49f693fa 858 } else {
f7253505 859 args.fsbno = tp->t_firstblock;
3f17ed4b 860 args.type = XFS_ALLOCTYPE_NEAR_BNO;
2bd0ea18 861 }
3f17ed4b
DC
862 args.total = total;
863 args.minlen = args.maxlen = args.prod = 1;
864 error = xfs_alloc_vextent(&args);
865 if (error)
866 goto done;
867
868 /* Can't fail, the space was reserved. */
869 ASSERT(args.fsbno != NULLFSBLOCK);
870 ASSERT(args.len == 1);
f7253505 871 tp->t_firstblock = args.fsbno;
78fcd346
DW
872 error = xfs_trans_get_buf(tp, args.mp->m_ddev_targp,
873 XFS_FSB_TO_DADDR(args.mp, args.fsbno),
874 args.mp->m_bsize, 0, &bp);
875 if (error)
876 goto done;
3f17ed4b 877
19ebedcf 878 /*
f44fbde0 879 * Initialize the block, copy the data and log the remote buffer.
19ebedcf 880 *
f44fbde0
BF
881 * The callout is responsible for logging because the remote format
882 * might differ from the local format and thus we don't know how much to
883 * log here. Note that init_fn must also set the buffer log item type
884 * correctly.
19ebedcf 885 */
3f17ed4b
DC
886 init_fn(tp, bp, ip, ifp);
887
f44fbde0 888 /* account for the change in fork size */
3f17ed4b 889 xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
feee8e52 890 xfs_bmap_local_to_extents_empty(tp, ip, whichfork);
49f693fa 891 flags |= XFS_ILOG_CORE;
3f17ed4b 892
b37d753d
CH
893 ifp->if_u1.if_root = NULL;
894 ifp->if_height = 0;
895
05104e43
CH
896 rec.br_startoff = 0;
897 rec.br_startblock = args.fsbno;
898 rec.br_blockcount = 1;
899 rec.br_state = XFS_EXT_NORM;
9788e059 900 xfs_iext_first(ifp, &icur);
26a75f67 901 xfs_iext_insert(ip, &icur, &rec, 0);
05104e43 902
87c472b7 903 ifp->if_nextents = 1;
3f17ed4b
DC
904 ip->i_d.di_nblocks = 1;
905 xfs_trans_mod_dquot_byino(tp, ip,
906 XFS_TRANS_DQ_BCOUNT, 1L);
907 flags |= xfs_ilog_fext(whichfork);
908
49f693fa
DC
909done:
910 *logflagsp = flags;
911 return error;
2bd0ea18
NS
912}
913
914/*
49f693fa 915 * Called from xfs_bmap_add_attrfork to handle btree format files.
2bd0ea18 916 */
49f693fa
DC
917STATIC int /* error */
918xfs_bmap_add_attrfork_btree(
919 xfs_trans_t *tp, /* transaction pointer */
920 xfs_inode_t *ip, /* incore inode pointer */
49f693fa 921 int *flags) /* inode logging flags */
2bd0ea18 922{
49f693fa
DC
923 xfs_btree_cur_t *cur; /* btree cursor */
924 int error; /* error return value */
925 xfs_mount_t *mp; /* file system mount struct */
926 int stat; /* newroot status */
56b2de80 927
49f693fa
DC
928 mp = ip->i_mount;
929 if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip))
930 *flags |= XFS_ILOG_DBROOT;
931 else {
932 cur = xfs_bmbt_init_cursor(mp, tp, ip, XFS_DATA_FORK);
4f76f49c
CH
933 error = xfs_bmbt_lookup_first(cur, &stat);
934 if (error)
49f693fa
DC
935 goto error0;
936 /* must be at least one entry */
fbb4fa7f
DW
937 if (XFS_IS_CORRUPT(mp, stat != 1)) {
938 error = -EFSCORRUPTED;
939 goto error0;
940 }
49f693fa
DC
941 if ((error = xfs_btree_new_iroot(cur, flags, &stat)))
942 goto error0;
943 if (stat == 0) {
944 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
12b53197 945 return -ENOSPC;
49f693fa 946 }
116c6a88 947 cur->bc_ino.allocated = 0;
49f693fa 948 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
2bd0ea18 949 }
49f693fa
DC
950 return 0;
951error0:
952 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
953 return error;
954}
56b2de80 955
49f693fa
DC
956/*
957 * Called from xfs_bmap_add_attrfork to handle extents format files.
958 */
959STATIC int /* error */
960xfs_bmap_add_attrfork_extents(
52f6ed9d
BF
961 struct xfs_trans *tp, /* transaction pointer */
962 struct xfs_inode *ip, /* incore inode pointer */
49f693fa
DC
963 int *flags) /* inode logging flags */
964{
965 xfs_btree_cur_t *cur; /* bmap btree cursor */
966 int error; /* error return value */
967
87c472b7
CH
968 if (ip->i_df.if_nextents * sizeof(struct xfs_bmbt_rec) <=
969 XFS_IFORK_DSIZE(ip))
49f693fa
DC
970 return 0;
971 cur = NULL;
f7253505
BF
972 error = xfs_bmap_extents_to_btree(tp, ip, &cur, 0, flags,
973 XFS_DATA_FORK);
49f693fa 974 if (cur) {
116c6a88 975 cur->bc_ino.allocated = 0;
660265b7 976 xfs_btree_del_cursor(cur, error);
2bd0ea18 977 }
49f693fa
DC
978 return error;
979}
56b2de80 980
49f693fa
DC
981/*
982 * Called from xfs_bmap_add_attrfork to handle local format files. Each
983 * different data fork content type needs a different callout to do the
984 * conversion. Some are basic and only require special block initialisation
985 * callouts for the data formating, others (directories) are so specialised they
986 * handle everything themselves.
987 *
988 * XXX (dgc): investigate whether directory conversion can use the generic
989 * formatting callout. It should be possible - it's just a very complex
5dfa5cd2 990 * formatter.
49f693fa
DC
991 */
992STATIC int /* error */
993xfs_bmap_add_attrfork_local(
d9313ca4
BF
994 struct xfs_trans *tp, /* transaction pointer */
995 struct xfs_inode *ip, /* incore inode pointer */
49f693fa
DC
996 int *flags) /* inode logging flags */
997{
d9313ca4 998 struct xfs_da_args dargs; /* args for dir/attr code */
56b2de80 999
49f693fa
DC
1000 if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip))
1001 return 0;
a2ceac1f 1002
e37bf53c 1003 if (S_ISDIR(VFS_I(ip)->i_mode)) {
49f693fa 1004 memset(&dargs, 0, sizeof(dargs));
ff105f75 1005 dargs.geo = ip->i_mount->m_dir_geo;
49f693fa 1006 dargs.dp = ip;
ff105f75 1007 dargs.total = dargs.geo->fsbcount;
49f693fa
DC
1008 dargs.whichfork = XFS_DATA_FORK;
1009 dargs.trans = tp;
1010 return xfs_dir2_sf_to_block(&dargs);
1011 }
2bd0ea18 1012
e37bf53c 1013 if (S_ISLNK(VFS_I(ip)->i_mode))
f7253505
BF
1014 return xfs_bmap_local_to_extents(tp, ip, 1, flags,
1015 XFS_DATA_FORK,
49f693fa 1016 xfs_symlink_local_to_remote);
56b2de80 1017
3f17ed4b
DC
1018 /* should only be called for types that support local format data */
1019 ASSERT(0);
12b53197 1020 return -EFSCORRUPTED;
49f693fa 1021}
2bd0ea18 1022
932b563e
AH
1023/* Set an inode attr fork off based on the format */
1024int
1025xfs_bmap_set_attrforkoff(
1026 struct xfs_inode *ip,
1027 int size,
1028 int *version)
1029{
d967a68d 1030 switch (ip->i_df.if_format) {
932b563e
AH
1031 case XFS_DINODE_FMT_DEV:
1032 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
1033 break;
1034 case XFS_DINODE_FMT_LOCAL:
1035 case XFS_DINODE_FMT_EXTENTS:
1036 case XFS_DINODE_FMT_BTREE:
1037 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
1038 if (!ip->i_d.di_forkoff)
1039 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
1040 else if ((ip->i_mount->m_flags & XFS_MOUNT_ATTR2) && version)
1041 *version = 2;
1042 break;
1043 default:
1044 ASSERT(0);
1045 return -EINVAL;
1046 }
1047
1048 return 0;
1049}
1050
49f693fa
DC
1051/*
1052 * Convert inode from non-attributed to attributed.
1053 * Must not be in a transaction, ip must not be locked.
1054 */
1055int /* error code */
1056xfs_bmap_add_attrfork(
1057 xfs_inode_t *ip, /* incore inode pointer */
1058 int size, /* space new attribute needs */
1059 int rsvd) /* xact may use reserved blks */
1060{
49f693fa
DC
1061 xfs_mount_t *mp; /* mount structure */
1062 xfs_trans_t *tp; /* transaction pointer */
1063 int blks; /* space reservation */
1064 int version = 1; /* superblock attr version */
49f693fa
DC
1065 int logflags; /* logging flags */
1066 int error; /* error return value */
56b2de80 1067
49f693fa 1068 ASSERT(XFS_IFORK_Q(ip) == 0);
2bd0ea18 1069
49f693fa
DC
1070 mp = ip->i_mount;
1071 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
9074815c 1072
49f693fa 1073 blks = XFS_ADDAFORK_SPACE_RES(mp);
9074815c
CH
1074
1075 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_addafork, blks, 0,
1076 rsvd ? XFS_TRANS_RESERVE : 0, &tp);
1077 if (error)
ff105f75 1078 return error;
9074815c 1079
49f693fa
DC
1080 xfs_ilock(ip, XFS_ILOCK_EXCL);
1081 error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ?
1082 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
1083 XFS_QMOPT_RES_REGBLKS);
ff105f75
DC
1084 if (error)
1085 goto trans_cancel;
49f693fa 1086 if (XFS_IFORK_Q(ip))
ff105f75 1087 goto trans_cancel;
a2ceac1f 1088
ff105f75 1089 xfs_trans_ijoin(tp, ip, 0);
49f693fa 1090 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
932b563e
AH
1091 error = xfs_bmap_set_attrforkoff(ip, size, &version);
1092 if (error)
ff105f75 1093 goto trans_cancel;
49f693fa 1094 ASSERT(ip->i_afp == NULL);
17e074de
CM
1095
1096 ip->i_afp = kmem_cache_zalloc(xfs_ifork_zone,
1097 GFP_KERNEL | __GFP_NOFAIL);
1098
d967a68d 1099 ip->i_afp->if_format = XFS_DINODE_FMT_EXTENTS;
49f693fa
DC
1100 ip->i_afp->if_flags = XFS_IFEXTENTS;
1101 logflags = 0;
d967a68d 1102 switch (ip->i_df.if_format) {
49f693fa 1103 case XFS_DINODE_FMT_LOCAL:
d9313ca4 1104 error = xfs_bmap_add_attrfork_local(tp, ip, &logflags);
49f693fa
DC
1105 break;
1106 case XFS_DINODE_FMT_EXTENTS:
d9313ca4 1107 error = xfs_bmap_add_attrfork_extents(tp, ip, &logflags);
49f693fa
DC
1108 break;
1109 case XFS_DINODE_FMT_BTREE:
d9313ca4 1110 error = xfs_bmap_add_attrfork_btree(tp, ip, &logflags);
49f693fa
DC
1111 break;
1112 default:
1113 error = 0;
1114 break;
1115 }
1116 if (logflags)
1117 xfs_trans_log_inode(tp, ip, logflags);
1118 if (error)
29ae66eb 1119 goto trans_cancel;
49f693fa
DC
1120 if (!xfs_sb_version_hasattr(&mp->m_sb) ||
1121 (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) {
19ebedcf 1122 bool log_sb = false;
a2ceac1f 1123
49f693fa
DC
1124 spin_lock(&mp->m_sb_lock);
1125 if (!xfs_sb_version_hasattr(&mp->m_sb)) {
1126 xfs_sb_version_addattr(&mp->m_sb);
19ebedcf 1127 log_sb = true;
49f693fa
DC
1128 }
1129 if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) {
1130 xfs_sb_version_addattr2(&mp->m_sb);
19ebedcf 1131 log_sb = true;
49f693fa 1132 }
19ebedcf
DC
1133 spin_unlock(&mp->m_sb_lock);
1134 if (log_sb)
1135 xfs_log_sb(tp);
49f693fa
DC
1136 }
1137
de5a3f46 1138 error = xfs_trans_commit(tp);
ff105f75
DC
1139 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1140 return error;
1141
ff105f75 1142trans_cancel:
3d7434fe 1143 xfs_trans_cancel(tp);
49f693fa 1144 xfs_iunlock(ip, XFS_ILOCK_EXCL);
5e656dbb 1145 return error;
2bd0ea18
NS
1146}
1147
399ab595 1148/*
49f693fa
DC
1149 * Internal and external extent tree search functions.
1150 */
399ab595 1151
9a7ae5a1
DW
1152struct xfs_iread_state {
1153 struct xfs_iext_cursor icur;
1154 xfs_extnum_t loaded;
1155};
1156
1157/* Stuff every bmbt record from this block into the incore extent map. */
1158static int
1159xfs_iread_bmbt_block(
1160 struct xfs_btree_cur *cur,
1161 int level,
1162 void *priv)
1163{
1164 struct xfs_iread_state *ir = priv;
1165 struct xfs_mount *mp = cur->bc_mp;
116c6a88 1166 struct xfs_inode *ip = cur->bc_ino.ip;
9a7ae5a1
DW
1167 struct xfs_btree_block *block;
1168 struct xfs_buf *bp;
1169 struct xfs_bmbt_rec *frp;
1170 xfs_extnum_t num_recs;
1171 xfs_extnum_t j;
116c6a88 1172 int whichfork = cur->bc_ino.whichfork;
87c472b7 1173 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
9a7ae5a1
DW
1174
1175 block = xfs_btree_get_block(cur, level, &bp);
1176
1177 /* Abort if we find more records than nextents. */
1178 num_recs = xfs_btree_get_numrecs(block);
87c472b7 1179 if (unlikely(ir->loaded + num_recs > ifp->if_nextents)) {
9a7ae5a1
DW
1180 xfs_warn(ip->i_mount, "corrupt dinode %llu, (btree extents).",
1181 (unsigned long long)ip->i_ino);
1182 xfs_inode_verifier_error(ip, -EFSCORRUPTED, __func__, block,
1183 sizeof(*block), __this_address);
1184 return -EFSCORRUPTED;
1185 }
1186
1187 /* Copy records into the incore cache. */
1188 frp = XFS_BMBT_REC_ADDR(mp, block, 1);
1189 for (j = 0; j < num_recs; j++, frp++, ir->loaded++) {
1190 struct xfs_bmbt_irec new;
1191 xfs_failaddr_t fa;
1192
1193 xfs_bmbt_disk_get_all(frp, &new);
1194 fa = xfs_bmap_validate_extent(ip, whichfork, &new);
1195 if (fa) {
1196 xfs_inode_verifier_error(ip, -EFSCORRUPTED,
1197 "xfs_iread_extents(2)", frp,
1198 sizeof(*frp), fa);
1199 return -EFSCORRUPTED;
1200 }
1201 xfs_iext_insert(ip, &ir->icur, &new,
1202 xfs_bmap_fork_to_state(whichfork));
1203 trace_xfs_read_extent(ip, &ir->icur,
1204 xfs_bmap_fork_to_state(whichfork), _THIS_IP_);
87c472b7 1205 xfs_iext_next(ifp, &ir->icur);
9a7ae5a1
DW
1206 }
1207
1208 return 0;
1209}
1210
49f693fa 1211/*
6d79c95c 1212 * Read in extents from a btree-format inode.
49f693fa 1213 */
6d79c95c
CH
1214int
1215xfs_iread_extents(
1216 struct xfs_trans *tp,
1217 struct xfs_inode *ip,
1218 int whichfork)
49f693fa 1219{
9a7ae5a1 1220 struct xfs_iread_state ir;
6d79c95c 1221 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
9a7ae5a1
DW
1222 struct xfs_mount *mp = ip->i_mount;
1223 struct xfs_btree_cur *cur;
6d79c95c
CH
1224 int error;
1225
1226 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1227
d967a68d 1228 if (XFS_IS_CORRUPT(mp, ifp->if_format != XFS_DINODE_FMT_BTREE)) {
9a7ae5a1
DW
1229 error = -EFSCORRUPTED;
1230 goto out;
399ab595 1231 }
6d79c95c 1232
9a7ae5a1
DW
1233 ir.loaded = 0;
1234 xfs_iext_first(ifp, &ir.icur);
1235 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
1236 error = xfs_btree_visit_blocks(cur, xfs_iread_bmbt_block,
1237 XFS_BTREE_VISIT_RECORDS, &ir);
1238 xfs_btree_del_cursor(cur, error);
1239 if (error)
1240 goto out;
6d79c95c 1241
87c472b7 1242 if (XFS_IS_CORRUPT(mp, ir.loaded != ifp->if_nextents)) {
6d79c95c
CH
1243 error = -EFSCORRUPTED;
1244 goto out;
1245 }
9a7ae5a1 1246 ASSERT(ir.loaded == xfs_iext_count(ifp));
6d79c95c
CH
1247
1248 ifp->if_flags |= XFS_IFEXTENTS;
49f693fa 1249 return 0;
6d79c95c
CH
1250out:
1251 xfs_iext_destroy(ifp);
1252 return error;
49f693fa 1253}
399ab595 1254
49f693fa 1255/*
2d3a6501
CH
1256 * Returns the relative block number of the first unused block(s) in the given
1257 * fork with at least "len" logically contiguous blocks free. This is the
1258 * lowest-address hole if the fork has holes, else the first block past the end
1259 * of fork. Return 0 if the fork is currently local (in-inode).
49f693fa
DC
1260 */
1261int /* error */
1262xfs_bmap_first_unused(
2d3a6501
CH
1263 struct xfs_trans *tp, /* transaction pointer */
1264 struct xfs_inode *ip, /* incore inode */
1265 xfs_extlen_t len, /* size of hole to find */
1266 xfs_fileoff_t *first_unused, /* unused block */
1267 int whichfork) /* data or attr fork */
49f693fa 1268{
2d3a6501
CH
1269 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1270 struct xfs_bmbt_irec got;
9788e059 1271 struct xfs_iext_cursor icur;
2d3a6501
CH
1272 xfs_fileoff_t lastaddr = 0;
1273 xfs_fileoff_t lowest, max;
1274 int error;
49f693fa 1275
d967a68d 1276 if (ifp->if_format == XFS_DINODE_FMT_LOCAL) {
49f693fa
DC
1277 *first_unused = 0;
1278 return 0;
1279 }
f71f3bc3 1280
d967a68d
CH
1281 ASSERT(xfs_ifork_has_extents(ifp));
1282
2d3a6501
CH
1283 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1284 error = xfs_iread_extents(tp, ip, whichfork);
1285 if (error)
1286 return error;
1287 }
f71f3bc3 1288
2d3a6501 1289 lowest = max = *first_unused;
9788e059 1290 for_each_xfs_iext(ifp, &icur, &got) {
2bd0ea18 1291 /*
49f693fa 1292 * See if the hole before this extent will work.
2bd0ea18 1293 */
f71f3bc3 1294 if (got.br_startoff >= lowest + len &&
2d3a6501
CH
1295 got.br_startoff - max >= len)
1296 break;
f71f3bc3 1297 lastaddr = got.br_startoff + got.br_blockcount;
49f693fa
DC
1298 max = XFS_FILEOFF_MAX(lastaddr, lowest);
1299 }
2d3a6501 1300
49f693fa
DC
1301 *first_unused = max;
1302 return 0;
1303}
1304
1305/*
e6d77a21 1306 * Returns the file-relative block number of the last block - 1 before
49f693fa
DC
1307 * last_block (input value) in the file.
1308 * This is not based on i_size, it is based on the extent records.
1309 * Returns 0 for local files, as they do not have extent records.
1310 */
1311int /* error */
1312xfs_bmap_last_before(
b0385364
CH
1313 struct xfs_trans *tp, /* transaction pointer */
1314 struct xfs_inode *ip, /* incore inode */
1315 xfs_fileoff_t *last_block, /* last block */
1316 int whichfork) /* data or attr fork */
49f693fa 1317{
b0385364
CH
1318 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1319 struct xfs_bmbt_irec got;
9788e059 1320 struct xfs_iext_cursor icur;
b0385364 1321 int error;
49f693fa 1322
d967a68d 1323 switch (ifp->if_format) {
b0385364 1324 case XFS_DINODE_FMT_LOCAL:
49f693fa
DC
1325 *last_block = 0;
1326 return 0;
b0385364
CH
1327 case XFS_DINODE_FMT_BTREE:
1328 case XFS_DINODE_FMT_EXTENTS:
1329 break;
1330 default:
a0264b73 1331 ASSERT(0);
88afc9cc 1332 return -EFSCORRUPTED;
49f693fa 1333 }
b0385364
CH
1334
1335 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1336 error = xfs_iread_extents(tp, ip, whichfork);
1337 if (error)
1338 return error;
2bd0ea18 1339 }
b0385364 1340
9788e059 1341 if (!xfs_iext_lookup_extent_before(ip, ifp, last_block, &icur, &got))
d6fbe8fe 1342 *last_block = 0;
49f693fa 1343 return 0;
5e656dbb
BN
1344}
1345
613e6057 1346int
49f693fa
DC
1347xfs_bmap_last_extent(
1348 struct xfs_trans *tp,
1349 struct xfs_inode *ip,
1350 int whichfork,
1351 struct xfs_bmbt_irec *rec,
1352 int *is_empty)
56b2de80 1353{
49f693fa 1354 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
9788e059 1355 struct xfs_iext_cursor icur;
56b2de80
DC
1356 int error;
1357
49f693fa
DC
1358 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1359 error = xfs_iread_extents(tp, ip, whichfork);
1360 if (error)
1361 return error;
1362 }
1363
9788e059
CH
1364 xfs_iext_last(ifp, &icur);
1365 if (!xfs_iext_get_extent(ifp, &icur, rec))
49f693fa 1366 *is_empty = 1;
9788e059
CH
1367 else
1368 *is_empty = 0;
49f693fa
DC
1369 return 0;
1370}
1371
1372/*
1373 * Check the last inode extent to determine whether this allocation will result
1374 * in blocks being allocated at the end of the file. When we allocate new data
1375 * blocks at the end of the file which do not start at the previous data block,
1376 * we will try to align the new blocks at stripe unit boundaries.
1377 *
ff105f75 1378 * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be
49f693fa
DC
1379 * at, or past the EOF.
1380 */
1381STATIC int
1382xfs_bmap_isaeof(
1383 struct xfs_bmalloca *bma,
1384 int whichfork)
1385{
1386 struct xfs_bmbt_irec rec;
1387 int is_empty;
1388 int error;
1389
180d3cd8 1390 bma->aeof = false;
49f693fa
DC
1391 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec,
1392 &is_empty);
ff105f75 1393 if (error)
49f693fa 1394 return error;
56b2de80 1395
ff105f75 1396 if (is_empty) {
180d3cd8 1397 bma->aeof = true;
ff105f75
DC
1398 return 0;
1399 }
1400
56b2de80 1401 /*
49f693fa
DC
1402 * Check if we are allocation or past the last extent, or at least into
1403 * the last delayed allocated extent.
56b2de80 1404 */
49f693fa
DC
1405 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount ||
1406 (bma->offset >= rec.br_startoff &&
1407 isnullstartblock(rec.br_startblock));
1408 return 0;
1409}
56b2de80 1410
49f693fa
DC
1411/*
1412 * Returns the file-relative block number of the first block past eof in
1413 * the file. This is not based on i_size, it is based on the extent records.
1414 * Returns 0 for local files, as they do not have extent records.
1415 */
1416int
1417xfs_bmap_last_offset(
49f693fa
DC
1418 struct xfs_inode *ip,
1419 xfs_fileoff_t *last_block,
1420 int whichfork)
1421{
d967a68d 1422 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
49f693fa
DC
1423 struct xfs_bmbt_irec rec;
1424 int is_empty;
1425 int error;
1426
1427 *last_block = 0;
1428
d967a68d 1429 if (ifp->if_format == XFS_DINODE_FMT_LOCAL)
49f693fa
DC
1430 return 0;
1431
d967a68d 1432 if (XFS_IS_CORRUPT(ip->i_mount, !xfs_ifork_has_extents(ifp)))
88afc9cc 1433 return -EFSCORRUPTED;
49f693fa
DC
1434
1435 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty);
1436 if (error || is_empty)
1437 return error;
1438
1439 *last_block = rec.br_startoff + rec.br_blockcount;
1440 return 0;
1441}
1442
1443/*
1444 * Returns whether the selected fork of the inode has exactly one
1445 * block or not. For the data fork we check this matches di_size,
1446 * implying the file's range is 0..bsize-1.
1447 */
1448int /* 1=>1 block, 0=>otherwise */
1449xfs_bmap_one_block(
87c472b7
CH
1450 struct xfs_inode *ip, /* incore inode */
1451 int whichfork) /* data or attr fork */
49f693fa 1452{
87c472b7
CH
1453 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1454 int rval; /* return value */
1455 struct xfs_bmbt_irec s; /* internal version of extent */
9788e059 1456 struct xfs_iext_cursor icur;
49f693fa
DC
1457
1458#ifndef DEBUG
1459 if (whichfork == XFS_DATA_FORK)
1460 return XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize;
1461#endif /* !DEBUG */
87c472b7 1462 if (ifp->if_nextents != 1)
49f693fa 1463 return 0;
d967a68d 1464 if (ifp->if_format != XFS_DINODE_FMT_EXTENTS)
49f693fa 1465 return 0;
49f693fa 1466 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
9788e059
CH
1467 xfs_iext_first(ifp, &icur);
1468 xfs_iext_get_extent(ifp, &icur, &s);
49f693fa
DC
1469 rval = s.br_startoff == 0 && s.br_blockcount == 1;
1470 if (rval && whichfork == XFS_DATA_FORK)
1471 ASSERT(XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize);
1472 return rval;
1473}
1474
1475/*
1476 * Extent tree manipulation functions used during allocation.
1477 */
1478
1479/*
1480 * Convert a delayed allocation to a real allocation.
1481 */
1482STATIC int /* error */
1483xfs_bmap_add_extent_delay_real(
1277a5e0
DW
1484 struct xfs_bmalloca *bma,
1485 int whichfork)
49f693fa 1486{
87c472b7
CH
1487 struct xfs_mount *mp = bma->ip->i_mount;
1488 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
49f693fa 1489 struct xfs_bmbt_irec *new = &bma->got;
49f693fa
DC
1490 int error; /* error return value */
1491 int i; /* temp state */
49f693fa
DC
1492 xfs_fileoff_t new_endoff; /* end offset of new entry */
1493 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
1494 /* left is 0, right is 1, prev is 2 */
1495 int rval=0; /* return value (logging flags) */
7bd43334 1496 int state = xfs_bmap_fork_to_state(whichfork);
49f693fa
DC
1497 xfs_filblks_t da_new; /* new count del alloc blocks used */
1498 xfs_filblks_t da_old; /* old count del alloc blocks used */
1499 xfs_filblks_t temp=0; /* value for da_new calculations */
49f693fa 1500 int tmp_rval; /* partial logging flags */
19884717 1501 struct xfs_bmbt_irec old;
49f693fa 1502
1277a5e0 1503 ASSERT(whichfork != XFS_ATTR_FORK);
49f693fa
DC
1504 ASSERT(!isnullstartblock(new->br_startblock));
1505 ASSERT(!bma->cur ||
bbf943f8 1506 (bma->cur->bc_ino.flags & XFS_BTCUR_BMBT_WASDEL));
56b2de80 1507
79896434 1508 XFS_STATS_INC(mp, xs_add_exlist);
49f693fa
DC
1509
1510#define LEFT r[0]
1511#define RIGHT r[1]
1512#define PREV r[2]
56b2de80
DC
1513
1514 /*
49f693fa 1515 * Set up a bunch of variables to make the tests simpler.
56b2de80 1516 */
9788e059 1517 xfs_iext_get_extent(ifp, &bma->icur, &PREV);
49f693fa 1518 new_endoff = new->br_startoff + new->br_blockcount;
19884717 1519 ASSERT(isnullstartblock(PREV.br_startblock));
49f693fa
DC
1520 ASSERT(PREV.br_startoff <= new->br_startoff);
1521 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
1522
1523 da_old = startblockval(PREV.br_startblock);
1524 da_new = 0;
1525
56b2de80 1526 /*
49f693fa
DC
1527 * Set flags determining what part of the previous delayed allocation
1528 * extent is being replaced by a real allocation.
56b2de80 1529 */
49f693fa
DC
1530 if (PREV.br_startoff == new->br_startoff)
1531 state |= BMAP_LEFT_FILLING;
1532 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
1533 state |= BMAP_RIGHT_FILLING;
1534
56b2de80 1535 /*
49f693fa
DC
1536 * Check and set flags if this segment has a left neighbor.
1537 * Don't set contiguous if the combined extent would be too large.
56b2de80 1538 */
9788e059 1539 if (xfs_iext_peek_prev_extent(ifp, &bma->icur, &LEFT)) {
49f693fa 1540 state |= BMAP_LEFT_VALID;
49f693fa
DC
1541 if (isnullstartblock(LEFT.br_startblock))
1542 state |= BMAP_LEFT_DELAY;
1543 }
1544
1545 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
1546 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
1547 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
1548 LEFT.br_state == new->br_state &&
1549 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1550 state |= BMAP_LEFT_CONTIG;
56b2de80
DC
1551
1552 /*
49f693fa
DC
1553 * Check and set flags if this segment has a right neighbor.
1554 * Don't set contiguous if the combined extent would be too large.
1555 * Also check for all-three-contiguous being too large.
56b2de80 1556 */
9788e059 1557 if (xfs_iext_peek_next_extent(ifp, &bma->icur, &RIGHT)) {
49f693fa 1558 state |= BMAP_RIGHT_VALID;
49f693fa
DC
1559 if (isnullstartblock(RIGHT.br_startblock))
1560 state |= BMAP_RIGHT_DELAY;
1561 }
56b2de80 1562
49f693fa
DC
1563 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1564 new_endoff == RIGHT.br_startoff &&
1565 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
1566 new->br_state == RIGHT.br_state &&
1567 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1568 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1569 BMAP_RIGHT_FILLING)) !=
1570 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1571 BMAP_RIGHT_FILLING) ||
1572 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1573 <= MAXEXTLEN))
1574 state |= BMAP_RIGHT_CONTIG;
5e656dbb 1575
49f693fa
DC
1576 error = 0;
1577 /*
1578 * Switch out based on the FILLING and CONTIG state bits.
1579 */
1580 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1581 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
1582 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1583 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
1584 /*
1585 * Filling in all of a previously delayed allocation extent.
1586 * The left and right neighbors are both contiguous with new.
1587 */
19884717 1588 LEFT.br_blockcount += PREV.br_blockcount + RIGHT.br_blockcount;
a2ceac1f 1589
cf455a62
CH
1590 xfs_iext_remove(bma->ip, &bma->icur, state);
1591 xfs_iext_remove(bma->ip, &bma->icur, state);
9788e059
CH
1592 xfs_iext_prev(ifp, &bma->icur);
1593 xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT);
87c472b7 1594 ifp->if_nextents--;
12ebbfe1 1595
49f693fa
DC
1596 if (bma->cur == NULL)
1597 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1598 else {
1599 rval = XFS_ILOG_CORE;
70a93110 1600 error = xfs_bmbt_lookup_eq(bma->cur, &RIGHT, &i);
49f693fa
DC
1601 if (error)
1602 goto done;
fbb4fa7f
DW
1603 if (XFS_IS_CORRUPT(mp, i != 1)) {
1604 error = -EFSCORRUPTED;
1605 goto done;
1606 }
49f693fa
DC
1607 error = xfs_btree_delete(bma->cur, &i);
1608 if (error)
1609 goto done;
fbb4fa7f
DW
1610 if (XFS_IS_CORRUPT(mp, i != 1)) {
1611 error = -EFSCORRUPTED;
1612 goto done;
1613 }
49f693fa
DC
1614 error = xfs_btree_decrement(bma->cur, 0, &i);
1615 if (error)
1616 goto done;
fbb4fa7f
DW
1617 if (XFS_IS_CORRUPT(mp, i != 1)) {
1618 error = -EFSCORRUPTED;
1619 goto done;
1620 }
d0e5f1ff 1621 error = xfs_bmbt_update(bma->cur, &LEFT);
49f693fa
DC
1622 if (error)
1623 goto done;
5e656dbb 1624 }
49f693fa
DC
1625 break;
1626
1627 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
1628 /*
1629 * Filling in all of a previously delayed allocation extent.
1630 * The left neighbor is contiguous, the right is not.
1631 */
19884717 1632 old = LEFT;
19884717 1633 LEFT.br_blockcount += PREV.br_blockcount;
12ebbfe1 1634
cf455a62 1635 xfs_iext_remove(bma->ip, &bma->icur, state);
9788e059
CH
1636 xfs_iext_prev(ifp, &bma->icur);
1637 xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT);
49f693fa 1638
49f693fa
DC
1639 if (bma->cur == NULL)
1640 rval = XFS_ILOG_DEXT;
1641 else {
1642 rval = 0;
70a93110 1643 error = xfs_bmbt_lookup_eq(bma->cur, &old, &i);
49f693fa
DC
1644 if (error)
1645 goto done;
fbb4fa7f
DW
1646 if (XFS_IS_CORRUPT(mp, i != 1)) {
1647 error = -EFSCORRUPTED;
1648 goto done;
1649 }
d0e5f1ff 1650 error = xfs_bmbt_update(bma->cur, &LEFT);
49f693fa
DC
1651 if (error)
1652 goto done;
1653 }
1654 break;
1655
1656 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
1657 /*
1658 * Filling in all of a previously delayed allocation extent.
3833299f
DC
1659 * The right neighbor is contiguous, the left is not. Take care
1660 * with delay -> unwritten extent allocation here because the
1661 * delalloc record we are overwriting is always written.
49f693fa 1662 */
19884717
CH
1663 PREV.br_startblock = new->br_startblock;
1664 PREV.br_blockcount += RIGHT.br_blockcount;
3833299f 1665 PREV.br_state = new->br_state;
12ebbfe1 1666
9788e059 1667 xfs_iext_next(ifp, &bma->icur);
cf455a62 1668 xfs_iext_remove(bma->ip, &bma->icur, state);
9788e059
CH
1669 xfs_iext_prev(ifp, &bma->icur);
1670 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
49f693fa 1671
49f693fa
DC
1672 if (bma->cur == NULL)
1673 rval = XFS_ILOG_DEXT;
1674 else {
1675 rval = 0;
70a93110 1676 error = xfs_bmbt_lookup_eq(bma->cur, &RIGHT, &i);
49f693fa
DC
1677 if (error)
1678 goto done;
fbb4fa7f
DW
1679 if (XFS_IS_CORRUPT(mp, i != 1)) {
1680 error = -EFSCORRUPTED;
1681 goto done;
1682 }
d0e5f1ff 1683 error = xfs_bmbt_update(bma->cur, &PREV);
49f693fa
DC
1684 if (error)
1685 goto done;
1686 }
1687 break;
1688
1689 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
1690 /*
1691 * Filling in all of a previously delayed allocation extent.
1692 * Neither the left nor right neighbors are contiguous with
1693 * the new one.
1694 */
19884717
CH
1695 PREV.br_startblock = new->br_startblock;
1696 PREV.br_state = new->br_state;
9788e059 1697 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
87c472b7 1698 ifp->if_nextents++;
5e656dbb 1699
49f693fa
DC
1700 if (bma->cur == NULL)
1701 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1702 else {
1703 rval = XFS_ILOG_CORE;
70a93110 1704 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
49f693fa
DC
1705 if (error)
1706 goto done;
fbb4fa7f
DW
1707 if (XFS_IS_CORRUPT(mp, i != 0)) {
1708 error = -EFSCORRUPTED;
1709 goto done;
1710 }
49f693fa
DC
1711 error = xfs_btree_insert(bma->cur, &i);
1712 if (error)
1713 goto done;
fbb4fa7f
DW
1714 if (XFS_IS_CORRUPT(mp, i != 1)) {
1715 error = -EFSCORRUPTED;
1716 goto done;
1717 }
49f693fa
DC
1718 }
1719 break;
5e656dbb 1720
49f693fa
DC
1721 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
1722 /*
1723 * Filling in the first part of a previous delayed allocation.
1724 * The left neighbor is contiguous.
1725 */
19884717
CH
1726 old = LEFT;
1727 temp = PREV.br_blockcount - new->br_blockcount;
1728 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1729 startblockval(PREV.br_startblock));
1730
19884717 1731 LEFT.br_blockcount += new->br_blockcount;
a2ceac1f 1732
bc5dec54 1733 PREV.br_blockcount = temp;
19884717
CH
1734 PREV.br_startoff += new->br_blockcount;
1735 PREV.br_startblock = nullstartblock(da_new);
12ebbfe1 1736
9788e059
CH
1737 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
1738 xfs_iext_prev(ifp, &bma->icur);
1739 xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT);
19884717 1740
49f693fa
DC
1741 if (bma->cur == NULL)
1742 rval = XFS_ILOG_DEXT;
1743 else {
1744 rval = 0;
70a93110 1745 error = xfs_bmbt_lookup_eq(bma->cur, &old, &i);
49f693fa
DC
1746 if (error)
1747 goto done;
fbb4fa7f
DW
1748 if (XFS_IS_CORRUPT(mp, i != 1)) {
1749 error = -EFSCORRUPTED;
1750 goto done;
1751 }
d0e5f1ff 1752 error = xfs_bmbt_update(bma->cur, &LEFT);
49f693fa
DC
1753 if (error)
1754 goto done;
2bd0ea18 1755 }
49f693fa
DC
1756 break;
1757
1758 case BMAP_LEFT_FILLING:
2bd0ea18 1759 /*
49f693fa
DC
1760 * Filling in the first part of a previous delayed allocation.
1761 * The left neighbor is not contiguous.
5000d01d 1762 */
9788e059 1763 xfs_iext_update_extent(bma->ip, state, &bma->icur, new);
87c472b7
CH
1764 ifp->if_nextents++;
1765
49f693fa
DC
1766 if (bma->cur == NULL)
1767 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1768 else {
1769 rval = XFS_ILOG_CORE;
70a93110 1770 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
49f693fa
DC
1771 if (error)
1772 goto done;
fbb4fa7f
DW
1773 if (XFS_IS_CORRUPT(mp, i != 0)) {
1774 error = -EFSCORRUPTED;
1775 goto done;
1776 }
49f693fa
DC
1777 error = xfs_btree_insert(bma->cur, &i);
1778 if (error)
1779 goto done;
fbb4fa7f
DW
1780 if (XFS_IS_CORRUPT(mp, i != 1)) {
1781 error = -EFSCORRUPTED;
1782 goto done;
1783 }
49f693fa
DC
1784 }
1785
36e8786d 1786 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
49f693fa 1787 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
f7253505 1788 &bma->cur, 1, &tmp_rval, whichfork);
49f693fa
DC
1789 rval |= tmp_rval;
1790 if (error)
1791 goto done;
1792 }
19884717
CH
1793
1794 temp = PREV.br_blockcount - new->br_blockcount;
49f693fa
DC
1795 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1796 startblockval(PREV.br_startblock) -
116c6a88 1797 (bma->cur ? bma->cur->bc_ino.allocated : 0));
19884717 1798
19884717
CH
1799 PREV.br_startoff = new_endoff;
1800 PREV.br_blockcount = temp;
1801 PREV.br_startblock = nullstartblock(da_new);
9788e059 1802 xfs_iext_next(ifp, &bma->icur);
26a75f67 1803 xfs_iext_insert(bma->ip, &bma->icur, &PREV, state);
9788e059 1804 xfs_iext_prev(ifp, &bma->icur);
49f693fa
DC
1805 break;
1806
1807 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
5e656dbb 1808 /*
49f693fa
DC
1809 * Filling in the last part of a previous delayed allocation.
1810 * The right neighbor is contiguous with the new allocation.
5e656dbb 1811 */
19884717 1812 old = RIGHT;
19884717
CH
1813 RIGHT.br_startoff = new->br_startoff;
1814 RIGHT.br_startblock = new->br_startblock;
1815 RIGHT.br_blockcount += new->br_blockcount;
19884717 1816
49f693fa
DC
1817 if (bma->cur == NULL)
1818 rval = XFS_ILOG_DEXT;
1819 else {
1820 rval = 0;
70a93110 1821 error = xfs_bmbt_lookup_eq(bma->cur, &old, &i);
49f693fa
DC
1822 if (error)
1823 goto done;
fbb4fa7f
DW
1824 if (XFS_IS_CORRUPT(mp, i != 1)) {
1825 error = -EFSCORRUPTED;
1826 goto done;
1827 }
d0e5f1ff 1828 error = xfs_bmbt_update(bma->cur, &RIGHT);
49f693fa
DC
1829 if (error)
1830 goto done;
1831 }
1832
19884717 1833 temp = PREV.br_blockcount - new->br_blockcount;
49f693fa
DC
1834 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1835 startblockval(PREV.br_startblock));
19884717 1836
19884717
CH
1837 PREV.br_blockcount = temp;
1838 PREV.br_startblock = nullstartblock(da_new);
49f693fa 1839
9788e059
CH
1840 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
1841 xfs_iext_next(ifp, &bma->icur);
1842 xfs_iext_update_extent(bma->ip, state, &bma->icur, &RIGHT);
49f693fa
DC
1843 break;
1844
1845 case BMAP_RIGHT_FILLING:
a2ceac1f 1846 /*
49f693fa
DC
1847 * Filling in the last part of a previous delayed allocation.
1848 * The right neighbor is not contiguous.
a2ceac1f 1849 */
9788e059 1850 xfs_iext_update_extent(bma->ip, state, &bma->icur, new);
87c472b7
CH
1851 ifp->if_nextents++;
1852
49f693fa
DC
1853 if (bma->cur == NULL)
1854 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1855 else {
1856 rval = XFS_ILOG_CORE;
70a93110 1857 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
49f693fa
DC
1858 if (error)
1859 goto done;
fbb4fa7f
DW
1860 if (XFS_IS_CORRUPT(mp, i != 0)) {
1861 error = -EFSCORRUPTED;
1862 goto done;
1863 }
49f693fa
DC
1864 error = xfs_btree_insert(bma->cur, &i);
1865 if (error)
1866 goto done;
fbb4fa7f
DW
1867 if (XFS_IS_CORRUPT(mp, i != 1)) {
1868 error = -EFSCORRUPTED;
1869 goto done;
1870 }
49f693fa 1871 }
a2ceac1f 1872
36e8786d 1873 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
49f693fa 1874 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
f7253505 1875 &bma->cur, 1, &tmp_rval, whichfork);
49f693fa
DC
1876 rval |= tmp_rval;
1877 if (error)
1878 goto done;
1879 }
19884717
CH
1880
1881 temp = PREV.br_blockcount - new->br_blockcount;
49f693fa
DC
1882 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1883 startblockval(PREV.br_startblock) -
116c6a88 1884 (bma->cur ? bma->cur->bc_ino.allocated : 0));
19884717 1885
19884717
CH
1886 PREV.br_startblock = nullstartblock(da_new);
1887 PREV.br_blockcount = temp;
26a75f67 1888 xfs_iext_insert(bma->ip, &bma->icur, &PREV, state);
9788e059 1889 xfs_iext_next(ifp, &bma->icur);
49f693fa
DC
1890 break;
1891
1892 case 0:
5e656dbb 1893 /*
49f693fa
DC
1894 * Filling in the middle part of a previous delayed allocation.
1895 * Contiguity is impossible here.
1896 * This case is avoided almost all the time.
1897 *
1898 * We start with a delayed allocation:
1899 *
1900 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
1901 * PREV @ idx
1902 *
1903 * and we are allocating:
1904 * +rrrrrrrrrrrrrrrrr+
1905 * new
1906 *
1907 * and we set it up for insertion as:
1908 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
1909 * new
1910 * PREV @ idx LEFT RIGHT
1911 * inserted at idx + 1
5e656dbb 1912 */
19884717
CH
1913 old = PREV;
1914
1915 /* LEFT is the new middle */
49f693fa 1916 LEFT = *new;
19884717
CH
1917
1918 /* RIGHT is the new right */
49f693fa 1919 RIGHT.br_state = PREV.br_state;
49f693fa 1920 RIGHT.br_startoff = new_endoff;
19884717
CH
1921 RIGHT.br_blockcount =
1922 PREV.br_startoff + PREV.br_blockcount - new_endoff;
1923 RIGHT.br_startblock =
1924 nullstartblock(xfs_bmap_worst_indlen(bma->ip,
1925 RIGHT.br_blockcount));
1926
1927 /* truncate PREV */
19884717
CH
1928 PREV.br_blockcount = new->br_startoff - PREV.br_startoff;
1929 PREV.br_startblock =
1930 nullstartblock(xfs_bmap_worst_indlen(bma->ip,
1931 PREV.br_blockcount));
9788e059 1932 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
19884717 1933
9788e059 1934 xfs_iext_next(ifp, &bma->icur);
26a75f67
CH
1935 xfs_iext_insert(bma->ip, &bma->icur, &RIGHT, state);
1936 xfs_iext_insert(bma->ip, &bma->icur, &LEFT, state);
87c472b7 1937 ifp->if_nextents++;
19884717 1938
49f693fa
DC
1939 if (bma->cur == NULL)
1940 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1941 else {
1942 rval = XFS_ILOG_CORE;
70a93110 1943 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
49f693fa
DC
1944 if (error)
1945 goto done;
fbb4fa7f
DW
1946 if (XFS_IS_CORRUPT(mp, i != 0)) {
1947 error = -EFSCORRUPTED;
1948 goto done;
1949 }
49f693fa
DC
1950 error = xfs_btree_insert(bma->cur, &i);
1951 if (error)
1952 goto done;
fbb4fa7f
DW
1953 if (XFS_IS_CORRUPT(mp, i != 1)) {
1954 error = -EFSCORRUPTED;
1955 goto done;
1956 }
49f693fa 1957 }
5e656dbb 1958
36e8786d 1959 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
49f693fa 1960 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
f7253505 1961 &bma->cur, 1, &tmp_rval, whichfork);
49f693fa
DC
1962 rval |= tmp_rval;
1963 if (error)
1964 goto done;
1965 }
19884717
CH
1966
1967 da_new = startblockval(PREV.br_startblock) +
1968 startblockval(RIGHT.br_startblock);
49f693fa
DC
1969 break;
1970
1971 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1972 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1973 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
1974 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
1975 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1976 case BMAP_LEFT_CONTIG:
1977 case BMAP_RIGHT_CONTIG:
1978 /*
1979 * These cases are all impossible.
1980 */
1981 ASSERT(0);
1982 }
1983
5f847f1e 1984 /* add reverse mapping unless caller opted out */
46d29bb9
DW
1985 if (!(bma->flags & XFS_BMAPI_NORMAP))
1986 xfs_rmap_map_extent(bma->tp, bma->ip, whichfork, new);
d7f80320 1987
49f693fa 1988 /* convert to a btree if necessary */
36e8786d 1989 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
49f693fa
DC
1990 int tmp_logflags; /* partial log flag return val */
1991
1992 ASSERT(bma->cur == NULL);
1993 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
f7253505
BF
1994 &bma->cur, da_old > 0, &tmp_logflags,
1995 whichfork);
49f693fa
DC
1996 bma->logflags |= tmp_logflags;
1997 if (error)
1998 goto done;
1999 }
2000
f73690fe
DW
2001 if (da_new != da_old)
2002 xfs_mod_delalloc(mp, (int64_t)da_new - da_old);
2003
5bfca476 2004 if (bma->cur) {
116c6a88
DC
2005 da_new += bma->cur->bc_ino.allocated;
2006 bma->cur->bc_ino.allocated = 0;
49f693fa
DC
2007 }
2008
5bfca476
CH
2009 /* adjust for changes in reserved delayed indirect blocks */
2010 if (da_new != da_old) {
2011 ASSERT(state == 0 || da_new < da_old);
2012 error = xfs_mod_fdblocks(mp, (int64_t)(da_old - da_new),
2013 false);
2014 }
49f693fa 2015
36e8786d 2016 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, whichfork);
49f693fa 2017done:
1277a5e0
DW
2018 if (whichfork != XFS_COW_FORK)
2019 bma->logflags |= rval;
49f693fa
DC
2020 return error;
2021#undef LEFT
2022#undef RIGHT
2023#undef PREV
2bd0ea18
NS
2024}
2025
2026/*
49f693fa 2027 * Convert an unwritten allocation to a real allocation or vice versa.
2bd0ea18 2028 */
9fa4db19 2029int /* error */
49f693fa
DC
2030xfs_bmap_add_extent_unwritten_real(
2031 struct xfs_trans *tp,
2bd0ea18 2032 xfs_inode_t *ip, /* incore inode pointer */
4072e4b4 2033 int whichfork,
9788e059 2034 struct xfs_iext_cursor *icur,
49f693fa
DC
2035 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
2036 xfs_bmbt_irec_t *new, /* new data to add to file extents */
49f693fa 2037 int *logflagsp) /* inode logging flags */
2bd0ea18 2038{
49f693fa 2039 xfs_btree_cur_t *cur; /* btree cursor */
2bd0ea18 2040 int error; /* error return value */
2bd0ea18 2041 int i; /* temp state */
e07055b8 2042 struct xfs_ifork *ifp; /* inode fork pointer */
49f693fa 2043 xfs_fileoff_t new_endoff; /* end offset of new entry */
49f693fa
DC
2044 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
2045 /* left is 0, right is 1, prev is 2 */
2046 int rval=0; /* return value (logging flags) */
7bd43334 2047 int state = xfs_bmap_fork_to_state(whichfork);
4072e4b4 2048 struct xfs_mount *mp = ip->i_mount;
fd19685d 2049 struct xfs_bmbt_irec old;
5000d01d 2050
49f693fa 2051 *logflagsp = 0;
56b2de80 2052
49f693fa 2053 cur = *curp;
4072e4b4 2054 ifp = XFS_IFORK_PTR(ip, whichfork);
56b2de80 2055
49f693fa
DC
2056 ASSERT(!isnullstartblock(new->br_startblock));
2057
79896434 2058 XFS_STATS_INC(mp, xs_add_exlist);
49f693fa
DC
2059
2060#define LEFT r[0]
2061#define RIGHT r[1]
2062#define PREV r[2]
2063
2064 /*
2065 * Set up a bunch of variables to make the tests simpler.
2066 */
2bd0ea18 2067 error = 0;
9788e059 2068 xfs_iext_get_extent(ifp, icur, &PREV);
fd19685d 2069 ASSERT(new->br_state != PREV.br_state);
49f693fa
DC
2070 new_endoff = new->br_startoff + new->br_blockcount;
2071 ASSERT(PREV.br_startoff <= new->br_startoff);
2072 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
2073
2bd0ea18 2074 /*
49f693fa
DC
2075 * Set flags determining what part of the previous oldext allocation
2076 * extent is being replaced by a newext allocation.
2bd0ea18 2077 */
49f693fa
DC
2078 if (PREV.br_startoff == new->br_startoff)
2079 state |= BMAP_LEFT_FILLING;
2080 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
2081 state |= BMAP_RIGHT_FILLING;
2bd0ea18 2082
49f693fa
DC
2083 /*
2084 * Check and set flags if this segment has a left neighbor.
2085 * Don't set contiguous if the combined extent would be too large.
2086 */
9788e059 2087 if (xfs_iext_peek_prev_extent(ifp, icur, &LEFT)) {
49f693fa 2088 state |= BMAP_LEFT_VALID;
49f693fa
DC
2089 if (isnullstartblock(LEFT.br_startblock))
2090 state |= BMAP_LEFT_DELAY;
2bd0ea18 2091 }
49f693fa
DC
2092
2093 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2094 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
2095 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
fd19685d 2096 LEFT.br_state == new->br_state &&
49f693fa
DC
2097 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2098 state |= BMAP_LEFT_CONTIG;
2099
2bd0ea18 2100 /*
49f693fa
DC
2101 * Check and set flags if this segment has a right neighbor.
2102 * Don't set contiguous if the combined extent would be too large.
2103 * Also check for all-three-contiguous being too large.
2bd0ea18 2104 */
9788e059 2105 if (xfs_iext_peek_next_extent(ifp, icur, &RIGHT)) {
49f693fa 2106 state |= BMAP_RIGHT_VALID;
49f693fa
DC
2107 if (isnullstartblock(RIGHT.br_startblock))
2108 state |= BMAP_RIGHT_DELAY;
2109 }
a2ceac1f 2110
49f693fa
DC
2111 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2112 new_endoff == RIGHT.br_startoff &&
2113 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
fd19685d 2114 new->br_state == RIGHT.br_state &&
49f693fa
DC
2115 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
2116 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2117 BMAP_RIGHT_FILLING)) !=
2118 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2119 BMAP_RIGHT_FILLING) ||
2120 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
2121 <= MAXEXTLEN))
2122 state |= BMAP_RIGHT_CONTIG;
2bd0ea18 2123
49f693fa
DC
2124 /*
2125 * Switch out based on the FILLING and CONTIG state bits.
2126 */
2127 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2128 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
2129 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2130 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2bd0ea18 2131 /*
49f693fa
DC
2132 * Setting all of a previous oldext extent to newext.
2133 * The left and right neighbors are both contiguous with new.
2bd0ea18 2134 */
fd19685d 2135 LEFT.br_blockcount += PREV.br_blockcount + RIGHT.br_blockcount;
49f693fa 2136
cf455a62
CH
2137 xfs_iext_remove(ip, icur, state);
2138 xfs_iext_remove(ip, icur, state);
9788e059
CH
2139 xfs_iext_prev(ifp, icur);
2140 xfs_iext_update_extent(ip, state, icur, &LEFT);
87c472b7 2141 ifp->if_nextents -= 2;
49f693fa
DC
2142 if (cur == NULL)
2143 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2144 else {
2145 rval = XFS_ILOG_CORE;
70a93110
CH
2146 error = xfs_bmbt_lookup_eq(cur, &RIGHT, &i);
2147 if (error)
49f693fa 2148 goto done;
fbb4fa7f
DW
2149 if (XFS_IS_CORRUPT(mp, i != 1)) {
2150 error = -EFSCORRUPTED;
2151 goto done;
2152 }
49f693fa
DC
2153 if ((error = xfs_btree_delete(cur, &i)))
2154 goto done;
fbb4fa7f
DW
2155 if (XFS_IS_CORRUPT(mp, i != 1)) {
2156 error = -EFSCORRUPTED;
2157 goto done;
2158 }
49f693fa
DC
2159 if ((error = xfs_btree_decrement(cur, 0, &i)))
2160 goto done;
fbb4fa7f
DW
2161 if (XFS_IS_CORRUPT(mp, i != 1)) {
2162 error = -EFSCORRUPTED;
2163 goto done;
2164 }
49f693fa
DC
2165 if ((error = xfs_btree_delete(cur, &i)))
2166 goto done;
fbb4fa7f
DW
2167 if (XFS_IS_CORRUPT(mp, i != 1)) {
2168 error = -EFSCORRUPTED;
2169 goto done;
2170 }
49f693fa
DC
2171 if ((error = xfs_btree_decrement(cur, 0, &i)))
2172 goto done;
fbb4fa7f
DW
2173 if (XFS_IS_CORRUPT(mp, i != 1)) {
2174 error = -EFSCORRUPTED;
2175 goto done;
2176 }
d0e5f1ff 2177 error = xfs_bmbt_update(cur, &LEFT);
fd19685d 2178 if (error)
49f693fa 2179 goto done;
2bd0ea18 2180 }
2bd0ea18
NS
2181 break;
2182
49f693fa 2183 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2bd0ea18 2184 /*
49f693fa
DC
2185 * Setting all of a previous oldext extent to newext.
2186 * The left neighbor is contiguous, the right is not.
2bd0ea18 2187 */
fd19685d 2188 LEFT.br_blockcount += PREV.br_blockcount;
49f693fa 2189
cf455a62 2190 xfs_iext_remove(ip, icur, state);
9788e059
CH
2191 xfs_iext_prev(ifp, icur);
2192 xfs_iext_update_extent(ip, state, icur, &LEFT);
87c472b7 2193 ifp->if_nextents--;
49f693fa
DC
2194 if (cur == NULL)
2195 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2196 else {
2197 rval = XFS_ILOG_CORE;
70a93110
CH
2198 error = xfs_bmbt_lookup_eq(cur, &PREV, &i);
2199 if (error)
49f693fa 2200 goto done;
fbb4fa7f
DW
2201 if (XFS_IS_CORRUPT(mp, i != 1)) {
2202 error = -EFSCORRUPTED;
2203 goto done;
2204 }
49f693fa
DC
2205 if ((error = xfs_btree_delete(cur, &i)))
2206 goto done;
fbb4fa7f
DW
2207 if (XFS_IS_CORRUPT(mp, i != 1)) {
2208 error = -EFSCORRUPTED;
2209 goto done;
2210 }
49f693fa
DC
2211 if ((error = xfs_btree_decrement(cur, 0, &i)))
2212 goto done;
fbb4fa7f
DW
2213 if (XFS_IS_CORRUPT(mp, i != 1)) {
2214 error = -EFSCORRUPTED;
2215 goto done;
2216 }
d0e5f1ff 2217 error = xfs_bmbt_update(cur, &LEFT);
fd19685d 2218 if (error)
49f693fa 2219 goto done;
2bd0ea18 2220 }
2bd0ea18 2221 break;
5000d01d 2222
49f693fa 2223 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2bd0ea18 2224 /*
49f693fa
DC
2225 * Setting all of a previous oldext extent to newext.
2226 * The right neighbor is contiguous, the left is not.
2bd0ea18 2227 */
fd19685d
CH
2228 PREV.br_blockcount += RIGHT.br_blockcount;
2229 PREV.br_state = new->br_state;
8121dd76 2230
9788e059 2231 xfs_iext_next(ifp, icur);
cf455a62 2232 xfs_iext_remove(ip, icur, state);
9788e059
CH
2233 xfs_iext_prev(ifp, icur);
2234 xfs_iext_update_extent(ip, state, icur, &PREV);
87c472b7 2235 ifp->if_nextents--;
fd19685d 2236
49f693fa
DC
2237 if (cur == NULL)
2238 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2239 else {
2240 rval = XFS_ILOG_CORE;
70a93110
CH
2241 error = xfs_bmbt_lookup_eq(cur, &RIGHT, &i);
2242 if (error)
49f693fa 2243 goto done;
fbb4fa7f
DW
2244 if (XFS_IS_CORRUPT(mp, i != 1)) {
2245 error = -EFSCORRUPTED;
2246 goto done;
2247 }
49f693fa
DC
2248 if ((error = xfs_btree_delete(cur, &i)))
2249 goto done;
fbb4fa7f
DW
2250 if (XFS_IS_CORRUPT(mp, i != 1)) {
2251 error = -EFSCORRUPTED;
2252 goto done;
2253 }
49f693fa
DC
2254 if ((error = xfs_btree_decrement(cur, 0, &i)))
2255 goto done;
fbb4fa7f
DW
2256 if (XFS_IS_CORRUPT(mp, i != 1)) {
2257 error = -EFSCORRUPTED;
2258 goto done;
2259 }
d0e5f1ff 2260 error = xfs_bmbt_update(cur, &PREV);
fd19685d 2261 if (error)
49f693fa
DC
2262 goto done;
2263 }
2264 break;
2bd0ea18 2265
49f693fa
DC
2266 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
2267 /*
2268 * Setting all of a previous oldext extent to newext.
2269 * Neither the left nor right neighbors are contiguous with
2270 * the new one.
2271 */
fd19685d 2272 PREV.br_state = new->br_state;
9788e059 2273 xfs_iext_update_extent(ip, state, icur, &PREV);
2bd0ea18 2274
49f693fa
DC
2275 if (cur == NULL)
2276 rval = XFS_ILOG_DEXT;
2277 else {
2278 rval = 0;
70a93110
CH
2279 error = xfs_bmbt_lookup_eq(cur, new, &i);
2280 if (error)
49f693fa 2281 goto done;
fbb4fa7f
DW
2282 if (XFS_IS_CORRUPT(mp, i != 1)) {
2283 error = -EFSCORRUPTED;
2284 goto done;
2285 }
d0e5f1ff 2286 error = xfs_bmbt_update(cur, &PREV);
fd19685d 2287 if (error)
49f693fa
DC
2288 goto done;
2289 }
2290 break;
2bd0ea18 2291
49f693fa
DC
2292 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
2293 /*
2294 * Setting the first part of a previous oldext extent to newext.
2295 * The left neighbor is contiguous.
2296 */
fd19685d 2297 LEFT.br_blockcount += new->br_blockcount;
a2ceac1f 2298
fd19685d 2299 old = PREV;
fd19685d
CH
2300 PREV.br_startoff += new->br_blockcount;
2301 PREV.br_startblock += new->br_blockcount;
2302 PREV.br_blockcount -= new->br_blockcount;
b3563c19 2303
9788e059
CH
2304 xfs_iext_update_extent(ip, state, icur, &PREV);
2305 xfs_iext_prev(ifp, icur);
2306 xfs_iext_update_extent(ip, state, icur, &LEFT);
b3563c19 2307
49f693fa
DC
2308 if (cur == NULL)
2309 rval = XFS_ILOG_DEXT;
2310 else {
2311 rval = 0;
70a93110 2312 error = xfs_bmbt_lookup_eq(cur, &old, &i);
fd19685d 2313 if (error)
49f693fa 2314 goto done;
fbb4fa7f
DW
2315 if (XFS_IS_CORRUPT(mp, i != 1)) {
2316 error = -EFSCORRUPTED;
2317 goto done;
2318 }
d0e5f1ff 2319 error = xfs_bmbt_update(cur, &PREV);
fd19685d 2320 if (error)
49f693fa 2321 goto done;
fd19685d
CH
2322 error = xfs_btree_decrement(cur, 0, &i);
2323 if (error)
49f693fa 2324 goto done;
d0e5f1ff 2325 error = xfs_bmbt_update(cur, &LEFT);
49f693fa
DC
2326 if (error)
2327 goto done;
2bd0ea18 2328 }
49f693fa 2329 break;
b3563c19 2330
49f693fa
DC
2331 case BMAP_LEFT_FILLING:
2332 /*
2333 * Setting the first part of a previous oldext extent to newext.
2334 * The left neighbor is not contiguous.
2335 */
fd19685d 2336 old = PREV;
fd19685d
CH
2337 PREV.br_startoff += new->br_blockcount;
2338 PREV.br_startblock += new->br_blockcount;
2339 PREV.br_blockcount -= new->br_blockcount;
2bd0ea18 2340
9788e059 2341 xfs_iext_update_extent(ip, state, icur, &PREV);
26a75f67 2342 xfs_iext_insert(ip, icur, new, state);
87c472b7
CH
2343 ifp->if_nextents++;
2344
49f693fa
DC
2345 if (cur == NULL)
2346 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2347 else {
2348 rval = XFS_ILOG_CORE;
70a93110 2349 error = xfs_bmbt_lookup_eq(cur, &old, &i);
fd19685d 2350 if (error)
49f693fa 2351 goto done;
fbb4fa7f
DW
2352 if (XFS_IS_CORRUPT(mp, i != 1)) {
2353 error = -EFSCORRUPTED;
2354 goto done;
2355 }
d0e5f1ff 2356 error = xfs_bmbt_update(cur, &PREV);
fd19685d 2357 if (error)
49f693fa
DC
2358 goto done;
2359 cur->bc_rec.b = *new;
2360 if ((error = xfs_btree_insert(cur, &i)))
2361 goto done;
fbb4fa7f
DW
2362 if (XFS_IS_CORRUPT(mp, i != 1)) {
2363 error = -EFSCORRUPTED;
2364 goto done;
2365 }
49f693fa
DC
2366 }
2367 break;
56b2de80 2368
49f693fa
DC
2369 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
2370 /*
2371 * Setting the last part of a previous oldext extent to newext.
2372 * The right neighbor is contiguous with the new allocation.
2373 */
fd19685d 2374 old = PREV;
fd19685d 2375 PREV.br_blockcount -= new->br_blockcount;
56b2de80 2376
fd19685d
CH
2377 RIGHT.br_startoff = new->br_startoff;
2378 RIGHT.br_startblock = new->br_startblock;
2379 RIGHT.br_blockcount += new->br_blockcount;
8121dd76 2380
9788e059
CH
2381 xfs_iext_update_extent(ip, state, icur, &PREV);
2382 xfs_iext_next(ifp, icur);
2383 xfs_iext_update_extent(ip, state, icur, &RIGHT);
56b2de80 2384
49f693fa
DC
2385 if (cur == NULL)
2386 rval = XFS_ILOG_DEXT;
2387 else {
2388 rval = 0;
70a93110 2389 error = xfs_bmbt_lookup_eq(cur, &old, &i);
fd19685d 2390 if (error)
49f693fa 2391 goto done;
fbb4fa7f
DW
2392 if (XFS_IS_CORRUPT(mp, i != 1)) {
2393 error = -EFSCORRUPTED;
2394 goto done;
2395 }
d0e5f1ff 2396 error = xfs_bmbt_update(cur, &PREV);
fd19685d 2397 if (error)
49f693fa 2398 goto done;
fd19685d
CH
2399 error = xfs_btree_increment(cur, 0, &i);
2400 if (error)
49f693fa 2401 goto done;
d0e5f1ff 2402 error = xfs_bmbt_update(cur, &RIGHT);
fd19685d 2403 if (error)
49f693fa
DC
2404 goto done;
2405 }
2406 break;
ca86e759 2407
49f693fa
DC
2408 case BMAP_RIGHT_FILLING:
2409 /*
2410 * Setting the last part of a previous oldext extent to newext.
2411 * The right neighbor is not contiguous.
2412 */
fd19685d 2413 old = PREV;
fd19685d 2414 PREV.br_blockcount -= new->br_blockcount;
2bd0ea18 2415
9788e059
CH
2416 xfs_iext_update_extent(ip, state, icur, &PREV);
2417 xfs_iext_next(ifp, icur);
26a75f67 2418 xfs_iext_insert(ip, icur, new, state);
87c472b7 2419 ifp->if_nextents++;
2bd0ea18 2420
49f693fa
DC
2421 if (cur == NULL)
2422 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2423 else {
2424 rval = XFS_ILOG_CORE;
70a93110 2425 error = xfs_bmbt_lookup_eq(cur, &old, &i);
fd19685d 2426 if (error)
49f693fa 2427 goto done;
fbb4fa7f
DW
2428 if (XFS_IS_CORRUPT(mp, i != 1)) {
2429 error = -EFSCORRUPTED;
2430 goto done;
2431 }
d0e5f1ff 2432 error = xfs_bmbt_update(cur, &PREV);
fd19685d 2433 if (error)
49f693fa 2434 goto done;
70a93110
CH
2435 error = xfs_bmbt_lookup_eq(cur, new, &i);
2436 if (error)
49f693fa 2437 goto done;
fbb4fa7f
DW
2438 if (XFS_IS_CORRUPT(mp, i != 0)) {
2439 error = -EFSCORRUPTED;
2440 goto done;
2441 }
49f693fa
DC
2442 if ((error = xfs_btree_insert(cur, &i)))
2443 goto done;
fbb4fa7f
DW
2444 if (XFS_IS_CORRUPT(mp, i != 1)) {
2445 error = -EFSCORRUPTED;
2446 goto done;
2447 }
49f693fa
DC
2448 }
2449 break;
2450
2451 case 0:
2bd0ea18 2452 /*
49f693fa
DC
2453 * Setting the middle part of a previous oldext extent to
2454 * newext. Contiguity is impossible here.
2455 * One extent becomes three extents.
2bd0ea18 2456 */
fd19685d 2457 old = PREV;
fd19685d 2458 PREV.br_blockcount = new->br_startoff - PREV.br_startoff;
49f693fa
DC
2459
2460 r[0] = *new;
2461 r[1].br_startoff = new_endoff;
2462 r[1].br_blockcount =
fd19685d 2463 old.br_startoff + old.br_blockcount - new_endoff;
49f693fa 2464 r[1].br_startblock = new->br_startblock + new->br_blockcount;
fd19685d 2465 r[1].br_state = PREV.br_state;
49f693fa 2466
9788e059
CH
2467 xfs_iext_update_extent(ip, state, icur, &PREV);
2468 xfs_iext_next(ifp, icur);
26a75f67
CH
2469 xfs_iext_insert(ip, icur, &r[1], state);
2470 xfs_iext_insert(ip, icur, &r[0], state);
87c472b7 2471 ifp->if_nextents += 2;
49f693fa 2472
49f693fa
DC
2473 if (cur == NULL)
2474 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2475 else {
2476 rval = XFS_ILOG_CORE;
70a93110 2477 error = xfs_bmbt_lookup_eq(cur, &old, &i);
fd19685d 2478 if (error)
49f693fa 2479 goto done;
fbb4fa7f
DW
2480 if (XFS_IS_CORRUPT(mp, i != 1)) {
2481 error = -EFSCORRUPTED;
2482 goto done;
2483 }
49f693fa 2484 /* new right extent - oldext */
d0e5f1ff
CH
2485 error = xfs_bmbt_update(cur, &r[1]);
2486 if (error)
49f693fa
DC
2487 goto done;
2488 /* new left extent - oldext */
2489 cur->bc_rec.b = PREV;
49f693fa
DC
2490 if ((error = xfs_btree_insert(cur, &i)))
2491 goto done;
fbb4fa7f
DW
2492 if (XFS_IS_CORRUPT(mp, i != 1)) {
2493 error = -EFSCORRUPTED;
2494 goto done;
2495 }
49f693fa
DC
2496 /*
2497 * Reset the cursor to the position of the new extent
2498 * we are about to insert as we can't trust it after
2499 * the previous insert.
2500 */
70a93110
CH
2501 error = xfs_bmbt_lookup_eq(cur, new, &i);
2502 if (error)
49f693fa 2503 goto done;
fbb4fa7f
DW
2504 if (XFS_IS_CORRUPT(mp, i != 0)) {
2505 error = -EFSCORRUPTED;
2506 goto done;
2507 }
49f693fa 2508 /* new middle extent - newext */
49f693fa
DC
2509 if ((error = xfs_btree_insert(cur, &i)))
2510 goto done;
fbb4fa7f
DW
2511 if (XFS_IS_CORRUPT(mp, i != 1)) {
2512 error = -EFSCORRUPTED;
2513 goto done;
2514 }
2bd0ea18 2515 }
49f693fa
DC
2516 break;
2517
2518 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2519 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2520 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2521 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2522 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2523 case BMAP_LEFT_CONTIG:
2524 case BMAP_RIGHT_CONTIG:
5000d01d 2525 /*
49f693fa 2526 * These cases are all impossible.
2bd0ea18 2527 */
49f693fa
DC
2528 ASSERT(0);
2529 }
2530
d7f80320 2531 /* update reverse mappings */
46d29bb9 2532 xfs_rmap_convert_extent(mp, tp, ip, whichfork, new);
d7f80320 2533
49f693fa 2534 /* convert to a btree if necessary */
4072e4b4 2535 if (xfs_bmap_needs_btree(ip, whichfork)) {
49f693fa
DC
2536 int tmp_logflags; /* partial log flag return val */
2537
2538 ASSERT(cur == NULL);
f7253505
BF
2539 error = xfs_bmap_extents_to_btree(tp, ip, &cur, 0,
2540 &tmp_logflags, whichfork);
49f693fa
DC
2541 *logflagsp |= tmp_logflags;
2542 if (error)
2543 goto done;
ca86e759 2544 }
49f693fa
DC
2545
2546 /* clear out the allocated field, done with it now in any case. */
2547 if (cur) {
116c6a88 2548 cur->bc_ino.allocated = 0;
49f693fa
DC
2549 *curp = cur;
2550 }
2551
4072e4b4 2552 xfs_bmap_check_leaf_extents(*curp, ip, whichfork);
2bd0ea18 2553done:
49f693fa 2554 *logflagsp |= rval;
2bd0ea18 2555 return error;
49f693fa
DC
2556#undef LEFT
2557#undef RIGHT
2558#undef PREV
2bd0ea18
NS
2559}
2560
5e656dbb 2561/*
49f693fa 2562 * Convert a hole to a delayed allocation.
5e656dbb 2563 */
49f693fa
DC
2564STATIC void
2565xfs_bmap_add_extent_hole_delay(
2566 xfs_inode_t *ip, /* incore inode pointer */
cc66acaf 2567 int whichfork,
9788e059 2568 struct xfs_iext_cursor *icur,
49f693fa 2569 xfs_bmbt_irec_t *new) /* new data to add to file extents */
2bd0ea18 2570{
e07055b8 2571 struct xfs_ifork *ifp; /* inode fork pointer */
49f693fa
DC
2572 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2573 xfs_filblks_t newlen=0; /* new indirect size */
2574 xfs_filblks_t oldlen=0; /* old indirect size */
2575 xfs_bmbt_irec_t right; /* right neighbor extent entry */
7bd43334 2576 int state = xfs_bmap_fork_to_state(whichfork);
450b3981 2577 xfs_filblks_t temp; /* temp for indirect calculations */
49f693fa 2578
cc66acaf 2579 ifp = XFS_IFORK_PTR(ip, whichfork);
49f693fa 2580 ASSERT(isnullstartblock(new->br_startblock));
2bd0ea18 2581
062998e3 2582 /*
49f693fa 2583 * Check and set flags if this segment has a left neighbor
062998e3 2584 */
9788e059 2585 if (xfs_iext_peek_prev_extent(ifp, icur, &left)) {
49f693fa 2586 state |= BMAP_LEFT_VALID;
49f693fa
DC
2587 if (isnullstartblock(left.br_startblock))
2588 state |= BMAP_LEFT_DELAY;
5e656dbb 2589 }
49f693fa
DC
2590
2591 /*
2592 * Check and set flags if the current (right) segment exists.
2593 * If it doesn't exist, we're converting the hole at end-of-file.
2594 */
9788e059 2595 if (xfs_iext_get_extent(ifp, icur, &right)) {
49f693fa 2596 state |= BMAP_RIGHT_VALID;
49f693fa
DC
2597 if (isnullstartblock(right.br_startblock))
2598 state |= BMAP_RIGHT_DELAY;
2599 }
2600
2601 /*
2602 * Set contiguity flags on the left and right neighbors.
2603 * Don't let extents get too large, even if the pieces are contiguous.
2604 */
2605 if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) &&
2606 left.br_startoff + left.br_blockcount == new->br_startoff &&
2607 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2608 state |= BMAP_LEFT_CONTIG;
2609
2610 if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) &&
2611 new->br_startoff + new->br_blockcount == right.br_startoff &&
2612 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2613 (!(state & BMAP_LEFT_CONTIG) ||
2614 (left.br_blockcount + new->br_blockcount +
2615 right.br_blockcount <= MAXEXTLEN)))
2616 state |= BMAP_RIGHT_CONTIG;
2617
2618 /*
2619 * Switch out based on the contiguity flags.
2620 */
2621 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2622 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2623 /*
2624 * New allocation is contiguous with delayed allocations
2625 * on the left and on the right.
2626 * Merge all three into a single extent record.
2627 */
49f693fa
DC
2628 temp = left.br_blockcount + new->br_blockcount +
2629 right.br_blockcount;
2630
49f693fa
DC
2631 oldlen = startblockval(left.br_startblock) +
2632 startblockval(new->br_startblock) +
2633 startblockval(right.br_startblock);
f3b62b32
BF
2634 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2635 oldlen);
450b3981
CH
2636 left.br_startblock = nullstartblock(newlen);
2637 left.br_blockcount = temp;
49f693fa 2638
cf455a62 2639 xfs_iext_remove(ip, icur, state);
9788e059
CH
2640 xfs_iext_prev(ifp, icur);
2641 xfs_iext_update_extent(ip, state, icur, &left);
49f693fa
DC
2642 break;
2643
2644 case BMAP_LEFT_CONTIG:
2645 /*
2646 * New allocation is contiguous with a delayed allocation
2647 * on the left.
2648 * Merge the new allocation with the left neighbor.
2649 */
49f693fa
DC
2650 temp = left.br_blockcount + new->br_blockcount;
2651
49f693fa
DC
2652 oldlen = startblockval(left.br_startblock) +
2653 startblockval(new->br_startblock);
f3b62b32
BF
2654 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2655 oldlen);
450b3981
CH
2656 left.br_blockcount = temp;
2657 left.br_startblock = nullstartblock(newlen);
ee2bb3f5 2658
9788e059
CH
2659 xfs_iext_prev(ifp, icur);
2660 xfs_iext_update_extent(ip, state, icur, &left);
49f693fa
DC
2661 break;
2662
2663 case BMAP_RIGHT_CONTIG:
2664 /*
2665 * New allocation is contiguous with a delayed allocation
2666 * on the right.
2667 * Merge the new allocation with the right neighbor.
2668 */
49f693fa
DC
2669 temp = new->br_blockcount + right.br_blockcount;
2670 oldlen = startblockval(new->br_startblock) +
2671 startblockval(right.br_startblock);
f3b62b32
BF
2672 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2673 oldlen);
450b3981
CH
2674 right.br_startoff = new->br_startoff;
2675 right.br_startblock = nullstartblock(newlen);
2676 right.br_blockcount = temp;
9788e059 2677 xfs_iext_update_extent(ip, state, icur, &right);
49f693fa
DC
2678 break;
2679
2680 case 0:
2681 /*
2682 * New allocation is not contiguous with another
2683 * delayed allocation.
2684 * Insert a new entry.
2685 */
2686 oldlen = newlen = 0;
26a75f67 2687 xfs_iext_insert(ip, icur, new, state);
49f693fa
DC
2688 break;
2689 }
2690 if (oldlen != newlen) {
2691 ASSERT(oldlen > newlen);
19ebedcf
DC
2692 xfs_mod_fdblocks(ip->i_mount, (int64_t)(oldlen - newlen),
2693 false);
49f693fa
DC
2694 /*
2695 * Nothing to do for disk quota accounting here.
2696 */
f73690fe 2697 xfs_mod_delalloc(ip->i_mount, (int64_t)newlen - oldlen);
2bd0ea18 2698 }
2bd0ea18
NS
2699}
2700
2701/*
49f693fa 2702 * Convert a hole to a real allocation.
2bd0ea18 2703 */
49f693fa
DC
2704STATIC int /* error */
2705xfs_bmap_add_extent_hole_real(
972432f2
CH
2706 struct xfs_trans *tp,
2707 struct xfs_inode *ip,
2708 int whichfork,
9788e059 2709 struct xfs_iext_cursor *icur,
972432f2
CH
2710 struct xfs_btree_cur **curp,
2711 struct xfs_bmbt_irec *new,
5f847f1e
DW
2712 int *logflagsp,
2713 int flags)
5000d01d 2714{
972432f2
CH
2715 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
2716 struct xfs_mount *mp = ip->i_mount;
2717 struct xfs_btree_cur *cur = *curp;
49f693fa
DC
2718 int error; /* error return value */
2719 int i; /* temp state */
49f693fa
DC
2720 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2721 xfs_bmbt_irec_t right; /* right neighbor extent entry */
2722 int rval=0; /* return value (logging flags) */
7bd43334 2723 int state = xfs_bmap_fork_to_state(whichfork);
3281eb91 2724 struct xfs_bmbt_irec old;
2bd0ea18 2725
49f693fa 2726 ASSERT(!isnullstartblock(new->br_startblock));
bbf943f8 2727 ASSERT(!cur || !(cur->bc_ino.flags & XFS_BTCUR_BMBT_WASDEL));
5e656dbb 2728
79896434 2729 XFS_STATS_INC(mp, xs_add_exlist);
49f693fa 2730
49f693fa
DC
2731 /*
2732 * Check and set flags if this segment has a left neighbor.
2733 */
9788e059 2734 if (xfs_iext_peek_prev_extent(ifp, icur, &left)) {
49f693fa 2735 state |= BMAP_LEFT_VALID;
49f693fa
DC
2736 if (isnullstartblock(left.br_startblock))
2737 state |= BMAP_LEFT_DELAY;
5e656dbb 2738 }
2bd0ea18 2739
49f693fa
DC
2740 /*
2741 * Check and set flags if this segment has a current value.
2742 * Not true if we're inserting into the "hole" at eof.
2743 */
9788e059 2744 if (xfs_iext_get_extent(ifp, icur, &right)) {
49f693fa 2745 state |= BMAP_RIGHT_VALID;
49f693fa
DC
2746 if (isnullstartblock(right.br_startblock))
2747 state |= BMAP_RIGHT_DELAY;
2bd0ea18 2748 }
2bd0ea18 2749
49f693fa
DC
2750 /*
2751 * We're inserting a real allocation between "left" and "right".
2752 * Set the contiguity flags. Don't let extents get too large.
2753 */
2754 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2755 left.br_startoff + left.br_blockcount == new->br_startoff &&
2756 left.br_startblock + left.br_blockcount == new->br_startblock &&
2757 left.br_state == new->br_state &&
2758 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2759 state |= BMAP_LEFT_CONTIG;
57c9fccb 2760
49f693fa
DC
2761 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2762 new->br_startoff + new->br_blockcount == right.br_startoff &&
2763 new->br_startblock + new->br_blockcount == right.br_startblock &&
2764 new->br_state == right.br_state &&
2765 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2766 (!(state & BMAP_LEFT_CONTIG) ||
2767 left.br_blockcount + new->br_blockcount +
2768 right.br_blockcount <= MAXEXTLEN))
2769 state |= BMAP_RIGHT_CONTIG;
ca86e759 2770
49f693fa
DC
2771 error = 0;
2772 /*
2773 * Select which case we're in here, and implement it.
2774 */
2775 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2776 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
57c9fccb 2777 /*
49f693fa
DC
2778 * New allocation is contiguous with real allocations on the
2779 * left and on the right.
2780 * Merge all three into a single extent record.
57c9fccb 2781 */
3281eb91 2782 left.br_blockcount += new->br_blockcount + right.br_blockcount;
56b2de80 2783
cf455a62 2784 xfs_iext_remove(ip, icur, state);
9788e059
CH
2785 xfs_iext_prev(ifp, icur);
2786 xfs_iext_update_extent(ip, state, icur, &left);
87c472b7 2787 ifp->if_nextents--;
56b2de80 2788
972432f2 2789 if (cur == NULL) {
49f693fa
DC
2790 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
2791 } else {
2792 rval = XFS_ILOG_CORE;
70a93110 2793 error = xfs_bmbt_lookup_eq(cur, &right, &i);
49f693fa
DC
2794 if (error)
2795 goto done;
fbb4fa7f
DW
2796 if (XFS_IS_CORRUPT(mp, i != 1)) {
2797 error = -EFSCORRUPTED;
2798 goto done;
2799 }
972432f2 2800 error = xfs_btree_delete(cur, &i);
49f693fa
DC
2801 if (error)
2802 goto done;
fbb4fa7f
DW
2803 if (XFS_IS_CORRUPT(mp, i != 1)) {
2804 error = -EFSCORRUPTED;
2805 goto done;
2806 }
972432f2 2807 error = xfs_btree_decrement(cur, 0, &i);
49f693fa
DC
2808 if (error)
2809 goto done;
fbb4fa7f
DW
2810 if (XFS_IS_CORRUPT(mp, i != 1)) {
2811 error = -EFSCORRUPTED;
2812 goto done;
2813 }
d0e5f1ff 2814 error = xfs_bmbt_update(cur, &left);
49f693fa
DC
2815 if (error)
2816 goto done;
2817 }
57c9fccb 2818 break;
49f693fa
DC
2819
2820 case BMAP_LEFT_CONTIG:
2821 /*
2822 * New allocation is contiguous with a real allocation
2823 * on the left.
2824 * Merge the new allocation with the left neighbor.
2825 */
3281eb91 2826 old = left;
3281eb91 2827 left.br_blockcount += new->br_blockcount;
501dd276 2828
9788e059
CH
2829 xfs_iext_prev(ifp, icur);
2830 xfs_iext_update_extent(ip, state, icur, &left);
49f693fa 2831
972432f2 2832 if (cur == NULL) {
49f693fa
DC
2833 rval = xfs_ilog_fext(whichfork);
2834 } else {
2835 rval = 0;
70a93110 2836 error = xfs_bmbt_lookup_eq(cur, &old, &i);
49f693fa
DC
2837 if (error)
2838 goto done;
fbb4fa7f
DW
2839 if (XFS_IS_CORRUPT(mp, i != 1)) {
2840 error = -EFSCORRUPTED;
2841 goto done;
2842 }
d0e5f1ff 2843 error = xfs_bmbt_update(cur, &left);
49f693fa
DC
2844 if (error)
2845 goto done;
2846 }
57c9fccb 2847 break;
49f693fa
DC
2848
2849 case BMAP_RIGHT_CONTIG:
2850 /*
2851 * New allocation is contiguous with a real allocation
2852 * on the right.
2853 * Merge the new allocation with the right neighbor.
2854 */
3281eb91 2855 old = right;
df926c07 2856
3281eb91
CH
2857 right.br_startoff = new->br_startoff;
2858 right.br_startblock = new->br_startblock;
2859 right.br_blockcount += new->br_blockcount;
9788e059 2860 xfs_iext_update_extent(ip, state, icur, &right);
49f693fa 2861
972432f2 2862 if (cur == NULL) {
49f693fa
DC
2863 rval = xfs_ilog_fext(whichfork);
2864 } else {
2865 rval = 0;
70a93110 2866 error = xfs_bmbt_lookup_eq(cur, &old, &i);
49f693fa
DC
2867 if (error)
2868 goto done;
fbb4fa7f
DW
2869 if (XFS_IS_CORRUPT(mp, i != 1)) {
2870 error = -EFSCORRUPTED;
2871 goto done;
2872 }
d0e5f1ff 2873 error = xfs_bmbt_update(cur, &right);
49f693fa
DC
2874 if (error)
2875 goto done;
2876 }
2877 break;
2878
2879 case 0:
2880 /*
2881 * New allocation is not contiguous with another
2882 * real allocation.
2883 * Insert a new entry.
2884 */
26a75f67 2885 xfs_iext_insert(ip, icur, new, state);
87c472b7
CH
2886 ifp->if_nextents++;
2887
972432f2 2888 if (cur == NULL) {
49f693fa
DC
2889 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
2890 } else {
2891 rval = XFS_ILOG_CORE;
70a93110 2892 error = xfs_bmbt_lookup_eq(cur, new, &i);
49f693fa
DC
2893 if (error)
2894 goto done;
fbb4fa7f
DW
2895 if (XFS_IS_CORRUPT(mp, i != 0)) {
2896 error = -EFSCORRUPTED;
2897 goto done;
2898 }
972432f2 2899 error = xfs_btree_insert(cur, &i);
49f693fa
DC
2900 if (error)
2901 goto done;
fbb4fa7f
DW
2902 if (XFS_IS_CORRUPT(mp, i != 1)) {
2903 error = -EFSCORRUPTED;
2904 goto done;
2905 }
49f693fa 2906 }
57c9fccb 2907 break;
57c9fccb 2908 }
a2ceac1f 2909
5f847f1e 2910 /* add reverse mapping unless caller opted out */
46d29bb9
DW
2911 if (!(flags & XFS_BMAPI_NORMAP))
2912 xfs_rmap_map_extent(tp, ip, whichfork, new);
d7f80320 2913
49f693fa 2914 /* convert to a btree if necessary */
972432f2 2915 if (xfs_bmap_needs_btree(ip, whichfork)) {
49f693fa 2916 int tmp_logflags; /* partial log flag return val */
3f853c7a 2917
972432f2 2918 ASSERT(cur == NULL);
f7253505
BF
2919 error = xfs_bmap_extents_to_btree(tp, ip, curp, 0,
2920 &tmp_logflags, whichfork);
972432f2
CH
2921 *logflagsp |= tmp_logflags;
2922 cur = *curp;
49f693fa
DC
2923 if (error)
2924 goto done;
57c9fccb 2925 }
a2ceac1f 2926
49f693fa 2927 /* clear out the allocated field, done with it now in any case. */
972432f2 2928 if (cur)
116c6a88 2929 cur->bc_ino.allocated = 0;
49f693fa 2930
972432f2 2931 xfs_bmap_check_leaf_extents(cur, ip, whichfork);
49f693fa 2932done:
972432f2 2933 *logflagsp |= rval;
57c9fccb
NS
2934 return error;
2935}
2936
2bd0ea18 2937/*
49f693fa 2938 * Functions used in the extent read, allocate and remove paths
2bd0ea18 2939 */
2bd0ea18 2940
5000d01d 2941/*
49f693fa 2942 * Adjust the size of the new extent based on di_extsize and rt extsize.
2bd0ea18 2943 */
613e6057 2944int
49f693fa
DC
2945xfs_bmap_extsize_align(
2946 xfs_mount_t *mp,
2947 xfs_bmbt_irec_t *gotp, /* next extent pointer */
2948 xfs_bmbt_irec_t *prevp, /* previous extent pointer */
2949 xfs_extlen_t extsz, /* align to this extent size */
2950 int rt, /* is this a realtime inode? */
2951 int eof, /* is extent at end-of-file? */
2952 int delay, /* creating delalloc extent? */
2953 int convert, /* overwriting unwritten extent? */
2954 xfs_fileoff_t *offp, /* in/out: aligned offset */
2955 xfs_extlen_t *lenp) /* in/out: aligned length */
2bd0ea18 2956{
49f693fa
DC
2957 xfs_fileoff_t orig_off; /* original offset */
2958 xfs_extlen_t orig_alen; /* original length */
2959 xfs_fileoff_t orig_end; /* original off+len */
2960 xfs_fileoff_t nexto; /* next file offset */
2961 xfs_fileoff_t prevo; /* previous file offset */
2962 xfs_fileoff_t align_off; /* temp for offset */
2963 xfs_extlen_t align_alen; /* temp for length */
2964 xfs_extlen_t temp; /* temp for calculations */
2965
2966 if (convert)
2967 return 0;
2968
2969 orig_off = align_off = *offp;
2970 orig_alen = align_alen = *lenp;
2971 orig_end = orig_off + orig_alen;
2bd0ea18
NS
2972
2973 /*
49f693fa
DC
2974 * If this request overlaps an existing extent, then don't
2975 * attempt to perform any additional alignment.
2bd0ea18 2976 */
49f693fa
DC
2977 if (!delay && !eof &&
2978 (orig_off >= gotp->br_startoff) &&
2979 (orig_end <= gotp->br_startoff + gotp->br_blockcount)) {
2980 return 0;
2bd0ea18 2981 }
57c9fccb 2982
49f693fa
DC
2983 /*
2984 * If the file offset is unaligned vs. the extent size
2985 * we need to align it. This will be possible unless
2986 * the file was previously written with a kernel that didn't
2987 * perform this alignment, or if a truncate shot us in the
2988 * foot.
2989 */
5a595099 2990 div_u64_rem(orig_off, extsz, &temp);
49f693fa
DC
2991 if (temp) {
2992 align_alen += temp;
2993 align_off -= temp;
2994 }
7cc23f0c
DC
2995
2996 /* Same adjustment for the end of the requested area. */
2997 temp = (align_alen % extsz);
2998 if (temp)
2999 align_alen += extsz - temp;
3000
49f693fa 3001 /*
7cc23f0c
DC
3002 * For large extent hint sizes, the aligned extent might be larger than
3003 * MAXEXTLEN. In that case, reduce the size by an extsz so that it pulls
3004 * the length back under MAXEXTLEN. The outer allocation loops handle
3005 * short allocation just fine, so it is safe to do this. We only want to
3006 * do it when we are forced to, though, because it means more allocation
3007 * operations are required.
49f693fa 3008 */
7cc23f0c
DC
3009 while (align_alen > MAXEXTLEN)
3010 align_alen -= extsz;
3011 ASSERT(align_alen <= MAXEXTLEN);
3012
49f693fa
DC
3013 /*
3014 * If the previous block overlaps with this proposed allocation
3015 * then move the start forward without adjusting the length.
3016 */
3017 if (prevp->br_startoff != NULLFILEOFF) {
3018 if (prevp->br_startblock == HOLESTARTBLOCK)
3019 prevo = prevp->br_startoff;
3020 else
3021 prevo = prevp->br_startoff + prevp->br_blockcount;
3022 } else
3023 prevo = 0;
3024 if (align_off != orig_off && align_off < prevo)
3025 align_off = prevo;
3026 /*
3027 * If the next block overlaps with this proposed allocation
3028 * then move the start back without adjusting the length,
3029 * but not before offset 0.
3030 * This may of course make the start overlap previous block,
3031 * and if we hit the offset 0 limit then the next block
3032 * can still overlap too.
3033 */
3034 if (!eof && gotp->br_startoff != NULLFILEOFF) {
3035 if ((delay && gotp->br_startblock == HOLESTARTBLOCK) ||
3036 (!delay && gotp->br_startblock == DELAYSTARTBLOCK))
3037 nexto = gotp->br_startoff + gotp->br_blockcount;
3038 else
3039 nexto = gotp->br_startoff;
3040 } else
3041 nexto = NULLFILEOFF;
3042 if (!eof &&
3043 align_off + align_alen != orig_end &&
3044 align_off + align_alen > nexto)
3045 align_off = nexto > align_alen ? nexto - align_alen : 0;
3046 /*
3047 * If we're now overlapping the next or previous extent that
3048 * means we can't fit an extsz piece in this hole. Just move
3049 * the start forward to the first valid spot and set
3050 * the length so we hit the end.
3051 */
3052 if (align_off != orig_off && align_off < prevo)
3053 align_off = prevo;
3054 if (align_off + align_alen != orig_end &&
3055 align_off + align_alen > nexto &&
3056 nexto != NULLFILEOFF) {
3057 ASSERT(nexto > prevo);
3058 align_alen = nexto - align_off;
57c9fccb 3059 }
2bd0ea18 3060
49f693fa
DC
3061 /*
3062 * If realtime, and the result isn't a multiple of the realtime
3063 * extent size we need to remove blocks until it is.
3064 */
3065 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
2bd0ea18 3066 /*
49f693fa
DC
3067 * We're not covering the original request, or
3068 * we won't be able to once we fix the length.
2bd0ea18 3069 */
49f693fa
DC
3070 if (orig_off < align_off ||
3071 orig_end > align_off + align_alen ||
3072 align_alen - temp < orig_alen)
12b53197 3073 return -EINVAL;
49f693fa
DC
3074 /*
3075 * Try to fix it by moving the start up.
3076 */
3077 if (align_off + temp <= orig_off) {
3078 align_alen -= temp;
3079 align_off += temp;
2bd0ea18 3080 }
49f693fa
DC
3081 /*
3082 * Try to fix it by moving the end in.
3083 */
3084 else if (align_off + align_alen - temp >= orig_end)
3085 align_alen -= temp;
3086 /*
3087 * Set the start to the minimum then trim the length.
3088 */
3089 else {
3090 align_alen -= orig_off - align_off;
3091 align_off = orig_off;
3092 align_alen -= align_alen % mp->m_sb.sb_rextsize;
3093 }
3094 /*
3095 * Result doesn't cover the request, fail it.
3096 */
3097 if (orig_off < align_off || orig_end > align_off + align_alen)
12b53197 3098 return -EINVAL;
49f693fa
DC
3099 } else {
3100 ASSERT(orig_off >= align_off);
7cc23f0c
DC
3101 /* see MAXEXTLEN handling above */
3102 ASSERT(orig_end <= align_off + align_alen ||
3103 align_alen + extsz > MAXEXTLEN);
2bd0ea18 3104 }
49f693fa
DC
3105
3106#ifdef DEBUG
3107 if (!eof && gotp->br_startoff != NULLFILEOFF)
3108 ASSERT(align_off + align_alen <= gotp->br_startoff);
3109 if (prevp->br_startoff != NULLFILEOFF)
3110 ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount);
3111#endif
3112
3113 *lenp = align_alen;
3114 *offp = align_off;
2bd0ea18
NS
3115 return 0;
3116}
3117
49f693fa
DC
3118#define XFS_ALLOC_GAP_UNITS 4
3119
613e6057 3120void
49f693fa 3121xfs_bmap_adjacent(
613e6057 3122 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
2bd0ea18 3123{
49f693fa
DC
3124 xfs_fsblock_t adjust; /* adjustment to block numbers */
3125 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3126 xfs_mount_t *mp; /* mount point structure */
3127 int nullfb; /* true if ap->firstblock isn't set */
3128 int rt; /* true if inode is realtime */
2bd0ea18 3129
49f693fa
DC
3130#define ISVALID(x,y) \
3131 (rt ? \
3132 (x) < mp->m_sb.sb_rblocks : \
3133 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
3134 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
3135 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
3136
3137 mp = ap->ip->i_mount;
80dc7f2f 3138 nullfb = ap->tp->t_firstblock == NULLFSBLOCK;
1fccd5c8 3139 rt = XFS_IS_REALTIME_INODE(ap->ip) &&
a85522b6 3140 (ap->datatype & XFS_ALLOC_USERDATA);
80dc7f2f
BF
3141 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp,
3142 ap->tp->t_firstblock);
49f693fa
DC
3143 /*
3144 * If allocating at eof, and there's a previous real block,
3145 * try to use its last block as our starting point.
3146 */
3147 if (ap->eof && ap->prev.br_startoff != NULLFILEOFF &&
3148 !isnullstartblock(ap->prev.br_startblock) &&
3149 ISVALID(ap->prev.br_startblock + ap->prev.br_blockcount,
3150 ap->prev.br_startblock)) {
3151 ap->blkno = ap->prev.br_startblock + ap->prev.br_blockcount;
3152 /*
3153 * Adjust for the gap between prevp and us.
3154 */
3155 adjust = ap->offset -
3156 (ap->prev.br_startoff + ap->prev.br_blockcount);
3157 if (adjust &&
3158 ISVALID(ap->blkno + adjust, ap->prev.br_startblock))
3159 ap->blkno += adjust;
2bd0ea18 3160 }
49f693fa
DC
3161 /*
3162 * If not at eof, then compare the two neighbor blocks.
3163 * Figure out whether either one gives us a good starting point,
3164 * and pick the better one.
3165 */
3166 else if (!ap->eof) {
3167 xfs_fsblock_t gotbno; /* right side block number */
3168 xfs_fsblock_t gotdiff=0; /* right side difference */
3169 xfs_fsblock_t prevbno; /* left side block number */
3170 xfs_fsblock_t prevdiff=0; /* left side difference */
3171
3172 /*
3173 * If there's a previous (left) block, select a requested
3174 * start block based on it.
3175 */
3176 if (ap->prev.br_startoff != NULLFILEOFF &&
3177 !isnullstartblock(ap->prev.br_startblock) &&
3178 (prevbno = ap->prev.br_startblock +
3179 ap->prev.br_blockcount) &&
3180 ISVALID(prevbno, ap->prev.br_startblock)) {
3181 /*
3182 * Calculate gap to end of previous block.
3183 */
3184 adjust = prevdiff = ap->offset -
3185 (ap->prev.br_startoff +
3186 ap->prev.br_blockcount);
3187 /*
3188 * Figure the startblock based on the previous block's
3189 * end and the gap size.
3190 * Heuristic!
3191 * If the gap is large relative to the piece we're
3192 * allocating, or using it gives us an invalid block
3193 * number, then just use the end of the previous block.
3194 */
3195 if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
3196 ISVALID(prevbno + prevdiff,
3197 ap->prev.br_startblock))
3198 prevbno += adjust;
3199 else
3200 prevdiff += adjust;
3201 /*
3202 * If the firstblock forbids it, can't use it,
3203 * must use default.
3204 */
3205 if (!rt && !nullfb &&
3206 XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno)
3207 prevbno = NULLFSBLOCK;
3208 }
3209 /*
3210 * No previous block or can't follow it, just default.
3211 */
3212 else
3213 prevbno = NULLFSBLOCK;
3214 /*
3215 * If there's a following (right) block, select a requested
3216 * start block based on it.
3217 */
3218 if (!isnullstartblock(ap->got.br_startblock)) {
3219 /*
3220 * Calculate gap to start of next block.
3221 */
3222 adjust = gotdiff = ap->got.br_startoff - ap->offset;
3223 /*
3224 * Figure the startblock based on the next block's
3225 * start and the gap size.
3226 */
3227 gotbno = ap->got.br_startblock;
3228 /*
3229 * Heuristic!
3230 * If the gap is large relative to the piece we're
3231 * allocating, or using it gives us an invalid block
3232 * number, then just use the start of the next block
3233 * offset by our length.
3234 */
3235 if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
3236 ISVALID(gotbno - gotdiff, gotbno))
3237 gotbno -= adjust;
3238 else if (ISVALID(gotbno - ap->length, gotbno)) {
3239 gotbno -= ap->length;
3240 gotdiff += adjust - ap->length;
3241 } else
3242 gotdiff += adjust;
3243 /*
3244 * If the firstblock forbids it, can't use it,
3245 * must use default.
3246 */
3247 if (!rt && !nullfb &&
3248 XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno)
3249 gotbno = NULLFSBLOCK;
3250 }
3251 /*
3252 * No next block, just default.
3253 */
2bd0ea18 3254 else
49f693fa
DC
3255 gotbno = NULLFSBLOCK;
3256 /*
3257 * If both valid, pick the better one, else the only good
3258 * one, else ap->blkno is already set (to 0 or the inode block).
3259 */
3260 if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK)
3261 ap->blkno = prevdiff <= gotdiff ? prevbno : gotbno;
3262 else if (prevbno != NULLFSBLOCK)
3263 ap->blkno = prevbno;
3264 else if (gotbno != NULLFSBLOCK)
3265 ap->blkno = gotbno;
a2ceac1f 3266 }
49f693fa 3267#undef ISVALID
a2ceac1f
DC
3268}
3269
ff105f75
DC
3270static int
3271xfs_bmap_longest_free_extent(
3272 struct xfs_trans *tp,
3273 xfs_agnumber_t ag,
3274 xfs_extlen_t *blen,
3275 int *notinit)
3276{
3277 struct xfs_mount *mp = tp->t_mountp;
3278 struct xfs_perag *pag;
3279 xfs_extlen_t longest;
3280 int error = 0;
3281
3282 pag = xfs_perag_get(mp, ag);
3283 if (!pag->pagf_init) {
3284 error = xfs_alloc_pagf_init(mp, tp, ag, XFS_ALLOC_FLAG_TRYLOCK);
475f184c
DW
3285 if (error) {
3286 /* Couldn't lock the AGF, so skip this AG. */
3287 if (error == -EAGAIN) {
3288 *notinit = 1;
3289 error = 0;
3290 }
ff105f75
DC
3291 goto out;
3292 }
3293 }
3294
1421de38 3295 longest = xfs_alloc_longest_free_extent(pag,
cf8ce220
DW
3296 xfs_alloc_min_freelist(mp, pag),
3297 xfs_ag_resv_needed(pag, XFS_AG_RESV_NONE));
ff105f75
DC
3298 if (*blen < longest)
3299 *blen = longest;
3300
3301out:
3302 xfs_perag_put(pag);
3303 return error;
3304}
3305
3306static void
3307xfs_bmap_select_minlen(
3308 struct xfs_bmalloca *ap,
3309 struct xfs_alloc_arg *args,
3310 xfs_extlen_t *blen,
3311 int notinit)
3312{
3313 if (notinit || *blen < ap->minlen) {
3314 /*
3315 * Since we did a BUF_TRYLOCK above, it is possible that
3316 * there is space for this request.
3317 */
3318 args->minlen = ap->minlen;
3319 } else if (*blen < args->maxlen) {
3320 /*
3321 * If the best seen length is less than the request length,
3322 * use the best as the minimum.
3323 */
3324 args->minlen = *blen;
3325 } else {
3326 /*
3327 * Otherwise we've seen an extent as big as maxlen, use that
3328 * as the minimum.
3329 */
3330 args->minlen = args->maxlen;
3331 }
3332}
3333
a2ceac1f 3334STATIC int
49f693fa
DC
3335xfs_bmap_btalloc_nullfb(
3336 struct xfs_bmalloca *ap,
3337 struct xfs_alloc_arg *args,
3338 xfs_extlen_t *blen)
a2ceac1f 3339{
49f693fa 3340 struct xfs_mount *mp = ap->ip->i_mount;
49f693fa
DC
3341 xfs_agnumber_t ag, startag;
3342 int notinit = 0;
a2ceac1f
DC
3343 int error;
3344
ff105f75 3345 args->type = XFS_ALLOCTYPE_START_BNO;
49f693fa 3346 args->total = ap->total;
a2ceac1f 3347
49f693fa
DC
3348 startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3349 if (startag == NULLAGNUMBER)
3350 startag = ag = 0;
a2ceac1f 3351
49f693fa 3352 while (*blen < args->maxlen) {
ff105f75
DC
3353 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3354 &notinit);
3355 if (error)
3356 return error;
a2ceac1f 3357
49f693fa
DC
3358 if (++ag == mp->m_sb.sb_agcount)
3359 ag = 0;
3360 if (ag == startag)
3361 break;
49f693fa 3362 }
2bd0ea18 3363
ff105f75
DC
3364 xfs_bmap_select_minlen(ap, args, blen, notinit);
3365 return 0;
3366}
3367
3368STATIC int
3369xfs_bmap_btalloc_filestreams(
3370 struct xfs_bmalloca *ap,
3371 struct xfs_alloc_arg *args,
3372 xfs_extlen_t *blen)
3373{
3374 struct xfs_mount *mp = ap->ip->i_mount;
3375 xfs_agnumber_t ag;
3376 int notinit = 0;
3377 int error;
3378
3379 args->type = XFS_ALLOCTYPE_NEAR_BNO;
3380 args->total = ap->total;
3381
3382 ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3383 if (ag == NULLAGNUMBER)
3384 ag = 0;
3385
3386 error = xfs_bmap_longest_free_extent(args->tp, ag, blen, &notinit);
3387 if (error)
3388 return error;
3389
3390 if (*blen < args->maxlen) {
3391 error = xfs_filestream_new_ag(ap, &ag);
3392 if (error)
3393 return error;
3394
3395 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3396 &notinit);
3397 if (error)
3398 return error;
3399
3400 }
3401
3402 xfs_bmap_select_minlen(ap, args, blen, notinit);
2bd0ea18 3403
49f693fa 3404 /*
ff105f75
DC
3405 * Set the failure fallback case to look in the selected AG as stream
3406 * may have moved.
49f693fa 3407 */
ff105f75 3408 ap->blkno = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0);
49f693fa 3409 return 0;
2bd0ea18
NS
3410}
3411
3cb68815
DW
3412/* Update all inode and quota accounting for the allocation we just did. */
3413static void
3414xfs_bmap_btalloc_accounting(
3415 struct xfs_bmalloca *ap,
3416 struct xfs_alloc_arg *args)
3417{
d07cc724
DW
3418 if (ap->flags & XFS_BMAPI_COWFORK) {
3419 /*
3420 * COW fork blocks are in-core only and thus are treated as
3421 * in-core quota reservation (like delalloc blocks) even when
3422 * converted to real blocks. The quota reservation is not
3423 * accounted to disk until blocks are remapped to the data
3424 * fork. So if these blocks were previously delalloc, we
3425 * already have quota reservation and there's nothing to do
3426 * yet.
3427 */
f73690fe
DW
3428 if (ap->wasdel) {
3429 xfs_mod_delalloc(ap->ip->i_mount, -(int64_t)args->len);
d07cc724 3430 return;
f73690fe 3431 }
d07cc724
DW
3432
3433 /*
3434 * Otherwise, we've allocated blocks in a hole. The transaction
3435 * has acquired in-core quota reservation for this extent.
3436 * Rather than account these as real blocks, however, we reduce
3437 * the transaction quota reservation based on the allocation.
3438 * This essentially transfers the transaction quota reservation
3439 * to that of a delalloc extent.
3440 */
3441 ap->ip->i_delayed_blks += args->len;
3442 xfs_trans_mod_dquot_byino(ap->tp, ap->ip, XFS_TRANS_DQ_RES_BLKS,
3443 -(long)args->len);
3444 return;
3445 }
3446
3447 /* data/attr fork only */
3448 ap->ip->i_d.di_nblocks += args->len;
3cb68815 3449 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
f73690fe 3450 if (ap->wasdel) {
3cb68815 3451 ap->ip->i_delayed_blks -= args->len;
f73690fe
DW
3452 xfs_mod_delalloc(ap->ip->i_mount, -(int64_t)args->len);
3453 }
3cb68815
DW
3454 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
3455 ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT : XFS_TRANS_DQ_BCOUNT,
3456 args->len);
3457}
3458
3f08f006
CB
3459static int
3460xfs_bmap_compute_alignments(
3461 struct xfs_bmalloca *ap,
3462 struct xfs_alloc_arg *args)
3463{
3464 struct xfs_mount *mp = args->mp;
3465 xfs_extlen_t align = 0; /* minimum allocation alignment */
3466 int stripe_align = 0;
3467 int error;
3468
3469 /* stripe alignment for allocation is determined by mount parameters */
3470 if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC))
3471 stripe_align = mp->m_swidth;
3472 else if (mp->m_dalign)
3473 stripe_align = mp->m_dalign;
3474
3475 if (ap->flags & XFS_BMAPI_COWFORK)
3476 align = xfs_get_cowextsz_hint(ap->ip);
3477 else if (ap->datatype & XFS_ALLOC_USERDATA)
3478 align = xfs_get_extsz_hint(ap->ip);
3479 if (align) {
3480 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
3481 align, 0, ap->eof, 0, ap->conv,
3482 &ap->offset, &ap->length);
3483 ASSERT(!error);
3484 ASSERT(ap->length);
3485 }
3486
3487 /* apply extent size hints if obtained earlier */
3488 if (align) {
3489 args->prod = align;
3490 div_u64_rem(ap->offset, args->prod, &args->mod);
3491 if (args->mod)
3492 args->mod = args->prod - args->mod;
3493 } else if (mp->m_sb.sb_blocksize >= PAGE_SIZE) {
3494 args->prod = 1;
3495 args->mod = 0;
3496 } else {
3497 args->prod = PAGE_SIZE >> mp->m_sb.sb_blocklog;
3498 div_u64_rem(ap->offset, args->prod, &args->mod);
3499 if (args->mod)
3500 args->mod = args->prod - args->mod;
3501 }
3502
3503 return stripe_align;
3504}
3505
b3563c19 3506STATIC int
49f693fa 3507xfs_bmap_btalloc(
613e6057 3508 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
b3563c19 3509{
49f693fa
DC
3510 xfs_mount_t *mp; /* mount point structure */
3511 xfs_alloctype_t atype = 0; /* type for allocation routines */
49f693fa
DC
3512 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3513 xfs_agnumber_t ag;
3514 xfs_alloc_arg_t args;
c38464ff
DW
3515 xfs_fileoff_t orig_offset;
3516 xfs_extlen_t orig_length;
49f693fa
DC
3517 xfs_extlen_t blen;
3518 xfs_extlen_t nextminlen = 0;
3519 int nullfb; /* true if ap->firstblock isn't set */
3520 int isaligned;
3521 int tryagain;
3522 int error;
ff105f75 3523 int stripe_align;
b3563c19 3524
49f693fa 3525 ASSERT(ap->length);
c38464ff
DW
3526 orig_offset = ap->offset;
3527 orig_length = ap->length;
b3563c19 3528
49f693fa 3529 mp = ap->ip->i_mount;
ff105f75 3530
3f08f006
CB
3531 memset(&args, 0, sizeof(args));
3532 args.tp = ap->tp;
3533 args.mp = mp;
ff105f75 3534
3f08f006 3535 stripe_align = xfs_bmap_compute_alignments(ap, &args);
ff105f75 3536
80dc7f2f
BF
3537 nullfb = ap->tp->t_firstblock == NULLFSBLOCK;
3538 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp,
3539 ap->tp->t_firstblock);
49f693fa 3540 if (nullfb) {
a85522b6 3541 if ((ap->datatype & XFS_ALLOC_USERDATA) &&
1fccd5c8 3542 xfs_inode_is_filestream(ap->ip)) {
49f693fa
DC
3543 ag = xfs_filestream_lookup_ag(ap->ip);
3544 ag = (ag != NULLAGNUMBER) ? ag : 0;
3545 ap->blkno = XFS_AGB_TO_FSB(mp, ag, 0);
3546 } else {
3547 ap->blkno = XFS_INO_TO_FSB(mp, ap->ip->i_ino);
3548 }
3549 } else
80dc7f2f 3550 ap->blkno = ap->tp->t_firstblock;
49f693fa
DC
3551
3552 xfs_bmap_adjacent(ap);
2bd0ea18 3553
2bd0ea18 3554 /*
49f693fa
DC
3555 * If allowed, use ap->blkno; otherwise must use firstblock since
3556 * it's in the right allocation group.
2bd0ea18 3557 */
49f693fa
DC
3558 if (nullfb || XFS_FSB_TO_AGNO(mp, ap->blkno) == fb_agno)
3559 ;
3560 else
80dc7f2f 3561 ap->blkno = ap->tp->t_firstblock;
2bd0ea18 3562 /*
49f693fa 3563 * Normal allocation, done through xfs_alloc_vextent.
2bd0ea18 3564 */
49f693fa 3565 tryagain = isaligned = 0;
49f693fa 3566 args.fsbno = ap->blkno;
007347e3 3567 args.oinfo = XFS_RMAP_OINFO_SKIP_UPDATE;
49f693fa
DC
3568
3569 /* Trim the allocation back to the maximum an AG can fit. */
d7ff12b8 3570 args.maxlen = min(ap->length, mp->m_ag_max_usable);
49f693fa
DC
3571 blen = 0;
3572 if (nullfb) {
ff105f75
DC
3573 /*
3574 * Search for an allocation group with a single extent large
3575 * enough for the request. If one isn't found, then adjust
3576 * the minimum allocation size to the largest space found.
3577 */
a85522b6 3578 if ((ap->datatype & XFS_ALLOC_USERDATA) &&
1fccd5c8 3579 xfs_inode_is_filestream(ap->ip))
ff105f75
DC
3580 error = xfs_bmap_btalloc_filestreams(ap, &args, &blen);
3581 else
3582 error = xfs_bmap_btalloc_nullfb(ap, &args, &blen);
a2ceac1f 3583 if (error)
2bd0ea18 3584 return error;
565e96c6 3585 } else if (ap->tp->t_flags & XFS_TRANS_LOWMODE) {
49f693fa
DC
3586 if (xfs_inode_is_filestream(ap->ip))
3587 args.type = XFS_ALLOCTYPE_FIRST_AG;
3588 else
3589 args.type = XFS_ALLOCTYPE_START_BNO;
3590 args.total = args.minlen = ap->minlen;
3591 } else {
3592 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3593 args.total = ap->total;
3594 args.minlen = ap->minlen;
3595 }
3f08f006 3596
2bd0ea18 3597 /*
14058d94
DC
3598 * If we are not low on available data blocks, and the underlying
3599 * logical volume manager is a stripe, and the file offset is zero then
3600 * try to allocate data blocks on stripe unit boundary. NOTE: ap->aeof
3601 * is only set if the allocation length is >= the stripe unit and the
3602 * allocation offset is at the end of file.
2bd0ea18 3603 */
565e96c6 3604 if (!(ap->tp->t_flags & XFS_TRANS_LOWMODE) && ap->aeof) {
49f693fa 3605 if (!ap->offset) {
ff105f75 3606 args.alignment = stripe_align;
49f693fa
DC
3607 atype = args.type;
3608 isaligned = 1;
3609 /*
14058d94
DC
3610 * Adjust minlen to try and preserve alignment if we
3611 * can't guarantee an aligned maxlen extent.
49f693fa 3612 */
14058d94
DC
3613 if (blen > args.alignment &&
3614 blen <= args.maxlen + args.alignment)
49f693fa
DC
3615 args.minlen = blen - args.alignment;
3616 args.minalignslop = 0;
3617 } else {
3618 /*
3619 * First try an exact bno allocation.
3620 * If it fails then do a near or start bno
3621 * allocation with alignment turned on.
3622 */
3623 atype = args.type;
3624 tryagain = 1;
3625 args.type = XFS_ALLOCTYPE_THIS_BNO;
3626 args.alignment = 1;
3627 /*
3628 * Compute the minlen+alignment for the
3629 * next case. Set slop so that the value
3630 * of minlen+alignment+slop doesn't go up
3631 * between the calls.
3632 */
ff105f75
DC
3633 if (blen > stripe_align && blen <= args.maxlen)
3634 nextminlen = blen - stripe_align;
49f693fa
DC
3635 else
3636 nextminlen = args.minlen;
ff105f75 3637 if (nextminlen + stripe_align > args.minlen + 1)
49f693fa 3638 args.minalignslop =
ff105f75 3639 nextminlen + stripe_align -
49f693fa
DC
3640 args.minlen - 1;
3641 else
3642 args.minalignslop = 0;
2bd0ea18 3643 }
49f693fa
DC
3644 } else {
3645 args.alignment = 1;
3646 args.minalignslop = 0;
3647 }
3648 args.minleft = ap->minleft;
3649 args.wasdel = ap->wasdel;
cf8ce220 3650 args.resv = XFS_AG_RESV_NONE;
1fccd5c8 3651 args.datatype = ap->datatype;
9542ae13
DC
3652
3653 error = xfs_alloc_vextent(&args);
3654 if (error)
49f693fa 3655 return error;
9542ae13 3656
49f693fa
DC
3657 if (tryagain && args.fsbno == NULLFSBLOCK) {
3658 /*
3659 * Exact allocation failed. Now try with alignment
3660 * turned on.
3661 */
3662 args.type = atype;
3663 args.fsbno = ap->blkno;
ff105f75 3664 args.alignment = stripe_align;
49f693fa
DC
3665 args.minlen = nextminlen;
3666 args.minalignslop = 0;
3667 isaligned = 1;
3668 if ((error = xfs_alloc_vextent(&args)))
3669 return error;
3670 }
3671 if (isaligned && args.fsbno == NULLFSBLOCK) {
2bd0ea18 3672 /*
49f693fa
DC
3673 * allocation failed, so turn off alignment and
3674 * try again.
2bd0ea18 3675 */
49f693fa
DC
3676 args.type = atype;
3677 args.fsbno = ap->blkno;
3678 args.alignment = 0;
3679 if ((error = xfs_alloc_vextent(&args)))
3680 return error;
3681 }
3682 if (args.fsbno == NULLFSBLOCK && nullfb &&
3683 args.minlen > ap->minlen) {
3684 args.minlen = ap->minlen;
3685 args.type = XFS_ALLOCTYPE_START_BNO;
3686 args.fsbno = ap->blkno;
3687 if ((error = xfs_alloc_vextent(&args)))
3688 return error;
3689 }
3690 if (args.fsbno == NULLFSBLOCK && nullfb) {
3691 args.fsbno = 0;
3692 args.type = XFS_ALLOCTYPE_FIRST_AG;
3693 args.total = ap->minlen;
49f693fa
DC
3694 if ((error = xfs_alloc_vextent(&args)))
3695 return error;
565e96c6 3696 ap->tp->t_flags |= XFS_TRANS_LOWMODE;
49f693fa
DC
3697 }
3698 if (args.fsbno != NULLFSBLOCK) {
2bd0ea18 3699 /*
49f693fa
DC
3700 * check the allocation happened at the same or higher AG than
3701 * the first block that was allocated.
2bd0ea18 3702 */
80dc7f2f
BF
3703 ASSERT(ap->tp->t_firstblock == NULLFSBLOCK ||
3704 XFS_FSB_TO_AGNO(mp, ap->tp->t_firstblock) <=
6df6a3ab 3705 XFS_FSB_TO_AGNO(mp, args.fsbno));
49f693fa
DC
3706
3707 ap->blkno = args.fsbno;
80dc7f2f
BF
3708 if (ap->tp->t_firstblock == NULLFSBLOCK)
3709 ap->tp->t_firstblock = args.fsbno;
49f693fa 3710 ap->length = args.len;
c38464ff
DW
3711 /*
3712 * If the extent size hint is active, we tried to round the
3713 * caller's allocation request offset down to extsz and the
3714 * length up to another extsz boundary. If we found a free
3715 * extent we mapped it in starting at this new offset. If the
3716 * newly mapped space isn't long enough to cover any of the
3717 * range of offsets that was originally requested, move the
3718 * mapping up so that we can fill as much of the caller's
3719 * original request as possible. Free space is apparently
3720 * very fragmented so we're unlikely to be able to satisfy the
3721 * hints anyway.
3722 */
3723 if (ap->length <= orig_length)
3724 ap->offset = orig_offset;
3725 else if (ap->offset + ap->length < orig_offset + orig_length)
3726 ap->offset = orig_offset + orig_length - ap->length;
3cb68815 3727 xfs_bmap_btalloc_accounting(ap, &args);
49f693fa
DC
3728 } else {
3729 ap->blkno = NULLFSBLOCK;
3730 ap->length = 0;
2bd0ea18 3731 }
2bd0ea18 3732 return 0;
56b2de80
DC
3733}
3734
b3fd8db7
DW
3735/* Trim extent to fit a logical block range. */
3736void
3737xfs_trim_extent(
3738 struct xfs_bmbt_irec *irec,
3739 xfs_fileoff_t bno,
3740 xfs_filblks_t len)
3741{
3742 xfs_fileoff_t distance;
3743 xfs_fileoff_t end = bno + len;
3744
3745 if (irec->br_startoff + irec->br_blockcount <= bno ||
3746 irec->br_startoff >= end) {
3747 irec->br_blockcount = 0;
3748 return;
3749 }
3750
3751 if (irec->br_startoff < bno) {
3752 distance = bno - irec->br_startoff;
3753 if (isnullstartblock(irec->br_startblock))
3754 irec->br_startblock = DELAYSTARTBLOCK;
3755 if (irec->br_startblock != DELAYSTARTBLOCK &&
3756 irec->br_startblock != HOLESTARTBLOCK)
3757 irec->br_startblock += distance;
3758 irec->br_startoff += distance;
3759 irec->br_blockcount -= distance;
3760 }
3761
3762 if (end < irec->br_startoff + irec->br_blockcount) {
3763 distance = irec->br_startoff + irec->br_blockcount - end;
3764 irec->br_blockcount -= distance;
3765 }
3766}
3767
2bd0ea18 3768/*
a2ceac1f 3769 * Trim the returned map to the required bounds
2bd0ea18 3770 */
a2ceac1f
DC
3771STATIC void
3772xfs_bmapi_trim_map(
3773 struct xfs_bmbt_irec *mval,
3774 struct xfs_bmbt_irec *got,
3775 xfs_fileoff_t *bno,
3776 xfs_filblks_t len,
3777 xfs_fileoff_t obno,
3778 xfs_fileoff_t end,
3779 int n,
3780 int flags)
2bd0ea18 3781{
a2ceac1f
DC
3782 if ((flags & XFS_BMAPI_ENTIRE) ||
3783 got->br_startoff + got->br_blockcount <= obno) {
3784 *mval = *got;
3785 if (isnullstartblock(got->br_startblock))
3786 mval->br_startblock = DELAYSTARTBLOCK;
3787 return;
63be04eb 3788 }
a2ceac1f
DC
3789
3790 if (obno > *bno)
3791 *bno = obno;
3792 ASSERT((*bno >= obno) || (n == 0));
3793 ASSERT(*bno < end);
3794 mval->br_startoff = *bno;
3795 if (isnullstartblock(got->br_startblock))
3796 mval->br_startblock = DELAYSTARTBLOCK;
2bd0ea18 3797 else
a2ceac1f
DC
3798 mval->br_startblock = got->br_startblock +
3799 (*bno - got->br_startoff);
2bd0ea18 3800 /*
a2ceac1f
DC
3801 * Return the minimum of what we got and what we asked for for
3802 * the length. We can use the len variable here because it is
3803 * modified below and we could have been there before coming
3804 * here if the first part of the allocation didn't overlap what
3805 * was asked for.
2bd0ea18 3806 */
a2ceac1f
DC
3807 mval->br_blockcount = XFS_FILBLKS_MIN(end - *bno,
3808 got->br_blockcount - (*bno - got->br_startoff));
3809 mval->br_state = got->br_state;
3810 ASSERT(mval->br_blockcount <= len);
3811 return;
3812}
56b2de80 3813
a2ceac1f
DC
3814/*
3815 * Update and validate the extent map to return
3816 */
3817STATIC void
3818xfs_bmapi_update_map(
3819 struct xfs_bmbt_irec **map,
3820 xfs_fileoff_t *bno,
3821 xfs_filblks_t *len,
3822 xfs_fileoff_t obno,
3823 xfs_fileoff_t end,
3824 int *n,
3825 int flags)
3826{
3827 xfs_bmbt_irec_t *mval = *map;
3828
3829 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
3830 ((mval->br_startoff + mval->br_blockcount) <= end));
3831 ASSERT((flags & XFS_BMAPI_ENTIRE) || (mval->br_blockcount <= *len) ||
3832 (mval->br_startoff < obno));
3833
3834 *bno = mval->br_startoff + mval->br_blockcount;
3835 *len = end - *bno;
3836 if (*n > 0 && mval->br_startoff == mval[-1].br_startoff) {
3837 /* update previous map with new information */
3838 ASSERT(mval->br_startblock == mval[-1].br_startblock);
3839 ASSERT(mval->br_blockcount > mval[-1].br_blockcount);
3840 ASSERT(mval->br_state == mval[-1].br_state);
3841 mval[-1].br_blockcount = mval->br_blockcount;
3842 mval[-1].br_state = mval->br_state;
3843 } else if (*n > 0 && mval->br_startblock != DELAYSTARTBLOCK &&
3844 mval[-1].br_startblock != DELAYSTARTBLOCK &&
3845 mval[-1].br_startblock != HOLESTARTBLOCK &&
3846 mval->br_startblock == mval[-1].br_startblock +
3847 mval[-1].br_blockcount &&
8197bceb 3848 mval[-1].br_state == mval->br_state) {
a2ceac1f
DC
3849 ASSERT(mval->br_startoff ==
3850 mval[-1].br_startoff + mval[-1].br_blockcount);
3851 mval[-1].br_blockcount += mval->br_blockcount;
3852 } else if (*n > 0 &&
3853 mval->br_startblock == DELAYSTARTBLOCK &&
3854 mval[-1].br_startblock == DELAYSTARTBLOCK &&
3855 mval->br_startoff ==
3856 mval[-1].br_startoff + mval[-1].br_blockcount) {
3857 mval[-1].br_blockcount += mval->br_blockcount;
3858 mval[-1].br_state = mval->br_state;
3859 } else if (!((*n == 0) &&
3860 ((mval->br_startoff + mval->br_blockcount) <=
3861 obno))) {
3862 mval++;
3863 (*n)++;
3864 }
3865 *map = mval;
3866}
399ab595 3867
a2ceac1f
DC
3868/*
3869 * Map file blocks to filesystem blocks without allocation.
3870 */
3871int
3872xfs_bmapi_read(
3873 struct xfs_inode *ip,
3874 xfs_fileoff_t bno,
3875 xfs_filblks_t len,
3876 struct xfs_bmbt_irec *mval,
3877 int *nmap,
3878 int flags)
3879{
3880 struct xfs_mount *mp = ip->i_mount;
212be827
CH
3881 int whichfork = xfs_bmapi_whichfork(flags);
3882 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
a2ceac1f 3883 struct xfs_bmbt_irec got;
a2ceac1f
DC
3884 xfs_fileoff_t obno;
3885 xfs_fileoff_t end;
9788e059 3886 struct xfs_iext_cursor icur;
a2ceac1f 3887 int error;
c2d73ed3 3888 bool eof = false;
a2ceac1f 3889 int n = 0;
399ab595 3890
a2ceac1f 3891 ASSERT(*nmap >= 1);
00773e64 3892 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK | XFS_BMAPI_ENTIRE)));
ff105f75 3893 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED|XFS_ILOCK_EXCL));
062998e3 3894
212be827
CH
3895 if (WARN_ON_ONCE(!ifp))
3896 return -EFSCORRUPTED;
3897
d967a68d
CH
3898 if (XFS_IS_CORRUPT(mp, !xfs_ifork_has_extents(ifp)) ||
3899 XFS_TEST_ERROR(false, mp, XFS_ERRTAG_BMAPIFORMAT))
12b53197 3900 return -EFSCORRUPTED;
062998e3 3901
a2ceac1f 3902 if (XFS_FORCED_SHUTDOWN(mp))
12b53197 3903 return -EIO;
399ab595 3904
79896434 3905 XFS_STATS_INC(mp, xs_blk_mapr);
a2ceac1f 3906
a2ceac1f
DC
3907 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
3908 error = xfs_iread_extents(NULL, ip, whichfork);
3909 if (error)
3910 return error;
3911 }
3912
9788e059 3913 if (!xfs_iext_lookup_extent(ip, ifp, bno, &icur, &got))
c2d73ed3 3914 eof = true;
a2ceac1f
DC
3915 end = bno + len;
3916 obno = bno;
3917
3918 while (bno < end && n < *nmap) {
3919 /* Reading past eof, act as though there's a hole up to end. */
3920 if (eof)
3921 got.br_startoff = end;
3922 if (got.br_startoff > bno) {
3923 /* Reading in a hole. */
2bd0ea18
NS
3924 mval->br_startoff = bno;
3925 mval->br_startblock = HOLESTARTBLOCK;
3926 mval->br_blockcount =
3927 XFS_FILBLKS_MIN(len, got.br_startoff - bno);
3928 mval->br_state = XFS_EXT_NORM;
3929 bno += mval->br_blockcount;
3930 len -= mval->br_blockcount;
3931 mval++;
3932 n++;
3933 continue;
3934 }
a2ceac1f
DC
3935
3936 /* set up the extent map to return. */
3937 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
3938 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
3939
3940 /* If we're done, stop now. */
3941 if (bno >= end || n >= *nmap)
3942 break;
3943
3944 /* Else go on to the next record. */
9788e059 3945 if (!xfs_iext_next_extent(ifp, &icur, &got))
c2d73ed3 3946 eof = true;
a2ceac1f
DC
3947 }
3948 *nmap = n;
3949 return 0;
3950}
3951
7a868ee8
BF
3952/*
3953 * Add a delayed allocation extent to an inode. Blocks are reserved from the
3954 * global pool and the extent inserted into the inode in-core extent tree.
3955 *
3956 * On entry, got refers to the first extent beyond the offset of the extent to
3957 * allocate or eof is specified if no such extent exists. On return, got refers
3958 * to the extent record that was inserted to the inode fork.
3959 *
3960 * Note that the allocated extent may have been merged with contiguous extents
3961 * during insertion into the inode fork. Thus, got does not reflect the current
3962 * state of the inode fork on return. If necessary, the caller can use lastx to
3963 * look up the updated record in the inode fork.
3964 */
4488e421 3965int
a2ceac1f
DC
3966xfs_bmapi_reserve_delalloc(
3967 struct xfs_inode *ip,
cc66acaf 3968 int whichfork,
f7b1a8b1 3969 xfs_fileoff_t off,
a2ceac1f 3970 xfs_filblks_t len,
f7b1a8b1 3971 xfs_filblks_t prealloc,
a2ceac1f 3972 struct xfs_bmbt_irec *got,
9788e059 3973 struct xfs_iext_cursor *icur,
a2ceac1f
DC
3974 int eof)
3975{
3976 struct xfs_mount *mp = ip->i_mount;
cc66acaf 3977 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
a2ceac1f
DC
3978 xfs_extlen_t alen;
3979 xfs_extlen_t indlen;
a2ceac1f 3980 int error;
f7b1a8b1 3981 xfs_fileoff_t aoff = off;
a2ceac1f 3982
f7b1a8b1
BF
3983 /*
3984 * Cap the alloc length. Keep track of prealloc so we know whether to
3985 * tag the inode before we return.
3986 */
3987 alen = XFS_FILBLKS_MIN(len + prealloc, MAXEXTLEN);
a2ceac1f
DC
3988 if (!eof)
3989 alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff);
f7b1a8b1
BF
3990 if (prealloc && alen >= len)
3991 prealloc = alen - len;
a2ceac1f
DC
3992
3993 /* Figure out the extent size, adjust alen */
885ba5ce 3994 if (whichfork == XFS_COW_FORK) {
d41d2303 3995 struct xfs_bmbt_irec prev;
885ba5ce 3996 xfs_extlen_t extsz = xfs_get_cowextsz_hint(ip);
d41d2303 3997
9788e059 3998 if (!xfs_iext_peek_prev_extent(ifp, icur, &prev))
d41d2303
CH
3999 prev.br_startoff = NULLFILEOFF;
4000
885ba5ce 4001 error = xfs_bmap_extsize_align(mp, got, &prev, extsz, 0, eof,
a2ceac1f
DC
4002 1, 0, &aoff, &alen);
4003 ASSERT(!error);
4004 }
4005
a2ceac1f
DC
4006 /*
4007 * Make a transaction-less quota reservation for delayed allocation
4008 * blocks. This number gets adjusted later. We return if we haven't
4009 * allocated blocks already inside this loop.
4010 */
4011 error = xfs_trans_reserve_quota_nblks(NULL, ip, (long)alen, 0,
885ba5ce 4012 XFS_QMOPT_RES_REGBLKS);
a2ceac1f
DC
4013 if (error)
4014 return error;
4015
4016 /*
4017 * Split changing sb for alen and indlen since they could be coming
4018 * from different places.
4019 */
4020 indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen);
4021 ASSERT(indlen > 0);
4022
885ba5ce 4023 error = xfs_mod_fdblocks(mp, -((int64_t)alen), false);
a2ceac1f
DC
4024 if (error)
4025 goto out_unreserve_quota;
4026
19ebedcf 4027 error = xfs_mod_fdblocks(mp, -((int64_t)indlen), false);
a2ceac1f
DC
4028 if (error)
4029 goto out_unreserve_blocks;
4030
4031
4032 ip->i_delayed_blks += alen;
f73690fe 4033 xfs_mod_delalloc(ip->i_mount, alen + indlen);
a2ceac1f
DC
4034
4035 got->br_startoff = aoff;
4036 got->br_startblock = nullstartblock(indlen);
4037 got->br_blockcount = alen;
4038 got->br_state = XFS_EXT_NORM;
a2ceac1f 4039
9788e059 4040 xfs_bmap_add_extent_hole_delay(ip, whichfork, icur, got);
a2ceac1f 4041
f7b1a8b1
BF
4042 /*
4043 * Tag the inode if blocks were preallocated. Note that COW fork
4044 * preallocation can occur at the start or end of the extent, even when
4045 * prealloc == 0, so we must also check the aligned offset and length.
4046 */
4047 if (whichfork == XFS_DATA_FORK && prealloc)
4048 xfs_inode_set_eofblocks_tag(ip);
4049 if (whichfork == XFS_COW_FORK && (prealloc || aoff < off || alen > len))
4050 xfs_inode_set_cowblocks_tag(ip);
4051
a2ceac1f
DC
4052 return 0;
4053
4054out_unreserve_blocks:
885ba5ce 4055 xfs_mod_fdblocks(mp, alen, false);
a2ceac1f
DC
4056out_unreserve_quota:
4057 if (XFS_IS_QUOTA_ON(mp))
885ba5ce
SH
4058 xfs_trans_unreserve_quota_nblks(NULL, ip, (long)alen, 0,
4059 XFS_QMOPT_RES_REGBLKS);
a2ceac1f
DC
4060 return error;
4061}
4062
2ac7663a
CH
4063static int
4064xfs_bmap_alloc_userdata(
4065 struct xfs_bmalloca *bma)
4066{
4067 struct xfs_mount *mp = bma->ip->i_mount;
4068 int whichfork = xfs_bmapi_whichfork(bma->flags);
4069 int error;
4070
4071 /*
4072 * Set the data type being allocated. For the data fork, the first data
4073 * in the file is treated differently to all other allocations. For the
4074 * attribute fork, we only need to ensure the allocated range is not on
4075 * the busy list.
4076 */
4077 bma->datatype = XFS_ALLOC_NOBUSY;
2ac7663a 4078 if (whichfork == XFS_DATA_FORK) {
a85522b6 4079 bma->datatype |= XFS_ALLOC_USERDATA;
2ac7663a
CH
4080 if (bma->offset == 0)
4081 bma->datatype |= XFS_ALLOC_INITIAL_USER_DATA;
2ac7663a
CH
4082
4083 if (mp->m_dalign && bma->length >= mp->m_dalign) {
4084 error = xfs_bmap_isaeof(bma, whichfork);
4085 if (error)
4086 return error;
4087 }
4088
4089 if (XFS_IS_REALTIME_INODE(bma->ip))
4090 return xfs_bmap_rtalloc(bma);
4091 }
4092
4093 return xfs_bmap_btalloc(bma);
4094}
4095
ff105f75
DC
4096static int
4097xfs_bmapi_allocate(
a2ceac1f
DC
4098 struct xfs_bmalloca *bma)
4099{
4100 struct xfs_mount *mp = bma->ip->i_mount;
1277a5e0 4101 int whichfork = xfs_bmapi_whichfork(bma->flags);
a2ceac1f
DC
4102 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4103 int tmp_logflags = 0;
4104 int error;
4105
4106 ASSERT(bma->length > 0);
4107
4108 /*
4109 * For the wasdelay case, we could also just allocate the stuff asked
4110 * for in this bmap call but that wouldn't be as good.
4111 */
4112 if (bma->wasdel) {
4113 bma->length = (xfs_extlen_t)bma->got.br_blockcount;
4114 bma->offset = bma->got.br_startoff;
530bc0fc
DW
4115 if (!xfs_iext_peek_prev_extent(ifp, &bma->icur, &bma->prev))
4116 bma->prev.br_startoff = NULLFILEOFF;
a2ceac1f
DC
4117 } else {
4118 bma->length = XFS_FILBLKS_MIN(bma->length, MAXEXTLEN);
4119 if (!bma->eof)
4120 bma->length = XFS_FILBLKS_MIN(bma->length,
4121 bma->got.br_startoff - bma->offset);
4122 }
4123
2ac7663a
CH
4124 if (bma->flags & XFS_BMAPI_CONTIG)
4125 bma->minlen = bma->length;
4126 else
4127 bma->minlen = 1;
a2ceac1f 4128
2ac7663a
CH
4129 if (bma->flags & XFS_BMAPI_METADATA)
4130 error = xfs_bmap_btalloc(bma);
4131 else
4132 error = xfs_bmap_alloc_userdata(bma);
4133 if (error || bma->blkno == NULLFSBLOCK)
a2ceac1f
DC
4134 return error;
4135
c3a24cde
CH
4136 if (bma->flags & XFS_BMAPI_ZERO) {
4137 error = xfs_zero_extent(bma->ip, bma->blkno, bma->length);
4138 if (error)
4139 return error;
4140 }
4141
f44a348b 4142 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur)
a2ceac1f 4143 bma->cur = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork);
a2ceac1f
DC
4144 /*
4145 * Bump the number of extents we've allocated
4146 * in this call.
4147 */
4148 bma->nallocs++;
4149
4150 if (bma->cur)
116c6a88 4151 bma->cur->bc_ino.flags =
bbf943f8 4152 bma->wasdel ? XFS_BTCUR_BMBT_WASDEL : 0;
a2ceac1f
DC
4153
4154 bma->got.br_startoff = bma->offset;
4155 bma->got.br_startblock = bma->blkno;
4156 bma->got.br_blockcount = bma->length;
4157 bma->got.br_state = XFS_EXT_NORM;
4158
edc9bb69 4159 if (bma->flags & XFS_BMAPI_PREALLOC)
a2ceac1f
DC
4160 bma->got.br_state = XFS_EXT_UNWRITTEN;
4161
4162 if (bma->wasdel)
1277a5e0 4163 error = xfs_bmap_add_extent_delay_real(bma, whichfork);
a2ceac1f 4164 else
972432f2 4165 error = xfs_bmap_add_extent_hole_real(bma->tp, bma->ip,
9788e059 4166 whichfork, &bma->icur, &bma->cur, &bma->got,
64e8b4a7 4167 &bma->logflags, bma->flags);
a2ceac1f
DC
4168
4169 bma->logflags |= tmp_logflags;
4170 if (error)
4171 return error;
4172
4173 /*
4174 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4175 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4176 * the neighbouring ones.
4177 */
9788e059 4178 xfs_iext_get_extent(ifp, &bma->icur, &bma->got);
a2ceac1f
DC
4179
4180 ASSERT(bma->got.br_startoff <= bma->offset);
4181 ASSERT(bma->got.br_startoff + bma->got.br_blockcount >=
4182 bma->offset + bma->length);
4183 ASSERT(bma->got.br_state == XFS_EXT_NORM ||
4184 bma->got.br_state == XFS_EXT_UNWRITTEN);
4185 return 0;
4186}
4187
a2ceac1f
DC
4188STATIC int
4189xfs_bmapi_convert_unwritten(
4190 struct xfs_bmalloca *bma,
4191 struct xfs_bmbt_irec *mval,
4192 xfs_filblks_t len,
4193 int flags)
4194{
cb8a004a 4195 int whichfork = xfs_bmapi_whichfork(flags);
a2ceac1f
DC
4196 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4197 int tmp_logflags = 0;
4198 int error;
4199
4200 /* check if we need to do unwritten->real conversion */
4201 if (mval->br_state == XFS_EXT_UNWRITTEN &&
4202 (flags & XFS_BMAPI_PREALLOC))
4203 return 0;
4204
4205 /* check if we need to do real->unwritten conversion */
4206 if (mval->br_state == XFS_EXT_NORM &&
4207 (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) !=
4208 (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT))
4209 return 0;
4210
4211 /*
4212 * Modify (by adding) the state flag, if writing.
4213 */
4214 ASSERT(mval->br_blockcount <= len);
4215 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4216 bma->cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp,
4217 bma->ip, whichfork);
a2ceac1f
DC
4218 }
4219 mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN)
4220 ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
4221
9542ae13
DC
4222 /*
4223 * Before insertion into the bmbt, zero the range being converted
4224 * if required.
4225 */
4226 if (flags & XFS_BMAPI_ZERO) {
4227 error = xfs_zero_extent(bma->ip, mval->br_startblock,
4228 mval->br_blockcount);
4229 if (error)
4230 return error;
4231 }
4232
4072e4b4 4233 error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, whichfork,
64e8b4a7 4234 &bma->icur, &bma->cur, mval, &tmp_logflags);
23fc058d
BF
4235 /*
4236 * Log the inode core unconditionally in the unwritten extent conversion
4237 * path because the conversion might not have done so (e.g., if the
4238 * extent count hasn't changed). We need to make sure the inode is dirty
4239 * in the transaction for the sake of fsync(), even if nothing has
4240 * changed, because fsync() will not force the log for this transaction
4241 * unless it sees the inode pinned.
4072e4b4
DW
4242 *
4243 * Note: If we're only converting cow fork extents, there aren't
4244 * any on-disk updates to make, so we don't need to log anything.
23fc058d 4245 */
4072e4b4
DW
4246 if (whichfork != XFS_COW_FORK)
4247 bma->logflags |= tmp_logflags | XFS_ILOG_CORE;
a2ceac1f
DC
4248 if (error)
4249 return error;
4250
4251 /*
4252 * Update our extent pointer, given that
4253 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4254 * of the neighbouring ones.
4255 */
9788e059 4256 xfs_iext_get_extent(ifp, &bma->icur, &bma->got);
a2ceac1f
DC
4257
4258 /*
4259 * We may have combined previously unwritten space with written space,
4260 * so generate another request.
4261 */
4262 if (mval->br_blockcount < len)
12b53197 4263 return -EAGAIN;
a2ceac1f
DC
4264 return 0;
4265}
4266
ee622798
CH
4267static inline xfs_extlen_t
4268xfs_bmapi_minleft(
4269 struct xfs_trans *tp,
4270 struct xfs_inode *ip,
4271 int fork)
4272{
d967a68d
CH
4273 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, fork);
4274
ee622798
CH
4275 if (tp && tp->t_firstblock != NULLFSBLOCK)
4276 return 0;
d967a68d 4277 if (ifp->if_format != XFS_DINODE_FMT_BTREE)
ee622798 4278 return 1;
d967a68d 4279 return be16_to_cpu(ifp->if_broot->bb_level) + 1;
ee622798
CH
4280}
4281
4282/*
4283 * Log whatever the flags say, even if error. Otherwise we might miss detecting
4284 * a case where the data is changed, there's an error, and it's not logged so we
4285 * don't shutdown when we should. Don't bother logging extents/btree changes if
4286 * we converted to the other format.
4287 */
4288static void
4289xfs_bmapi_finish(
4290 struct xfs_bmalloca *bma,
4291 int whichfork,
4292 int error)
4293{
d967a68d
CH
4294 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
4295
ee622798 4296 if ((bma->logflags & xfs_ilog_fext(whichfork)) &&
d967a68d 4297 ifp->if_format != XFS_DINODE_FMT_EXTENTS)
ee622798
CH
4298 bma->logflags &= ~xfs_ilog_fext(whichfork);
4299 else if ((bma->logflags & xfs_ilog_fbroot(whichfork)) &&
d967a68d 4300 ifp->if_format != XFS_DINODE_FMT_BTREE)
ee622798
CH
4301 bma->logflags &= ~xfs_ilog_fbroot(whichfork);
4302
4303 if (bma->logflags)
4304 xfs_trans_log_inode(bma->tp, bma->ip, bma->logflags);
4305 if (bma->cur)
4306 xfs_btree_del_cursor(bma->cur, error);
4307}
4308
a2ceac1f
DC
4309/*
4310 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4311 * extent state if necessary. Details behaviour is controlled by the flags
4312 * parameter. Only allocates blocks from a single allocation group, to avoid
4313 * locking problems.
a2ceac1f
DC
4314 */
4315int
4316xfs_bmapi_write(
4317 struct xfs_trans *tp, /* transaction pointer */
4318 struct xfs_inode *ip, /* incore inode */
4319 xfs_fileoff_t bno, /* starting file offs. mapped */
4320 xfs_filblks_t len, /* length to map in file */
4321 int flags, /* XFS_BMAPI_... */
a2ceac1f
DC
4322 xfs_extlen_t total, /* total blocks needed */
4323 struct xfs_bmbt_irec *mval, /* output: map values */
cbdfb3ab 4324 int *nmap) /* i/o: mval size/count */
a2ceac1f 4325{
93ad4d9c
DW
4326 struct xfs_bmalloca bma = {
4327 .tp = tp,
4328 .ip = ip,
4329 .total = total,
4330 };
a2ceac1f 4331 struct xfs_mount *mp = ip->i_mount;
d967a68d
CH
4332 int whichfork = xfs_bmapi_whichfork(flags);
4333 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
a2ceac1f 4334 xfs_fileoff_t end; /* end of mapped file region */
82411945 4335 bool eof = false; /* after the end of extents */
a2ceac1f
DC
4336 int error; /* error return */
4337 int n; /* current extent index */
4338 xfs_fileoff_t obno; /* old block number (offset) */
a2ceac1f
DC
4339
4340#ifdef DEBUG
4341 xfs_fileoff_t orig_bno; /* original block number value */
4342 int orig_flags; /* original flags arg value */
4343 xfs_filblks_t orig_len; /* original value of len arg */
4344 struct xfs_bmbt_irec *orig_mval; /* original value of mval */
4345 int orig_nmap; /* original value of *nmap */
4346
4347 orig_bno = bno;
4348 orig_len = len;
4349 orig_flags = flags;
4350 orig_mval = mval;
4351 orig_nmap = *nmap;
4352#endif
4353
4354 ASSERT(*nmap >= 1);
4355 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
9fa4db19 4356 ASSERT(tp != NULL);
a2ceac1f 4357 ASSERT(len > 0);
d967a68d 4358 ASSERT(ifp->if_format != XFS_DINODE_FMT_LOCAL);
ff105f75 4359 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
0b44aa85 4360 ASSERT(!(flags & XFS_BMAPI_REMAP));
a2ceac1f 4361
9542ae13
DC
4362 /* zeroing is for currently only for data extents, not metadata */
4363 ASSERT((flags & (XFS_BMAPI_METADATA | XFS_BMAPI_ZERO)) !=
4364 (XFS_BMAPI_METADATA | XFS_BMAPI_ZERO));
4365 /*
4366 * we can allocate unwritten extents or pre-zero allocated blocks,
4367 * but it makes no sense to do both at once. This would result in
4368 * zeroing the unwritten extent twice, but it still being an
4369 * unwritten extent....
4370 */
4371 ASSERT((flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_ZERO)) !=
4372 (XFS_BMAPI_PREALLOC | XFS_BMAPI_ZERO));
4373
d967a68d 4374 if (XFS_IS_CORRUPT(mp, !xfs_ifork_has_extents(ifp)) ||
bc73da84 4375 XFS_TEST_ERROR(false, mp, XFS_ERRTAG_BMAPIFORMAT)) {
12b53197 4376 return -EFSCORRUPTED;
a2ceac1f
DC
4377 }
4378
4379 if (XFS_FORCED_SHUTDOWN(mp))
12b53197 4380 return -EIO;
a2ceac1f 4381
79896434 4382 XFS_STATS_INC(mp, xs_blk_mapw);
a2ceac1f 4383
a2ceac1f
DC
4384 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4385 error = xfs_iread_extents(tp, ip, whichfork);
4386 if (error)
4387 goto error0;
4388 }
4389
9788e059 4390 if (!xfs_iext_lookup_extent(ip, ifp, bno, &bma.icur, &bma.got))
82411945 4391 eof = true;
9788e059 4392 if (!xfs_iext_peek_prev_extent(ifp, &bma.icur, &bma.prev))
82411945 4393 bma.prev.br_startoff = NULLFILEOFF;
ee622798 4394 bma.minleft = xfs_bmapi_minleft(tp, ip, whichfork);
a2ceac1f 4395
badaa597
BF
4396 n = 0;
4397 end = bno + len;
4398 obno = bno;
a2ceac1f 4399 while (bno < end && n < *nmap) {
7075a23f
CH
4400 bool need_alloc = false, wasdelay = false;
4401
faaad1df 4402 /* in hole or beyond EOF? */
7075a23f 4403 if (eof || bma.got.br_startoff > bno) {
faaad1df
DW
4404 /*
4405 * CoW fork conversions should /never/ hit EOF or
4406 * holes. There should always be something for us
4407 * to work on.
4408 */
4409 ASSERT(!((flags & XFS_BMAPI_CONVERT) &&
4410 (flags & XFS_BMAPI_COWFORK)));
4411
330a35fe 4412 need_alloc = true;
0b44aa85
CH
4413 } else if (isnullstartblock(bma.got.br_startblock)) {
4414 wasdelay = true;
7075a23f 4415 }
34621a47 4416
2bd0ea18 4417 /*
a2ceac1f
DC
4418 * First, deal with the hole before the allocated space
4419 * that we found, if any.
2bd0ea18 4420 */
9fa4db19 4421 if (need_alloc || wasdelay) {
a2ceac1f
DC
4422 bma.eof = eof;
4423 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
4424 bma.wasdel = wasdelay;
4425 bma.offset = bno;
4426 bma.flags = flags;
4427
2bd0ea18 4428 /*
a2ceac1f
DC
4429 * There's a 32/64 bit type mismatch between the
4430 * allocation length request (which can be 64 bits in
4431 * length) and the bma length request, which is
4432 * xfs_extlen_t and therefore 32 bits. Hence we have to
4433 * check for 32-bit overflows and handle them here.
2bd0ea18 4434 */
a2ceac1f
DC
4435 if (len > (xfs_filblks_t)MAXEXTLEN)
4436 bma.length = MAXEXTLEN;
4437 else
4438 bma.length = len;
4439
4440 ASSERT(len > 0);
4441 ASSERT(bma.length > 0);
4442 error = xfs_bmapi_allocate(&bma);
2bd0ea18
NS
4443 if (error)
4444 goto error0;
a2ceac1f
DC
4445 if (bma.blkno == NULLFSBLOCK)
4446 break;
10e65503
DW
4447
4448 /*
4449 * If this is a CoW allocation, record the data in
4450 * the refcount btree for orphan recovery.
4451 */
5965a482
DW
4452 if (whichfork == XFS_COW_FORK)
4453 xfs_refcount_alloc_cow_extent(tp, bma.blkno,
4454 bma.length);
2bd0ea18
NS
4455 }
4456
a2ceac1f
DC
4457 /* Deal with the allocated space we found. */
4458 xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno,
4459 end, n, flags);
4460
4461 /* Execute unwritten extent conversion if necessary */
4462 error = xfs_bmapi_convert_unwritten(&bma, mval, len, flags);
12b53197 4463 if (error == -EAGAIN)
a2ceac1f
DC
4464 continue;
4465 if (error)
4466 goto error0;
4467
4468 /* update the extent map to return */
4469 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4470
2bd0ea18
NS
4471 /*
4472 * If we're done, stop now. Stop when we've allocated
4473 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4474 * the transaction may get too big.
4475 */
a2ceac1f 4476 if (bno >= end || n >= *nmap || bma.nallocs >= *nmap)
2bd0ea18 4477 break;
a2ceac1f
DC
4478
4479 /* Else go on to the next record. */
4480 bma.prev = bma.got;
9788e059 4481 if (!xfs_iext_next_extent(ifp, &bma.icur, &bma.got))
82411945 4482 eof = true;
2bd0ea18 4483 }
2bd0ea18 4484 *nmap = n;
a2ceac1f 4485
939ebc1a
CH
4486 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur, &bma.logflags,
4487 whichfork);
4488 if (error)
4489 goto error0;
a2ceac1f 4490
d967a68d 4491 ASSERT(ifp->if_format != XFS_DINODE_FMT_BTREE ||
87c472b7 4492 ifp->if_nextents > XFS_IFORK_MAXEXT(ip, whichfork));
ee622798
CH
4493 xfs_bmapi_finish(&bma, whichfork, 0);
4494 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
4495 orig_nmap, *nmap);
4496 return 0;
2bd0ea18 4497error0:
ee622798 4498 xfs_bmapi_finish(&bma, whichfork, error);
2bd0ea18
NS
4499 return error;
4500}
4501
badaa597
BF
4502/*
4503 * Convert an existing delalloc extent to real blocks based on file offset. This
4504 * attempts to allocate the entire delalloc extent and may require multiple
4505 * invocations to allocate the target offset if a large enough physical extent
4506 * is not available.
4507 */
4508int
4509xfs_bmapi_convert_delalloc(
badaa597 4510 struct xfs_inode *ip,
badaa597 4511 int whichfork,
75f533e6
CH
4512 xfs_off_t offset,
4513 struct iomap *iomap,
c784c9d2 4514 unsigned int *seq)
badaa597 4515{
330a35fe 4516 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
c784c9d2 4517 struct xfs_mount *mp = ip->i_mount;
75f533e6 4518 xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset);
330a35fe 4519 struct xfs_bmalloca bma = { NULL };
75f533e6 4520 uint16_t flags = 0;
c784c9d2 4521 struct xfs_trans *tp;
badaa597 4522 int error;
badaa597 4523
75f533e6
CH
4524 if (whichfork == XFS_COW_FORK)
4525 flags |= IOMAP_F_SHARED;
4526
c784c9d2
CH
4527 /*
4528 * Space for the extent and indirect blocks was reserved when the
4529 * delalloc extent was created so there's no need to do so here.
4530 */
4531 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0,
4532 XFS_TRANS_RESERVE, &tp);
4533 if (error)
4534 return error;
4535
4536 xfs_ilock(ip, XFS_ILOCK_EXCL);
75cb5a60
CB
4537
4538 error = xfs_iext_count_may_overflow(ip, whichfork,
4539 XFS_IEXT_ADD_NOSPLIT_CNT);
4540 if (error)
4541 goto out_trans_cancel;
4542
c784c9d2
CH
4543 xfs_trans_ijoin(tp, ip, 0);
4544
330a35fe
CH
4545 if (!xfs_iext_lookup_extent(ip, ifp, offset_fsb, &bma.icur, &bma.got) ||
4546 bma.got.br_startoff > offset_fsb) {
4547 /*
4548 * No extent found in the range we are trying to convert. This
4549 * should only happen for the COW fork, where another thread
4550 * might have moved the extent to the data fork in the meantime.
4551 */
4552 WARN_ON_ONCE(whichfork != XFS_COW_FORK);
c784c9d2
CH
4553 error = -EAGAIN;
4554 goto out_trans_cancel;
330a35fe 4555 }
badaa597
BF
4556
4557 /*
330a35fe
CH
4558 * If we find a real extent here we raced with another thread converting
4559 * the extent. Just return the real extent at this offset.
badaa597 4560 */
330a35fe 4561 if (!isnullstartblock(bma.got.br_startblock)) {
75f533e6 4562 xfs_bmbt_to_iomap(ip, iomap, &bma.got, flags);
c784c9d2
CH
4563 *seq = READ_ONCE(ifp->if_seq);
4564 goto out_trans_cancel;
330a35fe
CH
4565 }
4566
4567 bma.tp = tp;
4568 bma.ip = ip;
4569 bma.wasdel = true;
4570 bma.offset = bma.got.br_startoff;
4571 bma.length = max_t(xfs_filblks_t, bma.got.br_blockcount, MAXEXTLEN);
330a35fe 4572 bma.minleft = xfs_bmapi_minleft(tp, ip, whichfork);
edc9bb69
DW
4573
4574 /*
4575 * When we're converting the delalloc reservations backing dirty pages
4576 * in the page cache, we must be careful about how we create the new
4577 * extents:
4578 *
4579 * New CoW fork extents are created unwritten, turned into real extents
4580 * when we're about to write the data to disk, and mapped into the data
4581 * fork after the write finishes. End of story.
4582 *
4583 * New data fork extents must be mapped in as unwritten and converted
4584 * to real extents after the write succeeds to avoid exposing stale
4585 * disk contents if we crash.
4586 */
4587 bma.flags = XFS_BMAPI_PREALLOC;
330a35fe 4588 if (whichfork == XFS_COW_FORK)
edc9bb69 4589 bma.flags |= XFS_BMAPI_COWFORK;
330a35fe
CH
4590
4591 if (!xfs_iext_peek_prev_extent(ifp, &bma.icur, &bma.prev))
4592 bma.prev.br_startoff = NULLFILEOFF;
4593
4594 error = xfs_bmapi_allocate(&bma);
4595 if (error)
4596 goto out_finish;
4597
4598 error = -ENOSPC;
4599 if (WARN_ON_ONCE(bma.blkno == NULLFSBLOCK))
4600 goto out_finish;
4601 error = -EFSCORRUPTED;
14790ed0 4602 if (WARN_ON_ONCE(!xfs_valid_startblock(ip, bma.got.br_startblock)))
330a35fe
CH
4603 goto out_finish;
4604
44e165df
CH
4605 XFS_STATS_ADD(mp, xs_xstrat_bytes, XFS_FSB_TO_B(mp, bma.length));
4606 XFS_STATS_INC(mp, xs_xstrat_quick);
4607
330a35fe 4608 ASSERT(!isnullstartblock(bma.got.br_startblock));
75f533e6 4609 xfs_bmbt_to_iomap(ip, iomap, &bma.got, flags);
c784c9d2 4610 *seq = READ_ONCE(ifp->if_seq);
330a35fe 4611
5965a482
DW
4612 if (whichfork == XFS_COW_FORK)
4613 xfs_refcount_alloc_cow_extent(tp, bma.blkno, bma.length);
330a35fe
CH
4614
4615 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur, &bma.logflags,
4616 whichfork);
c784c9d2
CH
4617 if (error)
4618 goto out_finish;
4619
4620 xfs_bmapi_finish(&bma, whichfork, 0);
4621 error = xfs_trans_commit(tp);
4622 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4623 return error;
4624
330a35fe
CH
4625out_finish:
4626 xfs_bmapi_finish(&bma, whichfork, error);
c784c9d2
CH
4627out_trans_cancel:
4628 xfs_trans_cancel(tp);
4629 xfs_iunlock(ip, XFS_ILOCK_EXCL);
badaa597
BF
4630 return error;
4631}
4632
26d6a481 4633int
0b44aa85
CH
4634xfs_bmapi_remap(
4635 struct xfs_trans *tp,
4636 struct xfs_inode *ip,
4637 xfs_fileoff_t bno,
4638 xfs_filblks_t len,
4639 xfs_fsblock_t startblock,
26d6a481 4640 int flags)
0b44aa85
CH
4641{
4642 struct xfs_mount *mp = ip->i_mount;
26d6a481 4643 struct xfs_ifork *ifp;
0b44aa85 4644 struct xfs_btree_cur *cur = NULL;
0b44aa85 4645 struct xfs_bmbt_irec got;
9788e059 4646 struct xfs_iext_cursor icur;
26d6a481 4647 int whichfork = xfs_bmapi_whichfork(flags);
0b44aa85
CH
4648 int logflags = 0, error;
4649
26d6a481 4650 ifp = XFS_IFORK_PTR(ip, whichfork);
0b44aa85
CH
4651 ASSERT(len > 0);
4652 ASSERT(len <= (xfs_filblks_t)MAXEXTLEN);
4653 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
36cfb334
DW
4654 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC |
4655 XFS_BMAPI_NORMAP)));
4656 ASSERT((flags & (XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC)) !=
4657 (XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC));
0b44aa85 4658
d967a68d 4659 if (XFS_IS_CORRUPT(mp, !xfs_ifork_has_extents(ifp)) ||
bc73da84 4660 XFS_TEST_ERROR(false, mp, XFS_ERRTAG_BMAPIFORMAT)) {
0b44aa85
CH
4661 return -EFSCORRUPTED;
4662 }
4663
4664 if (XFS_FORCED_SHUTDOWN(mp))
4665 return -EIO;
4666
4667 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
26d6a481 4668 error = xfs_iread_extents(tp, ip, whichfork);
0b44aa85
CH
4669 if (error)
4670 return error;
4671 }
4672
9788e059 4673 if (xfs_iext_lookup_extent(ip, ifp, bno, &icur, &got)) {
0b44aa85
CH
4674 /* make sure we only reflink into a hole. */
4675 ASSERT(got.br_startoff > bno);
4676 ASSERT(got.br_startoff - bno >= len);
4677 }
4678
05422db6
CH
4679 ip->i_d.di_nblocks += len;
4680 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
0b44aa85
CH
4681
4682 if (ifp->if_flags & XFS_IFBROOT) {
26d6a481 4683 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
116c6a88 4684 cur->bc_ino.flags = 0;
0b44aa85
CH
4685 }
4686
4687 got.br_startoff = bno;
4688 got.br_startblock = startblock;
4689 got.br_blockcount = len;
36cfb334
DW
4690 if (flags & XFS_BMAPI_PREALLOC)
4691 got.br_state = XFS_EXT_UNWRITTEN;
4692 else
4693 got.br_state = XFS_EXT_NORM;
0b44aa85 4694
26d6a481 4695 error = xfs_bmap_add_extent_hole_real(tp, ip, whichfork, &icur,
64e8b4a7 4696 &cur, &got, &logflags, flags);
0b44aa85
CH
4697 if (error)
4698 goto error0;
4699
939ebc1a 4700 error = xfs_bmap_btree_to_extents(tp, ip, cur, &logflags, whichfork);
0b44aa85
CH
4701
4702error0:
d967a68d 4703 if (ip->i_df.if_format != XFS_DINODE_FMT_EXTENTS)
0b44aa85 4704 logflags &= ~XFS_ILOG_DEXT;
d967a68d 4705 else if (ip->i_df.if_format != XFS_DINODE_FMT_BTREE)
0b44aa85
CH
4706 logflags &= ~XFS_ILOG_DBROOT;
4707
4708 if (logflags)
4709 xfs_trans_log_inode(tp, ip, logflags);
660265b7
DW
4710 if (cur)
4711 xfs_btree_del_cursor(cur, error);
0b44aa85
CH
4712 return error;
4713}
4714
01d1b786
BF
4715/*
4716 * When a delalloc extent is split (e.g., due to a hole punch), the original
4717 * indlen reservation must be shared across the two new extents that are left
4718 * behind.
4719 *
4720 * Given the original reservation and the worst case indlen for the two new
4721 * extents (as calculated by xfs_bmap_worst_indlen()), split the original
731ccdf9
BF
4722 * reservation fairly across the two new extents. If necessary, steal available
4723 * blocks from a deleted extent to make up a reservation deficiency (e.g., if
4724 * ores == 1). The number of stolen blocks is returned. The availability and
4725 * subsequent accounting of stolen blocks is the responsibility of the caller.
01d1b786 4726 */
731ccdf9 4727static xfs_filblks_t
01d1b786
BF
4728xfs_bmap_split_indlen(
4729 xfs_filblks_t ores, /* original res. */
4730 xfs_filblks_t *indlen1, /* ext1 worst indlen */
731ccdf9
BF
4731 xfs_filblks_t *indlen2, /* ext2 worst indlen */
4732 xfs_filblks_t avail) /* stealable blocks */
01d1b786
BF
4733{
4734 xfs_filblks_t len1 = *indlen1;
4735 xfs_filblks_t len2 = *indlen2;
4736 xfs_filblks_t nres = len1 + len2; /* new total res. */
731ccdf9 4737 xfs_filblks_t stolen = 0;
775762e4 4738 xfs_filblks_t resfactor;
731ccdf9
BF
4739
4740 /*
4741 * Steal as many blocks as we can to try and satisfy the worst case
4742 * indlen for both new extents.
4743 */
775762e4
BF
4744 if (ores < nres && avail)
4745 stolen = XFS_FILBLKS_MIN(nres - ores, avail);
4746 ores += stolen;
4747
4748 /* nothing else to do if we've satisfied the new reservation */
4749 if (ores >= nres)
4750 return stolen;
4751
4752 /*
4753 * We can't meet the total required reservation for the two extents.
4754 * Calculate the percent of the overall shortage between both extents
4755 * and apply this percentage to each of the requested indlen values.
4756 * This distributes the shortage fairly and reduces the chances that one
4757 * of the two extents is left with nothing when extents are repeatedly
4758 * split.
4759 */
4760 resfactor = (ores * 100);
4761 do_div(resfactor, nres);
4762 len1 *= resfactor;
4763 do_div(len1, 100);
4764 len2 *= resfactor;
4765 do_div(len2, 100);
4766 ASSERT(len1 + len2 <= ores);
4767 ASSERT(len1 < *indlen1 && len2 < *indlen2);
01d1b786
BF
4768
4769 /*
775762e4
BF
4770 * Hand out the remainder to each extent. If one of the two reservations
4771 * is zero, we want to make sure that one gets a block first. The loop
4772 * below starts with len1, so hand len2 a block right off the bat if it
4773 * is zero.
01d1b786 4774 */
775762e4
BF
4775 ores -= (len1 + len2);
4776 ASSERT((*indlen1 - len1) + (*indlen2 - len2) >= ores);
4777 if (ores && !len2 && *indlen2) {
4778 len2++;
4779 ores--;
4780 }
4781 while (ores) {
4782 if (len1 < *indlen1) {
4783 len1++;
4784 ores--;
01d1b786 4785 }
775762e4 4786 if (!ores)
01d1b786 4787 break;
775762e4
BF
4788 if (len2 < *indlen2) {
4789 len2++;
4790 ores--;
01d1b786
BF
4791 }
4792 }
4793
4794 *indlen1 = len1;
4795 *indlen2 = len2;
731ccdf9
BF
4796
4797 return stolen;
01d1b786
BF
4798}
4799
ece930fa
CH
4800int
4801xfs_bmap_del_extent_delay(
4802 struct xfs_inode *ip,
4803 int whichfork,
9788e059 4804 struct xfs_iext_cursor *icur,
ece930fa
CH
4805 struct xfs_bmbt_irec *got,
4806 struct xfs_bmbt_irec *del)
4807{
4808 struct xfs_mount *mp = ip->i_mount;
4809 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
4810 struct xfs_bmbt_irec new;
4811 int64_t da_old, da_new, da_diff = 0;
4812 xfs_fileoff_t del_endoff, got_endoff;
4813 xfs_filblks_t got_indlen, new_indlen, stolen;
7bd43334
CH
4814 int state = xfs_bmap_fork_to_state(whichfork);
4815 int error = 0;
ece930fa
CH
4816 bool isrt;
4817
4818 XFS_STATS_INC(mp, xs_del_exlist);
4819
4820 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
4821 del_endoff = del->br_startoff + del->br_blockcount;
4822 got_endoff = got->br_startoff + got->br_blockcount;
4823 da_old = startblockval(got->br_startblock);
4824 da_new = 0;
4825
ece930fa
CH
4826 ASSERT(del->br_blockcount > 0);
4827 ASSERT(got->br_startoff <= del->br_startoff);
4828 ASSERT(got_endoff >= del_endoff);
4829
4830 if (isrt) {
f1e0bd8d 4831 uint64_t rtexts = XFS_FSB_TO_B(mp, del->br_blockcount);
ece930fa
CH
4832
4833 do_div(rtexts, mp->m_sb.sb_rextsize);
4834 xfs_mod_frextents(mp, rtexts);
4835 }
4836
4837 /*
4838 * Update the inode delalloc counter now and wait to update the
4839 * sb counters as we might have to borrow some blocks for the
4840 * indirect block accounting.
4841 */
4842 error = xfs_trans_reserve_quota_nblks(NULL, ip,
4843 -((long)del->br_blockcount), 0,
4844 isrt ? XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
6921638c
DW
4845 if (error)
4846 return error;
ece930fa
CH
4847 ip->i_delayed_blks -= del->br_blockcount;
4848
ece930fa 4849 if (got->br_startoff == del->br_startoff)
d0a03e5a 4850 state |= BMAP_LEFT_FILLING;
ece930fa 4851 if (got_endoff == del_endoff)
d0a03e5a 4852 state |= BMAP_RIGHT_FILLING;
ece930fa 4853
d0a03e5a
CH
4854 switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) {
4855 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
ece930fa
CH
4856 /*
4857 * Matches the whole extent. Delete the entry.
4858 */
cf455a62 4859 xfs_iext_remove(ip, icur, state);
9788e059 4860 xfs_iext_prev(ifp, icur);
ece930fa 4861 break;
d0a03e5a 4862 case BMAP_LEFT_FILLING:
ece930fa
CH
4863 /*
4864 * Deleting the first part of the extent.
4865 */
ece930fa
CH
4866 got->br_startoff = del_endoff;
4867 got->br_blockcount -= del->br_blockcount;
4868 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip,
4869 got->br_blockcount), da_old);
4870 got->br_startblock = nullstartblock((int)da_new);
9788e059 4871 xfs_iext_update_extent(ip, state, icur, got);
ece930fa 4872 break;
d0a03e5a 4873 case BMAP_RIGHT_FILLING:
ece930fa
CH
4874 /*
4875 * Deleting the last part of the extent.
4876 */
ece930fa
CH
4877 got->br_blockcount = got->br_blockcount - del->br_blockcount;
4878 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip,
4879 got->br_blockcount), da_old);
4880 got->br_startblock = nullstartblock((int)da_new);
9788e059 4881 xfs_iext_update_extent(ip, state, icur, got);
ece930fa
CH
4882 break;
4883 case 0:
4884 /*
4885 * Deleting the middle of the extent.
4886 *
4887 * Distribute the original indlen reservation across the two new
4888 * extents. Steal blocks from the deleted extent if necessary.
4889 * Stealing blocks simply fudges the fdblocks accounting below.
4890 * Warn if either of the new indlen reservations is zero as this
4891 * can lead to delalloc problems.
4892 */
ece930fa
CH
4893 got->br_blockcount = del->br_startoff - got->br_startoff;
4894 got_indlen = xfs_bmap_worst_indlen(ip, got->br_blockcount);
4895
4896 new.br_blockcount = got_endoff - del_endoff;
4897 new_indlen = xfs_bmap_worst_indlen(ip, new.br_blockcount);
4898
4899 WARN_ON_ONCE(!got_indlen || !new_indlen);
4900 stolen = xfs_bmap_split_indlen(da_old, &got_indlen, &new_indlen,
4901 del->br_blockcount);
4902
4903 got->br_startblock = nullstartblock((int)got_indlen);
ece930fa
CH
4904
4905 new.br_startoff = del_endoff;
4906 new.br_state = got->br_state;
4907 new.br_startblock = nullstartblock((int)new_indlen);
4908
9788e059
CH
4909 xfs_iext_update_extent(ip, state, icur, got);
4910 xfs_iext_next(ifp, icur);
26a75f67 4911 xfs_iext_insert(ip, icur, &new, state);
ece930fa
CH
4912
4913 da_new = got_indlen + new_indlen - stolen;
4914 del->br_blockcount -= stolen;
4915 break;
4916 }
4917
4918 ASSERT(da_old >= da_new);
4919 da_diff = da_old - da_new;
4920 if (!isrt)
4921 da_diff += del->br_blockcount;
f73690fe 4922 if (da_diff) {
ece930fa 4923 xfs_mod_fdblocks(mp, da_diff, false);
f73690fe
DW
4924 xfs_mod_delalloc(mp, -da_diff);
4925 }
ece930fa
CH
4926 return error;
4927}
4928
4929void
4930xfs_bmap_del_extent_cow(
4931 struct xfs_inode *ip,
9788e059 4932 struct xfs_iext_cursor *icur,
ece930fa
CH
4933 struct xfs_bmbt_irec *got,
4934 struct xfs_bmbt_irec *del)
4935{
4936 struct xfs_mount *mp = ip->i_mount;
4937 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
4938 struct xfs_bmbt_irec new;
4939 xfs_fileoff_t del_endoff, got_endoff;
4940 int state = BMAP_COWFORK;
4941
4942 XFS_STATS_INC(mp, xs_del_exlist);
4943
4944 del_endoff = del->br_startoff + del->br_blockcount;
4945 got_endoff = got->br_startoff + got->br_blockcount;
4946
ece930fa
CH
4947 ASSERT(del->br_blockcount > 0);
4948 ASSERT(got->br_startoff <= del->br_startoff);
4949 ASSERT(got_endoff >= del_endoff);
4950 ASSERT(!isnullstartblock(got->br_startblock));
4951
4952 if (got->br_startoff == del->br_startoff)
d0a03e5a 4953 state |= BMAP_LEFT_FILLING;
ece930fa 4954 if (got_endoff == del_endoff)
d0a03e5a 4955 state |= BMAP_RIGHT_FILLING;
ece930fa 4956
d0a03e5a
CH
4957 switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) {
4958 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
ece930fa
CH
4959 /*
4960 * Matches the whole extent. Delete the entry.
4961 */
cf455a62 4962 xfs_iext_remove(ip, icur, state);
9788e059 4963 xfs_iext_prev(ifp, icur);
ece930fa 4964 break;
d0a03e5a 4965 case BMAP_LEFT_FILLING:
ece930fa
CH
4966 /*
4967 * Deleting the first part of the extent.
4968 */
ece930fa
CH
4969 got->br_startoff = del_endoff;
4970 got->br_blockcount -= del->br_blockcount;
4971 got->br_startblock = del->br_startblock + del->br_blockcount;
9788e059 4972 xfs_iext_update_extent(ip, state, icur, got);
ece930fa 4973 break;
d0a03e5a 4974 case BMAP_RIGHT_FILLING:
ece930fa
CH
4975 /*
4976 * Deleting the last part of the extent.
4977 */
ece930fa 4978 got->br_blockcount -= del->br_blockcount;
9788e059 4979 xfs_iext_update_extent(ip, state, icur, got);
ece930fa
CH
4980 break;
4981 case 0:
4982 /*
4983 * Deleting the middle of the extent.
4984 */
ece930fa 4985 got->br_blockcount = del->br_startoff - got->br_startoff;
ece930fa
CH
4986
4987 new.br_startoff = del_endoff;
4988 new.br_blockcount = got_endoff - del_endoff;
4989 new.br_state = got->br_state;
4990 new.br_startblock = del->br_startblock + del->br_blockcount;
4991
9788e059
CH
4992 xfs_iext_update_extent(ip, state, icur, got);
4993 xfs_iext_next(ifp, icur);
26a75f67 4994 xfs_iext_insert(ip, icur, &new, state);
ece930fa
CH
4995 break;
4996 }
d07cc724 4997 ip->i_delayed_blks -= del->br_blockcount;
ece930fa
CH
4998}
4999
2bd0ea18 5000/*
49f693fa 5001 * Called by xfs_bmapi to update file extent records and the btree
ad68fd19 5002 * after removing space.
2bd0ea18 5003 */
49f693fa 5004STATIC int /* error */
ad68fd19 5005xfs_bmap_del_extent_real(
49f693fa
DC
5006 xfs_inode_t *ip, /* incore inode pointer */
5007 xfs_trans_t *tp, /* current transaction pointer */
9788e059 5008 struct xfs_iext_cursor *icur,
49f693fa
DC
5009 xfs_btree_cur_t *cur, /* if null, not a btree */
5010 xfs_bmbt_irec_t *del, /* data to remove from extents */
5011 int *logflagsp, /* inode logging flags */
36b16da8
DW
5012 int whichfork, /* data or attr fork */
5013 int bflags) /* bmapi flags */
2bd0ea18 5014{
49f693fa
DC
5015 xfs_fsblock_t del_endblock=0; /* first block past del */
5016 xfs_fileoff_t del_endoff; /* first offset past del */
49f693fa 5017 int do_fx; /* free extent at end of routine */
49f693fa 5018 int error; /* error return value */
bd92a38b 5019 int flags = 0;/* inode logging flags */
70bf7533 5020 struct xfs_bmbt_irec got; /* current extent entry */
49f693fa
DC
5021 xfs_fileoff_t got_endoff; /* first offset past got */
5022 int i; /* temp state */
e07055b8 5023 struct xfs_ifork *ifp; /* inode fork pointer */
49f693fa
DC
5024 xfs_mount_t *mp; /* mount structure */
5025 xfs_filblks_t nblks; /* quota/sb block count */
5026 xfs_bmbt_irec_t new; /* new record to be inserted */
5027 /* REFERENCED */
5028 uint qfield; /* quota field to update */
7bd43334 5029 int state = xfs_bmap_fork_to_state(whichfork);
70bf7533 5030 struct xfs_bmbt_irec old;
a2ceac1f 5031
79896434
BD
5032 mp = ip->i_mount;
5033 XFS_STATS_INC(mp, xs_del_exlist);
a2ceac1f 5034
49f693fa 5035 ifp = XFS_IFORK_PTR(ip, whichfork);
49f693fa 5036 ASSERT(del->br_blockcount > 0);
9788e059 5037 xfs_iext_get_extent(ifp, icur, &got);
49f693fa
DC
5038 ASSERT(got.br_startoff <= del->br_startoff);
5039 del_endoff = del->br_startoff + del->br_blockcount;
5040 got_endoff = got.br_startoff + got.br_blockcount;
5041 ASSERT(got_endoff >= del_endoff);
ad68fd19 5042 ASSERT(!isnullstartblock(got.br_startblock));
49f693fa
DC
5043 qfield = 0;
5044 error = 0;
ad68fd19 5045
bd92a38b
CH
5046 /*
5047 * If it's the case where the directory code is running with no block
5048 * reservation, and the deleted block is in the middle of its extent,
5049 * and the resulting insert of an extent would cause transformation to
5050 * btree format, then reject it. The calling code will then swap blocks
5051 * around instead. We have to do this now, rather than waiting for the
5052 * conversion to btree format, since the transaction will be dirty then.
5053 */
5054 if (tp->t_blk_res == 0 &&
d967a68d 5055 ifp->if_format == XFS_DINODE_FMT_EXTENTS &&
87c472b7 5056 ifp->if_nextents >= XFS_IFORK_MAXEXT(ip, whichfork) &&
bd92a38b
CH
5057 del->br_startoff > got.br_startoff && del_endoff < got_endoff)
5058 return -ENOSPC;
5059
5060 flags = XFS_ILOG_CORE;
ad68fd19 5061 if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) {
ad68fd19 5062 xfs_filblks_t len;
5a595099
DC
5063 xfs_extlen_t mod;
5064
5a595099
DC
5065 len = div_u64_rem(del->br_blockcount, mp->m_sb.sb_rextsize,
5066 &mod);
5067 ASSERT(mod == 0);
ad68fd19 5068
d5fe08a6
DW
5069 if (!(bflags & XFS_BMAPI_REMAP)) {
5070 xfs_fsblock_t bno;
5071
5072 bno = div_u64_rem(del->br_startblock,
5073 mp->m_sb.sb_rextsize, &mod);
5074 ASSERT(mod == 0);
5075
5076 error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len);
5077 if (error)
5078 goto done;
5079 }
5080
49f693fa 5081 do_fx = 0;
ad68fd19
CH
5082 nblks = len * mp->m_sb.sb_rextsize;
5083 qfield = XFS_TRANS_DQ_RTBCOUNT;
5084 } else {
5085 do_fx = 1;
5086 nblks = del->br_blockcount;
5087 qfield = XFS_TRANS_DQ_BCOUNT;
5088 }
5089
5090 del_endblock = del->br_startblock + del->br_blockcount;
5091 if (cur) {
70a93110 5092 error = xfs_bmbt_lookup_eq(cur, &got, &i);
ad68fd19
CH
5093 if (error)
5094 goto done;
fbb4fa7f
DW
5095 if (XFS_IS_CORRUPT(mp, i != 1)) {
5096 error = -EFSCORRUPTED;
5097 goto done;
5098 }
49f693fa 5099 }
85aec44f 5100
b039ac79
CH
5101 if (got.br_startoff == del->br_startoff)
5102 state |= BMAP_LEFT_FILLING;
5103 if (got_endoff == del_endoff)
5104 state |= BMAP_RIGHT_FILLING;
5105
5106 switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) {
5107 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
49f693fa
DC
5108 /*
5109 * Matches the whole extent. Delete the entry.
5110 */
cf455a62 5111 xfs_iext_remove(ip, icur, state);
9788e059 5112 xfs_iext_prev(ifp, icur);
87c472b7
CH
5113 ifp->if_nextents--;
5114
49f693fa
DC
5115 flags |= XFS_ILOG_CORE;
5116 if (!cur) {
5117 flags |= xfs_ilog_fext(whichfork);
5118 break;
2bd0ea18 5119 }
49f693fa
DC
5120 if ((error = xfs_btree_delete(cur, &i)))
5121 goto done;
fbb4fa7f
DW
5122 if (XFS_IS_CORRUPT(mp, i != 1)) {
5123 error = -EFSCORRUPTED;
5124 goto done;
5125 }
49f693fa 5126 break;
b039ac79 5127 case BMAP_LEFT_FILLING:
2bd0ea18 5128 /*
49f693fa 5129 * Deleting the first part of the extent.
2bd0ea18 5130 */
70bf7533
CH
5131 got.br_startoff = del_endoff;
5132 got.br_startblock = del_endblock;
5133 got.br_blockcount -= del->br_blockcount;
9788e059 5134 xfs_iext_update_extent(ip, state, icur, &got);
49f693fa
DC
5135 if (!cur) {
5136 flags |= xfs_ilog_fext(whichfork);
5137 break;
5138 }
d0e5f1ff 5139 error = xfs_bmbt_update(cur, &got);
70bf7533 5140 if (error)
49f693fa
DC
5141 goto done;
5142 break;
b039ac79 5143 case BMAP_RIGHT_FILLING:
2bd0ea18 5144 /*
49f693fa 5145 * Deleting the last part of the extent.
2bd0ea18 5146 */
70bf7533 5147 got.br_blockcount -= del->br_blockcount;
9788e059 5148 xfs_iext_update_extent(ip, state, icur, &got);
49f693fa
DC
5149 if (!cur) {
5150 flags |= xfs_ilog_fext(whichfork);
5151 break;
5152 }
d0e5f1ff 5153 error = xfs_bmbt_update(cur, &got);
70bf7533 5154 if (error)
49f693fa
DC
5155 goto done;
5156 break;
49f693fa
DC
5157 case 0:
5158 /*
5159 * Deleting the middle of the extent.
5160 */
7428ec5b
CB
5161
5162 /*
5163 * For directories, -ENOSPC is returned since a directory entry
5164 * remove operation must not fail due to low extent count
5165 * availability. -ENOSPC will be handled by higher layers of XFS
5166 * by letting the corresponding empty Data/Free blocks to linger
5167 * until a future remove operation. Dabtree blocks would be
5168 * swapped with the last block in the leaf space and then the
5169 * new last block will be unmapped.
45140de8
CB
5170 *
5171 * The above logic also applies to the source directory entry of
5172 * a rename operation.
7428ec5b
CB
5173 */
5174 error = xfs_iext_count_may_overflow(ip, whichfork, 1);
5175 if (error) {
5176 ASSERT(S_ISDIR(VFS_I(ip)->i_mode) &&
5177 whichfork == XFS_DATA_FORK);
5178 error = -ENOSPC;
5179 goto done;
5180 }
5181
70bf7533 5182 old = got;
df926c07 5183
70bf7533 5184 got.br_blockcount = del->br_startoff - got.br_startoff;
9788e059 5185 xfs_iext_update_extent(ip, state, icur, &got);
70bf7533 5186
49f693fa 5187 new.br_startoff = del_endoff;
70bf7533 5188 new.br_blockcount = got_endoff - del_endoff;
49f693fa 5189 new.br_state = got.br_state;
ad68fd19 5190 new.br_startblock = del_endblock;
70bf7533 5191
ad68fd19
CH
5192 flags |= XFS_ILOG_CORE;
5193 if (cur) {
d0e5f1ff 5194 error = xfs_bmbt_update(cur, &got);
ad68fd19
CH
5195 if (error)
5196 goto done;
5197 error = xfs_btree_increment(cur, 0, &i);
5198 if (error)
5199 goto done;
5200 cur->bc_rec.b = new;
5201 error = xfs_btree_insert(cur, &i);
5202 if (error && error != -ENOSPC)
5203 goto done;
5204 /*
5205 * If get no-space back from btree insert, it tried a
5206 * split, and we have a zero block reservation. Fix up
5207 * our state and return the error.
5208 */
5209 if (error == -ENOSPC) {
49f693fa 5210 /*
ad68fd19
CH
5211 * Reset the cursor, don't trust it after any
5212 * insert operation.
49f693fa 5213 */
70a93110 5214 error = xfs_bmbt_lookup_eq(cur, &got, &i);
ad68fd19 5215 if (error)
49f693fa 5216 goto done;
fbb4fa7f
DW
5217 if (XFS_IS_CORRUPT(mp, i != 1)) {
5218 error = -EFSCORRUPTED;
5219 goto done;
5220 }
ad68fd19
CH
5221 /*
5222 * Update the btree record back
5223 * to the original value.
5224 */
d0e5f1ff 5225 error = xfs_bmbt_update(cur, &old);
ad68fd19
CH
5226 if (error)
5227 goto done;
5228 /*
5229 * Reset the extent record back
5230 * to the original value.
5231 */
9788e059 5232 xfs_iext_update_extent(ip, state, icur, &old);
ad68fd19
CH
5233 flags = 0;
5234 error = -ENOSPC;
5235 goto done;
5236 }
fbb4fa7f
DW
5237 if (XFS_IS_CORRUPT(mp, i != 1)) {
5238 error = -EFSCORRUPTED;
5239 goto done;
5240 }
ad68fd19
CH
5241 } else
5242 flags |= xfs_ilog_fext(whichfork);
87c472b7
CH
5243
5244 ifp->if_nextents++;
9788e059 5245 xfs_iext_next(ifp, icur);
26a75f67 5246 xfs_iext_insert(ip, icur, &new, state);
49f693fa 5247 break;
2bd0ea18 5248 }
d7f80320
DW
5249
5250 /* remove reverse mapping */
46d29bb9 5251 xfs_rmap_unmap_extent(tp, ip, whichfork, del);
d7f80320 5252
2bd0ea18 5253 /*
49f693fa 5254 * If we need to, add to list of extents to delete.
2bd0ea18 5255 */
36b16da8 5256 if (do_fx && !(bflags & XFS_BMAPI_REMAP)) {
cfe32f0d 5257 if (xfs_is_reflink_inode(ip) && whichfork == XFS_DATA_FORK) {
5965a482 5258 xfs_refcount_decrease_extent(tp, del);
3a13f959 5259 } else {
21375e5d 5260 __xfs_bmap_add_free(tp, del->br_startblock,
cc5af22a
BF
5261 del->br_blockcount, NULL,
5262 (bflags & XFS_BMAPI_NODISCARD) ||
5263 del->br_state == XFS_EXT_UNWRITTEN);
3a13f959 5264 }
cfe32f0d
DW
5265 }
5266
2bd0ea18 5267 /*
49f693fa 5268 * Adjust inode # blocks in the file.
2bd0ea18 5269 */
49f693fa
DC
5270 if (nblks)
5271 ip->i_d.di_nblocks -= nblks;
2bd0ea18 5272 /*
49f693fa 5273 * Adjust quota data.
2bd0ea18 5274 */
36b16da8 5275 if (qfield && !(bflags & XFS_BMAPI_REMAP))
49f693fa
DC
5276 xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks);
5277
49f693fa
DC
5278done:
5279 *logflagsp = flags;
2bd0ea18
NS
5280 return error;
5281}
5282
5283/*
49f693fa
DC
5284 * Unmap (remove) blocks from a file.
5285 * If nexts is nonzero then the number of extents to remove is limited to
5286 * that value. If not all extents in the block range can be removed then
5287 * *done is set.
2bd0ea18 5288 */
49f693fa 5289int /* error */
3d36acda 5290__xfs_bunmapi(
160ed12f 5291 struct xfs_trans *tp, /* transaction pointer */
49f693fa 5292 struct xfs_inode *ip, /* incore inode */
675b5a20 5293 xfs_fileoff_t start, /* first file offset deleted */
3d36acda 5294 xfs_filblks_t *rlen, /* i/o: amount remaining */
49f693fa 5295 int flags, /* misc flags */
d3c5f3dd 5296 xfs_extnum_t nexts) /* number of extents max */
2bd0ea18 5297{
160ed12f
BF
5298 struct xfs_btree_cur *cur; /* bmap btree cursor */
5299 struct xfs_bmbt_irec del; /* extent being deleted */
49f693fa
DC
5300 int error; /* error return value */
5301 xfs_extnum_t extno; /* extent number in list */
160ed12f 5302 struct xfs_bmbt_irec got; /* current extent record */
e07055b8 5303 struct xfs_ifork *ifp; /* inode fork pointer */
49f693fa 5304 int isrt; /* freeing in rt area */
49f693fa
DC
5305 int logflags; /* transaction logging flags */
5306 xfs_extlen_t mod; /* rt extent offset */
bc73da84 5307 struct xfs_mount *mp = ip->i_mount;
49f693fa
DC
5308 int tmp_logflags; /* partial logging flags */
5309 int wasdel; /* was a delayed alloc extent */
5310 int whichfork; /* data or attribute fork */
5311 xfs_fsblock_t sum;
3d36acda 5312 xfs_filblks_t len = *rlen; /* length to unmap in file */
594956fa 5313 xfs_fileoff_t max_len;
15a8bccc 5314 xfs_agnumber_t prev_agno = NULLAGNUMBER, agno;
675b5a20 5315 xfs_fileoff_t end;
9788e059
CH
5316 struct xfs_iext_cursor icur;
5317 bool done = false;
2bd0ea18 5318
675b5a20 5319 trace_xfs_bunmap(ip, start, len, flags, _RET_IP_);
a2ceac1f 5320
cb8a004a
DW
5321 whichfork = xfs_bmapi_whichfork(flags);
5322 ASSERT(whichfork != XFS_COW_FORK);
a2ceac1f 5323 ifp = XFS_IFORK_PTR(ip, whichfork);
d967a68d 5324 if (XFS_IS_CORRUPT(mp, !xfs_ifork_has_extents(ifp)))
12b53197 5325 return -EFSCORRUPTED;
49f693fa 5326 if (XFS_FORCED_SHUTDOWN(mp))
12b53197 5327 return -EIO;
56b2de80 5328
ff105f75 5329 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
49f693fa
DC
5330 ASSERT(len > 0);
5331 ASSERT(nexts >= 0);
56b2de80 5332
594956fa
DW
5333 /*
5334 * Guesstimate how many blocks we can unmap without running the risk of
5335 * blowing out the transaction with a mix of EFIs and reflink
5336 * adjustments.
5337 */
db2cf1d2 5338 if (tp && xfs_is_reflink_inode(ip) && whichfork == XFS_DATA_FORK)
594956fa
DW
5339 max_len = min(len, xfs_refcount_max_unmap(tp->t_log_res));
5340 else
5341 max_len = len;
5342
49f693fa
DC
5343 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5344 (error = xfs_iread_extents(tp, ip, whichfork)))
5345 return error;
d09d4e5f 5346 if (xfs_iext_count(ifp) == 0) {
3d36acda 5347 *rlen = 0;
49f693fa 5348 return 0;
56b2de80 5349 }
79896434 5350 XFS_STATS_INC(mp, xs_blk_unmap);
49f693fa 5351 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
d6fbe8fe 5352 end = start + len;
a2ceac1f 5353
9788e059 5354 if (!xfs_iext_lookup_extent_before(ip, ifp, &end, &icur, &got)) {
d6fbe8fe
CH
5355 *rlen = 0;
5356 return 0;
49f693fa 5357 }
d6fbe8fe 5358 end--;
246eb90a 5359
49f693fa
DC
5360 logflags = 0;
5361 if (ifp->if_flags & XFS_IFBROOT) {
d967a68d 5362 ASSERT(ifp->if_format == XFS_DINODE_FMT_BTREE);
49f693fa 5363 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
116c6a88 5364 cur->bc_ino.flags = 0;
49f693fa
DC
5365 } else
5366 cur = NULL;
a2ceac1f 5367
49f693fa 5368 if (isrt) {
a2ceac1f 5369 /*
49f693fa 5370 * Synchronize by locking the bitmap inode.
a2ceac1f 5371 */
a62ed6d3 5372 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL|XFS_ILOCK_RTBITMAP);
49f693fa 5373 xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
a62ed6d3
DW
5374 xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL|XFS_ILOCK_RTSUM);
5375 xfs_trans_ijoin(tp, mp->m_rsumip, XFS_ILOCK_EXCL);
49f693fa 5376 }
a2ceac1f 5377
49f693fa 5378 extno = 0;
9788e059 5379 while (end != (xfs_fileoff_t)-1 && end >= start &&
594956fa 5380 (nexts == 0 || extno < nexts) && max_len > 0) {
a2ceac1f 5381 /*
675b5a20 5382 * Is the found extent after a hole in which end lives?
49f693fa 5383 * Just back up to the previous extent, if so.
a2ceac1f 5384 */
9788e059
CH
5385 if (got.br_startoff > end &&
5386 !xfs_iext_prev_extent(ifp, &icur, &got)) {
5387 done = true;
5388 break;
a2ceac1f 5389 }
49f693fa
DC
5390 /*
5391 * Is the last block of this extent before the range
5392 * we're supposed to delete? If so, we're done.
5393 */
675b5a20 5394 end = XFS_FILEOFF_MIN(end,
49f693fa 5395 got.br_startoff + got.br_blockcount - 1);
675b5a20 5396 if (end < start)
49f693fa
DC
5397 break;
5398 /*
5399 * Then deal with the (possibly delayed) allocated space
5400 * we found.
5401 */
49f693fa
DC
5402 del = got;
5403 wasdel = isnullstartblock(del.br_startblock);
15a8bccc
CH
5404
5405 /*
5406 * Make sure we don't touch multiple AGF headers out of order
5407 * in a single transaction, as that could cause AB-BA deadlocks.
5408 */
0b89c0a7 5409 if (!wasdel && !isrt) {
15a8bccc
CH
5410 agno = XFS_FSB_TO_AGNO(mp, del.br_startblock);
5411 if (prev_agno != NULLAGNUMBER && prev_agno > agno)
5412 break;
5413 prev_agno = agno;
5414 }
49f693fa
DC
5415 if (got.br_startoff < start) {
5416 del.br_startoff = start;
5417 del.br_blockcount -= start - got.br_startoff;
5418 if (!wasdel)
5419 del.br_startblock += start - got.br_startoff;
5420 }
675b5a20
CH
5421 if (del.br_startoff + del.br_blockcount > end + 1)
5422 del.br_blockcount = end + 1 - del.br_startoff;
594956fa
DW
5423
5424 /* How much can we safely unmap? */
5425 if (max_len < del.br_blockcount) {
5426 del.br_startoff += del.br_blockcount - max_len;
5427 if (!wasdel)
5428 del.br_startblock += del.br_blockcount - max_len;
5429 del.br_blockcount = max_len;
5430 }
5431
5a595099
DC
5432 if (!isrt)
5433 goto delete;
5434
49f693fa 5435 sum = del.br_startblock + del.br_blockcount;
5a595099
DC
5436 div_u64_rem(sum, mp->m_sb.sb_rextsize, &mod);
5437 if (mod) {
49f693fa
DC
5438 /*
5439 * Realtime extent not lined up at the end.
5440 * The extent could have been split into written
5441 * and unwritten pieces, or we could just be
5442 * unmapping part of it. But we can't really
5443 * get rid of part of a realtime extent.
5444 */
b7fdeb4d 5445 if (del.br_state == XFS_EXT_UNWRITTEN) {
49f693fa
DC
5446 /*
5447 * This piece is unwritten, or we're not
5448 * using unwritten extents. Skip over it.
5449 */
675b5a20
CH
5450 ASSERT(end >= mod);
5451 end -= mod > del.br_blockcount ?
49f693fa 5452 del.br_blockcount : mod;
9788e059
CH
5453 if (end < got.br_startoff &&
5454 !xfs_iext_prev_extent(ifp, &icur, &got)) {
5455 done = true;
5456 break;
49f693fa
DC
5457 }
5458 continue;
5459 }
5460 /*
5461 * It's written, turn it unwritten.
5462 * This is better than zeroing it.
5463 */
5464 ASSERT(del.br_state == XFS_EXT_NORM);
0268fdc3 5465 ASSERT(tp->t_blk_res > 0);
49f693fa
DC
5466 /*
5467 * If this spans a realtime extent boundary,
5468 * chop it back to the start of the one we end at.
5469 */
5470 if (del.br_blockcount > mod) {
5471 del.br_startoff += del.br_blockcount - mod;
5472 del.br_startblock += del.br_blockcount - mod;
5473 del.br_blockcount = mod;
5474 }
5475 del.br_state = XFS_EXT_UNWRITTEN;
5476 error = xfs_bmap_add_extent_unwritten_real(tp, ip,
9788e059 5477 whichfork, &icur, &cur, &del,
64e8b4a7 5478 &logflags);
49f693fa
DC
5479 if (error)
5480 goto error0;
5481 goto nodelete;
a2ceac1f 5482 }
5a595099
DC
5483 div_u64_rem(del.br_startblock, mp->m_sb.sb_rextsize, &mod);
5484 if (mod) {
f8446e51
OS
5485 xfs_extlen_t off = mp->m_sb.sb_rextsize - mod;
5486
49f693fa
DC
5487 /*
5488 * Realtime extent is lined up at the end but not
5489 * at the front. We'll get rid of full extents if
5490 * we can.
5491 */
f8446e51
OS
5492 if (del.br_blockcount > off) {
5493 del.br_blockcount -= off;
5494 del.br_startoff += off;
5495 del.br_startblock += off;
b7fdeb4d
CH
5496 } else if (del.br_startoff == start &&
5497 (del.br_state == XFS_EXT_UNWRITTEN ||
5498 tp->t_blk_res == 0)) {
49f693fa
DC
5499 /*
5500 * Can't make it unwritten. There isn't
5501 * a full extent here so just skip it.
5502 */
675b5a20
CH
5503 ASSERT(end >= del.br_blockcount);
5504 end -= del.br_blockcount;
9788e059
CH
5505 if (got.br_startoff > end &&
5506 !xfs_iext_prev_extent(ifp, &icur, &got)) {
5507 done = true;
5508 break;
5509 }
49f693fa
DC
5510 continue;
5511 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
246eb90a 5512 struct xfs_bmbt_irec prev;
f8446e51 5513 xfs_fileoff_t unwrite_start;
246eb90a 5514
49f693fa
DC
5515 /*
5516 * This one is already unwritten.
5517 * It must have a written left neighbor.
5518 * Unwrite the killed part of that one and
5519 * try again.
5520 */
9788e059
CH
5521 if (!xfs_iext_prev_extent(ifp, &icur, &prev))
5522 ASSERT(0);
49f693fa
DC
5523 ASSERT(prev.br_state == XFS_EXT_NORM);
5524 ASSERT(!isnullstartblock(prev.br_startblock));
5525 ASSERT(del.br_startblock ==
5526 prev.br_startblock + prev.br_blockcount);
f8446e51
OS
5527 unwrite_start = max3(start,
5528 del.br_startoff - mod,
5529 prev.br_startoff);
5530 mod = unwrite_start - prev.br_startoff;
5531 prev.br_startoff = unwrite_start;
5532 prev.br_startblock += mod;
5533 prev.br_blockcount -= mod;
49f693fa 5534 prev.br_state = XFS_EXT_UNWRITTEN;
49f693fa 5535 error = xfs_bmap_add_extent_unwritten_real(tp,
9788e059 5536 ip, whichfork, &icur, &cur,
64e8b4a7 5537 &prev, &logflags);
49f693fa
DC
5538 if (error)
5539 goto error0;
5540 goto nodelete;
5541 } else {
5542 ASSERT(del.br_state == XFS_EXT_NORM);
5543 del.br_state = XFS_EXT_UNWRITTEN;
5544 error = xfs_bmap_add_extent_unwritten_real(tp,
9788e059 5545 ip, whichfork, &icur, &cur,
64e8b4a7 5546 &del, &logflags);
49f693fa
DC
5547 if (error)
5548 goto error0;
5549 goto nodelete;
5550 }
5551 }
a2ceac1f 5552
5a595099 5553delete:
8359e0b9 5554 if (wasdel) {
9788e059 5555 error = xfs_bmap_del_extent_delay(ip, whichfork, &icur,
ad68fd19
CH
5556 &got, &del);
5557 } else {
52f6ed9d
BF
5558 error = xfs_bmap_del_extent_real(ip, tp, &icur, cur,
5559 &del, &tmp_logflags, whichfork,
ad68fd19
CH
5560 flags);
5561 logflags |= tmp_logflags;
e9fa15aa 5562 }
8359e0b9 5563
49f693fa
DC
5564 if (error)
5565 goto error0;
8359e0b9 5566
594956fa 5567 max_len -= del.br_blockcount;
675b5a20 5568 end = del.br_startoff - 1;
49f693fa 5569nodelete:
a2ceac1f 5570 /*
49f693fa 5571 * If not done go on to the next (previous) record.
a2ceac1f 5572 */
675b5a20 5573 if (end != (xfs_fileoff_t)-1 && end >= start) {
9788e059
CH
5574 if (!xfs_iext_get_extent(ifp, &icur, &got) ||
5575 (got.br_startoff > end &&
5576 !xfs_iext_prev_extent(ifp, &icur, &got))) {
5577 done = true;
5578 break;
49f693fa
DC
5579 }
5580 extno++;
a2ceac1f 5581 }
a2ceac1f 5582 }
9788e059 5583 if (done || end == (xfs_fileoff_t)-1 || end < start)
3d36acda
DW
5584 *rlen = 0;
5585 else
675b5a20 5586 *rlen = end - start + 1;
56b2de80 5587
49f693fa
DC
5588 /*
5589 * Convert to a btree if necessary.
5590 */
5591 if (xfs_bmap_needs_btree(ip, whichfork)) {
5592 ASSERT(cur == NULL);
f7253505
BF
5593 error = xfs_bmap_extents_to_btree(tp, ip, &cur, 0,
5594 &tmp_logflags, whichfork);
49f693fa 5595 logflags |= tmp_logflags;
939ebc1a
CH
5596 } else {
5597 error = xfs_bmap_btree_to_extents(tp, ip, cur, &logflags,
49f693fa 5598 whichfork);
56b2de80 5599 }
939ebc1a 5600
49f693fa
DC
5601error0:
5602 /*
5603 * Log everything. Do this after conversion, there's no point in
5604 * logging the extent records if we've converted to btree format.
5605 */
5606 if ((logflags & xfs_ilog_fext(whichfork)) &&
d967a68d 5607 ifp->if_format != XFS_DINODE_FMT_EXTENTS)
49f693fa
DC
5608 logflags &= ~xfs_ilog_fext(whichfork);
5609 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
d967a68d 5610 ifp->if_format != XFS_DINODE_FMT_BTREE)
49f693fa
DC
5611 logflags &= ~xfs_ilog_fbroot(whichfork);
5612 /*
5613 * Log inode even in the error case, if the transaction
5614 * is dirty we'll need to shut down the filesystem.
5615 */
5616 if (logflags)
5617 xfs_trans_log_inode(tp, ip, logflags);
5618 if (cur) {
f44a348b 5619 if (!error)
116c6a88 5620 cur->bc_ino.allocated = 0;
660265b7 5621 xfs_btree_del_cursor(cur, error);
56b2de80 5622 }
49f693fa 5623 return error;
a2ceac1f 5624}
ff105f75 5625
3d36acda
DW
5626/* Unmap a range of a file. */
5627int
5628xfs_bunmapi(
5629 xfs_trans_t *tp,
5630 struct xfs_inode *ip,
5631 xfs_fileoff_t bno,
5632 xfs_filblks_t len,
5633 int flags,
5634 xfs_extnum_t nexts,
3d36acda
DW
5635 int *done)
5636{
5637 int error;
5638
d3c5f3dd 5639 error = __xfs_bunmapi(tp, ip, bno, &len, flags, nexts);
3d36acda
DW
5640 *done = (len == 0);
5641 return error;
5642}
5643
5a35bf2c
DC
5644/*
5645 * Determine whether an extent shift can be accomplished by a merge with the
5646 * extent that precedes the target hole of the shift.
5647 */
5648STATIC bool
5649xfs_bmse_can_merge(
5650 struct xfs_bmbt_irec *left, /* preceding extent */
5651 struct xfs_bmbt_irec *got, /* current extent to shift */
5652 xfs_fileoff_t shift) /* shift fsb */
5653{
5654 xfs_fileoff_t startoff;
5655
5656 startoff = got->br_startoff - shift;
5657
5658 /*
5659 * The extent, once shifted, must be adjacent in-file and on-disk with
5660 * the preceding extent.
5661 */
5662 if ((left->br_startoff + left->br_blockcount != startoff) ||
5663 (left->br_startblock + left->br_blockcount != got->br_startblock) ||
5664 (left->br_state != got->br_state) ||
5665 (left->br_blockcount + got->br_blockcount > MAXEXTLEN))
5666 return false;
5667
5668 return true;
5669}
5670
5671/*
5672 * A bmap extent shift adjusts the file offset of an extent to fill a preceding
5673 * hole in the file. If an extent shift would result in the extent being fully
5674 * adjacent to the extent that currently precedes the hole, we can merge with
5675 * the preceding extent rather than do the shift.
5676 *
5677 * This function assumes the caller has verified a shift-by-merge is possible
5678 * with the provided extents via xfs_bmse_can_merge().
5679 */
5680STATIC int
5681xfs_bmse_merge(
21375e5d 5682 struct xfs_trans *tp,
5a35bf2c
DC
5683 struct xfs_inode *ip,
5684 int whichfork,
5685 xfs_fileoff_t shift, /* shift fsb */
9788e059 5686 struct xfs_iext_cursor *icur,
2f082827
CH
5687 struct xfs_bmbt_irec *got, /* extent to shift */
5688 struct xfs_bmbt_irec *left, /* preceding extent */
5a35bf2c 5689 struct xfs_btree_cur *cur,
21375e5d 5690 int *logflags) /* output */
5a35bf2c 5691{
87c472b7 5692 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
2f082827 5693 struct xfs_bmbt_irec new;
5a35bf2c
DC
5694 xfs_filblks_t blockcount;
5695 int error, i;
19ebedcf 5696 struct xfs_mount *mp = ip->i_mount;
5a35bf2c 5697
2f082827 5698 blockcount = left->br_blockcount + got->br_blockcount;
5a35bf2c
DC
5699
5700 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
5701 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
2f082827 5702 ASSERT(xfs_bmse_can_merge(left, got, shift));
5a35bf2c 5703
2f082827
CH
5704 new = *left;
5705 new.br_blockcount = blockcount;
5a35bf2c
DC
5706
5707 /*
5708 * Update the on-disk extent count, the btree if necessary and log the
5709 * inode.
5710 */
87c472b7 5711 ifp->if_nextents--;
5a35bf2c
DC
5712 *logflags |= XFS_ILOG_CORE;
5713 if (!cur) {
5714 *logflags |= XFS_ILOG_DEXT;
2f082827 5715 goto done;
5a35bf2c
DC
5716 }
5717
5718 /* lookup and remove the extent to merge */
70a93110 5719 error = xfs_bmbt_lookup_eq(cur, got, &i);
5a35bf2c
DC
5720 if (error)
5721 return error;
fbb4fa7f
DW
5722 if (XFS_IS_CORRUPT(mp, i != 1))
5723 return -EFSCORRUPTED;
5a35bf2c
DC
5724
5725 error = xfs_btree_delete(cur, &i);
5726 if (error)
5727 return error;
fbb4fa7f
DW
5728 if (XFS_IS_CORRUPT(mp, i != 1))
5729 return -EFSCORRUPTED;
5a35bf2c
DC
5730
5731 /* lookup and update size of the previous extent */
70a93110 5732 error = xfs_bmbt_lookup_eq(cur, left, &i);
5a35bf2c
DC
5733 if (error)
5734 return error;
fbb4fa7f
DW
5735 if (XFS_IS_CORRUPT(mp, i != 1))
5736 return -EFSCORRUPTED;
5a35bf2c 5737
d0e5f1ff 5738 error = xfs_bmbt_update(cur, &new);
2f082827
CH
5739 if (error)
5740 return error;
5741
e102336b
BF
5742 /* change to extent format if required after extent removal */
5743 error = xfs_bmap_btree_to_extents(tp, ip, cur, logflags, whichfork);
5744 if (error)
5745 return error;
5746
2f082827 5747done:
cf455a62 5748 xfs_iext_remove(ip, icur, 0);
87c472b7 5749 xfs_iext_prev(ifp, icur);
9788e059
CH
5750 xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), icur,
5751 &new);
5a35bf2c 5752
479284b7 5753 /* update reverse mapping. rmap functions merge the rmaps for us */
46d29bb9 5754 xfs_rmap_unmap_extent(tp, ip, whichfork, got);
479284b7
DW
5755 memcpy(&new, got, sizeof(new));
5756 new.br_startoff = left->br_startoff + left->br_blockcount;
46d29bb9
DW
5757 xfs_rmap_map_extent(tp, ip, whichfork, &new);
5758 return 0;
5a35bf2c
DC
5759}
5760
364937e2
CH
5761static int
5762xfs_bmap_shift_update_extent(
21375e5d 5763 struct xfs_trans *tp,
364937e2
CH
5764 struct xfs_inode *ip,
5765 int whichfork,
9788e059 5766 struct xfs_iext_cursor *icur,
364937e2
CH
5767 struct xfs_bmbt_irec *got,
5768 struct xfs_btree_cur *cur,
5769 int *logflags,
364937e2 5770 xfs_fileoff_t startoff)
5a35bf2c 5771{
364937e2 5772 struct xfs_mount *mp = ip->i_mount;
f36ccac2 5773 struct xfs_bmbt_irec prev = *got;
364937e2 5774 int error, i;
2f082827 5775
5a35bf2c 5776 *logflags |= XFS_ILOG_CORE;
2f082827 5777
f36ccac2 5778 got->br_startoff = startoff;
2f082827
CH
5779
5780 if (cur) {
f36ccac2 5781 error = xfs_bmbt_lookup_eq(cur, &prev, &i);
2f082827
CH
5782 if (error)
5783 return error;
fbb4fa7f
DW
5784 if (XFS_IS_CORRUPT(mp, i != 1))
5785 return -EFSCORRUPTED;
2f082827 5786
f36ccac2 5787 error = xfs_bmbt_update(cur, got);
2f082827
CH
5788 if (error)
5789 return error;
5790 } else {
5a35bf2c 5791 *logflags |= XFS_ILOG_DEXT;
5a35bf2c
DC
5792 }
5793
9788e059
CH
5794 xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), icur,
5795 got);
d7f80320 5796
d7f80320 5797 /* update reverse mapping */
46d29bb9
DW
5798 xfs_rmap_unmap_extent(tp, ip, whichfork, &prev);
5799 xfs_rmap_map_extent(tp, ip, whichfork, got);
5800 return 0;
5a35bf2c
DC
5801}
5802
ff105f75 5803int
a9f5d25e 5804xfs_bmap_collapse_extents(
ff105f75
DC
5805 struct xfs_trans *tp,
5806 struct xfs_inode *ip,
19ebedcf 5807 xfs_fileoff_t *next_fsb,
ff105f75 5808 xfs_fileoff_t offset_shift_fsb,
a397f27d 5809 bool *done)
ff105f75 5810{
a9f5d25e
CH
5811 int whichfork = XFS_DATA_FORK;
5812 struct xfs_mount *mp = ip->i_mount;
5813 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
5814 struct xfs_btree_cur *cur = NULL;
364937e2 5815 struct xfs_bmbt_irec got, prev;
9788e059 5816 struct xfs_iext_cursor icur;
364937e2 5817 xfs_fileoff_t new_startoff;
a9f5d25e
CH
5818 int error = 0;
5819 int logflags = 0;
ff105f75 5820
d967a68d 5821 if (XFS_IS_CORRUPT(mp, !xfs_ifork_has_extents(ifp)) ||
bc73da84 5822 XFS_TEST_ERROR(false, mp, XFS_ERRTAG_BMAPIFORMAT)) {
12b53197 5823 return -EFSCORRUPTED;
ff105f75
DC
5824 }
5825
5826 if (XFS_FORCED_SHUTDOWN(mp))
12b53197 5827 return -EIO;
ff105f75 5828
a9f5d25e 5829 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL));
ff105f75 5830
ff105f75 5831 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
ff105f75
DC
5832 error = xfs_iread_extents(tp, ip, whichfork);
5833 if (error)
5834 return error;
5835 }
5836
ff105f75
DC
5837 if (ifp->if_flags & XFS_IFBROOT) {
5838 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
116c6a88 5839 cur->bc_ino.flags = 0;
5a35bf2c
DC
5840 }
5841
9788e059 5842 if (!xfs_iext_lookup_extent(ip, ifp, *next_fsb, &icur, &got)) {
a9f5d25e
CH
5843 *done = true;
5844 goto del_cursor;
5845 }
fbb4fa7f
DW
5846 if (XFS_IS_CORRUPT(mp, isnullstartblock(got.br_startblock))) {
5847 error = -EFSCORRUPTED;
5848 goto del_cursor;
5849 }
a9f5d25e 5850
364937e2 5851 new_startoff = got.br_startoff - offset_shift_fsb;
9788e059 5852 if (xfs_iext_peek_prev_extent(ifp, &icur, &prev)) {
364937e2
CH
5853 if (new_startoff < prev.br_startoff + prev.br_blockcount) {
5854 error = -EINVAL;
5855 goto del_cursor;
5856 }
5857
364937e2 5858 if (xfs_bmse_can_merge(&prev, &got, offset_shift_fsb)) {
21375e5d
BF
5859 error = xfs_bmse_merge(tp, ip, whichfork,
5860 offset_shift_fsb, &icur, &got, &prev,
5861 cur, &logflags);
364937e2
CH
5862 if (error)
5863 goto del_cursor;
5864 goto done;
5865 }
5866 } else {
5867 if (got.br_startoff < offset_shift_fsb) {
5868 error = -EINVAL;
5869 goto del_cursor;
5870 }
5871 }
5872
21375e5d
BF
5873 error = xfs_bmap_shift_update_extent(tp, ip, whichfork, &icur, &got,
5874 cur, &logflags, new_startoff);
a9f5d25e
CH
5875 if (error)
5876 goto del_cursor;
bac20498 5877
c162e319 5878done:
9788e059
CH
5879 if (!xfs_iext_next_extent(ifp, &icur, &got)) {
5880 *done = true;
5881 goto del_cursor;
a9f5d25e 5882 }
a9f5d25e 5883
364937e2 5884 *next_fsb = got.br_startoff;
a9f5d25e
CH
5885del_cursor:
5886 if (cur)
660265b7 5887 xfs_btree_del_cursor(cur, error);
a9f5d25e
CH
5888 if (logflags)
5889 xfs_trans_log_inode(tp, ip, logflags);
a9f5d25e
CH
5890 return error;
5891}
5892
5b501597
DW
5893/* Make sure we won't be right-shifting an extent past the maximum bound. */
5894int
5895xfs_bmap_can_insert_extents(
5896 struct xfs_inode *ip,
5897 xfs_fileoff_t off,
5898 xfs_fileoff_t shift)
5899{
5900 struct xfs_bmbt_irec got;
5901 int is_empty;
5902 int error = 0;
5903
5904 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
5905
5906 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
5907 return -EIO;
5908
5909 xfs_ilock(ip, XFS_ILOCK_EXCL);
5910 error = xfs_bmap_last_extent(NULL, ip, XFS_DATA_FORK, &got, &is_empty);
5911 if (!error && !is_empty && got.br_startoff >= off &&
5912 ((got.br_startoff + shift) & BMBT_STARTOFF_MASK) < got.br_startoff)
5913 error = -EINVAL;
5914 xfs_iunlock(ip, XFS_ILOCK_EXCL);
5915
5916 return error;
5917}
5918
a9f5d25e
CH
5919int
5920xfs_bmap_insert_extents(
5921 struct xfs_trans *tp,
5922 struct xfs_inode *ip,
5923 xfs_fileoff_t *next_fsb,
5924 xfs_fileoff_t offset_shift_fsb,
5925 bool *done,
a397f27d 5926 xfs_fileoff_t stop_fsb)
a9f5d25e
CH
5927{
5928 int whichfork = XFS_DATA_FORK;
5929 struct xfs_mount *mp = ip->i_mount;
5930 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
5931 struct xfs_btree_cur *cur = NULL;
bd80a804 5932 struct xfs_bmbt_irec got, next;
9788e059 5933 struct xfs_iext_cursor icur;
364937e2 5934 xfs_fileoff_t new_startoff;
a9f5d25e
CH
5935 int error = 0;
5936 int logflags = 0;
5937
d967a68d 5938 if (XFS_IS_CORRUPT(mp, !xfs_ifork_has_extents(ifp)) ||
bc73da84 5939 XFS_TEST_ERROR(false, mp, XFS_ERRTAG_BMAPIFORMAT)) {
a9f5d25e
CH
5940 return -EFSCORRUPTED;
5941 }
5942
5943 if (XFS_FORCED_SHUTDOWN(mp))
5944 return -EIO;
5945
5946 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL));
5947
5948 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5949 error = xfs_iread_extents(tp, ip, whichfork);
5950 if (error)
5951 return error;
5952 }
5953
5954 if (ifp->if_flags & XFS_IFBROOT) {
5955 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
116c6a88 5956 cur->bc_ino.flags = 0;
a9f5d25e
CH
5957 }
5958
19ebedcf 5959 if (*next_fsb == NULLFSBLOCK) {
9788e059
CH
5960 xfs_iext_last(ifp, &icur);
5961 if (!xfs_iext_get_extent(ifp, &icur, &got) ||
bd80a804 5962 stop_fsb > got.br_startoff) {
a9f5d25e 5963 *done = true;
19ebedcf
DC
5964 goto del_cursor;
5965 }
b6ad780b 5966 } else {
9788e059 5967 if (!xfs_iext_lookup_extent(ip, ifp, *next_fsb, &icur, &got)) {
a9f5d25e 5968 *done = true;
b6ad780b
CH
5969 goto del_cursor;
5970 }
19ebedcf 5971 }
fbb4fa7f
DW
5972 if (XFS_IS_CORRUPT(mp, isnullstartblock(got.br_startblock))) {
5973 error = -EFSCORRUPTED;
5974 goto del_cursor;
5975 }
19ebedcf 5976
e4d719e1 5977 if (XFS_IS_CORRUPT(mp, stop_fsb > got.br_startoff)) {
88afc9cc 5978 error = -EFSCORRUPTED;
a9f5d25e 5979 goto del_cursor;
19ebedcf
DC
5980 }
5981
364937e2 5982 new_startoff = got.br_startoff + offset_shift_fsb;
9788e059 5983 if (xfs_iext_peek_next_extent(ifp, &icur, &next)) {
364937e2
CH
5984 if (new_startoff + got.br_blockcount > next.br_startoff) {
5985 error = -EINVAL;
5986 goto del_cursor;
5987 }
5988
5989 /*
5990 * Unlike a left shift (which involves a hole punch), a right
5991 * shift does not modify extent neighbors in any way. We should
5992 * never find mergeable extents in this scenario. Check anyways
5993 * and warn if we encounter two extents that could be one.
5994 */
5995 if (xfs_bmse_can_merge(&got, &next, offset_shift_fsb))
5996 WARN_ON_ONCE(1);
5997 }
5998
21375e5d
BF
5999 error = xfs_bmap_shift_update_extent(tp, ip, whichfork, &icur, &got,
6000 cur, &logflags, new_startoff);
6835c363
CH
6001 if (error)
6002 goto del_cursor;
bd80a804 6003
9788e059 6004 if (!xfs_iext_prev_extent(ifp, &icur, &got) ||
bd80a804 6005 stop_fsb >= got.br_startoff + got.br_blockcount) {
a9f5d25e 6006 *done = true;
6835c363 6007 goto del_cursor;
ff105f75
DC
6008 }
6009
6835c363 6010 *next_fsb = got.br_startoff;
ff105f75
DC
6011del_cursor:
6012 if (cur)
660265b7 6013 xfs_btree_del_cursor(cur, error);
5a35bf2c
DC
6014 if (logflags)
6015 xfs_trans_log_inode(tp, ip, logflags);
ff105f75
DC
6016 return error;
6017}
19ebedcf
DC
6018
6019/*
9788e059
CH
6020 * Splits an extent into two extents at split_fsb block such that it is the
6021 * first block of the current_ext. @ext is a target extent to be split.
6022 * @split_fsb is a block where the extents is split. If split_fsb lies in a
6023 * hole or the first block of extents, just return 0.
19ebedcf 6024 */
905a3c99
BF
6025int
6026xfs_bmap_split_extent(
19ebedcf
DC
6027 struct xfs_trans *tp,
6028 struct xfs_inode *ip,
312350cd 6029 xfs_fileoff_t split_fsb)
19ebedcf
DC
6030{
6031 int whichfork = XFS_DATA_FORK;
d967a68d 6032 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
19ebedcf 6033 struct xfs_btree_cur *cur = NULL;
19ebedcf
DC
6034 struct xfs_bmbt_irec got;
6035 struct xfs_bmbt_irec new; /* split extent */
6036 struct xfs_mount *mp = ip->i_mount;
19ebedcf 6037 xfs_fsblock_t gotblkcnt; /* new block count for got */
9788e059 6038 struct xfs_iext_cursor icur;
19ebedcf
DC
6039 int error = 0;
6040 int logflags = 0;
6041 int i = 0;
6042
d967a68d 6043 if (XFS_IS_CORRUPT(mp, !xfs_ifork_has_extents(ifp)) ||
bc73da84 6044 XFS_TEST_ERROR(false, mp, XFS_ERRTAG_BMAPIFORMAT)) {
19ebedcf
DC
6045 return -EFSCORRUPTED;
6046 }
6047
6048 if (XFS_FORCED_SHUTDOWN(mp))
6049 return -EIO;
6050
19ebedcf
DC
6051 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
6052 /* Read in all the extents */
6053 error = xfs_iread_extents(tp, ip, whichfork);
6054 if (error)
6055 return error;
6056 }
6057
6058 /*
455044a6 6059 * If there are not extents, or split_fsb lies in a hole we are done.
19ebedcf 6060 */
9788e059 6061 if (!xfs_iext_lookup_extent(ip, ifp, split_fsb, &icur, &got) ||
455044a6 6062 got.br_startoff >= split_fsb)
19ebedcf
DC
6063 return 0;
6064
6065 gotblkcnt = split_fsb - got.br_startoff;
6066 new.br_startoff = split_fsb;
6067 new.br_startblock = got.br_startblock + gotblkcnt;
6068 new.br_blockcount = got.br_blockcount - gotblkcnt;
6069 new.br_state = got.br_state;
6070
6071 if (ifp->if_flags & XFS_IFBROOT) {
6072 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
116c6a88 6073 cur->bc_ino.flags = 0;
70a93110 6074 error = xfs_bmbt_lookup_eq(cur, &got, &i);
19ebedcf
DC
6075 if (error)
6076 goto del_cursor;
fbb4fa7f
DW
6077 if (XFS_IS_CORRUPT(mp, i != 1)) {
6078 error = -EFSCORRUPTED;
6079 goto del_cursor;
6080 }
19ebedcf
DC
6081 }
6082
19ebedcf 6083 got.br_blockcount = gotblkcnt;
9788e059
CH
6084 xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), &icur,
6085 &got);
19ebedcf
DC
6086
6087 logflags = XFS_ILOG_CORE;
6088 if (cur) {
d0e5f1ff 6089 error = xfs_bmbt_update(cur, &got);
19ebedcf
DC
6090 if (error)
6091 goto del_cursor;
6092 } else
6093 logflags |= XFS_ILOG_DEXT;
6094
6095 /* Add new extent */
9788e059 6096 xfs_iext_next(ifp, &icur);
26a75f67 6097 xfs_iext_insert(ip, &icur, &new, 0);
87c472b7 6098 ifp->if_nextents++;
19ebedcf
DC
6099
6100 if (cur) {
70a93110 6101 error = xfs_bmbt_lookup_eq(cur, &new, &i);
19ebedcf
DC
6102 if (error)
6103 goto del_cursor;
fbb4fa7f
DW
6104 if (XFS_IS_CORRUPT(mp, i != 0)) {
6105 error = -EFSCORRUPTED;
6106 goto del_cursor;
6107 }
19ebedcf
DC
6108 error = xfs_btree_insert(cur, &i);
6109 if (error)
6110 goto del_cursor;
fbb4fa7f
DW
6111 if (XFS_IS_CORRUPT(mp, i != 1)) {
6112 error = -EFSCORRUPTED;
6113 goto del_cursor;
6114 }
19ebedcf
DC
6115 }
6116
6117 /*
6118 * Convert to a btree if necessary.
6119 */
6120 if (xfs_bmap_needs_btree(ip, whichfork)) {
6121 int tmp_logflags; /* partial log flag return val */
6122
6123 ASSERT(cur == NULL);
f7253505
BF
6124 error = xfs_bmap_extents_to_btree(tp, ip, &cur, 0,
6125 &tmp_logflags, whichfork);
19ebedcf
DC
6126 logflags |= tmp_logflags;
6127 }
6128
6129del_cursor:
6130 if (cur) {
116c6a88 6131 cur->bc_ino.allocated = 0;
660265b7 6132 xfs_btree_del_cursor(cur, error);
19ebedcf
DC
6133 }
6134
6135 if (logflags)
6136 xfs_trans_log_inode(tp, ip, logflags);
6137 return error;
6138}
6139
aeb88300
DW
6140/* Deferred mapping is only for real extents in the data fork. */
6141static bool
6142xfs_bmap_is_update_needed(
6143 struct xfs_bmbt_irec *bmap)
6144{
6145 return bmap->br_startblock != HOLESTARTBLOCK &&
6146 bmap->br_startblock != DELAYSTARTBLOCK;
6147}
6148
6149/* Record a bmap intent. */
6150static int
6151__xfs_bmap_add(
21375e5d 6152 struct xfs_trans *tp,
aeb88300
DW
6153 enum xfs_bmap_intent_type type,
6154 struct xfs_inode *ip,
6155 int whichfork,
6156 struct xfs_bmbt_irec *bmap)
6157{
aeb88300
DW
6158 struct xfs_bmap_intent *bi;
6159
21375e5d
BF
6160 trace_xfs_bmap_defer(tp->t_mountp,
6161 XFS_FSB_TO_AGNO(tp->t_mountp, bmap->br_startblock),
aeb88300 6162 type,
21375e5d 6163 XFS_FSB_TO_AGBNO(tp->t_mountp, bmap->br_startblock),
aeb88300
DW
6164 ip->i_ino, whichfork,
6165 bmap->br_startoff,
6166 bmap->br_blockcount,
6167 bmap->br_state);
6168
6cd1e6db 6169 bi = kmem_alloc(sizeof(struct xfs_bmap_intent), KM_NOFS);
aeb88300
DW
6170 INIT_LIST_HEAD(&bi->bi_list);
6171 bi->bi_type = type;
6172 bi->bi_owner = ip;
6173 bi->bi_whichfork = whichfork;
6174 bi->bi_bmap = *bmap;
6175
21375e5d 6176 xfs_defer_add(tp, XFS_DEFER_OPS_TYPE_BMAP, &bi->bi_list);
aeb88300
DW
6177 return 0;
6178}
6179
6180/* Map an extent into a file. */
60a802cc 6181void
aeb88300 6182xfs_bmap_map_extent(
21375e5d 6183 struct xfs_trans *tp,
aeb88300
DW
6184 struct xfs_inode *ip,
6185 struct xfs_bmbt_irec *PREV)
6186{
6187 if (!xfs_bmap_is_update_needed(PREV))
60a802cc 6188 return;
aeb88300 6189
60a802cc 6190 __xfs_bmap_add(tp, XFS_BMAP_MAP, ip, XFS_DATA_FORK, PREV);
aeb88300
DW
6191}
6192
6193/* Unmap an extent out of a file. */
60a802cc 6194void
aeb88300 6195xfs_bmap_unmap_extent(
21375e5d 6196 struct xfs_trans *tp,
aeb88300
DW
6197 struct xfs_inode *ip,
6198 struct xfs_bmbt_irec *PREV)
6199{
6200 if (!xfs_bmap_is_update_needed(PREV))
60a802cc 6201 return;
aeb88300 6202
60a802cc 6203 __xfs_bmap_add(tp, XFS_BMAP_UNMAP, ip, XFS_DATA_FORK, PREV);
aeb88300
DW
6204}
6205
6206/*
6207 * Process one of the deferred bmap operations. We pass back the
6208 * btree cursor to maintain our lock on the bmapbt between calls.
6209 */
6210int
6211xfs_bmap_finish_one(
6212 struct xfs_trans *tp,
aeb88300
DW
6213 struct xfs_inode *ip,
6214 enum xfs_bmap_intent_type type,
6215 int whichfork,
6216 xfs_fileoff_t startoff,
6217 xfs_fsblock_t startblock,
594956fa 6218 xfs_filblks_t *blockcount,
aeb88300
DW
6219 xfs_exntst_t state)
6220{
594956fa 6221 int error = 0;
aeb88300 6222
35f57661 6223 ASSERT(tp->t_firstblock == NULLFSBLOCK);
66d19ae1 6224
aeb88300
DW
6225 trace_xfs_bmap_deferred(tp->t_mountp,
6226 XFS_FSB_TO_AGNO(tp->t_mountp, startblock), type,
6227 XFS_FSB_TO_AGBNO(tp->t_mountp, startblock),
594956fa 6228 ip->i_ino, whichfork, startoff, *blockcount, state);
aeb88300 6229
95855a23 6230 if (WARN_ON_ONCE(whichfork != XFS_DATA_FORK))
aeb88300 6231 return -EFSCORRUPTED;
aeb88300
DW
6232
6233 if (XFS_TEST_ERROR(false, tp->t_mountp,
e2a190dd 6234 XFS_ERRTAG_BMAP_FINISH_ONE))
aeb88300
DW
6235 return -EIO;
6236
6237 switch (type) {
6238 case XFS_BMAP_MAP:
594956fa 6239 error = xfs_bmapi_remap(tp, ip, startoff, *blockcount,
b5d7ff9a 6240 startblock, 0);
594956fa 6241 *blockcount = 0;
aeb88300
DW
6242 break;
6243 case XFS_BMAP_UNMAP:
594956fa 6244 error = __xfs_bunmapi(tp, ip, startoff, blockcount,
d3c5f3dd 6245 XFS_BMAPI_REMAP, 1);
aeb88300
DW
6246 break;
6247 default:
6248 ASSERT(0);
6249 error = -EFSCORRUPTED;
6250 }
6251
6252 return error;
6253}
0cf6a3a9
DW
6254
6255/* Check that an inode's extent does not have invalid flags or bad ranges. */
6256xfs_failaddr_t
6257xfs_bmap_validate_extent(
6258 struct xfs_inode *ip,
6259 int whichfork,
6260 struct xfs_bmbt_irec *irec)
6261{
6262 struct xfs_mount *mp = ip->i_mount;
0cf6a3a9 6263
7626c690 6264 if (!xfs_verify_fileext(mp, irec->br_startoff, irec->br_blockcount))
92415d01
DW
6265 return __this_address;
6266
23e306ae
DW
6267 if (XFS_IS_REALTIME_INODE(ip) && whichfork == XFS_DATA_FORK) {
6268 if (!xfs_verify_rtext(mp, irec->br_startblock,
6269 irec->br_blockcount))
0cf6a3a9
DW
6270 return __this_address;
6271 } else {
f28f7e4a
DW
6272 if (!xfs_verify_fsbext(mp, irec->br_startblock,
6273 irec->br_blockcount))
0cf6a3a9
DW
6274 return __this_address;
6275 }
b7fdeb4d
CH
6276 if (irec->br_state != XFS_EXT_NORM && whichfork != XFS_DATA_FORK)
6277 return __this_address;
0cf6a3a9
DW
6278 return NULL;
6279}