blob: 7205268b30bc54b488bf513b1a2b6bb737769d64 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +11007#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +11009#include "xfs_format.h"
10#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110012#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_sb.h"
Dave Chinnerf5ea1102013-04-24 18:58:02 +100014#include "xfs_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100015#include "xfs_defer.h"
Dave Chinner57062782013-10-15 09:17:51 +110016#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110017#include "xfs_da_btree.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100018#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_btree.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_extfree_item.h"
24#include "xfs_alloc.h"
25#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100026#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110027#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_rtalloc.h"
Darrick J. Wonge9e899a2017-10-31 12:04:49 -070029#include "xfs_errortag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_quota.h"
32#include "xfs_trans_space.h"
33#include "xfs_buf_item.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000034#include "xfs_trace.h"
Dave Chinner19de7352013-04-03 16:11:18 +110035#include "xfs_symlink.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110036#include "xfs_attr_leaf.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110037#include "xfs_filestream.h"
Darrick J. Wong340785c2016-08-03 11:33:42 +100038#include "xfs_rmap.h"
Darrick J. Wong3fd129b2016-09-19 10:30:52 +100039#include "xfs_ag_resv.h"
Darrick J. Wong62aab202016-10-03 09:11:23 -070040#include "xfs_refcount.h"
Brian Foster974ae922016-11-28 14:57:42 +110041#include "xfs_icache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044kmem_zone_t *xfs_bmap_free_item_zone;
45
46/*
Dave Chinner9e5987a72013-02-25 12:31:26 +110047 * Miscellaneous helper functions
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
Dave Chinner9e5987a72013-02-25 12:31:26 +110051 * Compute and fill in the value of the maximum depth of a bmap btree
52 * in this filesystem. Done once, during mount.
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 */
Dave Chinner9e5987a72013-02-25 12:31:26 +110054void
55xfs_bmap_compute_maxlevels(
56 xfs_mount_t *mp, /* file system mount structure */
57 int whichfork) /* data or attr fork */
58{
59 int level; /* btree level */
60 uint maxblocks; /* max blocks at this level */
61 uint maxleafents; /* max leaf entries possible */
62 int maxrootrecs; /* max records in root block */
63 int minleafrecs; /* min records in leaf block */
64 int minnoderecs; /* min records in node block */
65 int sz; /* root block size */
66
67 /*
68 * The maximum number of extents in a file, hence the maximum
69 * number of leaf entries, is controlled by the type of di_nextents
70 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
71 * (a signed 16-bit number, xfs_aextnum_t).
72 *
73 * Note that we can no longer assume that if we are in ATTR1 that
74 * the fork offset of all the inodes will be
75 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
76 * with ATTR2 and then mounted back with ATTR1, keeping the
77 * di_forkoff's fixed but probably at various positions. Therefore,
78 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
79 * of a minimum size available.
80 */
81 if (whichfork == XFS_DATA_FORK) {
82 maxleafents = MAXEXTNUM;
83 sz = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
84 } else {
85 maxleafents = MAXAEXTNUM;
86 sz = XFS_BMDR_SPACE_CALC(MINABTPTRS);
87 }
Eric Sandeen152d93b2014-04-14 18:58:51 +100088 maxrootrecs = xfs_bmdr_maxrecs(sz, 0);
Dave Chinner9e5987a72013-02-25 12:31:26 +110089 minleafrecs = mp->m_bmap_dmnr[0];
90 minnoderecs = mp->m_bmap_dmnr[1];
91 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
92 for (level = 1; maxblocks > 1; level++) {
93 if (maxblocks <= maxrootrecs)
94 maxblocks = 1;
95 else
96 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
97 }
98 mp->m_bm_maxlevels[whichfork] = level;
99}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100101STATIC int /* error */
102xfs_bmbt_lookup_eq(
103 struct xfs_btree_cur *cur,
Christoph Hellwige16cf9b2017-10-17 14:16:26 -0700104 struct xfs_bmbt_irec *irec,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100105 int *stat) /* success/failure */
106{
Christoph Hellwige16cf9b2017-10-17 14:16:26 -0700107 cur->bc_rec.b = *irec;
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100108 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
109}
110
111STATIC int /* error */
Christoph Hellwigb5cfbc22017-10-17 14:16:27 -0700112xfs_bmbt_lookup_first(
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100113 struct xfs_btree_cur *cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100114 int *stat) /* success/failure */
115{
Christoph Hellwigb5cfbc22017-10-17 14:16:27 -0700116 cur->bc_rec.b.br_startoff = 0;
117 cur->bc_rec.b.br_startblock = 0;
118 cur->bc_rec.b.br_blockcount = 0;
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100119 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
120}
121
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100122/*
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000123 * Check if the inode needs to be converted to btree format.
124 */
125static inline bool xfs_bmap_needs_btree(struct xfs_inode *ip, int whichfork)
126{
Darrick J. Wong60b49842016-10-03 09:11:34 -0700127 return whichfork != XFS_COW_FORK &&
128 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000129 XFS_IFORK_NEXTENTS(ip, whichfork) >
130 XFS_IFORK_MAXEXT(ip, whichfork);
131}
132
133/*
134 * Check if the inode should be converted to extent format.
135 */
136static inline bool xfs_bmap_wants_extents(struct xfs_inode *ip, int whichfork)
137{
Darrick J. Wong60b49842016-10-03 09:11:34 -0700138 return whichfork != XFS_COW_FORK &&
139 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000140 XFS_IFORK_NEXTENTS(ip, whichfork) <=
141 XFS_IFORK_MAXEXT(ip, whichfork);
142}
143
144/*
Christoph Hellwiga67d00a2017-10-17 14:16:26 -0700145 * Update the record referred to by cur to the value given by irec
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100146 * This either works (return 0) or gets an EFSCORRUPTED error.
147 */
148STATIC int
149xfs_bmbt_update(
150 struct xfs_btree_cur *cur,
Christoph Hellwiga67d00a2017-10-17 14:16:26 -0700151 struct xfs_bmbt_irec *irec)
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100152{
153 union xfs_btree_rec rec;
154
Christoph Hellwiga67d00a2017-10-17 14:16:26 -0700155 xfs_bmbt_disk_set_all(&rec.bmbt, irec);
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100156 return xfs_btree_update(cur, &rec);
157}
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
Dave Chinner9e5987a72013-02-25 12:31:26 +1100160 * Compute the worst-case number of indirect blocks that will be used
161 * for ip's delayed extent of length "len".
162 */
163STATIC xfs_filblks_t
164xfs_bmap_worst_indlen(
165 xfs_inode_t *ip, /* incore inode pointer */
166 xfs_filblks_t len) /* delayed extent length */
167{
168 int level; /* btree level number */
169 int maxrecs; /* maximum record count at this level */
170 xfs_mount_t *mp; /* mount structure */
171 xfs_filblks_t rval; /* return value */
172
173 mp = ip->i_mount;
174 maxrecs = mp->m_bmap_dmxr[0];
175 for (level = 0, rval = 0;
176 level < XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK);
177 level++) {
178 len += maxrecs - 1;
179 do_div(len, maxrecs);
180 rval += len;
Darrick J. Wong5e5c9432017-09-18 09:41:17 -0700181 if (len == 1)
182 return rval + XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) -
Dave Chinner9e5987a72013-02-25 12:31:26 +1100183 level - 1;
184 if (level == 0)
185 maxrecs = mp->m_bmap_dmxr[1];
186 }
187 return rval;
188}
189
190/*
191 * Calculate the default attribute fork offset for newly created inodes.
192 */
193uint
194xfs_default_attroffset(
195 struct xfs_inode *ip)
196{
197 struct xfs_mount *mp = ip->i_mount;
198 uint offset;
199
200 if (mp->m_sb.sb_inodesize == 256) {
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100201 offset = XFS_LITINO(mp, ip->i_d.di_version) -
Dave Chinner9e5987a72013-02-25 12:31:26 +1100202 XFS_BMDR_SPACE_CALC(MINABTPTRS);
203 } else {
204 offset = XFS_BMDR_SPACE_CALC(6 * MINABTPTRS);
205 }
206
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100207 ASSERT(offset < XFS_LITINO(mp, ip->i_d.di_version));
Dave Chinner9e5987a72013-02-25 12:31:26 +1100208 return offset;
209}
210
211/*
212 * Helper routine to reset inode di_forkoff field when switching
213 * attribute fork from local to extent format - we reset it where
214 * possible to make space available for inline data fork extents.
215 */
216STATIC void
217xfs_bmap_forkoff_reset(
Dave Chinner9e5987a72013-02-25 12:31:26 +1100218 xfs_inode_t *ip,
219 int whichfork)
220{
221 if (whichfork == XFS_ATTR_FORK &&
222 ip->i_d.di_format != XFS_DINODE_FMT_DEV &&
Dave Chinner9e5987a72013-02-25 12:31:26 +1100223 ip->i_d.di_format != XFS_DINODE_FMT_BTREE) {
224 uint dfl_forkoff = xfs_default_attroffset(ip) >> 3;
225
226 if (dfl_forkoff > ip->i_d.di_forkoff)
227 ip->i_d.di_forkoff = dfl_forkoff;
228 }
229}
230
Dave Chinner9e5987a72013-02-25 12:31:26 +1100231#ifdef DEBUG
232STATIC struct xfs_buf *
233xfs_bmap_get_bp(
234 struct xfs_btree_cur *cur,
235 xfs_fsblock_t bno)
236{
Dave Chinnere6631f82018-05-09 07:49:37 -0700237 struct xfs_log_item *lip;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100238 int i;
239
240 if (!cur)
241 return NULL;
242
243 for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) {
244 if (!cur->bc_bufs[i])
245 break;
246 if (XFS_BUF_ADDR(cur->bc_bufs[i]) == bno)
247 return cur->bc_bufs[i];
248 }
249
250 /* Chase down all the log items to see if the bp is there */
Dave Chinnere6631f82018-05-09 07:49:37 -0700251 list_for_each_entry(lip, &cur->bc_tp->t_items, li_trans) {
252 struct xfs_buf_log_item *bip = (struct xfs_buf_log_item *)lip;
253
Dave Chinner9e5987a72013-02-25 12:31:26 +1100254 if (bip->bli_item.li_type == XFS_LI_BUF &&
255 XFS_BUF_ADDR(bip->bli_buf) == bno)
256 return bip->bli_buf;
257 }
258
259 return NULL;
260}
261
262STATIC void
263xfs_check_block(
264 struct xfs_btree_block *block,
265 xfs_mount_t *mp,
266 int root,
267 short sz)
268{
269 int i, j, dmxr;
270 __be64 *pp, *thispa; /* pointer to block address */
271 xfs_bmbt_key_t *prevp, *keyp;
272
273 ASSERT(be16_to_cpu(block->bb_level) > 0);
274
275 prevp = NULL;
276 for( i = 1; i <= xfs_btree_get_numrecs(block); i++) {
277 dmxr = mp->m_bmap_dmxr[0];
278 keyp = XFS_BMBT_KEY_ADDR(mp, block, i);
279
280 if (prevp) {
281 ASSERT(be64_to_cpu(prevp->br_startoff) <
282 be64_to_cpu(keyp->br_startoff));
283 }
284 prevp = keyp;
285
286 /*
287 * Compare the block numbers to see if there are dups.
288 */
289 if (root)
290 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, i, sz);
291 else
292 pp = XFS_BMBT_PTR_ADDR(mp, block, i, dmxr);
293
294 for (j = i+1; j <= be16_to_cpu(block->bb_numrecs); j++) {
295 if (root)
296 thispa = XFS_BMAP_BROOT_PTR_ADDR(mp, block, j, sz);
297 else
298 thispa = XFS_BMBT_PTR_ADDR(mp, block, j, dmxr);
299 if (*thispa == *pp) {
300 xfs_warn(mp, "%s: thispa(%d) == pp(%d) %Ld",
301 __func__, j, i,
302 (unsigned long long)be64_to_cpu(*thispa));
Darrick J. Wongcec57252018-05-04 15:31:21 -0700303 xfs_err(mp, "%s: ptrs are equal in node\n",
Dave Chinner9e5987a72013-02-25 12:31:26 +1100304 __func__);
Darrick J. Wongcec57252018-05-04 15:31:21 -0700305 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100306 }
307 }
308 }
309}
310
311/*
312 * Check that the extents for the inode ip are in the right order in all
Dave Chinnere3543812016-01-08 11:28:49 +1100313 * btree leaves. THis becomes prohibitively expensive for large extent count
314 * files, so don't bother with inodes that have more than 10,000 extents in
315 * them. The btree record ordering checks will still be done, so for such large
316 * bmapbt constructs that is going to catch most corruptions.
Dave Chinner9e5987a72013-02-25 12:31:26 +1100317 */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100318STATIC void
319xfs_bmap_check_leaf_extents(
320 xfs_btree_cur_t *cur, /* btree cursor or null */
321 xfs_inode_t *ip, /* incore inode pointer */
322 int whichfork) /* data or attr fork */
323{
324 struct xfs_btree_block *block; /* current btree block */
325 xfs_fsblock_t bno; /* block # of "block" */
326 xfs_buf_t *bp; /* buffer for "block" */
327 int error; /* error return value */
328 xfs_extnum_t i=0, j; /* index into the extents list */
329 xfs_ifork_t *ifp; /* fork structure */
330 int level; /* btree level, for checking */
331 xfs_mount_t *mp; /* file system mount structure */
332 __be64 *pp; /* pointer to block address */
333 xfs_bmbt_rec_t *ep; /* pointer to current extent */
334 xfs_bmbt_rec_t last = {0, 0}; /* last extent in prev block */
335 xfs_bmbt_rec_t *nextp; /* pointer to next extent */
336 int bp_release = 0;
337
338 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) {
339 return;
340 }
341
Dave Chinnere3543812016-01-08 11:28:49 +1100342 /* skip large extent count inodes */
343 if (ip->i_d.di_nextents > 10000)
344 return;
345
Dave Chinner9e5987a72013-02-25 12:31:26 +1100346 bno = NULLFSBLOCK;
347 mp = ip->i_mount;
348 ifp = XFS_IFORK_PTR(ip, whichfork);
349 block = ifp->if_broot;
350 /*
351 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
352 */
353 level = be16_to_cpu(block->bb_level);
354 ASSERT(level > 0);
355 xfs_check_block(block, mp, 1, ifp->if_broot_bytes);
356 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
357 bno = be64_to_cpu(*pp);
358
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000359 ASSERT(bno != NULLFSBLOCK);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100360 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
361 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
362
363 /*
364 * Go down the tree until leaf level is reached, following the first
365 * pointer (leftmost) at each level.
366 */
367 while (level-- > 0) {
368 /* See if buf is in cur first */
369 bp_release = 0;
370 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
371 if (!bp) {
372 bp_release = 1;
373 error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
374 XFS_BMAP_BTREE_REF,
375 &xfs_bmbt_buf_ops);
376 if (error)
377 goto error_norelse;
378 }
379 block = XFS_BUF_TO_BLOCK(bp);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100380 if (level == 0)
381 break;
382
383 /*
384 * Check this block for basic sanity (increasing keys and
385 * no duplicate blocks).
386 */
387
388 xfs_check_block(block, mp, 0, 0);
389 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
390 bno = be64_to_cpu(*pp);
Eric Sandeenc29aad42015-02-23 22:39:08 +1100391 XFS_WANT_CORRUPTED_GOTO(mp,
Darrick J. Wong59f6fec2018-01-08 10:51:00 -0800392 xfs_verify_fsbno(mp, bno), error0);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100393 if (bp_release) {
394 bp_release = 0;
395 xfs_trans_brelse(NULL, bp);
396 }
397 }
398
399 /*
400 * Here with bp and block set to the leftmost leaf node in the tree.
401 */
402 i = 0;
403
404 /*
405 * Loop over all leaf nodes checking that all extents are in the right order.
406 */
407 for (;;) {
408 xfs_fsblock_t nextbno;
409 xfs_extnum_t num_recs;
410
411
412 num_recs = xfs_btree_get_numrecs(block);
413
414 /*
415 * Read-ahead the next leaf block, if any.
416 */
417
418 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
419
420 /*
421 * Check all the extents to make sure they are OK.
422 * If we had a previous block, the last entry should
423 * conform with the first entry in this one.
424 */
425
426 ep = XFS_BMBT_REC_ADDR(mp, block, 1);
427 if (i) {
428 ASSERT(xfs_bmbt_disk_get_startoff(&last) +
429 xfs_bmbt_disk_get_blockcount(&last) <=
430 xfs_bmbt_disk_get_startoff(ep));
431 }
432 for (j = 1; j < num_recs; j++) {
433 nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1);
434 ASSERT(xfs_bmbt_disk_get_startoff(ep) +
435 xfs_bmbt_disk_get_blockcount(ep) <=
436 xfs_bmbt_disk_get_startoff(nextp));
437 ep = nextp;
438 }
439
440 last = *ep;
441 i += num_recs;
442 if (bp_release) {
443 bp_release = 0;
444 xfs_trans_brelse(NULL, bp);
445 }
446 bno = nextbno;
447 /*
448 * If we've reached the end, stop.
449 */
450 if (bno == NULLFSBLOCK)
451 break;
452
453 bp_release = 0;
454 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
455 if (!bp) {
456 bp_release = 1;
457 error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
458 XFS_BMAP_BTREE_REF,
459 &xfs_bmbt_buf_ops);
460 if (error)
461 goto error_norelse;
462 }
463 block = XFS_BUF_TO_BLOCK(bp);
464 }
Luis de Bethencourta5fd2762016-03-09 08:17:56 +1100465
Dave Chinner9e5987a72013-02-25 12:31:26 +1100466 return;
467
468error0:
469 xfs_warn(mp, "%s: at error0", __func__);
470 if (bp_release)
471 xfs_trans_brelse(NULL, bp);
472error_norelse:
473 xfs_warn(mp, "%s: BAD after btree leaves for %d extents",
474 __func__, i);
Darrick J. Wongcec57252018-05-04 15:31:21 -0700475 xfs_err(mp, "%s: CORRUPTED BTREE OR SOMETHING", __func__);
476 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100477 return;
478}
479
480/*
Dave Chinner9e5987a72013-02-25 12:31:26 +1100481 * Validate that the bmbt_irecs being returned from bmapi are valid
Zhi Yong Wua97f4df2013-08-12 03:14:53 +0000482 * given the caller's original parameters. Specifically check the
483 * ranges of the returned irecs to ensure that they only extend beyond
Dave Chinner9e5987a72013-02-25 12:31:26 +1100484 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
485 */
486STATIC void
487xfs_bmap_validate_ret(
488 xfs_fileoff_t bno,
489 xfs_filblks_t len,
490 int flags,
491 xfs_bmbt_irec_t *mval,
492 int nmap,
493 int ret_nmap)
494{
495 int i; /* index to map values */
496
497 ASSERT(ret_nmap <= nmap);
498
499 for (i = 0; i < ret_nmap; i++) {
500 ASSERT(mval[i].br_blockcount > 0);
501 if (!(flags & XFS_BMAPI_ENTIRE)) {
502 ASSERT(mval[i].br_startoff >= bno);
503 ASSERT(mval[i].br_blockcount <= len);
504 ASSERT(mval[i].br_startoff + mval[i].br_blockcount <=
505 bno + len);
506 } else {
507 ASSERT(mval[i].br_startoff < bno + len);
508 ASSERT(mval[i].br_startoff + mval[i].br_blockcount >
509 bno);
510 }
511 ASSERT(i == 0 ||
512 mval[i - 1].br_startoff + mval[i - 1].br_blockcount ==
513 mval[i].br_startoff);
514 ASSERT(mval[i].br_startblock != DELAYSTARTBLOCK &&
515 mval[i].br_startblock != HOLESTARTBLOCK);
516 ASSERT(mval[i].br_state == XFS_EXT_NORM ||
517 mval[i].br_state == XFS_EXT_UNWRITTEN);
518 }
519}
520
521#else
522#define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
Darrick J. Wong7bf7a192017-08-31 15:11:06 -0700523#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap) do { } while (0)
Dave Chinner9e5987a72013-02-25 12:31:26 +1100524#endif /* DEBUG */
525
526/*
527 * bmap free list manipulation functions
528 */
529
530/*
531 * Add the extent to the list of extents to be free at transaction end.
532 * The list is maintained sorted (by block number).
533 */
534void
Brian Fosterfcb762f2018-05-09 08:45:04 -0700535__xfs_bmap_add_free(
Darrick J. Wong340785c2016-08-03 11:33:42 +1000536 struct xfs_mount *mp,
537 struct xfs_defer_ops *dfops,
538 xfs_fsblock_t bno,
539 xfs_filblks_t len,
Brian Fosterfcb762f2018-05-09 08:45:04 -0700540 struct xfs_owner_info *oinfo,
541 bool skip_discard)
Dave Chinner9e5987a72013-02-25 12:31:26 +1100542{
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000543 struct xfs_extent_free_item *new; /* new element */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100544#ifdef DEBUG
545 xfs_agnumber_t agno;
546 xfs_agblock_t agbno;
547
548 ASSERT(bno != NULLFSBLOCK);
549 ASSERT(len > 0);
550 ASSERT(len <= MAXEXTLEN);
551 ASSERT(!isnullstartblock(bno));
552 agno = XFS_FSB_TO_AGNO(mp, bno);
553 agbno = XFS_FSB_TO_AGBNO(mp, bno);
554 ASSERT(agno < mp->m_sb.sb_agcount);
555 ASSERT(agbno < mp->m_sb.sb_agblocks);
556 ASSERT(len < mp->m_sb.sb_agblocks);
557 ASSERT(agbno + len <= mp->m_sb.sb_agblocks);
558#endif
559 ASSERT(xfs_bmap_free_item_zone != NULL);
Darrick J. Wong340785c2016-08-03 11:33:42 +1000560
Dave Chinner9e5987a72013-02-25 12:31:26 +1100561 new = kmem_zone_alloc(xfs_bmap_free_item_zone, KM_SLEEP);
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000562 new->xefi_startblock = bno;
563 new->xefi_blockcount = (xfs_extlen_t)len;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000564 if (oinfo)
565 new->xefi_oinfo = *oinfo;
566 else
567 xfs_rmap_skip_owner_update(&new->xefi_oinfo);
Brian Fosterfcb762f2018-05-09 08:45:04 -0700568 new->xefi_skip_discard = skip_discard;
Darrick J. Wongba9e7802016-08-03 11:26:33 +1000569 trace_xfs_bmap_free_defer(mp, XFS_FSB_TO_AGNO(mp, bno), 0,
570 XFS_FSB_TO_AGBNO(mp, bno), len);
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000571 xfs_defer_add(dfops, XFS_DEFER_OPS_TYPE_FREE, &new->xefi_list);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100572}
573
574/*
575 * Inode fork format manipulation functions
576 */
577
578/*
579 * Transform a btree format file with only one leaf node, where the
580 * extents list will fit in the inode, into an extents format file.
581 * Since the file extents are already in-core, all we have to do is
582 * give up the space for the btree root and pitch the leaf block.
583 */
584STATIC int /* error */
585xfs_bmap_btree_to_extents(
586 xfs_trans_t *tp, /* transaction pointer */
587 xfs_inode_t *ip, /* incore inode pointer */
588 xfs_btree_cur_t *cur, /* btree cursor */
589 int *logflagsp, /* inode logging flags */
590 int whichfork) /* data or attr fork */
591{
592 /* REFERENCED */
593 struct xfs_btree_block *cblock;/* child btree block */
594 xfs_fsblock_t cbno; /* child block number */
595 xfs_buf_t *cbp; /* child block's buffer */
596 int error; /* error return value */
597 xfs_ifork_t *ifp; /* inode fork data */
598 xfs_mount_t *mp; /* mount point structure */
599 __be64 *pp; /* ptr to block address */
600 struct xfs_btree_block *rblock;/* root btree block */
Darrick J. Wong340785c2016-08-03 11:33:42 +1000601 struct xfs_owner_info oinfo;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100602
603 mp = ip->i_mount;
604 ifp = XFS_IFORK_PTR(ip, whichfork);
Darrick J. Wong60b49842016-10-03 09:11:34 -0700605 ASSERT(whichfork != XFS_COW_FORK);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100606 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
607 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
608 rblock = ifp->if_broot;
609 ASSERT(be16_to_cpu(rblock->bb_level) == 1);
610 ASSERT(be16_to_cpu(rblock->bb_numrecs) == 1);
611 ASSERT(xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0) == 1);
612 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, ifp->if_broot_bytes);
613 cbno = be64_to_cpu(*pp);
614 *logflagsp = 0;
615#ifdef DEBUG
Darrick J. Wongf1357612017-10-17 21:37:33 -0700616 XFS_WANT_CORRUPTED_RETURN(cur->bc_mp,
617 xfs_btree_check_lptr(cur, cbno, 1));
Dave Chinner9e5987a72013-02-25 12:31:26 +1100618#endif
619 error = xfs_btree_read_bufl(mp, tp, cbno, 0, &cbp, XFS_BMAP_BTREE_REF,
620 &xfs_bmbt_buf_ops);
621 if (error)
622 return error;
623 cblock = XFS_BUF_TO_BLOCK(cbp);
624 if ((error = xfs_btree_check_block(cur, cblock, 0, cbp)))
625 return error;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000626 xfs_rmap_ino_bmbt_owner(&oinfo, ip->i_ino, whichfork);
627 xfs_bmap_add_free(mp, cur->bc_private.b.dfops, cbno, 1, &oinfo);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100628 ip->i_d.di_nblocks--;
629 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
630 xfs_trans_binval(tp, cbp);
631 if (cur->bc_bufs[0] == cbp)
632 cur->bc_bufs[0] = NULL;
633 xfs_iroot_realloc(ip, -1, whichfork);
634 ASSERT(ifp->if_broot == NULL);
635 ASSERT((ifp->if_flags & XFS_IFBROOT) == 0);
636 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
637 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
638 return 0;
639}
640
641/*
642 * Convert an extents-format file into a btree-format file.
643 * The new file will have a root block (in the inode) and a single child block.
644 */
645STATIC int /* error */
646xfs_bmap_extents_to_btree(
647 xfs_trans_t *tp, /* transaction pointer */
648 xfs_inode_t *ip, /* incore inode pointer */
649 xfs_fsblock_t *firstblock, /* first-block-allocated */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000650 struct xfs_defer_ops *dfops, /* blocks freed in xaction */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100651 xfs_btree_cur_t **curp, /* cursor returned to caller */
652 int wasdel, /* converting a delayed alloc */
653 int *logflagsp, /* inode logging flags */
654 int whichfork) /* data or attr fork */
655{
656 struct xfs_btree_block *ablock; /* allocated (child) bt block */
657 xfs_buf_t *abp; /* buffer for ablock */
658 xfs_alloc_arg_t args; /* allocation arguments */
659 xfs_bmbt_rec_t *arp; /* child record pointer */
660 struct xfs_btree_block *block; /* btree root block */
661 xfs_btree_cur_t *cur; /* bmap btree cursor */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100662 int error; /* error return value */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100663 xfs_ifork_t *ifp; /* inode fork pointer */
664 xfs_bmbt_key_t *kp; /* root block key pointer */
665 xfs_mount_t *mp; /* mount structure */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100666 xfs_bmbt_ptr_t *pp; /* root block address pointer */
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700667 struct xfs_iext_cursor icur;
Christoph Hellwig906abed2017-11-03 10:34:43 -0700668 struct xfs_bmbt_irec rec;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700669 xfs_extnum_t cnt = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100670
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500671 mp = ip->i_mount;
Darrick J. Wong60b49842016-10-03 09:11:34 -0700672 ASSERT(whichfork != XFS_COW_FORK);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100673 ifp = XFS_IFORK_PTR(ip, whichfork);
674 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS);
675
676 /*
677 * Make space in the inode incore.
678 */
679 xfs_iroot_realloc(ip, 1, whichfork);
680 ifp->if_flags |= XFS_IFBROOT;
681
682 /*
683 * Fill in the root.
684 */
685 block = ifp->if_broot;
Eric Sandeenb6f41e42017-01-27 23:16:39 -0800686 xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL,
687 XFS_BTNUM_BMAP, 1, 1, ip->i_ino,
Eric Sandeenf88ae462017-01-27 23:16:37 -0800688 XFS_BTREE_LONG_PTRS);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100689 /*
690 * Need a cursor. Can't allocate until bb_level is filled in.
691 */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100692 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
693 cur->bc_private.b.firstblock = *firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000694 cur->bc_private.b.dfops = dfops;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100695 cur->bc_private.b.flags = wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
696 /*
697 * Convert to a btree with two levels, one record in root.
698 */
699 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_BTREE);
700 memset(&args, 0, sizeof(args));
701 args.tp = tp;
702 args.mp = mp;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000703 xfs_rmap_ino_bmbt_owner(&args.oinfo, ip->i_ino, whichfork);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100704 args.firstblock = *firstblock;
705 if (*firstblock == NULLFSBLOCK) {
706 args.type = XFS_ALLOCTYPE_START_BNO;
707 args.fsbno = XFS_INO_TO_FSB(mp, ip->i_ino);
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000708 } else if (dfops->dop_low) {
Dave Chinner9e5987a72013-02-25 12:31:26 +1100709 args.type = XFS_ALLOCTYPE_START_BNO;
710 args.fsbno = *firstblock;
711 } else {
712 args.type = XFS_ALLOCTYPE_NEAR_BNO;
713 args.fsbno = *firstblock;
714 }
715 args.minlen = args.maxlen = args.prod = 1;
716 args.wasdel = wasdel;
717 *logflagsp = 0;
718 if ((error = xfs_alloc_vextent(&args))) {
719 xfs_iroot_realloc(ip, -1, whichfork);
Eric Sandeen2c4306f2018-04-16 23:07:27 -0700720 ASSERT(ifp->if_broot == NULL);
721 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100722 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
723 return error;
724 }
Darrick J. Wong90e20562016-10-03 09:11:45 -0700725
Christoph Hellwig2fcc3192017-03-08 10:38:53 -0800726 if (WARN_ON_ONCE(args.fsbno == NULLFSBLOCK)) {
727 xfs_iroot_realloc(ip, -1, whichfork);
Eric Sandeen2c4306f2018-04-16 23:07:27 -0700728 ASSERT(ifp->if_broot == NULL);
729 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
Christoph Hellwig2fcc3192017-03-08 10:38:53 -0800730 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
731 return -ENOSPC;
732 }
Dave Chinner9e5987a72013-02-25 12:31:26 +1100733 /*
734 * Allocation can't fail, the space was reserved.
735 */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100736 ASSERT(*firstblock == NULLFSBLOCK ||
Christoph Hellwig410d17f2017-02-16 17:12:51 -0800737 args.agno >= XFS_FSB_TO_AGNO(mp, *firstblock));
Dave Chinner9e5987a72013-02-25 12:31:26 +1100738 *firstblock = cur->bc_private.b.firstblock = args.fsbno;
739 cur->bc_private.b.allocated++;
740 ip->i_d.di_nblocks++;
741 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, 1L);
742 abp = xfs_btree_get_bufl(mp, tp, args.fsbno, 0);
743 /*
744 * Fill in the child block.
745 */
746 abp->b_ops = &xfs_bmbt_buf_ops;
747 ablock = XFS_BUF_TO_BLOCK(abp);
Eric Sandeenb6f41e42017-01-27 23:16:39 -0800748 xfs_btree_init_block_int(mp, ablock, abp->b_bn,
749 XFS_BTNUM_BMAP, 0, 0, ip->i_ino,
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500750 XFS_BTREE_LONG_PTRS);
751
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700752 for_each_xfs_iext(ifp, &icur, &rec) {
Christoph Hellwig906abed2017-11-03 10:34:43 -0700753 if (isnullstartblock(rec.br_startblock))
754 continue;
755 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1 + cnt);
756 xfs_bmbt_disk_set_all(arp, &rec);
757 cnt++;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100758 }
759 ASSERT(cnt == XFS_IFORK_NEXTENTS(ip, whichfork));
760 xfs_btree_set_numrecs(ablock, cnt);
761
762 /*
763 * Fill in the root key and pointer.
764 */
765 kp = XFS_BMBT_KEY_ADDR(mp, block, 1);
766 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
767 kp->br_startoff = cpu_to_be64(xfs_bmbt_disk_get_startoff(arp));
768 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, xfs_bmbt_get_maxrecs(cur,
769 be16_to_cpu(block->bb_level)));
770 *pp = cpu_to_be64(args.fsbno);
771
772 /*
773 * Do all this logging at the end so that
774 * the root is at the right level.
775 */
776 xfs_btree_log_block(cur, abp, XFS_BB_ALL_BITS);
777 xfs_btree_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs));
778 ASSERT(*curp == NULL);
779 *curp = cur;
780 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fbroot(whichfork);
781 return 0;
782}
783
784/*
785 * Convert a local file to an extents file.
786 * This code is out of bounds for data forks of regular files,
787 * since the file data needs to get logged so things will stay consistent.
788 * (The bmap-level manipulations are ok, though).
789 */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000790void
791xfs_bmap_local_to_extents_empty(
792 struct xfs_inode *ip,
793 int whichfork)
794{
795 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
796
Darrick J. Wong60b49842016-10-03 09:11:34 -0700797 ASSERT(whichfork != XFS_COW_FORK);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000798 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
799 ASSERT(ifp->if_bytes == 0);
800 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) == 0);
801
Eric Sandeen6a9edd32014-04-14 18:59:26 +1000802 xfs_bmap_forkoff_reset(ip, whichfork);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000803 ifp->if_flags &= ~XFS_IFINLINE;
804 ifp->if_flags |= XFS_IFEXTENTS;
Christoph Hellwig6bdcf262017-11-03 10:34:46 -0700805 ifp->if_u1.if_root = NULL;
806 ifp->if_height = 0;
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000807 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
808}
809
810
Dave Chinner9e5987a72013-02-25 12:31:26 +1100811STATIC int /* error */
812xfs_bmap_local_to_extents(
813 xfs_trans_t *tp, /* transaction pointer */
814 xfs_inode_t *ip, /* incore inode pointer */
815 xfs_fsblock_t *firstblock, /* first block allocated in xaction */
816 xfs_extlen_t total, /* total blocks needed by transaction */
817 int *logflagsp, /* inode logging flags */
818 int whichfork,
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500819 void (*init_fn)(struct xfs_trans *tp,
820 struct xfs_buf *bp,
Dave Chinner9e5987a72013-02-25 12:31:26 +1100821 struct xfs_inode *ip,
822 struct xfs_ifork *ifp))
823{
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000824 int error = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100825 int flags; /* logging flags returned */
826 xfs_ifork_t *ifp; /* inode fork pointer */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000827 xfs_alloc_arg_t args; /* allocation arguments */
828 xfs_buf_t *bp; /* buffer for extent block */
Christoph Hellwig50bb44c2017-08-29 15:44:11 -0700829 struct xfs_bmbt_irec rec;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700830 struct xfs_iext_cursor icur;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100831
832 /*
833 * We don't want to deal with the case of keeping inode data inline yet.
834 * So sending the data fork of a regular inode is invalid.
835 */
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100836 ASSERT(!(S_ISREG(VFS_I(ip)->i_mode) && whichfork == XFS_DATA_FORK));
Dave Chinner9e5987a72013-02-25 12:31:26 +1100837 ifp = XFS_IFORK_PTR(ip, whichfork);
838 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000839
840 if (!ifp->if_bytes) {
841 xfs_bmap_local_to_extents_empty(ip, whichfork);
842 flags = XFS_ILOG_CORE;
843 goto done;
844 }
845
Dave Chinner9e5987a72013-02-25 12:31:26 +1100846 flags = 0;
847 error = 0;
Christoph Hellwig6bdcf262017-11-03 10:34:46 -0700848 ASSERT((ifp->if_flags & (XFS_IFINLINE|XFS_IFEXTENTS)) == XFS_IFINLINE);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000849 memset(&args, 0, sizeof(args));
850 args.tp = tp;
851 args.mp = ip->i_mount;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000852 xfs_rmap_ino_owner(&args.oinfo, ip->i_ino, whichfork, 0);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000853 args.firstblock = *firstblock;
854 /*
855 * Allocate a block. We know we need only one, since the
856 * file currently fits in an inode.
857 */
858 if (*firstblock == NULLFSBLOCK) {
859 args.fsbno = XFS_INO_TO_FSB(args.mp, ip->i_ino);
860 args.type = XFS_ALLOCTYPE_START_BNO;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100861 } else {
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000862 args.fsbno = *firstblock;
863 args.type = XFS_ALLOCTYPE_NEAR_BNO;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100864 }
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000865 args.total = total;
866 args.minlen = args.maxlen = args.prod = 1;
867 error = xfs_alloc_vextent(&args);
868 if (error)
869 goto done;
870
871 /* Can't fail, the space was reserved. */
872 ASSERT(args.fsbno != NULLFSBLOCK);
873 ASSERT(args.len == 1);
874 *firstblock = args.fsbno;
875 bp = xfs_btree_get_bufl(args.mp, tp, args.fsbno, 0);
876
Dave Chinnerfe22d552015-01-22 09:30:06 +1100877 /*
Brian Fosterb7cdc662015-10-12 15:40:24 +1100878 * Initialize the block, copy the data and log the remote buffer.
Dave Chinnerfe22d552015-01-22 09:30:06 +1100879 *
Brian Fosterb7cdc662015-10-12 15:40:24 +1100880 * The callout is responsible for logging because the remote format
881 * might differ from the local format and thus we don't know how much to
882 * log here. Note that init_fn must also set the buffer log item type
883 * correctly.
Dave Chinnerfe22d552015-01-22 09:30:06 +1100884 */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000885 init_fn(tp, bp, ip, ifp);
886
Brian Fosterb7cdc662015-10-12 15:40:24 +1100887 /* account for the change in fork size */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000888 xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
889 xfs_bmap_local_to_extents_empty(ip, whichfork);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100890 flags |= XFS_ILOG_CORE;
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000891
Christoph Hellwig6bdcf262017-11-03 10:34:46 -0700892 ifp->if_u1.if_root = NULL;
893 ifp->if_height = 0;
894
Christoph Hellwig50bb44c2017-08-29 15:44:11 -0700895 rec.br_startoff = 0;
896 rec.br_startblock = args.fsbno;
897 rec.br_blockcount = 1;
898 rec.br_state = XFS_EXT_NORM;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700899 xfs_iext_first(ifp, &icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -0700900 xfs_iext_insert(ip, &icur, &rec, 0);
Christoph Hellwig50bb44c2017-08-29 15:44:11 -0700901
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000902 XFS_IFORK_NEXT_SET(ip, whichfork, 1);
903 ip->i_d.di_nblocks = 1;
904 xfs_trans_mod_dquot_byino(tp, ip,
905 XFS_TRANS_DQ_BCOUNT, 1L);
906 flags |= xfs_ilog_fext(whichfork);
907
Dave Chinner9e5987a72013-02-25 12:31:26 +1100908done:
909 *logflagsp = flags;
910 return error;
911}
912
913/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 * Called from xfs_bmap_add_attrfork to handle btree format files.
915 */
916STATIC int /* error */
917xfs_bmap_add_attrfork_btree(
918 xfs_trans_t *tp, /* transaction pointer */
919 xfs_inode_t *ip, /* incore inode pointer */
920 xfs_fsblock_t *firstblock, /* first block allocated */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000921 struct xfs_defer_ops *dfops, /* blocks to free at commit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 int *flags) /* inode logging flags */
923{
924 xfs_btree_cur_t *cur; /* btree cursor */
925 int error; /* error return value */
926 xfs_mount_t *mp; /* file system mount struct */
927 int stat; /* newroot status */
928
929 mp = ip->i_mount;
930 if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip))
931 *flags |= XFS_ILOG_DBROOT;
932 else {
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100933 cur = xfs_bmbt_init_cursor(mp, tp, ip, XFS_DATA_FORK);
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000934 cur->bc_private.b.dfops = dfops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 cur->bc_private.b.firstblock = *firstblock;
Christoph Hellwigb5cfbc22017-10-17 14:16:27 -0700936 error = xfs_bmbt_lookup_first(cur, &stat);
937 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 goto error0;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000939 /* must be at least one entry */
Eric Sandeenc29aad42015-02-23 22:39:08 +1100940 XFS_WANT_CORRUPTED_GOTO(mp, stat == 1, error0);
Christoph Hellwigea77b0a2008-10-30 16:57:28 +1100941 if ((error = xfs_btree_new_iroot(cur, flags, &stat)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 goto error0;
943 if (stat == 0) {
944 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
Dave Chinner24513372014-06-25 14:58:08 +1000945 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947 *firstblock = cur->bc_private.b.firstblock;
948 cur->bc_private.b.allocated = 0;
949 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
950 }
951 return 0;
952error0:
953 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
954 return error;
955}
956
957/*
958 * Called from xfs_bmap_add_attrfork to handle extents format files.
959 */
960STATIC int /* error */
961xfs_bmap_add_attrfork_extents(
962 xfs_trans_t *tp, /* transaction pointer */
963 xfs_inode_t *ip, /* incore inode pointer */
964 xfs_fsblock_t *firstblock, /* first block allocated */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000965 struct xfs_defer_ops *dfops, /* blocks to free at commit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 int *flags) /* inode logging flags */
967{
968 xfs_btree_cur_t *cur; /* bmap btree cursor */
969 int error; /* error return value */
970
971 if (ip->i_d.di_nextents * sizeof(xfs_bmbt_rec_t) <= XFS_IFORK_DSIZE(ip))
972 return 0;
973 cur = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000974 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, dfops, &cur, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 flags, XFS_DATA_FORK);
976 if (cur) {
977 cur->bc_private.b.allocated = 0;
978 xfs_btree_del_cursor(cur,
979 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
980 }
981 return error;
982}
983
984/*
Dave Chinner1e823792013-02-11 15:58:13 +1100985 * Called from xfs_bmap_add_attrfork to handle local format files. Each
986 * different data fork content type needs a different callout to do the
987 * conversion. Some are basic and only require special block initialisation
988 * callouts for the data formating, others (directories) are so specialised they
989 * handle everything themselves.
990 *
991 * XXX (dgc): investigate whether directory conversion can use the generic
992 * formatting callout. It should be possible - it's just a very complex
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500993 * formatter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 */
995STATIC int /* error */
996xfs_bmap_add_attrfork_local(
997 xfs_trans_t *tp, /* transaction pointer */
998 xfs_inode_t *ip, /* incore inode pointer */
999 xfs_fsblock_t *firstblock, /* first block allocated */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001000 struct xfs_defer_ops *dfops, /* blocks to free at commit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 int *flags) /* inode logging flags */
1002{
1003 xfs_da_args_t dargs; /* args for dir/attr code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip))
1006 return 0;
Dave Chinner1e823792013-02-11 15:58:13 +11001007
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001008 if (S_ISDIR(VFS_I(ip)->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 memset(&dargs, 0, sizeof(dargs));
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001010 dargs.geo = ip->i_mount->m_dir_geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 dargs.dp = ip;
1012 dargs.firstblock = firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001013 dargs.dfops = dfops;
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001014 dargs.total = dargs.geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 dargs.whichfork = XFS_DATA_FORK;
1016 dargs.trans = tp;
Dave Chinner1e823792013-02-11 15:58:13 +11001017 return xfs_dir2_sf_to_block(&dargs);
1018 }
1019
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001020 if (S_ISLNK(VFS_I(ip)->i_mode))
Dave Chinner1e823792013-02-11 15:58:13 +11001021 return xfs_bmap_local_to_extents(tp, ip, firstblock, 1,
1022 flags, XFS_DATA_FORK,
1023 xfs_symlink_local_to_remote);
1024
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001025 /* should only be called for types that support local format data */
1026 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001027 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
1030/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11001031 * Convert inode from non-attributed to attributed.
1032 * Must not be in a transaction, ip must not be locked.
1033 */
1034int /* error code */
1035xfs_bmap_add_attrfork(
1036 xfs_inode_t *ip, /* incore inode pointer */
1037 int size, /* space new attribute needs */
1038 int rsvd) /* xact may use reserved blks */
1039{
1040 xfs_fsblock_t firstblock; /* 1st block/ag allocated */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001041 struct xfs_defer_ops dfops; /* freed extent records */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001042 xfs_mount_t *mp; /* mount structure */
1043 xfs_trans_t *tp; /* transaction pointer */
1044 int blks; /* space reservation */
1045 int version = 1; /* superblock attr version */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001046 int logflags; /* logging flags */
1047 int error; /* error return value */
1048
1049 ASSERT(XFS_IFORK_Q(ip) == 0);
1050
1051 mp = ip->i_mount;
1052 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
Christoph Hellwig253f4912016-04-06 09:19:55 +10001053
Dave Chinner9e5987a72013-02-25 12:31:26 +11001054 blks = XFS_ADDAFORK_SPACE_RES(mp);
Christoph Hellwig253f4912016-04-06 09:19:55 +10001055
1056 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_addafork, blks, 0,
1057 rsvd ? XFS_TRANS_RESERVE : 0, &tp);
1058 if (error)
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001059 return error;
Christoph Hellwig253f4912016-04-06 09:19:55 +10001060
Dave Chinner9e5987a72013-02-25 12:31:26 +11001061 xfs_ilock(ip, XFS_ILOCK_EXCL);
1062 error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ?
1063 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
1064 XFS_QMOPT_RES_REGBLKS);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001065 if (error)
1066 goto trans_cancel;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001067 if (XFS_IFORK_Q(ip))
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001068 goto trans_cancel;
Darrick J. Wong0f352f82016-12-05 12:38:11 +11001069 if (ip->i_d.di_anextents != 0) {
1070 error = -EFSCORRUPTED;
1071 goto trans_cancel;
1072 }
Dave Chinner9e5987a72013-02-25 12:31:26 +11001073 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) {
1074 /*
1075 * For inodes coming from pre-6.2 filesystems.
1076 */
1077 ASSERT(ip->i_d.di_aformat == 0);
1078 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1079 }
Dave Chinner9e5987a72013-02-25 12:31:26 +11001080
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001081 xfs_trans_ijoin(tp, ip, 0);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001082 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1083
1084 switch (ip->i_d.di_format) {
1085 case XFS_DINODE_FMT_DEV:
1086 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
1087 break;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001088 case XFS_DINODE_FMT_LOCAL:
1089 case XFS_DINODE_FMT_EXTENTS:
1090 case XFS_DINODE_FMT_BTREE:
1091 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
1092 if (!ip->i_d.di_forkoff)
1093 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
1094 else if (mp->m_flags & XFS_MOUNT_ATTR2)
1095 version = 2;
1096 break;
1097 default:
1098 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001099 error = -EINVAL;
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001100 goto trans_cancel;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001101 }
1102
1103 ASSERT(ip->i_afp == NULL);
1104 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
1105 ip->i_afp->if_flags = XFS_IFEXTENTS;
1106 logflags = 0;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001107 xfs_defer_init(&dfops, &firstblock);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001108 switch (ip->i_d.di_format) {
1109 case XFS_DINODE_FMT_LOCAL:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001110 error = xfs_bmap_add_attrfork_local(tp, ip, &firstblock, &dfops,
Dave Chinner9e5987a72013-02-25 12:31:26 +11001111 &logflags);
1112 break;
1113 case XFS_DINODE_FMT_EXTENTS:
1114 error = xfs_bmap_add_attrfork_extents(tp, ip, &firstblock,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001115 &dfops, &logflags);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001116 break;
1117 case XFS_DINODE_FMT_BTREE:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001118 error = xfs_bmap_add_attrfork_btree(tp, ip, &firstblock, &dfops,
Dave Chinner9e5987a72013-02-25 12:31:26 +11001119 &logflags);
1120 break;
1121 default:
1122 error = 0;
1123 break;
1124 }
1125 if (logflags)
1126 xfs_trans_log_inode(tp, ip, logflags);
1127 if (error)
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001128 goto bmap_cancel;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001129 if (!xfs_sb_version_hasattr(&mp->m_sb) ||
1130 (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) {
Dave Chinner61e63ec2015-01-22 09:10:31 +11001131 bool log_sb = false;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001132
1133 spin_lock(&mp->m_sb_lock);
1134 if (!xfs_sb_version_hasattr(&mp->m_sb)) {
1135 xfs_sb_version_addattr(&mp->m_sb);
Dave Chinner61e63ec2015-01-22 09:10:31 +11001136 log_sb = true;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001137 }
1138 if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) {
1139 xfs_sb_version_addattr2(&mp->m_sb);
Dave Chinner61e63ec2015-01-22 09:10:31 +11001140 log_sb = true;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001141 }
Dave Chinner4d11a402015-01-22 09:10:26 +11001142 spin_unlock(&mp->m_sb_lock);
Dave Chinner61e63ec2015-01-22 09:10:31 +11001143 if (log_sb)
1144 xfs_log_sb(tp);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001145 }
1146
Christoph Hellwig8ad7c6292017-08-28 10:21:04 -07001147 error = xfs_defer_finish(&tp, &dfops);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001148 if (error)
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001149 goto bmap_cancel;
Christoph Hellwig70393312015-06-04 13:48:08 +10001150 error = xfs_trans_commit(tp);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001151 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001152 return error;
1153
1154bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001155 xfs_defer_cancel(&dfops);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001156trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001157 xfs_trans_cancel(tp);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001158 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001159 return error;
1160}
1161
1162/*
1163 * Internal and external extent tree search functions.
1164 */
1165
1166/*
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001167 * Read in extents from a btree-format inode.
Dave Chinner9e5987a72013-02-25 12:31:26 +11001168 */
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001169int
1170xfs_iread_extents(
1171 struct xfs_trans *tp,
1172 struct xfs_inode *ip,
1173 int whichfork)
Dave Chinner9e5987a72013-02-25 12:31:26 +11001174{
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001175 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwige8e0e172017-10-19 11:06:29 -07001176 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001177 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1178 xfs_extnum_t nextents = XFS_IFORK_NEXTENTS(ip, whichfork);
1179 struct xfs_btree_block *block = ifp->if_broot;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001180 struct xfs_iext_cursor icur;
Christoph Hellwig6bdcf262017-11-03 10:34:46 -07001181 struct xfs_bmbt_irec new;
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001182 xfs_fsblock_t bno;
1183 struct xfs_buf *bp;
1184 xfs_extnum_t i, j;
1185 int level;
1186 __be64 *pp;
1187 int error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001188
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001189 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1190
1191 if (unlikely(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
1192 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp);
1193 return -EFSCORRUPTED;
1194 }
1195
Dave Chinner9e5987a72013-02-25 12:31:26 +11001196 /*
1197 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
1198 */
1199 level = be16_to_cpu(block->bb_level);
1200 ASSERT(level > 0);
1201 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
1202 bno = be64_to_cpu(*pp);
Darrick J. Wongd5a91ba2017-02-02 15:13:58 -08001203
Dave Chinner9e5987a72013-02-25 12:31:26 +11001204 /*
1205 * Go down the tree until leaf level is reached, following the first
1206 * pointer (leftmost) at each level.
1207 */
1208 while (level-- > 0) {
1209 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1210 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1211 if (error)
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001212 goto out;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001213 block = XFS_BUF_TO_BLOCK(bp);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001214 if (level == 0)
1215 break;
1216 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
1217 bno = be64_to_cpu(*pp);
Eric Sandeenc29aad42015-02-23 22:39:08 +11001218 XFS_WANT_CORRUPTED_GOTO(mp,
Darrick J. Wong59f6fec2018-01-08 10:51:00 -08001219 xfs_verify_fsbno(mp, bno), out_brelse);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001220 xfs_trans_brelse(tp, bp);
1221 }
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001222
Dave Chinner9e5987a72013-02-25 12:31:26 +11001223 /*
1224 * Here with bp and block set to the leftmost leaf node in the tree.
1225 */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001226 i = 0;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001227 xfs_iext_first(ifp, &icur);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001228
Dave Chinner9e5987a72013-02-25 12:31:26 +11001229 /*
1230 * Loop over all leaf nodes. Copy information to the extent records.
1231 */
1232 for (;;) {
1233 xfs_bmbt_rec_t *frp;
1234 xfs_fsblock_t nextbno;
1235 xfs_extnum_t num_recs;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001236
1237 num_recs = xfs_btree_get_numrecs(block);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001238 if (unlikely(i + num_recs > nextents)) {
Dave Chinner9e5987a72013-02-25 12:31:26 +11001239 xfs_warn(ip->i_mount,
1240 "corrupt dinode %Lu, (btree extents).",
1241 (unsigned long long) ip->i_ino);
Darrick J. Wong90a58f92018-03-23 10:06:52 -07001242 xfs_inode_verifier_error(ip, -EFSCORRUPTED,
1243 __func__, block, sizeof(*block),
1244 __this_address);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001245 error = -EFSCORRUPTED;
1246 goto out_brelse;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001247 }
Dave Chinner9e5987a72013-02-25 12:31:26 +11001248 /*
1249 * Read-ahead the next leaf block, if any.
1250 */
1251 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
1252 if (nextbno != NULLFSBLOCK)
1253 xfs_btree_reada_bufl(mp, nextbno, 1,
1254 &xfs_bmbt_buf_ops);
1255 /*
1256 * Copy records into the extent records.
1257 */
1258 frp = XFS_BMBT_REC_ADDR(mp, block, 1);
Christoph Hellwig6bdcf262017-11-03 10:34:46 -07001259 for (j = 0; j < num_recs; j++, frp++, i++) {
Darrick J. Wong30b09842018-03-23 10:06:52 -07001260 xfs_failaddr_t fa;
1261
Christoph Hellwigdac9c9b2017-11-03 10:34:47 -07001262 xfs_bmbt_disk_get_all(frp, &new);
Darrick J. Wong30b09842018-03-23 10:06:52 -07001263 fa = xfs_bmap_validate_extent(ip, whichfork, &new);
1264 if (fa) {
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001265 error = -EFSCORRUPTED;
Darrick J. Wong30b09842018-03-23 10:06:52 -07001266 xfs_inode_verifier_error(ip, error,
1267 "xfs_iread_extents(2)",
1268 frp, sizeof(*frp), fa);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001269 goto out_brelse;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001270 }
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07001271 xfs_iext_insert(ip, &icur, &new, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001272 trace_xfs_read_extent(ip, &icur, state, _THIS_IP_);
1273 xfs_iext_next(ifp, &icur);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001274 }
1275 xfs_trans_brelse(tp, bp);
1276 bno = nextbno;
1277 /*
1278 * If we've reached the end, stop.
1279 */
1280 if (bno == NULLFSBLOCK)
1281 break;
1282 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1283 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1284 if (error)
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001285 goto out;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001286 block = XFS_BUF_TO_BLOCK(bp);
1287 }
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001288
1289 if (i != XFS_IFORK_NEXTENTS(ip, whichfork)) {
1290 error = -EFSCORRUPTED;
1291 goto out;
1292 }
Eric Sandeen5d829302016-11-08 12:59:42 +11001293 ASSERT(i == xfs_iext_count(ifp));
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001294
1295 ifp->if_flags |= XFS_IFEXTENTS;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001296 return 0;
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001297
1298out_brelse:
Dave Chinner9e5987a72013-02-25 12:31:26 +11001299 xfs_trans_brelse(tp, bp);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001300out:
1301 xfs_iext_destroy(ifp);
1302 return error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001303}
1304
Dave Chinner9e5987a72013-02-25 12:31:26 +11001305/*
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001306 * Returns the relative block number of the first unused block(s) in the given
1307 * fork with at least "len" logically contiguous blocks free. This is the
1308 * lowest-address hole if the fork has holes, else the first block past the end
1309 * of fork. Return 0 if the fork is currently local (in-inode).
Dave Chinner9e5987a72013-02-25 12:31:26 +11001310 */
1311int /* error */
1312xfs_bmap_first_unused(
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001313 struct xfs_trans *tp, /* transaction pointer */
1314 struct xfs_inode *ip, /* incore inode */
1315 xfs_extlen_t len, /* size of hole to find */
1316 xfs_fileoff_t *first_unused, /* unused block */
1317 int whichfork) /* data or attr fork */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001318{
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001319 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1320 struct xfs_bmbt_irec got;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001321 struct xfs_iext_cursor icur;
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001322 xfs_fileoff_t lastaddr = 0;
1323 xfs_fileoff_t lowest, max;
1324 int error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001325
1326 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE ||
1327 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ||
1328 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001329
Dave Chinner9e5987a72013-02-25 12:31:26 +11001330 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1331 *first_unused = 0;
1332 return 0;
1333 }
Christoph Hellwigf2285c12017-08-29 15:44:12 -07001334
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001335 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1336 error = xfs_iread_extents(tp, ip, whichfork);
1337 if (error)
1338 return error;
1339 }
Christoph Hellwigf2285c12017-08-29 15:44:12 -07001340
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001341 lowest = max = *first_unused;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001342 for_each_xfs_iext(ifp, &icur, &got) {
Dave Chinner9e5987a72013-02-25 12:31:26 +11001343 /*
1344 * See if the hole before this extent will work.
1345 */
Christoph Hellwigf2285c12017-08-29 15:44:12 -07001346 if (got.br_startoff >= lowest + len &&
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001347 got.br_startoff - max >= len)
1348 break;
Christoph Hellwigf2285c12017-08-29 15:44:12 -07001349 lastaddr = got.br_startoff + got.br_blockcount;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001350 max = XFS_FILEOFF_MAX(lastaddr, lowest);
1351 }
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001352
Dave Chinner9e5987a72013-02-25 12:31:26 +11001353 *first_unused = max;
1354 return 0;
1355}
1356
1357/*
Zhi Yong Wu02bb4872013-08-12 03:14:54 +00001358 * Returns the file-relative block number of the last block - 1 before
Dave Chinner9e5987a72013-02-25 12:31:26 +11001359 * last_block (input value) in the file.
1360 * This is not based on i_size, it is based on the extent records.
1361 * Returns 0 for local files, as they do not have extent records.
1362 */
1363int /* error */
1364xfs_bmap_last_before(
Christoph Hellwig86685f72016-11-24 11:39:38 +11001365 struct xfs_trans *tp, /* transaction pointer */
1366 struct xfs_inode *ip, /* incore inode */
1367 xfs_fileoff_t *last_block, /* last block */
1368 int whichfork) /* data or attr fork */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001369{
Christoph Hellwig86685f72016-11-24 11:39:38 +11001370 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1371 struct xfs_bmbt_irec got;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001372 struct xfs_iext_cursor icur;
Christoph Hellwig86685f72016-11-24 11:39:38 +11001373 int error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001374
Christoph Hellwig86685f72016-11-24 11:39:38 +11001375 switch (XFS_IFORK_FORMAT(ip, whichfork)) {
1376 case XFS_DINODE_FMT_LOCAL:
Dave Chinner9e5987a72013-02-25 12:31:26 +11001377 *last_block = 0;
1378 return 0;
Christoph Hellwig86685f72016-11-24 11:39:38 +11001379 case XFS_DINODE_FMT_BTREE:
1380 case XFS_DINODE_FMT_EXTENTS:
1381 break;
1382 default:
1383 return -EIO;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001384 }
Christoph Hellwig86685f72016-11-24 11:39:38 +11001385
1386 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1387 error = xfs_iread_extents(tp, ip, whichfork);
1388 if (error)
1389 return error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001390 }
Christoph Hellwig86685f72016-11-24 11:39:38 +11001391
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001392 if (!xfs_iext_lookup_extent_before(ip, ifp, last_block, &icur, &got))
Christoph Hellwigdc560152017-10-23 16:32:39 -07001393 *last_block = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001394 return 0;
1395}
1396
Dave Chinner68988112013-08-12 20:49:42 +10001397int
Dave Chinner9e5987a72013-02-25 12:31:26 +11001398xfs_bmap_last_extent(
1399 struct xfs_trans *tp,
1400 struct xfs_inode *ip,
1401 int whichfork,
1402 struct xfs_bmbt_irec *rec,
1403 int *is_empty)
1404{
1405 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001406 struct xfs_iext_cursor icur;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001407 int error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001408
1409 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1410 error = xfs_iread_extents(tp, ip, whichfork);
1411 if (error)
1412 return error;
1413 }
1414
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001415 xfs_iext_last(ifp, &icur);
1416 if (!xfs_iext_get_extent(ifp, &icur, rec))
Dave Chinner9e5987a72013-02-25 12:31:26 +11001417 *is_empty = 1;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001418 else
1419 *is_empty = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001420 return 0;
1421}
1422
1423/*
1424 * Check the last inode extent to determine whether this allocation will result
1425 * in blocks being allocated at the end of the file. When we allocate new data
1426 * blocks at the end of the file which do not start at the previous data block,
1427 * we will try to align the new blocks at stripe unit boundaries.
1428 *
Dave Chinner6e708bc2013-11-22 10:41:16 +11001429 * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be
Dave Chinner9e5987a72013-02-25 12:31:26 +11001430 * at, or past the EOF.
1431 */
1432STATIC int
1433xfs_bmap_isaeof(
1434 struct xfs_bmalloca *bma,
1435 int whichfork)
1436{
1437 struct xfs_bmbt_irec rec;
1438 int is_empty;
1439 int error;
1440
Thomas Meyer749f24f2017-10-09 11:38:54 -07001441 bma->aeof = false;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001442 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec,
1443 &is_empty);
Dave Chinner6e708bc2013-11-22 10:41:16 +11001444 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11001445 return error;
1446
Dave Chinner6e708bc2013-11-22 10:41:16 +11001447 if (is_empty) {
Thomas Meyer749f24f2017-10-09 11:38:54 -07001448 bma->aeof = true;
Dave Chinner6e708bc2013-11-22 10:41:16 +11001449 return 0;
1450 }
1451
Dave Chinner9e5987a72013-02-25 12:31:26 +11001452 /*
1453 * Check if we are allocation or past the last extent, or at least into
1454 * the last delayed allocated extent.
1455 */
1456 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount ||
1457 (bma->offset >= rec.br_startoff &&
1458 isnullstartblock(rec.br_startblock));
1459 return 0;
1460}
1461
1462/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11001463 * Returns the file-relative block number of the first block past eof in
1464 * the file. This is not based on i_size, it is based on the extent records.
1465 * Returns 0 for local files, as they do not have extent records.
1466 */
1467int
1468xfs_bmap_last_offset(
Dave Chinner9e5987a72013-02-25 12:31:26 +11001469 struct xfs_inode *ip,
1470 xfs_fileoff_t *last_block,
1471 int whichfork)
1472{
1473 struct xfs_bmbt_irec rec;
1474 int is_empty;
1475 int error;
1476
1477 *last_block = 0;
1478
1479 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL)
1480 return 0;
1481
1482 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1483 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Dave Chinner24513372014-06-25 14:58:08 +10001484 return -EIO;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001485
1486 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty);
1487 if (error || is_empty)
1488 return error;
1489
1490 *last_block = rec.br_startoff + rec.br_blockcount;
1491 return 0;
1492}
1493
1494/*
1495 * Returns whether the selected fork of the inode has exactly one
1496 * block or not. For the data fork we check this matches di_size,
1497 * implying the file's range is 0..bsize-1.
1498 */
1499int /* 1=>1 block, 0=>otherwise */
1500xfs_bmap_one_block(
1501 xfs_inode_t *ip, /* incore inode */
1502 int whichfork) /* data or attr fork */
1503{
Dave Chinner9e5987a72013-02-25 12:31:26 +11001504 xfs_ifork_t *ifp; /* inode fork pointer */
1505 int rval; /* return value */
1506 xfs_bmbt_irec_t s; /* internal version of extent */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001507 struct xfs_iext_cursor icur;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001508
1509#ifndef DEBUG
1510 if (whichfork == XFS_DATA_FORK)
1511 return XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize;
1512#endif /* !DEBUG */
1513 if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1)
1514 return 0;
1515 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1516 return 0;
1517 ifp = XFS_IFORK_PTR(ip, whichfork);
1518 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001519 xfs_iext_first(ifp, &icur);
1520 xfs_iext_get_extent(ifp, &icur, &s);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001521 rval = s.br_startoff == 0 && s.br_blockcount == 1;
1522 if (rval && whichfork == XFS_DATA_FORK)
1523 ASSERT(XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize);
1524 return rval;
1525}
1526
1527/*
1528 * Extent tree manipulation functions used during allocation.
1529 */
1530
1531/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001532 * Convert a delayed allocation to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 */
1534STATIC int /* error */
1535xfs_bmap_add_extent_delay_real(
Darrick J. Wong60b49842016-10-03 09:11:34 -07001536 struct xfs_bmalloca *bma,
1537 int whichfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001539 struct xfs_bmbt_irec *new = &bma->got;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001542 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 xfs_fileoff_t new_endoff; /* end offset of new entry */
1544 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
1545 /* left is 0, right is 1, prev is 2 */
1546 int rval=0; /* return value (logging flags) */
Christoph Hellwig060ea652017-10-19 11:02:29 -07001547 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001548 xfs_filblks_t da_new; /* new count del alloc blocks used */
1549 xfs_filblks_t da_old; /* old count del alloc blocks used */
1550 xfs_filblks_t temp=0; /* value for da_new calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 int tmp_rval; /* partial logging flags */
Eric Sandeenc29aad42015-02-23 22:39:08 +11001552 struct xfs_mount *mp;
Darrick J. Wong60b49842016-10-03 09:11:34 -07001553 xfs_extnum_t *nextents;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001554 struct xfs_bmbt_irec old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Eric Sandeenf1f96c42016-01-04 16:10:42 +11001556 mp = bma->ip->i_mount;
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001557 ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001558 ASSERT(whichfork != XFS_ATTR_FORK);
1559 nextents = (whichfork == XFS_COW_FORK ? &bma->ip->i_cnextents :
1560 &bma->ip->i_d.di_nextents);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001561
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001562 ASSERT(!isnullstartblock(new->br_startblock));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001563 ASSERT(!bma->cur ||
1564 (bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001565
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001566 XFS_STATS_INC(mp, xs_add_exlist);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568#define LEFT r[0]
1569#define RIGHT r[1]
1570#define PREV r[2]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 /*
1573 * Set up a bunch of variables to make the tests simpler.
1574 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001575 xfs_iext_get_extent(ifp, &bma->icur, &PREV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 new_endoff = new->br_startoff + new->br_blockcount;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001577 ASSERT(isnullstartblock(PREV.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 ASSERT(PREV.br_startoff <= new->br_startoff);
1579 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001580
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001581 da_old = startblockval(PREV.br_startblock);
1582 da_new = 0;
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 /*
1585 * Set flags determining what part of the previous delayed allocation
1586 * extent is being replaced by a real allocation.
1587 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001588 if (PREV.br_startoff == new->br_startoff)
1589 state |= BMAP_LEFT_FILLING;
1590 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
1591 state |= BMAP_RIGHT_FILLING;
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 /*
1594 * Check and set flags if this segment has a left neighbor.
1595 * Don't set contiguous if the combined extent would be too large.
1596 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001597 if (xfs_iext_peek_prev_extent(ifp, &bma->icur, &LEFT)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001598 state |= BMAP_LEFT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001599 if (isnullstartblock(LEFT.br_startblock))
1600 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001602
1603 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
1604 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
1605 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
1606 LEFT.br_state == new->br_state &&
1607 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1608 state |= BMAP_LEFT_CONTIG;
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 /*
1611 * Check and set flags if this segment has a right neighbor.
1612 * Don't set contiguous if the combined extent would be too large.
1613 * Also check for all-three-contiguous being too large.
1614 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001615 if (xfs_iext_peek_next_extent(ifp, &bma->icur, &RIGHT)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001616 state |= BMAP_RIGHT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001617 if (isnullstartblock(RIGHT.br_startblock))
1618 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001620
1621 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1622 new_endoff == RIGHT.br_startoff &&
1623 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
1624 new->br_state == RIGHT.br_state &&
1625 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1626 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1627 BMAP_RIGHT_FILLING)) !=
1628 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1629 BMAP_RIGHT_FILLING) ||
1630 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1631 <= MAXEXTLEN))
1632 state |= BMAP_RIGHT_CONTIG;
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 error = 0;
1635 /*
1636 * Switch out based on the FILLING and CONTIG state bits.
1637 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001638 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1639 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
1640 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1641 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 /*
1643 * Filling in all of a previously delayed allocation extent.
1644 * The left and right neighbors are both contiguous with new.
1645 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001646 LEFT.br_blockcount += PREV.br_blockcount + RIGHT.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001647
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07001648 xfs_iext_remove(bma->ip, &bma->icur, state);
1649 xfs_iext_remove(bma->ip, &bma->icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001650 xfs_iext_prev(ifp, &bma->icur);
1651 xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001652 (*nextents)--;
Christoph Hellwig0d045542017-11-03 10:34:39 -07001653
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001654 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1656 else {
1657 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001658 error = xfs_bmbt_lookup_eq(bma->cur, &RIGHT, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001659 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001661 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001662 error = xfs_btree_delete(bma->cur, &i);
1663 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001665 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001666 error = xfs_btree_decrement(bma->cur, 0, &i);
1667 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001669 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07001670 error = xfs_bmbt_update(bma->cur, &LEFT);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001671 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 goto done;
1673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 break;
1675
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001676 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 /*
1678 * Filling in all of a previously delayed allocation extent.
1679 * The left neighbor is contiguous, the right is not.
1680 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001681 old = LEFT;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001682 LEFT.br_blockcount += PREV.br_blockcount;
Christoph Hellwig0d045542017-11-03 10:34:39 -07001683
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07001684 xfs_iext_remove(bma->ip, &bma->icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001685 xfs_iext_prev(ifp, &bma->icur);
1686 xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001687
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001688 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 rval = XFS_ILOG_DEXT;
1690 else {
1691 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001692 error = xfs_bmbt_lookup_eq(bma->cur, &old, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001693 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001695 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07001696 error = xfs_bmbt_update(bma->cur, &LEFT);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001697 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 goto done;
1699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 break;
1701
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001702 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 /*
1704 * Filling in all of a previously delayed allocation extent.
1705 * The right neighbor is contiguous, the left is not.
1706 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001707 PREV.br_startblock = new->br_startblock;
1708 PREV.br_blockcount += RIGHT.br_blockcount;
Christoph Hellwig0d045542017-11-03 10:34:39 -07001709
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001710 xfs_iext_next(ifp, &bma->icur);
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07001711 xfs_iext_remove(bma->ip, &bma->icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001712 xfs_iext_prev(ifp, &bma->icur);
1713 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001714
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001715 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 rval = XFS_ILOG_DEXT;
1717 else {
1718 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001719 error = xfs_bmbt_lookup_eq(bma->cur, &RIGHT, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001720 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001722 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07001723 error = xfs_bmbt_update(bma->cur, &PREV);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001724 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 goto done;
1726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 break;
1728
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001729 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 /*
1731 * Filling in all of a previously delayed allocation extent.
1732 * Neither the left nor right neighbors are contiguous with
1733 * the new one.
1734 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001735 PREV.br_startblock = new->br_startblock;
1736 PREV.br_state = new->br_state;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001737 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001738
Darrick J. Wong60b49842016-10-03 09:11:34 -07001739 (*nextents)++;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001740 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1742 else {
1743 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001744 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001745 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001747 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001748 error = xfs_btree_insert(bma->cur, &i);
1749 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001751 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 break;
1754
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001755 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 /*
1757 * Filling in the first part of a previous delayed allocation.
1758 * The left neighbor is contiguous.
1759 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001760 old = LEFT;
1761 temp = PREV.br_blockcount - new->br_blockcount;
1762 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1763 startblockval(PREV.br_startblock));
1764
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001765 LEFT.br_blockcount += new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001766
Christoph Hellwigbf999712017-11-03 10:34:38 -07001767 PREV.br_blockcount = temp;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001768 PREV.br_startoff += new->br_blockcount;
1769 PREV.br_startblock = nullstartblock(da_new);
Christoph Hellwig0d045542017-11-03 10:34:39 -07001770
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001771 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
1772 xfs_iext_prev(ifp, &bma->icur);
1773 xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT);
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001774
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001775 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 rval = XFS_ILOG_DEXT;
1777 else {
1778 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001779 error = xfs_bmbt_lookup_eq(bma->cur, &old, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001780 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001782 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07001783 error = xfs_bmbt_update(bma->cur, &LEFT);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001784 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 goto done;
1786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 break;
1788
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001789 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 /*
1791 * Filling in the first part of a previous delayed allocation.
1792 * The left neighbor is not contiguous.
1793 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001794 xfs_iext_update_extent(bma->ip, state, &bma->icur, new);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001795 (*nextents)++;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001796 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1798 else {
1799 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001800 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001801 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001803 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001804 error = xfs_btree_insert(bma->cur, &i);
1805 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001807 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00001809
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001810 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001811 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001812 bma->firstblock, bma->dfops,
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001813 &bma->cur, 1, &tmp_rval, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 rval |= tmp_rval;
1815 if (error)
1816 goto done;
1817 }
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001818
1819 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001820 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06001821 startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001822 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001823
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001824 PREV.br_startoff = new_endoff;
1825 PREV.br_blockcount = temp;
1826 PREV.br_startblock = nullstartblock(da_new);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001827 xfs_iext_next(ifp, &bma->icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07001828 xfs_iext_insert(bma->ip, &bma->icur, &PREV, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001829 xfs_iext_prev(ifp, &bma->icur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 break;
1831
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001832 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 /*
1834 * Filling in the last part of a previous delayed allocation.
1835 * The right neighbor is contiguous with the new allocation.
1836 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001837 old = RIGHT;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001838 RIGHT.br_startoff = new->br_startoff;
1839 RIGHT.br_startblock = new->br_startblock;
1840 RIGHT.br_blockcount += new->br_blockcount;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001841
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001842 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 rval = XFS_ILOG_DEXT;
1844 else {
1845 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001846 error = xfs_bmbt_lookup_eq(bma->cur, &old, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001847 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001849 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07001850 error = xfs_bmbt_update(bma->cur, &RIGHT);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001851 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 goto done;
1853 }
Christoph Hellwigec90c552011-05-23 08:52:53 +00001854
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001855 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001856 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06001857 startblockval(PREV.br_startblock));
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001858
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001859 PREV.br_blockcount = temp;
1860 PREV.br_startblock = nullstartblock(da_new);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001861
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001862 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
1863 xfs_iext_next(ifp, &bma->icur);
1864 xfs_iext_update_extent(bma->ip, state, &bma->icur, &RIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 break;
1866
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001867 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 /*
1869 * Filling in the last part of a previous delayed allocation.
1870 * The right neighbor is not contiguous.
1871 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001872 xfs_iext_update_extent(bma->ip, state, &bma->icur, new);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001873 (*nextents)++;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001874 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1876 else {
1877 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001878 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001879 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001881 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001882 error = xfs_btree_insert(bma->cur, &i);
1883 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001885 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00001887
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001888 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001889 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001890 bma->firstblock, bma->dfops, &bma->cur, 1,
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001891 &tmp_rval, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 rval |= tmp_rval;
1893 if (error)
1894 goto done;
1895 }
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001896
1897 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001898 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06001899 startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001900 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001901
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001902 PREV.br_startblock = nullstartblock(da_new);
1903 PREV.br_blockcount = temp;
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07001904 xfs_iext_insert(bma->ip, &bma->icur, &PREV, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001905 xfs_iext_next(ifp, &bma->icur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 break;
1907
1908 case 0:
1909 /*
1910 * Filling in the middle part of a previous delayed allocation.
1911 * Contiguity is impossible here.
1912 * This case is avoided almost all the time.
bpm@sgi.com24446fc2011-01-19 17:41:58 +00001913 *
1914 * We start with a delayed allocation:
1915 *
1916 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
1917 * PREV @ idx
1918 *
1919 * and we are allocating:
1920 * +rrrrrrrrrrrrrrrrr+
1921 * new
1922 *
1923 * and we set it up for insertion as:
1924 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
1925 * new
1926 * PREV @ idx LEFT RIGHT
1927 * inserted at idx + 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001929 old = PREV;
1930
1931 /* LEFT is the new middle */
bpm@sgi.com24446fc2011-01-19 17:41:58 +00001932 LEFT = *new;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001933
1934 /* RIGHT is the new right */
bpm@sgi.com24446fc2011-01-19 17:41:58 +00001935 RIGHT.br_state = PREV.br_state;
bpm@sgi.com24446fc2011-01-19 17:41:58 +00001936 RIGHT.br_startoff = new_endoff;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001937 RIGHT.br_blockcount =
1938 PREV.br_startoff + PREV.br_blockcount - new_endoff;
1939 RIGHT.br_startblock =
1940 nullstartblock(xfs_bmap_worst_indlen(bma->ip,
1941 RIGHT.br_blockcount));
1942
1943 /* truncate PREV */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001944 PREV.br_blockcount = new->br_startoff - PREV.br_startoff;
1945 PREV.br_startblock =
1946 nullstartblock(xfs_bmap_worst_indlen(bma->ip,
1947 PREV.br_blockcount));
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001948 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001949
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001950 xfs_iext_next(ifp, &bma->icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07001951 xfs_iext_insert(bma->ip, &bma->icur, &RIGHT, state);
1952 xfs_iext_insert(bma->ip, &bma->icur, &LEFT, state);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001953 (*nextents)++;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001954
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001955 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1957 else {
1958 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001959 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001960 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001962 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001963 error = xfs_btree_insert(bma->cur, &i);
1964 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001966 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00001968
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001969 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001970 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001971 bma->firstblock, bma->dfops, &bma->cur,
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001972 1, &tmp_rval, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 rval |= tmp_rval;
1974 if (error)
1975 goto done;
1976 }
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001977
1978 da_new = startblockval(PREV.br_startblock) +
1979 startblockval(RIGHT.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 break;
1981
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001982 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1983 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1984 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
1985 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
1986 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1987 case BMAP_LEFT_CONTIG:
1988 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 /*
1990 * These cases are all impossible.
1991 */
1992 ASSERT(0);
1993 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001994
Darrick J. Wong95eb3082018-05-09 10:02:32 -07001995 /* add reverse mapping unless caller opted out */
1996 if (!(bma->flags & XFS_BMAPI_NORMAP)) {
1997 error = xfs_rmap_map_extent(mp, bma->dfops, bma->ip,
1998 whichfork, new);
1999 if (error)
2000 goto done;
2001 }
Darrick J. Wong9c194642016-08-03 12:16:05 +10002002
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002003 /* convert to a btree if necessary */
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11002004 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002005 int tmp_logflags; /* partial log flag return val */
2006
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002007 ASSERT(bma->cur == NULL);
2008 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002009 bma->firstblock, bma->dfops, &bma->cur,
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11002010 da_old > 0, &tmp_logflags, whichfork);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002011 bma->logflags |= tmp_logflags;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002012 if (error)
2013 goto done;
2014 }
2015
Christoph Hellwigca1862b2017-10-17 14:16:25 -07002016 if (bma->cur) {
2017 da_new += bma->cur->bc_private.b.allocated;
2018 bma->cur->bc_private.b.allocated = 0;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002019 }
2020
Christoph Hellwigca1862b2017-10-17 14:16:25 -07002021 /* adjust for changes in reserved delayed indirect blocks */
2022 if (da_new != da_old) {
2023 ASSERT(state == 0 || da_new < da_old);
2024 error = xfs_mod_fdblocks(mp, (int64_t)(da_old - da_new),
2025 false);
2026 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002027
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11002028 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029done:
Darrick J. Wong60b49842016-10-03 09:11:34 -07002030 if (whichfork != XFS_COW_FORK)
2031 bma->logflags |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return error;
2033#undef LEFT
2034#undef RIGHT
2035#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036}
2037
2038/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002039 * Convert an unwritten allocation to a real allocation or vice versa.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 */
2041STATIC int /* error */
2042xfs_bmap_add_extent_unwritten_real(
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002043 struct xfs_trans *tp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 xfs_inode_t *ip, /* incore inode pointer */
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002045 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002046 struct xfs_iext_cursor *icur,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002048 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002049 xfs_fsblock_t *first, /* pointer to firstblock variable */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002050 struct xfs_defer_ops *dfops, /* list of extents to be freed */
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002051 int *logflagsp) /* inode logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 xfs_btree_cur_t *cur; /* btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002056 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 xfs_fileoff_t new_endoff; /* end offset of new entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
2059 /* left is 0, right is 1, prev is 2 */
2060 int rval=0; /* return value (logging flags) */
Christoph Hellwig060ea652017-10-19 11:02:29 -07002061 int state = xfs_bmap_fork_to_state(whichfork);
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002062 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002063 struct xfs_bmbt_irec old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002065 *logflagsp = 0;
2066
2067 cur = *curp;
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002068 ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002069
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002070 ASSERT(!isnullstartblock(new->br_startblock));
2071
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11002072 XFS_STATS_INC(mp, xs_add_exlist);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074#define LEFT r[0]
2075#define RIGHT r[1]
2076#define PREV r[2]
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 /*
2079 * Set up a bunch of variables to make the tests simpler.
2080 */
2081 error = 0;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002082 xfs_iext_get_extent(ifp, icur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002083 ASSERT(new->br_state != PREV.br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 new_endoff = new->br_startoff + new->br_blockcount;
2085 ASSERT(PREV.br_startoff <= new->br_startoff);
2086 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 /*
2089 * Set flags determining what part of the previous oldext allocation
2090 * extent is being replaced by a newext allocation.
2091 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002092 if (PREV.br_startoff == new->br_startoff)
2093 state |= BMAP_LEFT_FILLING;
2094 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
2095 state |= BMAP_RIGHT_FILLING;
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 /*
2098 * Check and set flags if this segment has a left neighbor.
2099 * Don't set contiguous if the combined extent would be too large.
2100 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002101 if (xfs_iext_peek_prev_extent(ifp, icur, &LEFT)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002102 state |= BMAP_LEFT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002103 if (isnullstartblock(LEFT.br_startblock))
2104 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002106
2107 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2108 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
2109 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002110 LEFT.br_state == new->br_state &&
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002111 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2112 state |= BMAP_LEFT_CONTIG;
2113
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 /*
2115 * Check and set flags if this segment has a right neighbor.
2116 * Don't set contiguous if the combined extent would be too large.
2117 * Also check for all-three-contiguous being too large.
2118 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002119 if (xfs_iext_peek_next_extent(ifp, icur, &RIGHT)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002120 state |= BMAP_RIGHT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002121 if (isnullstartblock(RIGHT.br_startblock))
2122 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002124
2125 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2126 new_endoff == RIGHT.br_startoff &&
2127 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002128 new->br_state == RIGHT.br_state &&
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002129 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
2130 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2131 BMAP_RIGHT_FILLING)) !=
2132 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2133 BMAP_RIGHT_FILLING) ||
2134 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
2135 <= MAXEXTLEN))
2136 state |= BMAP_RIGHT_CONTIG;
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 /*
2139 * Switch out based on the FILLING and CONTIG state bits.
2140 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002141 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2142 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
2143 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2144 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 /*
2146 * Setting all of a previous oldext extent to newext.
2147 * The left and right neighbors are both contiguous with new.
2148 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002149 LEFT.br_blockcount += PREV.br_blockcount + RIGHT.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002150
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002151 xfs_iext_remove(ip, icur, state);
2152 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002153 xfs_iext_prev(ifp, icur);
2154 xfs_iext_update_extent(ip, state, icur, &LEFT);
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002155 XFS_IFORK_NEXT_SET(ip, whichfork,
2156 XFS_IFORK_NEXTENTS(ip, whichfork) - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 if (cur == NULL)
2158 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2159 else {
2160 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002161 error = xfs_bmbt_lookup_eq(cur, &RIGHT, &i);
2162 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002164 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002165 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002167 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002168 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002170 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002171 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002173 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002174 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002176 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002177 error = xfs_bmbt_update(cur, &LEFT);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002178 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 goto done;
2180 }
2181 break;
2182
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002183 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 /*
2185 * Setting all of a previous oldext extent to newext.
2186 * The left neighbor is contiguous, the right is not.
2187 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002188 LEFT.br_blockcount += PREV.br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002189
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002190 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002191 xfs_iext_prev(ifp, icur);
2192 xfs_iext_update_extent(ip, state, icur, &LEFT);
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002193 XFS_IFORK_NEXT_SET(ip, whichfork,
2194 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 if (cur == NULL)
2196 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2197 else {
2198 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002199 error = xfs_bmbt_lookup_eq(cur, &PREV, &i);
2200 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002202 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002203 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002205 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002206 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002208 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002209 error = xfs_bmbt_update(cur, &LEFT);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002210 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 goto done;
2212 }
2213 break;
2214
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002215 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 /*
2217 * Setting all of a previous oldext extent to newext.
2218 * The right neighbor is contiguous, the left is not.
2219 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002220 PREV.br_blockcount += RIGHT.br_blockcount;
2221 PREV.br_state = new->br_state;
Christoph Hellwiga6818472017-11-03 10:34:40 -07002222
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002223 xfs_iext_next(ifp, icur);
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002224 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002225 xfs_iext_prev(ifp, icur);
2226 xfs_iext_update_extent(ip, state, icur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002227
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002228 XFS_IFORK_NEXT_SET(ip, whichfork,
2229 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 if (cur == NULL)
2231 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2232 else {
2233 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002234 error = xfs_bmbt_lookup_eq(cur, &RIGHT, &i);
2235 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002237 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002238 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002240 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002241 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002243 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002244 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002245 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 goto done;
2247 }
2248 break;
2249
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002250 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 /*
2252 * Setting all of a previous oldext extent to newext.
2253 * Neither the left nor right neighbors are contiguous with
2254 * the new one.
2255 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002256 PREV.br_state = new->br_state;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002257 xfs_iext_update_extent(ip, state, icur, &PREV);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 if (cur == NULL)
2260 rval = XFS_ILOG_DEXT;
2261 else {
2262 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002263 error = xfs_bmbt_lookup_eq(cur, new, &i);
2264 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002266 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002267 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002268 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 goto done;
2270 }
2271 break;
2272
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002273 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 /*
2275 * Setting the first part of a previous oldext extent to newext.
2276 * The left neighbor is contiguous.
2277 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002278 LEFT.br_blockcount += new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002279
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002280 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002281 PREV.br_startoff += new->br_blockcount;
2282 PREV.br_startblock += new->br_blockcount;
2283 PREV.br_blockcount -= new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002284
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002285 xfs_iext_update_extent(ip, state, icur, &PREV);
2286 xfs_iext_prev(ifp, icur);
2287 xfs_iext_update_extent(ip, state, icur, &LEFT);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002288
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 if (cur == NULL)
2290 rval = XFS_ILOG_DEXT;
2291 else {
2292 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002293 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002294 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002296 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002297 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002298 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 goto done;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002300 error = xfs_btree_decrement(cur, 0, &i);
2301 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 goto done;
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002303 error = xfs_bmbt_update(cur, &LEFT);
Christoph Hellwigb0eab142011-09-18 20:41:06 +00002304 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 goto done;
2306 }
2307 break;
2308
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002309 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 /*
2311 * Setting the first part of a previous oldext extent to newext.
2312 * The left neighbor is not contiguous.
2313 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002314 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002315 PREV.br_startoff += new->br_blockcount;
2316 PREV.br_startblock += new->br_blockcount;
2317 PREV.br_blockcount -= new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002318
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002319 xfs_iext_update_extent(ip, state, icur, &PREV);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002320 xfs_iext_insert(ip, icur, new, state);
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002321 XFS_IFORK_NEXT_SET(ip, whichfork,
2322 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 if (cur == NULL)
2324 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2325 else {
2326 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002327 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002328 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002330 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002331 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002332 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 goto done;
2334 cur->bc_rec.b = *new;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002335 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002337 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 }
2339 break;
2340
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002341 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 /*
2343 * Setting the last part of a previous oldext extent to newext.
2344 * The right neighbor is contiguous with the new allocation.
2345 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002346 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002347 PREV.br_blockcount -= new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002348
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002349 RIGHT.br_startoff = new->br_startoff;
2350 RIGHT.br_startblock = new->br_startblock;
2351 RIGHT.br_blockcount += new->br_blockcount;
Christoph Hellwiga6818472017-11-03 10:34:40 -07002352
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002353 xfs_iext_update_extent(ip, state, icur, &PREV);
2354 xfs_iext_next(ifp, icur);
2355 xfs_iext_update_extent(ip, state, icur, &RIGHT);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 if (cur == NULL)
2358 rval = XFS_ILOG_DEXT;
2359 else {
2360 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002361 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002362 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002364 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002365 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002366 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 goto done;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002368 error = xfs_btree_increment(cur, 0, &i);
2369 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 goto done;
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002371 error = xfs_bmbt_update(cur, &RIGHT);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002372 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 goto done;
2374 }
2375 break;
2376
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002377 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 /*
2379 * Setting the last part of a previous oldext extent to newext.
2380 * The right neighbor is not contiguous.
2381 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002382 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002383 PREV.br_blockcount -= new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002384
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002385 xfs_iext_update_extent(ip, state, icur, &PREV);
2386 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002387 xfs_iext_insert(ip, icur, new, state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002388
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002389 XFS_IFORK_NEXT_SET(ip, whichfork,
2390 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 if (cur == NULL)
2392 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2393 else {
2394 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002395 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002396 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002398 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002399 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002400 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 goto done;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002402 error = xfs_bmbt_lookup_eq(cur, new, &i);
2403 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002405 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002406 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002408 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 }
2410 break;
2411
2412 case 0:
2413 /*
2414 * Setting the middle part of a previous oldext extent to
2415 * newext. Contiguity is impossible here.
2416 * One extent becomes three extents.
2417 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002418 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002419 PREV.br_blockcount = new->br_startoff - PREV.br_startoff;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 r[0] = *new;
2422 r[1].br_startoff = new_endoff;
2423 r[1].br_blockcount =
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002424 old.br_startoff + old.br_blockcount - new_endoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 r[1].br_startblock = new->br_startblock + new->br_blockcount;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002426 r[1].br_state = PREV.br_state;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002427
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002428 xfs_iext_update_extent(ip, state, icur, &PREV);
2429 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002430 xfs_iext_insert(ip, icur, &r[1], state);
2431 xfs_iext_insert(ip, icur, &r[0], state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002432
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002433 XFS_IFORK_NEXT_SET(ip, whichfork,
2434 XFS_IFORK_NEXTENTS(ip, whichfork) + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 if (cur == NULL)
2436 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2437 else {
2438 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002439 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002440 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002442 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 /* new right extent - oldext */
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002444 error = xfs_bmbt_update(cur, &r[1]);
2445 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 goto done;
2447 /* new left extent - oldext */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 cur->bc_rec.b = PREV;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002449 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002451 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10002452 /*
2453 * Reset the cursor to the position of the new extent
2454 * we are about to insert as we can't trust it after
2455 * the previous insert.
2456 */
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002457 error = xfs_bmbt_lookup_eq(cur, new, &i);
2458 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002460 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 /* new middle extent - newext */
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002462 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002464 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 }
2466 break;
2467
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002468 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2469 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2470 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2471 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2472 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2473 case BMAP_LEFT_CONTIG:
2474 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 /*
2476 * These cases are all impossible.
2477 */
2478 ASSERT(0);
2479 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002480
Darrick J. Wong9c194642016-08-03 12:16:05 +10002481 /* update reverse mappings */
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002482 error = xfs_rmap_convert_extent(mp, dfops, ip, whichfork, new);
Darrick J. Wong9c194642016-08-03 12:16:05 +10002483 if (error)
2484 goto done;
2485
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002486 /* convert to a btree if necessary */
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002487 if (xfs_bmap_needs_btree(ip, whichfork)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002488 int tmp_logflags; /* partial log flag return val */
2489
2490 ASSERT(cur == NULL);
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10002491 error = xfs_bmap_extents_to_btree(tp, ip, first, dfops, &cur,
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002492 0, &tmp_logflags, whichfork);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002493 *logflagsp |= tmp_logflags;
2494 if (error)
2495 goto done;
2496 }
2497
2498 /* clear out the allocated field, done with it now in any case. */
2499 if (cur) {
2500 cur->bc_private.b.allocated = 0;
2501 *curp = cur;
2502 }
2503
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002504 xfs_bmap_check_leaf_extents(*curp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505done:
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002506 *logflagsp |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return error;
2508#undef LEFT
2509#undef RIGHT
2510#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511}
2512
2513/*
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002514 * Convert a hole to a delayed allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 */
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002516STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517xfs_bmap_add_extent_hole_delay(
2518 xfs_inode_t *ip, /* incore inode pointer */
Darrick J. Wongbe51f812016-10-03 09:11:32 -07002519 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002520 struct xfs_iext_cursor *icur,
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002521 xfs_bmbt_irec_t *new) /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522{
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002523 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2525 xfs_filblks_t newlen=0; /* new indirect size */
2526 xfs_filblks_t oldlen=0; /* old indirect size */
2527 xfs_bmbt_irec_t right; /* right neighbor extent entry */
Christoph Hellwig060ea652017-10-19 11:02:29 -07002528 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwig3ffc18e2017-10-17 14:16:23 -07002529 xfs_filblks_t temp; /* temp for indirect calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Darrick J. Wongbe51f812016-10-03 09:11:32 -07002531 ifp = XFS_IFORK_PTR(ip, whichfork);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002532 ASSERT(isnullstartblock(new->br_startblock));
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 /*
2535 * Check and set flags if this segment has a left neighbor
2536 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002537 if (xfs_iext_peek_prev_extent(ifp, icur, &left)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002538 state |= BMAP_LEFT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002539 if (isnullstartblock(left.br_startblock))
2540 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 /*
2544 * Check and set flags if the current (right) segment exists.
2545 * If it doesn't exist, we're converting the hole at end-of-file.
2546 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002547 if (xfs_iext_get_extent(ifp, icur, &right)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002548 state |= BMAP_RIGHT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002549 if (isnullstartblock(right.br_startblock))
2550 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 /*
2554 * Set contiguity flags on the left and right neighbors.
2555 * Don't let extents get too large, even if the pieces are contiguous.
2556 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002557 if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) &&
2558 left.br_startoff + left.br_blockcount == new->br_startoff &&
2559 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2560 state |= BMAP_LEFT_CONTIG;
2561
2562 if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) &&
2563 new->br_startoff + new->br_blockcount == right.br_startoff &&
2564 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2565 (!(state & BMAP_LEFT_CONTIG) ||
2566 (left.br_blockcount + new->br_blockcount +
2567 right.br_blockcount <= MAXEXTLEN)))
2568 state |= BMAP_RIGHT_CONTIG;
2569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 /*
2571 * Switch out based on the contiguity flags.
2572 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002573 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2574 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 /*
2576 * New allocation is contiguous with delayed allocations
2577 * on the left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002578 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 */
2580 temp = left.br_blockcount + new->br_blockcount +
2581 right.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002582
Eric Sandeen9d87c312009-01-14 23:22:07 -06002583 oldlen = startblockval(left.br_startblock) +
2584 startblockval(new->br_startblock) +
2585 startblockval(right.br_startblock);
Brian Foster0e339ef2017-02-13 22:48:18 -08002586 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2587 oldlen);
Christoph Hellwig3ffc18e2017-10-17 14:16:23 -07002588 left.br_startblock = nullstartblock(newlen);
2589 left.br_blockcount = temp;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002590
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002591 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002592 xfs_iext_prev(ifp, icur);
2593 xfs_iext_update_extent(ip, state, icur, &left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 break;
2595
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002596 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 /*
2598 * New allocation is contiguous with a delayed allocation
2599 * on the left.
2600 * Merge the new allocation with the left neighbor.
2601 */
2602 temp = left.br_blockcount + new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002603
Eric Sandeen9d87c312009-01-14 23:22:07 -06002604 oldlen = startblockval(left.br_startblock) +
2605 startblockval(new->br_startblock);
Brian Foster0e339ef2017-02-13 22:48:18 -08002606 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2607 oldlen);
Christoph Hellwig3ffc18e2017-10-17 14:16:23 -07002608 left.br_blockcount = temp;
2609 left.br_startblock = nullstartblock(newlen);
Christoph Hellwig41d196f2017-11-03 10:34:39 -07002610
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002611 xfs_iext_prev(ifp, icur);
2612 xfs_iext_update_extent(ip, state, icur, &left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 break;
2614
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002615 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 /*
2617 * New allocation is contiguous with a delayed allocation
2618 * on the right.
2619 * Merge the new allocation with the right neighbor.
2620 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 temp = new->br_blockcount + right.br_blockcount;
Eric Sandeen9d87c312009-01-14 23:22:07 -06002622 oldlen = startblockval(new->br_startblock) +
2623 startblockval(right.br_startblock);
Brian Foster0e339ef2017-02-13 22:48:18 -08002624 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2625 oldlen);
Christoph Hellwig3ffc18e2017-10-17 14:16:23 -07002626 right.br_startoff = new->br_startoff;
2627 right.br_startblock = nullstartblock(newlen);
2628 right.br_blockcount = temp;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002629 xfs_iext_update_extent(ip, state, icur, &right);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 break;
2631
2632 case 0:
2633 /*
2634 * New allocation is not contiguous with another
2635 * delayed allocation.
2636 * Insert a new entry.
2637 */
2638 oldlen = newlen = 0;
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002639 xfs_iext_insert(ip, icur, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 break;
2641 }
2642 if (oldlen != newlen) {
2643 ASSERT(oldlen > newlen);
Dave Chinner0d485ad2015-02-23 21:22:03 +11002644 xfs_mod_fdblocks(ip->i_mount, (int64_t)(oldlen - newlen),
2645 false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 /*
2647 * Nothing to do for disk quota accounting here.
2648 */
2649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650}
2651
2652/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002653 * Convert a hole to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 */
2655STATIC int /* error */
2656xfs_bmap_add_extent_hole_real(
Christoph Hellwig6d045582017-04-11 16:45:54 -07002657 struct xfs_trans *tp,
2658 struct xfs_inode *ip,
2659 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002660 struct xfs_iext_cursor *icur,
Christoph Hellwig6d045582017-04-11 16:45:54 -07002661 struct xfs_btree_cur **curp,
2662 struct xfs_bmbt_irec *new,
2663 xfs_fsblock_t *first,
2664 struct xfs_defer_ops *dfops,
Darrick J. Wong95eb3082018-05-09 10:02:32 -07002665 int *logflagsp,
2666 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
Christoph Hellwig6d045582017-04-11 16:45:54 -07002668 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
2669 struct xfs_mount *mp = ip->i_mount;
2670 struct xfs_btree_cur *cur = *curp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 int i; /* temp state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2674 xfs_bmbt_irec_t right; /* right neighbor extent entry */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002675 int rval=0; /* return value (logging flags) */
Christoph Hellwig060ea652017-10-19 11:02:29 -07002676 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002677 struct xfs_bmbt_irec old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002679 ASSERT(!isnullstartblock(new->br_startblock));
Christoph Hellwig6d045582017-04-11 16:45:54 -07002680 ASSERT(!cur || !(cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002681
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11002682 XFS_STATS_INC(mp, xs_add_exlist);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002683
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 /*
2685 * Check and set flags if this segment has a left neighbor.
2686 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002687 if (xfs_iext_peek_prev_extent(ifp, icur, &left)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002688 state |= BMAP_LEFT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002689 if (isnullstartblock(left.br_startblock))
2690 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002692
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 /*
2694 * Check and set flags if this segment has a current value.
2695 * Not true if we're inserting into the "hole" at eof.
2696 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002697 if (xfs_iext_get_extent(ifp, icur, &right)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002698 state |= BMAP_RIGHT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002699 if (isnullstartblock(right.br_startblock))
2700 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 /*
2704 * We're inserting a real allocation between "left" and "right".
2705 * Set the contiguity flags. Don't let extents get too large.
2706 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002707 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2708 left.br_startoff + left.br_blockcount == new->br_startoff &&
2709 left.br_startblock + left.br_blockcount == new->br_startblock &&
2710 left.br_state == new->br_state &&
2711 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2712 state |= BMAP_LEFT_CONTIG;
2713
2714 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2715 new->br_startoff + new->br_blockcount == right.br_startoff &&
2716 new->br_startblock + new->br_blockcount == right.br_startblock &&
2717 new->br_state == right.br_state &&
2718 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2719 (!(state & BMAP_LEFT_CONTIG) ||
2720 left.br_blockcount + new->br_blockcount +
2721 right.br_blockcount <= MAXEXTLEN))
2722 state |= BMAP_RIGHT_CONTIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002724 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 /*
2726 * Select which case we're in here, and implement it.
2727 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002728 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2729 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 /*
2731 * New allocation is contiguous with real allocations on the
2732 * left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002733 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 */
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002735 left.br_blockcount += new->br_blockcount + right.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002736
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002737 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002738 xfs_iext_prev(ifp, icur);
2739 xfs_iext_update_extent(ip, state, icur, &left);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002740
Christoph Hellwig6d045582017-04-11 16:45:54 -07002741 XFS_IFORK_NEXT_SET(ip, whichfork,
2742 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
2743 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002744 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002745 } else {
2746 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002747 error = xfs_bmbt_lookup_eq(cur, &right, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002748 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002749 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002750 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002751 error = xfs_btree_delete(cur, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002752 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002753 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002754 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002755 error = xfs_btree_decrement(cur, 0, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002756 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002757 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002758 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002759 error = xfs_bmbt_update(cur, &left);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002760 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002761 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002763 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002765 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 /*
2767 * New allocation is contiguous with a real allocation
2768 * on the left.
2769 * Merge the new allocation with the left neighbor.
2770 */
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002771 old = left;
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002772 left.br_blockcount += new->br_blockcount;
Christoph Hellwig1d2e0082017-11-03 10:34:40 -07002773
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002774 xfs_iext_prev(ifp, icur);
2775 xfs_iext_update_extent(ip, state, icur, &left);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002776
Christoph Hellwig6d045582017-04-11 16:45:54 -07002777 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002778 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002779 } else {
2780 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002781 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002782 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002783 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002784 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002785 error = xfs_bmbt_update(cur, &left);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002786 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002787 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002789 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002791 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 /*
2793 * New allocation is contiguous with a real allocation
2794 * on the right.
2795 * Merge the new allocation with the right neighbor.
2796 */
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002797 old = right;
Christoph Hellwigca5d8e5b2017-10-19 11:04:44 -07002798
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002799 right.br_startoff = new->br_startoff;
2800 right.br_startblock = new->br_startblock;
2801 right.br_blockcount += new->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002802 xfs_iext_update_extent(ip, state, icur, &right);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002803
Christoph Hellwig6d045582017-04-11 16:45:54 -07002804 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002805 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002806 } else {
2807 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002808 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002809 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002810 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002811 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002812 error = xfs_bmbt_update(cur, &right);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002813 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002814 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002816 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
2818 case 0:
2819 /*
2820 * New allocation is not contiguous with another
2821 * real allocation.
2822 * Insert a new entry.
2823 */
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002824 xfs_iext_insert(ip, icur, new, state);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002825 XFS_IFORK_NEXT_SET(ip, whichfork,
2826 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
2827 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002828 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002829 } else {
2830 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002831 error = xfs_bmbt_lookup_eq(cur, new, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002832 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002833 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002834 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002835 error = xfs_btree_insert(cur, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002836 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002837 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002838 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002840 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002842
Darrick J. Wong95eb3082018-05-09 10:02:32 -07002843 /* add reverse mapping unless caller opted out */
2844 if (!(flags & XFS_BMAPI_NORMAP)) {
2845 error = xfs_rmap_map_extent(mp, dfops, ip, whichfork, new);
2846 if (error)
2847 goto done;
2848 }
Darrick J. Wong9c194642016-08-03 12:16:05 +10002849
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002850 /* convert to a btree if necessary */
Christoph Hellwig6d045582017-04-11 16:45:54 -07002851 if (xfs_bmap_needs_btree(ip, whichfork)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002852 int tmp_logflags; /* partial log flag return val */
2853
Christoph Hellwig6d045582017-04-11 16:45:54 -07002854 ASSERT(cur == NULL);
2855 error = xfs_bmap_extents_to_btree(tp, ip, first, dfops, curp,
Christoph Hellwigc6534242011-09-18 20:41:05 +00002856 0, &tmp_logflags, whichfork);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002857 *logflagsp |= tmp_logflags;
2858 cur = *curp;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002859 if (error)
2860 goto done;
2861 }
2862
2863 /* clear out the allocated field, done with it now in any case. */
Christoph Hellwig6d045582017-04-11 16:45:54 -07002864 if (cur)
2865 cur->bc_private.b.allocated = 0;
Christoph Hellwigc6534242011-09-18 20:41:05 +00002866
Christoph Hellwig6d045582017-04-11 16:45:54 -07002867 xfs_bmap_check_leaf_extents(cur, ip, whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002868done:
Christoph Hellwig6d045582017-04-11 16:45:54 -07002869 *logflagsp |= rval;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002870 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871}
2872
Nathan Scottdd9f4382006-01-11 15:28:28 +11002873/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11002874 * Functions used in the extent read, allocate and remove paths
2875 */
2876
2877/*
Nathan Scottdd9f4382006-01-11 15:28:28 +11002878 * Adjust the size of the new extent based on di_extsize and rt extsize.
2879 */
Dave Chinner68988112013-08-12 20:49:42 +10002880int
Nathan Scottdd9f4382006-01-11 15:28:28 +11002881xfs_bmap_extsize_align(
2882 xfs_mount_t *mp,
2883 xfs_bmbt_irec_t *gotp, /* next extent pointer */
2884 xfs_bmbt_irec_t *prevp, /* previous extent pointer */
2885 xfs_extlen_t extsz, /* align to this extent size */
2886 int rt, /* is this a realtime inode? */
2887 int eof, /* is extent at end-of-file? */
2888 int delay, /* creating delalloc extent? */
2889 int convert, /* overwriting unwritten extent? */
2890 xfs_fileoff_t *offp, /* in/out: aligned offset */
2891 xfs_extlen_t *lenp) /* in/out: aligned length */
2892{
2893 xfs_fileoff_t orig_off; /* original offset */
2894 xfs_extlen_t orig_alen; /* original length */
2895 xfs_fileoff_t orig_end; /* original off+len */
2896 xfs_fileoff_t nexto; /* next file offset */
2897 xfs_fileoff_t prevo; /* previous file offset */
2898 xfs_fileoff_t align_off; /* temp for offset */
2899 xfs_extlen_t align_alen; /* temp for length */
2900 xfs_extlen_t temp; /* temp for calculations */
2901
2902 if (convert)
2903 return 0;
2904
2905 orig_off = align_off = *offp;
2906 orig_alen = align_alen = *lenp;
2907 orig_end = orig_off + orig_alen;
2908
2909 /*
2910 * If this request overlaps an existing extent, then don't
2911 * attempt to perform any additional alignment.
2912 */
2913 if (!delay && !eof &&
2914 (orig_off >= gotp->br_startoff) &&
2915 (orig_end <= gotp->br_startoff + gotp->br_blockcount)) {
2916 return 0;
2917 }
2918
2919 /*
2920 * If the file offset is unaligned vs. the extent size
2921 * we need to align it. This will be possible unless
2922 * the file was previously written with a kernel that didn't
2923 * perform this alignment, or if a truncate shot us in the
2924 * foot.
2925 */
Dave Chinner0703a8e2018-06-08 09:54:22 -07002926 div_u64_rem(orig_off, extsz, &temp);
Nathan Scottdd9f4382006-01-11 15:28:28 +11002927 if (temp) {
2928 align_alen += temp;
2929 align_off -= temp;
2930 }
Dave Chinner6dea405e2015-05-29 07:40:06 +10002931
2932 /* Same adjustment for the end of the requested area. */
2933 temp = (align_alen % extsz);
2934 if (temp)
Nathan Scottdd9f4382006-01-11 15:28:28 +11002935 align_alen += extsz - temp;
Dave Chinner6dea405e2015-05-29 07:40:06 +10002936
2937 /*
2938 * For large extent hint sizes, the aligned extent might be larger than
2939 * MAXEXTLEN. In that case, reduce the size by an extsz so that it pulls
2940 * the length back under MAXEXTLEN. The outer allocation loops handle
2941 * short allocation just fine, so it is safe to do this. We only want to
2942 * do it when we are forced to, though, because it means more allocation
2943 * operations are required.
2944 */
2945 while (align_alen > MAXEXTLEN)
2946 align_alen -= extsz;
2947 ASSERT(align_alen <= MAXEXTLEN);
2948
Nathan Scottdd9f4382006-01-11 15:28:28 +11002949 /*
2950 * If the previous block overlaps with this proposed allocation
2951 * then move the start forward without adjusting the length.
2952 */
2953 if (prevp->br_startoff != NULLFILEOFF) {
2954 if (prevp->br_startblock == HOLESTARTBLOCK)
2955 prevo = prevp->br_startoff;
2956 else
2957 prevo = prevp->br_startoff + prevp->br_blockcount;
2958 } else
2959 prevo = 0;
2960 if (align_off != orig_off && align_off < prevo)
2961 align_off = prevo;
2962 /*
2963 * If the next block overlaps with this proposed allocation
2964 * then move the start back without adjusting the length,
2965 * but not before offset 0.
2966 * This may of course make the start overlap previous block,
2967 * and if we hit the offset 0 limit then the next block
2968 * can still overlap too.
2969 */
2970 if (!eof && gotp->br_startoff != NULLFILEOFF) {
2971 if ((delay && gotp->br_startblock == HOLESTARTBLOCK) ||
2972 (!delay && gotp->br_startblock == DELAYSTARTBLOCK))
2973 nexto = gotp->br_startoff + gotp->br_blockcount;
2974 else
2975 nexto = gotp->br_startoff;
2976 } else
2977 nexto = NULLFILEOFF;
2978 if (!eof &&
2979 align_off + align_alen != orig_end &&
2980 align_off + align_alen > nexto)
2981 align_off = nexto > align_alen ? nexto - align_alen : 0;
2982 /*
2983 * If we're now overlapping the next or previous extent that
2984 * means we can't fit an extsz piece in this hole. Just move
2985 * the start forward to the first valid spot and set
2986 * the length so we hit the end.
2987 */
2988 if (align_off != orig_off && align_off < prevo)
2989 align_off = prevo;
2990 if (align_off + align_alen != orig_end &&
2991 align_off + align_alen > nexto &&
2992 nexto != NULLFILEOFF) {
2993 ASSERT(nexto > prevo);
2994 align_alen = nexto - align_off;
2995 }
2996
2997 /*
2998 * If realtime, and the result isn't a multiple of the realtime
2999 * extent size we need to remove blocks until it is.
3000 */
3001 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
3002 /*
3003 * We're not covering the original request, or
3004 * we won't be able to once we fix the length.
3005 */
3006 if (orig_off < align_off ||
3007 orig_end > align_off + align_alen ||
3008 align_alen - temp < orig_alen)
Dave Chinner24513372014-06-25 14:58:08 +10003009 return -EINVAL;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003010 /*
3011 * Try to fix it by moving the start up.
3012 */
3013 if (align_off + temp <= orig_off) {
3014 align_alen -= temp;
3015 align_off += temp;
3016 }
3017 /*
3018 * Try to fix it by moving the end in.
3019 */
3020 else if (align_off + align_alen - temp >= orig_end)
3021 align_alen -= temp;
3022 /*
3023 * Set the start to the minimum then trim the length.
3024 */
3025 else {
3026 align_alen -= orig_off - align_off;
3027 align_off = orig_off;
3028 align_alen -= align_alen % mp->m_sb.sb_rextsize;
3029 }
3030 /*
3031 * Result doesn't cover the request, fail it.
3032 */
3033 if (orig_off < align_off || orig_end > align_off + align_alen)
Dave Chinner24513372014-06-25 14:58:08 +10003034 return -EINVAL;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003035 } else {
3036 ASSERT(orig_off >= align_off);
Dave Chinner6dea405e2015-05-29 07:40:06 +10003037 /* see MAXEXTLEN handling above */
3038 ASSERT(orig_end <= align_off + align_alen ||
3039 align_alen + extsz > MAXEXTLEN);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003040 }
3041
3042#ifdef DEBUG
3043 if (!eof && gotp->br_startoff != NULLFILEOFF)
3044 ASSERT(align_off + align_alen <= gotp->br_startoff);
3045 if (prevp->br_startoff != NULLFILEOFF)
3046 ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount);
3047#endif
3048
3049 *lenp = align_alen;
3050 *offp = align_off;
3051 return 0;
3052}
3053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054#define XFS_ALLOC_GAP_UNITS 4
3055
Dave Chinner68988112013-08-12 20:49:42 +10003056void
Nathan Scotta365bdd2006-03-14 13:34:16 +11003057xfs_bmap_adjacent(
Dave Chinner68988112013-08-12 20:49:42 +10003058 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059{
3060 xfs_fsblock_t adjust; /* adjustment to block numbers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3062 xfs_mount_t *mp; /* mount point structure */
3063 int nullfb; /* true if ap->firstblock isn't set */
3064 int rt; /* true if inode is realtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
3066#define ISVALID(x,y) \
3067 (rt ? \
3068 (x) < mp->m_sb.sb_rblocks : \
3069 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
3070 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
3071 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
3072
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 mp = ap->ip->i_mount;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003074 nullfb = *ap->firstblock == NULLFSBLOCK;
Dave Chinner292378e2016-09-26 08:21:28 +10003075 rt = XFS_IS_REALTIME_INODE(ap->ip) &&
3076 xfs_alloc_is_userdata(ap->datatype);
Dave Chinner0937e0f2011-09-18 20:40:57 +00003077 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 /*
3079 * If allocating at eof, and there's a previous real block,
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003080 * try to use its last block as our starting point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003082 if (ap->eof && ap->prev.br_startoff != NULLFILEOFF &&
3083 !isnullstartblock(ap->prev.br_startblock) &&
3084 ISVALID(ap->prev.br_startblock + ap->prev.br_blockcount,
3085 ap->prev.br_startblock)) {
Dave Chinner3a756672011-09-18 20:40:58 +00003086 ap->blkno = ap->prev.br_startblock + ap->prev.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 /*
3088 * Adjust for the gap between prevp and us.
3089 */
Dave Chinner3a756672011-09-18 20:40:58 +00003090 adjust = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003091 (ap->prev.br_startoff + ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 if (adjust &&
Dave Chinner3a756672011-09-18 20:40:58 +00003093 ISVALID(ap->blkno + adjust, ap->prev.br_startblock))
3094 ap->blkno += adjust;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 }
3096 /*
3097 * If not at eof, then compare the two neighbor blocks.
3098 * Figure out whether either one gives us a good starting point,
3099 * and pick the better one.
3100 */
3101 else if (!ap->eof) {
3102 xfs_fsblock_t gotbno; /* right side block number */
3103 xfs_fsblock_t gotdiff=0; /* right side difference */
3104 xfs_fsblock_t prevbno; /* left side block number */
3105 xfs_fsblock_t prevdiff=0; /* left side difference */
3106
3107 /*
3108 * If there's a previous (left) block, select a requested
3109 * start block based on it.
3110 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003111 if (ap->prev.br_startoff != NULLFILEOFF &&
3112 !isnullstartblock(ap->prev.br_startblock) &&
3113 (prevbno = ap->prev.br_startblock +
3114 ap->prev.br_blockcount) &&
3115 ISVALID(prevbno, ap->prev.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 /*
3117 * Calculate gap to end of previous block.
3118 */
Dave Chinner3a756672011-09-18 20:40:58 +00003119 adjust = prevdiff = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003120 (ap->prev.br_startoff +
3121 ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 /*
3123 * Figure the startblock based on the previous block's
3124 * end and the gap size.
3125 * Heuristic!
3126 * If the gap is large relative to the piece we're
3127 * allocating, or using it gives us an invalid block
3128 * number, then just use the end of the previous block.
3129 */
Dave Chinner3a756672011-09-18 20:40:58 +00003130 if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 ISVALID(prevbno + prevdiff,
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003132 ap->prev.br_startblock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 prevbno += adjust;
3134 else
3135 prevdiff += adjust;
3136 /*
3137 * If the firstblock forbids it, can't use it,
3138 * must use default.
3139 */
3140 if (!rt && !nullfb &&
3141 XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno)
3142 prevbno = NULLFSBLOCK;
3143 }
3144 /*
3145 * No previous block or can't follow it, just default.
3146 */
3147 else
3148 prevbno = NULLFSBLOCK;
3149 /*
3150 * If there's a following (right) block, select a requested
3151 * start block based on it.
3152 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003153 if (!isnullstartblock(ap->got.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 /*
3155 * Calculate gap to start of next block.
3156 */
Dave Chinner3a756672011-09-18 20:40:58 +00003157 adjust = gotdiff = ap->got.br_startoff - ap->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 /*
3159 * Figure the startblock based on the next block's
3160 * start and the gap size.
3161 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003162 gotbno = ap->got.br_startblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 /*
3164 * Heuristic!
3165 * If the gap is large relative to the piece we're
3166 * allocating, or using it gives us an invalid block
3167 * number, then just use the start of the next block
3168 * offset by our length.
3169 */
Dave Chinner3a756672011-09-18 20:40:58 +00003170 if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 ISVALID(gotbno - gotdiff, gotbno))
3172 gotbno -= adjust;
Dave Chinner3a756672011-09-18 20:40:58 +00003173 else if (ISVALID(gotbno - ap->length, gotbno)) {
3174 gotbno -= ap->length;
3175 gotdiff += adjust - ap->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 } else
3177 gotdiff += adjust;
3178 /*
3179 * If the firstblock forbids it, can't use it,
3180 * must use default.
3181 */
3182 if (!rt && !nullfb &&
3183 XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno)
3184 gotbno = NULLFSBLOCK;
3185 }
3186 /*
3187 * No next block, just default.
3188 */
3189 else
3190 gotbno = NULLFSBLOCK;
3191 /*
3192 * If both valid, pick the better one, else the only good
Dave Chinner3a756672011-09-18 20:40:58 +00003193 * one, else ap->blkno is already set (to 0 or the inode block).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 */
3195 if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003196 ap->blkno = prevdiff <= gotdiff ? prevbno : gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 else if (prevbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003198 ap->blkno = prevbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 else if (gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003200 ap->blkno = gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 }
Nathan Scotta365bdd2006-03-14 13:34:16 +11003202#undef ISVALID
Nathan Scotta365bdd2006-03-14 13:34:16 +11003203}
3204
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003205static int
3206xfs_bmap_longest_free_extent(
3207 struct xfs_trans *tp,
3208 xfs_agnumber_t ag,
3209 xfs_extlen_t *blen,
3210 int *notinit)
3211{
3212 struct xfs_mount *mp = tp->t_mountp;
3213 struct xfs_perag *pag;
3214 xfs_extlen_t longest;
3215 int error = 0;
3216
3217 pag = xfs_perag_get(mp, ag);
3218 if (!pag->pagf_init) {
3219 error = xfs_alloc_pagf_init(mp, tp, ag, XFS_ALLOC_FLAG_TRYLOCK);
3220 if (error)
3221 goto out;
3222
3223 if (!pag->pagf_init) {
3224 *notinit = 1;
3225 goto out;
3226 }
3227 }
3228
Eric Sandeena1f69412018-04-06 10:09:42 -07003229 longest = xfs_alloc_longest_free_extent(pag,
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10003230 xfs_alloc_min_freelist(mp, pag),
3231 xfs_ag_resv_needed(pag, XFS_AG_RESV_NONE));
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003232 if (*blen < longest)
3233 *blen = longest;
3234
3235out:
3236 xfs_perag_put(pag);
3237 return error;
3238}
3239
3240static void
3241xfs_bmap_select_minlen(
3242 struct xfs_bmalloca *ap,
3243 struct xfs_alloc_arg *args,
3244 xfs_extlen_t *blen,
3245 int notinit)
3246{
3247 if (notinit || *blen < ap->minlen) {
3248 /*
3249 * Since we did a BUF_TRYLOCK above, it is possible that
3250 * there is space for this request.
3251 */
3252 args->minlen = ap->minlen;
3253 } else if (*blen < args->maxlen) {
3254 /*
3255 * If the best seen length is less than the request length,
3256 * use the best as the minimum.
3257 */
3258 args->minlen = *blen;
3259 } else {
3260 /*
3261 * Otherwise we've seen an extent as big as maxlen, use that
3262 * as the minimum.
3263 */
3264 args->minlen = args->maxlen;
3265 }
3266}
3267
Nathan Scotta365bdd2006-03-14 13:34:16 +11003268STATIC int
Christoph Hellwigc467c042010-02-15 23:34:42 +00003269xfs_bmap_btalloc_nullfb(
3270 struct xfs_bmalloca *ap,
3271 struct xfs_alloc_arg *args,
3272 xfs_extlen_t *blen)
3273{
3274 struct xfs_mount *mp = ap->ip->i_mount;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003275 xfs_agnumber_t ag, startag;
3276 int notinit = 0;
3277 int error;
3278
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003279 args->type = XFS_ALLOCTYPE_START_BNO;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003280 args->total = ap->total;
3281
Christoph Hellwigc467c042010-02-15 23:34:42 +00003282 startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3283 if (startag == NULLAGNUMBER)
3284 startag = ag = 0;
3285
Dave Chinner14b064c2011-01-27 12:16:28 +11003286 while (*blen < args->maxlen) {
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003287 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3288 &notinit);
3289 if (error)
3290 return error;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003291
Christoph Hellwigc467c042010-02-15 23:34:42 +00003292 if (++ag == mp->m_sb.sb_agcount)
3293 ag = 0;
3294 if (ag == startag)
3295 break;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003296 }
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003297
3298 xfs_bmap_select_minlen(ap, args, blen, notinit);
3299 return 0;
3300}
3301
3302STATIC int
3303xfs_bmap_btalloc_filestreams(
3304 struct xfs_bmalloca *ap,
3305 struct xfs_alloc_arg *args,
3306 xfs_extlen_t *blen)
3307{
3308 struct xfs_mount *mp = ap->ip->i_mount;
3309 xfs_agnumber_t ag;
3310 int notinit = 0;
3311 int error;
3312
3313 args->type = XFS_ALLOCTYPE_NEAR_BNO;
3314 args->total = ap->total;
3315
3316 ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3317 if (ag == NULLAGNUMBER)
3318 ag = 0;
3319
3320 error = xfs_bmap_longest_free_extent(args->tp, ag, blen, &notinit);
3321 if (error)
3322 return error;
3323
3324 if (*blen < args->maxlen) {
3325 error = xfs_filestream_new_ag(ap, &ag);
3326 if (error)
3327 return error;
3328
3329 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3330 &notinit);
3331 if (error)
3332 return error;
3333
3334 }
3335
3336 xfs_bmap_select_minlen(ap, args, blen, notinit);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003337
3338 /*
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003339 * Set the failure fallback case to look in the selected AG as stream
3340 * may have moved.
Christoph Hellwigc467c042010-02-15 23:34:42 +00003341 */
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003342 ap->blkno = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003343 return 0;
3344}
3345
Darrick J. Wong751f3762018-01-25 13:58:13 -08003346/* Update all inode and quota accounting for the allocation we just did. */
3347static void
3348xfs_bmap_btalloc_accounting(
3349 struct xfs_bmalloca *ap,
3350 struct xfs_alloc_arg *args)
3351{
Darrick J. Wong4b4c1322018-01-19 09:05:48 -08003352 if (ap->flags & XFS_BMAPI_COWFORK) {
3353 /*
3354 * COW fork blocks are in-core only and thus are treated as
3355 * in-core quota reservation (like delalloc blocks) even when
3356 * converted to real blocks. The quota reservation is not
3357 * accounted to disk until blocks are remapped to the data
3358 * fork. So if these blocks were previously delalloc, we
3359 * already have quota reservation and there's nothing to do
3360 * yet.
3361 */
3362 if (ap->wasdel)
3363 return;
3364
3365 /*
3366 * Otherwise, we've allocated blocks in a hole. The transaction
3367 * has acquired in-core quota reservation for this extent.
3368 * Rather than account these as real blocks, however, we reduce
3369 * the transaction quota reservation based on the allocation.
3370 * This essentially transfers the transaction quota reservation
3371 * to that of a delalloc extent.
3372 */
3373 ap->ip->i_delayed_blks += args->len;
3374 xfs_trans_mod_dquot_byino(ap->tp, ap->ip, XFS_TRANS_DQ_RES_BLKS,
3375 -(long)args->len);
3376 return;
3377 }
3378
3379 /* data/attr fork only */
3380 ap->ip->i_d.di_nblocks += args->len;
Darrick J. Wong751f3762018-01-25 13:58:13 -08003381 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
3382 if (ap->wasdel)
3383 ap->ip->i_delayed_blks -= args->len;
3384 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
3385 ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT : XFS_TRANS_DQ_BCOUNT,
3386 args->len);
3387}
3388
Christoph Hellwigc467c042010-02-15 23:34:42 +00003389STATIC int
Nathan Scotta365bdd2006-03-14 13:34:16 +11003390xfs_bmap_btalloc(
Dave Chinner68988112013-08-12 20:49:42 +10003391 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003392{
3393 xfs_mount_t *mp; /* mount point structure */
3394 xfs_alloctype_t atype = 0; /* type for allocation routines */
Dave Chinner292378e2016-09-26 08:21:28 +10003395 xfs_extlen_t align = 0; /* minimum allocation alignment */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003396 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
Christoph Hellwigc467c042010-02-15 23:34:42 +00003397 xfs_agnumber_t ag;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003398 xfs_alloc_arg_t args;
Darrick J. Wong6d8a45c2018-01-19 17:47:36 -08003399 xfs_fileoff_t orig_offset;
3400 xfs_extlen_t orig_length;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003401 xfs_extlen_t blen;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003402 xfs_extlen_t nextminlen = 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003403 int nullfb; /* true if ap->firstblock isn't set */
3404 int isaligned;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003405 int tryagain;
3406 int error;
Dave Chinner33177f052013-12-12 16:34:36 +11003407 int stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003408
Dave Chinnera99ebf42011-12-01 11:24:20 +00003409 ASSERT(ap->length);
Darrick J. Wong6d8a45c2018-01-19 17:47:36 -08003410 orig_offset = ap->offset;
3411 orig_length = ap->length;
Dave Chinnera99ebf42011-12-01 11:24:20 +00003412
Nathan Scotta365bdd2006-03-14 13:34:16 +11003413 mp = ap->ip->i_mount;
Dave Chinner33177f052013-12-12 16:34:36 +11003414
3415 /* stripe alignment for allocation is determined by mount parameters */
3416 stripe_align = 0;
3417 if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC))
3418 stripe_align = mp->m_swidth;
3419 else if (mp->m_dalign)
3420 stripe_align = mp->m_dalign;
3421
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07003422 if (ap->flags & XFS_BMAPI_COWFORK)
3423 align = xfs_get_cowextsz_hint(ap->ip);
3424 else if (xfs_alloc_is_userdata(ap->datatype))
Dave Chinner292378e2016-09-26 08:21:28 +10003425 align = xfs_get_extsz_hint(ap->ip);
Christoph Hellwig493611e2017-01-25 08:59:43 -08003426 if (align) {
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003427 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
Nathan Scotta365bdd2006-03-14 13:34:16 +11003428 align, 0, ap->eof, 0, ap->conv,
Dave Chinner3a756672011-09-18 20:40:58 +00003429 &ap->offset, &ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003430 ASSERT(!error);
Dave Chinner3a756672011-09-18 20:40:58 +00003431 ASSERT(ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003432 }
Dave Chinner33177f052013-12-12 16:34:36 +11003433
3434
Dave Chinner0937e0f2011-09-18 20:40:57 +00003435 nullfb = *ap->firstblock == NULLFSBLOCK;
3436 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
David Chinner2a82b8b2007-07-11 11:09:12 +10003437 if (nullfb) {
Dave Chinner292378e2016-09-26 08:21:28 +10003438 if (xfs_alloc_is_userdata(ap->datatype) &&
3439 xfs_inode_is_filestream(ap->ip)) {
David Chinner2a82b8b2007-07-11 11:09:12 +10003440 ag = xfs_filestream_lookup_ag(ap->ip);
3441 ag = (ag != NULLAGNUMBER) ? ag : 0;
Dave Chinner3a756672011-09-18 20:40:58 +00003442 ap->blkno = XFS_AGB_TO_FSB(mp, ag, 0);
David Chinner2a82b8b2007-07-11 11:09:12 +10003443 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00003444 ap->blkno = XFS_INO_TO_FSB(mp, ap->ip->i_ino);
David Chinner2a82b8b2007-07-11 11:09:12 +10003445 }
3446 } else
Dave Chinner3a756672011-09-18 20:40:58 +00003447 ap->blkno = *ap->firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003448
3449 xfs_bmap_adjacent(ap);
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 /*
Dave Chinner3a756672011-09-18 20:40:58 +00003452 * If allowed, use ap->blkno; otherwise must use firstblock since
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 * it's in the right allocation group.
3454 */
Dave Chinner3a756672011-09-18 20:40:58 +00003455 if (nullfb || XFS_FSB_TO_AGNO(mp, ap->blkno) == fb_agno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 ;
3457 else
Dave Chinner3a756672011-09-18 20:40:58 +00003458 ap->blkno = *ap->firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 * Normal allocation, done through xfs_alloc_vextent.
3461 */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003462 tryagain = isaligned = 0;
Mark Tinguelya0041682012-09-20 13:16:45 -05003463 memset(&args, 0, sizeof(args));
Nathan Scotta365bdd2006-03-14 13:34:16 +11003464 args.tp = ap->tp;
3465 args.mp = mp;
Dave Chinner3a756672011-09-18 20:40:58 +00003466 args.fsbno = ap->blkno;
Darrick J. Wong340785c2016-08-03 11:33:42 +10003467 xfs_rmap_skip_owner_update(&args.oinfo);
Dave Chinner14b064c2011-01-27 12:16:28 +11003468
3469 /* Trim the allocation back to the maximum an AG can fit. */
Dave Chinner9bb54cb2018-06-07 07:54:02 -07003470 args.maxlen = min(ap->length, mp->m_ag_max_usable);
Dave Chinner0937e0f2011-09-18 20:40:57 +00003471 args.firstblock = *ap->firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003472 blen = 0;
3473 if (nullfb) {
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003474 /*
3475 * Search for an allocation group with a single extent large
3476 * enough for the request. If one isn't found, then adjust
3477 * the minimum allocation size to the largest space found.
3478 */
Dave Chinner292378e2016-09-26 08:21:28 +10003479 if (xfs_alloc_is_userdata(ap->datatype) &&
3480 xfs_inode_is_filestream(ap->ip))
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003481 error = xfs_bmap_btalloc_filestreams(ap, &args, &blen);
3482 else
3483 error = xfs_bmap_btalloc_nullfb(ap, &args, &blen);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003484 if (error)
3485 return error;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003486 } else if (ap->dfops->dop_low) {
David Chinner2a82b8b2007-07-11 11:09:12 +10003487 if (xfs_inode_is_filestream(ap->ip))
3488 args.type = XFS_ALLOCTYPE_FIRST_AG;
3489 else
3490 args.type = XFS_ALLOCTYPE_START_BNO;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003491 args.total = args.minlen = ap->minlen;
3492 } else {
3493 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3494 args.total = ap->total;
3495 args.minlen = ap->minlen;
3496 }
David Chinner957d0eb2007-06-18 16:50:37 +10003497 /* apply extent size hints if obtained earlier */
Christoph Hellwig493611e2017-01-25 08:59:43 -08003498 if (align) {
David Chinner957d0eb2007-06-18 16:50:37 +10003499 args.prod = align;
Dave Chinner0703a8e2018-06-08 09:54:22 -07003500 div_u64_rem(ap->offset, args.prod, &args.mod);
3501 if (args.mod)
3502 args.mod = args.prod - args.mod;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003503 } else if (mp->m_sb.sb_blocksize >= PAGE_SIZE) {
Nathan Scotta365bdd2006-03-14 13:34:16 +11003504 args.prod = 1;
3505 args.mod = 0;
3506 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003507 args.prod = PAGE_SIZE >> mp->m_sb.sb_blocklog;
Dave Chinner0703a8e2018-06-08 09:54:22 -07003508 div_u64_rem(ap->offset, args.prod, &args.mod);
3509 if (args.mod)
3510 args.mod = args.prod - args.mod;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003511 }
3512 /*
3513 * If we are not low on available data blocks, and the
3514 * underlying logical volume manager is a stripe, and
3515 * the file offset is zero then try to allocate data
3516 * blocks on stripe unit boundary.
3517 * NOTE: ap->aeof is only set if the allocation length
3518 * is >= the stripe unit and the allocation offset is
3519 * at the end of file.
3520 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003521 if (!ap->dfops->dop_low && ap->aeof) {
Dave Chinner3a756672011-09-18 20:40:58 +00003522 if (!ap->offset) {
Dave Chinner33177f052013-12-12 16:34:36 +11003523 args.alignment = stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003524 atype = args.type;
3525 isaligned = 1;
3526 /*
3527 * Adjust for alignment
3528 */
Dave Chinner14b064c2011-01-27 12:16:28 +11003529 if (blen > args.alignment && blen <= args.maxlen)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003530 args.minlen = blen - args.alignment;
3531 args.minalignslop = 0;
3532 } else {
3533 /*
3534 * First try an exact bno allocation.
3535 * If it fails then do a near or start bno
3536 * allocation with alignment turned on.
3537 */
3538 atype = args.type;
3539 tryagain = 1;
3540 args.type = XFS_ALLOCTYPE_THIS_BNO;
3541 args.alignment = 1;
3542 /*
3543 * Compute the minlen+alignment for the
3544 * next case. Set slop so that the value
3545 * of minlen+alignment+slop doesn't go up
3546 * between the calls.
3547 */
Dave Chinner33177f052013-12-12 16:34:36 +11003548 if (blen > stripe_align && blen <= args.maxlen)
3549 nextminlen = blen - stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003550 else
3551 nextminlen = args.minlen;
Dave Chinner33177f052013-12-12 16:34:36 +11003552 if (nextminlen + stripe_align > args.minlen + 1)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003553 args.minalignslop =
Dave Chinner33177f052013-12-12 16:34:36 +11003554 nextminlen + stripe_align -
Nathan Scotta365bdd2006-03-14 13:34:16 +11003555 args.minlen - 1;
3556 else
3557 args.minalignslop = 0;
3558 }
3559 } else {
3560 args.alignment = 1;
3561 args.minalignslop = 0;
3562 }
3563 args.minleft = ap->minleft;
3564 args.wasdel = ap->wasdel;
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10003565 args.resv = XFS_AG_RESV_NONE;
Dave Chinner292378e2016-09-26 08:21:28 +10003566 args.datatype = ap->datatype;
3567 if (ap->datatype & XFS_ALLOC_USERDATA_ZERO)
Dave Chinner3fbbbea2015-11-03 12:27:22 +11003568 args.ip = ap->ip;
3569
3570 error = xfs_alloc_vextent(&args);
3571 if (error)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003572 return error;
Dave Chinner3fbbbea2015-11-03 12:27:22 +11003573
Nathan Scotta365bdd2006-03-14 13:34:16 +11003574 if (tryagain && args.fsbno == NULLFSBLOCK) {
3575 /*
3576 * Exact allocation failed. Now try with alignment
3577 * turned on.
3578 */
3579 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00003580 args.fsbno = ap->blkno;
Dave Chinner33177f052013-12-12 16:34:36 +11003581 args.alignment = stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003582 args.minlen = nextminlen;
3583 args.minalignslop = 0;
3584 isaligned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 if ((error = xfs_alloc_vextent(&args)))
3586 return error;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003587 }
3588 if (isaligned && args.fsbno == NULLFSBLOCK) {
3589 /*
3590 * allocation failed, so turn off alignment and
3591 * try again.
3592 */
3593 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00003594 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003595 args.alignment = 0;
3596 if ((error = xfs_alloc_vextent(&args)))
3597 return error;
3598 }
3599 if (args.fsbno == NULLFSBLOCK && nullfb &&
3600 args.minlen > ap->minlen) {
3601 args.minlen = ap->minlen;
3602 args.type = XFS_ALLOCTYPE_START_BNO;
Dave Chinner3a756672011-09-18 20:40:58 +00003603 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003604 if ((error = xfs_alloc_vextent(&args)))
3605 return error;
3606 }
3607 if (args.fsbno == NULLFSBLOCK && nullfb) {
3608 args.fsbno = 0;
3609 args.type = XFS_ALLOCTYPE_FIRST_AG;
3610 args.total = ap->minlen;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003611 if ((error = xfs_alloc_vextent(&args)))
3612 return error;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10003613 ap->dfops->dop_low = true;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003614 }
3615 if (args.fsbno != NULLFSBLOCK) {
Dave Chinner0937e0f2011-09-18 20:40:57 +00003616 /*
3617 * check the allocation happened at the same or higher AG than
3618 * the first block that was allocated.
3619 */
3620 ASSERT(*ap->firstblock == NULLFSBLOCK ||
Christoph Hellwig410d17f2017-02-16 17:12:51 -08003621 XFS_FSB_TO_AGNO(mp, *ap->firstblock) <=
3622 XFS_FSB_TO_AGNO(mp, args.fsbno));
Dave Chinner0937e0f2011-09-18 20:40:57 +00003623
Dave Chinner3a756672011-09-18 20:40:58 +00003624 ap->blkno = args.fsbno;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003625 if (*ap->firstblock == NULLFSBLOCK)
3626 *ap->firstblock = args.fsbno;
Christoph Hellwig410d17f2017-02-16 17:12:51 -08003627 ASSERT(nullfb || fb_agno <= args.agno);
Dave Chinner3a756672011-09-18 20:40:58 +00003628 ap->length = args.len;
Darrick J. Wong6d8a45c2018-01-19 17:47:36 -08003629 /*
3630 * If the extent size hint is active, we tried to round the
3631 * caller's allocation request offset down to extsz and the
3632 * length up to another extsz boundary. If we found a free
3633 * extent we mapped it in starting at this new offset. If the
3634 * newly mapped space isn't long enough to cover any of the
3635 * range of offsets that was originally requested, move the
3636 * mapping up so that we can fill as much of the caller's
3637 * original request as possible. Free space is apparently
3638 * very fragmented so we're unlikely to be able to satisfy the
3639 * hints anyway.
3640 */
3641 if (ap->length <= orig_length)
3642 ap->offset = orig_offset;
3643 else if (ap->offset + ap->length < orig_offset + orig_length)
3644 ap->offset = orig_offset + orig_length - ap->length;
Darrick J. Wong751f3762018-01-25 13:58:13 -08003645 xfs_bmap_btalloc_accounting(ap, &args);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003646 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00003647 ap->blkno = NULLFSBLOCK;
3648 ap->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 }
3650 return 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003651}
3652
3653/*
3654 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
3655 * It figures out where to ask the underlying allocator to put the new extent.
3656 */
3657STATIC int
3658xfs_bmap_alloc(
Dave Chinner68988112013-08-12 20:49:42 +10003659 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003660{
Dave Chinner292378e2016-09-26 08:21:28 +10003661 if (XFS_IS_REALTIME_INODE(ap->ip) &&
3662 xfs_alloc_is_userdata(ap->datatype))
Nathan Scotta365bdd2006-03-14 13:34:16 +11003663 return xfs_bmap_rtalloc(ap);
3664 return xfs_bmap_btalloc(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665}
3666
Darrick J. Wong0a0af282016-10-20 15:51:50 +11003667/* Trim extent to fit a logical block range. */
3668void
3669xfs_trim_extent(
3670 struct xfs_bmbt_irec *irec,
3671 xfs_fileoff_t bno,
3672 xfs_filblks_t len)
3673{
3674 xfs_fileoff_t distance;
3675 xfs_fileoff_t end = bno + len;
3676
3677 if (irec->br_startoff + irec->br_blockcount <= bno ||
3678 irec->br_startoff >= end) {
3679 irec->br_blockcount = 0;
3680 return;
3681 }
3682
3683 if (irec->br_startoff < bno) {
3684 distance = bno - irec->br_startoff;
3685 if (isnullstartblock(irec->br_startblock))
3686 irec->br_startblock = DELAYSTARTBLOCK;
3687 if (irec->br_startblock != DELAYSTARTBLOCK &&
3688 irec->br_startblock != HOLESTARTBLOCK)
3689 irec->br_startblock += distance;
3690 irec->br_startoff += distance;
3691 irec->br_blockcount -= distance;
3692 }
3693
3694 if (end < irec->br_startoff + irec->br_blockcount) {
3695 distance = irec->br_startoff + irec->br_blockcount - end;
3696 irec->br_blockcount -= distance;
3697 }
3698}
3699
Brian Foster40214d12017-10-13 09:47:46 -07003700/* trim extent to within eof */
3701void
3702xfs_trim_extent_eof(
3703 struct xfs_bmbt_irec *irec,
3704 struct xfs_inode *ip)
3705
3706{
3707 xfs_trim_extent(irec, 0, XFS_B_TO_FSB(ip->i_mount,
3708 i_size_read(VFS_I(ip))));
3709}
3710
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711/*
Dave Chinneraef9a892011-09-18 20:40:44 +00003712 * Trim the returned map to the required bounds
3713 */
3714STATIC void
3715xfs_bmapi_trim_map(
3716 struct xfs_bmbt_irec *mval,
3717 struct xfs_bmbt_irec *got,
3718 xfs_fileoff_t *bno,
3719 xfs_filblks_t len,
3720 xfs_fileoff_t obno,
3721 xfs_fileoff_t end,
3722 int n,
3723 int flags)
3724{
3725 if ((flags & XFS_BMAPI_ENTIRE) ||
3726 got->br_startoff + got->br_blockcount <= obno) {
3727 *mval = *got;
3728 if (isnullstartblock(got->br_startblock))
3729 mval->br_startblock = DELAYSTARTBLOCK;
3730 return;
3731 }
3732
3733 if (obno > *bno)
3734 *bno = obno;
3735 ASSERT((*bno >= obno) || (n == 0));
3736 ASSERT(*bno < end);
3737 mval->br_startoff = *bno;
3738 if (isnullstartblock(got->br_startblock))
3739 mval->br_startblock = DELAYSTARTBLOCK;
3740 else
3741 mval->br_startblock = got->br_startblock +
3742 (*bno - got->br_startoff);
3743 /*
3744 * Return the minimum of what we got and what we asked for for
3745 * the length. We can use the len variable here because it is
3746 * modified below and we could have been there before coming
3747 * here if the first part of the allocation didn't overlap what
3748 * was asked for.
3749 */
3750 mval->br_blockcount = XFS_FILBLKS_MIN(end - *bno,
3751 got->br_blockcount - (*bno - got->br_startoff));
3752 mval->br_state = got->br_state;
3753 ASSERT(mval->br_blockcount <= len);
3754 return;
3755}
3756
3757/*
3758 * Update and validate the extent map to return
3759 */
3760STATIC void
3761xfs_bmapi_update_map(
3762 struct xfs_bmbt_irec **map,
3763 xfs_fileoff_t *bno,
3764 xfs_filblks_t *len,
3765 xfs_fileoff_t obno,
3766 xfs_fileoff_t end,
3767 int *n,
3768 int flags)
3769{
3770 xfs_bmbt_irec_t *mval = *map;
3771
3772 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
3773 ((mval->br_startoff + mval->br_blockcount) <= end));
3774 ASSERT((flags & XFS_BMAPI_ENTIRE) || (mval->br_blockcount <= *len) ||
3775 (mval->br_startoff < obno));
3776
3777 *bno = mval->br_startoff + mval->br_blockcount;
3778 *len = end - *bno;
3779 if (*n > 0 && mval->br_startoff == mval[-1].br_startoff) {
3780 /* update previous map with new information */
3781 ASSERT(mval->br_startblock == mval[-1].br_startblock);
3782 ASSERT(mval->br_blockcount > mval[-1].br_blockcount);
3783 ASSERT(mval->br_state == mval[-1].br_state);
3784 mval[-1].br_blockcount = mval->br_blockcount;
3785 mval[-1].br_state = mval->br_state;
3786 } else if (*n > 0 && mval->br_startblock != DELAYSTARTBLOCK &&
3787 mval[-1].br_startblock != DELAYSTARTBLOCK &&
3788 mval[-1].br_startblock != HOLESTARTBLOCK &&
3789 mval->br_startblock == mval[-1].br_startblock +
3790 mval[-1].br_blockcount &&
3791 ((flags & XFS_BMAPI_IGSTATE) ||
3792 mval[-1].br_state == mval->br_state)) {
3793 ASSERT(mval->br_startoff ==
3794 mval[-1].br_startoff + mval[-1].br_blockcount);
3795 mval[-1].br_blockcount += mval->br_blockcount;
3796 } else if (*n > 0 &&
3797 mval->br_startblock == DELAYSTARTBLOCK &&
3798 mval[-1].br_startblock == DELAYSTARTBLOCK &&
3799 mval->br_startoff ==
3800 mval[-1].br_startoff + mval[-1].br_blockcount) {
3801 mval[-1].br_blockcount += mval->br_blockcount;
3802 mval[-1].br_state = mval->br_state;
3803 } else if (!((*n == 0) &&
3804 ((mval->br_startoff + mval->br_blockcount) <=
3805 obno))) {
3806 mval++;
3807 (*n)++;
3808 }
3809 *map = mval;
3810}
3811
3812/*
Dave Chinner5c8ed202011-09-18 20:40:45 +00003813 * Map file blocks to filesystem blocks without allocation.
3814 */
3815int
3816xfs_bmapi_read(
3817 struct xfs_inode *ip,
3818 xfs_fileoff_t bno,
3819 xfs_filblks_t len,
3820 struct xfs_bmbt_irec *mval,
3821 int *nmap,
3822 int flags)
3823{
3824 struct xfs_mount *mp = ip->i_mount;
3825 struct xfs_ifork *ifp;
3826 struct xfs_bmbt_irec got;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003827 xfs_fileoff_t obno;
3828 xfs_fileoff_t end;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003829 struct xfs_iext_cursor icur;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003830 int error;
Christoph Hellwig334f3422016-11-24 11:39:43 +11003831 bool eof = false;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003832 int n = 0;
Darrick J. Wong3993bae2016-10-03 09:11:32 -07003833 int whichfork = xfs_bmapi_whichfork(flags);
Dave Chinner5c8ed202011-09-18 20:40:45 +00003834
3835 ASSERT(*nmap >= 1);
3836 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK|XFS_BMAPI_ENTIRE|
Darrick J. Wong3993bae2016-10-03 09:11:32 -07003837 XFS_BMAPI_IGSTATE|XFS_BMAPI_COWFORK)));
Christoph Hellwigeef334e2013-12-06 12:30:17 -08003838 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED|XFS_ILOCK_EXCL));
Dave Chinner5c8ed202011-09-18 20:40:45 +00003839
3840 if (unlikely(XFS_TEST_ERROR(
3841 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
3842 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07003843 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Dave Chinner5c8ed202011-09-18 20:40:45 +00003844 XFS_ERROR_REPORT("xfs_bmapi_read", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10003845 return -EFSCORRUPTED;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003846 }
3847
3848 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10003849 return -EIO;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003850
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11003851 XFS_STATS_INC(mp, xs_blk_mapr);
Dave Chinner5c8ed202011-09-18 20:40:45 +00003852
3853 ifp = XFS_IFORK_PTR(ip, whichfork);
Dave Chinner5c8ed202011-09-18 20:40:45 +00003854
Darrick J. Wong3993bae2016-10-03 09:11:32 -07003855 /* No CoW fork? Return a hole. */
3856 if (whichfork == XFS_COW_FORK && !ifp) {
3857 mval->br_startoff = bno;
3858 mval->br_startblock = HOLESTARTBLOCK;
3859 mval->br_blockcount = len;
3860 mval->br_state = XFS_EXT_NORM;
3861 *nmap = 1;
3862 return 0;
3863 }
3864
Dave Chinner5c8ed202011-09-18 20:40:45 +00003865 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
3866 error = xfs_iread_extents(NULL, ip, whichfork);
3867 if (error)
3868 return error;
3869 }
3870
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003871 if (!xfs_iext_lookup_extent(ip, ifp, bno, &icur, &got))
Christoph Hellwig334f3422016-11-24 11:39:43 +11003872 eof = true;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003873 end = bno + len;
3874 obno = bno;
3875
3876 while (bno < end && n < *nmap) {
3877 /* Reading past eof, act as though there's a hole up to end. */
3878 if (eof)
3879 got.br_startoff = end;
3880 if (got.br_startoff > bno) {
3881 /* Reading in a hole. */
3882 mval->br_startoff = bno;
3883 mval->br_startblock = HOLESTARTBLOCK;
3884 mval->br_blockcount =
3885 XFS_FILBLKS_MIN(len, got.br_startoff - bno);
3886 mval->br_state = XFS_EXT_NORM;
3887 bno += mval->br_blockcount;
3888 len -= mval->br_blockcount;
3889 mval++;
3890 n++;
3891 continue;
3892 }
3893
3894 /* set up the extent map to return. */
3895 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
3896 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
3897
3898 /* If we're done, stop now. */
3899 if (bno >= end || n >= *nmap)
3900 break;
3901
3902 /* Else go on to the next record. */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003903 if (!xfs_iext_next_extent(ifp, &icur, &got))
Christoph Hellwig334f3422016-11-24 11:39:43 +11003904 eof = true;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003905 }
3906 *nmap = n;
3907 return 0;
3908}
3909
Brian Fosterf65e6fa2017-03-08 09:58:08 -08003910/*
3911 * Add a delayed allocation extent to an inode. Blocks are reserved from the
3912 * global pool and the extent inserted into the inode in-core extent tree.
3913 *
3914 * On entry, got refers to the first extent beyond the offset of the extent to
3915 * allocate or eof is specified if no such extent exists. On return, got refers
3916 * to the extent record that was inserted to the inode fork.
3917 *
3918 * Note that the allocated extent may have been merged with contiguous extents
3919 * during insertion into the inode fork. Thus, got does not reflect the current
3920 * state of the inode fork on return. If necessary, the caller can use lastx to
3921 * look up the updated record in the inode fork.
3922 */
Christoph Hellwig51446f52016-09-19 11:10:21 +10003923int
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003924xfs_bmapi_reserve_delalloc(
3925 struct xfs_inode *ip,
Darrick J. Wongbe51f812016-10-03 09:11:32 -07003926 int whichfork,
Brian Foster974ae922016-11-28 14:57:42 +11003927 xfs_fileoff_t off,
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003928 xfs_filblks_t len,
Brian Foster974ae922016-11-28 14:57:42 +11003929 xfs_filblks_t prealloc,
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003930 struct xfs_bmbt_irec *got,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003931 struct xfs_iext_cursor *icur,
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003932 int eof)
3933{
3934 struct xfs_mount *mp = ip->i_mount;
Darrick J. Wongbe51f812016-10-03 09:11:32 -07003935 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003936 xfs_extlen_t alen;
3937 xfs_extlen_t indlen;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003938 int error;
Brian Foster974ae922016-11-28 14:57:42 +11003939 xfs_fileoff_t aoff = off;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003940
Brian Foster974ae922016-11-28 14:57:42 +11003941 /*
3942 * Cap the alloc length. Keep track of prealloc so we know whether to
3943 * tag the inode before we return.
3944 */
3945 alen = XFS_FILBLKS_MIN(len + prealloc, MAXEXTLEN);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003946 if (!eof)
3947 alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff);
Brian Foster974ae922016-11-28 14:57:42 +11003948 if (prealloc && alen >= len)
3949 prealloc = alen - len;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003950
3951 /* Figure out the extent size, adjust alen */
Shan Hai6ca30722018-01-23 13:56:11 -08003952 if (whichfork == XFS_COW_FORK) {
Christoph Hellwig65c5f412016-11-24 11:39:44 +11003953 struct xfs_bmbt_irec prev;
Shan Hai6ca30722018-01-23 13:56:11 -08003954 xfs_extlen_t extsz = xfs_get_cowextsz_hint(ip);
Christoph Hellwig65c5f412016-11-24 11:39:44 +11003955
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003956 if (!xfs_iext_peek_prev_extent(ifp, icur, &prev))
Christoph Hellwig65c5f412016-11-24 11:39:44 +11003957 prev.br_startoff = NULLFILEOFF;
3958
Shan Hai6ca30722018-01-23 13:56:11 -08003959 error = xfs_bmap_extsize_align(mp, got, &prev, extsz, 0, eof,
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003960 1, 0, &aoff, &alen);
3961 ASSERT(!error);
3962 }
3963
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003964 /*
3965 * Make a transaction-less quota reservation for delayed allocation
3966 * blocks. This number gets adjusted later. We return if we haven't
3967 * allocated blocks already inside this loop.
3968 */
3969 error = xfs_trans_reserve_quota_nblks(NULL, ip, (long)alen, 0,
Shan Hai6ca30722018-01-23 13:56:11 -08003970 XFS_QMOPT_RES_REGBLKS);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003971 if (error)
3972 return error;
3973
3974 /*
3975 * Split changing sb for alen and indlen since they could be coming
3976 * from different places.
3977 */
3978 indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen);
3979 ASSERT(indlen > 0);
3980
Shan Hai6ca30722018-01-23 13:56:11 -08003981 error = xfs_mod_fdblocks(mp, -((int64_t)alen), false);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003982 if (error)
3983 goto out_unreserve_quota;
3984
Dave Chinner0d485ad2015-02-23 21:22:03 +11003985 error = xfs_mod_fdblocks(mp, -((int64_t)indlen), false);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003986 if (error)
3987 goto out_unreserve_blocks;
3988
3989
3990 ip->i_delayed_blks += alen;
3991
3992 got->br_startoff = aoff;
3993 got->br_startblock = nullstartblock(indlen);
3994 got->br_blockcount = alen;
3995 got->br_state = XFS_EXT_NORM;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003996
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003997 xfs_bmap_add_extent_hole_delay(ip, whichfork, icur, got);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003998
Brian Foster974ae922016-11-28 14:57:42 +11003999 /*
4000 * Tag the inode if blocks were preallocated. Note that COW fork
4001 * preallocation can occur at the start or end of the extent, even when
4002 * prealloc == 0, so we must also check the aligned offset and length.
4003 */
4004 if (whichfork == XFS_DATA_FORK && prealloc)
4005 xfs_inode_set_eofblocks_tag(ip);
4006 if (whichfork == XFS_COW_FORK && (prealloc || aoff < off || alen > len))
4007 xfs_inode_set_cowblocks_tag(ip);
4008
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004009 return 0;
4010
4011out_unreserve_blocks:
Shan Hai6ca30722018-01-23 13:56:11 -08004012 xfs_mod_fdblocks(mp, alen, false);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004013out_unreserve_quota:
4014 if (XFS_IS_QUOTA_ON(mp))
Shan Hai6ca30722018-01-23 13:56:11 -08004015 xfs_trans_unreserve_quota_nblks(NULL, ip, (long)alen, 0,
4016 XFS_QMOPT_RES_REGBLKS);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004017 return error;
4018}
4019
Dave Chinnercf11da92014-07-15 07:08:24 +10004020static int
4021xfs_bmapi_allocate(
Dave Chinnere04426b2012-10-05 11:06:59 +10004022 struct xfs_bmalloca *bma)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004023{
4024 struct xfs_mount *mp = bma->ip->i_mount;
Darrick J. Wong60b49842016-10-03 09:11:34 -07004025 int whichfork = xfs_bmapi_whichfork(bma->flags);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004026 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004027 int tmp_logflags = 0;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004028 int error;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004029
Dave Chinnera99ebf42011-12-01 11:24:20 +00004030 ASSERT(bma->length > 0);
4031
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004032 /*
4033 * For the wasdelay case, we could also just allocate the stuff asked
4034 * for in this bmap call but that wouldn't be as good.
4035 */
4036 if (bma->wasdel) {
Dave Chinner963c30c2011-09-18 20:40:59 +00004037 bma->length = (xfs_extlen_t)bma->got.br_blockcount;
4038 bma->offset = bma->got.br_startoff;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004039 xfs_iext_peek_prev_extent(ifp, &bma->icur, &bma->prev);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004040 } else {
Dave Chinner963c30c2011-09-18 20:40:59 +00004041 bma->length = XFS_FILBLKS_MIN(bma->length, MAXEXTLEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004042 if (!bma->eof)
Dave Chinner963c30c2011-09-18 20:40:59 +00004043 bma->length = XFS_FILBLKS_MIN(bma->length,
Dave Chinner3a756672011-09-18 20:40:58 +00004044 bma->got.br_startoff - bma->offset);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004045 }
4046
4047 /*
Dave Chinner292378e2016-09-26 08:21:28 +10004048 * Set the data type being allocated. For the data fork, the first data
4049 * in the file is treated differently to all other allocations. For the
4050 * attribute fork, we only need to ensure the allocated range is not on
4051 * the busy list.
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004052 */
Dave Chinnere04426b2012-10-05 11:06:59 +10004053 if (!(bma->flags & XFS_BMAPI_METADATA)) {
Dave Chinner292378e2016-09-26 08:21:28 +10004054 bma->datatype = XFS_ALLOC_NOBUSY;
4055 if (whichfork == XFS_DATA_FORK) {
4056 if (bma->offset == 0)
4057 bma->datatype |= XFS_ALLOC_INITIAL_USER_DATA;
4058 else
4059 bma->datatype |= XFS_ALLOC_USERDATA;
4060 }
Dave Chinner3fbbbea2015-11-03 12:27:22 +11004061 if (bma->flags & XFS_BMAPI_ZERO)
Dave Chinner292378e2016-09-26 08:21:28 +10004062 bma->datatype |= XFS_ALLOC_USERDATA_ZERO;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004063 }
4064
Dave Chinnere04426b2012-10-05 11:06:59 +10004065 bma->minlen = (bma->flags & XFS_BMAPI_CONTIG) ? bma->length : 1;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004066
4067 /*
4068 * Only want to do the alignment at the eof if it is userdata and
4069 * allocation length is larger than a stripe unit.
4070 */
Dave Chinner963c30c2011-09-18 20:40:59 +00004071 if (mp->m_dalign && bma->length >= mp->m_dalign &&
Dave Chinnere04426b2012-10-05 11:06:59 +10004072 !(bma->flags & XFS_BMAPI_METADATA) && whichfork == XFS_DATA_FORK) {
Dave Chinner1b164472011-09-18 20:40:55 +00004073 error = xfs_bmap_isaeof(bma, whichfork);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004074 if (error)
4075 return error;
4076 }
4077
4078 error = xfs_bmap_alloc(bma);
4079 if (error)
4080 return error;
4081
Dave Chinner29c8d172011-09-18 20:41:00 +00004082 if (bma->cur)
4083 bma->cur->bc_private.b.firstblock = *bma->firstblock;
Dave Chinner963c30c2011-09-18 20:40:59 +00004084 if (bma->blkno == NULLFSBLOCK)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004085 return 0;
Dave Chinner29c8d172011-09-18 20:41:00 +00004086 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4087 bma->cur = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork);
4088 bma->cur->bc_private.b.firstblock = *bma->firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10004089 bma->cur->bc_private.b.dfops = bma->dfops;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004090 }
4091 /*
4092 * Bump the number of extents we've allocated
4093 * in this call.
4094 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004095 bma->nallocs++;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004096
Dave Chinner29c8d172011-09-18 20:41:00 +00004097 if (bma->cur)
4098 bma->cur->bc_private.b.flags =
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004099 bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
4100
Dave Chinner963c30c2011-09-18 20:40:59 +00004101 bma->got.br_startoff = bma->offset;
4102 bma->got.br_startblock = bma->blkno;
4103 bma->got.br_blockcount = bma->length;
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004104 bma->got.br_state = XFS_EXT_NORM;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004105
4106 /*
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004107 * In the data fork, a wasdelay extent has been initialized, so
4108 * shouldn't be flagged as unwritten.
4109 *
4110 * For the cow fork, however, we convert delalloc reservations
4111 * (extents allocated for speculative preallocation) to
4112 * allocated unwritten extents, and only convert the unwritten
4113 * extents to real extents when we're about to write the data.
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004114 */
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004115 if ((!bma->wasdel || (bma->flags & XFS_BMAPI_COWFORK)) &&
4116 (bma->flags & XFS_BMAPI_PREALLOC) &&
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004117 xfs_sb_version_hasextflgbit(&mp->m_sb))
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004118 bma->got.br_state = XFS_EXT_UNWRITTEN;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004119
Christoph Hellwigc6534242011-09-18 20:41:05 +00004120 if (bma->wasdel)
Darrick J. Wong60b49842016-10-03 09:11:34 -07004121 error = xfs_bmap_add_extent_delay_real(bma, whichfork);
Christoph Hellwigc6534242011-09-18 20:41:05 +00004122 else
Christoph Hellwig6d045582017-04-11 16:45:54 -07004123 error = xfs_bmap_add_extent_hole_real(bma->tp, bma->ip,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004124 whichfork, &bma->icur, &bma->cur, &bma->got,
Darrick J. Wong95eb3082018-05-09 10:02:32 -07004125 bma->firstblock, bma->dfops, &bma->logflags,
4126 bma->flags);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004127
Christoph Hellwigc315c902011-09-18 20:41:02 +00004128 bma->logflags |= tmp_logflags;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004129 if (error)
4130 return error;
4131
4132 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004133 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4134 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4135 * the neighbouring ones.
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004136 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004137 xfs_iext_get_extent(ifp, &bma->icur, &bma->got);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004138
Dave Chinner963c30c2011-09-18 20:40:59 +00004139 ASSERT(bma->got.br_startoff <= bma->offset);
4140 ASSERT(bma->got.br_startoff + bma->got.br_blockcount >=
4141 bma->offset + bma->length);
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004142 ASSERT(bma->got.br_state == XFS_EXT_NORM ||
4143 bma->got.br_state == XFS_EXT_UNWRITTEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004144 return 0;
4145}
4146
Dave Chinnerb447fe52011-09-18 20:40:51 +00004147STATIC int
4148xfs_bmapi_convert_unwritten(
4149 struct xfs_bmalloca *bma,
4150 struct xfs_bmbt_irec *mval,
4151 xfs_filblks_t len,
Christoph Hellwigc315c902011-09-18 20:41:02 +00004152 int flags)
Dave Chinnerb447fe52011-09-18 20:40:51 +00004153{
Darrick J. Wong3993bae2016-10-03 09:11:32 -07004154 int whichfork = xfs_bmapi_whichfork(flags);
Dave Chinnerb447fe52011-09-18 20:40:51 +00004155 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004156 int tmp_logflags = 0;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004157 int error;
4158
Dave Chinnerb447fe52011-09-18 20:40:51 +00004159 /* check if we need to do unwritten->real conversion */
4160 if (mval->br_state == XFS_EXT_UNWRITTEN &&
4161 (flags & XFS_BMAPI_PREALLOC))
4162 return 0;
4163
4164 /* check if we need to do real->unwritten conversion */
4165 if (mval->br_state == XFS_EXT_NORM &&
4166 (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) !=
4167 (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT))
4168 return 0;
4169
4170 /*
4171 * Modify (by adding) the state flag, if writing.
4172 */
4173 ASSERT(mval->br_blockcount <= len);
Dave Chinner29c8d172011-09-18 20:41:00 +00004174 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4175 bma->cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp,
Dave Chinnerb447fe52011-09-18 20:40:51 +00004176 bma->ip, whichfork);
Dave Chinner29c8d172011-09-18 20:41:00 +00004177 bma->cur->bc_private.b.firstblock = *bma->firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10004178 bma->cur->bc_private.b.dfops = bma->dfops;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004179 }
4180 mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN)
4181 ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
4182
Dave Chinner3fbbbea2015-11-03 12:27:22 +11004183 /*
4184 * Before insertion into the bmbt, zero the range being converted
4185 * if required.
4186 */
4187 if (flags & XFS_BMAPI_ZERO) {
4188 error = xfs_zero_extent(bma->ip, mval->br_startblock,
4189 mval->br_blockcount);
4190 if (error)
4191 return error;
4192 }
4193
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004194 error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004195 &bma->icur, &bma->cur, mval, bma->firstblock,
4196 bma->dfops, &tmp_logflags);
Brian Foster2e588a42015-06-01 07:15:23 +10004197 /*
4198 * Log the inode core unconditionally in the unwritten extent conversion
4199 * path because the conversion might not have done so (e.g., if the
4200 * extent count hasn't changed). We need to make sure the inode is dirty
4201 * in the transaction for the sake of fsync(), even if nothing has
4202 * changed, because fsync() will not force the log for this transaction
4203 * unless it sees the inode pinned.
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004204 *
4205 * Note: If we're only converting cow fork extents, there aren't
4206 * any on-disk updates to make, so we don't need to log anything.
Brian Foster2e588a42015-06-01 07:15:23 +10004207 */
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004208 if (whichfork != XFS_COW_FORK)
4209 bma->logflags |= tmp_logflags | XFS_ILOG_CORE;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004210 if (error)
4211 return error;
4212
4213 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004214 * Update our extent pointer, given that
4215 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4216 * of the neighbouring ones.
Dave Chinnerb447fe52011-09-18 20:40:51 +00004217 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004218 xfs_iext_get_extent(ifp, &bma->icur, &bma->got);
Dave Chinnerb447fe52011-09-18 20:40:51 +00004219
4220 /*
4221 * We may have combined previously unwritten space with written space,
4222 * so generate another request.
4223 */
4224 if (mval->br_blockcount < len)
Dave Chinner24513372014-06-25 14:58:08 +10004225 return -EAGAIN;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004226 return 0;
4227}
4228
Christoph Hellwig44032802011-09-18 20:40:48 +00004229/*
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004230 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4231 * extent state if necessary. Details behaviour is controlled by the flags
4232 * parameter. Only allocates blocks from a single allocation group, to avoid
4233 * locking problems.
4234 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 * The returned value in "firstblock" from the first call in a transaction
4236 * must be remembered and presented to subsequent calls in "firstblock".
4237 * An upper bound for the number of blocks to be allocated is supplied to
4238 * the first call in "total"; if no allocation group has that many free
4239 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4240 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004241int
4242xfs_bmapi_write(
4243 struct xfs_trans *tp, /* transaction pointer */
4244 struct xfs_inode *ip, /* incore inode */
4245 xfs_fileoff_t bno, /* starting file offs. mapped */
4246 xfs_filblks_t len, /* length to map in file */
4247 int flags, /* XFS_BMAPI_... */
4248 xfs_fsblock_t *firstblock, /* first allocated block
4249 controls a.g. for allocs */
4250 xfs_extlen_t total, /* total blocks needed */
4251 struct xfs_bmbt_irec *mval, /* output: map values */
4252 int *nmap, /* i/o: mval size/count */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10004253 struct xfs_defer_ops *dfops) /* i/o: list extents to free */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254{
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004255 struct xfs_mount *mp = ip->i_mount;
4256 struct xfs_ifork *ifp;
Dave Chinnera30b0362013-09-02 20:49:36 +10004257 struct xfs_bmalloca bma = { NULL }; /* args for xfs_bmap_alloc */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004258 xfs_fileoff_t end; /* end of mapped file region */
Christoph Hellwig2d58f6e2016-11-24 11:39:43 +11004259 bool eof = false; /* after the end of extents */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004260 int error; /* error return */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004261 int n; /* current extent index */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004262 xfs_fileoff_t obno; /* old block number (offset) */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004263 int whichfork; /* data or attr fork */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004264
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265#ifdef DEBUG
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004266 xfs_fileoff_t orig_bno; /* original block number value */
4267 int orig_flags; /* original flags arg value */
4268 xfs_filblks_t orig_len; /* original value of len arg */
4269 struct xfs_bmbt_irec *orig_mval; /* original value of mval */
4270 int orig_nmap; /* original value of *nmap */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
4272 orig_bno = bno;
4273 orig_len = len;
4274 orig_flags = flags;
4275 orig_mval = mval;
4276 orig_nmap = *nmap;
4277#endif
Darrick J. Wong60b49842016-10-03 09:11:34 -07004278 whichfork = xfs_bmapi_whichfork(flags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004279
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 ASSERT(*nmap >= 1);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004281 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4282 ASSERT(!(flags & XFS_BMAPI_IGSTATE));
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004283 ASSERT(tp != NULL ||
4284 (flags & (XFS_BMAPI_CONVERT | XFS_BMAPI_COWFORK)) ==
4285 (XFS_BMAPI_CONVERT | XFS_BMAPI_COWFORK));
Dave Chinnera99ebf42011-12-01 11:24:20 +00004286 ASSERT(len > 0);
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004287 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL);
Christoph Hellwigeef334e2013-12-06 12:30:17 -08004288 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004289 ASSERT(!(flags & XFS_BMAPI_REMAP));
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004290
Dave Chinner3fbbbea2015-11-03 12:27:22 +11004291 /* zeroing is for currently only for data extents, not metadata */
4292 ASSERT((flags & (XFS_BMAPI_METADATA | XFS_BMAPI_ZERO)) !=
4293 (XFS_BMAPI_METADATA | XFS_BMAPI_ZERO));
4294 /*
4295 * we can allocate unwritten extents or pre-zero allocated blocks,
4296 * but it makes no sense to do both at once. This would result in
4297 * zeroing the unwritten extent twice, but it still being an
4298 * unwritten extent....
4299 */
4300 ASSERT((flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_ZERO)) !=
4301 (XFS_BMAPI_PREALLOC | XFS_BMAPI_ZERO));
4302
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 if (unlikely(XFS_TEST_ERROR(
4304 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004305 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07004306 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004307 XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10004308 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 }
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004310
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10004312 return -EIO;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004313
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 ifp = XFS_IFORK_PTR(ip, whichfork);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004315
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11004316 XFS_STATS_INC(mp, xs_blk_mapw);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004317
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004318 if (*firstblock == NULLFSBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE)
Dave Chinner0937e0f2011-09-18 20:40:57 +00004320 bma.minleft = be16_to_cpu(ifp->if_broot->bb_level) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 else
Dave Chinner0937e0f2011-09-18 20:40:57 +00004322 bma.minleft = 1;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004323 } else {
Dave Chinner0937e0f2011-09-18 20:40:57 +00004324 bma.minleft = 0;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004325 }
4326
4327 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4328 error = xfs_iread_extents(tp, ip, whichfork);
4329 if (error)
4330 goto error0;
4331 }
4332
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 n = 0;
4334 end = bno + len;
4335 obno = bno;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004336
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004337 if (!xfs_iext_lookup_extent(ip, ifp, bno, &bma.icur, &bma.got))
Christoph Hellwig2d58f6e2016-11-24 11:39:43 +11004338 eof = true;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004339 if (!xfs_iext_peek_prev_extent(ifp, &bma.icur, &bma.prev))
Christoph Hellwig2d58f6e2016-11-24 11:39:43 +11004340 bma.prev.br_startoff = NULLFILEOFF;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004341 bma.tp = tp;
4342 bma.ip = ip;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004343 bma.total = total;
Dave Chinner292378e2016-09-26 08:21:28 +10004344 bma.datatype = 0;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10004345 bma.dfops = dfops;
Dave Chinner0937e0f2011-09-18 20:40:57 +00004346 bma.firstblock = firstblock;
Christoph Hellwigb4e91812010-06-23 18:11:15 +10004347
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 while (bno < end && n < *nmap) {
Christoph Hellwigd2b39642017-01-20 09:31:54 -08004349 bool need_alloc = false, wasdelay = false;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004350
Darrick J. Wongbe78ff02018-01-16 19:03:59 -08004351 /* in hole or beyond EOF? */
Christoph Hellwigd2b39642017-01-20 09:31:54 -08004352 if (eof || bma.got.br_startoff > bno) {
Darrick J. Wongbe78ff02018-01-16 19:03:59 -08004353 /*
4354 * CoW fork conversions should /never/ hit EOF or
4355 * holes. There should always be something for us
4356 * to work on.
4357 */
4358 ASSERT(!((flags & XFS_BMAPI_CONVERT) &&
4359 (flags & XFS_BMAPI_COWFORK)));
4360
Christoph Hellwigd2b39642017-01-20 09:31:54 -08004361 if (flags & XFS_BMAPI_DELALLOC) {
4362 /*
4363 * For the COW fork we can reasonably get a
4364 * request for converting an extent that races
4365 * with other threads already having converted
4366 * part of it, as there converting COW to
4367 * regular blocks is not protected using the
4368 * IOLOCK.
4369 */
4370 ASSERT(flags & XFS_BMAPI_COWFORK);
4371 if (!(flags & XFS_BMAPI_COWFORK)) {
4372 error = -EIO;
4373 goto error0;
4374 }
4375
4376 if (eof || bno >= end)
4377 break;
4378 } else {
4379 need_alloc = true;
4380 }
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004381 } else if (isnullstartblock(bma.got.br_startblock)) {
4382 wasdelay = true;
Christoph Hellwigd2b39642017-01-20 09:31:54 -08004383 }
Darrick J. Wongf65306e2016-10-03 09:11:27 -07004384
4385 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 * First, deal with the hole before the allocated space
4387 * that we found, if any.
4388 */
Christoph Hellwigb1214592017-11-03 10:34:44 -07004389 if ((need_alloc || wasdelay) &&
4390 !(flags & XFS_BMAPI_CONVERT_ONLY)) {
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004391 bma.eof = eof;
4392 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
4393 bma.wasdel = wasdelay;
Dave Chinner3a756672011-09-18 20:40:58 +00004394 bma.offset = bno;
Dave Chinnere04426b2012-10-05 11:06:59 +10004395 bma.flags = flags;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004396
Dave Chinnera99ebf42011-12-01 11:24:20 +00004397 /*
4398 * There's a 32/64 bit type mismatch between the
4399 * allocation length request (which can be 64 bits in
4400 * length) and the bma length request, which is
4401 * xfs_extlen_t and therefore 32 bits. Hence we have to
4402 * check for 32-bit overflows and handle them here.
4403 */
4404 if (len > (xfs_filblks_t)MAXEXTLEN)
4405 bma.length = MAXEXTLEN;
4406 else
4407 bma.length = len;
4408
4409 ASSERT(len > 0);
4410 ASSERT(bma.length > 0);
Dave Chinnere04426b2012-10-05 11:06:59 +10004411 error = xfs_bmapi_allocate(&bma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 if (error)
4413 goto error0;
Dave Chinner3a756672011-09-18 20:40:58 +00004414 if (bma.blkno == NULLFSBLOCK)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004415 break;
Darrick J. Wong174edb02016-10-03 09:11:39 -07004416
4417 /*
4418 * If this is a CoW allocation, record the data in
4419 * the refcount btree for orphan recovery.
4420 */
4421 if (whichfork == XFS_COW_FORK) {
4422 error = xfs_refcount_alloc_cow_extent(mp, dfops,
4423 bma.blkno, bma.length);
4424 if (error)
4425 goto error0;
4426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 }
Christoph Hellwig44032802011-09-18 20:40:48 +00004428
Dave Chinneraef9a892011-09-18 20:40:44 +00004429 /* Deal with the allocated space we found. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004430 xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno,
4431 end, n, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432
Dave Chinnerb447fe52011-09-18 20:40:51 +00004433 /* Execute unwritten extent conversion if necessary */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004434 error = xfs_bmapi_convert_unwritten(&bma, mval, len, flags);
Dave Chinner24513372014-06-25 14:58:08 +10004435 if (error == -EAGAIN)
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004436 continue;
4437 if (error)
4438 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439
Dave Chinneraef9a892011-09-18 20:40:44 +00004440 /* update the extent map to return */
4441 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4442
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 /*
4444 * If we're done, stop now. Stop when we've allocated
4445 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4446 * the transaction may get too big.
4447 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004448 if (bno >= end || n >= *nmap || bma.nallocs >= *nmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 break;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004450
4451 /* Else go on to the next record. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004452 bma.prev = bma.got;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004453 if (!xfs_iext_next_extent(ifp, &bma.icur, &bma.got))
Christoph Hellwig2d58f6e2016-11-24 11:39:43 +11004454 eof = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 *nmap = n;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004457
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 /*
4459 * Transform from btree to extents, give it cur.
4460 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004461 if (xfs_bmap_wants_extents(ip, whichfork)) {
Christoph Hellwigc315c902011-09-18 20:41:02 +00004462 int tmp_logflags = 0;
4463
Dave Chinner29c8d172011-09-18 20:41:00 +00004464 ASSERT(bma.cur);
4465 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 &tmp_logflags, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004467 bma.logflags |= tmp_logflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 if (error)
4469 goto error0;
4470 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004471
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004473 XFS_IFORK_NEXTENTS(ip, whichfork) >
4474 XFS_IFORK_MAXEXT(ip, whichfork));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476error0:
4477 /*
4478 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004479 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004481 if ((bma.logflags & xfs_ilog_fext(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Christoph Hellwigc315c902011-09-18 20:41:02 +00004483 bma.logflags &= ~xfs_ilog_fext(whichfork);
4484 else if ((bma.logflags & xfs_ilog_fbroot(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
Christoph Hellwigc315c902011-09-18 20:41:02 +00004486 bma.logflags &= ~xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 /*
4488 * Log whatever the flags say, even if error. Otherwise we might miss
4489 * detecting a case where the data is changed, there's an error,
4490 * and it's not logged so we don't shutdown when we should.
4491 */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004492 if (bma.logflags)
4493 xfs_trans_log_inode(tp, ip, bma.logflags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004494
Dave Chinner29c8d172011-09-18 20:41:00 +00004495 if (bma.cur) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 if (!error) {
4497 ASSERT(*firstblock == NULLFSBLOCK ||
Christoph Hellwig410d17f2017-02-16 17:12:51 -08004498 XFS_FSB_TO_AGNO(mp, *firstblock) <=
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 XFS_FSB_TO_AGNO(mp,
Christoph Hellwig410d17f2017-02-16 17:12:51 -08004500 bma.cur->bc_private.b.firstblock));
Dave Chinner29c8d172011-09-18 20:41:00 +00004501 *firstblock = bma.cur->bc_private.b.firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 }
Dave Chinner29c8d172011-09-18 20:41:00 +00004503 xfs_btree_del_cursor(bma.cur,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
4505 }
4506 if (!error)
4507 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
4508 orig_nmap, *nmap);
4509 return error;
4510}
4511
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004512int
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004513xfs_bmapi_remap(
4514 struct xfs_trans *tp,
4515 struct xfs_inode *ip,
4516 xfs_fileoff_t bno,
4517 xfs_filblks_t len,
4518 xfs_fsblock_t startblock,
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004519 struct xfs_defer_ops *dfops,
4520 int flags)
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004521{
4522 struct xfs_mount *mp = ip->i_mount;
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004523 struct xfs_ifork *ifp;
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004524 struct xfs_btree_cur *cur = NULL;
4525 xfs_fsblock_t firstblock = NULLFSBLOCK;
4526 struct xfs_bmbt_irec got;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004527 struct xfs_iext_cursor icur;
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004528 int whichfork = xfs_bmapi_whichfork(flags);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004529 int logflags = 0, error;
4530
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004531 ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004532 ASSERT(len > 0);
4533 ASSERT(len <= (xfs_filblks_t)MAXEXTLEN);
4534 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Darrick J. Wong7644bd92018-05-14 06:34:35 -07004535 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC |
4536 XFS_BMAPI_NORMAP)));
4537 ASSERT((flags & (XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC)) !=
4538 (XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC));
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004539
4540 if (unlikely(XFS_TEST_ERROR(
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004541 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4542 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07004543 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004544 XFS_ERROR_REPORT("xfs_bmapi_remap", XFS_ERRLEVEL_LOW, mp);
4545 return -EFSCORRUPTED;
4546 }
4547
4548 if (XFS_FORCED_SHUTDOWN(mp))
4549 return -EIO;
4550
4551 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004552 error = xfs_iread_extents(tp, ip, whichfork);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004553 if (error)
4554 return error;
4555 }
4556
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004557 if (xfs_iext_lookup_extent(ip, ifp, bno, &icur, &got)) {
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004558 /* make sure we only reflink into a hole. */
4559 ASSERT(got.br_startoff > bno);
4560 ASSERT(got.br_startoff - bno >= len);
4561 }
4562
Christoph Hellwigbf8eadb2017-04-11 16:45:56 -07004563 ip->i_d.di_nblocks += len;
4564 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004565
4566 if (ifp->if_flags & XFS_IFBROOT) {
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004567 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004568 cur->bc_private.b.firstblock = firstblock;
4569 cur->bc_private.b.dfops = dfops;
4570 cur->bc_private.b.flags = 0;
4571 }
4572
4573 got.br_startoff = bno;
4574 got.br_startblock = startblock;
4575 got.br_blockcount = len;
Darrick J. Wong7644bd92018-05-14 06:34:35 -07004576 if (flags & XFS_BMAPI_PREALLOC)
4577 got.br_state = XFS_EXT_UNWRITTEN;
4578 else
4579 got.br_state = XFS_EXT_NORM;
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004580
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004581 error = xfs_bmap_add_extent_hole_real(tp, ip, whichfork, &icur,
4582 &cur, &got, &firstblock, dfops, &logflags, flags);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004583 if (error)
4584 goto error0;
4585
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004586 if (xfs_bmap_wants_extents(ip, whichfork)) {
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004587 int tmp_logflags = 0;
4588
4589 error = xfs_bmap_btree_to_extents(tp, ip, cur,
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004590 &tmp_logflags, whichfork);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004591 logflags |= tmp_logflags;
4592 }
4593
4594error0:
4595 if (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS)
4596 logflags &= ~XFS_ILOG_DEXT;
4597 else if (ip->i_d.di_format != XFS_DINODE_FMT_BTREE)
4598 logflags &= ~XFS_ILOG_DBROOT;
4599
4600 if (logflags)
4601 xfs_trans_log_inode(tp, ip, logflags);
4602 if (cur) {
4603 xfs_btree_del_cursor(cur,
4604 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
4605 }
4606 return error;
4607}
4608
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609/*
Brian Fostera9bd24a2016-03-15 11:42:46 +11004610 * When a delalloc extent is split (e.g., due to a hole punch), the original
4611 * indlen reservation must be shared across the two new extents that are left
4612 * behind.
4613 *
4614 * Given the original reservation and the worst case indlen for the two new
4615 * extents (as calculated by xfs_bmap_worst_indlen()), split the original
Brian Fosterd34999c2016-03-15 11:42:47 +11004616 * reservation fairly across the two new extents. If necessary, steal available
4617 * blocks from a deleted extent to make up a reservation deficiency (e.g., if
4618 * ores == 1). The number of stolen blocks is returned. The availability and
4619 * subsequent accounting of stolen blocks is the responsibility of the caller.
Brian Fostera9bd24a2016-03-15 11:42:46 +11004620 */
Brian Fosterd34999c2016-03-15 11:42:47 +11004621static xfs_filblks_t
Brian Fostera9bd24a2016-03-15 11:42:46 +11004622xfs_bmap_split_indlen(
4623 xfs_filblks_t ores, /* original res. */
4624 xfs_filblks_t *indlen1, /* ext1 worst indlen */
Brian Fosterd34999c2016-03-15 11:42:47 +11004625 xfs_filblks_t *indlen2, /* ext2 worst indlen */
4626 xfs_filblks_t avail) /* stealable blocks */
Brian Fostera9bd24a2016-03-15 11:42:46 +11004627{
4628 xfs_filblks_t len1 = *indlen1;
4629 xfs_filblks_t len2 = *indlen2;
4630 xfs_filblks_t nres = len1 + len2; /* new total res. */
Brian Fosterd34999c2016-03-15 11:42:47 +11004631 xfs_filblks_t stolen = 0;
Brian Foster75d65362017-02-13 22:48:30 -08004632 xfs_filblks_t resfactor;
Brian Fostera9bd24a2016-03-15 11:42:46 +11004633
4634 /*
Brian Fosterd34999c2016-03-15 11:42:47 +11004635 * Steal as many blocks as we can to try and satisfy the worst case
4636 * indlen for both new extents.
4637 */
Brian Foster75d65362017-02-13 22:48:30 -08004638 if (ores < nres && avail)
4639 stolen = XFS_FILBLKS_MIN(nres - ores, avail);
4640 ores += stolen;
4641
4642 /* nothing else to do if we've satisfied the new reservation */
4643 if (ores >= nres)
4644 return stolen;
Brian Fosterd34999c2016-03-15 11:42:47 +11004645
4646 /*
Brian Foster75d65362017-02-13 22:48:30 -08004647 * We can't meet the total required reservation for the two extents.
4648 * Calculate the percent of the overall shortage between both extents
4649 * and apply this percentage to each of the requested indlen values.
4650 * This distributes the shortage fairly and reduces the chances that one
4651 * of the two extents is left with nothing when extents are repeatedly
4652 * split.
Brian Fostera9bd24a2016-03-15 11:42:46 +11004653 */
Brian Foster75d65362017-02-13 22:48:30 -08004654 resfactor = (ores * 100);
4655 do_div(resfactor, nres);
4656 len1 *= resfactor;
4657 do_div(len1, 100);
4658 len2 *= resfactor;
4659 do_div(len2, 100);
4660 ASSERT(len1 + len2 <= ores);
4661 ASSERT(len1 < *indlen1 && len2 < *indlen2);
4662
4663 /*
4664 * Hand out the remainder to each extent. If one of the two reservations
4665 * is zero, we want to make sure that one gets a block first. The loop
4666 * below starts with len1, so hand len2 a block right off the bat if it
4667 * is zero.
4668 */
4669 ores -= (len1 + len2);
4670 ASSERT((*indlen1 - len1) + (*indlen2 - len2) >= ores);
4671 if (ores && !len2 && *indlen2) {
4672 len2++;
4673 ores--;
4674 }
4675 while (ores) {
4676 if (len1 < *indlen1) {
4677 len1++;
4678 ores--;
Brian Fostera9bd24a2016-03-15 11:42:46 +11004679 }
Brian Foster75d65362017-02-13 22:48:30 -08004680 if (!ores)
Brian Fostera9bd24a2016-03-15 11:42:46 +11004681 break;
Brian Foster75d65362017-02-13 22:48:30 -08004682 if (len2 < *indlen2) {
4683 len2++;
4684 ores--;
Brian Fostera9bd24a2016-03-15 11:42:46 +11004685 }
4686 }
4687
4688 *indlen1 = len1;
4689 *indlen2 = len2;
Brian Fosterd34999c2016-03-15 11:42:47 +11004690
4691 return stolen;
Brian Fostera9bd24a2016-03-15 11:42:46 +11004692}
4693
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004694int
4695xfs_bmap_del_extent_delay(
4696 struct xfs_inode *ip,
4697 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004698 struct xfs_iext_cursor *icur,
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004699 struct xfs_bmbt_irec *got,
4700 struct xfs_bmbt_irec *del)
4701{
4702 struct xfs_mount *mp = ip->i_mount;
4703 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
4704 struct xfs_bmbt_irec new;
4705 int64_t da_old, da_new, da_diff = 0;
4706 xfs_fileoff_t del_endoff, got_endoff;
4707 xfs_filblks_t got_indlen, new_indlen, stolen;
Christoph Hellwig060ea652017-10-19 11:02:29 -07004708 int state = xfs_bmap_fork_to_state(whichfork);
4709 int error = 0;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004710 bool isrt;
4711
4712 XFS_STATS_INC(mp, xs_del_exlist);
4713
4714 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
4715 del_endoff = del->br_startoff + del->br_blockcount;
4716 got_endoff = got->br_startoff + got->br_blockcount;
4717 da_old = startblockval(got->br_startblock);
4718 da_new = 0;
4719
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004720 ASSERT(del->br_blockcount > 0);
4721 ASSERT(got->br_startoff <= del->br_startoff);
4722 ASSERT(got_endoff >= del_endoff);
4723
4724 if (isrt) {
Eric Sandeen4f1adf32017-04-19 15:19:32 -07004725 uint64_t rtexts = XFS_FSB_TO_B(mp, del->br_blockcount);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004726
4727 do_div(rtexts, mp->m_sb.sb_rextsize);
4728 xfs_mod_frextents(mp, rtexts);
4729 }
4730
4731 /*
4732 * Update the inode delalloc counter now and wait to update the
4733 * sb counters as we might have to borrow some blocks for the
4734 * indirect block accounting.
4735 */
Darrick J. Wong4fd29ec42016-11-08 11:59:26 +11004736 error = xfs_trans_reserve_quota_nblks(NULL, ip,
4737 -((long)del->br_blockcount), 0,
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004738 isrt ? XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
Darrick J. Wong4fd29ec42016-11-08 11:59:26 +11004739 if (error)
4740 return error;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004741 ip->i_delayed_blks -= del->br_blockcount;
4742
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004743 if (got->br_startoff == del->br_startoff)
Christoph Hellwig0173c682017-10-17 14:16:22 -07004744 state |= BMAP_LEFT_FILLING;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004745 if (got_endoff == del_endoff)
Christoph Hellwig0173c682017-10-17 14:16:22 -07004746 state |= BMAP_RIGHT_FILLING;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004747
Christoph Hellwig0173c682017-10-17 14:16:22 -07004748 switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) {
4749 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004750 /*
4751 * Matches the whole extent. Delete the entry.
4752 */
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07004753 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004754 xfs_iext_prev(ifp, icur);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004755 break;
Christoph Hellwig0173c682017-10-17 14:16:22 -07004756 case BMAP_LEFT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004757 /*
4758 * Deleting the first part of the extent.
4759 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004760 got->br_startoff = del_endoff;
4761 got->br_blockcount -= del->br_blockcount;
4762 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip,
4763 got->br_blockcount), da_old);
4764 got->br_startblock = nullstartblock((int)da_new);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004765 xfs_iext_update_extent(ip, state, icur, got);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004766 break;
Christoph Hellwig0173c682017-10-17 14:16:22 -07004767 case BMAP_RIGHT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004768 /*
4769 * Deleting the last part of the extent.
4770 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004771 got->br_blockcount = got->br_blockcount - del->br_blockcount;
4772 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip,
4773 got->br_blockcount), da_old);
4774 got->br_startblock = nullstartblock((int)da_new);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004775 xfs_iext_update_extent(ip, state, icur, got);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004776 break;
4777 case 0:
4778 /*
4779 * Deleting the middle of the extent.
4780 *
4781 * Distribute the original indlen reservation across the two new
4782 * extents. Steal blocks from the deleted extent if necessary.
4783 * Stealing blocks simply fudges the fdblocks accounting below.
4784 * Warn if either of the new indlen reservations is zero as this
4785 * can lead to delalloc problems.
4786 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004787 got->br_blockcount = del->br_startoff - got->br_startoff;
4788 got_indlen = xfs_bmap_worst_indlen(ip, got->br_blockcount);
4789
4790 new.br_blockcount = got_endoff - del_endoff;
4791 new_indlen = xfs_bmap_worst_indlen(ip, new.br_blockcount);
4792
4793 WARN_ON_ONCE(!got_indlen || !new_indlen);
4794 stolen = xfs_bmap_split_indlen(da_old, &got_indlen, &new_indlen,
4795 del->br_blockcount);
4796
4797 got->br_startblock = nullstartblock((int)got_indlen);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004798
4799 new.br_startoff = del_endoff;
4800 new.br_state = got->br_state;
4801 new.br_startblock = nullstartblock((int)new_indlen);
4802
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004803 xfs_iext_update_extent(ip, state, icur, got);
4804 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07004805 xfs_iext_insert(ip, icur, &new, state);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004806
4807 da_new = got_indlen + new_indlen - stolen;
4808 del->br_blockcount -= stolen;
4809 break;
4810 }
4811
4812 ASSERT(da_old >= da_new);
4813 da_diff = da_old - da_new;
4814 if (!isrt)
4815 da_diff += del->br_blockcount;
4816 if (da_diff)
4817 xfs_mod_fdblocks(mp, da_diff, false);
4818 return error;
4819}
4820
4821void
4822xfs_bmap_del_extent_cow(
4823 struct xfs_inode *ip,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004824 struct xfs_iext_cursor *icur,
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004825 struct xfs_bmbt_irec *got,
4826 struct xfs_bmbt_irec *del)
4827{
4828 struct xfs_mount *mp = ip->i_mount;
4829 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
4830 struct xfs_bmbt_irec new;
4831 xfs_fileoff_t del_endoff, got_endoff;
4832 int state = BMAP_COWFORK;
4833
4834 XFS_STATS_INC(mp, xs_del_exlist);
4835
4836 del_endoff = del->br_startoff + del->br_blockcount;
4837 got_endoff = got->br_startoff + got->br_blockcount;
4838
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004839 ASSERT(del->br_blockcount > 0);
4840 ASSERT(got->br_startoff <= del->br_startoff);
4841 ASSERT(got_endoff >= del_endoff);
4842 ASSERT(!isnullstartblock(got->br_startblock));
4843
4844 if (got->br_startoff == del->br_startoff)
Christoph Hellwig0173c682017-10-17 14:16:22 -07004845 state |= BMAP_LEFT_FILLING;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004846 if (got_endoff == del_endoff)
Christoph Hellwig0173c682017-10-17 14:16:22 -07004847 state |= BMAP_RIGHT_FILLING;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004848
Christoph Hellwig0173c682017-10-17 14:16:22 -07004849 switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) {
4850 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004851 /*
4852 * Matches the whole extent. Delete the entry.
4853 */
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07004854 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004855 xfs_iext_prev(ifp, icur);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004856 break;
Christoph Hellwig0173c682017-10-17 14:16:22 -07004857 case BMAP_LEFT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004858 /*
4859 * Deleting the first part of the extent.
4860 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004861 got->br_startoff = del_endoff;
4862 got->br_blockcount -= del->br_blockcount;
4863 got->br_startblock = del->br_startblock + del->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004864 xfs_iext_update_extent(ip, state, icur, got);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004865 break;
Christoph Hellwig0173c682017-10-17 14:16:22 -07004866 case BMAP_RIGHT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004867 /*
4868 * Deleting the last part of the extent.
4869 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004870 got->br_blockcount -= del->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004871 xfs_iext_update_extent(ip, state, icur, got);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004872 break;
4873 case 0:
4874 /*
4875 * Deleting the middle of the extent.
4876 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004877 got->br_blockcount = del->br_startoff - got->br_startoff;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004878
4879 new.br_startoff = del_endoff;
4880 new.br_blockcount = got_endoff - del_endoff;
4881 new.br_state = got->br_state;
4882 new.br_startblock = del->br_startblock + del->br_blockcount;
4883
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004884 xfs_iext_update_extent(ip, state, icur, got);
4885 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07004886 xfs_iext_insert(ip, icur, &new, state);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004887 break;
4888 }
Darrick J. Wong4b4c1322018-01-19 09:05:48 -08004889 ip->i_delayed_blks -= del->br_blockcount;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004890}
4891
Brian Fostera9bd24a2016-03-15 11:42:46 +11004892/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11004893 * Called by xfs_bmapi to update file extent records and the btree
Christoph Hellwige1d75532017-10-17 14:16:21 -07004894 * after removing space.
Dave Chinner9e5987a72013-02-25 12:31:26 +11004895 */
4896STATIC int /* error */
Christoph Hellwige1d75532017-10-17 14:16:21 -07004897xfs_bmap_del_extent_real(
Dave Chinner9e5987a72013-02-25 12:31:26 +11004898 xfs_inode_t *ip, /* incore inode pointer */
4899 xfs_trans_t *tp, /* current transaction pointer */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004900 struct xfs_iext_cursor *icur,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10004901 struct xfs_defer_ops *dfops, /* list of extents to be freed */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004902 xfs_btree_cur_t *cur, /* if null, not a btree */
4903 xfs_bmbt_irec_t *del, /* data to remove from extents */
4904 int *logflagsp, /* inode logging flags */
Darrick J. Wong4847acf2016-10-03 09:11:27 -07004905 int whichfork, /* data or attr fork */
4906 int bflags) /* bmapi flags */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004907{
Dave Chinner9e5987a72013-02-25 12:31:26 +11004908 xfs_fsblock_t del_endblock=0; /* first block past del */
4909 xfs_fileoff_t del_endoff; /* first offset past del */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004910 int do_fx; /* free extent at end of routine */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004911 int error; /* error return value */
Christoph Hellwig1b24b632017-10-17 14:16:22 -07004912 int flags = 0;/* inode logging flags */
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07004913 struct xfs_bmbt_irec got; /* current extent entry */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004914 xfs_fileoff_t got_endoff; /* first offset past got */
4915 int i; /* temp state */
4916 xfs_ifork_t *ifp; /* inode fork pointer */
4917 xfs_mount_t *mp; /* mount structure */
4918 xfs_filblks_t nblks; /* quota/sb block count */
4919 xfs_bmbt_irec_t new; /* new record to be inserted */
4920 /* REFERENCED */
4921 uint qfield; /* quota field to update */
Christoph Hellwig060ea652017-10-19 11:02:29 -07004922 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07004923 struct xfs_bmbt_irec old;
Dave Chinner9e5987a72013-02-25 12:31:26 +11004924
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11004925 mp = ip->i_mount;
4926 XFS_STATS_INC(mp, xs_del_exlist);
Dave Chinner9e5987a72013-02-25 12:31:26 +11004927
Dave Chinner9e5987a72013-02-25 12:31:26 +11004928 ifp = XFS_IFORK_PTR(ip, whichfork);
Dave Chinner9e5987a72013-02-25 12:31:26 +11004929 ASSERT(del->br_blockcount > 0);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004930 xfs_iext_get_extent(ifp, icur, &got);
Dave Chinner9e5987a72013-02-25 12:31:26 +11004931 ASSERT(got.br_startoff <= del->br_startoff);
4932 del_endoff = del->br_startoff + del->br_blockcount;
4933 got_endoff = got.br_startoff + got.br_blockcount;
4934 ASSERT(got_endoff >= del_endoff);
Christoph Hellwige1d75532017-10-17 14:16:21 -07004935 ASSERT(!isnullstartblock(got.br_startblock));
Dave Chinner9e5987a72013-02-25 12:31:26 +11004936 qfield = 0;
4937 error = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +11004938
Christoph Hellwig1b24b632017-10-17 14:16:22 -07004939 /*
4940 * If it's the case where the directory code is running with no block
4941 * reservation, and the deleted block is in the middle of its extent,
4942 * and the resulting insert of an extent would cause transformation to
4943 * btree format, then reject it. The calling code will then swap blocks
4944 * around instead. We have to do this now, rather than waiting for the
4945 * conversion to btree format, since the transaction will be dirty then.
4946 */
4947 if (tp->t_blk_res == 0 &&
4948 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
4949 XFS_IFORK_NEXTENTS(ip, whichfork) >=
4950 XFS_IFORK_MAXEXT(ip, whichfork) &&
4951 del->br_startoff > got.br_startoff && del_endoff < got_endoff)
4952 return -ENOSPC;
4953
4954 flags = XFS_ILOG_CORE;
Christoph Hellwige1d75532017-10-17 14:16:21 -07004955 if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) {
4956 xfs_fsblock_t bno;
4957 xfs_filblks_t len;
Dave Chinner0703a8e2018-06-08 09:54:22 -07004958 xfs_extlen_t mod;
Christoph Hellwige1d75532017-10-17 14:16:21 -07004959
Dave Chinner0703a8e2018-06-08 09:54:22 -07004960 bno = div_u64_rem(del->br_startblock, mp->m_sb.sb_rextsize,
4961 &mod);
4962 ASSERT(mod == 0);
4963 len = div_u64_rem(del->br_blockcount, mp->m_sb.sb_rextsize,
4964 &mod);
4965 ASSERT(mod == 0);
4966
Christoph Hellwige1d75532017-10-17 14:16:21 -07004967 error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len);
4968 if (error)
4969 goto done;
Dave Chinner9e5987a72013-02-25 12:31:26 +11004970 do_fx = 0;
Christoph Hellwige1d75532017-10-17 14:16:21 -07004971 nblks = len * mp->m_sb.sb_rextsize;
4972 qfield = XFS_TRANS_DQ_RTBCOUNT;
4973 } else {
4974 do_fx = 1;
4975 nblks = del->br_blockcount;
4976 qfield = XFS_TRANS_DQ_BCOUNT;
4977 }
4978
4979 del_endblock = del->br_startblock + del->br_blockcount;
4980 if (cur) {
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07004981 error = xfs_bmbt_lookup_eq(cur, &got, &i);
Christoph Hellwige1d75532017-10-17 14:16:21 -07004982 if (error)
4983 goto done;
4984 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Dave Chinner9e5987a72013-02-25 12:31:26 +11004985 }
Darrick J. Wong340785c2016-08-03 11:33:42 +10004986
Christoph Hellwig491f6f8a2017-10-17 14:16:23 -07004987 if (got.br_startoff == del->br_startoff)
4988 state |= BMAP_LEFT_FILLING;
4989 if (got_endoff == del_endoff)
4990 state |= BMAP_RIGHT_FILLING;
4991
4992 switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) {
4993 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Dave Chinner9e5987a72013-02-25 12:31:26 +11004994 /*
4995 * Matches the whole extent. Delete the entry.
4996 */
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07004997 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004998 xfs_iext_prev(ifp, icur);
Dave Chinner9e5987a72013-02-25 12:31:26 +11004999 XFS_IFORK_NEXT_SET(ip, whichfork,
5000 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
5001 flags |= XFS_ILOG_CORE;
5002 if (!cur) {
5003 flags |= xfs_ilog_fext(whichfork);
5004 break;
5005 }
5006 if ((error = xfs_btree_delete(cur, &i)))
5007 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11005008 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005009 break;
Christoph Hellwig491f6f8a2017-10-17 14:16:23 -07005010 case BMAP_LEFT_FILLING:
Dave Chinner9e5987a72013-02-25 12:31:26 +11005011 /*
5012 * Deleting the first part of the extent.
5013 */
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005014 got.br_startoff = del_endoff;
5015 got.br_startblock = del_endblock;
5016 got.br_blockcount -= del->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005017 xfs_iext_update_extent(ip, state, icur, &got);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005018 if (!cur) {
5019 flags |= xfs_ilog_fext(whichfork);
5020 break;
5021 }
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005022 error = xfs_bmbt_update(cur, &got);
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005023 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11005024 goto done;
5025 break;
Christoph Hellwig491f6f8a2017-10-17 14:16:23 -07005026 case BMAP_RIGHT_FILLING:
Dave Chinner9e5987a72013-02-25 12:31:26 +11005027 /*
5028 * Deleting the last part of the extent.
5029 */
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005030 got.br_blockcount -= del->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005031 xfs_iext_update_extent(ip, state, icur, &got);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005032 if (!cur) {
5033 flags |= xfs_ilog_fext(whichfork);
5034 break;
5035 }
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005036 error = xfs_bmbt_update(cur, &got);
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005037 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11005038 goto done;
5039 break;
Dave Chinner9e5987a72013-02-25 12:31:26 +11005040 case 0:
5041 /*
5042 * Deleting the middle of the extent.
5043 */
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005044 old = got;
Christoph Hellwigca5d8e5b2017-10-19 11:04:44 -07005045
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005046 got.br_blockcount = del->br_startoff - got.br_startoff;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005047 xfs_iext_update_extent(ip, state, icur, &got);
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005048
Dave Chinner9e5987a72013-02-25 12:31:26 +11005049 new.br_startoff = del_endoff;
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005050 new.br_blockcount = got_endoff - del_endoff;
Dave Chinner9e5987a72013-02-25 12:31:26 +11005051 new.br_state = got.br_state;
Christoph Hellwige1d75532017-10-17 14:16:21 -07005052 new.br_startblock = del_endblock;
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005053
Christoph Hellwige1d75532017-10-17 14:16:21 -07005054 flags |= XFS_ILOG_CORE;
5055 if (cur) {
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005056 error = xfs_bmbt_update(cur, &got);
Christoph Hellwige1d75532017-10-17 14:16:21 -07005057 if (error)
5058 goto done;
5059 error = xfs_btree_increment(cur, 0, &i);
5060 if (error)
5061 goto done;
5062 cur->bc_rec.b = new;
5063 error = xfs_btree_insert(cur, &i);
5064 if (error && error != -ENOSPC)
5065 goto done;
5066 /*
5067 * If get no-space back from btree insert, it tried a
5068 * split, and we have a zero block reservation. Fix up
5069 * our state and return the error.
5070 */
5071 if (error == -ENOSPC) {
5072 /*
5073 * Reset the cursor, don't trust it after any
5074 * insert operation.
5075 */
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005076 error = xfs_bmbt_lookup_eq(cur, &got, &i);
Christoph Hellwige1d75532017-10-17 14:16:21 -07005077 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11005078 goto done;
Christoph Hellwige1d75532017-10-17 14:16:21 -07005079 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
5080 /*
5081 * Update the btree record back
5082 * to the original value.
5083 */
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005084 error = xfs_bmbt_update(cur, &old);
Christoph Hellwige1d75532017-10-17 14:16:21 -07005085 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11005086 goto done;
5087 /*
Christoph Hellwige1d75532017-10-17 14:16:21 -07005088 * Reset the extent record back
5089 * to the original value.
Dave Chinner9e5987a72013-02-25 12:31:26 +11005090 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005091 xfs_iext_update_extent(ip, state, icur, &old);
Christoph Hellwige1d75532017-10-17 14:16:21 -07005092 flags = 0;
5093 error = -ENOSPC;
5094 goto done;
5095 }
5096 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
5097 } else
5098 flags |= xfs_ilog_fext(whichfork);
5099 XFS_IFORK_NEXT_SET(ip, whichfork,
5100 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005101 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07005102 xfs_iext_insert(ip, icur, &new, state);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005103 break;
5104 }
Darrick J. Wong9c194642016-08-03 12:16:05 +10005105
5106 /* remove reverse mapping */
Christoph Hellwige1d75532017-10-17 14:16:21 -07005107 error = xfs_rmap_unmap_extent(mp, dfops, ip, whichfork, del);
5108 if (error)
5109 goto done;
Darrick J. Wong9c194642016-08-03 12:16:05 +10005110
Dave Chinner9e5987a72013-02-25 12:31:26 +11005111 /*
5112 * If we need to, add to list of extents to delete.
5113 */
Darrick J. Wong4847acf2016-10-03 09:11:27 -07005114 if (do_fx && !(bflags & XFS_BMAPI_REMAP)) {
Darrick J. Wong62aab202016-10-03 09:11:23 -07005115 if (xfs_is_reflink_inode(ip) && whichfork == XFS_DATA_FORK) {
5116 error = xfs_refcount_decrease_extent(mp, dfops, del);
5117 if (error)
5118 goto done;
Brian Fosterfcb762f2018-05-09 08:45:04 -07005119 } else {
Brian Foster4e529332018-05-10 09:35:42 -07005120 __xfs_bmap_add_free(mp, dfops, del->br_startblock,
5121 del->br_blockcount, NULL,
5122 (bflags & XFS_BMAPI_NODISCARD) ||
5123 del->br_state == XFS_EXT_UNWRITTEN);
Brian Fosterfcb762f2018-05-09 08:45:04 -07005124 }
Darrick J. Wong62aab202016-10-03 09:11:23 -07005125 }
5126
Dave Chinner9e5987a72013-02-25 12:31:26 +11005127 /*
5128 * Adjust inode # blocks in the file.
5129 */
5130 if (nblks)
5131 ip->i_d.di_nblocks -= nblks;
5132 /*
5133 * Adjust quota data.
5134 */
Darrick J. Wong4847acf2016-10-03 09:11:27 -07005135 if (qfield && !(bflags & XFS_BMAPI_REMAP))
Dave Chinner9e5987a72013-02-25 12:31:26 +11005136 xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks);
5137
Dave Chinner9e5987a72013-02-25 12:31:26 +11005138done:
5139 *logflagsp = flags;
5140 return error;
5141}
5142
5143/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 * Unmap (remove) blocks from a file.
5145 * If nexts is nonzero then the number of extents to remove is limited to
5146 * that value. If not all extents in the block range can be removed then
5147 * *done is set.
5148 */
5149int /* error */
Darrick J. Wong44535932016-10-03 09:11:29 -07005150__xfs_bunmapi(
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 xfs_trans_t *tp, /* transaction pointer */
5152 struct xfs_inode *ip, /* incore inode */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005153 xfs_fileoff_t start, /* first file offset deleted */
Darrick J. Wong44535932016-10-03 09:11:29 -07005154 xfs_filblks_t *rlen, /* i/o: amount remaining */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 int flags, /* misc flags */
5156 xfs_extnum_t nexts, /* number of extents max */
5157 xfs_fsblock_t *firstblock, /* first allocated block
5158 controls a.g. for allocs */
Darrick J. Wong44535932016-10-03 09:11:29 -07005159 struct xfs_defer_ops *dfops) /* i/o: deferred updates */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160{
5161 xfs_btree_cur_t *cur; /* bmap btree cursor */
5162 xfs_bmbt_irec_t del; /* extent being deleted */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 int error; /* error return value */
5164 xfs_extnum_t extno; /* extent number in list */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005165 xfs_bmbt_irec_t got; /* current extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 xfs_ifork_t *ifp; /* inode fork pointer */
5167 int isrt; /* freeing in rt area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 int logflags; /* transaction logging flags */
5169 xfs_extlen_t mod; /* rt extent offset */
5170 xfs_mount_t *mp; /* mount structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 int tmp_logflags; /* partial logging flags */
5172 int wasdel; /* was a delayed alloc extent */
5173 int whichfork; /* data or attribute fork */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 xfs_fsblock_t sum;
Darrick J. Wong44535932016-10-03 09:11:29 -07005175 xfs_filblks_t len = *rlen; /* length to unmap in file */
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005176 xfs_fileoff_t max_len;
Christoph Hellwig5b094d62017-07-18 11:16:51 -07005177 xfs_agnumber_t prev_agno = NULLAGNUMBER, agno;
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005178 xfs_fileoff_t end;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005179 struct xfs_iext_cursor icur;
5180 bool done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005182 trace_xfs_bunmap(ip, start, len, flags, _RET_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00005183
Darrick J. Wong3993bae2016-10-03 09:11:32 -07005184 whichfork = xfs_bmapi_whichfork(flags);
5185 ASSERT(whichfork != XFS_COW_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 ifp = XFS_IFORK_PTR(ip, whichfork);
5187 if (unlikely(
5188 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5189 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
5190 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW,
5191 ip->i_mount);
Dave Chinner24513372014-06-25 14:58:08 +10005192 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 }
5194 mp = ip->i_mount;
5195 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10005196 return -EIO;
Christoph Hellwig54893272011-05-11 15:04:03 +00005197
Christoph Hellwigeef334e2013-12-06 12:30:17 -08005198 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 ASSERT(len > 0);
5200 ASSERT(nexts >= 0);
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005201
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005202 /*
5203 * Guesstimate how many blocks we can unmap without running the risk of
5204 * blowing out the transaction with a mix of EFIs and reflink
5205 * adjustments.
5206 */
Darrick J. Wong8c57b882017-12-10 18:03:53 -08005207 if (tp && xfs_is_reflink_inode(ip) && whichfork == XFS_DATA_FORK)
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005208 max_len = min(len, xfs_refcount_max_unmap(tp->t_log_res));
5209 else
5210 max_len = len;
5211
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5213 (error = xfs_iread_extents(tp, ip, whichfork)))
5214 return error;
Eric Sandeen5d829302016-11-08 12:59:42 +11005215 if (xfs_iext_count(ifp) == 0) {
Darrick J. Wong44535932016-10-03 09:11:29 -07005216 *rlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217 return 0;
5218 }
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11005219 XFS_STATS_INC(mp, xs_blk_unmap);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005220 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
Christoph Hellwigdc560152017-10-23 16:32:39 -07005221 end = start + len;
Christoph Hellwigb4e91812010-06-23 18:11:15 +10005222
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005223 if (!xfs_iext_lookup_extent_before(ip, ifp, &end, &icur, &got)) {
Christoph Hellwigdc560152017-10-23 16:32:39 -07005224 *rlen = 0;
5225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 }
Christoph Hellwigdc560152017-10-23 16:32:39 -07005227 end--;
Christoph Hellwig7efc7942016-11-24 11:39:44 +11005228
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 logflags = 0;
5230 if (ifp->if_flags & XFS_IFBROOT) {
5231 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
Christoph Hellwig561f7d12008-10-30 16:53:59 +11005232 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 cur->bc_private.b.firstblock = *firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10005234 cur->bc_private.b.dfops = dfops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235 cur->bc_private.b.flags = 0;
5236 } else
5237 cur = NULL;
Kamal Dasu5575acc2012-02-23 00:41:39 +00005238
5239 if (isrt) {
5240 /*
5241 * Synchronize by locking the bitmap inode.
5242 */
Darrick J. Wongf4a06602016-08-03 11:00:42 +10005243 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL|XFS_ILOCK_RTBITMAP);
Kamal Dasu5575acc2012-02-23 00:41:39 +00005244 xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
Darrick J. Wongf4a06602016-08-03 11:00:42 +10005245 xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL|XFS_ILOCK_RTSUM);
5246 xfs_trans_ijoin(tp, mp->m_rsumip, XFS_ILOCK_EXCL);
Kamal Dasu5575acc2012-02-23 00:41:39 +00005247 }
5248
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 extno = 0;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005250 while (end != (xfs_fileoff_t)-1 && end >= start &&
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005251 (nexts == 0 || extno < nexts) && max_len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 /*
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005253 * Is the found extent after a hole in which end lives?
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254 * Just back up to the previous extent, if so.
5255 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005256 if (got.br_startoff > end &&
5257 !xfs_iext_prev_extent(ifp, &icur, &got)) {
5258 done = true;
5259 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 }
5261 /*
5262 * Is the last block of this extent before the range
5263 * we're supposed to delete? If so, we're done.
5264 */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005265 end = XFS_FILEOFF_MIN(end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 got.br_startoff + got.br_blockcount - 1);
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005267 if (end < start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268 break;
5269 /*
5270 * Then deal with the (possibly delayed) allocated space
5271 * we found.
5272 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 del = got;
Eric Sandeen9d87c312009-01-14 23:22:07 -06005274 wasdel = isnullstartblock(del.br_startblock);
Christoph Hellwig5b094d62017-07-18 11:16:51 -07005275
5276 /*
5277 * Make sure we don't touch multiple AGF headers out of order
5278 * in a single transaction, as that could cause AB-BA deadlocks.
5279 */
5280 if (!wasdel) {
5281 agno = XFS_FSB_TO_AGNO(mp, del.br_startblock);
5282 if (prev_agno != NULLAGNUMBER && prev_agno > agno)
5283 break;
5284 prev_agno = agno;
5285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 if (got.br_startoff < start) {
5287 del.br_startoff = start;
5288 del.br_blockcount -= start - got.br_startoff;
5289 if (!wasdel)
5290 del.br_startblock += start - got.br_startoff;
5291 }
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005292 if (del.br_startoff + del.br_blockcount > end + 1)
5293 del.br_blockcount = end + 1 - del.br_startoff;
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005294
5295 /* How much can we safely unmap? */
5296 if (max_len < del.br_blockcount) {
5297 del.br_startoff += del.br_blockcount - max_len;
5298 if (!wasdel)
5299 del.br_startblock += del.br_blockcount - max_len;
5300 del.br_blockcount = max_len;
5301 }
5302
Dave Chinner0703a8e2018-06-08 09:54:22 -07005303 if (!isrt)
5304 goto delete;
5305
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 sum = del.br_startblock + del.br_blockcount;
Dave Chinner0703a8e2018-06-08 09:54:22 -07005307 div_u64_rem(sum, mp->m_sb.sb_rextsize, &mod);
5308 if (mod) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309 /*
5310 * Realtime extent not lined up at the end.
5311 * The extent could have been split into written
5312 * and unwritten pieces, or we could just be
5313 * unmapping part of it. But we can't really
5314 * get rid of part of a realtime extent.
5315 */
5316 if (del.br_state == XFS_EXT_UNWRITTEN ||
Eric Sandeen62118702008-03-06 13:44:28 +11005317 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 /*
5319 * This piece is unwritten, or we're not
5320 * using unwritten extents. Skip over it.
5321 */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005322 ASSERT(end >= mod);
5323 end -= mod > del.br_blockcount ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 del.br_blockcount : mod;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005325 if (end < got.br_startoff &&
5326 !xfs_iext_prev_extent(ifp, &icur, &got)) {
5327 done = true;
5328 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 }
5330 continue;
5331 }
5332 /*
5333 * It's written, turn it unwritten.
5334 * This is better than zeroing it.
5335 */
5336 ASSERT(del.br_state == XFS_EXT_NORM);
Christoph Hellwiga7e5d032016-03-02 09:58:21 +11005337 ASSERT(tp->t_blk_res > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 /*
5339 * If this spans a realtime extent boundary,
5340 * chop it back to the start of the one we end at.
5341 */
5342 if (del.br_blockcount > mod) {
5343 del.br_startoff += del.br_blockcount - mod;
5344 del.br_startblock += del.br_blockcount - mod;
5345 del.br_blockcount = mod;
5346 }
5347 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005348 error = xfs_bmap_add_extent_unwritten_real(tp, ip,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005349 whichfork, &icur, &cur, &del,
Darrick J. Wong05a630d2017-02-02 15:14:01 -08005350 firstblock, dfops, &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351 if (error)
5352 goto error0;
5353 goto nodelete;
5354 }
Dave Chinner0703a8e2018-06-08 09:54:22 -07005355 div_u64_rem(del.br_startblock, mp->m_sb.sb_rextsize, &mod);
5356 if (mod) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 /*
5358 * Realtime extent is lined up at the end but not
5359 * at the front. We'll get rid of full extents if
5360 * we can.
5361 */
5362 mod = mp->m_sb.sb_rextsize - mod;
5363 if (del.br_blockcount > mod) {
5364 del.br_blockcount -= mod;
5365 del.br_startoff += mod;
5366 del.br_startblock += mod;
5367 } else if ((del.br_startoff == start &&
5368 (del.br_state == XFS_EXT_UNWRITTEN ||
Christoph Hellwiga7e5d032016-03-02 09:58:21 +11005369 tp->t_blk_res == 0)) ||
Eric Sandeen62118702008-03-06 13:44:28 +11005370 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371 /*
5372 * Can't make it unwritten. There isn't
5373 * a full extent here so just skip it.
5374 */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005375 ASSERT(end >= del.br_blockcount);
5376 end -= del.br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005377 if (got.br_startoff > end &&
5378 !xfs_iext_prev_extent(ifp, &icur, &got)) {
5379 done = true;
5380 break;
5381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382 continue;
5383 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
Christoph Hellwig7efc7942016-11-24 11:39:44 +11005384 struct xfs_bmbt_irec prev;
5385
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386 /*
5387 * This one is already unwritten.
5388 * It must have a written left neighbor.
5389 * Unwrite the killed part of that one and
5390 * try again.
5391 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005392 if (!xfs_iext_prev_extent(ifp, &icur, &prev))
5393 ASSERT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 ASSERT(prev.br_state == XFS_EXT_NORM);
Eric Sandeen9d87c312009-01-14 23:22:07 -06005395 ASSERT(!isnullstartblock(prev.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 ASSERT(del.br_startblock ==
5397 prev.br_startblock + prev.br_blockcount);
5398 if (prev.br_startoff < start) {
5399 mod = start - prev.br_startoff;
5400 prev.br_blockcount -= mod;
5401 prev.br_startblock += mod;
5402 prev.br_startoff = start;
5403 }
5404 prev.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005405 error = xfs_bmap_add_extent_unwritten_real(tp,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005406 ip, whichfork, &icur, &cur,
Darrick J. Wong05a630d2017-02-02 15:14:01 -08005407 &prev, firstblock, dfops,
5408 &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 if (error)
5410 goto error0;
5411 goto nodelete;
5412 } else {
5413 ASSERT(del.br_state == XFS_EXT_NORM);
5414 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005415 error = xfs_bmap_add_extent_unwritten_real(tp,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005416 ip, whichfork, &icur, &cur,
Darrick J. Wong05a630d2017-02-02 15:14:01 -08005417 &del, firstblock, dfops,
5418 &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 if (error)
5420 goto error0;
5421 goto nodelete;
5422 }
5423 }
Nathan Scott06d10dd2005-06-21 15:48:47 +10005424
Dave Chinner0703a8e2018-06-08 09:54:22 -07005425delete:
Brian Fosterb2706a02016-03-15 11:42:46 +11005426 if (wasdel) {
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005427 error = xfs_bmap_del_extent_delay(ip, whichfork, &icur,
Christoph Hellwige1d75532017-10-17 14:16:21 -07005428 &got, &del);
5429 } else {
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005430 error = xfs_bmap_del_extent_real(ip, tp, &icur, dfops,
Christoph Hellwige1d75532017-10-17 14:16:21 -07005431 cur, &del, &tmp_logflags, whichfork,
5432 flags);
5433 logflags |= tmp_logflags;
Christoph Hellwigb213d692017-10-17 14:16:20 -07005434 }
Brian Fosterb2706a02016-03-15 11:42:46 +11005435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 if (error)
5437 goto error0;
Brian Fosterb2706a02016-03-15 11:42:46 +11005438
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005439 max_len -= del.br_blockcount;
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005440 end = del.br_startoff - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441nodelete:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442 /*
5443 * If not done go on to the next (previous) record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005445 if (end != (xfs_fileoff_t)-1 && end >= start) {
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005446 if (!xfs_iext_get_extent(ifp, &icur, &got) ||
5447 (got.br_startoff > end &&
5448 !xfs_iext_prev_extent(ifp, &icur, &got))) {
5449 done = true;
5450 break;
Christoph Hellwig00239ac2011-05-11 15:04:08 +00005451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452 extno++;
5453 }
5454 }
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005455 if (done || end == (xfs_fileoff_t)-1 || end < start)
Darrick J. Wong44535932016-10-03 09:11:29 -07005456 *rlen = 0;
5457 else
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005458 *rlen = end - start + 1;
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005459
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 /*
5461 * Convert to a btree if necessary.
5462 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005463 if (xfs_bmap_needs_btree(ip, whichfork)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464 ASSERT(cur == NULL);
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10005465 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, dfops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466 &cur, 0, &tmp_logflags, whichfork);
5467 logflags |= tmp_logflags;
5468 if (error)
5469 goto error0;
5470 }
5471 /*
5472 * transform from btree to extents, give it cur
5473 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005474 else if (xfs_bmap_wants_extents(ip, whichfork)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475 ASSERT(cur != NULL);
5476 error = xfs_bmap_btree_to_extents(tp, ip, cur, &tmp_logflags,
5477 whichfork);
5478 logflags |= tmp_logflags;
5479 if (error)
5480 goto error0;
5481 }
5482 /*
5483 * transform from extents to local?
5484 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 error = 0;
5486error0:
5487 /*
5488 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005489 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06005491 if ((logflags & xfs_ilog_fext(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005493 logflags &= ~xfs_ilog_fext(whichfork);
5494 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005496 logflags &= ~xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 /*
5498 * Log inode even in the error case, if the transaction
5499 * is dirty we'll need to shut down the filesystem.
5500 */
5501 if (logflags)
5502 xfs_trans_log_inode(tp, ip, logflags);
5503 if (cur) {
5504 if (!error) {
5505 *firstblock = cur->bc_private.b.firstblock;
5506 cur->bc_private.b.allocated = 0;
5507 }
5508 xfs_btree_del_cursor(cur,
5509 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5510 }
5511 return error;
5512}
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005513
Darrick J. Wong44535932016-10-03 09:11:29 -07005514/* Unmap a range of a file. */
5515int
5516xfs_bunmapi(
5517 xfs_trans_t *tp,
5518 struct xfs_inode *ip,
5519 xfs_fileoff_t bno,
5520 xfs_filblks_t len,
5521 int flags,
5522 xfs_extnum_t nexts,
5523 xfs_fsblock_t *firstblock,
5524 struct xfs_defer_ops *dfops,
5525 int *done)
5526{
5527 int error;
5528
5529 error = __xfs_bunmapi(tp, ip, bno, &len, flags, nexts, firstblock,
5530 dfops);
5531 *done = (len == 0);
5532 return error;
5533}
5534
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005535/*
Brian Fosterddb19e32014-09-23 15:38:09 +10005536 * Determine whether an extent shift can be accomplished by a merge with the
5537 * extent that precedes the target hole of the shift.
5538 */
5539STATIC bool
5540xfs_bmse_can_merge(
5541 struct xfs_bmbt_irec *left, /* preceding extent */
5542 struct xfs_bmbt_irec *got, /* current extent to shift */
5543 xfs_fileoff_t shift) /* shift fsb */
5544{
5545 xfs_fileoff_t startoff;
5546
5547 startoff = got->br_startoff - shift;
5548
5549 /*
5550 * The extent, once shifted, must be adjacent in-file and on-disk with
5551 * the preceding extent.
5552 */
5553 if ((left->br_startoff + left->br_blockcount != startoff) ||
5554 (left->br_startblock + left->br_blockcount != got->br_startblock) ||
5555 (left->br_state != got->br_state) ||
5556 (left->br_blockcount + got->br_blockcount > MAXEXTLEN))
5557 return false;
5558
5559 return true;
5560}
5561
5562/*
5563 * A bmap extent shift adjusts the file offset of an extent to fill a preceding
5564 * hole in the file. If an extent shift would result in the extent being fully
5565 * adjacent to the extent that currently precedes the hole, we can merge with
5566 * the preceding extent rather than do the shift.
5567 *
5568 * This function assumes the caller has verified a shift-by-merge is possible
5569 * with the provided extents via xfs_bmse_can_merge().
5570 */
5571STATIC int
5572xfs_bmse_merge(
5573 struct xfs_inode *ip,
5574 int whichfork,
5575 xfs_fileoff_t shift, /* shift fsb */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005576 struct xfs_iext_cursor *icur,
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005577 struct xfs_bmbt_irec *got, /* extent to shift */
5578 struct xfs_bmbt_irec *left, /* preceding extent */
Brian Fosterddb19e32014-09-23 15:38:09 +10005579 struct xfs_btree_cur *cur,
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005580 int *logflags, /* output */
5581 struct xfs_defer_ops *dfops)
Brian Fosterddb19e32014-09-23 15:38:09 +10005582{
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005583 struct xfs_bmbt_irec new;
Brian Fosterddb19e32014-09-23 15:38:09 +10005584 xfs_filblks_t blockcount;
5585 int error, i;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +11005586 struct xfs_mount *mp = ip->i_mount;
Brian Fosterddb19e32014-09-23 15:38:09 +10005587
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005588 blockcount = left->br_blockcount + got->br_blockcount;
Brian Fosterddb19e32014-09-23 15:38:09 +10005589
5590 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
5591 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005592 ASSERT(xfs_bmse_can_merge(left, got, shift));
Brian Fosterddb19e32014-09-23 15:38:09 +10005593
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005594 new = *left;
5595 new.br_blockcount = blockcount;
Brian Fosterddb19e32014-09-23 15:38:09 +10005596
5597 /*
5598 * Update the on-disk extent count, the btree if necessary and log the
5599 * inode.
5600 */
5601 XFS_IFORK_NEXT_SET(ip, whichfork,
5602 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
5603 *logflags |= XFS_ILOG_CORE;
5604 if (!cur) {
5605 *logflags |= XFS_ILOG_DEXT;
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005606 goto done;
Brian Fosterddb19e32014-09-23 15:38:09 +10005607 }
5608
5609 /* lookup and remove the extent to merge */
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005610 error = xfs_bmbt_lookup_eq(cur, got, &i);
Brian Fosterddb19e32014-09-23 15:38:09 +10005611 if (error)
Dave Chinner4db431f2014-12-04 09:42:40 +11005612 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +11005613 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Brian Fosterddb19e32014-09-23 15:38:09 +10005614
5615 error = xfs_btree_delete(cur, &i);
5616 if (error)
Dave Chinner4db431f2014-12-04 09:42:40 +11005617 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +11005618 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Brian Fosterddb19e32014-09-23 15:38:09 +10005619
5620 /* lookup and update size of the previous extent */
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005621 error = xfs_bmbt_lookup_eq(cur, left, &i);
Brian Fosterddb19e32014-09-23 15:38:09 +10005622 if (error)
Dave Chinner4db431f2014-12-04 09:42:40 +11005623 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +11005624 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Brian Fosterddb19e32014-09-23 15:38:09 +10005625
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005626 error = xfs_bmbt_update(cur, &new);
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005627 if (error)
5628 return error;
Brian Fosterddb19e32014-09-23 15:38:09 +10005629
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005630done:
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07005631 xfs_iext_remove(ip, icur, 0);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005632 xfs_iext_prev(XFS_IFORK_PTR(ip, whichfork), icur);
5633 xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), icur,
5634 &new);
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005635
Darrick J. Wong4cc1ee52017-08-30 16:06:36 -07005636 /* update reverse mapping. rmap functions merge the rmaps for us */
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005637 error = xfs_rmap_unmap_extent(mp, dfops, ip, whichfork, got);
5638 if (error)
5639 return error;
Darrick J. Wong4cc1ee52017-08-30 16:06:36 -07005640 memcpy(&new, got, sizeof(new));
5641 new.br_startoff = left->br_startoff + left->br_blockcount;
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005642 return xfs_rmap_map_extent(mp, dfops, ip, whichfork, &new);
Brian Fosterddb19e32014-09-23 15:38:09 +10005643}
5644
Christoph Hellwigbf806282017-10-19 11:07:34 -07005645static int
5646xfs_bmap_shift_update_extent(
5647 struct xfs_inode *ip,
5648 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005649 struct xfs_iext_cursor *icur,
Christoph Hellwigbf806282017-10-19 11:07:34 -07005650 struct xfs_bmbt_irec *got,
5651 struct xfs_btree_cur *cur,
5652 int *logflags,
5653 struct xfs_defer_ops *dfops,
5654 xfs_fileoff_t startoff)
Brian Fostera979bdf2014-09-23 15:39:04 +10005655{
Christoph Hellwigbf806282017-10-19 11:07:34 -07005656 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005657 struct xfs_bmbt_irec prev = *got;
Christoph Hellwigbf806282017-10-19 11:07:34 -07005658 int error, i;
Brian Fostera979bdf2014-09-23 15:39:04 +10005659
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005660 *logflags |= XFS_ILOG_CORE;
5661
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005662 got->br_startoff = startoff;
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005663
5664 if (cur) {
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005665 error = xfs_bmbt_lookup_eq(cur, &prev, &i);
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005666 if (error)
5667 return error;
5668 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
5669
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005670 error = xfs_bmbt_update(cur, got);
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005671 if (error)
5672 return error;
5673 } else {
5674 *logflags |= XFS_ILOG_DEXT;
5675 }
5676
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005677 xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), icur,
5678 got);
Brian Fostera979bdf2014-09-23 15:39:04 +10005679
Darrick J. Wong9c194642016-08-03 12:16:05 +10005680 /* update reverse mapping */
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005681 error = xfs_rmap_unmap_extent(mp, dfops, ip, whichfork, &prev);
Darrick J. Wong9c194642016-08-03 12:16:05 +10005682 if (error)
5683 return error;
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005684 return xfs_rmap_map_extent(mp, dfops, ip, whichfork, got);
Brian Fostera979bdf2014-09-23 15:39:04 +10005685}
5686
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005687int
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005688xfs_bmap_collapse_extents(
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005689 struct xfs_trans *tp,
5690 struct xfs_inode *ip,
Namjae Jeona904b1c2015-03-25 15:08:56 +11005691 xfs_fileoff_t *next_fsb,
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005692 xfs_fileoff_t offset_shift_fsb,
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005693 bool *done,
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005694 xfs_fsblock_t *firstblock,
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005695 struct xfs_defer_ops *dfops)
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005696{
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005697 int whichfork = XFS_DATA_FORK;
5698 struct xfs_mount *mp = ip->i_mount;
5699 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
5700 struct xfs_btree_cur *cur = NULL;
Christoph Hellwigbf806282017-10-19 11:07:34 -07005701 struct xfs_bmbt_irec got, prev;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005702 struct xfs_iext_cursor icur;
Christoph Hellwigbf806282017-10-19 11:07:34 -07005703 xfs_fileoff_t new_startoff;
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005704 int error = 0;
5705 int logflags = 0;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005706
5707 if (unlikely(XFS_TEST_ERROR(
5708 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5709 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07005710 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005711 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10005712 return -EFSCORRUPTED;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005713 }
5714
5715 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10005716 return -EIO;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005717
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005718 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL));
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005719
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005720 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005721 error = xfs_iread_extents(tp, ip, whichfork);
5722 if (error)
5723 return error;
5724 }
5725
Brian Fosterddb19e32014-09-23 15:38:09 +10005726 if (ifp->if_flags & XFS_IFBROOT) {
5727 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5728 cur->bc_private.b.firstblock = *firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10005729 cur->bc_private.b.dfops = dfops;
Brian Fosterddb19e32014-09-23 15:38:09 +10005730 cur->bc_private.b.flags = 0;
5731 }
5732
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005733 if (!xfs_iext_lookup_extent(ip, ifp, *next_fsb, &icur, &got)) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005734 *done = true;
5735 goto del_cursor;
5736 }
Eric Sandeend41c6172017-11-27 18:23:32 -08005737 XFS_WANT_CORRUPTED_GOTO(mp, !isnullstartblock(got.br_startblock),
5738 del_cursor);
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005739
Christoph Hellwigbf806282017-10-19 11:07:34 -07005740 new_startoff = got.br_startoff - offset_shift_fsb;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005741 if (xfs_iext_peek_prev_extent(ifp, &icur, &prev)) {
Christoph Hellwigbf806282017-10-19 11:07:34 -07005742 if (new_startoff < prev.br_startoff + prev.br_blockcount) {
5743 error = -EINVAL;
5744 goto del_cursor;
5745 }
5746
Christoph Hellwigbf806282017-10-19 11:07:34 -07005747 if (xfs_bmse_can_merge(&prev, &got, offset_shift_fsb)) {
5748 error = xfs_bmse_merge(ip, whichfork, offset_shift_fsb,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005749 &icur, &got, &prev, cur, &logflags,
5750 dfops);
Christoph Hellwigbf806282017-10-19 11:07:34 -07005751 if (error)
5752 goto del_cursor;
5753 goto done;
5754 }
5755 } else {
5756 if (got.br_startoff < offset_shift_fsb) {
5757 error = -EINVAL;
5758 goto del_cursor;
5759 }
5760 }
5761
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005762 error = xfs_bmap_shift_update_extent(ip, whichfork, &icur, &got, cur,
5763 &logflags, dfops, new_startoff);
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005764 if (error)
5765 goto del_cursor;
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005766
Christoph Hellwig42630362017-11-03 10:34:41 -07005767done:
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005768 if (!xfs_iext_next_extent(ifp, &icur, &got)) {
5769 *done = true;
5770 goto del_cursor;
Christoph Hellwig40591bd2017-10-19 11:08:51 -07005771 }
5772
Christoph Hellwigbf806282017-10-19 11:07:34 -07005773 *next_fsb = got.br_startoff;
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005774del_cursor:
5775 if (cur)
5776 xfs_btree_del_cursor(cur,
5777 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005778 if (logflags)
5779 xfs_trans_log_inode(tp, ip, logflags);
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005780 return error;
5781}
5782
Darrick J. Wongf62cb482018-06-21 23:26:57 -07005783/* Make sure we won't be right-shifting an extent past the maximum bound. */
5784int
5785xfs_bmap_can_insert_extents(
5786 struct xfs_inode *ip,
5787 xfs_fileoff_t off,
5788 xfs_fileoff_t shift)
5789{
5790 struct xfs_bmbt_irec got;
5791 int is_empty;
5792 int error = 0;
5793
5794 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
5795
5796 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
5797 return -EIO;
5798
5799 xfs_ilock(ip, XFS_ILOCK_EXCL);
5800 error = xfs_bmap_last_extent(NULL, ip, XFS_DATA_FORK, &got, &is_empty);
5801 if (!error && !is_empty && got.br_startoff >= off &&
5802 ((got.br_startoff + shift) & BMBT_STARTOFF_MASK) < got.br_startoff)
5803 error = -EINVAL;
5804 xfs_iunlock(ip, XFS_ILOCK_EXCL);
5805
5806 return error;
5807}
5808
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005809int
5810xfs_bmap_insert_extents(
5811 struct xfs_trans *tp,
5812 struct xfs_inode *ip,
5813 xfs_fileoff_t *next_fsb,
5814 xfs_fileoff_t offset_shift_fsb,
5815 bool *done,
5816 xfs_fileoff_t stop_fsb,
5817 xfs_fsblock_t *firstblock,
5818 struct xfs_defer_ops *dfops)
5819{
5820 int whichfork = XFS_DATA_FORK;
5821 struct xfs_mount *mp = ip->i_mount;
5822 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
5823 struct xfs_btree_cur *cur = NULL;
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005824 struct xfs_bmbt_irec got, next;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005825 struct xfs_iext_cursor icur;
Christoph Hellwigbf806282017-10-19 11:07:34 -07005826 xfs_fileoff_t new_startoff;
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005827 int error = 0;
5828 int logflags = 0;
5829
5830 if (unlikely(XFS_TEST_ERROR(
5831 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5832 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
5833 mp, XFS_ERRTAG_BMAPIFORMAT))) {
5834 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp);
5835 return -EFSCORRUPTED;
5836 }
5837
5838 if (XFS_FORCED_SHUTDOWN(mp))
5839 return -EIO;
5840
5841 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL));
5842
5843 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5844 error = xfs_iread_extents(tp, ip, whichfork);
5845 if (error)
5846 return error;
5847 }
5848
5849 if (ifp->if_flags & XFS_IFBROOT) {
5850 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5851 cur->bc_private.b.firstblock = *firstblock;
5852 cur->bc_private.b.dfops = dfops;
5853 cur->bc_private.b.flags = 0;
5854 }
5855
Namjae Jeona904b1c2015-03-25 15:08:56 +11005856 if (*next_fsb == NULLFSBLOCK) {
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005857 xfs_iext_last(ifp, &icur);
5858 if (!xfs_iext_get_extent(ifp, &icur, &got) ||
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005859 stop_fsb > got.br_startoff) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005860 *done = true;
Namjae Jeona904b1c2015-03-25 15:08:56 +11005861 goto del_cursor;
5862 }
Christoph Hellwig05b7c8a2017-08-29 15:44:12 -07005863 } else {
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005864 if (!xfs_iext_lookup_extent(ip, ifp, *next_fsb, &icur, &got)) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005865 *done = true;
Christoph Hellwig05b7c8a2017-08-29 15:44:12 -07005866 goto del_cursor;
5867 }
Namjae Jeona904b1c2015-03-25 15:08:56 +11005868 }
Eric Sandeend41c6172017-11-27 18:23:32 -08005869 XFS_WANT_CORRUPTED_GOTO(mp, !isnullstartblock(got.br_startblock),
5870 del_cursor);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005871
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005872 if (stop_fsb >= got.br_startoff + got.br_blockcount) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005873 error = -EIO;
5874 goto del_cursor;
Namjae Jeona904b1c2015-03-25 15:08:56 +11005875 }
5876
Christoph Hellwigbf806282017-10-19 11:07:34 -07005877 new_startoff = got.br_startoff + offset_shift_fsb;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005878 if (xfs_iext_peek_next_extent(ifp, &icur, &next)) {
Christoph Hellwigbf806282017-10-19 11:07:34 -07005879 if (new_startoff + got.br_blockcount > next.br_startoff) {
5880 error = -EINVAL;
5881 goto del_cursor;
5882 }
5883
5884 /*
5885 * Unlike a left shift (which involves a hole punch), a right
5886 * shift does not modify extent neighbors in any way. We should
5887 * never find mergeable extents in this scenario. Check anyways
5888 * and warn if we encounter two extents that could be one.
5889 */
5890 if (xfs_bmse_can_merge(&got, &next, offset_shift_fsb))
5891 WARN_ON_ONCE(1);
5892 }
5893
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005894 error = xfs_bmap_shift_update_extent(ip, whichfork, &icur, &got, cur,
5895 &logflags, dfops, new_startoff);
Christoph Hellwig6b18af02017-10-19 11:07:10 -07005896 if (error)
5897 goto del_cursor;
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005898
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005899 if (!xfs_iext_prev_extent(ifp, &icur, &got) ||
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005900 stop_fsb >= got.br_startoff + got.br_blockcount) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005901 *done = true;
Christoph Hellwig6b18af02017-10-19 11:07:10 -07005902 goto del_cursor;
5903 }
Christoph Hellwig6b18af02017-10-19 11:07:10 -07005904
5905 *next_fsb = got.br_startoff;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005906del_cursor:
5907 if (cur)
5908 xfs_btree_del_cursor(cur,
5909 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
Brian Fosterca446d82014-09-02 12:12:53 +10005910 if (logflags)
5911 xfs_trans_log_inode(tp, ip, logflags);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005912 return error;
5913}
Namjae Jeona904b1c2015-03-25 15:08:56 +11005914
5915/*
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005916 * Splits an extent into two extents at split_fsb block such that it is the
5917 * first block of the current_ext. @ext is a target extent to be split.
5918 * @split_fsb is a block where the extents is split. If split_fsb lies in a
5919 * hole or the first block of extents, just return 0.
Namjae Jeona904b1c2015-03-25 15:08:56 +11005920 */
5921STATIC int
5922xfs_bmap_split_extent_at(
5923 struct xfs_trans *tp,
5924 struct xfs_inode *ip,
5925 xfs_fileoff_t split_fsb,
5926 xfs_fsblock_t *firstfsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10005927 struct xfs_defer_ops *dfops)
Namjae Jeona904b1c2015-03-25 15:08:56 +11005928{
5929 int whichfork = XFS_DATA_FORK;
5930 struct xfs_btree_cur *cur = NULL;
Namjae Jeona904b1c2015-03-25 15:08:56 +11005931 struct xfs_bmbt_irec got;
5932 struct xfs_bmbt_irec new; /* split extent */
5933 struct xfs_mount *mp = ip->i_mount;
5934 struct xfs_ifork *ifp;
5935 xfs_fsblock_t gotblkcnt; /* new block count for got */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005936 struct xfs_iext_cursor icur;
Namjae Jeona904b1c2015-03-25 15:08:56 +11005937 int error = 0;
5938 int logflags = 0;
5939 int i = 0;
5940
5941 if (unlikely(XFS_TEST_ERROR(
5942 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5943 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07005944 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Namjae Jeona904b1c2015-03-25 15:08:56 +11005945 XFS_ERROR_REPORT("xfs_bmap_split_extent_at",
5946 XFS_ERRLEVEL_LOW, mp);
5947 return -EFSCORRUPTED;
5948 }
5949
5950 if (XFS_FORCED_SHUTDOWN(mp))
5951 return -EIO;
5952
5953 ifp = XFS_IFORK_PTR(ip, whichfork);
5954 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5955 /* Read in all the extents */
5956 error = xfs_iread_extents(tp, ip, whichfork);
5957 if (error)
5958 return error;
5959 }
5960
5961 /*
Christoph Hellwig4c35445b2017-08-29 15:44:13 -07005962 * If there are not extents, or split_fsb lies in a hole we are done.
Namjae Jeona904b1c2015-03-25 15:08:56 +11005963 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005964 if (!xfs_iext_lookup_extent(ip, ifp, split_fsb, &icur, &got) ||
Christoph Hellwig4c35445b2017-08-29 15:44:13 -07005965 got.br_startoff >= split_fsb)
Namjae Jeona904b1c2015-03-25 15:08:56 +11005966 return 0;
5967
5968 gotblkcnt = split_fsb - got.br_startoff;
5969 new.br_startoff = split_fsb;
5970 new.br_startblock = got.br_startblock + gotblkcnt;
5971 new.br_blockcount = got.br_blockcount - gotblkcnt;
5972 new.br_state = got.br_state;
5973
5974 if (ifp->if_flags & XFS_IFBROOT) {
5975 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5976 cur->bc_private.b.firstblock = *firstfsb;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10005977 cur->bc_private.b.dfops = dfops;
Namjae Jeona904b1c2015-03-25 15:08:56 +11005978 cur->bc_private.b.flags = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005979 error = xfs_bmbt_lookup_eq(cur, &got, &i);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005980 if (error)
5981 goto del_cursor;
5982 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, del_cursor);
5983 }
5984
Namjae Jeona904b1c2015-03-25 15:08:56 +11005985 got.br_blockcount = gotblkcnt;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005986 xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), &icur,
5987 &got);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005988
5989 logflags = XFS_ILOG_CORE;
5990 if (cur) {
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005991 error = xfs_bmbt_update(cur, &got);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005992 if (error)
5993 goto del_cursor;
5994 } else
5995 logflags |= XFS_ILOG_DEXT;
5996
5997 /* Add new extent */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005998 xfs_iext_next(ifp, &icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07005999 xfs_iext_insert(ip, &icur, &new, 0);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006000 XFS_IFORK_NEXT_SET(ip, whichfork,
6001 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
6002
6003 if (cur) {
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07006004 error = xfs_bmbt_lookup_eq(cur, &new, &i);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006005 if (error)
6006 goto del_cursor;
6007 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, del_cursor);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006008 error = xfs_btree_insert(cur, &i);
6009 if (error)
6010 goto del_cursor;
6011 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, del_cursor);
6012 }
6013
6014 /*
6015 * Convert to a btree if necessary.
6016 */
6017 if (xfs_bmap_needs_btree(ip, whichfork)) {
6018 int tmp_logflags; /* partial log flag return val */
6019
6020 ASSERT(cur == NULL);
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10006021 error = xfs_bmap_extents_to_btree(tp, ip, firstfsb, dfops,
Namjae Jeona904b1c2015-03-25 15:08:56 +11006022 &cur, 0, &tmp_logflags, whichfork);
6023 logflags |= tmp_logflags;
6024 }
6025
6026del_cursor:
6027 if (cur) {
6028 cur->bc_private.b.allocated = 0;
6029 xfs_btree_del_cursor(cur,
6030 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
6031 }
6032
6033 if (logflags)
6034 xfs_trans_log_inode(tp, ip, logflags);
6035 return error;
6036}
6037
6038int
6039xfs_bmap_split_extent(
6040 struct xfs_inode *ip,
6041 xfs_fileoff_t split_fsb)
6042{
6043 struct xfs_mount *mp = ip->i_mount;
6044 struct xfs_trans *tp;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10006045 struct xfs_defer_ops dfops;
Namjae Jeona904b1c2015-03-25 15:08:56 +11006046 xfs_fsblock_t firstfsb;
Namjae Jeona904b1c2015-03-25 15:08:56 +11006047 int error;
6048
Christoph Hellwig253f4912016-04-06 09:19:55 +10006049 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write,
6050 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0, 0, &tp);
6051 if (error)
Namjae Jeona904b1c2015-03-25 15:08:56 +11006052 return error;
Namjae Jeona904b1c2015-03-25 15:08:56 +11006053
6054 xfs_ilock(ip, XFS_ILOCK_EXCL);
6055 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
6056
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10006057 xfs_defer_init(&dfops, &firstfsb);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006058
6059 error = xfs_bmap_split_extent_at(tp, ip, split_fsb,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10006060 &firstfsb, &dfops);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006061 if (error)
6062 goto out;
6063
Christoph Hellwig8ad7c6292017-08-28 10:21:04 -07006064 error = xfs_defer_finish(&tp, &dfops);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006065 if (error)
6066 goto out;
6067
Christoph Hellwig70393312015-06-04 13:48:08 +10006068 return xfs_trans_commit(tp);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006069
6070out:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10006071 xfs_defer_cancel(&dfops);
Christoph Hellwig4906e212015-06-04 13:47:56 +10006072 xfs_trans_cancel(tp);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006073 return error;
6074}
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006075
6076/* Deferred mapping is only for real extents in the data fork. */
6077static bool
6078xfs_bmap_is_update_needed(
6079 struct xfs_bmbt_irec *bmap)
6080{
6081 return bmap->br_startblock != HOLESTARTBLOCK &&
6082 bmap->br_startblock != DELAYSTARTBLOCK;
6083}
6084
6085/* Record a bmap intent. */
6086static int
6087__xfs_bmap_add(
6088 struct xfs_mount *mp,
6089 struct xfs_defer_ops *dfops,
6090 enum xfs_bmap_intent_type type,
6091 struct xfs_inode *ip,
6092 int whichfork,
6093 struct xfs_bmbt_irec *bmap)
6094{
6095 int error;
6096 struct xfs_bmap_intent *bi;
6097
6098 trace_xfs_bmap_defer(mp,
6099 XFS_FSB_TO_AGNO(mp, bmap->br_startblock),
6100 type,
6101 XFS_FSB_TO_AGBNO(mp, bmap->br_startblock),
6102 ip->i_ino, whichfork,
6103 bmap->br_startoff,
6104 bmap->br_blockcount,
6105 bmap->br_state);
6106
6107 bi = kmem_alloc(sizeof(struct xfs_bmap_intent), KM_SLEEP | KM_NOFS);
6108 INIT_LIST_HEAD(&bi->bi_list);
6109 bi->bi_type = type;
6110 bi->bi_owner = ip;
6111 bi->bi_whichfork = whichfork;
6112 bi->bi_bmap = *bmap;
6113
Christoph Hellwig882d8782017-08-28 10:21:03 -07006114 error = xfs_defer_ijoin(dfops, bi->bi_owner);
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006115 if (error) {
6116 kmem_free(bi);
6117 return error;
6118 }
6119
6120 xfs_defer_add(dfops, XFS_DEFER_OPS_TYPE_BMAP, &bi->bi_list);
6121 return 0;
6122}
6123
6124/* Map an extent into a file. */
6125int
6126xfs_bmap_map_extent(
6127 struct xfs_mount *mp,
6128 struct xfs_defer_ops *dfops,
6129 struct xfs_inode *ip,
6130 struct xfs_bmbt_irec *PREV)
6131{
6132 if (!xfs_bmap_is_update_needed(PREV))
6133 return 0;
6134
6135 return __xfs_bmap_add(mp, dfops, XFS_BMAP_MAP, ip,
6136 XFS_DATA_FORK, PREV);
6137}
6138
6139/* Unmap an extent out of a file. */
6140int
6141xfs_bmap_unmap_extent(
6142 struct xfs_mount *mp,
6143 struct xfs_defer_ops *dfops,
6144 struct xfs_inode *ip,
6145 struct xfs_bmbt_irec *PREV)
6146{
6147 if (!xfs_bmap_is_update_needed(PREV))
6148 return 0;
6149
6150 return __xfs_bmap_add(mp, dfops, XFS_BMAP_UNMAP, ip,
6151 XFS_DATA_FORK, PREV);
6152}
6153
6154/*
6155 * Process one of the deferred bmap operations. We pass back the
6156 * btree cursor to maintain our lock on the bmapbt between calls.
6157 */
6158int
6159xfs_bmap_finish_one(
6160 struct xfs_trans *tp,
6161 struct xfs_defer_ops *dfops,
6162 struct xfs_inode *ip,
6163 enum xfs_bmap_intent_type type,
6164 int whichfork,
6165 xfs_fileoff_t startoff,
6166 xfs_fsblock_t startblock,
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006167 xfs_filblks_t *blockcount,
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006168 xfs_exntst_t state)
6169{
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006170 xfs_fsblock_t firstfsb;
6171 int error = 0;
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006172
Darrick J. Wong4c1a67b2017-07-17 14:30:51 -07006173 /*
6174 * firstfsb is tied to the transaction lifetime and is used to
6175 * ensure correct AG locking order and schedule work item
6176 * continuations. XFS_BUI_MAX_FAST_EXTENTS (== 1) restricts us
6177 * to only making one bmap call per transaction, so it should
6178 * be safe to have it as a local variable here.
6179 */
6180 firstfsb = NULLFSBLOCK;
6181
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006182 trace_xfs_bmap_deferred(tp->t_mountp,
6183 XFS_FSB_TO_AGNO(tp->t_mountp, startblock), type,
6184 XFS_FSB_TO_AGBNO(tp->t_mountp, startblock),
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006185 ip->i_ino, whichfork, startoff, *blockcount, state);
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006186
Christoph Hellwig39e07da2017-04-11 16:45:53 -07006187 if (WARN_ON_ONCE(whichfork != XFS_DATA_FORK))
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006188 return -EFSCORRUPTED;
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006189
6190 if (XFS_TEST_ERROR(false, tp->t_mountp,
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07006191 XFS_ERRTAG_BMAP_FINISH_ONE))
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006192 return -EIO;
6193
6194 switch (type) {
6195 case XFS_BMAP_MAP:
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006196 error = xfs_bmapi_remap(tp, ip, startoff, *blockcount,
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07006197 startblock, dfops, 0);
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006198 *blockcount = 0;
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006199 break;
6200 case XFS_BMAP_UNMAP:
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006201 error = __xfs_bunmapi(tp, ip, startoff, blockcount,
6202 XFS_BMAPI_REMAP, 1, &firstfsb, dfops);
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006203 break;
6204 default:
6205 ASSERT(0);
6206 error = -EFSCORRUPTED;
6207 }
6208
6209 return error;
6210}
Darrick J. Wong30b09842018-03-23 10:06:52 -07006211
6212/* Check that an inode's extent does not have invalid flags or bad ranges. */
6213xfs_failaddr_t
6214xfs_bmap_validate_extent(
6215 struct xfs_inode *ip,
6216 int whichfork,
6217 struct xfs_bmbt_irec *irec)
6218{
6219 struct xfs_mount *mp = ip->i_mount;
6220 xfs_fsblock_t endfsb;
6221 bool isrt;
6222
6223 isrt = XFS_IS_REALTIME_INODE(ip);
6224 endfsb = irec->br_startblock + irec->br_blockcount - 1;
6225 if (isrt) {
6226 if (!xfs_verify_rtbno(mp, irec->br_startblock))
6227 return __this_address;
6228 if (!xfs_verify_rtbno(mp, endfsb))
6229 return __this_address;
6230 } else {
6231 if (!xfs_verify_fsbno(mp, irec->br_startblock))
6232 return __this_address;
6233 if (!xfs_verify_fsbno(mp, endfsb))
6234 return __this_address;
6235 if (XFS_FSB_TO_AGNO(mp, irec->br_startblock) !=
6236 XFS_FSB_TO_AGNO(mp, endfsb))
6237 return __this_address;
6238 }
6239 if (irec->br_state != XFS_EXT_NORM) {
6240 if (whichfork != XFS_DATA_FORK)
6241 return __this_address;
6242 if (!xfs_sb_version_hasextflgbit(&mp->m_sb))
6243 return __this_address;
6244 }
6245 return NULL;
6246}