blob: 05aedf4a538c573cc6db9bebda6dbcc324d4eb73 [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 Chinner2b9ab5a2013-08-12 20:49:37 +100016#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110018#include "xfs_btree.h"
Dave Chinner239880e2013-10-23 10:50:10 +110019#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_alloc.h"
21#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100022#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110023#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_rtalloc.h"
Darrick J. Wonge9e899a2017-10-31 12:04:49 -070025#include "xfs_errortag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_quota.h"
28#include "xfs_trans_space.h"
29#include "xfs_buf_item.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000030#include "xfs_trace.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110031#include "xfs_attr_leaf.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110032#include "xfs_filestream.h"
Darrick J. Wong340785c2016-08-03 11:33:42 +100033#include "xfs_rmap.h"
Darrick J. Wong3fd129b2016-09-19 10:30:52 +100034#include "xfs_ag_resv.h"
Darrick J. Wong62aab202016-10-03 09:11:23 -070035#include "xfs_refcount.h"
Brian Foster974ae922016-11-28 14:57:42 +110036#include "xfs_icache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039kmem_zone_t *xfs_bmap_free_item_zone;
40
41/*
Dave Chinner9e5987a72013-02-25 12:31:26 +110042 * Miscellaneous helper functions
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
Dave Chinner9e5987a72013-02-25 12:31:26 +110046 * Compute and fill in the value of the maximum depth of a bmap btree
47 * in this filesystem. Done once, during mount.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 */
Dave Chinner9e5987a72013-02-25 12:31:26 +110049void
50xfs_bmap_compute_maxlevels(
51 xfs_mount_t *mp, /* file system mount structure */
52 int whichfork) /* data or attr fork */
53{
54 int level; /* btree level */
55 uint maxblocks; /* max blocks at this level */
56 uint maxleafents; /* max leaf entries possible */
57 int maxrootrecs; /* max records in root block */
58 int minleafrecs; /* min records in leaf block */
59 int minnoderecs; /* min records in node block */
60 int sz; /* root block size */
61
62 /*
63 * The maximum number of extents in a file, hence the maximum
64 * number of leaf entries, is controlled by the type of di_nextents
65 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
66 * (a signed 16-bit number, xfs_aextnum_t).
67 *
68 * Note that we can no longer assume that if we are in ATTR1 that
69 * the fork offset of all the inodes will be
70 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
71 * with ATTR2 and then mounted back with ATTR1, keeping the
72 * di_forkoff's fixed but probably at various positions. Therefore,
73 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
74 * of a minimum size available.
75 */
76 if (whichfork == XFS_DATA_FORK) {
77 maxleafents = MAXEXTNUM;
78 sz = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
79 } else {
80 maxleafents = MAXAEXTNUM;
81 sz = XFS_BMDR_SPACE_CALC(MINABTPTRS);
82 }
Eric Sandeen152d93b2014-04-14 18:58:51 +100083 maxrootrecs = xfs_bmdr_maxrecs(sz, 0);
Dave Chinner9e5987a72013-02-25 12:31:26 +110084 minleafrecs = mp->m_bmap_dmnr[0];
85 minnoderecs = mp->m_bmap_dmnr[1];
86 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
87 for (level = 1; maxblocks > 1; level++) {
88 if (maxblocks <= maxrootrecs)
89 maxblocks = 1;
90 else
91 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
92 }
93 mp->m_bm_maxlevels[whichfork] = level;
94}
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110096STATIC int /* error */
97xfs_bmbt_lookup_eq(
98 struct xfs_btree_cur *cur,
Christoph Hellwige16cf9b2017-10-17 14:16:26 -070099 struct xfs_bmbt_irec *irec,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100100 int *stat) /* success/failure */
101{
Christoph Hellwige16cf9b2017-10-17 14:16:26 -0700102 cur->bc_rec.b = *irec;
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100103 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
104}
105
106STATIC int /* error */
Christoph Hellwigb5cfbc22017-10-17 14:16:27 -0700107xfs_bmbt_lookup_first(
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100108 struct xfs_btree_cur *cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100109 int *stat) /* success/failure */
110{
Christoph Hellwigb5cfbc22017-10-17 14:16:27 -0700111 cur->bc_rec.b.br_startoff = 0;
112 cur->bc_rec.b.br_startblock = 0;
113 cur->bc_rec.b.br_blockcount = 0;
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100114 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
115}
116
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100117/*
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000118 * Check if the inode needs to be converted to btree format.
119 */
120static inline bool xfs_bmap_needs_btree(struct xfs_inode *ip, int whichfork)
121{
Darrick J. Wong60b49842016-10-03 09:11:34 -0700122 return whichfork != XFS_COW_FORK &&
123 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000124 XFS_IFORK_NEXTENTS(ip, whichfork) >
125 XFS_IFORK_MAXEXT(ip, whichfork);
126}
127
128/*
129 * Check if the inode should be converted to extent format.
130 */
131static inline bool xfs_bmap_wants_extents(struct xfs_inode *ip, int whichfork)
132{
Darrick J. Wong60b49842016-10-03 09:11:34 -0700133 return whichfork != XFS_COW_FORK &&
134 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000135 XFS_IFORK_NEXTENTS(ip, whichfork) <=
136 XFS_IFORK_MAXEXT(ip, whichfork);
137}
138
139/*
Christoph Hellwiga67d00a2017-10-17 14:16:26 -0700140 * Update the record referred to by cur to the value given by irec
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100141 * This either works (return 0) or gets an EFSCORRUPTED error.
142 */
143STATIC int
144xfs_bmbt_update(
145 struct xfs_btree_cur *cur,
Christoph Hellwiga67d00a2017-10-17 14:16:26 -0700146 struct xfs_bmbt_irec *irec)
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100147{
148 union xfs_btree_rec rec;
149
Christoph Hellwiga67d00a2017-10-17 14:16:26 -0700150 xfs_bmbt_disk_set_all(&rec.bmbt, irec);
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100151 return xfs_btree_update(cur, &rec);
152}
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154/*
Dave Chinner9e5987a72013-02-25 12:31:26 +1100155 * Compute the worst-case number of indirect blocks that will be used
156 * for ip's delayed extent of length "len".
157 */
158STATIC xfs_filblks_t
159xfs_bmap_worst_indlen(
160 xfs_inode_t *ip, /* incore inode pointer */
161 xfs_filblks_t len) /* delayed extent length */
162{
163 int level; /* btree level number */
164 int maxrecs; /* maximum record count at this level */
165 xfs_mount_t *mp; /* mount structure */
166 xfs_filblks_t rval; /* return value */
167
168 mp = ip->i_mount;
169 maxrecs = mp->m_bmap_dmxr[0];
170 for (level = 0, rval = 0;
171 level < XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK);
172 level++) {
173 len += maxrecs - 1;
174 do_div(len, maxrecs);
175 rval += len;
Darrick J. Wong5e5c9432017-09-18 09:41:17 -0700176 if (len == 1)
177 return rval + XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) -
Dave Chinner9e5987a72013-02-25 12:31:26 +1100178 level - 1;
179 if (level == 0)
180 maxrecs = mp->m_bmap_dmxr[1];
181 }
182 return rval;
183}
184
185/*
186 * Calculate the default attribute fork offset for newly created inodes.
187 */
188uint
189xfs_default_attroffset(
190 struct xfs_inode *ip)
191{
192 struct xfs_mount *mp = ip->i_mount;
193 uint offset;
194
195 if (mp->m_sb.sb_inodesize == 256) {
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100196 offset = XFS_LITINO(mp, ip->i_d.di_version) -
Dave Chinner9e5987a72013-02-25 12:31:26 +1100197 XFS_BMDR_SPACE_CALC(MINABTPTRS);
198 } else {
199 offset = XFS_BMDR_SPACE_CALC(6 * MINABTPTRS);
200 }
201
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100202 ASSERT(offset < XFS_LITINO(mp, ip->i_d.di_version));
Dave Chinner9e5987a72013-02-25 12:31:26 +1100203 return offset;
204}
205
206/*
207 * Helper routine to reset inode di_forkoff field when switching
208 * attribute fork from local to extent format - we reset it where
209 * possible to make space available for inline data fork extents.
210 */
211STATIC void
212xfs_bmap_forkoff_reset(
Dave Chinner9e5987a72013-02-25 12:31:26 +1100213 xfs_inode_t *ip,
214 int whichfork)
215{
216 if (whichfork == XFS_ATTR_FORK &&
217 ip->i_d.di_format != XFS_DINODE_FMT_DEV &&
Dave Chinner9e5987a72013-02-25 12:31:26 +1100218 ip->i_d.di_format != XFS_DINODE_FMT_BTREE) {
219 uint dfl_forkoff = xfs_default_attroffset(ip) >> 3;
220
221 if (dfl_forkoff > ip->i_d.di_forkoff)
222 ip->i_d.di_forkoff = dfl_forkoff;
223 }
224}
225
Dave Chinner9e5987a72013-02-25 12:31:26 +1100226#ifdef DEBUG
227STATIC struct xfs_buf *
228xfs_bmap_get_bp(
229 struct xfs_btree_cur *cur,
230 xfs_fsblock_t bno)
231{
Dave Chinnere6631f82018-05-09 07:49:37 -0700232 struct xfs_log_item *lip;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100233 int i;
234
235 if (!cur)
236 return NULL;
237
238 for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) {
239 if (!cur->bc_bufs[i])
240 break;
241 if (XFS_BUF_ADDR(cur->bc_bufs[i]) == bno)
242 return cur->bc_bufs[i];
243 }
244
245 /* Chase down all the log items to see if the bp is there */
Dave Chinnere6631f82018-05-09 07:49:37 -0700246 list_for_each_entry(lip, &cur->bc_tp->t_items, li_trans) {
247 struct xfs_buf_log_item *bip = (struct xfs_buf_log_item *)lip;
248
Dave Chinner9e5987a72013-02-25 12:31:26 +1100249 if (bip->bli_item.li_type == XFS_LI_BUF &&
250 XFS_BUF_ADDR(bip->bli_buf) == bno)
251 return bip->bli_buf;
252 }
253
254 return NULL;
255}
256
257STATIC void
258xfs_check_block(
259 struct xfs_btree_block *block,
260 xfs_mount_t *mp,
261 int root,
262 short sz)
263{
264 int i, j, dmxr;
265 __be64 *pp, *thispa; /* pointer to block address */
266 xfs_bmbt_key_t *prevp, *keyp;
267
268 ASSERT(be16_to_cpu(block->bb_level) > 0);
269
270 prevp = NULL;
271 for( i = 1; i <= xfs_btree_get_numrecs(block); i++) {
272 dmxr = mp->m_bmap_dmxr[0];
273 keyp = XFS_BMBT_KEY_ADDR(mp, block, i);
274
275 if (prevp) {
276 ASSERT(be64_to_cpu(prevp->br_startoff) <
277 be64_to_cpu(keyp->br_startoff));
278 }
279 prevp = keyp;
280
281 /*
282 * Compare the block numbers to see if there are dups.
283 */
284 if (root)
285 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, i, sz);
286 else
287 pp = XFS_BMBT_PTR_ADDR(mp, block, i, dmxr);
288
289 for (j = i+1; j <= be16_to_cpu(block->bb_numrecs); j++) {
290 if (root)
291 thispa = XFS_BMAP_BROOT_PTR_ADDR(mp, block, j, sz);
292 else
293 thispa = XFS_BMBT_PTR_ADDR(mp, block, j, dmxr);
294 if (*thispa == *pp) {
295 xfs_warn(mp, "%s: thispa(%d) == pp(%d) %Ld",
296 __func__, j, i,
297 (unsigned long long)be64_to_cpu(*thispa));
Darrick J. Wongcec57252018-05-04 15:31:21 -0700298 xfs_err(mp, "%s: ptrs are equal in node\n",
Dave Chinner9e5987a72013-02-25 12:31:26 +1100299 __func__);
Darrick J. Wongcec57252018-05-04 15:31:21 -0700300 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100301 }
302 }
303 }
304}
305
306/*
307 * Check that the extents for the inode ip are in the right order in all
Dave Chinnere3543812016-01-08 11:28:49 +1100308 * btree leaves. THis becomes prohibitively expensive for large extent count
309 * files, so don't bother with inodes that have more than 10,000 extents in
310 * them. The btree record ordering checks will still be done, so for such large
311 * bmapbt constructs that is going to catch most corruptions.
Dave Chinner9e5987a72013-02-25 12:31:26 +1100312 */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100313STATIC void
314xfs_bmap_check_leaf_extents(
315 xfs_btree_cur_t *cur, /* btree cursor or null */
316 xfs_inode_t *ip, /* incore inode pointer */
317 int whichfork) /* data or attr fork */
318{
319 struct xfs_btree_block *block; /* current btree block */
320 xfs_fsblock_t bno; /* block # of "block" */
321 xfs_buf_t *bp; /* buffer for "block" */
322 int error; /* error return value */
323 xfs_extnum_t i=0, j; /* index into the extents list */
Christoph Hellwig3ba738d2018-07-17 16:51:50 -0700324 struct xfs_ifork *ifp; /* fork structure */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100325 int level; /* btree level, for checking */
326 xfs_mount_t *mp; /* file system mount structure */
327 __be64 *pp; /* pointer to block address */
328 xfs_bmbt_rec_t *ep; /* pointer to current extent */
329 xfs_bmbt_rec_t last = {0, 0}; /* last extent in prev block */
330 xfs_bmbt_rec_t *nextp; /* pointer to next extent */
331 int bp_release = 0;
332
333 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) {
334 return;
335 }
336
Dave Chinnere3543812016-01-08 11:28:49 +1100337 /* skip large extent count inodes */
338 if (ip->i_d.di_nextents > 10000)
339 return;
340
Dave Chinner9e5987a72013-02-25 12:31:26 +1100341 bno = NULLFSBLOCK;
342 mp = ip->i_mount;
343 ifp = XFS_IFORK_PTR(ip, whichfork);
344 block = ifp->if_broot;
345 /*
346 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
347 */
348 level = be16_to_cpu(block->bb_level);
349 ASSERT(level > 0);
350 xfs_check_block(block, mp, 1, ifp->if_broot_bytes);
351 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
352 bno = be64_to_cpu(*pp);
353
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000354 ASSERT(bno != NULLFSBLOCK);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100355 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
356 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
357
358 /*
359 * Go down the tree until leaf level is reached, following the first
360 * pointer (leftmost) at each level.
361 */
362 while (level-- > 0) {
363 /* See if buf is in cur first */
364 bp_release = 0;
365 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
366 if (!bp) {
367 bp_release = 1;
Eric Sandeenf5b999c2019-06-12 09:00:00 -0700368 error = xfs_btree_read_bufl(mp, NULL, bno, &bp,
Dave Chinner9e5987a72013-02-25 12:31:26 +1100369 XFS_BMAP_BTREE_REF,
370 &xfs_bmbt_buf_ops);
371 if (error)
372 goto error_norelse;
373 }
374 block = XFS_BUF_TO_BLOCK(bp);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100375 if (level == 0)
376 break;
377
378 /*
379 * Check this block for basic sanity (increasing keys and
380 * no duplicate blocks).
381 */
382
383 xfs_check_block(block, mp, 0, 0);
384 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
385 bno = be64_to_cpu(*pp);
Eric Sandeenc29aad42015-02-23 22:39:08 +1100386 XFS_WANT_CORRUPTED_GOTO(mp,
Darrick J. Wong59f6fec2018-01-08 10:51:00 -0800387 xfs_verify_fsbno(mp, bno), error0);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100388 if (bp_release) {
389 bp_release = 0;
390 xfs_trans_brelse(NULL, bp);
391 }
392 }
393
394 /*
395 * Here with bp and block set to the leftmost leaf node in the tree.
396 */
397 i = 0;
398
399 /*
400 * Loop over all leaf nodes checking that all extents are in the right order.
401 */
402 for (;;) {
403 xfs_fsblock_t nextbno;
404 xfs_extnum_t num_recs;
405
406
407 num_recs = xfs_btree_get_numrecs(block);
408
409 /*
410 * Read-ahead the next leaf block, if any.
411 */
412
413 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
414
415 /*
416 * Check all the extents to make sure they are OK.
417 * If we had a previous block, the last entry should
418 * conform with the first entry in this one.
419 */
420
421 ep = XFS_BMBT_REC_ADDR(mp, block, 1);
422 if (i) {
423 ASSERT(xfs_bmbt_disk_get_startoff(&last) +
424 xfs_bmbt_disk_get_blockcount(&last) <=
425 xfs_bmbt_disk_get_startoff(ep));
426 }
427 for (j = 1; j < num_recs; j++) {
428 nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1);
429 ASSERT(xfs_bmbt_disk_get_startoff(ep) +
430 xfs_bmbt_disk_get_blockcount(ep) <=
431 xfs_bmbt_disk_get_startoff(nextp));
432 ep = nextp;
433 }
434
435 last = *ep;
436 i += num_recs;
437 if (bp_release) {
438 bp_release = 0;
439 xfs_trans_brelse(NULL, bp);
440 }
441 bno = nextbno;
442 /*
443 * If we've reached the end, stop.
444 */
445 if (bno == NULLFSBLOCK)
446 break;
447
448 bp_release = 0;
449 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
450 if (!bp) {
451 bp_release = 1;
Eric Sandeenf5b999c2019-06-12 09:00:00 -0700452 error = xfs_btree_read_bufl(mp, NULL, bno, &bp,
Dave Chinner9e5987a72013-02-25 12:31:26 +1100453 XFS_BMAP_BTREE_REF,
454 &xfs_bmbt_buf_ops);
455 if (error)
456 goto error_norelse;
457 }
458 block = XFS_BUF_TO_BLOCK(bp);
459 }
Luis de Bethencourta5fd2762016-03-09 08:17:56 +1100460
Dave Chinner9e5987a72013-02-25 12:31:26 +1100461 return;
462
463error0:
464 xfs_warn(mp, "%s: at error0", __func__);
465 if (bp_release)
466 xfs_trans_brelse(NULL, bp);
467error_norelse:
468 xfs_warn(mp, "%s: BAD after btree leaves for %d extents",
469 __func__, i);
Darrick J. Wongcec57252018-05-04 15:31:21 -0700470 xfs_err(mp, "%s: CORRUPTED BTREE OR SOMETHING", __func__);
471 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100472 return;
473}
474
475/*
Dave Chinner9e5987a72013-02-25 12:31:26 +1100476 * Validate that the bmbt_irecs being returned from bmapi are valid
Zhi Yong Wua97f4df2013-08-12 03:14:53 +0000477 * given the caller's original parameters. Specifically check the
478 * ranges of the returned irecs to ensure that they only extend beyond
Dave Chinner9e5987a72013-02-25 12:31:26 +1100479 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
480 */
481STATIC void
482xfs_bmap_validate_ret(
483 xfs_fileoff_t bno,
484 xfs_filblks_t len,
485 int flags,
486 xfs_bmbt_irec_t *mval,
487 int nmap,
488 int ret_nmap)
489{
490 int i; /* index to map values */
491
492 ASSERT(ret_nmap <= nmap);
493
494 for (i = 0; i < ret_nmap; i++) {
495 ASSERT(mval[i].br_blockcount > 0);
496 if (!(flags & XFS_BMAPI_ENTIRE)) {
497 ASSERT(mval[i].br_startoff >= bno);
498 ASSERT(mval[i].br_blockcount <= len);
499 ASSERT(mval[i].br_startoff + mval[i].br_blockcount <=
500 bno + len);
501 } else {
502 ASSERT(mval[i].br_startoff < bno + len);
503 ASSERT(mval[i].br_startoff + mval[i].br_blockcount >
504 bno);
505 }
506 ASSERT(i == 0 ||
507 mval[i - 1].br_startoff + mval[i - 1].br_blockcount ==
508 mval[i].br_startoff);
509 ASSERT(mval[i].br_startblock != DELAYSTARTBLOCK &&
510 mval[i].br_startblock != HOLESTARTBLOCK);
511 ASSERT(mval[i].br_state == XFS_EXT_NORM ||
512 mval[i].br_state == XFS_EXT_UNWRITTEN);
513 }
514}
515
516#else
517#define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
Darrick J. Wong7bf7a192017-08-31 15:11:06 -0700518#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap) do { } while (0)
Dave Chinner9e5987a72013-02-25 12:31:26 +1100519#endif /* DEBUG */
520
521/*
522 * bmap free list manipulation functions
523 */
524
525/*
526 * Add the extent to the list of extents to be free at transaction end.
527 * The list is maintained sorted (by block number).
528 */
529void
Brian Fosterfcb762f2018-05-09 08:45:04 -0700530__xfs_bmap_add_free(
Brian Foster0f37d172018-08-01 07:20:34 -0700531 struct xfs_trans *tp,
Darrick J. Wong340785c2016-08-03 11:33:42 +1000532 xfs_fsblock_t bno,
533 xfs_filblks_t len,
Darrick J. Wong66e32372018-12-12 08:46:23 -0800534 const struct xfs_owner_info *oinfo,
Brian Fosterfcb762f2018-05-09 08:45:04 -0700535 bool skip_discard)
Dave Chinner9e5987a72013-02-25 12:31:26 +1100536{
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000537 struct xfs_extent_free_item *new; /* new element */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100538#ifdef DEBUG
Brian Foster0f37d172018-08-01 07:20:34 -0700539 struct xfs_mount *mp = tp->t_mountp;
540 xfs_agnumber_t agno;
541 xfs_agblock_t agbno;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100542
543 ASSERT(bno != NULLFSBLOCK);
544 ASSERT(len > 0);
545 ASSERT(len <= MAXEXTLEN);
546 ASSERT(!isnullstartblock(bno));
547 agno = XFS_FSB_TO_AGNO(mp, bno);
548 agbno = XFS_FSB_TO_AGBNO(mp, bno);
549 ASSERT(agno < mp->m_sb.sb_agcount);
550 ASSERT(agbno < mp->m_sb.sb_agblocks);
551 ASSERT(len < mp->m_sb.sb_agblocks);
552 ASSERT(agbno + len <= mp->m_sb.sb_agblocks);
553#endif
554 ASSERT(xfs_bmap_free_item_zone != NULL);
Darrick J. Wong340785c2016-08-03 11:33:42 +1000555
Tetsuo Handa707e0dd2019-08-26 12:06:22 -0700556 new = kmem_zone_alloc(xfs_bmap_free_item_zone, 0);
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000557 new->xefi_startblock = bno;
558 new->xefi_blockcount = (xfs_extlen_t)len;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000559 if (oinfo)
560 new->xefi_oinfo = *oinfo;
561 else
Darrick J. Wong7280fed2018-12-12 08:46:23 -0800562 new->xefi_oinfo = XFS_RMAP_OINFO_SKIP_UPDATE;
Brian Fosterfcb762f2018-05-09 08:45:04 -0700563 new->xefi_skip_discard = skip_discard;
Brian Foster0f37d172018-08-01 07:20:34 -0700564 trace_xfs_bmap_free_defer(tp->t_mountp,
565 XFS_FSB_TO_AGNO(tp->t_mountp, bno), 0,
566 XFS_FSB_TO_AGBNO(tp->t_mountp, bno), len);
567 xfs_defer_add(tp, XFS_DEFER_OPS_TYPE_FREE, &new->xefi_list);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100568}
569
570/*
571 * Inode fork format manipulation functions
572 */
573
574/*
Christoph Hellwigb101e332019-02-15 08:02:47 -0800575 * Convert the inode format to extent format if it currently is in btree format,
576 * but the extent list is small enough that it fits into the extent format.
577 *
578 * Since the extents are already in-core, all we have to do is give up the space
579 * for the btree root and pitch the leaf block.
Dave Chinner9e5987a72013-02-25 12:31:26 +1100580 */
581STATIC int /* error */
582xfs_bmap_btree_to_extents(
Christoph Hellwigb101e332019-02-15 08:02:47 -0800583 struct xfs_trans *tp, /* transaction pointer */
584 struct xfs_inode *ip, /* incore inode pointer */
585 struct xfs_btree_cur *cur, /* btree cursor */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100586 int *logflagsp, /* inode logging flags */
587 int whichfork) /* data or attr fork */
588{
Christoph Hellwigb101e332019-02-15 08:02:47 -0800589 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
590 struct xfs_mount *mp = ip->i_mount;
591 struct xfs_btree_block *rblock = ifp->if_broot;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100592 struct xfs_btree_block *cblock;/* child btree block */
593 xfs_fsblock_t cbno; /* child block number */
594 xfs_buf_t *cbp; /* child block's buffer */
595 int error; /* error return value */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100596 __be64 *pp; /* ptr to block address */
Darrick J. Wong340785c2016-08-03 11:33:42 +1000597 struct xfs_owner_info oinfo;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100598
Christoph Hellwigb101e332019-02-15 08:02:47 -0800599 /* check if we actually need the extent format first: */
600 if (!xfs_bmap_wants_extents(ip, whichfork))
601 return 0;
602
603 ASSERT(cur);
Darrick J. Wong60b49842016-10-03 09:11:34 -0700604 ASSERT(whichfork != XFS_COW_FORK);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100605 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
606 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100607 ASSERT(be16_to_cpu(rblock->bb_level) == 1);
608 ASSERT(be16_to_cpu(rblock->bb_numrecs) == 1);
609 ASSERT(xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0) == 1);
Christoph Hellwigb101e332019-02-15 08:02:47 -0800610
Dave Chinner9e5987a72013-02-25 12:31:26 +1100611 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, ifp->if_broot_bytes);
612 cbno = be64_to_cpu(*pp);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100613#ifdef DEBUG
Darrick J. Wongf1357612017-10-17 21:37:33 -0700614 XFS_WANT_CORRUPTED_RETURN(cur->bc_mp,
615 xfs_btree_check_lptr(cur, cbno, 1));
Dave Chinner9e5987a72013-02-25 12:31:26 +1100616#endif
Eric Sandeenf5b999c2019-06-12 09:00:00 -0700617 error = xfs_btree_read_bufl(mp, tp, cbno, &cbp, XFS_BMAP_BTREE_REF,
Dave Chinner9e5987a72013-02-25 12:31:26 +1100618 &xfs_bmbt_buf_ops);
619 if (error)
620 return error;
621 cblock = XFS_BUF_TO_BLOCK(cbp);
622 if ((error = xfs_btree_check_block(cur, cblock, 0, cbp)))
623 return error;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000624 xfs_rmap_ino_bmbt_owner(&oinfo, ip->i_ino, whichfork);
Brian Foster0f37d172018-08-01 07:20:34 -0700625 xfs_bmap_add_free(cur->bc_tp, cbno, 1, &oinfo);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100626 ip->i_d.di_nblocks--;
627 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
628 xfs_trans_binval(tp, cbp);
629 if (cur->bc_bufs[0] == cbp)
630 cur->bc_bufs[0] = NULL;
631 xfs_iroot_realloc(ip, -1, whichfork);
632 ASSERT(ifp->if_broot == NULL);
633 ASSERT((ifp->if_flags & XFS_IFBROOT) == 0);
634 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
Christoph Hellwigb101e332019-02-15 08:02:47 -0800635 *logflagsp |= XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100636 return 0;
637}
638
639/*
640 * Convert an extents-format file into a btree-format file.
641 * The new file will have a root block (in the inode) and a single child block.
642 */
643STATIC int /* error */
644xfs_bmap_extents_to_btree(
Brian Foster81ba8f32018-07-11 22:26:16 -0700645 struct xfs_trans *tp, /* transaction pointer */
646 struct xfs_inode *ip, /* incore inode pointer */
Brian Foster81ba8f32018-07-11 22:26:16 -0700647 struct xfs_btree_cur **curp, /* cursor returned to caller */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100648 int wasdel, /* converting a delayed alloc */
649 int *logflagsp, /* inode logging flags */
650 int whichfork) /* data or attr fork */
651{
652 struct xfs_btree_block *ablock; /* allocated (child) bt block */
Brian Foster81ba8f32018-07-11 22:26:16 -0700653 struct xfs_buf *abp; /* buffer for ablock */
654 struct xfs_alloc_arg args; /* allocation arguments */
655 struct xfs_bmbt_rec *arp; /* child record pointer */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100656 struct xfs_btree_block *block; /* btree root block */
Brian Foster81ba8f32018-07-11 22:26:16 -0700657 struct xfs_btree_cur *cur; /* bmap btree cursor */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100658 int error; /* error return value */
Brian Foster81ba8f32018-07-11 22:26:16 -0700659 struct xfs_ifork *ifp; /* inode fork pointer */
660 struct xfs_bmbt_key *kp; /* root block key pointer */
661 struct xfs_mount *mp; /* mount structure */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100662 xfs_bmbt_ptr_t *pp; /* root block address pointer */
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700663 struct xfs_iext_cursor icur;
Christoph Hellwig906abed2017-11-03 10:34:43 -0700664 struct xfs_bmbt_irec rec;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700665 xfs_extnum_t cnt = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100666
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500667 mp = ip->i_mount;
Darrick J. Wong60b49842016-10-03 09:11:34 -0700668 ASSERT(whichfork != XFS_COW_FORK);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100669 ifp = XFS_IFORK_PTR(ip, whichfork);
670 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS);
671
672 /*
Dave Chinnere55ec4d2018-10-01 08:11:07 +1000673 * Make space in the inode incore. This needs to be undone if we fail
674 * to expand the root.
Dave Chinner9e5987a72013-02-25 12:31:26 +1100675 */
676 xfs_iroot_realloc(ip, 1, whichfork);
677 ifp->if_flags |= XFS_IFBROOT;
678
679 /*
680 * Fill in the root.
681 */
682 block = ifp->if_broot;
Eric Sandeenb6f41e42017-01-27 23:16:39 -0800683 xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL,
684 XFS_BTNUM_BMAP, 1, 1, ip->i_ino,
Eric Sandeenf88ae462017-01-27 23:16:37 -0800685 XFS_BTREE_LONG_PTRS);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100686 /*
687 * Need a cursor. Can't allocate until bb_level is filled in.
688 */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100689 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100690 cur->bc_private.b.flags = wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
691 /*
692 * Convert to a btree with two levels, one record in root.
693 */
694 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_BTREE);
695 memset(&args, 0, sizeof(args));
696 args.tp = tp;
697 args.mp = mp;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000698 xfs_rmap_ino_bmbt_owner(&args.oinfo, ip->i_ino, whichfork);
Brian Foster280253d2018-07-11 22:26:29 -0700699 if (tp->t_firstblock == NULLFSBLOCK) {
Dave Chinner9e5987a72013-02-25 12:31:26 +1100700 args.type = XFS_ALLOCTYPE_START_BNO;
701 args.fsbno = XFS_INO_TO_FSB(mp, ip->i_ino);
Brian Foster1214f1c2018-08-01 07:20:31 -0700702 } else if (tp->t_flags & XFS_TRANS_LOWMODE) {
Dave Chinner9e5987a72013-02-25 12:31:26 +1100703 args.type = XFS_ALLOCTYPE_START_BNO;
Brian Foster280253d2018-07-11 22:26:29 -0700704 args.fsbno = tp->t_firstblock;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100705 } else {
706 args.type = XFS_ALLOCTYPE_NEAR_BNO;
Brian Foster280253d2018-07-11 22:26:29 -0700707 args.fsbno = tp->t_firstblock;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100708 }
709 args.minlen = args.maxlen = args.prod = 1;
710 args.wasdel = wasdel;
711 *logflagsp = 0;
Dave Chinnere55ec4d2018-10-01 08:11:07 +1000712 error = xfs_alloc_vextent(&args);
713 if (error)
714 goto out_root_realloc;
Darrick J. Wong90e20562016-10-03 09:11:45 -0700715
Christoph Hellwig2fcc3192017-03-08 10:38:53 -0800716 if (WARN_ON_ONCE(args.fsbno == NULLFSBLOCK)) {
Shan Hai01239d772018-08-10 17:55:55 -0700717 error = -ENOSPC;
Dave Chinnere55ec4d2018-10-01 08:11:07 +1000718 goto out_root_realloc;
Christoph Hellwig2fcc3192017-03-08 10:38:53 -0800719 }
Dave Chinnere55ec4d2018-10-01 08:11:07 +1000720
Dave Chinner9e5987a72013-02-25 12:31:26 +1100721 /*
722 * Allocation can't fail, the space was reserved.
723 */
Brian Foster280253d2018-07-11 22:26:29 -0700724 ASSERT(tp->t_firstblock == NULLFSBLOCK ||
725 args.agno >= XFS_FSB_TO_AGNO(mp, tp->t_firstblock));
Brian Fostercf612de2018-07-11 22:26:29 -0700726 tp->t_firstblock = args.fsbno;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100727 cur->bc_private.b.allocated++;
728 ip->i_d.di_nblocks++;
729 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, 1L);
Eric Sandeenf5b999c2019-06-12 09:00:00 -0700730 abp = xfs_btree_get_bufl(mp, tp, args.fsbno);
Shan Hai01239d772018-08-10 17:55:55 -0700731 if (!abp) {
Dave Chinnere55ec4d2018-10-01 08:11:07 +1000732 error = -EFSCORRUPTED;
733 goto out_unreserve_dquot;
Shan Hai01239d772018-08-10 17:55:55 -0700734 }
Dave Chinnere55ec4d2018-10-01 08:11:07 +1000735
Dave Chinner9e5987a72013-02-25 12:31:26 +1100736 /*
737 * Fill in the child block.
738 */
739 abp->b_ops = &xfs_bmbt_buf_ops;
740 ablock = XFS_BUF_TO_BLOCK(abp);
Eric Sandeenb6f41e42017-01-27 23:16:39 -0800741 xfs_btree_init_block_int(mp, ablock, abp->b_bn,
742 XFS_BTNUM_BMAP, 0, 0, ip->i_ino,
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500743 XFS_BTREE_LONG_PTRS);
744
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700745 for_each_xfs_iext(ifp, &icur, &rec) {
Christoph Hellwig906abed2017-11-03 10:34:43 -0700746 if (isnullstartblock(rec.br_startblock))
747 continue;
748 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1 + cnt);
749 xfs_bmbt_disk_set_all(arp, &rec);
750 cnt++;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100751 }
752 ASSERT(cnt == XFS_IFORK_NEXTENTS(ip, whichfork));
753 xfs_btree_set_numrecs(ablock, cnt);
754
755 /*
756 * Fill in the root key and pointer.
757 */
758 kp = XFS_BMBT_KEY_ADDR(mp, block, 1);
759 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
760 kp->br_startoff = cpu_to_be64(xfs_bmbt_disk_get_startoff(arp));
761 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, xfs_bmbt_get_maxrecs(cur,
762 be16_to_cpu(block->bb_level)));
763 *pp = cpu_to_be64(args.fsbno);
764
765 /*
766 * Do all this logging at the end so that
767 * the root is at the right level.
768 */
769 xfs_btree_log_block(cur, abp, XFS_BB_ALL_BITS);
770 xfs_btree_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs));
771 ASSERT(*curp == NULL);
772 *curp = cur;
773 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fbroot(whichfork);
774 return 0;
Shan Hai01239d772018-08-10 17:55:55 -0700775
Dave Chinnere55ec4d2018-10-01 08:11:07 +1000776out_unreserve_dquot:
Shan Hai01239d772018-08-10 17:55:55 -0700777 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
Dave Chinnere55ec4d2018-10-01 08:11:07 +1000778out_root_realloc:
Shan Hai01239d772018-08-10 17:55:55 -0700779 xfs_iroot_realloc(ip, -1, whichfork);
780 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
Dave Chinnere55ec4d2018-10-01 08:11:07 +1000781 ASSERT(ifp->if_broot == NULL);
Shan Hai01239d772018-08-10 17:55:55 -0700782 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
783
784 return error;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100785}
786
787/*
788 * Convert a local file to an extents file.
789 * This code is out of bounds for data forks of regular files,
790 * since the file data needs to get logged so things will stay consistent.
791 * (The bmap-level manipulations are ok, though).
792 */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000793void
794xfs_bmap_local_to_extents_empty(
795 struct xfs_inode *ip,
796 int whichfork)
797{
798 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
799
Darrick J. Wong60b49842016-10-03 09:11:34 -0700800 ASSERT(whichfork != XFS_COW_FORK);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000801 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
802 ASSERT(ifp->if_bytes == 0);
803 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) == 0);
804
Eric Sandeen6a9edd32014-04-14 18:59:26 +1000805 xfs_bmap_forkoff_reset(ip, whichfork);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000806 ifp->if_flags &= ~XFS_IFINLINE;
807 ifp->if_flags |= XFS_IFEXTENTS;
Christoph Hellwig6bdcf262017-11-03 10:34:46 -0700808 ifp->if_u1.if_root = NULL;
809 ifp->if_height = 0;
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000810 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
811}
812
813
Dave Chinner9e5987a72013-02-25 12:31:26 +1100814STATIC int /* error */
815xfs_bmap_local_to_extents(
816 xfs_trans_t *tp, /* transaction pointer */
817 xfs_inode_t *ip, /* incore inode pointer */
Dave Chinner9e5987a72013-02-25 12:31:26 +1100818 xfs_extlen_t total, /* total blocks needed by transaction */
819 int *logflagsp, /* inode logging flags */
820 int whichfork,
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500821 void (*init_fn)(struct xfs_trans *tp,
822 struct xfs_buf *bp,
Dave Chinner9e5987a72013-02-25 12:31:26 +1100823 struct xfs_inode *ip,
824 struct xfs_ifork *ifp))
825{
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000826 int error = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100827 int flags; /* logging flags returned */
Christoph Hellwig3ba738d2018-07-17 16:51:50 -0700828 struct xfs_ifork *ifp; /* inode fork pointer */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000829 xfs_alloc_arg_t args; /* allocation arguments */
830 xfs_buf_t *bp; /* buffer for extent block */
Christoph Hellwig50bb44c2017-08-29 15:44:11 -0700831 struct xfs_bmbt_irec rec;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700832 struct xfs_iext_cursor icur;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100833
834 /*
835 * We don't want to deal with the case of keeping inode data inline yet.
836 * So sending the data fork of a regular inode is invalid.
837 */
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100838 ASSERT(!(S_ISREG(VFS_I(ip)->i_mode) && whichfork == XFS_DATA_FORK));
Dave Chinner9e5987a72013-02-25 12:31:26 +1100839 ifp = XFS_IFORK_PTR(ip, whichfork);
840 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000841
842 if (!ifp->if_bytes) {
843 xfs_bmap_local_to_extents_empty(ip, whichfork);
844 flags = XFS_ILOG_CORE;
845 goto done;
846 }
847
Dave Chinner9e5987a72013-02-25 12:31:26 +1100848 flags = 0;
849 error = 0;
Christoph Hellwig6bdcf262017-11-03 10:34:46 -0700850 ASSERT((ifp->if_flags & (XFS_IFINLINE|XFS_IFEXTENTS)) == XFS_IFINLINE);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000851 memset(&args, 0, sizeof(args));
852 args.tp = tp;
853 args.mp = ip->i_mount;
Darrick J. Wong340785c2016-08-03 11:33:42 +1000854 xfs_rmap_ino_owner(&args.oinfo, ip->i_ino, whichfork, 0);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000855 /*
856 * Allocate a block. We know we need only one, since the
857 * file currently fits in an inode.
858 */
Brian Foster280253d2018-07-11 22:26:29 -0700859 if (tp->t_firstblock == NULLFSBLOCK) {
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000860 args.fsbno = XFS_INO_TO_FSB(args.mp, ip->i_ino);
861 args.type = XFS_ALLOCTYPE_START_BNO;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100862 } else {
Brian Foster280253d2018-07-11 22:26:29 -0700863 args.fsbno = tp->t_firstblock;
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000864 args.type = XFS_ALLOCTYPE_NEAR_BNO;
Dave Chinner9e5987a72013-02-25 12:31:26 +1100865 }
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000866 args.total = total;
867 args.minlen = args.maxlen = args.prod = 1;
868 error = xfs_alloc_vextent(&args);
869 if (error)
870 goto done;
871
872 /* Can't fail, the space was reserved. */
873 ASSERT(args.fsbno != NULLFSBLOCK);
874 ASSERT(args.len == 1);
Brian Foster280253d2018-07-11 22:26:29 -0700875 tp->t_firstblock = args.fsbno;
Eric Sandeenf5b999c2019-06-12 09:00:00 -0700876 bp = xfs_btree_get_bufl(args.mp, tp, args.fsbno);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000877
Dave Chinnerfe22d552015-01-22 09:30:06 +1100878 /*
Brian Fosterb7cdc662015-10-12 15:40:24 +1100879 * Initialize the block, copy the data and log the remote buffer.
Dave Chinnerfe22d552015-01-22 09:30:06 +1100880 *
Brian Fosterb7cdc662015-10-12 15:40:24 +1100881 * The callout is responsible for logging because the remote format
882 * might differ from the local format and thus we don't know how much to
883 * log here. Note that init_fn must also set the buffer log item type
884 * correctly.
Dave Chinnerfe22d552015-01-22 09:30:06 +1100885 */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000886 init_fn(tp, bp, ip, ifp);
887
Brian Fosterb7cdc662015-10-12 15:40:24 +1100888 /* account for the change in fork size */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000889 xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
890 xfs_bmap_local_to_extents_empty(ip, whichfork);
Dave Chinner9e5987a72013-02-25 12:31:26 +1100891 flags |= XFS_ILOG_CORE;
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000892
Christoph Hellwig6bdcf262017-11-03 10:34:46 -0700893 ifp->if_u1.if_root = NULL;
894 ifp->if_height = 0;
895
Christoph Hellwig50bb44c2017-08-29 15:44:11 -0700896 rec.br_startoff = 0;
897 rec.br_startblock = args.fsbno;
898 rec.br_blockcount = 1;
899 rec.br_state = XFS_EXT_NORM;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700900 xfs_iext_first(ifp, &icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -0700901 xfs_iext_insert(ip, &icur, &rec, 0);
Christoph Hellwig50bb44c2017-08-29 15:44:11 -0700902
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000903 XFS_IFORK_NEXT_SET(ip, whichfork, 1);
904 ip->i_d.di_nblocks = 1;
905 xfs_trans_mod_dquot_byino(tp, ip,
906 XFS_TRANS_DQ_BCOUNT, 1L);
907 flags |= xfs_ilog_fext(whichfork);
908
Dave Chinner9e5987a72013-02-25 12:31:26 +1100909done:
910 *logflagsp = flags;
911 return error;
912}
913
914/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 * Called from xfs_bmap_add_attrfork to handle btree format files.
916 */
917STATIC int /* error */
918xfs_bmap_add_attrfork_btree(
919 xfs_trans_t *tp, /* transaction pointer */
920 xfs_inode_t *ip, /* incore inode pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 int *flags) /* inode logging flags */
922{
923 xfs_btree_cur_t *cur; /* btree cursor */
924 int error; /* error return value */
925 xfs_mount_t *mp; /* file system mount struct */
926 int stat; /* newroot status */
927
928 mp = ip->i_mount;
929 if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip))
930 *flags |= XFS_ILOG_DBROOT;
931 else {
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100932 cur = xfs_bmbt_init_cursor(mp, tp, ip, XFS_DATA_FORK);
Christoph Hellwigb5cfbc22017-10-17 14:16:27 -0700933 error = xfs_bmbt_lookup_first(cur, &stat);
934 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 goto error0;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +1000936 /* must be at least one entry */
Eric Sandeenc29aad42015-02-23 22:39:08 +1100937 XFS_WANT_CORRUPTED_GOTO(mp, stat == 1, error0);
Christoph Hellwigea77b0a2008-10-30 16:57:28 +1100938 if ((error = xfs_btree_new_iroot(cur, flags, &stat)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 goto error0;
940 if (stat == 0) {
941 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
Dave Chinner24513372014-06-25 14:58:08 +1000942 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 cur->bc_private.b.allocated = 0;
945 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
946 }
947 return 0;
948error0:
949 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
950 return error;
951}
952
953/*
954 * Called from xfs_bmap_add_attrfork to handle extents format files.
955 */
956STATIC int /* error */
957xfs_bmap_add_attrfork_extents(
Brian Foster81ba8f32018-07-11 22:26:16 -0700958 struct xfs_trans *tp, /* transaction pointer */
959 struct xfs_inode *ip, /* incore inode pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 int *flags) /* inode logging flags */
961{
962 xfs_btree_cur_t *cur; /* bmap btree cursor */
963 int error; /* error return value */
964
965 if (ip->i_d.di_nextents * sizeof(xfs_bmbt_rec_t) <= XFS_IFORK_DSIZE(ip))
966 return 0;
967 cur = NULL;
Brian Foster280253d2018-07-11 22:26:29 -0700968 error = xfs_bmap_extents_to_btree(tp, ip, &cur, 0, flags,
969 XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (cur) {
971 cur->bc_private.b.allocated = 0;
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -0700972 xfs_btree_del_cursor(cur, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974 return error;
975}
976
977/*
Dave Chinner1e823792013-02-11 15:58:13 +1100978 * Called from xfs_bmap_add_attrfork to handle local format files. Each
979 * different data fork content type needs a different callout to do the
980 * conversion. Some are basic and only require special block initialisation
981 * callouts for the data formating, others (directories) are so specialised they
982 * handle everything themselves.
983 *
984 * XXX (dgc): investigate whether directory conversion can use the generic
985 * formatting callout. It should be possible - it's just a very complex
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500986 * formatter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 */
988STATIC int /* error */
989xfs_bmap_add_attrfork_local(
Brian Foster825d75cd2018-07-11 22:26:21 -0700990 struct xfs_trans *tp, /* transaction pointer */
991 struct xfs_inode *ip, /* incore inode pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 int *flags) /* inode logging flags */
993{
Brian Foster825d75cd2018-07-11 22:26:21 -0700994 struct xfs_da_args dargs; /* args for dir/attr code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip))
997 return 0;
Dave Chinner1e823792013-02-11 15:58:13 +1100998
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100999 if (S_ISDIR(VFS_I(ip)->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 memset(&dargs, 0, sizeof(dargs));
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001001 dargs.geo = ip->i_mount->m_dir_geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 dargs.dp = ip;
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001003 dargs.total = dargs.geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 dargs.whichfork = XFS_DATA_FORK;
1005 dargs.trans = tp;
Dave Chinner1e823792013-02-11 15:58:13 +11001006 return xfs_dir2_sf_to_block(&dargs);
1007 }
1008
Dave Chinnerc19b3b052016-02-09 16:54:58 +11001009 if (S_ISLNK(VFS_I(ip)->i_mode))
Brian Foster280253d2018-07-11 22:26:29 -07001010 return xfs_bmap_local_to_extents(tp, ip, 1, flags,
1011 XFS_DATA_FORK,
Dave Chinner1e823792013-02-11 15:58:13 +11001012 xfs_symlink_local_to_remote);
1013
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001014 /* should only be called for types that support local format data */
1015 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001016 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Allison Henderson2f3cd802018-10-18 17:21:16 +11001019/* Set an inode attr fork off based on the format */
1020int
1021xfs_bmap_set_attrforkoff(
1022 struct xfs_inode *ip,
1023 int size,
1024 int *version)
1025{
1026 switch (ip->i_d.di_format) {
1027 case XFS_DINODE_FMT_DEV:
1028 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
1029 break;
1030 case XFS_DINODE_FMT_LOCAL:
1031 case XFS_DINODE_FMT_EXTENTS:
1032 case XFS_DINODE_FMT_BTREE:
1033 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
1034 if (!ip->i_d.di_forkoff)
1035 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
1036 else if ((ip->i_mount->m_flags & XFS_MOUNT_ATTR2) && version)
1037 *version = 2;
1038 break;
1039 default:
1040 ASSERT(0);
1041 return -EINVAL;
1042 }
1043
1044 return 0;
1045}
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11001048 * Convert inode from non-attributed to attributed.
1049 * Must not be in a transaction, ip must not be locked.
1050 */
1051int /* error code */
1052xfs_bmap_add_attrfork(
1053 xfs_inode_t *ip, /* incore inode pointer */
1054 int size, /* space new attribute needs */
1055 int rsvd) /* xact may use reserved blks */
1056{
Dave Chinner9e5987a72013-02-25 12:31:26 +11001057 xfs_mount_t *mp; /* mount structure */
1058 xfs_trans_t *tp; /* transaction pointer */
1059 int blks; /* space reservation */
1060 int version = 1; /* superblock attr version */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001061 int logflags; /* logging flags */
1062 int error; /* error return value */
1063
1064 ASSERT(XFS_IFORK_Q(ip) == 0);
1065
1066 mp = ip->i_mount;
1067 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
Christoph Hellwig253f4912016-04-06 09:19:55 +10001068
Dave Chinner9e5987a72013-02-25 12:31:26 +11001069 blks = XFS_ADDAFORK_SPACE_RES(mp);
Christoph Hellwig253f4912016-04-06 09:19:55 +10001070
1071 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_addafork, blks, 0,
1072 rsvd ? XFS_TRANS_RESERVE : 0, &tp);
1073 if (error)
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001074 return error;
Christoph Hellwig253f4912016-04-06 09:19:55 +10001075
Dave Chinner9e5987a72013-02-25 12:31:26 +11001076 xfs_ilock(ip, XFS_ILOCK_EXCL);
1077 error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ?
1078 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
1079 XFS_QMOPT_RES_REGBLKS);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001080 if (error)
1081 goto trans_cancel;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001082 if (XFS_IFORK_Q(ip))
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001083 goto trans_cancel;
Darrick J. Wong0f352f82016-12-05 12:38:11 +11001084 if (ip->i_d.di_anextents != 0) {
1085 error = -EFSCORRUPTED;
1086 goto trans_cancel;
1087 }
Dave Chinner9e5987a72013-02-25 12:31:26 +11001088 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) {
1089 /*
1090 * For inodes coming from pre-6.2 filesystems.
1091 */
1092 ASSERT(ip->i_d.di_aformat == 0);
1093 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1094 }
Dave Chinner9e5987a72013-02-25 12:31:26 +11001095
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001096 xfs_trans_ijoin(tp, ip, 0);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001097 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Allison Henderson2f3cd802018-10-18 17:21:16 +11001098 error = xfs_bmap_set_attrforkoff(ip, size, &version);
1099 if (error)
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001100 goto trans_cancel;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001101 ASSERT(ip->i_afp == NULL);
Tetsuo Handa707e0dd2019-08-26 12:06:22 -07001102 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, 0);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001103 ip->i_afp->if_flags = XFS_IFEXTENTS;
1104 logflags = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001105 switch (ip->i_d.di_format) {
1106 case XFS_DINODE_FMT_LOCAL:
Brian Foster825d75cd2018-07-11 22:26:21 -07001107 error = xfs_bmap_add_attrfork_local(tp, ip, &logflags);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001108 break;
1109 case XFS_DINODE_FMT_EXTENTS:
Brian Foster825d75cd2018-07-11 22:26:21 -07001110 error = xfs_bmap_add_attrfork_extents(tp, ip, &logflags);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001111 break;
1112 case XFS_DINODE_FMT_BTREE:
Brian Foster825d75cd2018-07-11 22:26:21 -07001113 error = xfs_bmap_add_attrfork_btree(tp, ip, &logflags);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001114 break;
1115 default:
1116 error = 0;
1117 break;
1118 }
1119 if (logflags)
1120 xfs_trans_log_inode(tp, ip, logflags);
1121 if (error)
Brian Fosterc8eac492018-07-24 13:43:13 -07001122 goto trans_cancel;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001123 if (!xfs_sb_version_hasattr(&mp->m_sb) ||
1124 (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) {
Dave Chinner61e63ec2015-01-22 09:10:31 +11001125 bool log_sb = false;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001126
1127 spin_lock(&mp->m_sb_lock);
1128 if (!xfs_sb_version_hasattr(&mp->m_sb)) {
1129 xfs_sb_version_addattr(&mp->m_sb);
Dave Chinner61e63ec2015-01-22 09:10:31 +11001130 log_sb = true;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001131 }
1132 if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) {
1133 xfs_sb_version_addattr2(&mp->m_sb);
Dave Chinner61e63ec2015-01-22 09:10:31 +11001134 log_sb = true;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001135 }
Dave Chinner4d11a402015-01-22 09:10:26 +11001136 spin_unlock(&mp->m_sb_lock);
Dave Chinner61e63ec2015-01-22 09:10:31 +11001137 if (log_sb)
1138 xfs_log_sb(tp);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001139 }
1140
Christoph Hellwig70393312015-06-04 13:48:08 +10001141 error = xfs_trans_commit(tp);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001142 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001143 return error;
1144
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001145trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001146 xfs_trans_cancel(tp);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001147 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001148 return error;
1149}
1150
1151/*
1152 * Internal and external extent tree search functions.
1153 */
1154
1155/*
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001156 * Read in extents from a btree-format inode.
Dave Chinner9e5987a72013-02-25 12:31:26 +11001157 */
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001158int
1159xfs_iread_extents(
1160 struct xfs_trans *tp,
1161 struct xfs_inode *ip,
1162 int whichfork)
Dave Chinner9e5987a72013-02-25 12:31:26 +11001163{
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001164 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwige8e0e172017-10-19 11:06:29 -07001165 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001166 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1167 xfs_extnum_t nextents = XFS_IFORK_NEXTENTS(ip, whichfork);
1168 struct xfs_btree_block *block = ifp->if_broot;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001169 struct xfs_iext_cursor icur;
Christoph Hellwig6bdcf262017-11-03 10:34:46 -07001170 struct xfs_bmbt_irec new;
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001171 xfs_fsblock_t bno;
1172 struct xfs_buf *bp;
1173 xfs_extnum_t i, j;
1174 int level;
1175 __be64 *pp;
1176 int error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001177
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001178 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1179
1180 if (unlikely(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
1181 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp);
1182 return -EFSCORRUPTED;
1183 }
1184
Dave Chinner9e5987a72013-02-25 12:31:26 +11001185 /*
1186 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
1187 */
1188 level = be16_to_cpu(block->bb_level);
Brian Foster6958d112019-03-17 15:21:49 -07001189 if (unlikely(level == 0)) {
1190 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp);
1191 return -EFSCORRUPTED;
1192 }
Dave Chinner9e5987a72013-02-25 12:31:26 +11001193 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
1194 bno = be64_to_cpu(*pp);
Darrick J. Wongd5a91ba2017-02-02 15:13:58 -08001195
Dave Chinner9e5987a72013-02-25 12:31:26 +11001196 /*
1197 * Go down the tree until leaf level is reached, following the first
1198 * pointer (leftmost) at each level.
1199 */
1200 while (level-- > 0) {
Eric Sandeenf5b999c2019-06-12 09:00:00 -07001201 error = xfs_btree_read_bufl(mp, tp, bno, &bp,
Dave Chinner9e5987a72013-02-25 12:31:26 +11001202 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1203 if (error)
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001204 goto out;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001205 block = XFS_BUF_TO_BLOCK(bp);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001206 if (level == 0)
1207 break;
1208 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
1209 bno = be64_to_cpu(*pp);
Eric Sandeenc29aad42015-02-23 22:39:08 +11001210 XFS_WANT_CORRUPTED_GOTO(mp,
Darrick J. Wong59f6fec2018-01-08 10:51:00 -08001211 xfs_verify_fsbno(mp, bno), out_brelse);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001212 xfs_trans_brelse(tp, bp);
1213 }
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001214
Dave Chinner9e5987a72013-02-25 12:31:26 +11001215 /*
1216 * Here with bp and block set to the leftmost leaf node in the tree.
1217 */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001218 i = 0;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001219 xfs_iext_first(ifp, &icur);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001220
Dave Chinner9e5987a72013-02-25 12:31:26 +11001221 /*
1222 * Loop over all leaf nodes. Copy information to the extent records.
1223 */
1224 for (;;) {
1225 xfs_bmbt_rec_t *frp;
1226 xfs_fsblock_t nextbno;
1227 xfs_extnum_t num_recs;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001228
1229 num_recs = xfs_btree_get_numrecs(block);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001230 if (unlikely(i + num_recs > nextents)) {
Dave Chinner9e5987a72013-02-25 12:31:26 +11001231 xfs_warn(ip->i_mount,
1232 "corrupt dinode %Lu, (btree extents).",
1233 (unsigned long long) ip->i_ino);
Darrick J. Wong90a58f92018-03-23 10:06:52 -07001234 xfs_inode_verifier_error(ip, -EFSCORRUPTED,
1235 __func__, block, sizeof(*block),
1236 __this_address);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001237 error = -EFSCORRUPTED;
1238 goto out_brelse;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001239 }
Dave Chinner9e5987a72013-02-25 12:31:26 +11001240 /*
1241 * Read-ahead the next leaf block, if any.
1242 */
1243 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
1244 if (nextbno != NULLFSBLOCK)
1245 xfs_btree_reada_bufl(mp, nextbno, 1,
1246 &xfs_bmbt_buf_ops);
1247 /*
1248 * Copy records into the extent records.
1249 */
1250 frp = XFS_BMBT_REC_ADDR(mp, block, 1);
Christoph Hellwig6bdcf262017-11-03 10:34:46 -07001251 for (j = 0; j < num_recs; j++, frp++, i++) {
Darrick J. Wong30b09842018-03-23 10:06:52 -07001252 xfs_failaddr_t fa;
1253
Christoph Hellwigdac9c9b2017-11-03 10:34:47 -07001254 xfs_bmbt_disk_get_all(frp, &new);
Darrick J. Wong30b09842018-03-23 10:06:52 -07001255 fa = xfs_bmap_validate_extent(ip, whichfork, &new);
1256 if (fa) {
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001257 error = -EFSCORRUPTED;
Darrick J. Wong30b09842018-03-23 10:06:52 -07001258 xfs_inode_verifier_error(ip, error,
1259 "xfs_iread_extents(2)",
1260 frp, sizeof(*frp), fa);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001261 goto out_brelse;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001262 }
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07001263 xfs_iext_insert(ip, &icur, &new, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001264 trace_xfs_read_extent(ip, &icur, state, _THIS_IP_);
1265 xfs_iext_next(ifp, &icur);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001266 }
1267 xfs_trans_brelse(tp, bp);
1268 bno = nextbno;
1269 /*
1270 * If we've reached the end, stop.
1271 */
1272 if (bno == NULLFSBLOCK)
1273 break;
Eric Sandeenf5b999c2019-06-12 09:00:00 -07001274 error = xfs_btree_read_bufl(mp, tp, bno, &bp,
Dave Chinner9e5987a72013-02-25 12:31:26 +11001275 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1276 if (error)
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001277 goto out;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001278 block = XFS_BUF_TO_BLOCK(bp);
1279 }
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001280
1281 if (i != XFS_IFORK_NEXTENTS(ip, whichfork)) {
1282 error = -EFSCORRUPTED;
1283 goto out;
1284 }
Eric Sandeen5d829302016-11-08 12:59:42 +11001285 ASSERT(i == xfs_iext_count(ifp));
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001286
1287 ifp->if_flags |= XFS_IFEXTENTS;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001288 return 0;
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001289
1290out_brelse:
Dave Chinner9e5987a72013-02-25 12:31:26 +11001291 xfs_trans_brelse(tp, bp);
Christoph Hellwig211e95b2017-10-23 16:32:39 -07001292out:
1293 xfs_iext_destroy(ifp);
1294 return error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001295}
1296
Dave Chinner9e5987a72013-02-25 12:31:26 +11001297/*
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001298 * Returns the relative block number of the first unused block(s) in the given
1299 * fork with at least "len" logically contiguous blocks free. This is the
1300 * lowest-address hole if the fork has holes, else the first block past the end
1301 * of fork. Return 0 if the fork is currently local (in-inode).
Dave Chinner9e5987a72013-02-25 12:31:26 +11001302 */
1303int /* error */
1304xfs_bmap_first_unused(
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001305 struct xfs_trans *tp, /* transaction pointer */
1306 struct xfs_inode *ip, /* incore inode */
1307 xfs_extlen_t len, /* size of hole to find */
1308 xfs_fileoff_t *first_unused, /* unused block */
1309 int whichfork) /* data or attr fork */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001310{
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001311 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1312 struct xfs_bmbt_irec got;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001313 struct xfs_iext_cursor icur;
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001314 xfs_fileoff_t lastaddr = 0;
1315 xfs_fileoff_t lowest, max;
1316 int error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001317
1318 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE ||
1319 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ||
1320 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001321
Dave Chinner9e5987a72013-02-25 12:31:26 +11001322 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1323 *first_unused = 0;
1324 return 0;
1325 }
Christoph Hellwigf2285c12017-08-29 15:44:12 -07001326
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001327 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1328 error = xfs_iread_extents(tp, ip, whichfork);
1329 if (error)
1330 return error;
1331 }
Christoph Hellwigf2285c12017-08-29 15:44:12 -07001332
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001333 lowest = max = *first_unused;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001334 for_each_xfs_iext(ifp, &icur, &got) {
Dave Chinner9e5987a72013-02-25 12:31:26 +11001335 /*
1336 * See if the hole before this extent will work.
1337 */
Christoph Hellwigf2285c12017-08-29 15:44:12 -07001338 if (got.br_startoff >= lowest + len &&
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001339 got.br_startoff - max >= len)
1340 break;
Christoph Hellwigf2285c12017-08-29 15:44:12 -07001341 lastaddr = got.br_startoff + got.br_blockcount;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001342 max = XFS_FILEOFF_MAX(lastaddr, lowest);
1343 }
Christoph Hellwig29b3e942017-10-19 11:08:52 -07001344
Dave Chinner9e5987a72013-02-25 12:31:26 +11001345 *first_unused = max;
1346 return 0;
1347}
1348
1349/*
Zhi Yong Wu02bb4872013-08-12 03:14:54 +00001350 * Returns the file-relative block number of the last block - 1 before
Dave Chinner9e5987a72013-02-25 12:31:26 +11001351 * last_block (input value) in the file.
1352 * This is not based on i_size, it is based on the extent records.
1353 * Returns 0 for local files, as they do not have extent records.
1354 */
1355int /* error */
1356xfs_bmap_last_before(
Christoph Hellwig86685f72016-11-24 11:39:38 +11001357 struct xfs_trans *tp, /* transaction pointer */
1358 struct xfs_inode *ip, /* incore inode */
1359 xfs_fileoff_t *last_block, /* last block */
1360 int whichfork) /* data or attr fork */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001361{
Christoph Hellwig86685f72016-11-24 11:39:38 +11001362 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1363 struct xfs_bmbt_irec got;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001364 struct xfs_iext_cursor icur;
Christoph Hellwig86685f72016-11-24 11:39:38 +11001365 int error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001366
Christoph Hellwig86685f72016-11-24 11:39:38 +11001367 switch (XFS_IFORK_FORMAT(ip, whichfork)) {
1368 case XFS_DINODE_FMT_LOCAL:
Dave Chinner9e5987a72013-02-25 12:31:26 +11001369 *last_block = 0;
1370 return 0;
Christoph Hellwig86685f72016-11-24 11:39:38 +11001371 case XFS_DINODE_FMT_BTREE:
1372 case XFS_DINODE_FMT_EXTENTS:
1373 break;
1374 default:
1375 return -EIO;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001376 }
Christoph Hellwig86685f72016-11-24 11:39:38 +11001377
1378 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1379 error = xfs_iread_extents(tp, ip, whichfork);
1380 if (error)
1381 return error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001382 }
Christoph Hellwig86685f72016-11-24 11:39:38 +11001383
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001384 if (!xfs_iext_lookup_extent_before(ip, ifp, last_block, &icur, &got))
Christoph Hellwigdc560152017-10-23 16:32:39 -07001385 *last_block = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001386 return 0;
1387}
1388
Dave Chinner68988112013-08-12 20:49:42 +10001389int
Dave Chinner9e5987a72013-02-25 12:31:26 +11001390xfs_bmap_last_extent(
1391 struct xfs_trans *tp,
1392 struct xfs_inode *ip,
1393 int whichfork,
1394 struct xfs_bmbt_irec *rec,
1395 int *is_empty)
1396{
1397 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001398 struct xfs_iext_cursor icur;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001399 int error;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001400
1401 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1402 error = xfs_iread_extents(tp, ip, whichfork);
1403 if (error)
1404 return error;
1405 }
1406
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001407 xfs_iext_last(ifp, &icur);
1408 if (!xfs_iext_get_extent(ifp, &icur, rec))
Dave Chinner9e5987a72013-02-25 12:31:26 +11001409 *is_empty = 1;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001410 else
1411 *is_empty = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001412 return 0;
1413}
1414
1415/*
1416 * Check the last inode extent to determine whether this allocation will result
1417 * in blocks being allocated at the end of the file. When we allocate new data
1418 * blocks at the end of the file which do not start at the previous data block,
1419 * we will try to align the new blocks at stripe unit boundaries.
1420 *
Dave Chinner6e708bc2013-11-22 10:41:16 +11001421 * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be
Dave Chinner9e5987a72013-02-25 12:31:26 +11001422 * at, or past the EOF.
1423 */
1424STATIC int
1425xfs_bmap_isaeof(
1426 struct xfs_bmalloca *bma,
1427 int whichfork)
1428{
1429 struct xfs_bmbt_irec rec;
1430 int is_empty;
1431 int error;
1432
Thomas Meyer749f24f2017-10-09 11:38:54 -07001433 bma->aeof = false;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001434 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec,
1435 &is_empty);
Dave Chinner6e708bc2013-11-22 10:41:16 +11001436 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11001437 return error;
1438
Dave Chinner6e708bc2013-11-22 10:41:16 +11001439 if (is_empty) {
Thomas Meyer749f24f2017-10-09 11:38:54 -07001440 bma->aeof = true;
Dave Chinner6e708bc2013-11-22 10:41:16 +11001441 return 0;
1442 }
1443
Dave Chinner9e5987a72013-02-25 12:31:26 +11001444 /*
1445 * Check if we are allocation or past the last extent, or at least into
1446 * the last delayed allocated extent.
1447 */
1448 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount ||
1449 (bma->offset >= rec.br_startoff &&
1450 isnullstartblock(rec.br_startblock));
1451 return 0;
1452}
1453
1454/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11001455 * Returns the file-relative block number of the first block past eof in
1456 * the file. This is not based on i_size, it is based on the extent records.
1457 * Returns 0 for local files, as they do not have extent records.
1458 */
1459int
1460xfs_bmap_last_offset(
Dave Chinner9e5987a72013-02-25 12:31:26 +11001461 struct xfs_inode *ip,
1462 xfs_fileoff_t *last_block,
1463 int whichfork)
1464{
1465 struct xfs_bmbt_irec rec;
1466 int is_empty;
1467 int error;
1468
1469 *last_block = 0;
1470
1471 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL)
1472 return 0;
1473
1474 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1475 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Dave Chinner24513372014-06-25 14:58:08 +10001476 return -EIO;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001477
1478 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty);
1479 if (error || is_empty)
1480 return error;
1481
1482 *last_block = rec.br_startoff + rec.br_blockcount;
1483 return 0;
1484}
1485
1486/*
1487 * Returns whether the selected fork of the inode has exactly one
1488 * block or not. For the data fork we check this matches di_size,
1489 * implying the file's range is 0..bsize-1.
1490 */
1491int /* 1=>1 block, 0=>otherwise */
1492xfs_bmap_one_block(
1493 xfs_inode_t *ip, /* incore inode */
1494 int whichfork) /* data or attr fork */
1495{
Christoph Hellwig3ba738d2018-07-17 16:51:50 -07001496 struct xfs_ifork *ifp; /* inode fork pointer */
Dave Chinner9e5987a72013-02-25 12:31:26 +11001497 int rval; /* return value */
1498 xfs_bmbt_irec_t s; /* internal version of extent */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001499 struct xfs_iext_cursor icur;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001500
1501#ifndef DEBUG
1502 if (whichfork == XFS_DATA_FORK)
1503 return XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize;
1504#endif /* !DEBUG */
1505 if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1)
1506 return 0;
1507 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1508 return 0;
1509 ifp = XFS_IFORK_PTR(ip, whichfork);
1510 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001511 xfs_iext_first(ifp, &icur);
1512 xfs_iext_get_extent(ifp, &icur, &s);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001513 rval = s.br_startoff == 0 && s.br_blockcount == 1;
1514 if (rval && whichfork == XFS_DATA_FORK)
1515 ASSERT(XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize);
1516 return rval;
1517}
1518
1519/*
1520 * Extent tree manipulation functions used during allocation.
1521 */
1522
1523/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001524 * Convert a delayed allocation to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 */
1526STATIC int /* error */
1527xfs_bmap_add_extent_delay_real(
Darrick J. Wong60b49842016-10-03 09:11:34 -07001528 struct xfs_bmalloca *bma,
1529 int whichfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001531 struct xfs_bmbt_irec *new = &bma->got;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 int i; /* temp state */
Christoph Hellwig3ba738d2018-07-17 16:51:50 -07001534 struct xfs_ifork *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 xfs_fileoff_t new_endoff; /* end offset of new entry */
1536 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
1537 /* left is 0, right is 1, prev is 2 */
1538 int rval=0; /* return value (logging flags) */
Christoph Hellwig060ea652017-10-19 11:02:29 -07001539 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001540 xfs_filblks_t da_new; /* new count del alloc blocks used */
1541 xfs_filblks_t da_old; /* old count del alloc blocks used */
1542 xfs_filblks_t temp=0; /* value for da_new calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 int tmp_rval; /* partial logging flags */
Eric Sandeenc29aad42015-02-23 22:39:08 +11001544 struct xfs_mount *mp;
Darrick J. Wong60b49842016-10-03 09:11:34 -07001545 xfs_extnum_t *nextents;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001546 struct xfs_bmbt_irec old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Eric Sandeenf1f96c42016-01-04 16:10:42 +11001548 mp = bma->ip->i_mount;
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001549 ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001550 ASSERT(whichfork != XFS_ATTR_FORK);
1551 nextents = (whichfork == XFS_COW_FORK ? &bma->ip->i_cnextents :
1552 &bma->ip->i_d.di_nextents);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001553
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001554 ASSERT(!isnullstartblock(new->br_startblock));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001555 ASSERT(!bma->cur ||
1556 (bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001557
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001558 XFS_STATS_INC(mp, xs_add_exlist);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560#define LEFT r[0]
1561#define RIGHT r[1]
1562#define PREV r[2]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 /*
1565 * Set up a bunch of variables to make the tests simpler.
1566 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001567 xfs_iext_get_extent(ifp, &bma->icur, &PREV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 new_endoff = new->br_startoff + new->br_blockcount;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001569 ASSERT(isnullstartblock(PREV.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 ASSERT(PREV.br_startoff <= new->br_startoff);
1571 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001572
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001573 da_old = startblockval(PREV.br_startblock);
1574 da_new = 0;
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 /*
1577 * Set flags determining what part of the previous delayed allocation
1578 * extent is being replaced by a real allocation.
1579 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001580 if (PREV.br_startoff == new->br_startoff)
1581 state |= BMAP_LEFT_FILLING;
1582 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
1583 state |= BMAP_RIGHT_FILLING;
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 /*
1586 * Check and set flags if this segment has a left neighbor.
1587 * Don't set contiguous if the combined extent would be too large.
1588 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001589 if (xfs_iext_peek_prev_extent(ifp, &bma->icur, &LEFT)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001590 state |= BMAP_LEFT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001591 if (isnullstartblock(LEFT.br_startblock))
1592 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001594
1595 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
1596 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
1597 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
1598 LEFT.br_state == new->br_state &&
1599 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1600 state |= BMAP_LEFT_CONTIG;
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 /*
1603 * Check and set flags if this segment has a right neighbor.
1604 * Don't set contiguous if the combined extent would be too large.
1605 * Also check for all-three-contiguous being too large.
1606 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001607 if (xfs_iext_peek_next_extent(ifp, &bma->icur, &RIGHT)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001608 state |= BMAP_RIGHT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001609 if (isnullstartblock(RIGHT.br_startblock))
1610 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001612
1613 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1614 new_endoff == RIGHT.br_startoff &&
1615 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
1616 new->br_state == RIGHT.br_state &&
1617 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1618 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1619 BMAP_RIGHT_FILLING)) !=
1620 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1621 BMAP_RIGHT_FILLING) ||
1622 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1623 <= MAXEXTLEN))
1624 state |= BMAP_RIGHT_CONTIG;
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 error = 0;
1627 /*
1628 * Switch out based on the FILLING and CONTIG state bits.
1629 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001630 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1631 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
1632 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1633 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 /*
1635 * Filling in all of a previously delayed allocation extent.
1636 * The left and right neighbors are both contiguous with new.
1637 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001638 LEFT.br_blockcount += PREV.br_blockcount + RIGHT.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001639
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07001640 xfs_iext_remove(bma->ip, &bma->icur, state);
1641 xfs_iext_remove(bma->ip, &bma->icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001642 xfs_iext_prev(ifp, &bma->icur);
1643 xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001644 (*nextents)--;
Christoph Hellwig0d045542017-11-03 10:34:39 -07001645
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001646 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1648 else {
1649 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001650 error = xfs_bmbt_lookup_eq(bma->cur, &RIGHT, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001651 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001653 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001654 error = xfs_btree_delete(bma->cur, &i);
1655 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001657 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001658 error = xfs_btree_decrement(bma->cur, 0, &i);
1659 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 Hellwiga67d00a2017-10-17 14:16:26 -07001662 error = xfs_bmbt_update(bma->cur, &LEFT);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001663 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 goto done;
1665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 break;
1667
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001668 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 /*
1670 * Filling in all of a previously delayed allocation extent.
1671 * The left neighbor is contiguous, the right is not.
1672 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001673 old = LEFT;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001674 LEFT.br_blockcount += PREV.br_blockcount;
Christoph Hellwig0d045542017-11-03 10:34:39 -07001675
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07001676 xfs_iext_remove(bma->ip, &bma->icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001677 xfs_iext_prev(ifp, &bma->icur);
1678 xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001679
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001680 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 rval = XFS_ILOG_DEXT;
1682 else {
1683 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001684 error = xfs_bmbt_lookup_eq(bma->cur, &old, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001685 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001687 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07001688 error = xfs_bmbt_update(bma->cur, &LEFT);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001689 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 goto done;
1691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 break;
1693
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001694 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 /*
1696 * Filling in all of a previously delayed allocation extent.
Dave Chinner9230a0b2018-11-19 22:50:08 -08001697 * The right neighbor is contiguous, the left is not. Take care
1698 * with delay -> unwritten extent allocation here because the
1699 * delalloc record we are overwriting is always written.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001701 PREV.br_startblock = new->br_startblock;
1702 PREV.br_blockcount += RIGHT.br_blockcount;
Dave Chinner9230a0b2018-11-19 22:50:08 -08001703 PREV.br_state = new->br_state;
Christoph Hellwig0d045542017-11-03 10:34:39 -07001704
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001705 xfs_iext_next(ifp, &bma->icur);
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07001706 xfs_iext_remove(bma->ip, &bma->icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001707 xfs_iext_prev(ifp, &bma->icur);
1708 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001709
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001710 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 rval = XFS_ILOG_DEXT;
1712 else {
1713 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001714 error = xfs_bmbt_lookup_eq(bma->cur, &RIGHT, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001715 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001717 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07001718 error = xfs_bmbt_update(bma->cur, &PREV);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001719 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 goto done;
1721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 break;
1723
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001724 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 /*
1726 * Filling in all of a previously delayed allocation extent.
1727 * Neither the left nor right neighbors are contiguous with
1728 * the new one.
1729 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001730 PREV.br_startblock = new->br_startblock;
1731 PREV.br_state = new->br_state;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001732 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001733
Darrick J. Wong60b49842016-10-03 09:11:34 -07001734 (*nextents)++;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001735 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1737 else {
1738 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001739 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001740 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001742 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001743 error = xfs_btree_insert(bma->cur, &i);
1744 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001746 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 break;
1749
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001750 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 /*
1752 * Filling in the first part of a previous delayed allocation.
1753 * The left neighbor is contiguous.
1754 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001755 old = LEFT;
1756 temp = PREV.br_blockcount - new->br_blockcount;
1757 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
1758 startblockval(PREV.br_startblock));
1759
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001760 LEFT.br_blockcount += new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001761
Christoph Hellwigbf999712017-11-03 10:34:38 -07001762 PREV.br_blockcount = temp;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001763 PREV.br_startoff += new->br_blockcount;
1764 PREV.br_startblock = nullstartblock(da_new);
Christoph Hellwig0d045542017-11-03 10:34:39 -07001765
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001766 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
1767 xfs_iext_prev(ifp, &bma->icur);
1768 xfs_iext_update_extent(bma->ip, state, &bma->icur, &LEFT);
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001769
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001770 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 rval = XFS_ILOG_DEXT;
1772 else {
1773 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001774 error = xfs_bmbt_lookup_eq(bma->cur, &old, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001775 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001777 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07001778 error = xfs_bmbt_update(bma->cur, &LEFT);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001779 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 goto done;
1781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 break;
1783
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001784 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 /*
1786 * Filling in the first part of a previous delayed allocation.
1787 * The left neighbor is not contiguous.
1788 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001789 xfs_iext_update_extent(bma->ip, state, &bma->icur, new);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001790 (*nextents)++;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001791 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1793 else {
1794 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001795 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001796 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001798 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001799 error = xfs_btree_insert(bma->cur, &i);
1800 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001802 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00001804
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001805 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001806 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
Brian Foster280253d2018-07-11 22:26:29 -07001807 &bma->cur, 1, &tmp_rval, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 rval |= tmp_rval;
1809 if (error)
1810 goto done;
1811 }
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001812
1813 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001814 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06001815 startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001816 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001817
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001818 PREV.br_startoff = new_endoff;
1819 PREV.br_blockcount = temp;
1820 PREV.br_startblock = nullstartblock(da_new);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001821 xfs_iext_next(ifp, &bma->icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07001822 xfs_iext_insert(bma->ip, &bma->icur, &PREV, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001823 xfs_iext_prev(ifp, &bma->icur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 break;
1825
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001826 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 /*
1828 * Filling in the last part of a previous delayed allocation.
1829 * The right neighbor is contiguous with the new allocation.
1830 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001831 old = RIGHT;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001832 RIGHT.br_startoff = new->br_startoff;
1833 RIGHT.br_startblock = new->br_startblock;
1834 RIGHT.br_blockcount += new->br_blockcount;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001835
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001836 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 rval = XFS_ILOG_DEXT;
1838 else {
1839 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001840 error = xfs_bmbt_lookup_eq(bma->cur, &old, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001841 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001843 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07001844 error = xfs_bmbt_update(bma->cur, &RIGHT);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001845 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 goto done;
1847 }
Christoph Hellwigec90c552011-05-23 08:52:53 +00001848
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001849 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001850 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06001851 startblockval(PREV.br_startblock));
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001852
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001853 PREV.br_blockcount = temp;
1854 PREV.br_startblock = nullstartblock(da_new);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001855
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001856 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
1857 xfs_iext_next(ifp, &bma->icur);
1858 xfs_iext_update_extent(bma->ip, state, &bma->icur, &RIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 break;
1860
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001861 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 /*
1863 * Filling in the last part of a previous delayed allocation.
1864 * The right neighbor is not contiguous.
1865 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001866 xfs_iext_update_extent(bma->ip, state, &bma->icur, new);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001867 (*nextents)++;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001868 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1870 else {
1871 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001872 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001873 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001875 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001876 error = xfs_btree_insert(bma->cur, &i);
1877 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001879 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00001881
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001882 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001883 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
Brian Foster280253d2018-07-11 22:26:29 -07001884 &bma->cur, 1, &tmp_rval, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 rval |= tmp_rval;
1886 if (error)
1887 goto done;
1888 }
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001889
1890 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001891 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06001892 startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001893 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001894
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001895 PREV.br_startblock = nullstartblock(da_new);
1896 PREV.br_blockcount = temp;
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07001897 xfs_iext_insert(bma->ip, &bma->icur, &PREV, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001898 xfs_iext_next(ifp, &bma->icur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 break;
1900
1901 case 0:
1902 /*
1903 * Filling in the middle part of a previous delayed allocation.
1904 * Contiguity is impossible here.
1905 * This case is avoided almost all the time.
bpm@sgi.com24446fc2011-01-19 17:41:58 +00001906 *
1907 * We start with a delayed allocation:
1908 *
1909 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
1910 * PREV @ idx
1911 *
1912 * and we are allocating:
1913 * +rrrrrrrrrrrrrrrrr+
1914 * new
1915 *
1916 * and we set it up for insertion as:
1917 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
1918 * new
1919 * PREV @ idx LEFT RIGHT
1920 * inserted at idx + 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001922 old = PREV;
1923
1924 /* LEFT is the new middle */
bpm@sgi.com24446fc2011-01-19 17:41:58 +00001925 LEFT = *new;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001926
1927 /* RIGHT is the new right */
bpm@sgi.com24446fc2011-01-19 17:41:58 +00001928 RIGHT.br_state = PREV.br_state;
bpm@sgi.com24446fc2011-01-19 17:41:58 +00001929 RIGHT.br_startoff = new_endoff;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001930 RIGHT.br_blockcount =
1931 PREV.br_startoff + PREV.br_blockcount - new_endoff;
1932 RIGHT.br_startblock =
1933 nullstartblock(xfs_bmap_worst_indlen(bma->ip,
1934 RIGHT.br_blockcount));
1935
1936 /* truncate PREV */
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001937 PREV.br_blockcount = new->br_startoff - PREV.br_startoff;
1938 PREV.br_startblock =
1939 nullstartblock(xfs_bmap_worst_indlen(bma->ip,
1940 PREV.br_blockcount));
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001941 xfs_iext_update_extent(bma->ip, state, &bma->icur, &PREV);
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001942
Christoph Hellwigb2b17122017-11-03 10:34:43 -07001943 xfs_iext_next(ifp, &bma->icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07001944 xfs_iext_insert(bma->ip, &bma->icur, &RIGHT, state);
1945 xfs_iext_insert(bma->ip, &bma->icur, &LEFT, state);
Darrick J. Wong60b49842016-10-03 09:11:34 -07001946 (*nextents)++;
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001947
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001948 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1950 else {
1951 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07001952 error = xfs_bmbt_lookup_eq(bma->cur, new, &i);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001953 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001955 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001956 error = xfs_btree_insert(bma->cur, &i);
1957 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001959 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00001961
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001962 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001963 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
Brian Foster280253d2018-07-11 22:26:29 -07001964 &bma->cur, 1, &tmp_rval, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 rval |= tmp_rval;
1966 if (error)
1967 goto done;
1968 }
Christoph Hellwig4dcb88692017-10-17 14:16:24 -07001969
1970 da_new = startblockval(PREV.br_startblock) +
1971 startblockval(RIGHT.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 break;
1973
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001974 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1975 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1976 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
1977 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
1978 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
1979 case BMAP_LEFT_CONTIG:
1980 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 /*
1982 * These cases are all impossible.
1983 */
1984 ASSERT(0);
1985 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001986
Darrick J. Wong95eb3082018-05-09 10:02:32 -07001987 /* add reverse mapping unless caller opted out */
Darrick J. Wongbc46ac62019-08-26 17:06:03 -07001988 if (!(bma->flags & XFS_BMAPI_NORMAP))
1989 xfs_rmap_map_extent(bma->tp, bma->ip, whichfork, new);
Darrick J. Wong9c194642016-08-03 12:16:05 +10001990
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001991 /* convert to a btree if necessary */
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11001992 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001993 int tmp_logflags; /* partial log flag return val */
1994
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001995 ASSERT(bma->cur == NULL);
1996 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
Brian Foster280253d2018-07-11 22:26:29 -07001997 &bma->cur, da_old > 0, &tmp_logflags,
1998 whichfork);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001999 bma->logflags |= tmp_logflags;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002000 if (error)
2001 goto done;
2002 }
2003
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07002004 if (da_new != da_old)
2005 xfs_mod_delalloc(mp, (int64_t)da_new - da_old);
2006
Christoph Hellwigca1862b2017-10-17 14:16:25 -07002007 if (bma->cur) {
2008 da_new += bma->cur->bc_private.b.allocated;
2009 bma->cur->bc_private.b.allocated = 0;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002010 }
2011
Christoph Hellwigca1862b2017-10-17 14:16:25 -07002012 /* adjust for changes in reserved delayed indirect blocks */
2013 if (da_new != da_old) {
2014 ASSERT(state == 0 || da_new < da_old);
2015 error = xfs_mod_fdblocks(mp, (int64_t)(da_old - da_new),
2016 false);
2017 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002018
Darrick J. Wong6d3eb1e2016-01-04 16:12:42 +11002019 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020done:
Darrick J. Wong60b49842016-10-03 09:11:34 -07002021 if (whichfork != XFS_COW_FORK)
2022 bma->logflags |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return error;
2024#undef LEFT
2025#undef RIGHT
2026#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027}
2028
2029/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002030 * Convert an unwritten allocation to a real allocation or vice versa.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 */
Christoph Hellwig26b91c72019-02-18 09:38:48 -08002032int /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033xfs_bmap_add_extent_unwritten_real(
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002034 struct xfs_trans *tp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 xfs_inode_t *ip, /* incore inode pointer */
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002036 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002037 struct xfs_iext_cursor *icur,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002039 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002040 int *logflagsp) /* inode logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 xfs_btree_cur_t *cur; /* btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 int i; /* temp state */
Christoph Hellwig3ba738d2018-07-17 16:51:50 -07002045 struct xfs_ifork *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 xfs_fileoff_t new_endoff; /* end offset of new entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
2048 /* left is 0, right is 1, prev is 2 */
2049 int rval=0; /* return value (logging flags) */
Christoph Hellwig060ea652017-10-19 11:02:29 -07002050 int state = xfs_bmap_fork_to_state(whichfork);
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002051 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002052 struct xfs_bmbt_irec old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002054 *logflagsp = 0;
2055
2056 cur = *curp;
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002057 ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002058
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002059 ASSERT(!isnullstartblock(new->br_startblock));
2060
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11002061 XFS_STATS_INC(mp, xs_add_exlist);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063#define LEFT r[0]
2064#define RIGHT r[1]
2065#define PREV r[2]
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 /*
2068 * Set up a bunch of variables to make the tests simpler.
2069 */
2070 error = 0;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002071 xfs_iext_get_extent(ifp, icur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002072 ASSERT(new->br_state != PREV.br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 new_endoff = new->br_startoff + new->br_blockcount;
2074 ASSERT(PREV.br_startoff <= new->br_startoff);
2075 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 /*
2078 * Set flags determining what part of the previous oldext allocation
2079 * extent is being replaced by a newext allocation.
2080 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002081 if (PREV.br_startoff == new->br_startoff)
2082 state |= BMAP_LEFT_FILLING;
2083 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
2084 state |= BMAP_RIGHT_FILLING;
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 /*
2087 * Check and set flags if this segment has a left neighbor.
2088 * Don't set contiguous if the combined extent would be too large.
2089 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002090 if (xfs_iext_peek_prev_extent(ifp, icur, &LEFT)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002091 state |= BMAP_LEFT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002092 if (isnullstartblock(LEFT.br_startblock))
2093 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002095
2096 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2097 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
2098 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002099 LEFT.br_state == new->br_state &&
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002100 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2101 state |= BMAP_LEFT_CONTIG;
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 /*
2104 * Check and set flags if this segment has a right neighbor.
2105 * Don't set contiguous if the combined extent would be too large.
2106 * Also check for all-three-contiguous being too large.
2107 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002108 if (xfs_iext_peek_next_extent(ifp, icur, &RIGHT)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002109 state |= BMAP_RIGHT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002110 if (isnullstartblock(RIGHT.br_startblock))
2111 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002113
2114 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2115 new_endoff == RIGHT.br_startoff &&
2116 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002117 new->br_state == RIGHT.br_state &&
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002118 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
2119 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2120 BMAP_RIGHT_FILLING)) !=
2121 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2122 BMAP_RIGHT_FILLING) ||
2123 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
2124 <= MAXEXTLEN))
2125 state |= BMAP_RIGHT_CONTIG;
2126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 /*
2128 * Switch out based on the FILLING and CONTIG state bits.
2129 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002130 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2131 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
2132 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2133 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 /*
2135 * Setting all of a previous oldext extent to newext.
2136 * The left and right neighbors are both contiguous with new.
2137 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002138 LEFT.br_blockcount += PREV.br_blockcount + RIGHT.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002139
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002140 xfs_iext_remove(ip, icur, state);
2141 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002142 xfs_iext_prev(ifp, icur);
2143 xfs_iext_update_extent(ip, state, icur, &LEFT);
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002144 XFS_IFORK_NEXT_SET(ip, whichfork,
2145 XFS_IFORK_NEXTENTS(ip, whichfork) - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 if (cur == NULL)
2147 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2148 else {
2149 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002150 error = xfs_bmbt_lookup_eq(cur, &RIGHT, &i);
2151 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002153 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002154 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002156 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002157 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002159 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002160 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002162 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002163 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002165 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002166 error = xfs_bmbt_update(cur, &LEFT);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002167 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 goto done;
2169 }
2170 break;
2171
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002172 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 /*
2174 * Setting all of a previous oldext extent to newext.
2175 * The left neighbor is contiguous, the right is not.
2176 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002177 LEFT.br_blockcount += PREV.br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002178
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002179 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002180 xfs_iext_prev(ifp, icur);
2181 xfs_iext_update_extent(ip, state, icur, &LEFT);
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002182 XFS_IFORK_NEXT_SET(ip, whichfork,
2183 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 if (cur == NULL)
2185 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2186 else {
2187 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002188 error = xfs_bmbt_lookup_eq(cur, &PREV, &i);
2189 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002191 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002192 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002194 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002195 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002197 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002198 error = xfs_bmbt_update(cur, &LEFT);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002199 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 goto done;
2201 }
2202 break;
2203
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002204 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 /*
2206 * Setting all of a previous oldext extent to newext.
2207 * The right neighbor is contiguous, the left is not.
2208 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002209 PREV.br_blockcount += RIGHT.br_blockcount;
2210 PREV.br_state = new->br_state;
Christoph Hellwiga6818472017-11-03 10:34:40 -07002211
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002212 xfs_iext_next(ifp, icur);
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002213 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002214 xfs_iext_prev(ifp, icur);
2215 xfs_iext_update_extent(ip, state, icur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002216
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002217 XFS_IFORK_NEXT_SET(ip, whichfork,
2218 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 if (cur == NULL)
2220 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2221 else {
2222 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002223 error = xfs_bmbt_lookup_eq(cur, &RIGHT, &i);
2224 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002226 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002227 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002229 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002230 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002232 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002233 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002234 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 goto done;
2236 }
2237 break;
2238
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002239 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 /*
2241 * Setting all of a previous oldext extent to newext.
2242 * Neither the left nor right neighbors are contiguous with
2243 * the new one.
2244 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002245 PREV.br_state = new->br_state;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002246 xfs_iext_update_extent(ip, state, icur, &PREV);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 if (cur == NULL)
2249 rval = XFS_ILOG_DEXT;
2250 else {
2251 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002252 error = xfs_bmbt_lookup_eq(cur, new, &i);
2253 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002255 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002256 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002257 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 goto done;
2259 }
2260 break;
2261
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002262 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 /*
2264 * Setting the first part of a previous oldext extent to newext.
2265 * The left neighbor is contiguous.
2266 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002267 LEFT.br_blockcount += new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002268
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002269 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002270 PREV.br_startoff += new->br_blockcount;
2271 PREV.br_startblock += new->br_blockcount;
2272 PREV.br_blockcount -= new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002273
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002274 xfs_iext_update_extent(ip, state, icur, &PREV);
2275 xfs_iext_prev(ifp, icur);
2276 xfs_iext_update_extent(ip, state, icur, &LEFT);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 if (cur == NULL)
2279 rval = XFS_ILOG_DEXT;
2280 else {
2281 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002282 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002283 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002285 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002286 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002287 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 goto done;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002289 error = xfs_btree_decrement(cur, 0, &i);
2290 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 goto done;
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002292 error = xfs_bmbt_update(cur, &LEFT);
Christoph Hellwigb0eab142011-09-18 20:41:06 +00002293 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 goto done;
2295 }
2296 break;
2297
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002298 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 /*
2300 * Setting the first part of a previous oldext extent to newext.
2301 * The left neighbor is not contiguous.
2302 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002303 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002304 PREV.br_startoff += new->br_blockcount;
2305 PREV.br_startblock += new->br_blockcount;
2306 PREV.br_blockcount -= new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002307
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002308 xfs_iext_update_extent(ip, state, icur, &PREV);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002309 xfs_iext_insert(ip, icur, new, state);
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002310 XFS_IFORK_NEXT_SET(ip, whichfork,
2311 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (cur == NULL)
2313 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2314 else {
2315 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002316 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002317 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002319 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002320 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002321 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 goto done;
2323 cur->bc_rec.b = *new;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002324 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002326 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328 break;
2329
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002330 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 /*
2332 * Setting the last part of a previous oldext extent to newext.
2333 * The right neighbor is contiguous with the new allocation.
2334 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002335 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002336 PREV.br_blockcount -= new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002337
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002338 RIGHT.br_startoff = new->br_startoff;
2339 RIGHT.br_startblock = new->br_startblock;
2340 RIGHT.br_blockcount += new->br_blockcount;
Christoph Hellwiga6818472017-11-03 10:34:40 -07002341
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002342 xfs_iext_update_extent(ip, state, icur, &PREV);
2343 xfs_iext_next(ifp, icur);
2344 xfs_iext_update_extent(ip, state, icur, &RIGHT);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 if (cur == NULL)
2347 rval = XFS_ILOG_DEXT;
2348 else {
2349 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002350 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002351 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002353 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002354 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002355 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 goto done;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002357 error = xfs_btree_increment(cur, 0, &i);
2358 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 goto done;
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002360 error = xfs_bmbt_update(cur, &RIGHT);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002361 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 goto done;
2363 }
2364 break;
2365
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002366 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 /*
2368 * Setting the last part of a previous oldext extent to newext.
2369 * The right neighbor is not contiguous.
2370 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002371 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002372 PREV.br_blockcount -= new->br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002373
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002374 xfs_iext_update_extent(ip, state, icur, &PREV);
2375 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002376 xfs_iext_insert(ip, icur, new, state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002377
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002378 XFS_IFORK_NEXT_SET(ip, whichfork,
2379 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 if (cur == NULL)
2381 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2382 else {
2383 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002384 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002385 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002387 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002388 error = xfs_bmbt_update(cur, &PREV);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002389 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 goto done;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002391 error = xfs_bmbt_lookup_eq(cur, new, &i);
2392 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002394 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002395 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002397 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
2399 break;
2400
2401 case 0:
2402 /*
2403 * Setting the middle part of a previous oldext extent to
2404 * newext. Contiguity is impossible here.
2405 * One extent becomes three extents.
2406 */
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002407 old = PREV;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002408 PREV.br_blockcount = new->br_startoff - PREV.br_startoff;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 r[0] = *new;
2411 r[1].br_startoff = new_endoff;
2412 r[1].br_blockcount =
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002413 old.br_startoff + old.br_blockcount - new_endoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 r[1].br_startblock = new->br_startblock + new->br_blockcount;
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002415 r[1].br_state = PREV.br_state;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002416
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002417 xfs_iext_update_extent(ip, state, icur, &PREV);
2418 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002419 xfs_iext_insert(ip, icur, &r[1], state);
2420 xfs_iext_insert(ip, icur, &r[0], state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002421
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002422 XFS_IFORK_NEXT_SET(ip, whichfork,
2423 XFS_IFORK_NEXTENTS(ip, whichfork) + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 if (cur == NULL)
2425 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2426 else {
2427 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002428 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwig79fa6142017-10-17 14:16:25 -07002429 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002431 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 /* new right extent - oldext */
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002433 error = xfs_bmbt_update(cur, &r[1]);
2434 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 goto done;
2436 /* new left extent - oldext */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 cur->bc_rec.b = PREV;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002438 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002440 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10002441 /*
2442 * Reset the cursor to the position of the new extent
2443 * we are about to insert as we can't trust it after
2444 * the previous insert.
2445 */
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002446 error = xfs_bmbt_lookup_eq(cur, new, &i);
2447 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002449 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 /* new middle extent - newext */
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002451 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002453 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 }
2455 break;
2456
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002457 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2458 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2459 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2460 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2461 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2462 case BMAP_LEFT_CONTIG:
2463 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 /*
2465 * These cases are all impossible.
2466 */
2467 ASSERT(0);
2468 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002469
Darrick J. Wong9c194642016-08-03 12:16:05 +10002470 /* update reverse mappings */
Darrick J. Wongbc46ac62019-08-26 17:06:03 -07002471 xfs_rmap_convert_extent(mp, tp, ip, whichfork, new);
Darrick J. Wong9c194642016-08-03 12:16:05 +10002472
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002473 /* convert to a btree if necessary */
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002474 if (xfs_bmap_needs_btree(ip, whichfork)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002475 int tmp_logflags; /* partial log flag return val */
2476
2477 ASSERT(cur == NULL);
Brian Foster280253d2018-07-11 22:26:29 -07002478 error = xfs_bmap_extents_to_btree(tp, ip, &cur, 0,
2479 &tmp_logflags, whichfork);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002480 *logflagsp |= tmp_logflags;
2481 if (error)
2482 goto done;
2483 }
2484
2485 /* clear out the allocated field, done with it now in any case. */
2486 if (cur) {
2487 cur->bc_private.b.allocated = 0;
2488 *curp = cur;
2489 }
2490
Darrick J. Wong05a630d2017-02-02 15:14:01 -08002491 xfs_bmap_check_leaf_extents(*curp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492done:
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002493 *logflagsp |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 return error;
2495#undef LEFT
2496#undef RIGHT
2497#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
2499
2500/*
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002501 * Convert a hole to a delayed allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 */
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002503STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504xfs_bmap_add_extent_hole_delay(
2505 xfs_inode_t *ip, /* incore inode pointer */
Darrick J. Wongbe51f812016-10-03 09:11:32 -07002506 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002507 struct xfs_iext_cursor *icur,
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002508 xfs_bmbt_irec_t *new) /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
Christoph Hellwig3ba738d2018-07-17 16:51:50 -07002510 struct xfs_ifork *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2512 xfs_filblks_t newlen=0; /* new indirect size */
2513 xfs_filblks_t oldlen=0; /* old indirect size */
2514 xfs_bmbt_irec_t right; /* right neighbor extent entry */
Christoph Hellwig060ea652017-10-19 11:02:29 -07002515 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwig3ffc18e2017-10-17 14:16:23 -07002516 xfs_filblks_t temp; /* temp for indirect calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Darrick J. Wongbe51f812016-10-03 09:11:32 -07002518 ifp = XFS_IFORK_PTR(ip, whichfork);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002519 ASSERT(isnullstartblock(new->br_startblock));
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 /*
2522 * Check and set flags if this segment has a left neighbor
2523 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002524 if (xfs_iext_peek_prev_extent(ifp, icur, &left)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002525 state |= BMAP_LEFT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002526 if (isnullstartblock(left.br_startblock))
2527 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 /*
2531 * Check and set flags if the current (right) segment exists.
2532 * If it doesn't exist, we're converting the hole at end-of-file.
2533 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002534 if (xfs_iext_get_extent(ifp, icur, &right)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002535 state |= BMAP_RIGHT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002536 if (isnullstartblock(right.br_startblock))
2537 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002539
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 /*
2541 * Set contiguity flags on the left and right neighbors.
2542 * Don't let extents get too large, even if the pieces are contiguous.
2543 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002544 if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) &&
2545 left.br_startoff + left.br_blockcount == new->br_startoff &&
2546 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2547 state |= BMAP_LEFT_CONTIG;
2548
2549 if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) &&
2550 new->br_startoff + new->br_blockcount == right.br_startoff &&
2551 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2552 (!(state & BMAP_LEFT_CONTIG) ||
2553 (left.br_blockcount + new->br_blockcount +
2554 right.br_blockcount <= MAXEXTLEN)))
2555 state |= BMAP_RIGHT_CONTIG;
2556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 /*
2558 * Switch out based on the contiguity flags.
2559 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002560 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2561 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 /*
2563 * New allocation is contiguous with delayed allocations
2564 * on the left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002565 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 */
2567 temp = left.br_blockcount + new->br_blockcount +
2568 right.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002569
Eric Sandeen9d87c312009-01-14 23:22:07 -06002570 oldlen = startblockval(left.br_startblock) +
2571 startblockval(new->br_startblock) +
2572 startblockval(right.br_startblock);
Brian Foster0e339ef2017-02-13 22:48:18 -08002573 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2574 oldlen);
Christoph Hellwig3ffc18e2017-10-17 14:16:23 -07002575 left.br_startblock = nullstartblock(newlen);
2576 left.br_blockcount = temp;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002577
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002578 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002579 xfs_iext_prev(ifp, icur);
2580 xfs_iext_update_extent(ip, state, icur, &left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 break;
2582
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002583 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 /*
2585 * New allocation is contiguous with a delayed allocation
2586 * on the left.
2587 * Merge the new allocation with the left neighbor.
2588 */
2589 temp = left.br_blockcount + new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002590
Eric Sandeen9d87c312009-01-14 23:22:07 -06002591 oldlen = startblockval(left.br_startblock) +
2592 startblockval(new->br_startblock);
Brian Foster0e339ef2017-02-13 22:48:18 -08002593 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2594 oldlen);
Christoph Hellwig3ffc18e2017-10-17 14:16:23 -07002595 left.br_blockcount = temp;
2596 left.br_startblock = nullstartblock(newlen);
Christoph Hellwig41d196f2017-11-03 10:34:39 -07002597
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002598 xfs_iext_prev(ifp, icur);
2599 xfs_iext_update_extent(ip, state, icur, &left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 break;
2601
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002602 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 /*
2604 * New allocation is contiguous with a delayed allocation
2605 * on the right.
2606 * Merge the new allocation with the right neighbor.
2607 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 temp = new->br_blockcount + right.br_blockcount;
Eric Sandeen9d87c312009-01-14 23:22:07 -06002609 oldlen = startblockval(new->br_startblock) +
2610 startblockval(right.br_startblock);
Brian Foster0e339ef2017-02-13 22:48:18 -08002611 newlen = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
2612 oldlen);
Christoph Hellwig3ffc18e2017-10-17 14:16:23 -07002613 right.br_startoff = new->br_startoff;
2614 right.br_startblock = nullstartblock(newlen);
2615 right.br_blockcount = temp;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002616 xfs_iext_update_extent(ip, state, icur, &right);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 break;
2618
2619 case 0:
2620 /*
2621 * New allocation is not contiguous with another
2622 * delayed allocation.
2623 * Insert a new entry.
2624 */
2625 oldlen = newlen = 0;
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002626 xfs_iext_insert(ip, icur, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 break;
2628 }
2629 if (oldlen != newlen) {
2630 ASSERT(oldlen > newlen);
Dave Chinner0d485ad2015-02-23 21:22:03 +11002631 xfs_mod_fdblocks(ip->i_mount, (int64_t)(oldlen - newlen),
2632 false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 /*
2634 * Nothing to do for disk quota accounting here.
2635 */
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07002636 xfs_mod_delalloc(ip->i_mount, (int64_t)newlen - oldlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
2640/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002641 * Convert a hole to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 */
2643STATIC int /* error */
2644xfs_bmap_add_extent_hole_real(
Christoph Hellwig6d045582017-04-11 16:45:54 -07002645 struct xfs_trans *tp,
2646 struct xfs_inode *ip,
2647 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002648 struct xfs_iext_cursor *icur,
Christoph Hellwig6d045582017-04-11 16:45:54 -07002649 struct xfs_btree_cur **curp,
2650 struct xfs_bmbt_irec *new,
Darrick J. Wong95eb3082018-05-09 10:02:32 -07002651 int *logflagsp,
2652 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653{
Christoph Hellwig6d045582017-04-11 16:45:54 -07002654 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
2655 struct xfs_mount *mp = ip->i_mount;
2656 struct xfs_btree_cur *cur = *curp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 int i; /* temp state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2660 xfs_bmbt_irec_t right; /* right neighbor extent entry */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002661 int rval=0; /* return value (logging flags) */
Christoph Hellwig060ea652017-10-19 11:02:29 -07002662 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002663 struct xfs_bmbt_irec old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002665 ASSERT(!isnullstartblock(new->br_startblock));
Christoph Hellwig6d045582017-04-11 16:45:54 -07002666 ASSERT(!cur || !(cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002667
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11002668 XFS_STATS_INC(mp, xs_add_exlist);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 /*
2671 * Check and set flags if this segment has a left neighbor.
2672 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002673 if (xfs_iext_peek_prev_extent(ifp, icur, &left)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002674 state |= BMAP_LEFT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002675 if (isnullstartblock(left.br_startblock))
2676 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 /*
2680 * Check and set flags if this segment has a current value.
2681 * Not true if we're inserting into the "hole" at eof.
2682 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002683 if (xfs_iext_get_extent(ifp, icur, &right)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002684 state |= BMAP_RIGHT_VALID;
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002685 if (isnullstartblock(right.br_startblock))
2686 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 /*
2690 * We're inserting a real allocation between "left" and "right".
2691 * Set the contiguity flags. Don't let extents get too large.
2692 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002693 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2694 left.br_startoff + left.br_blockcount == new->br_startoff &&
2695 left.br_startblock + left.br_blockcount == new->br_startblock &&
2696 left.br_state == new->br_state &&
2697 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2698 state |= BMAP_LEFT_CONTIG;
2699
2700 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2701 new->br_startoff + new->br_blockcount == right.br_startoff &&
2702 new->br_startblock + new->br_blockcount == right.br_startblock &&
2703 new->br_state == right.br_state &&
2704 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2705 (!(state & BMAP_LEFT_CONTIG) ||
2706 left.br_blockcount + new->br_blockcount +
2707 right.br_blockcount <= MAXEXTLEN))
2708 state |= BMAP_RIGHT_CONTIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002710 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 /*
2712 * Select which case we're in here, and implement it.
2713 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002714 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2715 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 /*
2717 * New allocation is contiguous with real allocations on the
2718 * left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002719 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 */
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002721 left.br_blockcount += new->br_blockcount + right.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002722
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07002723 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002724 xfs_iext_prev(ifp, icur);
2725 xfs_iext_update_extent(ip, state, icur, &left);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002726
Christoph Hellwig6d045582017-04-11 16:45:54 -07002727 XFS_IFORK_NEXT_SET(ip, whichfork,
2728 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
2729 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002730 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002731 } else {
2732 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002733 error = xfs_bmbt_lookup_eq(cur, &right, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002734 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002735 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002736 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002737 error = xfs_btree_delete(cur, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002738 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002739 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002740 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002741 error = xfs_btree_decrement(cur, 0, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002742 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002743 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002744 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002745 error = xfs_bmbt_update(cur, &left);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002746 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002747 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002749 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002751 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 /*
2753 * New allocation is contiguous with a real allocation
2754 * on the left.
2755 * Merge the new allocation with the left neighbor.
2756 */
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002757 old = left;
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002758 left.br_blockcount += new->br_blockcount;
Christoph Hellwig1d2e0082017-11-03 10:34:40 -07002759
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002760 xfs_iext_prev(ifp, icur);
2761 xfs_iext_update_extent(ip, state, icur, &left);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002762
Christoph Hellwig6d045582017-04-11 16:45:54 -07002763 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002764 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002765 } else {
2766 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002767 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002768 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002769 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002770 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002771 error = xfs_bmbt_update(cur, &left);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002772 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002773 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002775 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002777 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 /*
2779 * New allocation is contiguous with a real allocation
2780 * on the right.
2781 * Merge the new allocation with the right neighbor.
2782 */
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002783 old = right;
Christoph Hellwigca5d8e5b2017-10-19 11:04:44 -07002784
Christoph Hellwig1abb9e52017-10-17 14:16:24 -07002785 right.br_startoff = new->br_startoff;
2786 right.br_startblock = new->br_startblock;
2787 right.br_blockcount += new->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07002788 xfs_iext_update_extent(ip, state, icur, &right);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002789
Christoph Hellwig6d045582017-04-11 16:45:54 -07002790 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002791 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002792 } else {
2793 rval = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002794 error = xfs_bmbt_lookup_eq(cur, &old, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002795 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002796 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002797 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07002798 error = xfs_bmbt_update(cur, &right);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002799 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002800 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002802 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
2804 case 0:
2805 /*
2806 * New allocation is not contiguous with another
2807 * real allocation.
2808 * Insert a new entry.
2809 */
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07002810 xfs_iext_insert(ip, icur, new, state);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002811 XFS_IFORK_NEXT_SET(ip, whichfork,
2812 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
2813 if (cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002814 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002815 } else {
2816 rval = XFS_ILOG_CORE;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07002817 error = xfs_bmbt_lookup_eq(cur, new, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002818 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002819 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002820 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, done);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002821 error = xfs_btree_insert(cur, &i);
Christoph Hellwigc6534242011-09-18 20:41:05 +00002822 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002823 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11002824 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002826 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002828
Darrick J. Wong95eb3082018-05-09 10:02:32 -07002829 /* add reverse mapping unless caller opted out */
Darrick J. Wongbc46ac62019-08-26 17:06:03 -07002830 if (!(flags & XFS_BMAPI_NORMAP))
2831 xfs_rmap_map_extent(tp, ip, whichfork, new);
Darrick J. Wong9c194642016-08-03 12:16:05 +10002832
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002833 /* convert to a btree if necessary */
Christoph Hellwig6d045582017-04-11 16:45:54 -07002834 if (xfs_bmap_needs_btree(ip, whichfork)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002835 int tmp_logflags; /* partial log flag return val */
2836
Christoph Hellwig6d045582017-04-11 16:45:54 -07002837 ASSERT(cur == NULL);
Brian Foster280253d2018-07-11 22:26:29 -07002838 error = xfs_bmap_extents_to_btree(tp, ip, curp, 0,
2839 &tmp_logflags, whichfork);
Christoph Hellwig6d045582017-04-11 16:45:54 -07002840 *logflagsp |= tmp_logflags;
2841 cur = *curp;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002842 if (error)
2843 goto done;
2844 }
2845
2846 /* clear out the allocated field, done with it now in any case. */
Christoph Hellwig6d045582017-04-11 16:45:54 -07002847 if (cur)
2848 cur->bc_private.b.allocated = 0;
Christoph Hellwigc6534242011-09-18 20:41:05 +00002849
Christoph Hellwig6d045582017-04-11 16:45:54 -07002850 xfs_bmap_check_leaf_extents(cur, ip, whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002851done:
Christoph Hellwig6d045582017-04-11 16:45:54 -07002852 *logflagsp |= rval;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002853 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854}
2855
Nathan Scottdd9f4382006-01-11 15:28:28 +11002856/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11002857 * Functions used in the extent read, allocate and remove paths
2858 */
2859
2860/*
Nathan Scottdd9f4382006-01-11 15:28:28 +11002861 * Adjust the size of the new extent based on di_extsize and rt extsize.
2862 */
Dave Chinner68988112013-08-12 20:49:42 +10002863int
Nathan Scottdd9f4382006-01-11 15:28:28 +11002864xfs_bmap_extsize_align(
2865 xfs_mount_t *mp,
2866 xfs_bmbt_irec_t *gotp, /* next extent pointer */
2867 xfs_bmbt_irec_t *prevp, /* previous extent pointer */
2868 xfs_extlen_t extsz, /* align to this extent size */
2869 int rt, /* is this a realtime inode? */
2870 int eof, /* is extent at end-of-file? */
2871 int delay, /* creating delalloc extent? */
2872 int convert, /* overwriting unwritten extent? */
2873 xfs_fileoff_t *offp, /* in/out: aligned offset */
2874 xfs_extlen_t *lenp) /* in/out: aligned length */
2875{
2876 xfs_fileoff_t orig_off; /* original offset */
2877 xfs_extlen_t orig_alen; /* original length */
2878 xfs_fileoff_t orig_end; /* original off+len */
2879 xfs_fileoff_t nexto; /* next file offset */
2880 xfs_fileoff_t prevo; /* previous file offset */
2881 xfs_fileoff_t align_off; /* temp for offset */
2882 xfs_extlen_t align_alen; /* temp for length */
2883 xfs_extlen_t temp; /* temp for calculations */
2884
2885 if (convert)
2886 return 0;
2887
2888 orig_off = align_off = *offp;
2889 orig_alen = align_alen = *lenp;
2890 orig_end = orig_off + orig_alen;
2891
2892 /*
2893 * If this request overlaps an existing extent, then don't
2894 * attempt to perform any additional alignment.
2895 */
2896 if (!delay && !eof &&
2897 (orig_off >= gotp->br_startoff) &&
2898 (orig_end <= gotp->br_startoff + gotp->br_blockcount)) {
2899 return 0;
2900 }
2901
2902 /*
2903 * If the file offset is unaligned vs. the extent size
2904 * we need to align it. This will be possible unless
2905 * the file was previously written with a kernel that didn't
2906 * perform this alignment, or if a truncate shot us in the
2907 * foot.
2908 */
Dave Chinner0703a8e2018-06-08 09:54:22 -07002909 div_u64_rem(orig_off, extsz, &temp);
Nathan Scottdd9f4382006-01-11 15:28:28 +11002910 if (temp) {
2911 align_alen += temp;
2912 align_off -= temp;
2913 }
Dave Chinner6dea405e2015-05-29 07:40:06 +10002914
2915 /* Same adjustment for the end of the requested area. */
2916 temp = (align_alen % extsz);
2917 if (temp)
Nathan Scottdd9f4382006-01-11 15:28:28 +11002918 align_alen += extsz - temp;
Dave Chinner6dea405e2015-05-29 07:40:06 +10002919
2920 /*
2921 * For large extent hint sizes, the aligned extent might be larger than
2922 * MAXEXTLEN. In that case, reduce the size by an extsz so that it pulls
2923 * the length back under MAXEXTLEN. The outer allocation loops handle
2924 * short allocation just fine, so it is safe to do this. We only want to
2925 * do it when we are forced to, though, because it means more allocation
2926 * operations are required.
2927 */
2928 while (align_alen > MAXEXTLEN)
2929 align_alen -= extsz;
2930 ASSERT(align_alen <= MAXEXTLEN);
2931
Nathan Scottdd9f4382006-01-11 15:28:28 +11002932 /*
2933 * If the previous block overlaps with this proposed allocation
2934 * then move the start forward without adjusting the length.
2935 */
2936 if (prevp->br_startoff != NULLFILEOFF) {
2937 if (prevp->br_startblock == HOLESTARTBLOCK)
2938 prevo = prevp->br_startoff;
2939 else
2940 prevo = prevp->br_startoff + prevp->br_blockcount;
2941 } else
2942 prevo = 0;
2943 if (align_off != orig_off && align_off < prevo)
2944 align_off = prevo;
2945 /*
2946 * If the next block overlaps with this proposed allocation
2947 * then move the start back without adjusting the length,
2948 * but not before offset 0.
2949 * This may of course make the start overlap previous block,
2950 * and if we hit the offset 0 limit then the next block
2951 * can still overlap too.
2952 */
2953 if (!eof && gotp->br_startoff != NULLFILEOFF) {
2954 if ((delay && gotp->br_startblock == HOLESTARTBLOCK) ||
2955 (!delay && gotp->br_startblock == DELAYSTARTBLOCK))
2956 nexto = gotp->br_startoff + gotp->br_blockcount;
2957 else
2958 nexto = gotp->br_startoff;
2959 } else
2960 nexto = NULLFILEOFF;
2961 if (!eof &&
2962 align_off + align_alen != orig_end &&
2963 align_off + align_alen > nexto)
2964 align_off = nexto > align_alen ? nexto - align_alen : 0;
2965 /*
2966 * If we're now overlapping the next or previous extent that
2967 * means we can't fit an extsz piece in this hole. Just move
2968 * the start forward to the first valid spot and set
2969 * the length so we hit the end.
2970 */
2971 if (align_off != orig_off && align_off < prevo)
2972 align_off = prevo;
2973 if (align_off + align_alen != orig_end &&
2974 align_off + align_alen > nexto &&
2975 nexto != NULLFILEOFF) {
2976 ASSERT(nexto > prevo);
2977 align_alen = nexto - align_off;
2978 }
2979
2980 /*
2981 * If realtime, and the result isn't a multiple of the realtime
2982 * extent size we need to remove blocks until it is.
2983 */
2984 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
2985 /*
2986 * We're not covering the original request, or
2987 * we won't be able to once we fix the length.
2988 */
2989 if (orig_off < align_off ||
2990 orig_end > align_off + align_alen ||
2991 align_alen - temp < orig_alen)
Dave Chinner24513372014-06-25 14:58:08 +10002992 return -EINVAL;
Nathan Scottdd9f4382006-01-11 15:28:28 +11002993 /*
2994 * Try to fix it by moving the start up.
2995 */
2996 if (align_off + temp <= orig_off) {
2997 align_alen -= temp;
2998 align_off += temp;
2999 }
3000 /*
3001 * Try to fix it by moving the end in.
3002 */
3003 else if (align_off + align_alen - temp >= orig_end)
3004 align_alen -= temp;
3005 /*
3006 * Set the start to the minimum then trim the length.
3007 */
3008 else {
3009 align_alen -= orig_off - align_off;
3010 align_off = orig_off;
3011 align_alen -= align_alen % mp->m_sb.sb_rextsize;
3012 }
3013 /*
3014 * Result doesn't cover the request, fail it.
3015 */
3016 if (orig_off < align_off || orig_end > align_off + align_alen)
Dave Chinner24513372014-06-25 14:58:08 +10003017 return -EINVAL;
Nathan Scottdd9f4382006-01-11 15:28:28 +11003018 } else {
3019 ASSERT(orig_off >= align_off);
Dave Chinner6dea405e2015-05-29 07:40:06 +10003020 /* see MAXEXTLEN handling above */
3021 ASSERT(orig_end <= align_off + align_alen ||
3022 align_alen + extsz > MAXEXTLEN);
Nathan Scottdd9f4382006-01-11 15:28:28 +11003023 }
3024
3025#ifdef DEBUG
3026 if (!eof && gotp->br_startoff != NULLFILEOFF)
3027 ASSERT(align_off + align_alen <= gotp->br_startoff);
3028 if (prevp->br_startoff != NULLFILEOFF)
3029 ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount);
3030#endif
3031
3032 *lenp = align_alen;
3033 *offp = align_off;
3034 return 0;
3035}
3036
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037#define XFS_ALLOC_GAP_UNITS 4
3038
Dave Chinner68988112013-08-12 20:49:42 +10003039void
Nathan Scotta365bdd2006-03-14 13:34:16 +11003040xfs_bmap_adjacent(
Dave Chinner68988112013-08-12 20:49:42 +10003041 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042{
3043 xfs_fsblock_t adjust; /* adjustment to block numbers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3045 xfs_mount_t *mp; /* mount point structure */
3046 int nullfb; /* true if ap->firstblock isn't set */
3047 int rt; /* true if inode is realtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
3049#define ISVALID(x,y) \
3050 (rt ? \
3051 (x) < mp->m_sb.sb_rblocks : \
3052 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
3053 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
3054 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
3055
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 mp = ap->ip->i_mount;
Brian Foster94c07b42018-07-11 22:26:28 -07003057 nullfb = ap->tp->t_firstblock == NULLFSBLOCK;
Dave Chinner292378e2016-09-26 08:21:28 +10003058 rt = XFS_IS_REALTIME_INODE(ap->ip) &&
3059 xfs_alloc_is_userdata(ap->datatype);
Brian Foster94c07b42018-07-11 22:26:28 -07003060 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp,
3061 ap->tp->t_firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 /*
3063 * If allocating at eof, and there's a previous real block,
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003064 * try to use its last block as our starting point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003066 if (ap->eof && ap->prev.br_startoff != NULLFILEOFF &&
3067 !isnullstartblock(ap->prev.br_startblock) &&
3068 ISVALID(ap->prev.br_startblock + ap->prev.br_blockcount,
3069 ap->prev.br_startblock)) {
Dave Chinner3a756672011-09-18 20:40:58 +00003070 ap->blkno = ap->prev.br_startblock + ap->prev.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 /*
3072 * Adjust for the gap between prevp and us.
3073 */
Dave Chinner3a756672011-09-18 20:40:58 +00003074 adjust = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003075 (ap->prev.br_startoff + ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 if (adjust &&
Dave Chinner3a756672011-09-18 20:40:58 +00003077 ISVALID(ap->blkno + adjust, ap->prev.br_startblock))
3078 ap->blkno += adjust;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 }
3080 /*
3081 * If not at eof, then compare the two neighbor blocks.
3082 * Figure out whether either one gives us a good starting point,
3083 * and pick the better one.
3084 */
3085 else if (!ap->eof) {
3086 xfs_fsblock_t gotbno; /* right side block number */
3087 xfs_fsblock_t gotdiff=0; /* right side difference */
3088 xfs_fsblock_t prevbno; /* left side block number */
3089 xfs_fsblock_t prevdiff=0; /* left side difference */
3090
3091 /*
3092 * If there's a previous (left) block, select a requested
3093 * start block based on it.
3094 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003095 if (ap->prev.br_startoff != NULLFILEOFF &&
3096 !isnullstartblock(ap->prev.br_startblock) &&
3097 (prevbno = ap->prev.br_startblock +
3098 ap->prev.br_blockcount) &&
3099 ISVALID(prevbno, ap->prev.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 /*
3101 * Calculate gap to end of previous block.
3102 */
Dave Chinner3a756672011-09-18 20:40:58 +00003103 adjust = prevdiff = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003104 (ap->prev.br_startoff +
3105 ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 /*
3107 * Figure the startblock based on the previous block's
3108 * end and the gap size.
3109 * Heuristic!
3110 * If the gap is large relative to the piece we're
3111 * allocating, or using it gives us an invalid block
3112 * number, then just use the end of the previous block.
3113 */
Dave Chinner3a756672011-09-18 20:40:58 +00003114 if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 ISVALID(prevbno + prevdiff,
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003116 ap->prev.br_startblock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 prevbno += adjust;
3118 else
3119 prevdiff += adjust;
3120 /*
3121 * If the firstblock forbids it, can't use it,
3122 * must use default.
3123 */
3124 if (!rt && !nullfb &&
3125 XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno)
3126 prevbno = NULLFSBLOCK;
3127 }
3128 /*
3129 * No previous block or can't follow it, just default.
3130 */
3131 else
3132 prevbno = NULLFSBLOCK;
3133 /*
3134 * If there's a following (right) block, select a requested
3135 * start block based on it.
3136 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003137 if (!isnullstartblock(ap->got.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 /*
3139 * Calculate gap to start of next block.
3140 */
Dave Chinner3a756672011-09-18 20:40:58 +00003141 adjust = gotdiff = ap->got.br_startoff - ap->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 /*
3143 * Figure the startblock based on the next block's
3144 * start and the gap size.
3145 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003146 gotbno = ap->got.br_startblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 /*
3148 * Heuristic!
3149 * If the gap is large relative to the piece we're
3150 * allocating, or using it gives us an invalid block
3151 * number, then just use the start of the next block
3152 * offset by our length.
3153 */
Dave Chinner3a756672011-09-18 20:40:58 +00003154 if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 ISVALID(gotbno - gotdiff, gotbno))
3156 gotbno -= adjust;
Dave Chinner3a756672011-09-18 20:40:58 +00003157 else if (ISVALID(gotbno - ap->length, gotbno)) {
3158 gotbno -= ap->length;
3159 gotdiff += adjust - ap->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 } else
3161 gotdiff += adjust;
3162 /*
3163 * If the firstblock forbids it, can't use it,
3164 * must use default.
3165 */
3166 if (!rt && !nullfb &&
3167 XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno)
3168 gotbno = NULLFSBLOCK;
3169 }
3170 /*
3171 * No next block, just default.
3172 */
3173 else
3174 gotbno = NULLFSBLOCK;
3175 /*
3176 * If both valid, pick the better one, else the only good
Dave Chinner3a756672011-09-18 20:40:58 +00003177 * one, else ap->blkno is already set (to 0 or the inode block).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 */
3179 if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003180 ap->blkno = prevdiff <= gotdiff ? prevbno : gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 else if (prevbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003182 ap->blkno = prevbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 else if (gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003184 ap->blkno = gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 }
Nathan Scotta365bdd2006-03-14 13:34:16 +11003186#undef ISVALID
Nathan Scotta365bdd2006-03-14 13:34:16 +11003187}
3188
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003189static int
3190xfs_bmap_longest_free_extent(
3191 struct xfs_trans *tp,
3192 xfs_agnumber_t ag,
3193 xfs_extlen_t *blen,
3194 int *notinit)
3195{
3196 struct xfs_mount *mp = tp->t_mountp;
3197 struct xfs_perag *pag;
3198 xfs_extlen_t longest;
3199 int error = 0;
3200
3201 pag = xfs_perag_get(mp, ag);
3202 if (!pag->pagf_init) {
3203 error = xfs_alloc_pagf_init(mp, tp, ag, XFS_ALLOC_FLAG_TRYLOCK);
3204 if (error)
3205 goto out;
3206
3207 if (!pag->pagf_init) {
3208 *notinit = 1;
3209 goto out;
3210 }
3211 }
3212
Eric Sandeena1f69412018-04-06 10:09:42 -07003213 longest = xfs_alloc_longest_free_extent(pag,
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10003214 xfs_alloc_min_freelist(mp, pag),
3215 xfs_ag_resv_needed(pag, XFS_AG_RESV_NONE));
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003216 if (*blen < longest)
3217 *blen = longest;
3218
3219out:
3220 xfs_perag_put(pag);
3221 return error;
3222}
3223
3224static void
3225xfs_bmap_select_minlen(
3226 struct xfs_bmalloca *ap,
3227 struct xfs_alloc_arg *args,
3228 xfs_extlen_t *blen,
3229 int notinit)
3230{
3231 if (notinit || *blen < ap->minlen) {
3232 /*
3233 * Since we did a BUF_TRYLOCK above, it is possible that
3234 * there is space for this request.
3235 */
3236 args->minlen = ap->minlen;
3237 } else if (*blen < args->maxlen) {
3238 /*
3239 * If the best seen length is less than the request length,
3240 * use the best as the minimum.
3241 */
3242 args->minlen = *blen;
3243 } else {
3244 /*
3245 * Otherwise we've seen an extent as big as maxlen, use that
3246 * as the minimum.
3247 */
3248 args->minlen = args->maxlen;
3249 }
3250}
3251
Nathan Scotta365bdd2006-03-14 13:34:16 +11003252STATIC int
Christoph Hellwigc467c042010-02-15 23:34:42 +00003253xfs_bmap_btalloc_nullfb(
3254 struct xfs_bmalloca *ap,
3255 struct xfs_alloc_arg *args,
3256 xfs_extlen_t *blen)
3257{
3258 struct xfs_mount *mp = ap->ip->i_mount;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003259 xfs_agnumber_t ag, startag;
3260 int notinit = 0;
3261 int error;
3262
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003263 args->type = XFS_ALLOCTYPE_START_BNO;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003264 args->total = ap->total;
3265
Christoph Hellwigc467c042010-02-15 23:34:42 +00003266 startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3267 if (startag == NULLAGNUMBER)
3268 startag = ag = 0;
3269
Dave Chinner14b064c2011-01-27 12:16:28 +11003270 while (*blen < args->maxlen) {
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003271 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3272 &notinit);
3273 if (error)
3274 return error;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003275
Christoph Hellwigc467c042010-02-15 23:34:42 +00003276 if (++ag == mp->m_sb.sb_agcount)
3277 ag = 0;
3278 if (ag == startag)
3279 break;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003280 }
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003281
3282 xfs_bmap_select_minlen(ap, args, blen, notinit);
3283 return 0;
3284}
3285
3286STATIC int
3287xfs_bmap_btalloc_filestreams(
3288 struct xfs_bmalloca *ap,
3289 struct xfs_alloc_arg *args,
3290 xfs_extlen_t *blen)
3291{
3292 struct xfs_mount *mp = ap->ip->i_mount;
3293 xfs_agnumber_t ag;
3294 int notinit = 0;
3295 int error;
3296
3297 args->type = XFS_ALLOCTYPE_NEAR_BNO;
3298 args->total = ap->total;
3299
3300 ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3301 if (ag == NULLAGNUMBER)
3302 ag = 0;
3303
3304 error = xfs_bmap_longest_free_extent(args->tp, ag, blen, &notinit);
3305 if (error)
3306 return error;
3307
3308 if (*blen < args->maxlen) {
3309 error = xfs_filestream_new_ag(ap, &ag);
3310 if (error)
3311 return error;
3312
3313 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3314 &notinit);
3315 if (error)
3316 return error;
3317
3318 }
3319
3320 xfs_bmap_select_minlen(ap, args, blen, notinit);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003321
3322 /*
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003323 * Set the failure fallback case to look in the selected AG as stream
3324 * may have moved.
Christoph Hellwigc467c042010-02-15 23:34:42 +00003325 */
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003326 ap->blkno = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003327 return 0;
3328}
3329
Darrick J. Wong751f3762018-01-25 13:58:13 -08003330/* Update all inode and quota accounting for the allocation we just did. */
3331static void
3332xfs_bmap_btalloc_accounting(
3333 struct xfs_bmalloca *ap,
3334 struct xfs_alloc_arg *args)
3335{
Darrick J. Wong4b4c1322018-01-19 09:05:48 -08003336 if (ap->flags & XFS_BMAPI_COWFORK) {
3337 /*
3338 * COW fork blocks are in-core only and thus are treated as
3339 * in-core quota reservation (like delalloc blocks) even when
3340 * converted to real blocks. The quota reservation is not
3341 * accounted to disk until blocks are remapped to the data
3342 * fork. So if these blocks were previously delalloc, we
3343 * already have quota reservation and there's nothing to do
3344 * yet.
3345 */
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07003346 if (ap->wasdel) {
3347 xfs_mod_delalloc(ap->ip->i_mount, -(int64_t)args->len);
Darrick J. Wong4b4c1322018-01-19 09:05:48 -08003348 return;
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07003349 }
Darrick J. Wong4b4c1322018-01-19 09:05:48 -08003350
3351 /*
3352 * Otherwise, we've allocated blocks in a hole. The transaction
3353 * has acquired in-core quota reservation for this extent.
3354 * Rather than account these as real blocks, however, we reduce
3355 * the transaction quota reservation based on the allocation.
3356 * This essentially transfers the transaction quota reservation
3357 * to that of a delalloc extent.
3358 */
3359 ap->ip->i_delayed_blks += args->len;
3360 xfs_trans_mod_dquot_byino(ap->tp, ap->ip, XFS_TRANS_DQ_RES_BLKS,
3361 -(long)args->len);
3362 return;
3363 }
3364
3365 /* data/attr fork only */
3366 ap->ip->i_d.di_nblocks += args->len;
Darrick J. Wong751f3762018-01-25 13:58:13 -08003367 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07003368 if (ap->wasdel) {
Darrick J. Wong751f3762018-01-25 13:58:13 -08003369 ap->ip->i_delayed_blks -= args->len;
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07003370 xfs_mod_delalloc(ap->ip->i_mount, -(int64_t)args->len);
3371 }
Darrick J. Wong751f3762018-01-25 13:58:13 -08003372 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
3373 ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT : XFS_TRANS_DQ_BCOUNT,
3374 args->len);
3375}
3376
Christoph Hellwigc467c042010-02-15 23:34:42 +00003377STATIC int
Nathan Scotta365bdd2006-03-14 13:34:16 +11003378xfs_bmap_btalloc(
Dave Chinner68988112013-08-12 20:49:42 +10003379 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003380{
3381 xfs_mount_t *mp; /* mount point structure */
3382 xfs_alloctype_t atype = 0; /* type for allocation routines */
Dave Chinner292378e2016-09-26 08:21:28 +10003383 xfs_extlen_t align = 0; /* minimum allocation alignment */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003384 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
Christoph Hellwigc467c042010-02-15 23:34:42 +00003385 xfs_agnumber_t ag;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003386 xfs_alloc_arg_t args;
Darrick J. Wong6d8a45c2018-01-19 17:47:36 -08003387 xfs_fileoff_t orig_offset;
3388 xfs_extlen_t orig_length;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003389 xfs_extlen_t blen;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003390 xfs_extlen_t nextminlen = 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003391 int nullfb; /* true if ap->firstblock isn't set */
3392 int isaligned;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003393 int tryagain;
3394 int error;
Dave Chinner33177f052013-12-12 16:34:36 +11003395 int stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003396
Dave Chinnera99ebf42011-12-01 11:24:20 +00003397 ASSERT(ap->length);
Darrick J. Wong6d8a45c2018-01-19 17:47:36 -08003398 orig_offset = ap->offset;
3399 orig_length = ap->length;
Dave Chinnera99ebf42011-12-01 11:24:20 +00003400
Nathan Scotta365bdd2006-03-14 13:34:16 +11003401 mp = ap->ip->i_mount;
Dave Chinner33177f052013-12-12 16:34:36 +11003402
3403 /* stripe alignment for allocation is determined by mount parameters */
3404 stripe_align = 0;
3405 if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC))
3406 stripe_align = mp->m_swidth;
3407 else if (mp->m_dalign)
3408 stripe_align = mp->m_dalign;
3409
Darrick J. Wongf7ca3522016-10-03 09:11:43 -07003410 if (ap->flags & XFS_BMAPI_COWFORK)
3411 align = xfs_get_cowextsz_hint(ap->ip);
3412 else if (xfs_alloc_is_userdata(ap->datatype))
Dave Chinner292378e2016-09-26 08:21:28 +10003413 align = xfs_get_extsz_hint(ap->ip);
Christoph Hellwig493611e2017-01-25 08:59:43 -08003414 if (align) {
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003415 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
Nathan Scotta365bdd2006-03-14 13:34:16 +11003416 align, 0, ap->eof, 0, ap->conv,
Dave Chinner3a756672011-09-18 20:40:58 +00003417 &ap->offset, &ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003418 ASSERT(!error);
Dave Chinner3a756672011-09-18 20:40:58 +00003419 ASSERT(ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003420 }
Dave Chinner33177f052013-12-12 16:34:36 +11003421
3422
Brian Foster94c07b42018-07-11 22:26:28 -07003423 nullfb = ap->tp->t_firstblock == NULLFSBLOCK;
3424 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp,
3425 ap->tp->t_firstblock);
David Chinner2a82b8b2007-07-11 11:09:12 +10003426 if (nullfb) {
Dave Chinner292378e2016-09-26 08:21:28 +10003427 if (xfs_alloc_is_userdata(ap->datatype) &&
3428 xfs_inode_is_filestream(ap->ip)) {
David Chinner2a82b8b2007-07-11 11:09:12 +10003429 ag = xfs_filestream_lookup_ag(ap->ip);
3430 ag = (ag != NULLAGNUMBER) ? ag : 0;
Dave Chinner3a756672011-09-18 20:40:58 +00003431 ap->blkno = XFS_AGB_TO_FSB(mp, ag, 0);
David Chinner2a82b8b2007-07-11 11:09:12 +10003432 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00003433 ap->blkno = XFS_INO_TO_FSB(mp, ap->ip->i_ino);
David Chinner2a82b8b2007-07-11 11:09:12 +10003434 }
3435 } else
Brian Foster94c07b42018-07-11 22:26:28 -07003436 ap->blkno = ap->tp->t_firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003437
3438 xfs_bmap_adjacent(ap);
3439
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 /*
Dave Chinner3a756672011-09-18 20:40:58 +00003441 * If allowed, use ap->blkno; otherwise must use firstblock since
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 * it's in the right allocation group.
3443 */
Dave Chinner3a756672011-09-18 20:40:58 +00003444 if (nullfb || XFS_FSB_TO_AGNO(mp, ap->blkno) == fb_agno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 ;
3446 else
Brian Foster94c07b42018-07-11 22:26:28 -07003447 ap->blkno = ap->tp->t_firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 * Normal allocation, done through xfs_alloc_vextent.
3450 */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003451 tryagain = isaligned = 0;
Mark Tinguelya0041682012-09-20 13:16:45 -05003452 memset(&args, 0, sizeof(args));
Nathan Scotta365bdd2006-03-14 13:34:16 +11003453 args.tp = ap->tp;
3454 args.mp = mp;
Dave Chinner3a756672011-09-18 20:40:58 +00003455 args.fsbno = ap->blkno;
Darrick J. Wong7280fed2018-12-12 08:46:23 -08003456 args.oinfo = XFS_RMAP_OINFO_SKIP_UPDATE;
Dave Chinner14b064c2011-01-27 12:16:28 +11003457
3458 /* Trim the allocation back to the maximum an AG can fit. */
Dave Chinner9bb54cb2018-06-07 07:54:02 -07003459 args.maxlen = min(ap->length, mp->m_ag_max_usable);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003460 blen = 0;
3461 if (nullfb) {
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003462 /*
3463 * Search for an allocation group with a single extent large
3464 * enough for the request. If one isn't found, then adjust
3465 * the minimum allocation size to the largest space found.
3466 */
Dave Chinner292378e2016-09-26 08:21:28 +10003467 if (xfs_alloc_is_userdata(ap->datatype) &&
3468 xfs_inode_is_filestream(ap->ip))
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003469 error = xfs_bmap_btalloc_filestreams(ap, &args, &blen);
3470 else
3471 error = xfs_bmap_btalloc_nullfb(ap, &args, &blen);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003472 if (error)
3473 return error;
Brian Foster1214f1c2018-08-01 07:20:31 -07003474 } else if (ap->tp->t_flags & XFS_TRANS_LOWMODE) {
David Chinner2a82b8b2007-07-11 11:09:12 +10003475 if (xfs_inode_is_filestream(ap->ip))
3476 args.type = XFS_ALLOCTYPE_FIRST_AG;
3477 else
3478 args.type = XFS_ALLOCTYPE_START_BNO;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003479 args.total = args.minlen = ap->minlen;
3480 } else {
3481 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3482 args.total = ap->total;
3483 args.minlen = ap->minlen;
3484 }
David Chinner957d0eb2007-06-18 16:50:37 +10003485 /* apply extent size hints if obtained earlier */
Christoph Hellwig493611e2017-01-25 08:59:43 -08003486 if (align) {
David Chinner957d0eb2007-06-18 16:50:37 +10003487 args.prod = align;
Dave Chinner0703a8e2018-06-08 09:54:22 -07003488 div_u64_rem(ap->offset, args.prod, &args.mod);
3489 if (args.mod)
3490 args.mod = args.prod - args.mod;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003491 } else if (mp->m_sb.sb_blocksize >= PAGE_SIZE) {
Nathan Scotta365bdd2006-03-14 13:34:16 +11003492 args.prod = 1;
3493 args.mod = 0;
3494 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003495 args.prod = PAGE_SIZE >> mp->m_sb.sb_blocklog;
Dave Chinner0703a8e2018-06-08 09:54:22 -07003496 div_u64_rem(ap->offset, args.prod, &args.mod);
3497 if (args.mod)
3498 args.mod = args.prod - args.mod;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003499 }
3500 /*
3501 * If we are not low on available data blocks, and the
3502 * underlying logical volume manager is a stripe, and
3503 * the file offset is zero then try to allocate data
3504 * blocks on stripe unit boundary.
3505 * NOTE: ap->aeof is only set if the allocation length
3506 * is >= the stripe unit and the allocation offset is
3507 * at the end of file.
3508 */
Brian Foster1214f1c2018-08-01 07:20:31 -07003509 if (!(ap->tp->t_flags & XFS_TRANS_LOWMODE) && ap->aeof) {
Dave Chinner3a756672011-09-18 20:40:58 +00003510 if (!ap->offset) {
Dave Chinner33177f052013-12-12 16:34:36 +11003511 args.alignment = stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003512 atype = args.type;
3513 isaligned = 1;
3514 /*
3515 * Adjust for alignment
3516 */
Dave Chinner14b064c2011-01-27 12:16:28 +11003517 if (blen > args.alignment && blen <= args.maxlen)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003518 args.minlen = blen - args.alignment;
3519 args.minalignslop = 0;
3520 } else {
3521 /*
3522 * First try an exact bno allocation.
3523 * If it fails then do a near or start bno
3524 * allocation with alignment turned on.
3525 */
3526 atype = args.type;
3527 tryagain = 1;
3528 args.type = XFS_ALLOCTYPE_THIS_BNO;
3529 args.alignment = 1;
3530 /*
3531 * Compute the minlen+alignment for the
3532 * next case. Set slop so that the value
3533 * of minlen+alignment+slop doesn't go up
3534 * between the calls.
3535 */
Dave Chinner33177f052013-12-12 16:34:36 +11003536 if (blen > stripe_align && blen <= args.maxlen)
3537 nextminlen = blen - stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003538 else
3539 nextminlen = args.minlen;
Dave Chinner33177f052013-12-12 16:34:36 +11003540 if (nextminlen + stripe_align > args.minlen + 1)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003541 args.minalignslop =
Dave Chinner33177f052013-12-12 16:34:36 +11003542 nextminlen + stripe_align -
Nathan Scotta365bdd2006-03-14 13:34:16 +11003543 args.minlen - 1;
3544 else
3545 args.minalignslop = 0;
3546 }
3547 } else {
3548 args.alignment = 1;
3549 args.minalignslop = 0;
3550 }
3551 args.minleft = ap->minleft;
3552 args.wasdel = ap->wasdel;
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10003553 args.resv = XFS_AG_RESV_NONE;
Dave Chinner292378e2016-09-26 08:21:28 +10003554 args.datatype = ap->datatype;
3555 if (ap->datatype & XFS_ALLOC_USERDATA_ZERO)
Dave Chinner3fbbbea2015-11-03 12:27:22 +11003556 args.ip = ap->ip;
3557
3558 error = xfs_alloc_vextent(&args);
3559 if (error)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003560 return error;
Dave Chinner3fbbbea2015-11-03 12:27:22 +11003561
Nathan Scotta365bdd2006-03-14 13:34:16 +11003562 if (tryagain && args.fsbno == NULLFSBLOCK) {
3563 /*
3564 * Exact allocation failed. Now try with alignment
3565 * turned on.
3566 */
3567 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00003568 args.fsbno = ap->blkno;
Dave Chinner33177f052013-12-12 16:34:36 +11003569 args.alignment = stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003570 args.minlen = nextminlen;
3571 args.minalignslop = 0;
3572 isaligned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 if ((error = xfs_alloc_vextent(&args)))
3574 return error;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003575 }
3576 if (isaligned && args.fsbno == NULLFSBLOCK) {
3577 /*
3578 * allocation failed, so turn off alignment and
3579 * try again.
3580 */
3581 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00003582 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003583 args.alignment = 0;
3584 if ((error = xfs_alloc_vextent(&args)))
3585 return error;
3586 }
3587 if (args.fsbno == NULLFSBLOCK && nullfb &&
3588 args.minlen > ap->minlen) {
3589 args.minlen = ap->minlen;
3590 args.type = XFS_ALLOCTYPE_START_BNO;
Dave Chinner3a756672011-09-18 20:40:58 +00003591 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003592 if ((error = xfs_alloc_vextent(&args)))
3593 return error;
3594 }
3595 if (args.fsbno == NULLFSBLOCK && nullfb) {
3596 args.fsbno = 0;
3597 args.type = XFS_ALLOCTYPE_FIRST_AG;
3598 args.total = ap->minlen;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003599 if ((error = xfs_alloc_vextent(&args)))
3600 return error;
Brian Foster1214f1c2018-08-01 07:20:31 -07003601 ap->tp->t_flags |= XFS_TRANS_LOWMODE;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003602 }
3603 if (args.fsbno != NULLFSBLOCK) {
Dave Chinner0937e0f2011-09-18 20:40:57 +00003604 /*
3605 * check the allocation happened at the same or higher AG than
3606 * the first block that was allocated.
3607 */
Brian Foster94c07b42018-07-11 22:26:28 -07003608 ASSERT(ap->tp->t_firstblock == NULLFSBLOCK ||
3609 XFS_FSB_TO_AGNO(mp, ap->tp->t_firstblock) <=
Christoph Hellwig410d17f2017-02-16 17:12:51 -08003610 XFS_FSB_TO_AGNO(mp, args.fsbno));
Dave Chinner0937e0f2011-09-18 20:40:57 +00003611
Dave Chinner3a756672011-09-18 20:40:58 +00003612 ap->blkno = args.fsbno;
Brian Foster94c07b42018-07-11 22:26:28 -07003613 if (ap->tp->t_firstblock == NULLFSBLOCK)
3614 ap->tp->t_firstblock = args.fsbno;
Christoph Hellwig410d17f2017-02-16 17:12:51 -08003615 ASSERT(nullfb || fb_agno <= args.agno);
Dave Chinner3a756672011-09-18 20:40:58 +00003616 ap->length = args.len;
Darrick J. Wong6d8a45c2018-01-19 17:47:36 -08003617 /*
3618 * If the extent size hint is active, we tried to round the
3619 * caller's allocation request offset down to extsz and the
3620 * length up to another extsz boundary. If we found a free
3621 * extent we mapped it in starting at this new offset. If the
3622 * newly mapped space isn't long enough to cover any of the
3623 * range of offsets that was originally requested, move the
3624 * mapping up so that we can fill as much of the caller's
3625 * original request as possible. Free space is apparently
3626 * very fragmented so we're unlikely to be able to satisfy the
3627 * hints anyway.
3628 */
3629 if (ap->length <= orig_length)
3630 ap->offset = orig_offset;
3631 else if (ap->offset + ap->length < orig_offset + orig_length)
3632 ap->offset = orig_offset + orig_length - ap->length;
Darrick J. Wong751f3762018-01-25 13:58:13 -08003633 xfs_bmap_btalloc_accounting(ap, &args);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003634 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00003635 ap->blkno = NULLFSBLOCK;
3636 ap->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 }
3638 return 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003639}
3640
3641/*
3642 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
3643 * It figures out where to ask the underlying allocator to put the new extent.
3644 */
3645STATIC int
3646xfs_bmap_alloc(
Dave Chinner68988112013-08-12 20:49:42 +10003647 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003648{
Dave Chinner292378e2016-09-26 08:21:28 +10003649 if (XFS_IS_REALTIME_INODE(ap->ip) &&
3650 xfs_alloc_is_userdata(ap->datatype))
Nathan Scotta365bdd2006-03-14 13:34:16 +11003651 return xfs_bmap_rtalloc(ap);
3652 return xfs_bmap_btalloc(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653}
3654
Darrick J. Wong0a0af282016-10-20 15:51:50 +11003655/* Trim extent to fit a logical block range. */
3656void
3657xfs_trim_extent(
3658 struct xfs_bmbt_irec *irec,
3659 xfs_fileoff_t bno,
3660 xfs_filblks_t len)
3661{
3662 xfs_fileoff_t distance;
3663 xfs_fileoff_t end = bno + len;
3664
3665 if (irec->br_startoff + irec->br_blockcount <= bno ||
3666 irec->br_startoff >= end) {
3667 irec->br_blockcount = 0;
3668 return;
3669 }
3670
3671 if (irec->br_startoff < bno) {
3672 distance = bno - irec->br_startoff;
3673 if (isnullstartblock(irec->br_startblock))
3674 irec->br_startblock = DELAYSTARTBLOCK;
3675 if (irec->br_startblock != DELAYSTARTBLOCK &&
3676 irec->br_startblock != HOLESTARTBLOCK)
3677 irec->br_startblock += distance;
3678 irec->br_startoff += distance;
3679 irec->br_blockcount -= distance;
3680 }
3681
3682 if (end < irec->br_startoff + irec->br_blockcount) {
3683 distance = irec->br_startoff + irec->br_blockcount - end;
3684 irec->br_blockcount -= distance;
3685 }
3686}
3687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688/*
Dave Chinneraef9a892011-09-18 20:40:44 +00003689 * Trim the returned map to the required bounds
3690 */
3691STATIC void
3692xfs_bmapi_trim_map(
3693 struct xfs_bmbt_irec *mval,
3694 struct xfs_bmbt_irec *got,
3695 xfs_fileoff_t *bno,
3696 xfs_filblks_t len,
3697 xfs_fileoff_t obno,
3698 xfs_fileoff_t end,
3699 int n,
3700 int flags)
3701{
3702 if ((flags & XFS_BMAPI_ENTIRE) ||
3703 got->br_startoff + got->br_blockcount <= obno) {
3704 *mval = *got;
3705 if (isnullstartblock(got->br_startblock))
3706 mval->br_startblock = DELAYSTARTBLOCK;
3707 return;
3708 }
3709
3710 if (obno > *bno)
3711 *bno = obno;
3712 ASSERT((*bno >= obno) || (n == 0));
3713 ASSERT(*bno < end);
3714 mval->br_startoff = *bno;
3715 if (isnullstartblock(got->br_startblock))
3716 mval->br_startblock = DELAYSTARTBLOCK;
3717 else
3718 mval->br_startblock = got->br_startblock +
3719 (*bno - got->br_startoff);
3720 /*
3721 * Return the minimum of what we got and what we asked for for
3722 * the length. We can use the len variable here because it is
3723 * modified below and we could have been there before coming
3724 * here if the first part of the allocation didn't overlap what
3725 * was asked for.
3726 */
3727 mval->br_blockcount = XFS_FILBLKS_MIN(end - *bno,
3728 got->br_blockcount - (*bno - got->br_startoff));
3729 mval->br_state = got->br_state;
3730 ASSERT(mval->br_blockcount <= len);
3731 return;
3732}
3733
3734/*
3735 * Update and validate the extent map to return
3736 */
3737STATIC void
3738xfs_bmapi_update_map(
3739 struct xfs_bmbt_irec **map,
3740 xfs_fileoff_t *bno,
3741 xfs_filblks_t *len,
3742 xfs_fileoff_t obno,
3743 xfs_fileoff_t end,
3744 int *n,
3745 int flags)
3746{
3747 xfs_bmbt_irec_t *mval = *map;
3748
3749 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
3750 ((mval->br_startoff + mval->br_blockcount) <= end));
3751 ASSERT((flags & XFS_BMAPI_ENTIRE) || (mval->br_blockcount <= *len) ||
3752 (mval->br_startoff < obno));
3753
3754 *bno = mval->br_startoff + mval->br_blockcount;
3755 *len = end - *bno;
3756 if (*n > 0 && mval->br_startoff == mval[-1].br_startoff) {
3757 /* update previous map with new information */
3758 ASSERT(mval->br_startblock == mval[-1].br_startblock);
3759 ASSERT(mval->br_blockcount > mval[-1].br_blockcount);
3760 ASSERT(mval->br_state == mval[-1].br_state);
3761 mval[-1].br_blockcount = mval->br_blockcount;
3762 mval[-1].br_state = mval->br_state;
3763 } else if (*n > 0 && mval->br_startblock != DELAYSTARTBLOCK &&
3764 mval[-1].br_startblock != DELAYSTARTBLOCK &&
3765 mval[-1].br_startblock != HOLESTARTBLOCK &&
3766 mval->br_startblock == mval[-1].br_startblock +
3767 mval[-1].br_blockcount &&
Christoph Hellwigc3a2f9f2018-07-11 22:26:01 -07003768 mval[-1].br_state == mval->br_state) {
Dave Chinneraef9a892011-09-18 20:40:44 +00003769 ASSERT(mval->br_startoff ==
3770 mval[-1].br_startoff + mval[-1].br_blockcount);
3771 mval[-1].br_blockcount += mval->br_blockcount;
3772 } else if (*n > 0 &&
3773 mval->br_startblock == DELAYSTARTBLOCK &&
3774 mval[-1].br_startblock == DELAYSTARTBLOCK &&
3775 mval->br_startoff ==
3776 mval[-1].br_startoff + mval[-1].br_blockcount) {
3777 mval[-1].br_blockcount += mval->br_blockcount;
3778 mval[-1].br_state = mval->br_state;
3779 } else if (!((*n == 0) &&
3780 ((mval->br_startoff + mval->br_blockcount) <=
3781 obno))) {
3782 mval++;
3783 (*n)++;
3784 }
3785 *map = mval;
3786}
3787
3788/*
Dave Chinner5c8ed202011-09-18 20:40:45 +00003789 * Map file blocks to filesystem blocks without allocation.
3790 */
3791int
3792xfs_bmapi_read(
3793 struct xfs_inode *ip,
3794 xfs_fileoff_t bno,
3795 xfs_filblks_t len,
3796 struct xfs_bmbt_irec *mval,
3797 int *nmap,
3798 int flags)
3799{
3800 struct xfs_mount *mp = ip->i_mount;
3801 struct xfs_ifork *ifp;
3802 struct xfs_bmbt_irec got;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003803 xfs_fileoff_t obno;
3804 xfs_fileoff_t end;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003805 struct xfs_iext_cursor icur;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003806 int error;
Christoph Hellwig334f3422016-11-24 11:39:43 +11003807 bool eof = false;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003808 int n = 0;
Darrick J. Wong3993bae2016-10-03 09:11:32 -07003809 int whichfork = xfs_bmapi_whichfork(flags);
Dave Chinner5c8ed202011-09-18 20:40:45 +00003810
3811 ASSERT(*nmap >= 1);
3812 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK|XFS_BMAPI_ENTIRE|
Christoph Hellwigc3a2f9f2018-07-11 22:26:01 -07003813 XFS_BMAPI_COWFORK)));
Christoph Hellwigeef334e2013-12-06 12:30:17 -08003814 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED|XFS_ILOCK_EXCL));
Dave Chinner5c8ed202011-09-18 20:40:45 +00003815
3816 if (unlikely(XFS_TEST_ERROR(
3817 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
3818 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07003819 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Dave Chinner5c8ed202011-09-18 20:40:45 +00003820 XFS_ERROR_REPORT("xfs_bmapi_read", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10003821 return -EFSCORRUPTED;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003822 }
3823
3824 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10003825 return -EIO;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003826
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11003827 XFS_STATS_INC(mp, xs_blk_mapr);
Dave Chinner5c8ed202011-09-18 20:40:45 +00003828
3829 ifp = XFS_IFORK_PTR(ip, whichfork);
Darrick J. Wong8612de32019-08-11 15:52:27 -07003830 if (!ifp) {
3831 /* No CoW fork? Return a hole. */
3832 if (whichfork == XFS_COW_FORK) {
3833 mval->br_startoff = bno;
3834 mval->br_startblock = HOLESTARTBLOCK;
3835 mval->br_blockcount = len;
3836 mval->br_state = XFS_EXT_NORM;
3837 *nmap = 1;
3838 return 0;
3839 }
Dave Chinner5c8ed202011-09-18 20:40:45 +00003840
Darrick J. Wong8612de32019-08-11 15:52:27 -07003841 /*
3842 * A missing attr ifork implies that the inode says we're in
3843 * extents or btree format but failed to pass the inode fork
3844 * verifier while trying to load it. Treat that as a file
3845 * corruption too.
3846 */
3847#ifdef DEBUG
3848 xfs_alert(mp, "%s: inode %llu missing fork %d",
3849 __func__, ip->i_ino, whichfork);
3850#endif /* DEBUG */
3851 return -EFSCORRUPTED;
Darrick J. Wong3993bae2016-10-03 09:11:32 -07003852 }
3853
Dave Chinner5c8ed202011-09-18 20:40:45 +00003854 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
3855 error = xfs_iread_extents(NULL, ip, whichfork);
3856 if (error)
3857 return error;
3858 }
3859
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003860 if (!xfs_iext_lookup_extent(ip, ifp, bno, &icur, &got))
Christoph Hellwig334f3422016-11-24 11:39:43 +11003861 eof = true;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003862 end = bno + len;
3863 obno = bno;
3864
3865 while (bno < end && n < *nmap) {
3866 /* Reading past eof, act as though there's a hole up to end. */
3867 if (eof)
3868 got.br_startoff = end;
3869 if (got.br_startoff > bno) {
3870 /* Reading in a hole. */
3871 mval->br_startoff = bno;
3872 mval->br_startblock = HOLESTARTBLOCK;
3873 mval->br_blockcount =
3874 XFS_FILBLKS_MIN(len, got.br_startoff - bno);
3875 mval->br_state = XFS_EXT_NORM;
3876 bno += mval->br_blockcount;
3877 len -= mval->br_blockcount;
3878 mval++;
3879 n++;
3880 continue;
3881 }
3882
3883 /* set up the extent map to return. */
3884 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
3885 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
3886
3887 /* If we're done, stop now. */
3888 if (bno >= end || n >= *nmap)
3889 break;
3890
3891 /* Else go on to the next record. */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003892 if (!xfs_iext_next_extent(ifp, &icur, &got))
Christoph Hellwig334f3422016-11-24 11:39:43 +11003893 eof = true;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003894 }
3895 *nmap = n;
3896 return 0;
3897}
3898
Brian Fosterf65e6fa2017-03-08 09:58:08 -08003899/*
3900 * Add a delayed allocation extent to an inode. Blocks are reserved from the
3901 * global pool and the extent inserted into the inode in-core extent tree.
3902 *
3903 * On entry, got refers to the first extent beyond the offset of the extent to
3904 * allocate or eof is specified if no such extent exists. On return, got refers
3905 * to the extent record that was inserted to the inode fork.
3906 *
3907 * Note that the allocated extent may have been merged with contiguous extents
3908 * during insertion into the inode fork. Thus, got does not reflect the current
3909 * state of the inode fork on return. If necessary, the caller can use lastx to
3910 * look up the updated record in the inode fork.
3911 */
Christoph Hellwig51446f52016-09-19 11:10:21 +10003912int
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003913xfs_bmapi_reserve_delalloc(
3914 struct xfs_inode *ip,
Darrick J. Wongbe51f812016-10-03 09:11:32 -07003915 int whichfork,
Brian Foster974ae922016-11-28 14:57:42 +11003916 xfs_fileoff_t off,
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003917 xfs_filblks_t len,
Brian Foster974ae922016-11-28 14:57:42 +11003918 xfs_filblks_t prealloc,
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003919 struct xfs_bmbt_irec *got,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003920 struct xfs_iext_cursor *icur,
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003921 int eof)
3922{
3923 struct xfs_mount *mp = ip->i_mount;
Darrick J. Wongbe51f812016-10-03 09:11:32 -07003924 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003925 xfs_extlen_t alen;
3926 xfs_extlen_t indlen;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003927 int error;
Brian Foster974ae922016-11-28 14:57:42 +11003928 xfs_fileoff_t aoff = off;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003929
Brian Foster974ae922016-11-28 14:57:42 +11003930 /*
3931 * Cap the alloc length. Keep track of prealloc so we know whether to
3932 * tag the inode before we return.
3933 */
3934 alen = XFS_FILBLKS_MIN(len + prealloc, MAXEXTLEN);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003935 if (!eof)
3936 alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff);
Brian Foster974ae922016-11-28 14:57:42 +11003937 if (prealloc && alen >= len)
3938 prealloc = alen - len;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003939
3940 /* Figure out the extent size, adjust alen */
Shan Hai6ca30722018-01-23 13:56:11 -08003941 if (whichfork == XFS_COW_FORK) {
Christoph Hellwig65c5f412016-11-24 11:39:44 +11003942 struct xfs_bmbt_irec prev;
Shan Hai6ca30722018-01-23 13:56:11 -08003943 xfs_extlen_t extsz = xfs_get_cowextsz_hint(ip);
Christoph Hellwig65c5f412016-11-24 11:39:44 +11003944
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003945 if (!xfs_iext_peek_prev_extent(ifp, icur, &prev))
Christoph Hellwig65c5f412016-11-24 11:39:44 +11003946 prev.br_startoff = NULLFILEOFF;
3947
Shan Hai6ca30722018-01-23 13:56:11 -08003948 error = xfs_bmap_extsize_align(mp, got, &prev, extsz, 0, eof,
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003949 1, 0, &aoff, &alen);
3950 ASSERT(!error);
3951 }
3952
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003953 /*
3954 * Make a transaction-less quota reservation for delayed allocation
3955 * blocks. This number gets adjusted later. We return if we haven't
3956 * allocated blocks already inside this loop.
3957 */
3958 error = xfs_trans_reserve_quota_nblks(NULL, ip, (long)alen, 0,
Shan Hai6ca30722018-01-23 13:56:11 -08003959 XFS_QMOPT_RES_REGBLKS);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003960 if (error)
3961 return error;
3962
3963 /*
3964 * Split changing sb for alen and indlen since they could be coming
3965 * from different places.
3966 */
3967 indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen);
3968 ASSERT(indlen > 0);
3969
Shan Hai6ca30722018-01-23 13:56:11 -08003970 error = xfs_mod_fdblocks(mp, -((int64_t)alen), false);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003971 if (error)
3972 goto out_unreserve_quota;
3973
Dave Chinner0d485ad2015-02-23 21:22:03 +11003974 error = xfs_mod_fdblocks(mp, -((int64_t)indlen), false);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003975 if (error)
3976 goto out_unreserve_blocks;
3977
3978
3979 ip->i_delayed_blks += alen;
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07003980 xfs_mod_delalloc(ip->i_mount, alen + indlen);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003981
3982 got->br_startoff = aoff;
3983 got->br_startblock = nullstartblock(indlen);
3984 got->br_blockcount = alen;
3985 got->br_state = XFS_EXT_NORM;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003986
Christoph Hellwigb2b17122017-11-03 10:34:43 -07003987 xfs_bmap_add_extent_hole_delay(ip, whichfork, icur, got);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003988
Brian Foster974ae922016-11-28 14:57:42 +11003989 /*
3990 * Tag the inode if blocks were preallocated. Note that COW fork
3991 * preallocation can occur at the start or end of the extent, even when
3992 * prealloc == 0, so we must also check the aligned offset and length.
3993 */
3994 if (whichfork == XFS_DATA_FORK && prealloc)
3995 xfs_inode_set_eofblocks_tag(ip);
3996 if (whichfork == XFS_COW_FORK && (prealloc || aoff < off || alen > len))
3997 xfs_inode_set_cowblocks_tag(ip);
3998
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00003999 return 0;
4000
4001out_unreserve_blocks:
Shan Hai6ca30722018-01-23 13:56:11 -08004002 xfs_mod_fdblocks(mp, alen, false);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004003out_unreserve_quota:
4004 if (XFS_IS_QUOTA_ON(mp))
Shan Hai6ca30722018-01-23 13:56:11 -08004005 xfs_trans_unreserve_quota_nblks(NULL, ip, (long)alen, 0,
4006 XFS_QMOPT_RES_REGBLKS);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004007 return error;
4008}
4009
Dave Chinnercf11da92014-07-15 07:08:24 +10004010static int
4011xfs_bmapi_allocate(
Dave Chinnere04426b2012-10-05 11:06:59 +10004012 struct xfs_bmalloca *bma)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004013{
4014 struct xfs_mount *mp = bma->ip->i_mount;
Darrick J. Wong60b49842016-10-03 09:11:34 -07004015 int whichfork = xfs_bmapi_whichfork(bma->flags);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004016 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004017 int tmp_logflags = 0;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004018 int error;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004019
Dave Chinnera99ebf42011-12-01 11:24:20 +00004020 ASSERT(bma->length > 0);
4021
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004022 /*
4023 * For the wasdelay case, we could also just allocate the stuff asked
4024 * for in this bmap call but that wouldn't be as good.
4025 */
4026 if (bma->wasdel) {
Dave Chinner963c30c2011-09-18 20:40:59 +00004027 bma->length = (xfs_extlen_t)bma->got.br_blockcount;
4028 bma->offset = bma->got.br_startoff;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004029 xfs_iext_peek_prev_extent(ifp, &bma->icur, &bma->prev);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004030 } else {
Dave Chinner963c30c2011-09-18 20:40:59 +00004031 bma->length = XFS_FILBLKS_MIN(bma->length, MAXEXTLEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004032 if (!bma->eof)
Dave Chinner963c30c2011-09-18 20:40:59 +00004033 bma->length = XFS_FILBLKS_MIN(bma->length,
Dave Chinner3a756672011-09-18 20:40:58 +00004034 bma->got.br_startoff - bma->offset);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004035 }
4036
4037 /*
Dave Chinner292378e2016-09-26 08:21:28 +10004038 * Set the data type being allocated. For the data fork, the first data
4039 * in the file is treated differently to all other allocations. For the
4040 * attribute fork, we only need to ensure the allocated range is not on
4041 * the busy list.
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004042 */
Dave Chinnere04426b2012-10-05 11:06:59 +10004043 if (!(bma->flags & XFS_BMAPI_METADATA)) {
Dave Chinner292378e2016-09-26 08:21:28 +10004044 bma->datatype = XFS_ALLOC_NOBUSY;
4045 if (whichfork == XFS_DATA_FORK) {
4046 if (bma->offset == 0)
4047 bma->datatype |= XFS_ALLOC_INITIAL_USER_DATA;
4048 else
4049 bma->datatype |= XFS_ALLOC_USERDATA;
4050 }
Dave Chinner3fbbbea2015-11-03 12:27:22 +11004051 if (bma->flags & XFS_BMAPI_ZERO)
Dave Chinner292378e2016-09-26 08:21:28 +10004052 bma->datatype |= XFS_ALLOC_USERDATA_ZERO;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004053 }
4054
Dave Chinnere04426b2012-10-05 11:06:59 +10004055 bma->minlen = (bma->flags & XFS_BMAPI_CONTIG) ? bma->length : 1;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004056
4057 /*
4058 * Only want to do the alignment at the eof if it is userdata and
4059 * allocation length is larger than a stripe unit.
4060 */
Dave Chinner963c30c2011-09-18 20:40:59 +00004061 if (mp->m_dalign && bma->length >= mp->m_dalign &&
Dave Chinnere04426b2012-10-05 11:06:59 +10004062 !(bma->flags & XFS_BMAPI_METADATA) && whichfork == XFS_DATA_FORK) {
Dave Chinner1b164472011-09-18 20:40:55 +00004063 error = xfs_bmap_isaeof(bma, whichfork);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004064 if (error)
4065 return error;
4066 }
4067
4068 error = xfs_bmap_alloc(bma);
4069 if (error)
4070 return error;
4071
Dave Chinner963c30c2011-09-18 20:40:59 +00004072 if (bma->blkno == NULLFSBLOCK)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004073 return 0;
Brian Fostercf612de2018-07-11 22:26:29 -07004074 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur)
Dave Chinner29c8d172011-09-18 20:41:00 +00004075 bma->cur = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004076 /*
4077 * Bump the number of extents we've allocated
4078 * in this call.
4079 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004080 bma->nallocs++;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004081
Dave Chinner29c8d172011-09-18 20:41:00 +00004082 if (bma->cur)
4083 bma->cur->bc_private.b.flags =
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004084 bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
4085
Dave Chinner963c30c2011-09-18 20:40:59 +00004086 bma->got.br_startoff = bma->offset;
4087 bma->got.br_startblock = bma->blkno;
4088 bma->got.br_blockcount = bma->length;
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004089 bma->got.br_state = XFS_EXT_NORM;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004090
4091 /*
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004092 * In the data fork, a wasdelay extent has been initialized, so
4093 * shouldn't be flagged as unwritten.
4094 *
4095 * For the cow fork, however, we convert delalloc reservations
4096 * (extents allocated for speculative preallocation) to
4097 * allocated unwritten extents, and only convert the unwritten
4098 * extents to real extents when we're about to write the data.
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004099 */
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004100 if ((!bma->wasdel || (bma->flags & XFS_BMAPI_COWFORK)) &&
Christoph Hellwigdaa79ba2018-10-18 17:18:58 +11004101 (bma->flags & XFS_BMAPI_PREALLOC))
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004102 bma->got.br_state = XFS_EXT_UNWRITTEN;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004103
Christoph Hellwigc6534242011-09-18 20:41:05 +00004104 if (bma->wasdel)
Darrick J. Wong60b49842016-10-03 09:11:34 -07004105 error = xfs_bmap_add_extent_delay_real(bma, whichfork);
Christoph Hellwigc6534242011-09-18 20:41:05 +00004106 else
Christoph Hellwig6d045582017-04-11 16:45:54 -07004107 error = xfs_bmap_add_extent_hole_real(bma->tp, bma->ip,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004108 whichfork, &bma->icur, &bma->cur, &bma->got,
Brian Foster92f9da32018-07-11 22:26:28 -07004109 &bma->logflags, bma->flags);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004110
Christoph Hellwigc315c902011-09-18 20:41:02 +00004111 bma->logflags |= tmp_logflags;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004112 if (error)
4113 return error;
4114
4115 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004116 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4117 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4118 * the neighbouring ones.
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004119 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004120 xfs_iext_get_extent(ifp, &bma->icur, &bma->got);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004121
Dave Chinner963c30c2011-09-18 20:40:59 +00004122 ASSERT(bma->got.br_startoff <= bma->offset);
4123 ASSERT(bma->got.br_startoff + bma->got.br_blockcount >=
4124 bma->offset + bma->length);
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004125 ASSERT(bma->got.br_state == XFS_EXT_NORM ||
4126 bma->got.br_state == XFS_EXT_UNWRITTEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004127 return 0;
4128}
4129
Dave Chinnerb447fe52011-09-18 20:40:51 +00004130STATIC int
4131xfs_bmapi_convert_unwritten(
4132 struct xfs_bmalloca *bma,
4133 struct xfs_bmbt_irec *mval,
4134 xfs_filblks_t len,
Christoph Hellwigc315c902011-09-18 20:41:02 +00004135 int flags)
Dave Chinnerb447fe52011-09-18 20:40:51 +00004136{
Darrick J. Wong3993bae2016-10-03 09:11:32 -07004137 int whichfork = xfs_bmapi_whichfork(flags);
Dave Chinnerb447fe52011-09-18 20:40:51 +00004138 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004139 int tmp_logflags = 0;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004140 int error;
4141
Dave Chinnerb447fe52011-09-18 20:40:51 +00004142 /* check if we need to do unwritten->real conversion */
4143 if (mval->br_state == XFS_EXT_UNWRITTEN &&
4144 (flags & XFS_BMAPI_PREALLOC))
4145 return 0;
4146
4147 /* check if we need to do real->unwritten conversion */
4148 if (mval->br_state == XFS_EXT_NORM &&
4149 (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) !=
4150 (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT))
4151 return 0;
4152
4153 /*
4154 * Modify (by adding) the state flag, if writing.
4155 */
4156 ASSERT(mval->br_blockcount <= len);
Dave Chinner29c8d172011-09-18 20:41:00 +00004157 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4158 bma->cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp,
Dave Chinnerb447fe52011-09-18 20:40:51 +00004159 bma->ip, whichfork);
Dave Chinnerb447fe52011-09-18 20:40:51 +00004160 }
4161 mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN)
4162 ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
4163
Dave Chinner3fbbbea2015-11-03 12:27:22 +11004164 /*
4165 * Before insertion into the bmbt, zero the range being converted
4166 * if required.
4167 */
4168 if (flags & XFS_BMAPI_ZERO) {
4169 error = xfs_zero_extent(bma->ip, mval->br_startblock,
4170 mval->br_blockcount);
4171 if (error)
4172 return error;
4173 }
4174
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004175 error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, whichfork,
Brian Foster92f9da32018-07-11 22:26:28 -07004176 &bma->icur, &bma->cur, mval, &tmp_logflags);
Brian Foster2e588a42015-06-01 07:15:23 +10004177 /*
4178 * Log the inode core unconditionally in the unwritten extent conversion
4179 * path because the conversion might not have done so (e.g., if the
4180 * extent count hasn't changed). We need to make sure the inode is dirty
4181 * in the transaction for the sake of fsync(), even if nothing has
4182 * changed, because fsync() will not force the log for this transaction
4183 * unless it sees the inode pinned.
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004184 *
4185 * Note: If we're only converting cow fork extents, there aren't
4186 * any on-disk updates to make, so we don't need to log anything.
Brian Foster2e588a42015-06-01 07:15:23 +10004187 */
Darrick J. Wong05a630d2017-02-02 15:14:01 -08004188 if (whichfork != XFS_COW_FORK)
4189 bma->logflags |= tmp_logflags | XFS_ILOG_CORE;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004190 if (error)
4191 return error;
4192
4193 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004194 * Update our extent pointer, given that
4195 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4196 * of the neighbouring ones.
Dave Chinnerb447fe52011-09-18 20:40:51 +00004197 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004198 xfs_iext_get_extent(ifp, &bma->icur, &bma->got);
Dave Chinnerb447fe52011-09-18 20:40:51 +00004199
4200 /*
4201 * We may have combined previously unwritten space with written space,
4202 * so generate another request.
4203 */
4204 if (mval->br_blockcount < len)
Dave Chinner24513372014-06-25 14:58:08 +10004205 return -EAGAIN;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004206 return 0;
4207}
4208
Christoph Hellwigc8b54672019-02-15 08:02:48 -08004209static inline xfs_extlen_t
4210xfs_bmapi_minleft(
4211 struct xfs_trans *tp,
4212 struct xfs_inode *ip,
4213 int fork)
4214{
4215 if (tp && tp->t_firstblock != NULLFSBLOCK)
4216 return 0;
4217 if (XFS_IFORK_FORMAT(ip, fork) != XFS_DINODE_FMT_BTREE)
4218 return 1;
4219 return be16_to_cpu(XFS_IFORK_PTR(ip, fork)->if_broot->bb_level) + 1;
4220}
4221
4222/*
4223 * Log whatever the flags say, even if error. Otherwise we might miss detecting
4224 * a case where the data is changed, there's an error, and it's not logged so we
4225 * don't shutdown when we should. Don't bother logging extents/btree changes if
4226 * we converted to the other format.
4227 */
4228static void
4229xfs_bmapi_finish(
4230 struct xfs_bmalloca *bma,
4231 int whichfork,
4232 int error)
4233{
4234 if ((bma->logflags & xfs_ilog_fext(whichfork)) &&
4235 XFS_IFORK_FORMAT(bma->ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
4236 bma->logflags &= ~xfs_ilog_fext(whichfork);
4237 else if ((bma->logflags & xfs_ilog_fbroot(whichfork)) &&
4238 XFS_IFORK_FORMAT(bma->ip, whichfork) != XFS_DINODE_FMT_BTREE)
4239 bma->logflags &= ~xfs_ilog_fbroot(whichfork);
4240
4241 if (bma->logflags)
4242 xfs_trans_log_inode(bma->tp, bma->ip, bma->logflags);
4243 if (bma->cur)
4244 xfs_btree_del_cursor(bma->cur, error);
4245}
4246
Christoph Hellwig44032802011-09-18 20:40:48 +00004247/*
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004248 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4249 * extent state if necessary. Details behaviour is controlled by the flags
4250 * parameter. Only allocates blocks from a single allocation group, to avoid
4251 * locking problems.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004253int
4254xfs_bmapi_write(
4255 struct xfs_trans *tp, /* transaction pointer */
4256 struct xfs_inode *ip, /* incore inode */
4257 xfs_fileoff_t bno, /* starting file offs. mapped */
4258 xfs_filblks_t len, /* length to map in file */
4259 int flags, /* XFS_BMAPI_... */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004260 xfs_extlen_t total, /* total blocks needed */
4261 struct xfs_bmbt_irec *mval, /* output: map values */
Brian Foster6e702a52018-07-11 22:26:12 -07004262 int *nmap) /* i/o: mval size/count */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263{
Darrick J. Wong4b0bce32019-03-19 08:16:22 -07004264 struct xfs_bmalloca bma = {
4265 .tp = tp,
4266 .ip = ip,
4267 .total = total,
4268 };
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004269 struct xfs_mount *mp = ip->i_mount;
4270 struct xfs_ifork *ifp;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004271 xfs_fileoff_t end; /* end of mapped file region */
Christoph Hellwig2d58f6e2016-11-24 11:39:43 +11004272 bool eof = false; /* after the end of extents */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004273 int error; /* error return */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004274 int n; /* current extent index */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004275 xfs_fileoff_t obno; /* old block number (offset) */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004276 int whichfork; /* data or attr fork */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004277
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278#ifdef DEBUG
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004279 xfs_fileoff_t orig_bno; /* original block number value */
4280 int orig_flags; /* original flags arg value */
4281 xfs_filblks_t orig_len; /* original value of len arg */
4282 struct xfs_bmbt_irec *orig_mval; /* original value of mval */
4283 int orig_nmap; /* original value of *nmap */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
4285 orig_bno = bno;
4286 orig_len = len;
4287 orig_flags = flags;
4288 orig_mval = mval;
4289 orig_nmap = *nmap;
4290#endif
Darrick J. Wong60b49842016-10-03 09:11:34 -07004291 whichfork = xfs_bmapi_whichfork(flags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004292
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 ASSERT(*nmap >= 1);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004294 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
Christoph Hellwig26b91c72019-02-18 09:38:48 -08004295 ASSERT(tp != NULL);
Dave Chinnera99ebf42011-12-01 11:24:20 +00004296 ASSERT(len > 0);
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004297 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL);
Christoph Hellwigeef334e2013-12-06 12:30:17 -08004298 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004299 ASSERT(!(flags & XFS_BMAPI_REMAP));
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004300
Dave Chinner3fbbbea2015-11-03 12:27:22 +11004301 /* zeroing is for currently only for data extents, not metadata */
4302 ASSERT((flags & (XFS_BMAPI_METADATA | XFS_BMAPI_ZERO)) !=
4303 (XFS_BMAPI_METADATA | XFS_BMAPI_ZERO));
4304 /*
4305 * we can allocate unwritten extents or pre-zero allocated blocks,
4306 * but it makes no sense to do both at once. This would result in
4307 * zeroing the unwritten extent twice, but it still being an
4308 * unwritten extent....
4309 */
4310 ASSERT((flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_ZERO)) !=
4311 (XFS_BMAPI_PREALLOC | XFS_BMAPI_ZERO));
4312
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 if (unlikely(XFS_TEST_ERROR(
4314 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004315 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07004316 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004317 XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10004318 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 }
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004320
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10004322 return -EIO;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004323
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 ifp = XFS_IFORK_PTR(ip, whichfork);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004325
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11004326 XFS_STATS_INC(mp, xs_blk_mapw);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004327
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004328 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4329 error = xfs_iread_extents(tp, ip, whichfork);
4330 if (error)
4331 goto error0;
4332 }
4333
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004334 if (!xfs_iext_lookup_extent(ip, ifp, bno, &bma.icur, &bma.got))
Christoph Hellwig2d58f6e2016-11-24 11:39:43 +11004335 eof = true;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004336 if (!xfs_iext_peek_prev_extent(ifp, &bma.icur, &bma.prev))
Christoph Hellwig2d58f6e2016-11-24 11:39:43 +11004337 bma.prev.br_startoff = NULLFILEOFF;
Christoph Hellwigc8b54672019-02-15 08:02:48 -08004338 bma.minleft = xfs_bmapi_minleft(tp, ip, whichfork);
Christoph Hellwigb4e91812010-06-23 18:11:15 +10004339
Brian Foster627209f2019-02-01 09:14:23 -08004340 n = 0;
4341 end = bno + len;
4342 obno = bno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 while (bno < end && n < *nmap) {
Christoph Hellwigd2b39642017-01-20 09:31:54 -08004344 bool need_alloc = false, wasdelay = false;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004345
Darrick J. Wongbe78ff02018-01-16 19:03:59 -08004346 /* in hole or beyond EOF? */
Christoph Hellwigd2b39642017-01-20 09:31:54 -08004347 if (eof || bma.got.br_startoff > bno) {
Darrick J. Wongbe78ff02018-01-16 19:03:59 -08004348 /*
4349 * CoW fork conversions should /never/ hit EOF or
4350 * holes. There should always be something for us
4351 * to work on.
4352 */
4353 ASSERT(!((flags & XFS_BMAPI_CONVERT) &&
4354 (flags & XFS_BMAPI_COWFORK)));
4355
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004356 need_alloc = true;
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004357 } else if (isnullstartblock(bma.got.br_startblock)) {
4358 wasdelay = true;
Christoph Hellwigd2b39642017-01-20 09:31:54 -08004359 }
Darrick J. Wongf65306e2016-10-03 09:11:27 -07004360
4361 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 * First, deal with the hole before the allocated space
4363 * that we found, if any.
4364 */
Christoph Hellwig26b91c72019-02-18 09:38:48 -08004365 if (need_alloc || wasdelay) {
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004366 bma.eof = eof;
4367 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
4368 bma.wasdel = wasdelay;
Dave Chinner3a756672011-09-18 20:40:58 +00004369 bma.offset = bno;
Dave Chinnere04426b2012-10-05 11:06:59 +10004370 bma.flags = flags;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004371
Dave Chinnera99ebf42011-12-01 11:24:20 +00004372 /*
4373 * There's a 32/64 bit type mismatch between the
4374 * allocation length request (which can be 64 bits in
4375 * length) and the bma length request, which is
4376 * xfs_extlen_t and therefore 32 bits. Hence we have to
4377 * check for 32-bit overflows and handle them here.
4378 */
4379 if (len > (xfs_filblks_t)MAXEXTLEN)
4380 bma.length = MAXEXTLEN;
4381 else
4382 bma.length = len;
4383
4384 ASSERT(len > 0);
4385 ASSERT(bma.length > 0);
Dave Chinnere04426b2012-10-05 11:06:59 +10004386 error = xfs_bmapi_allocate(&bma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 if (error)
4388 goto error0;
Dave Chinner3a756672011-09-18 20:40:58 +00004389 if (bma.blkno == NULLFSBLOCK)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004390 break;
Darrick J. Wong174edb02016-10-03 09:11:39 -07004391
4392 /*
4393 * If this is a CoW allocation, record the data in
4394 * the refcount btree for orphan recovery.
4395 */
Darrick J. Wong74b4c5d2019-08-26 17:06:04 -07004396 if (whichfork == XFS_COW_FORK)
4397 xfs_refcount_alloc_cow_extent(tp, bma.blkno,
4398 bma.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 }
Christoph Hellwig44032802011-09-18 20:40:48 +00004400
Dave Chinneraef9a892011-09-18 20:40:44 +00004401 /* Deal with the allocated space we found. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004402 xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno,
4403 end, n, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404
Dave Chinnerb447fe52011-09-18 20:40:51 +00004405 /* Execute unwritten extent conversion if necessary */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004406 error = xfs_bmapi_convert_unwritten(&bma, mval, len, flags);
Dave Chinner24513372014-06-25 14:58:08 +10004407 if (error == -EAGAIN)
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004408 continue;
4409 if (error)
4410 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
Dave Chinneraef9a892011-09-18 20:40:44 +00004412 /* update the extent map to return */
4413 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4414
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415 /*
4416 * If we're done, stop now. Stop when we've allocated
4417 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4418 * the transaction may get too big.
4419 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004420 if (bno >= end || n >= *nmap || bma.nallocs >= *nmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 break;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004422
4423 /* Else go on to the next record. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004424 bma.prev = bma.got;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004425 if (!xfs_iext_next_extent(ifp, &bma.icur, &bma.got))
Christoph Hellwig2d58f6e2016-11-24 11:39:43 +11004426 eof = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 *nmap = n;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004429
Christoph Hellwigb101e332019-02-15 08:02:47 -08004430 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur, &bma.logflags,
4431 whichfork);
4432 if (error)
4433 goto error0;
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004434
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004436 XFS_IFORK_NEXTENTS(ip, whichfork) >
4437 XFS_IFORK_MAXEXT(ip, whichfork));
Christoph Hellwigc8b54672019-02-15 08:02:48 -08004438 xfs_bmapi_finish(&bma, whichfork, 0);
4439 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
4440 orig_nmap, *nmap);
4441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442error0:
Christoph Hellwigc8b54672019-02-15 08:02:48 -08004443 xfs_bmapi_finish(&bma, whichfork, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 return error;
4445}
4446
Brian Foster627209f2019-02-01 09:14:23 -08004447/*
4448 * Convert an existing delalloc extent to real blocks based on file offset. This
4449 * attempts to allocate the entire delalloc extent and may require multiple
4450 * invocations to allocate the target offset if a large enough physical extent
4451 * is not available.
4452 */
4453int
4454xfs_bmapi_convert_delalloc(
Brian Foster627209f2019-02-01 09:14:23 -08004455 struct xfs_inode *ip,
Brian Foster627209f2019-02-01 09:14:23 -08004456 int whichfork,
Christoph Hellwig491ce612019-02-15 08:02:49 -08004457 xfs_fileoff_t offset_fsb,
4458 struct xfs_bmbt_irec *imap,
4459 unsigned int *seq)
Brian Foster627209f2019-02-01 09:14:23 -08004460{
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004461 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwig491ce612019-02-15 08:02:49 -08004462 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004463 struct xfs_bmalloca bma = { NULL };
Christoph Hellwig491ce612019-02-15 08:02:49 -08004464 struct xfs_trans *tp;
Brian Foster627209f2019-02-01 09:14:23 -08004465 int error;
Brian Foster627209f2019-02-01 09:14:23 -08004466
Christoph Hellwig491ce612019-02-15 08:02:49 -08004467 /*
4468 * Space for the extent and indirect blocks was reserved when the
4469 * delalloc extent was created so there's no need to do so here.
4470 */
4471 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, 0, 0,
4472 XFS_TRANS_RESERVE, &tp);
4473 if (error)
4474 return error;
4475
4476 xfs_ilock(ip, XFS_ILOCK_EXCL);
4477 xfs_trans_ijoin(tp, ip, 0);
4478
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004479 if (!xfs_iext_lookup_extent(ip, ifp, offset_fsb, &bma.icur, &bma.got) ||
4480 bma.got.br_startoff > offset_fsb) {
4481 /*
4482 * No extent found in the range we are trying to convert. This
4483 * should only happen for the COW fork, where another thread
4484 * might have moved the extent to the data fork in the meantime.
4485 */
4486 WARN_ON_ONCE(whichfork != XFS_COW_FORK);
Christoph Hellwig491ce612019-02-15 08:02:49 -08004487 error = -EAGAIN;
4488 goto out_trans_cancel;
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004489 }
Brian Foster627209f2019-02-01 09:14:23 -08004490
4491 /*
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004492 * If we find a real extent here we raced with another thread converting
4493 * the extent. Just return the real extent at this offset.
Brian Foster627209f2019-02-01 09:14:23 -08004494 */
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004495 if (!isnullstartblock(bma.got.br_startblock)) {
4496 *imap = bma.got;
Christoph Hellwig491ce612019-02-15 08:02:49 -08004497 *seq = READ_ONCE(ifp->if_seq);
4498 goto out_trans_cancel;
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004499 }
4500
4501 bma.tp = tp;
4502 bma.ip = ip;
4503 bma.wasdel = true;
4504 bma.offset = bma.got.br_startoff;
4505 bma.length = max_t(xfs_filblks_t, bma.got.br_blockcount, MAXEXTLEN);
4506 bma.total = XFS_EXTENTADD_SPACE_RES(ip->i_mount, XFS_DATA_FORK);
4507 bma.minleft = xfs_bmapi_minleft(tp, ip, whichfork);
4508 if (whichfork == XFS_COW_FORK)
4509 bma.flags = XFS_BMAPI_COWFORK | XFS_BMAPI_PREALLOC;
4510
4511 if (!xfs_iext_peek_prev_extent(ifp, &bma.icur, &bma.prev))
4512 bma.prev.br_startoff = NULLFILEOFF;
4513
4514 error = xfs_bmapi_allocate(&bma);
4515 if (error)
4516 goto out_finish;
4517
4518 error = -ENOSPC;
4519 if (WARN_ON_ONCE(bma.blkno == NULLFSBLOCK))
4520 goto out_finish;
4521 error = -EFSCORRUPTED;
4522 if (WARN_ON_ONCE(!bma.got.br_startblock && !XFS_IS_REALTIME_INODE(ip)))
4523 goto out_finish;
4524
Christoph Hellwig125851a2019-02-15 08:02:49 -08004525 XFS_STATS_ADD(mp, xs_xstrat_bytes, XFS_FSB_TO_B(mp, bma.length));
4526 XFS_STATS_INC(mp, xs_xstrat_quick);
4527
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004528 ASSERT(!isnullstartblock(bma.got.br_startblock));
4529 *imap = bma.got;
Christoph Hellwig491ce612019-02-15 08:02:49 -08004530 *seq = READ_ONCE(ifp->if_seq);
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004531
Darrick J. Wong74b4c5d2019-08-26 17:06:04 -07004532 if (whichfork == XFS_COW_FORK)
4533 xfs_refcount_alloc_cow_extent(tp, bma.blkno, bma.length);
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004534
4535 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur, &bma.logflags,
4536 whichfork);
Christoph Hellwig491ce612019-02-15 08:02:49 -08004537 if (error)
4538 goto out_finish;
4539
4540 xfs_bmapi_finish(&bma, whichfork, 0);
4541 error = xfs_trans_commit(tp);
4542 xfs_iunlock(ip, XFS_ILOCK_EXCL);
4543 return error;
4544
Christoph Hellwigd8ae82e2019-02-15 08:02:48 -08004545out_finish:
4546 xfs_bmapi_finish(&bma, whichfork, error);
Christoph Hellwig491ce612019-02-15 08:02:49 -08004547out_trans_cancel:
4548 xfs_trans_cancel(tp);
4549 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Brian Foster627209f2019-02-01 09:14:23 -08004550 return error;
4551}
4552
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004553int
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004554xfs_bmapi_remap(
4555 struct xfs_trans *tp,
4556 struct xfs_inode *ip,
4557 xfs_fileoff_t bno,
4558 xfs_filblks_t len,
4559 xfs_fsblock_t startblock,
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004560 int flags)
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004561{
4562 struct xfs_mount *mp = ip->i_mount;
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004563 struct xfs_ifork *ifp;
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004564 struct xfs_btree_cur *cur = NULL;
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004565 struct xfs_bmbt_irec got;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004566 struct xfs_iext_cursor icur;
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004567 int whichfork = xfs_bmapi_whichfork(flags);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004568 int logflags = 0, error;
4569
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004570 ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004571 ASSERT(len > 0);
4572 ASSERT(len <= (xfs_filblks_t)MAXEXTLEN);
4573 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Darrick J. Wong7644bd92018-05-14 06:34:35 -07004574 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC |
4575 XFS_BMAPI_NORMAP)));
4576 ASSERT((flags & (XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC)) !=
4577 (XFS_BMAPI_ATTRFORK | XFS_BMAPI_PREALLOC));
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004578
4579 if (unlikely(XFS_TEST_ERROR(
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004580 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4581 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07004582 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004583 XFS_ERROR_REPORT("xfs_bmapi_remap", XFS_ERRLEVEL_LOW, mp);
4584 return -EFSCORRUPTED;
4585 }
4586
4587 if (XFS_FORCED_SHUTDOWN(mp))
4588 return -EIO;
4589
4590 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004591 error = xfs_iread_extents(tp, ip, whichfork);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004592 if (error)
4593 return error;
4594 }
4595
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004596 if (xfs_iext_lookup_extent(ip, ifp, bno, &icur, &got)) {
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004597 /* make sure we only reflink into a hole. */
4598 ASSERT(got.br_startoff > bno);
4599 ASSERT(got.br_startoff - bno >= len);
4600 }
4601
Christoph Hellwigbf8eadb2017-04-11 16:45:56 -07004602 ip->i_d.di_nblocks += len;
4603 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004604
4605 if (ifp->if_flags & XFS_IFBROOT) {
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004606 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004607 cur->bc_private.b.flags = 0;
4608 }
4609
4610 got.br_startoff = bno;
4611 got.br_startblock = startblock;
4612 got.br_blockcount = len;
Darrick J. Wong7644bd92018-05-14 06:34:35 -07004613 if (flags & XFS_BMAPI_PREALLOC)
4614 got.br_state = XFS_EXT_UNWRITTEN;
4615 else
4616 got.br_state = XFS_EXT_NORM;
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004617
Darrick J. Wong7cf199b2018-05-14 06:34:34 -07004618 error = xfs_bmap_add_extent_hole_real(tp, ip, whichfork, &icur,
Brian Foster92f9da32018-07-11 22:26:28 -07004619 &cur, &got, &logflags, flags);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004620 if (error)
4621 goto error0;
4622
Christoph Hellwigb101e332019-02-15 08:02:47 -08004623 error = xfs_bmap_btree_to_extents(tp, ip, cur, &logflags, whichfork);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004624
4625error0:
4626 if (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS)
4627 logflags &= ~XFS_ILOG_DEXT;
4628 else if (ip->i_d.di_format != XFS_DINODE_FMT_BTREE)
4629 logflags &= ~XFS_ILOG_DBROOT;
4630
4631 if (logflags)
4632 xfs_trans_log_inode(tp, ip, logflags);
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -07004633 if (cur)
4634 xfs_btree_del_cursor(cur, error);
Christoph Hellwig6ebd5a42017-04-11 16:45:55 -07004635 return error;
4636}
4637
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638/*
Brian Fostera9bd24a2016-03-15 11:42:46 +11004639 * When a delalloc extent is split (e.g., due to a hole punch), the original
4640 * indlen reservation must be shared across the two new extents that are left
4641 * behind.
4642 *
4643 * Given the original reservation and the worst case indlen for the two new
4644 * extents (as calculated by xfs_bmap_worst_indlen()), split the original
Brian Fosterd34999c2016-03-15 11:42:47 +11004645 * reservation fairly across the two new extents. If necessary, steal available
4646 * blocks from a deleted extent to make up a reservation deficiency (e.g., if
4647 * ores == 1). The number of stolen blocks is returned. The availability and
4648 * subsequent accounting of stolen blocks is the responsibility of the caller.
Brian Fostera9bd24a2016-03-15 11:42:46 +11004649 */
Brian Fosterd34999c2016-03-15 11:42:47 +11004650static xfs_filblks_t
Brian Fostera9bd24a2016-03-15 11:42:46 +11004651xfs_bmap_split_indlen(
4652 xfs_filblks_t ores, /* original res. */
4653 xfs_filblks_t *indlen1, /* ext1 worst indlen */
Brian Fosterd34999c2016-03-15 11:42:47 +11004654 xfs_filblks_t *indlen2, /* ext2 worst indlen */
4655 xfs_filblks_t avail) /* stealable blocks */
Brian Fostera9bd24a2016-03-15 11:42:46 +11004656{
4657 xfs_filblks_t len1 = *indlen1;
4658 xfs_filblks_t len2 = *indlen2;
4659 xfs_filblks_t nres = len1 + len2; /* new total res. */
Brian Fosterd34999c2016-03-15 11:42:47 +11004660 xfs_filblks_t stolen = 0;
Brian Foster75d65362017-02-13 22:48:30 -08004661 xfs_filblks_t resfactor;
Brian Fostera9bd24a2016-03-15 11:42:46 +11004662
4663 /*
Brian Fosterd34999c2016-03-15 11:42:47 +11004664 * Steal as many blocks as we can to try and satisfy the worst case
4665 * indlen for both new extents.
4666 */
Brian Foster75d65362017-02-13 22:48:30 -08004667 if (ores < nres && avail)
4668 stolen = XFS_FILBLKS_MIN(nres - ores, avail);
4669 ores += stolen;
4670
4671 /* nothing else to do if we've satisfied the new reservation */
4672 if (ores >= nres)
4673 return stolen;
Brian Fosterd34999c2016-03-15 11:42:47 +11004674
4675 /*
Brian Foster75d65362017-02-13 22:48:30 -08004676 * We can't meet the total required reservation for the two extents.
4677 * Calculate the percent of the overall shortage between both extents
4678 * and apply this percentage to each of the requested indlen values.
4679 * This distributes the shortage fairly and reduces the chances that one
4680 * of the two extents is left with nothing when extents are repeatedly
4681 * split.
Brian Fostera9bd24a2016-03-15 11:42:46 +11004682 */
Brian Foster75d65362017-02-13 22:48:30 -08004683 resfactor = (ores * 100);
4684 do_div(resfactor, nres);
4685 len1 *= resfactor;
4686 do_div(len1, 100);
4687 len2 *= resfactor;
4688 do_div(len2, 100);
4689 ASSERT(len1 + len2 <= ores);
4690 ASSERT(len1 < *indlen1 && len2 < *indlen2);
4691
4692 /*
4693 * Hand out the remainder to each extent. If one of the two reservations
4694 * is zero, we want to make sure that one gets a block first. The loop
4695 * below starts with len1, so hand len2 a block right off the bat if it
4696 * is zero.
4697 */
4698 ores -= (len1 + len2);
4699 ASSERT((*indlen1 - len1) + (*indlen2 - len2) >= ores);
4700 if (ores && !len2 && *indlen2) {
4701 len2++;
4702 ores--;
4703 }
4704 while (ores) {
4705 if (len1 < *indlen1) {
4706 len1++;
4707 ores--;
Brian Fostera9bd24a2016-03-15 11:42:46 +11004708 }
Brian Foster75d65362017-02-13 22:48:30 -08004709 if (!ores)
Brian Fostera9bd24a2016-03-15 11:42:46 +11004710 break;
Brian Foster75d65362017-02-13 22:48:30 -08004711 if (len2 < *indlen2) {
4712 len2++;
4713 ores--;
Brian Fostera9bd24a2016-03-15 11:42:46 +11004714 }
4715 }
4716
4717 *indlen1 = len1;
4718 *indlen2 = len2;
Brian Fosterd34999c2016-03-15 11:42:47 +11004719
4720 return stolen;
Brian Fostera9bd24a2016-03-15 11:42:46 +11004721}
4722
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004723int
4724xfs_bmap_del_extent_delay(
4725 struct xfs_inode *ip,
4726 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004727 struct xfs_iext_cursor *icur,
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004728 struct xfs_bmbt_irec *got,
4729 struct xfs_bmbt_irec *del)
4730{
4731 struct xfs_mount *mp = ip->i_mount;
4732 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
4733 struct xfs_bmbt_irec new;
4734 int64_t da_old, da_new, da_diff = 0;
4735 xfs_fileoff_t del_endoff, got_endoff;
4736 xfs_filblks_t got_indlen, new_indlen, stolen;
Christoph Hellwig060ea652017-10-19 11:02:29 -07004737 int state = xfs_bmap_fork_to_state(whichfork);
4738 int error = 0;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004739 bool isrt;
4740
4741 XFS_STATS_INC(mp, xs_del_exlist);
4742
4743 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
4744 del_endoff = del->br_startoff + del->br_blockcount;
4745 got_endoff = got->br_startoff + got->br_blockcount;
4746 da_old = startblockval(got->br_startblock);
4747 da_new = 0;
4748
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004749 ASSERT(del->br_blockcount > 0);
4750 ASSERT(got->br_startoff <= del->br_startoff);
4751 ASSERT(got_endoff >= del_endoff);
4752
4753 if (isrt) {
Eric Sandeen4f1adf32017-04-19 15:19:32 -07004754 uint64_t rtexts = XFS_FSB_TO_B(mp, del->br_blockcount);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004755
4756 do_div(rtexts, mp->m_sb.sb_rextsize);
4757 xfs_mod_frextents(mp, rtexts);
4758 }
4759
4760 /*
4761 * Update the inode delalloc counter now and wait to update the
4762 * sb counters as we might have to borrow some blocks for the
4763 * indirect block accounting.
4764 */
Darrick J. Wong4fd29ec42016-11-08 11:59:26 +11004765 error = xfs_trans_reserve_quota_nblks(NULL, ip,
4766 -((long)del->br_blockcount), 0,
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004767 isrt ? XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
Darrick J. Wong4fd29ec42016-11-08 11:59:26 +11004768 if (error)
4769 return error;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004770 ip->i_delayed_blks -= del->br_blockcount;
4771
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004772 if (got->br_startoff == del->br_startoff)
Christoph Hellwig0173c682017-10-17 14:16:22 -07004773 state |= BMAP_LEFT_FILLING;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004774 if (got_endoff == del_endoff)
Christoph Hellwig0173c682017-10-17 14:16:22 -07004775 state |= BMAP_RIGHT_FILLING;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004776
Christoph Hellwig0173c682017-10-17 14:16:22 -07004777 switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) {
4778 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004779 /*
4780 * Matches the whole extent. Delete the entry.
4781 */
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07004782 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004783 xfs_iext_prev(ifp, icur);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004784 break;
Christoph Hellwig0173c682017-10-17 14:16:22 -07004785 case BMAP_LEFT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004786 /*
4787 * Deleting the first part of the extent.
4788 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004789 got->br_startoff = del_endoff;
4790 got->br_blockcount -= del->br_blockcount;
4791 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip,
4792 got->br_blockcount), da_old);
4793 got->br_startblock = nullstartblock((int)da_new);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004794 xfs_iext_update_extent(ip, state, icur, got);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004795 break;
Christoph Hellwig0173c682017-10-17 14:16:22 -07004796 case BMAP_RIGHT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004797 /*
4798 * Deleting the last part of the extent.
4799 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004800 got->br_blockcount = got->br_blockcount - del->br_blockcount;
4801 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip,
4802 got->br_blockcount), da_old);
4803 got->br_startblock = nullstartblock((int)da_new);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004804 xfs_iext_update_extent(ip, state, icur, got);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004805 break;
4806 case 0:
4807 /*
4808 * Deleting the middle of the extent.
4809 *
4810 * Distribute the original indlen reservation across the two new
4811 * extents. Steal blocks from the deleted extent if necessary.
4812 * Stealing blocks simply fudges the fdblocks accounting below.
4813 * Warn if either of the new indlen reservations is zero as this
4814 * can lead to delalloc problems.
4815 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004816 got->br_blockcount = del->br_startoff - got->br_startoff;
4817 got_indlen = xfs_bmap_worst_indlen(ip, got->br_blockcount);
4818
4819 new.br_blockcount = got_endoff - del_endoff;
4820 new_indlen = xfs_bmap_worst_indlen(ip, new.br_blockcount);
4821
4822 WARN_ON_ONCE(!got_indlen || !new_indlen);
4823 stolen = xfs_bmap_split_indlen(da_old, &got_indlen, &new_indlen,
4824 del->br_blockcount);
4825
4826 got->br_startblock = nullstartblock((int)got_indlen);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004827
4828 new.br_startoff = del_endoff;
4829 new.br_state = got->br_state;
4830 new.br_startblock = nullstartblock((int)new_indlen);
4831
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004832 xfs_iext_update_extent(ip, state, icur, got);
4833 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07004834 xfs_iext_insert(ip, icur, &new, state);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004835
4836 da_new = got_indlen + new_indlen - stolen;
4837 del->br_blockcount -= stolen;
4838 break;
4839 }
4840
4841 ASSERT(da_old >= da_new);
4842 da_diff = da_old - da_new;
4843 if (!isrt)
4844 da_diff += del->br_blockcount;
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07004845 if (da_diff) {
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004846 xfs_mod_fdblocks(mp, da_diff, false);
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07004847 xfs_mod_delalloc(mp, -da_diff);
4848 }
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004849 return error;
4850}
4851
4852void
4853xfs_bmap_del_extent_cow(
4854 struct xfs_inode *ip,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004855 struct xfs_iext_cursor *icur,
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004856 struct xfs_bmbt_irec *got,
4857 struct xfs_bmbt_irec *del)
4858{
4859 struct xfs_mount *mp = ip->i_mount;
4860 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
4861 struct xfs_bmbt_irec new;
4862 xfs_fileoff_t del_endoff, got_endoff;
4863 int state = BMAP_COWFORK;
4864
4865 XFS_STATS_INC(mp, xs_del_exlist);
4866
4867 del_endoff = del->br_startoff + del->br_blockcount;
4868 got_endoff = got->br_startoff + got->br_blockcount;
4869
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004870 ASSERT(del->br_blockcount > 0);
4871 ASSERT(got->br_startoff <= del->br_startoff);
4872 ASSERT(got_endoff >= del_endoff);
4873 ASSERT(!isnullstartblock(got->br_startblock));
4874
4875 if (got->br_startoff == del->br_startoff)
Christoph Hellwig0173c682017-10-17 14:16:22 -07004876 state |= BMAP_LEFT_FILLING;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004877 if (got_endoff == del_endoff)
Christoph Hellwig0173c682017-10-17 14:16:22 -07004878 state |= BMAP_RIGHT_FILLING;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004879
Christoph Hellwig0173c682017-10-17 14:16:22 -07004880 switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) {
4881 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004882 /*
4883 * Matches the whole extent. Delete the entry.
4884 */
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07004885 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004886 xfs_iext_prev(ifp, icur);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004887 break;
Christoph Hellwig0173c682017-10-17 14:16:22 -07004888 case BMAP_LEFT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004889 /*
4890 * Deleting the first part of the extent.
4891 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004892 got->br_startoff = del_endoff;
4893 got->br_blockcount -= del->br_blockcount;
4894 got->br_startblock = del->br_startblock + del->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004895 xfs_iext_update_extent(ip, state, icur, got);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004896 break;
Christoph Hellwig0173c682017-10-17 14:16:22 -07004897 case BMAP_RIGHT_FILLING:
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004898 /*
4899 * Deleting the last part of the extent.
4900 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004901 got->br_blockcount -= del->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004902 xfs_iext_update_extent(ip, state, icur, got);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004903 break;
4904 case 0:
4905 /*
4906 * Deleting the middle of the extent.
4907 */
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004908 got->br_blockcount = del->br_startoff - got->br_startoff;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004909
4910 new.br_startoff = del_endoff;
4911 new.br_blockcount = got_endoff - del_endoff;
4912 new.br_state = got->br_state;
4913 new.br_startblock = del->br_startblock + del->br_blockcount;
4914
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004915 xfs_iext_update_extent(ip, state, icur, got);
4916 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07004917 xfs_iext_insert(ip, icur, &new, state);
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004918 break;
4919 }
Darrick J. Wong4b4c1322018-01-19 09:05:48 -08004920 ip->i_delayed_blks -= del->br_blockcount;
Christoph Hellwigfa5c8362016-10-20 15:54:14 +11004921}
4922
Brian Fostera9bd24a2016-03-15 11:42:46 +11004923/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11004924 * Called by xfs_bmapi to update file extent records and the btree
Christoph Hellwige1d75532017-10-17 14:16:21 -07004925 * after removing space.
Dave Chinner9e5987a72013-02-25 12:31:26 +11004926 */
4927STATIC int /* error */
Christoph Hellwige1d75532017-10-17 14:16:21 -07004928xfs_bmap_del_extent_real(
Dave Chinner9e5987a72013-02-25 12:31:26 +11004929 xfs_inode_t *ip, /* incore inode pointer */
4930 xfs_trans_t *tp, /* current transaction pointer */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004931 struct xfs_iext_cursor *icur,
Dave Chinner9e5987a72013-02-25 12:31:26 +11004932 xfs_btree_cur_t *cur, /* if null, not a btree */
4933 xfs_bmbt_irec_t *del, /* data to remove from extents */
4934 int *logflagsp, /* inode logging flags */
Darrick J. Wong4847acf2016-10-03 09:11:27 -07004935 int whichfork, /* data or attr fork */
4936 int bflags) /* bmapi flags */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004937{
Dave Chinner9e5987a72013-02-25 12:31:26 +11004938 xfs_fsblock_t del_endblock=0; /* first block past del */
4939 xfs_fileoff_t del_endoff; /* first offset past del */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004940 int do_fx; /* free extent at end of routine */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004941 int error; /* error return value */
Christoph Hellwig1b24b632017-10-17 14:16:22 -07004942 int flags = 0;/* inode logging flags */
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07004943 struct xfs_bmbt_irec got; /* current extent entry */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004944 xfs_fileoff_t got_endoff; /* first offset past got */
4945 int i; /* temp state */
Christoph Hellwig3ba738d2018-07-17 16:51:50 -07004946 struct xfs_ifork *ifp; /* inode fork pointer */
Dave Chinner9e5987a72013-02-25 12:31:26 +11004947 xfs_mount_t *mp; /* mount structure */
4948 xfs_filblks_t nblks; /* quota/sb block count */
4949 xfs_bmbt_irec_t new; /* new record to be inserted */
4950 /* REFERENCED */
4951 uint qfield; /* quota field to update */
Christoph Hellwig060ea652017-10-19 11:02:29 -07004952 int state = xfs_bmap_fork_to_state(whichfork);
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07004953 struct xfs_bmbt_irec old;
Dave Chinner9e5987a72013-02-25 12:31:26 +11004954
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11004955 mp = ip->i_mount;
4956 XFS_STATS_INC(mp, xs_del_exlist);
Dave Chinner9e5987a72013-02-25 12:31:26 +11004957
Dave Chinner9e5987a72013-02-25 12:31:26 +11004958 ifp = XFS_IFORK_PTR(ip, whichfork);
Dave Chinner9e5987a72013-02-25 12:31:26 +11004959 ASSERT(del->br_blockcount > 0);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07004960 xfs_iext_get_extent(ifp, icur, &got);
Dave Chinner9e5987a72013-02-25 12:31:26 +11004961 ASSERT(got.br_startoff <= del->br_startoff);
4962 del_endoff = del->br_startoff + del->br_blockcount;
4963 got_endoff = got.br_startoff + got.br_blockcount;
4964 ASSERT(got_endoff >= del_endoff);
Christoph Hellwige1d75532017-10-17 14:16:21 -07004965 ASSERT(!isnullstartblock(got.br_startblock));
Dave Chinner9e5987a72013-02-25 12:31:26 +11004966 qfield = 0;
4967 error = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +11004968
Christoph Hellwig1b24b632017-10-17 14:16:22 -07004969 /*
4970 * If it's the case where the directory code is running with no block
4971 * reservation, and the deleted block is in the middle of its extent,
4972 * and the resulting insert of an extent would cause transformation to
4973 * btree format, then reject it. The calling code will then swap blocks
4974 * around instead. We have to do this now, rather than waiting for the
4975 * conversion to btree format, since the transaction will be dirty then.
4976 */
4977 if (tp->t_blk_res == 0 &&
4978 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
4979 XFS_IFORK_NEXTENTS(ip, whichfork) >=
4980 XFS_IFORK_MAXEXT(ip, whichfork) &&
4981 del->br_startoff > got.br_startoff && del_endoff < got_endoff)
4982 return -ENOSPC;
4983
4984 flags = XFS_ILOG_CORE;
Christoph Hellwige1d75532017-10-17 14:16:21 -07004985 if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) {
4986 xfs_fsblock_t bno;
4987 xfs_filblks_t len;
Dave Chinner0703a8e2018-06-08 09:54:22 -07004988 xfs_extlen_t mod;
Christoph Hellwige1d75532017-10-17 14:16:21 -07004989
Dave Chinner0703a8e2018-06-08 09:54:22 -07004990 bno = div_u64_rem(del->br_startblock, mp->m_sb.sb_rextsize,
4991 &mod);
4992 ASSERT(mod == 0);
4993 len = div_u64_rem(del->br_blockcount, mp->m_sb.sb_rextsize,
4994 &mod);
4995 ASSERT(mod == 0);
4996
Christoph Hellwige1d75532017-10-17 14:16:21 -07004997 error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len);
4998 if (error)
4999 goto done;
Dave Chinner9e5987a72013-02-25 12:31:26 +11005000 do_fx = 0;
Christoph Hellwige1d75532017-10-17 14:16:21 -07005001 nblks = len * mp->m_sb.sb_rextsize;
5002 qfield = XFS_TRANS_DQ_RTBCOUNT;
5003 } else {
5004 do_fx = 1;
5005 nblks = del->br_blockcount;
5006 qfield = XFS_TRANS_DQ_BCOUNT;
5007 }
5008
5009 del_endblock = del->br_startblock + del->br_blockcount;
5010 if (cur) {
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005011 error = xfs_bmbt_lookup_eq(cur, &got, &i);
Christoph Hellwige1d75532017-10-17 14:16:21 -07005012 if (error)
5013 goto done;
5014 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005015 }
Darrick J. Wong340785c2016-08-03 11:33:42 +10005016
Christoph Hellwig491f6f8a2017-10-17 14:16:23 -07005017 if (got.br_startoff == del->br_startoff)
5018 state |= BMAP_LEFT_FILLING;
5019 if (got_endoff == del_endoff)
5020 state |= BMAP_RIGHT_FILLING;
5021
5022 switch (state & (BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING)) {
5023 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Dave Chinner9e5987a72013-02-25 12:31:26 +11005024 /*
5025 * Matches the whole extent. Delete the entry.
5026 */
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07005027 xfs_iext_remove(ip, icur, state);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005028 xfs_iext_prev(ifp, icur);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005029 XFS_IFORK_NEXT_SET(ip, whichfork,
5030 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
5031 flags |= XFS_ILOG_CORE;
5032 if (!cur) {
5033 flags |= xfs_ilog_fext(whichfork);
5034 break;
5035 }
5036 if ((error = xfs_btree_delete(cur, &i)))
5037 goto done;
Eric Sandeenc29aad42015-02-23 22:39:08 +11005038 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005039 break;
Christoph Hellwig491f6f8a2017-10-17 14:16:23 -07005040 case BMAP_LEFT_FILLING:
Dave Chinner9e5987a72013-02-25 12:31:26 +11005041 /*
5042 * Deleting the first part of the extent.
5043 */
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005044 got.br_startoff = del_endoff;
5045 got.br_startblock = del_endblock;
5046 got.br_blockcount -= del->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005047 xfs_iext_update_extent(ip, state, icur, &got);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005048 if (!cur) {
5049 flags |= xfs_ilog_fext(whichfork);
5050 break;
5051 }
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005052 error = xfs_bmbt_update(cur, &got);
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005053 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11005054 goto done;
5055 break;
Christoph Hellwig491f6f8a2017-10-17 14:16:23 -07005056 case BMAP_RIGHT_FILLING:
Dave Chinner9e5987a72013-02-25 12:31:26 +11005057 /*
5058 * Deleting the last part of the extent.
5059 */
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005060 got.br_blockcount -= del->br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005061 xfs_iext_update_extent(ip, state, icur, &got);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005062 if (!cur) {
5063 flags |= xfs_ilog_fext(whichfork);
5064 break;
5065 }
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005066 error = xfs_bmbt_update(cur, &got);
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005067 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11005068 goto done;
5069 break;
Dave Chinner9e5987a72013-02-25 12:31:26 +11005070 case 0:
5071 /*
5072 * Deleting the middle of the extent.
5073 */
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005074 old = got;
Christoph Hellwigca5d8e5b2017-10-19 11:04:44 -07005075
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005076 got.br_blockcount = del->br_startoff - got.br_startoff;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005077 xfs_iext_update_extent(ip, state, icur, &got);
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005078
Dave Chinner9e5987a72013-02-25 12:31:26 +11005079 new.br_startoff = del_endoff;
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005080 new.br_blockcount = got_endoff - del_endoff;
Dave Chinner9e5987a72013-02-25 12:31:26 +11005081 new.br_state = got.br_state;
Christoph Hellwige1d75532017-10-17 14:16:21 -07005082 new.br_startblock = del_endblock;
Christoph Hellwig48fd52b2017-10-17 14:16:23 -07005083
Christoph Hellwige1d75532017-10-17 14:16:21 -07005084 flags |= XFS_ILOG_CORE;
5085 if (cur) {
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005086 error = xfs_bmbt_update(cur, &got);
Christoph Hellwige1d75532017-10-17 14:16:21 -07005087 if (error)
5088 goto done;
5089 error = xfs_btree_increment(cur, 0, &i);
5090 if (error)
5091 goto done;
5092 cur->bc_rec.b = new;
5093 error = xfs_btree_insert(cur, &i);
5094 if (error && error != -ENOSPC)
5095 goto done;
5096 /*
5097 * If get no-space back from btree insert, it tried a
5098 * split, and we have a zero block reservation. Fix up
5099 * our state and return the error.
5100 */
5101 if (error == -ENOSPC) {
5102 /*
5103 * Reset the cursor, don't trust it after any
5104 * insert operation.
5105 */
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005106 error = xfs_bmbt_lookup_eq(cur, &got, &i);
Christoph Hellwige1d75532017-10-17 14:16:21 -07005107 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11005108 goto done;
Christoph Hellwige1d75532017-10-17 14:16:21 -07005109 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
5110 /*
5111 * Update the btree record back
5112 * to the original value.
5113 */
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005114 error = xfs_bmbt_update(cur, &old);
Christoph Hellwige1d75532017-10-17 14:16:21 -07005115 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11005116 goto done;
5117 /*
Christoph Hellwige1d75532017-10-17 14:16:21 -07005118 * Reset the extent record back
5119 * to the original value.
Dave Chinner9e5987a72013-02-25 12:31:26 +11005120 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005121 xfs_iext_update_extent(ip, state, icur, &old);
Christoph Hellwige1d75532017-10-17 14:16:21 -07005122 flags = 0;
5123 error = -ENOSPC;
5124 goto done;
5125 }
5126 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, done);
5127 } else
5128 flags |= xfs_ilog_fext(whichfork);
5129 XFS_IFORK_NEXT_SET(ip, whichfork,
5130 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005131 xfs_iext_next(ifp, icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07005132 xfs_iext_insert(ip, icur, &new, state);
Dave Chinner9e5987a72013-02-25 12:31:26 +11005133 break;
5134 }
Darrick J. Wong9c194642016-08-03 12:16:05 +10005135
5136 /* remove reverse mapping */
Darrick J. Wongbc46ac62019-08-26 17:06:03 -07005137 xfs_rmap_unmap_extent(tp, ip, whichfork, del);
Darrick J. Wong9c194642016-08-03 12:16:05 +10005138
Dave Chinner9e5987a72013-02-25 12:31:26 +11005139 /*
5140 * If we need to, add to list of extents to delete.
5141 */
Darrick J. Wong4847acf2016-10-03 09:11:27 -07005142 if (do_fx && !(bflags & XFS_BMAPI_REMAP)) {
Darrick J. Wong62aab202016-10-03 09:11:23 -07005143 if (xfs_is_reflink_inode(ip) && whichfork == XFS_DATA_FORK) {
Darrick J. Wong74b4c5d2019-08-26 17:06:04 -07005144 xfs_refcount_decrease_extent(tp, del);
Brian Fosterfcb762f2018-05-09 08:45:04 -07005145 } else {
Brian Foster0f37d172018-08-01 07:20:34 -07005146 __xfs_bmap_add_free(tp, del->br_startblock,
Brian Foster4e529332018-05-10 09:35:42 -07005147 del->br_blockcount, NULL,
5148 (bflags & XFS_BMAPI_NODISCARD) ||
5149 del->br_state == XFS_EXT_UNWRITTEN);
Brian Fosterfcb762f2018-05-09 08:45:04 -07005150 }
Darrick J. Wong62aab202016-10-03 09:11:23 -07005151 }
5152
Dave Chinner9e5987a72013-02-25 12:31:26 +11005153 /*
5154 * Adjust inode # blocks in the file.
5155 */
5156 if (nblks)
5157 ip->i_d.di_nblocks -= nblks;
5158 /*
5159 * Adjust quota data.
5160 */
Darrick J. Wong4847acf2016-10-03 09:11:27 -07005161 if (qfield && !(bflags & XFS_BMAPI_REMAP))
Dave Chinner9e5987a72013-02-25 12:31:26 +11005162 xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks);
5163
Dave Chinner9e5987a72013-02-25 12:31:26 +11005164done:
5165 *logflagsp = flags;
5166 return error;
5167}
5168
5169/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 * Unmap (remove) blocks from a file.
5171 * If nexts is nonzero then the number of extents to remove is limited to
5172 * that value. If not all extents in the block range can be removed then
5173 * *done is set.
5174 */
5175int /* error */
Darrick J. Wong44535932016-10-03 09:11:29 -07005176__xfs_bunmapi(
Brian Fosterccd9d912018-07-11 22:26:13 -07005177 struct xfs_trans *tp, /* transaction pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 struct xfs_inode *ip, /* incore inode */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005179 xfs_fileoff_t start, /* first file offset deleted */
Darrick J. Wong44535932016-10-03 09:11:29 -07005180 xfs_filblks_t *rlen, /* i/o: amount remaining */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 int flags, /* misc flags */
Brian Foster2af52842018-07-11 22:26:25 -07005182 xfs_extnum_t nexts) /* number of extents max */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183{
Brian Fosterccd9d912018-07-11 22:26:13 -07005184 struct xfs_btree_cur *cur; /* bmap btree cursor */
5185 struct xfs_bmbt_irec del; /* extent being deleted */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 int error; /* error return value */
5187 xfs_extnum_t extno; /* extent number in list */
Brian Fosterccd9d912018-07-11 22:26:13 -07005188 struct xfs_bmbt_irec got; /* current extent record */
Christoph Hellwig3ba738d2018-07-17 16:51:50 -07005189 struct xfs_ifork *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 int isrt; /* freeing in rt area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191 int logflags; /* transaction logging flags */
5192 xfs_extlen_t mod; /* rt extent offset */
Brian Fosterccd9d912018-07-11 22:26:13 -07005193 struct xfs_mount *mp; /* mount structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194 int tmp_logflags; /* partial logging flags */
5195 int wasdel; /* was a delayed alloc extent */
5196 int whichfork; /* data or attribute fork */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197 xfs_fsblock_t sum;
Darrick J. Wong44535932016-10-03 09:11:29 -07005198 xfs_filblks_t len = *rlen; /* length to unmap in file */
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005199 xfs_fileoff_t max_len;
Christoph Hellwig5b094d62017-07-18 11:16:51 -07005200 xfs_agnumber_t prev_agno = NULLAGNUMBER, agno;
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005201 xfs_fileoff_t end;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005202 struct xfs_iext_cursor icur;
5203 bool done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005205 trace_xfs_bunmap(ip, start, len, flags, _RET_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00005206
Darrick J. Wong3993bae2016-10-03 09:11:32 -07005207 whichfork = xfs_bmapi_whichfork(flags);
5208 ASSERT(whichfork != XFS_COW_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 ifp = XFS_IFORK_PTR(ip, whichfork);
5210 if (unlikely(
5211 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5212 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
5213 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW,
5214 ip->i_mount);
Dave Chinner24513372014-06-25 14:58:08 +10005215 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 }
5217 mp = ip->i_mount;
5218 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10005219 return -EIO;
Christoph Hellwig54893272011-05-11 15:04:03 +00005220
Christoph Hellwigeef334e2013-12-06 12:30:17 -08005221 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 ASSERT(len > 0);
5223 ASSERT(nexts >= 0);
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005224
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005225 /*
5226 * Guesstimate how many blocks we can unmap without running the risk of
5227 * blowing out the transaction with a mix of EFIs and reflink
5228 * adjustments.
5229 */
Darrick J. Wong8c57b882017-12-10 18:03:53 -08005230 if (tp && xfs_is_reflink_inode(ip) && whichfork == XFS_DATA_FORK)
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005231 max_len = min(len, xfs_refcount_max_unmap(tp->t_log_res));
5232 else
5233 max_len = len;
5234
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5236 (error = xfs_iread_extents(tp, ip, whichfork)))
5237 return error;
Eric Sandeen5d829302016-11-08 12:59:42 +11005238 if (xfs_iext_count(ifp) == 0) {
Darrick J. Wong44535932016-10-03 09:11:29 -07005239 *rlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 return 0;
5241 }
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11005242 XFS_STATS_INC(mp, xs_blk_unmap);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005243 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
Christoph Hellwigdc560152017-10-23 16:32:39 -07005244 end = start + len;
Christoph Hellwigb4e91812010-06-23 18:11:15 +10005245
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005246 if (!xfs_iext_lookup_extent_before(ip, ifp, &end, &icur, &got)) {
Christoph Hellwigdc560152017-10-23 16:32:39 -07005247 *rlen = 0;
5248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 }
Christoph Hellwigdc560152017-10-23 16:32:39 -07005250 end--;
Christoph Hellwig7efc7942016-11-24 11:39:44 +11005251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 logflags = 0;
5253 if (ifp->if_flags & XFS_IFBROOT) {
5254 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
Christoph Hellwig561f7d12008-10-30 16:53:59 +11005255 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 cur->bc_private.b.flags = 0;
5257 } else
5258 cur = NULL;
Kamal Dasu5575acc2012-02-23 00:41:39 +00005259
5260 if (isrt) {
5261 /*
5262 * Synchronize by locking the bitmap inode.
5263 */
Darrick J. Wongf4a06602016-08-03 11:00:42 +10005264 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL|XFS_ILOCK_RTBITMAP);
Kamal Dasu5575acc2012-02-23 00:41:39 +00005265 xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
Darrick J. Wongf4a06602016-08-03 11:00:42 +10005266 xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL|XFS_ILOCK_RTSUM);
5267 xfs_trans_ijoin(tp, mp->m_rsumip, XFS_ILOCK_EXCL);
Kamal Dasu5575acc2012-02-23 00:41:39 +00005268 }
5269
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 extno = 0;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005271 while (end != (xfs_fileoff_t)-1 && end >= start &&
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005272 (nexts == 0 || extno < nexts) && max_len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 /*
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005274 * Is the found extent after a hole in which end lives?
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275 * Just back up to the previous extent, if so.
5276 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005277 if (got.br_startoff > end &&
5278 !xfs_iext_prev_extent(ifp, &icur, &got)) {
5279 done = true;
5280 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281 }
5282 /*
5283 * Is the last block of this extent before the range
5284 * we're supposed to delete? If so, we're done.
5285 */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005286 end = XFS_FILEOFF_MIN(end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 got.br_startoff + got.br_blockcount - 1);
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005288 if (end < start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 break;
5290 /*
5291 * Then deal with the (possibly delayed) allocated space
5292 * we found.
5293 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 del = got;
Eric Sandeen9d87c312009-01-14 23:22:07 -06005295 wasdel = isnullstartblock(del.br_startblock);
Christoph Hellwig5b094d62017-07-18 11:16:51 -07005296
5297 /*
5298 * Make sure we don't touch multiple AGF headers out of order
5299 * in a single transaction, as that could cause AB-BA deadlocks.
5300 */
5301 if (!wasdel) {
5302 agno = XFS_FSB_TO_AGNO(mp, del.br_startblock);
5303 if (prev_agno != NULLAGNUMBER && prev_agno > agno)
5304 break;
5305 prev_agno = agno;
5306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 if (got.br_startoff < start) {
5308 del.br_startoff = start;
5309 del.br_blockcount -= start - got.br_startoff;
5310 if (!wasdel)
5311 del.br_startblock += start - got.br_startoff;
5312 }
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005313 if (del.br_startoff + del.br_blockcount > end + 1)
5314 del.br_blockcount = end + 1 - del.br_startoff;
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005315
5316 /* How much can we safely unmap? */
5317 if (max_len < del.br_blockcount) {
5318 del.br_startoff += del.br_blockcount - max_len;
5319 if (!wasdel)
5320 del.br_startblock += del.br_blockcount - max_len;
5321 del.br_blockcount = max_len;
5322 }
5323
Dave Chinner0703a8e2018-06-08 09:54:22 -07005324 if (!isrt)
5325 goto delete;
5326
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327 sum = del.br_startblock + del.br_blockcount;
Dave Chinner0703a8e2018-06-08 09:54:22 -07005328 div_u64_rem(sum, mp->m_sb.sb_rextsize, &mod);
5329 if (mod) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 /*
5331 * Realtime extent not lined up at the end.
5332 * The extent could have been split into written
5333 * and unwritten pieces, or we could just be
5334 * unmapping part of it. But we can't really
5335 * get rid of part of a realtime extent.
5336 */
Christoph Hellwigdaa79ba2018-10-18 17:18:58 +11005337 if (del.br_state == XFS_EXT_UNWRITTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 /*
5339 * This piece is unwritten, or we're not
5340 * using unwritten extents. Skip over it.
5341 */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005342 ASSERT(end >= mod);
5343 end -= mod > del.br_blockcount ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 del.br_blockcount : mod;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005345 if (end < got.br_startoff &&
5346 !xfs_iext_prev_extent(ifp, &icur, &got)) {
5347 done = true;
5348 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 }
5350 continue;
5351 }
5352 /*
5353 * It's written, turn it unwritten.
5354 * This is better than zeroing it.
5355 */
5356 ASSERT(del.br_state == XFS_EXT_NORM);
Christoph Hellwiga7e5d032016-03-02 09:58:21 +11005357 ASSERT(tp->t_blk_res > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 /*
5359 * If this spans a realtime extent boundary,
5360 * chop it back to the start of the one we end at.
5361 */
5362 if (del.br_blockcount > mod) {
5363 del.br_startoff += del.br_blockcount - mod;
5364 del.br_startblock += del.br_blockcount - mod;
5365 del.br_blockcount = mod;
5366 }
5367 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005368 error = xfs_bmap_add_extent_unwritten_real(tp, ip,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005369 whichfork, &icur, &cur, &del,
Brian Foster92f9da32018-07-11 22:26:28 -07005370 &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371 if (error)
5372 goto error0;
5373 goto nodelete;
5374 }
Dave Chinner0703a8e2018-06-08 09:54:22 -07005375 div_u64_rem(del.br_startblock, mp->m_sb.sb_rextsize, &mod);
5376 if (mod) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 /*
5378 * Realtime extent is lined up at the end but not
5379 * at the front. We'll get rid of full extents if
5380 * we can.
5381 */
5382 mod = mp->m_sb.sb_rextsize - mod;
5383 if (del.br_blockcount > mod) {
5384 del.br_blockcount -= mod;
5385 del.br_startoff += mod;
5386 del.br_startblock += mod;
Christoph Hellwigdaa79ba2018-10-18 17:18:58 +11005387 } else if (del.br_startoff == start &&
5388 (del.br_state == XFS_EXT_UNWRITTEN ||
5389 tp->t_blk_res == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 /*
5391 * Can't make it unwritten. There isn't
5392 * a full extent here so just skip it.
5393 */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005394 ASSERT(end >= del.br_blockcount);
5395 end -= del.br_blockcount;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005396 if (got.br_startoff > end &&
5397 !xfs_iext_prev_extent(ifp, &icur, &got)) {
5398 done = true;
5399 break;
5400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401 continue;
5402 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
Christoph Hellwig7efc7942016-11-24 11:39:44 +11005403 struct xfs_bmbt_irec prev;
5404
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 /*
5406 * This one is already unwritten.
5407 * It must have a written left neighbor.
5408 * Unwrite the killed part of that one and
5409 * try again.
5410 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005411 if (!xfs_iext_prev_extent(ifp, &icur, &prev))
5412 ASSERT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 ASSERT(prev.br_state == XFS_EXT_NORM);
Eric Sandeen9d87c312009-01-14 23:22:07 -06005414 ASSERT(!isnullstartblock(prev.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 ASSERT(del.br_startblock ==
5416 prev.br_startblock + prev.br_blockcount);
5417 if (prev.br_startoff < start) {
5418 mod = start - prev.br_startoff;
5419 prev.br_blockcount -= mod;
5420 prev.br_startblock += mod;
5421 prev.br_startoff = start;
5422 }
5423 prev.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005424 error = xfs_bmap_add_extent_unwritten_real(tp,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005425 ip, whichfork, &icur, &cur,
Brian Foster92f9da32018-07-11 22:26:28 -07005426 &prev, &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 if (error)
5428 goto error0;
5429 goto nodelete;
5430 } else {
5431 ASSERT(del.br_state == XFS_EXT_NORM);
5432 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005433 error = xfs_bmap_add_extent_unwritten_real(tp,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005434 ip, whichfork, &icur, &cur,
Brian Foster92f9da32018-07-11 22:26:28 -07005435 &del, &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 if (error)
5437 goto error0;
5438 goto nodelete;
5439 }
5440 }
Nathan Scott06d10dd2005-06-21 15:48:47 +10005441
Dave Chinner0703a8e2018-06-08 09:54:22 -07005442delete:
Brian Fosterb2706a02016-03-15 11:42:46 +11005443 if (wasdel) {
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005444 error = xfs_bmap_del_extent_delay(ip, whichfork, &icur,
Christoph Hellwige1d75532017-10-17 14:16:21 -07005445 &got, &del);
5446 } else {
Brian Foster81ba8f32018-07-11 22:26:16 -07005447 error = xfs_bmap_del_extent_real(ip, tp, &icur, cur,
5448 &del, &tmp_logflags, whichfork,
Christoph Hellwige1d75532017-10-17 14:16:21 -07005449 flags);
5450 logflags |= tmp_logflags;
Christoph Hellwigb213d692017-10-17 14:16:20 -07005451 }
Brian Fosterb2706a02016-03-15 11:42:46 +11005452
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453 if (error)
5454 goto error0;
Brian Fosterb2706a02016-03-15 11:42:46 +11005455
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07005456 max_len -= del.br_blockcount;
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005457 end = del.br_startoff - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458nodelete:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459 /*
5460 * If not done go on to the next (previous) record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461 */
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005462 if (end != (xfs_fileoff_t)-1 && end >= start) {
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005463 if (!xfs_iext_get_extent(ifp, &icur, &got) ||
5464 (got.br_startoff > end &&
5465 !xfs_iext_prev_extent(ifp, &icur, &got))) {
5466 done = true;
5467 break;
Christoph Hellwig00239ac2011-05-11 15:04:08 +00005468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469 extno++;
5470 }
5471 }
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005472 if (done || end == (xfs_fileoff_t)-1 || end < start)
Darrick J. Wong44535932016-10-03 09:11:29 -07005473 *rlen = 0;
5474 else
Christoph Hellwig8280f6e2017-10-17 14:16:21 -07005475 *rlen = end - start + 1;
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005476
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477 /*
5478 * Convert to a btree if necessary.
5479 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005480 if (xfs_bmap_needs_btree(ip, whichfork)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481 ASSERT(cur == NULL);
Brian Foster280253d2018-07-11 22:26:29 -07005482 error = xfs_bmap_extents_to_btree(tp, ip, &cur, 0,
5483 &tmp_logflags, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484 logflags |= tmp_logflags;
Christoph Hellwigb101e332019-02-15 08:02:47 -08005485 } else {
5486 error = xfs_bmap_btree_to_extents(tp, ip, cur, &logflags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 }
Christoph Hellwigb101e332019-02-15 08:02:47 -08005489
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490error0:
5491 /*
5492 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005493 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06005495 if ((logflags & xfs_ilog_fext(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005497 logflags &= ~xfs_ilog_fext(whichfork);
5498 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005500 logflags &= ~xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 /*
5502 * Log inode even in the error case, if the transaction
5503 * is dirty we'll need to shut down the filesystem.
5504 */
5505 if (logflags)
5506 xfs_trans_log_inode(tp, ip, logflags);
5507 if (cur) {
Brian Fostercf612de2018-07-11 22:26:29 -07005508 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509 cur->bc_private.b.allocated = 0;
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -07005510 xfs_btree_del_cursor(cur, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511 }
5512 return error;
5513}
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005514
Darrick J. Wong44535932016-10-03 09:11:29 -07005515/* Unmap a range of a file. */
5516int
5517xfs_bunmapi(
5518 xfs_trans_t *tp,
5519 struct xfs_inode *ip,
5520 xfs_fileoff_t bno,
5521 xfs_filblks_t len,
5522 int flags,
5523 xfs_extnum_t nexts,
Darrick J. Wong44535932016-10-03 09:11:29 -07005524 int *done)
5525{
5526 int error;
5527
Brian Foster2af52842018-07-11 22:26:25 -07005528 error = __xfs_bunmapi(tp, ip, bno, &len, flags, nexts);
Darrick J. Wong44535932016-10-03 09:11:29 -07005529 *done = (len == 0);
5530 return error;
5531}
5532
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005533/*
Brian Fosterddb19e32014-09-23 15:38:09 +10005534 * Determine whether an extent shift can be accomplished by a merge with the
5535 * extent that precedes the target hole of the shift.
5536 */
5537STATIC bool
5538xfs_bmse_can_merge(
5539 struct xfs_bmbt_irec *left, /* preceding extent */
5540 struct xfs_bmbt_irec *got, /* current extent to shift */
5541 xfs_fileoff_t shift) /* shift fsb */
5542{
5543 xfs_fileoff_t startoff;
5544
5545 startoff = got->br_startoff - shift;
5546
5547 /*
5548 * The extent, once shifted, must be adjacent in-file and on-disk with
5549 * the preceding extent.
5550 */
5551 if ((left->br_startoff + left->br_blockcount != startoff) ||
5552 (left->br_startblock + left->br_blockcount != got->br_startblock) ||
5553 (left->br_state != got->br_state) ||
5554 (left->br_blockcount + got->br_blockcount > MAXEXTLEN))
5555 return false;
5556
5557 return true;
5558}
5559
5560/*
5561 * A bmap extent shift adjusts the file offset of an extent to fill a preceding
5562 * hole in the file. If an extent shift would result in the extent being fully
5563 * adjacent to the extent that currently precedes the hole, we can merge with
5564 * the preceding extent rather than do the shift.
5565 *
5566 * This function assumes the caller has verified a shift-by-merge is possible
5567 * with the provided extents via xfs_bmse_can_merge().
5568 */
5569STATIC int
5570xfs_bmse_merge(
Brian Foster0f37d172018-08-01 07:20:34 -07005571 struct xfs_trans *tp,
Brian Fosterddb19e32014-09-23 15:38:09 +10005572 struct xfs_inode *ip,
5573 int whichfork,
5574 xfs_fileoff_t shift, /* shift fsb */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005575 struct xfs_iext_cursor *icur,
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005576 struct xfs_bmbt_irec *got, /* extent to shift */
5577 struct xfs_bmbt_irec *left, /* preceding extent */
Brian Fosterddb19e32014-09-23 15:38:09 +10005578 struct xfs_btree_cur *cur,
Brian Foster0f37d172018-08-01 07:20:34 -07005579 int *logflags) /* output */
Brian Fosterddb19e32014-09-23 15:38:09 +10005580{
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005581 struct xfs_bmbt_irec new;
Brian Fosterddb19e32014-09-23 15:38:09 +10005582 xfs_filblks_t blockcount;
5583 int error, i;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +11005584 struct xfs_mount *mp = ip->i_mount;
Brian Fosterddb19e32014-09-23 15:38:09 +10005585
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005586 blockcount = left->br_blockcount + got->br_blockcount;
Brian Fosterddb19e32014-09-23 15:38:09 +10005587
5588 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
5589 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005590 ASSERT(xfs_bmse_can_merge(left, got, shift));
Brian Fosterddb19e32014-09-23 15:38:09 +10005591
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005592 new = *left;
5593 new.br_blockcount = blockcount;
Brian Fosterddb19e32014-09-23 15:38:09 +10005594
5595 /*
5596 * Update the on-disk extent count, the btree if necessary and log the
5597 * inode.
5598 */
5599 XFS_IFORK_NEXT_SET(ip, whichfork,
5600 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
5601 *logflags |= XFS_ILOG_CORE;
5602 if (!cur) {
5603 *logflags |= XFS_ILOG_DEXT;
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005604 goto done;
Brian Fosterddb19e32014-09-23 15:38:09 +10005605 }
5606
5607 /* lookup and remove the extent to merge */
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005608 error = xfs_bmbt_lookup_eq(cur, got, &i);
Brian Fosterddb19e32014-09-23 15:38:09 +10005609 if (error)
Dave Chinner4db431f2014-12-04 09:42:40 +11005610 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +11005611 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Brian Fosterddb19e32014-09-23 15:38:09 +10005612
5613 error = xfs_btree_delete(cur, &i);
5614 if (error)
Dave Chinner4db431f2014-12-04 09:42:40 +11005615 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +11005616 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Brian Fosterddb19e32014-09-23 15:38:09 +10005617
5618 /* lookup and update size of the previous extent */
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005619 error = xfs_bmbt_lookup_eq(cur, left, &i);
Brian Fosterddb19e32014-09-23 15:38:09 +10005620 if (error)
Dave Chinner4db431f2014-12-04 09:42:40 +11005621 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +11005622 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Brian Fosterddb19e32014-09-23 15:38:09 +10005623
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005624 error = xfs_bmbt_update(cur, &new);
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005625 if (error)
5626 return error;
Brian Fosterddb19e32014-09-23 15:38:09 +10005627
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005628done:
Christoph Hellwigc38ccf52017-11-03 10:34:47 -07005629 xfs_iext_remove(ip, icur, 0);
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005630 xfs_iext_prev(XFS_IFORK_PTR(ip, whichfork), icur);
5631 xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), icur,
5632 &new);
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005633
Darrick J. Wong4cc1ee52017-08-30 16:06:36 -07005634 /* update reverse mapping. rmap functions merge the rmaps for us */
Darrick J. Wongbc46ac62019-08-26 17:06:03 -07005635 xfs_rmap_unmap_extent(tp, ip, whichfork, got);
Darrick J. Wong4cc1ee52017-08-30 16:06:36 -07005636 memcpy(&new, got, sizeof(new));
5637 new.br_startoff = left->br_startoff + left->br_blockcount;
Darrick J. Wongbc46ac62019-08-26 17:06:03 -07005638 xfs_rmap_map_extent(tp, ip, whichfork, &new);
5639 return 0;
Brian Fosterddb19e32014-09-23 15:38:09 +10005640}
5641
Christoph Hellwigbf806282017-10-19 11:07:34 -07005642static int
5643xfs_bmap_shift_update_extent(
Brian Foster0f37d172018-08-01 07:20:34 -07005644 struct xfs_trans *tp,
Christoph Hellwigbf806282017-10-19 11:07:34 -07005645 struct xfs_inode *ip,
5646 int whichfork,
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005647 struct xfs_iext_cursor *icur,
Christoph Hellwigbf806282017-10-19 11:07:34 -07005648 struct xfs_bmbt_irec *got,
5649 struct xfs_btree_cur *cur,
5650 int *logflags,
Christoph Hellwigbf806282017-10-19 11:07:34 -07005651 xfs_fileoff_t startoff)
Brian Fostera979bdf2014-09-23 15:39:04 +10005652{
Christoph Hellwigbf806282017-10-19 11:07:34 -07005653 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005654 struct xfs_bmbt_irec prev = *got;
Christoph Hellwigbf806282017-10-19 11:07:34 -07005655 int error, i;
Brian Fostera979bdf2014-09-23 15:39:04 +10005656
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005657 *logflags |= XFS_ILOG_CORE;
5658
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005659 got->br_startoff = startoff;
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005660
5661 if (cur) {
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005662 error = xfs_bmbt_lookup_eq(cur, &prev, &i);
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005663 if (error)
5664 return error;
5665 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
5666
Christoph Hellwig11f75b32017-10-19 11:08:51 -07005667 error = xfs_bmbt_update(cur, got);
Christoph Hellwig4da6b512017-08-29 15:44:13 -07005668 if (error)
5669 return error;
5670 } else {
5671 *logflags |= XFS_ILOG_DEXT;
5672 }
5673
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005674 xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), icur,
5675 got);
Brian Fostera979bdf2014-09-23 15:39:04 +10005676
Darrick J. Wong9c194642016-08-03 12:16:05 +10005677 /* update reverse mapping */
Darrick J. Wongbc46ac62019-08-26 17:06:03 -07005678 xfs_rmap_unmap_extent(tp, ip, whichfork, &prev);
5679 xfs_rmap_map_extent(tp, ip, whichfork, got);
5680 return 0;
Brian Fostera979bdf2014-09-23 15:39:04 +10005681}
5682
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005683int
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005684xfs_bmap_collapse_extents(
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005685 struct xfs_trans *tp,
5686 struct xfs_inode *ip,
Namjae Jeona904b1c2015-03-25 15:08:56 +11005687 xfs_fileoff_t *next_fsb,
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005688 xfs_fileoff_t offset_shift_fsb,
Brian Foster333f9502018-07-11 22:26:27 -07005689 bool *done)
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005690{
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005691 int whichfork = XFS_DATA_FORK;
5692 struct xfs_mount *mp = ip->i_mount;
5693 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
5694 struct xfs_btree_cur *cur = NULL;
Christoph Hellwigbf806282017-10-19 11:07:34 -07005695 struct xfs_bmbt_irec got, prev;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005696 struct xfs_iext_cursor icur;
Christoph Hellwigbf806282017-10-19 11:07:34 -07005697 xfs_fileoff_t new_startoff;
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005698 int error = 0;
5699 int logflags = 0;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005700
5701 if (unlikely(XFS_TEST_ERROR(
5702 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5703 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07005704 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005705 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10005706 return -EFSCORRUPTED;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005707 }
5708
5709 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10005710 return -EIO;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005711
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005712 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL));
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005713
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005714 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005715 error = xfs_iread_extents(tp, ip, whichfork);
5716 if (error)
5717 return error;
5718 }
5719
Brian Fosterddb19e32014-09-23 15:38:09 +10005720 if (ifp->if_flags & XFS_IFBROOT) {
5721 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Brian Fosterddb19e32014-09-23 15:38:09 +10005722 cur->bc_private.b.flags = 0;
5723 }
5724
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005725 if (!xfs_iext_lookup_extent(ip, ifp, *next_fsb, &icur, &got)) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005726 *done = true;
5727 goto del_cursor;
5728 }
Eric Sandeend41c6172017-11-27 18:23:32 -08005729 XFS_WANT_CORRUPTED_GOTO(mp, !isnullstartblock(got.br_startblock),
5730 del_cursor);
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005731
Christoph Hellwigbf806282017-10-19 11:07:34 -07005732 new_startoff = got.br_startoff - offset_shift_fsb;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005733 if (xfs_iext_peek_prev_extent(ifp, &icur, &prev)) {
Christoph Hellwigbf806282017-10-19 11:07:34 -07005734 if (new_startoff < prev.br_startoff + prev.br_blockcount) {
5735 error = -EINVAL;
5736 goto del_cursor;
5737 }
5738
Christoph Hellwigbf806282017-10-19 11:07:34 -07005739 if (xfs_bmse_can_merge(&prev, &got, offset_shift_fsb)) {
Brian Foster0f37d172018-08-01 07:20:34 -07005740 error = xfs_bmse_merge(tp, ip, whichfork,
5741 offset_shift_fsb, &icur, &got, &prev,
5742 cur, &logflags);
Christoph Hellwigbf806282017-10-19 11:07:34 -07005743 if (error)
5744 goto del_cursor;
5745 goto done;
5746 }
5747 } else {
5748 if (got.br_startoff < offset_shift_fsb) {
5749 error = -EINVAL;
5750 goto del_cursor;
5751 }
5752 }
5753
Brian Foster0f37d172018-08-01 07:20:34 -07005754 error = xfs_bmap_shift_update_extent(tp, ip, whichfork, &icur, &got,
5755 cur, &logflags, new_startoff);
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005756 if (error)
5757 goto del_cursor;
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005758
Christoph Hellwig42630362017-11-03 10:34:41 -07005759done:
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005760 if (!xfs_iext_next_extent(ifp, &icur, &got)) {
5761 *done = true;
5762 goto del_cursor;
Christoph Hellwig40591bd2017-10-19 11:08:51 -07005763 }
5764
Christoph Hellwigbf806282017-10-19 11:07:34 -07005765 *next_fsb = got.br_startoff;
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005766del_cursor:
5767 if (cur)
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -07005768 xfs_btree_del_cursor(cur, error);
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005769 if (logflags)
5770 xfs_trans_log_inode(tp, ip, logflags);
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005771 return error;
5772}
5773
Darrick J. Wongf62cb482018-06-21 23:26:57 -07005774/* Make sure we won't be right-shifting an extent past the maximum bound. */
5775int
5776xfs_bmap_can_insert_extents(
5777 struct xfs_inode *ip,
5778 xfs_fileoff_t off,
5779 xfs_fileoff_t shift)
5780{
5781 struct xfs_bmbt_irec got;
5782 int is_empty;
5783 int error = 0;
5784
5785 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
5786
5787 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
5788 return -EIO;
5789
5790 xfs_ilock(ip, XFS_ILOCK_EXCL);
5791 error = xfs_bmap_last_extent(NULL, ip, XFS_DATA_FORK, &got, &is_empty);
5792 if (!error && !is_empty && got.br_startoff >= off &&
5793 ((got.br_startoff + shift) & BMBT_STARTOFF_MASK) < got.br_startoff)
5794 error = -EINVAL;
5795 xfs_iunlock(ip, XFS_ILOCK_EXCL);
5796
5797 return error;
5798}
5799
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005800int
5801xfs_bmap_insert_extents(
5802 struct xfs_trans *tp,
5803 struct xfs_inode *ip,
5804 xfs_fileoff_t *next_fsb,
5805 xfs_fileoff_t offset_shift_fsb,
5806 bool *done,
Brian Foster333f9502018-07-11 22:26:27 -07005807 xfs_fileoff_t stop_fsb)
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005808{
5809 int whichfork = XFS_DATA_FORK;
5810 struct xfs_mount *mp = ip->i_mount;
5811 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
5812 struct xfs_btree_cur *cur = NULL;
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005813 struct xfs_bmbt_irec got, next;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005814 struct xfs_iext_cursor icur;
Christoph Hellwigbf806282017-10-19 11:07:34 -07005815 xfs_fileoff_t new_startoff;
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005816 int error = 0;
5817 int logflags = 0;
5818
5819 if (unlikely(XFS_TEST_ERROR(
5820 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5821 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
5822 mp, XFS_ERRTAG_BMAPIFORMAT))) {
5823 XFS_ERROR_REPORT(__func__, XFS_ERRLEVEL_LOW, mp);
5824 return -EFSCORRUPTED;
5825 }
5826
5827 if (XFS_FORCED_SHUTDOWN(mp))
5828 return -EIO;
5829
5830 ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL));
5831
5832 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5833 error = xfs_iread_extents(tp, ip, whichfork);
5834 if (error)
5835 return error;
5836 }
5837
5838 if (ifp->if_flags & XFS_IFBROOT) {
5839 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005840 cur->bc_private.b.flags = 0;
5841 }
5842
Namjae Jeona904b1c2015-03-25 15:08:56 +11005843 if (*next_fsb == NULLFSBLOCK) {
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005844 xfs_iext_last(ifp, &icur);
5845 if (!xfs_iext_get_extent(ifp, &icur, &got) ||
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005846 stop_fsb > got.br_startoff) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005847 *done = true;
Namjae Jeona904b1c2015-03-25 15:08:56 +11005848 goto del_cursor;
5849 }
Christoph Hellwig05b7c8a2017-08-29 15:44:12 -07005850 } else {
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005851 if (!xfs_iext_lookup_extent(ip, ifp, *next_fsb, &icur, &got)) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005852 *done = true;
Christoph Hellwig05b7c8a2017-08-29 15:44:12 -07005853 goto del_cursor;
5854 }
Namjae Jeona904b1c2015-03-25 15:08:56 +11005855 }
Eric Sandeend41c6172017-11-27 18:23:32 -08005856 XFS_WANT_CORRUPTED_GOTO(mp, !isnullstartblock(got.br_startblock),
5857 del_cursor);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005858
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005859 if (stop_fsb >= got.br_startoff + got.br_blockcount) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005860 error = -EIO;
5861 goto del_cursor;
Namjae Jeona904b1c2015-03-25 15:08:56 +11005862 }
5863
Christoph Hellwigbf806282017-10-19 11:07:34 -07005864 new_startoff = got.br_startoff + offset_shift_fsb;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005865 if (xfs_iext_peek_next_extent(ifp, &icur, &next)) {
Christoph Hellwigbf806282017-10-19 11:07:34 -07005866 if (new_startoff + got.br_blockcount > next.br_startoff) {
5867 error = -EINVAL;
5868 goto del_cursor;
5869 }
5870
5871 /*
5872 * Unlike a left shift (which involves a hole punch), a right
5873 * shift does not modify extent neighbors in any way. We should
5874 * never find mergeable extents in this scenario. Check anyways
5875 * and warn if we encounter two extents that could be one.
5876 */
5877 if (xfs_bmse_can_merge(&got, &next, offset_shift_fsb))
5878 WARN_ON_ONCE(1);
5879 }
5880
Brian Foster0f37d172018-08-01 07:20:34 -07005881 error = xfs_bmap_shift_update_extent(tp, ip, whichfork, &icur, &got,
5882 cur, &logflags, new_startoff);
Christoph Hellwig6b18af02017-10-19 11:07:10 -07005883 if (error)
5884 goto del_cursor;
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005885
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005886 if (!xfs_iext_prev_extent(ifp, &icur, &got) ||
Christoph Hellwig5936dc52017-10-19 11:08:52 -07005887 stop_fsb >= got.br_startoff + got.br_blockcount) {
Christoph Hellwigecfea3f2017-10-19 11:07:11 -07005888 *done = true;
Christoph Hellwig6b18af02017-10-19 11:07:10 -07005889 goto del_cursor;
5890 }
Christoph Hellwig6b18af02017-10-19 11:07:10 -07005891
5892 *next_fsb = got.br_startoff;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005893del_cursor:
5894 if (cur)
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -07005895 xfs_btree_del_cursor(cur, error);
Brian Fosterca446d82014-09-02 12:12:53 +10005896 if (logflags)
5897 xfs_trans_log_inode(tp, ip, logflags);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005898 return error;
5899}
Namjae Jeona904b1c2015-03-25 15:08:56 +11005900
5901/*
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005902 * Splits an extent into two extents at split_fsb block such that it is the
5903 * first block of the current_ext. @ext is a target extent to be split.
5904 * @split_fsb is a block where the extents is split. If split_fsb lies in a
5905 * hole or the first block of extents, just return 0.
Namjae Jeona904b1c2015-03-25 15:08:56 +11005906 */
5907STATIC int
5908xfs_bmap_split_extent_at(
5909 struct xfs_trans *tp,
5910 struct xfs_inode *ip,
Brian Foster4b77a082018-07-11 22:26:27 -07005911 xfs_fileoff_t split_fsb)
Namjae Jeona904b1c2015-03-25 15:08:56 +11005912{
5913 int whichfork = XFS_DATA_FORK;
5914 struct xfs_btree_cur *cur = NULL;
Namjae Jeona904b1c2015-03-25 15:08:56 +11005915 struct xfs_bmbt_irec got;
5916 struct xfs_bmbt_irec new; /* split extent */
5917 struct xfs_mount *mp = ip->i_mount;
5918 struct xfs_ifork *ifp;
5919 xfs_fsblock_t gotblkcnt; /* new block count for got */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005920 struct xfs_iext_cursor icur;
Namjae Jeona904b1c2015-03-25 15:08:56 +11005921 int error = 0;
5922 int logflags = 0;
5923 int i = 0;
5924
5925 if (unlikely(XFS_TEST_ERROR(
5926 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5927 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07005928 mp, XFS_ERRTAG_BMAPIFORMAT))) {
Namjae Jeona904b1c2015-03-25 15:08:56 +11005929 XFS_ERROR_REPORT("xfs_bmap_split_extent_at",
5930 XFS_ERRLEVEL_LOW, mp);
5931 return -EFSCORRUPTED;
5932 }
5933
5934 if (XFS_FORCED_SHUTDOWN(mp))
5935 return -EIO;
5936
5937 ifp = XFS_IFORK_PTR(ip, whichfork);
5938 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5939 /* Read in all the extents */
5940 error = xfs_iread_extents(tp, ip, whichfork);
5941 if (error)
5942 return error;
5943 }
5944
5945 /*
Christoph Hellwig4c35445b2017-08-29 15:44:13 -07005946 * If there are not extents, or split_fsb lies in a hole we are done.
Namjae Jeona904b1c2015-03-25 15:08:56 +11005947 */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005948 if (!xfs_iext_lookup_extent(ip, ifp, split_fsb, &icur, &got) ||
Christoph Hellwig4c35445b2017-08-29 15:44:13 -07005949 got.br_startoff >= split_fsb)
Namjae Jeona904b1c2015-03-25 15:08:56 +11005950 return 0;
5951
5952 gotblkcnt = split_fsb - got.br_startoff;
5953 new.br_startoff = split_fsb;
5954 new.br_startblock = got.br_startblock + gotblkcnt;
5955 new.br_blockcount = got.br_blockcount - gotblkcnt;
5956 new.br_state = got.br_state;
5957
5958 if (ifp->if_flags & XFS_IFBROOT) {
5959 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005960 cur->bc_private.b.flags = 0;
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005961 error = xfs_bmbt_lookup_eq(cur, &got, &i);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005962 if (error)
5963 goto del_cursor;
5964 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, del_cursor);
5965 }
5966
Namjae Jeona904b1c2015-03-25 15:08:56 +11005967 got.br_blockcount = gotblkcnt;
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005968 xfs_iext_update_extent(ip, xfs_bmap_fork_to_state(whichfork), &icur,
5969 &got);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005970
5971 logflags = XFS_ILOG_CORE;
5972 if (cur) {
Christoph Hellwiga67d00a2017-10-17 14:16:26 -07005973 error = xfs_bmbt_update(cur, &got);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005974 if (error)
5975 goto del_cursor;
5976 } else
5977 logflags |= XFS_ILOG_DEXT;
5978
5979 /* Add new extent */
Christoph Hellwigb2b17122017-11-03 10:34:43 -07005980 xfs_iext_next(ifp, &icur);
Christoph Hellwig0254c2f2017-11-03 10:34:46 -07005981 xfs_iext_insert(ip, &icur, &new, 0);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005982 XFS_IFORK_NEXT_SET(ip, whichfork,
5983 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
5984
5985 if (cur) {
Christoph Hellwige16cf9b2017-10-17 14:16:26 -07005986 error = xfs_bmbt_lookup_eq(cur, &new, &i);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005987 if (error)
5988 goto del_cursor;
5989 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, del_cursor);
Namjae Jeona904b1c2015-03-25 15:08:56 +11005990 error = xfs_btree_insert(cur, &i);
5991 if (error)
5992 goto del_cursor;
5993 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, del_cursor);
5994 }
5995
5996 /*
5997 * Convert to a btree if necessary.
5998 */
5999 if (xfs_bmap_needs_btree(ip, whichfork)) {
6000 int tmp_logflags; /* partial log flag return val */
6001
6002 ASSERT(cur == NULL);
Brian Foster280253d2018-07-11 22:26:29 -07006003 error = xfs_bmap_extents_to_btree(tp, ip, &cur, 0,
6004 &tmp_logflags, whichfork);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006005 logflags |= tmp_logflags;
6006 }
6007
6008del_cursor:
6009 if (cur) {
6010 cur->bc_private.b.allocated = 0;
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -07006011 xfs_btree_del_cursor(cur, error);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006012 }
6013
6014 if (logflags)
6015 xfs_trans_log_inode(tp, ip, logflags);
6016 return error;
6017}
6018
6019int
6020xfs_bmap_split_extent(
6021 struct xfs_inode *ip,
6022 xfs_fileoff_t split_fsb)
6023{
6024 struct xfs_mount *mp = ip->i_mount;
6025 struct xfs_trans *tp;
Namjae Jeona904b1c2015-03-25 15:08:56 +11006026 int error;
6027
Christoph Hellwig253f4912016-04-06 09:19:55 +10006028 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write,
6029 XFS_DIOSTRAT_SPACE_RES(mp, 0), 0, 0, &tp);
6030 if (error)
Namjae Jeona904b1c2015-03-25 15:08:56 +11006031 return error;
Namjae Jeona904b1c2015-03-25 15:08:56 +11006032
6033 xfs_ilock(ip, XFS_ILOCK_EXCL);
6034 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
6035
Brian Foster4b77a082018-07-11 22:26:27 -07006036 error = xfs_bmap_split_extent_at(tp, ip, split_fsb);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006037 if (error)
6038 goto out;
6039
Christoph Hellwig70393312015-06-04 13:48:08 +10006040 return xfs_trans_commit(tp);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006041
6042out:
Christoph Hellwig4906e212015-06-04 13:47:56 +10006043 xfs_trans_cancel(tp);
Namjae Jeona904b1c2015-03-25 15:08:56 +11006044 return error;
6045}
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006046
6047/* Deferred mapping is only for real extents in the data fork. */
6048static bool
6049xfs_bmap_is_update_needed(
6050 struct xfs_bmbt_irec *bmap)
6051{
6052 return bmap->br_startblock != HOLESTARTBLOCK &&
6053 bmap->br_startblock != DELAYSTARTBLOCK;
6054}
6055
6056/* Record a bmap intent. */
6057static int
6058__xfs_bmap_add(
Brian Foster0f37d172018-08-01 07:20:34 -07006059 struct xfs_trans *tp,
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006060 enum xfs_bmap_intent_type type,
6061 struct xfs_inode *ip,
6062 int whichfork,
6063 struct xfs_bmbt_irec *bmap)
6064{
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006065 struct xfs_bmap_intent *bi;
6066
Brian Foster0f37d172018-08-01 07:20:34 -07006067 trace_xfs_bmap_defer(tp->t_mountp,
6068 XFS_FSB_TO_AGNO(tp->t_mountp, bmap->br_startblock),
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006069 type,
Brian Foster0f37d172018-08-01 07:20:34 -07006070 XFS_FSB_TO_AGBNO(tp->t_mountp, bmap->br_startblock),
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006071 ip->i_ino, whichfork,
6072 bmap->br_startoff,
6073 bmap->br_blockcount,
6074 bmap->br_state);
6075
Tetsuo Handa707e0dd2019-08-26 12:06:22 -07006076 bi = kmem_alloc(sizeof(struct xfs_bmap_intent), KM_NOFS);
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006077 INIT_LIST_HEAD(&bi->bi_list);
6078 bi->bi_type = type;
6079 bi->bi_owner = ip;
6080 bi->bi_whichfork = whichfork;
6081 bi->bi_bmap = *bmap;
6082
Brian Foster0f37d172018-08-01 07:20:34 -07006083 xfs_defer_add(tp, XFS_DEFER_OPS_TYPE_BMAP, &bi->bi_list);
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006084 return 0;
6085}
6086
6087/* Map an extent into a file. */
Darrick J. Wong3e08f422019-08-26 17:06:04 -07006088void
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006089xfs_bmap_map_extent(
Brian Foster0f37d172018-08-01 07:20:34 -07006090 struct xfs_trans *tp,
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006091 struct xfs_inode *ip,
6092 struct xfs_bmbt_irec *PREV)
6093{
6094 if (!xfs_bmap_is_update_needed(PREV))
Darrick J. Wong3e08f422019-08-26 17:06:04 -07006095 return;
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006096
Darrick J. Wong3e08f422019-08-26 17:06:04 -07006097 __xfs_bmap_add(tp, XFS_BMAP_MAP, ip, XFS_DATA_FORK, PREV);
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006098}
6099
6100/* Unmap an extent out of a file. */
Darrick J. Wong3e08f422019-08-26 17:06:04 -07006101void
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006102xfs_bmap_unmap_extent(
Brian Foster0f37d172018-08-01 07:20:34 -07006103 struct xfs_trans *tp,
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006104 struct xfs_inode *ip,
6105 struct xfs_bmbt_irec *PREV)
6106{
6107 if (!xfs_bmap_is_update_needed(PREV))
Darrick J. Wong3e08f422019-08-26 17:06:04 -07006108 return;
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006109
Darrick J. Wong3e08f422019-08-26 17:06:04 -07006110 __xfs_bmap_add(tp, XFS_BMAP_UNMAP, ip, XFS_DATA_FORK, PREV);
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006111}
6112
6113/*
6114 * Process one of the deferred bmap operations. We pass back the
6115 * btree cursor to maintain our lock on the bmapbt between calls.
6116 */
6117int
6118xfs_bmap_finish_one(
6119 struct xfs_trans *tp,
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006120 struct xfs_inode *ip,
6121 enum xfs_bmap_intent_type type,
6122 int whichfork,
6123 xfs_fileoff_t startoff,
6124 xfs_fsblock_t startblock,
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006125 xfs_filblks_t *blockcount,
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006126 xfs_exntst_t state)
6127{
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006128 int error = 0;
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006129
Brian Foster37283792018-07-11 22:26:23 -07006130 ASSERT(tp->t_firstblock == NULLFSBLOCK);
Darrick J. Wong4c1a67b2017-07-17 14:30:51 -07006131
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006132 trace_xfs_bmap_deferred(tp->t_mountp,
6133 XFS_FSB_TO_AGNO(tp->t_mountp, startblock), type,
6134 XFS_FSB_TO_AGBNO(tp->t_mountp, startblock),
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006135 ip->i_ino, whichfork, startoff, *blockcount, state);
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006136
Christoph Hellwig39e07da2017-04-11 16:45:53 -07006137 if (WARN_ON_ONCE(whichfork != XFS_DATA_FORK))
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006138 return -EFSCORRUPTED;
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006139
6140 if (XFS_TEST_ERROR(false, tp->t_mountp,
Darrick J. Wong9e24cfd2017-06-20 17:54:47 -07006141 XFS_ERRTAG_BMAP_FINISH_ONE))
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006142 return -EIO;
6143
6144 switch (type) {
6145 case XFS_BMAP_MAP:
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006146 error = xfs_bmapi_remap(tp, ip, startoff, *blockcount,
Brian Fosterff3edf22018-07-11 22:26:14 -07006147 startblock, 0);
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006148 *blockcount = 0;
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006149 break;
6150 case XFS_BMAP_UNMAP:
Darrick J. Wonge1a4e372017-06-14 21:25:57 -07006151 error = __xfs_bunmapi(tp, ip, startoff, blockcount,
Brian Foster2af52842018-07-11 22:26:25 -07006152 XFS_BMAPI_REMAP, 1);
Darrick J. Wong9f3afb52016-10-03 09:11:28 -07006153 break;
6154 default:
6155 ASSERT(0);
6156 error = -EFSCORRUPTED;
6157 }
6158
6159 return error;
6160}
Darrick J. Wong30b09842018-03-23 10:06:52 -07006161
6162/* Check that an inode's extent does not have invalid flags or bad ranges. */
6163xfs_failaddr_t
6164xfs_bmap_validate_extent(
6165 struct xfs_inode *ip,
6166 int whichfork,
6167 struct xfs_bmbt_irec *irec)
6168{
6169 struct xfs_mount *mp = ip->i_mount;
6170 xfs_fsblock_t endfsb;
6171 bool isrt;
6172
6173 isrt = XFS_IS_REALTIME_INODE(ip);
6174 endfsb = irec->br_startblock + irec->br_blockcount - 1;
6175 if (isrt) {
6176 if (!xfs_verify_rtbno(mp, irec->br_startblock))
6177 return __this_address;
6178 if (!xfs_verify_rtbno(mp, endfsb))
6179 return __this_address;
6180 } else {
6181 if (!xfs_verify_fsbno(mp, irec->br_startblock))
6182 return __this_address;
6183 if (!xfs_verify_fsbno(mp, endfsb))
6184 return __this_address;
6185 if (XFS_FSB_TO_AGNO(mp, irec->br_startblock) !=
6186 XFS_FSB_TO_AGNO(mp, endfsb))
6187 return __this_address;
6188 }
Christoph Hellwigdaa79ba2018-10-18 17:18:58 +11006189 if (irec->br_state != XFS_EXT_NORM && whichfork != XFS_DATA_FORK)
6190 return __this_address;
Darrick J. Wong30b09842018-03-23 10:06:52 -07006191 return NULL;
6192}