blob: 75c3fe5f3d9d82a34c84139c56eb4028dd3f42d0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_bit.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_sb.h"
27#include "xfs_ag.h"
Dave Chinnerf5ea1102013-04-24 18:58:02 +100028#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110029#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_da_btree.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100031#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_btree.h"
Dave Chinner239880e2013-10-23 10:50:10 +110034#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_extfree_item.h"
37#include "xfs_alloc.h"
38#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100039#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110040#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_rtalloc.h"
42#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_quota.h"
44#include "xfs_trans_space.h"
45#include "xfs_buf_item.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000046#include "xfs_trace.h"
Dave Chinner19de7352013-04-03 16:11:18 +110047#include "xfs_symlink.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110048#include "xfs_attr_leaf.h"
49#include "xfs_dinode.h"
50#include "xfs_filestream.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053kmem_zone_t *xfs_bmap_free_item_zone;
54
55/*
Dave Chinner9e5987a2013-02-25 12:31:26 +110056 * Miscellaneous helper functions
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 */
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
Dave Chinner9e5987a2013-02-25 12:31:26 +110060 * Compute and fill in the value of the maximum depth of a bmap btree
61 * in this filesystem. Done once, during mount.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 */
Dave Chinner9e5987a2013-02-25 12:31:26 +110063void
64xfs_bmap_compute_maxlevels(
65 xfs_mount_t *mp, /* file system mount structure */
66 int whichfork) /* data or attr fork */
67{
68 int level; /* btree level */
69 uint maxblocks; /* max blocks at this level */
70 uint maxleafents; /* max leaf entries possible */
71 int maxrootrecs; /* max records in root block */
72 int minleafrecs; /* min records in leaf block */
73 int minnoderecs; /* min records in node block */
74 int sz; /* root block size */
75
76 /*
77 * The maximum number of extents in a file, hence the maximum
78 * number of leaf entries, is controlled by the type of di_nextents
79 * (a signed 32-bit number, xfs_extnum_t), or by di_anextents
80 * (a signed 16-bit number, xfs_aextnum_t).
81 *
82 * Note that we can no longer assume that if we are in ATTR1 that
83 * the fork offset of all the inodes will be
84 * (xfs_default_attroffset(ip) >> 3) because we could have mounted
85 * with ATTR2 and then mounted back with ATTR1, keeping the
86 * di_forkoff's fixed but probably at various positions. Therefore,
87 * for both ATTR1 and ATTR2 we have to assume the worst case scenario
88 * of a minimum size available.
89 */
90 if (whichfork == XFS_DATA_FORK) {
91 maxleafents = MAXEXTNUM;
92 sz = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
93 } else {
94 maxleafents = MAXAEXTNUM;
95 sz = XFS_BMDR_SPACE_CALC(MINABTPTRS);
96 }
Eric Sandeen152d93b2014-04-14 18:58:51 +100097 maxrootrecs = xfs_bmdr_maxrecs(sz, 0);
Dave Chinner9e5987a2013-02-25 12:31:26 +110098 minleafrecs = mp->m_bmap_dmnr[0];
99 minnoderecs = mp->m_bmap_dmnr[1];
100 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
101 for (level = 1; maxblocks > 1; level++) {
102 if (maxblocks <= maxrootrecs)
103 maxblocks = 1;
104 else
105 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
106 }
107 mp->m_bm_maxlevels[whichfork] = level;
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100110STATIC int /* error */
111xfs_bmbt_lookup_eq(
112 struct xfs_btree_cur *cur,
113 xfs_fileoff_t off,
114 xfs_fsblock_t bno,
115 xfs_filblks_t len,
116 int *stat) /* success/failure */
117{
118 cur->bc_rec.b.br_startoff = off;
119 cur->bc_rec.b.br_startblock = bno;
120 cur->bc_rec.b.br_blockcount = len;
121 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
122}
123
124STATIC int /* error */
125xfs_bmbt_lookup_ge(
126 struct xfs_btree_cur *cur,
127 xfs_fileoff_t off,
128 xfs_fsblock_t bno,
129 xfs_filblks_t len,
130 int *stat) /* success/failure */
131{
132 cur->bc_rec.b.br_startoff = off;
133 cur->bc_rec.b.br_startblock = bno;
134 cur->bc_rec.b.br_blockcount = len;
135 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
136}
137
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100138/*
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000139 * Check if the inode needs to be converted to btree format.
140 */
141static inline bool xfs_bmap_needs_btree(struct xfs_inode *ip, int whichfork)
142{
143 return XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
144 XFS_IFORK_NEXTENTS(ip, whichfork) >
145 XFS_IFORK_MAXEXT(ip, whichfork);
146}
147
148/*
149 * Check if the inode should be converted to extent format.
150 */
151static inline bool xfs_bmap_wants_extents(struct xfs_inode *ip, int whichfork)
152{
153 return XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE &&
154 XFS_IFORK_NEXTENTS(ip, whichfork) <=
155 XFS_IFORK_MAXEXT(ip, whichfork);
156}
157
158/*
159 * Update the record referred to by cur to the value given
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100160 * by [off, bno, len, state].
161 * This either works (return 0) or gets an EFSCORRUPTED error.
162 */
163STATIC int
164xfs_bmbt_update(
165 struct xfs_btree_cur *cur,
166 xfs_fileoff_t off,
167 xfs_fsblock_t bno,
168 xfs_filblks_t len,
169 xfs_exntst_t state)
170{
171 union xfs_btree_rec rec;
172
173 xfs_bmbt_disk_set_allf(&rec.bmbt, off, bno, len, state);
174 return xfs_btree_update(cur, &rec);
175}
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/*
Dave Chinner9e5987a2013-02-25 12:31:26 +1100178 * Compute the worst-case number of indirect blocks that will be used
179 * for ip's delayed extent of length "len".
180 */
181STATIC xfs_filblks_t
182xfs_bmap_worst_indlen(
183 xfs_inode_t *ip, /* incore inode pointer */
184 xfs_filblks_t len) /* delayed extent length */
185{
186 int level; /* btree level number */
187 int maxrecs; /* maximum record count at this level */
188 xfs_mount_t *mp; /* mount structure */
189 xfs_filblks_t rval; /* return value */
190
191 mp = ip->i_mount;
192 maxrecs = mp->m_bmap_dmxr[0];
193 for (level = 0, rval = 0;
194 level < XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK);
195 level++) {
196 len += maxrecs - 1;
197 do_div(len, maxrecs);
198 rval += len;
199 if (len == 1)
200 return rval + XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) -
201 level - 1;
202 if (level == 0)
203 maxrecs = mp->m_bmap_dmxr[1];
204 }
205 return rval;
206}
207
208/*
209 * Calculate the default attribute fork offset for newly created inodes.
210 */
211uint
212xfs_default_attroffset(
213 struct xfs_inode *ip)
214{
215 struct xfs_mount *mp = ip->i_mount;
216 uint offset;
217
218 if (mp->m_sb.sb_inodesize == 256) {
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100219 offset = XFS_LITINO(mp, ip->i_d.di_version) -
Dave Chinner9e5987a2013-02-25 12:31:26 +1100220 XFS_BMDR_SPACE_CALC(MINABTPTRS);
221 } else {
222 offset = XFS_BMDR_SPACE_CALC(6 * MINABTPTRS);
223 }
224
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100225 ASSERT(offset < XFS_LITINO(mp, ip->i_d.di_version));
Dave Chinner9e5987a2013-02-25 12:31:26 +1100226 return offset;
227}
228
229/*
230 * Helper routine to reset inode di_forkoff field when switching
231 * attribute fork from local to extent format - we reset it where
232 * possible to make space available for inline data fork extents.
233 */
234STATIC void
235xfs_bmap_forkoff_reset(
Dave Chinner9e5987a2013-02-25 12:31:26 +1100236 xfs_inode_t *ip,
237 int whichfork)
238{
239 if (whichfork == XFS_ATTR_FORK &&
240 ip->i_d.di_format != XFS_DINODE_FMT_DEV &&
241 ip->i_d.di_format != XFS_DINODE_FMT_UUID &&
242 ip->i_d.di_format != XFS_DINODE_FMT_BTREE) {
243 uint dfl_forkoff = xfs_default_attroffset(ip) >> 3;
244
245 if (dfl_forkoff > ip->i_d.di_forkoff)
246 ip->i_d.di_forkoff = dfl_forkoff;
247 }
248}
249
250/*
Dave Chinner9e5987a2013-02-25 12:31:26 +1100251 * Debug/sanity checking code
252 */
253
254STATIC int
255xfs_bmap_sanity_check(
256 struct xfs_mount *mp,
257 struct xfs_buf *bp,
258 int level)
259{
260 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
261
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500262 if (block->bb_magic != cpu_to_be32(XFS_BMAP_CRC_MAGIC) &&
263 block->bb_magic != cpu_to_be32(XFS_BMAP_MAGIC))
264 return 0;
265
266 if (be16_to_cpu(block->bb_level) != level ||
Dave Chinner9e5987a2013-02-25 12:31:26 +1100267 be16_to_cpu(block->bb_numrecs) == 0 ||
268 be16_to_cpu(block->bb_numrecs) > mp->m_bmap_dmxr[level != 0])
269 return 0;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500270
Dave Chinner9e5987a2013-02-25 12:31:26 +1100271 return 1;
272}
273
274#ifdef DEBUG
275STATIC struct xfs_buf *
276xfs_bmap_get_bp(
277 struct xfs_btree_cur *cur,
278 xfs_fsblock_t bno)
279{
280 struct xfs_log_item_desc *lidp;
281 int i;
282
283 if (!cur)
284 return NULL;
285
286 for (i = 0; i < XFS_BTREE_MAXLEVELS; i++) {
287 if (!cur->bc_bufs[i])
288 break;
289 if (XFS_BUF_ADDR(cur->bc_bufs[i]) == bno)
290 return cur->bc_bufs[i];
291 }
292
293 /* Chase down all the log items to see if the bp is there */
294 list_for_each_entry(lidp, &cur->bc_tp->t_items, lid_trans) {
295 struct xfs_buf_log_item *bip;
296 bip = (struct xfs_buf_log_item *)lidp->lid_item;
297 if (bip->bli_item.li_type == XFS_LI_BUF &&
298 XFS_BUF_ADDR(bip->bli_buf) == bno)
299 return bip->bli_buf;
300 }
301
302 return NULL;
303}
304
305STATIC void
306xfs_check_block(
307 struct xfs_btree_block *block,
308 xfs_mount_t *mp,
309 int root,
310 short sz)
311{
312 int i, j, dmxr;
313 __be64 *pp, *thispa; /* pointer to block address */
314 xfs_bmbt_key_t *prevp, *keyp;
315
316 ASSERT(be16_to_cpu(block->bb_level) > 0);
317
318 prevp = NULL;
319 for( i = 1; i <= xfs_btree_get_numrecs(block); i++) {
320 dmxr = mp->m_bmap_dmxr[0];
321 keyp = XFS_BMBT_KEY_ADDR(mp, block, i);
322
323 if (prevp) {
324 ASSERT(be64_to_cpu(prevp->br_startoff) <
325 be64_to_cpu(keyp->br_startoff));
326 }
327 prevp = keyp;
328
329 /*
330 * Compare the block numbers to see if there are dups.
331 */
332 if (root)
333 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, i, sz);
334 else
335 pp = XFS_BMBT_PTR_ADDR(mp, block, i, dmxr);
336
337 for (j = i+1; j <= be16_to_cpu(block->bb_numrecs); j++) {
338 if (root)
339 thispa = XFS_BMAP_BROOT_PTR_ADDR(mp, block, j, sz);
340 else
341 thispa = XFS_BMBT_PTR_ADDR(mp, block, j, dmxr);
342 if (*thispa == *pp) {
343 xfs_warn(mp, "%s: thispa(%d) == pp(%d) %Ld",
344 __func__, j, i,
345 (unsigned long long)be64_to_cpu(*thispa));
346 panic("%s: ptrs are equal in node\n",
347 __func__);
348 }
349 }
350 }
351}
352
353/*
354 * Check that the extents for the inode ip are in the right order in all
355 * btree leaves.
356 */
357
358STATIC void
359xfs_bmap_check_leaf_extents(
360 xfs_btree_cur_t *cur, /* btree cursor or null */
361 xfs_inode_t *ip, /* incore inode pointer */
362 int whichfork) /* data or attr fork */
363{
364 struct xfs_btree_block *block; /* current btree block */
365 xfs_fsblock_t bno; /* block # of "block" */
366 xfs_buf_t *bp; /* buffer for "block" */
367 int error; /* error return value */
368 xfs_extnum_t i=0, j; /* index into the extents list */
369 xfs_ifork_t *ifp; /* fork structure */
370 int level; /* btree level, for checking */
371 xfs_mount_t *mp; /* file system mount structure */
372 __be64 *pp; /* pointer to block address */
373 xfs_bmbt_rec_t *ep; /* pointer to current extent */
374 xfs_bmbt_rec_t last = {0, 0}; /* last extent in prev block */
375 xfs_bmbt_rec_t *nextp; /* pointer to next extent */
376 int bp_release = 0;
377
378 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE) {
379 return;
380 }
381
382 bno = NULLFSBLOCK;
383 mp = ip->i_mount;
384 ifp = XFS_IFORK_PTR(ip, whichfork);
385 block = ifp->if_broot;
386 /*
387 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
388 */
389 level = be16_to_cpu(block->bb_level);
390 ASSERT(level > 0);
391 xfs_check_block(block, mp, 1, ifp->if_broot_bytes);
392 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
393 bno = be64_to_cpu(*pp);
394
395 ASSERT(bno != NULLDFSBNO);
396 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
397 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
398
399 /*
400 * Go down the tree until leaf level is reached, following the first
401 * pointer (leftmost) at each level.
402 */
403 while (level-- > 0) {
404 /* See if buf is in cur first */
405 bp_release = 0;
406 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
407 if (!bp) {
408 bp_release = 1;
409 error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
410 XFS_BMAP_BTREE_REF,
411 &xfs_bmbt_buf_ops);
412 if (error)
413 goto error_norelse;
414 }
415 block = XFS_BUF_TO_BLOCK(bp);
416 XFS_WANT_CORRUPTED_GOTO(
417 xfs_bmap_sanity_check(mp, bp, level),
418 error0);
419 if (level == 0)
420 break;
421
422 /*
423 * Check this block for basic sanity (increasing keys and
424 * no duplicate blocks).
425 */
426
427 xfs_check_block(block, mp, 0, 0);
428 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
429 bno = be64_to_cpu(*pp);
430 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
431 if (bp_release) {
432 bp_release = 0;
433 xfs_trans_brelse(NULL, bp);
434 }
435 }
436
437 /*
438 * Here with bp and block set to the leftmost leaf node in the tree.
439 */
440 i = 0;
441
442 /*
443 * Loop over all leaf nodes checking that all extents are in the right order.
444 */
445 for (;;) {
446 xfs_fsblock_t nextbno;
447 xfs_extnum_t num_recs;
448
449
450 num_recs = xfs_btree_get_numrecs(block);
451
452 /*
453 * Read-ahead the next leaf block, if any.
454 */
455
456 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
457
458 /*
459 * Check all the extents to make sure they are OK.
460 * If we had a previous block, the last entry should
461 * conform with the first entry in this one.
462 */
463
464 ep = XFS_BMBT_REC_ADDR(mp, block, 1);
465 if (i) {
466 ASSERT(xfs_bmbt_disk_get_startoff(&last) +
467 xfs_bmbt_disk_get_blockcount(&last) <=
468 xfs_bmbt_disk_get_startoff(ep));
469 }
470 for (j = 1; j < num_recs; j++) {
471 nextp = XFS_BMBT_REC_ADDR(mp, block, j + 1);
472 ASSERT(xfs_bmbt_disk_get_startoff(ep) +
473 xfs_bmbt_disk_get_blockcount(ep) <=
474 xfs_bmbt_disk_get_startoff(nextp));
475 ep = nextp;
476 }
477
478 last = *ep;
479 i += num_recs;
480 if (bp_release) {
481 bp_release = 0;
482 xfs_trans_brelse(NULL, bp);
483 }
484 bno = nextbno;
485 /*
486 * If we've reached the end, stop.
487 */
488 if (bno == NULLFSBLOCK)
489 break;
490
491 bp_release = 0;
492 bp = xfs_bmap_get_bp(cur, XFS_FSB_TO_DADDR(mp, bno));
493 if (!bp) {
494 bp_release = 1;
495 error = xfs_btree_read_bufl(mp, NULL, bno, 0, &bp,
496 XFS_BMAP_BTREE_REF,
497 &xfs_bmbt_buf_ops);
498 if (error)
499 goto error_norelse;
500 }
501 block = XFS_BUF_TO_BLOCK(bp);
502 }
503 if (bp_release) {
504 bp_release = 0;
505 xfs_trans_brelse(NULL, bp);
506 }
507 return;
508
509error0:
510 xfs_warn(mp, "%s: at error0", __func__);
511 if (bp_release)
512 xfs_trans_brelse(NULL, bp);
513error_norelse:
514 xfs_warn(mp, "%s: BAD after btree leaves for %d extents",
515 __func__, i);
516 panic("%s: CORRUPTED BTREE OR SOMETHING", __func__);
517 return;
518}
519
520/*
521 * Add bmap trace insert entries for all the contents of the extent records.
522 */
523void
524xfs_bmap_trace_exlist(
525 xfs_inode_t *ip, /* incore inode pointer */
526 xfs_extnum_t cnt, /* count of entries in the list */
527 int whichfork, /* data or attr fork */
528 unsigned long caller_ip)
529{
530 xfs_extnum_t idx; /* extent record index */
531 xfs_ifork_t *ifp; /* inode fork pointer */
532 int state = 0;
533
534 if (whichfork == XFS_ATTR_FORK)
535 state |= BMAP_ATTRFORK;
536
537 ifp = XFS_IFORK_PTR(ip, whichfork);
538 ASSERT(cnt == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
539 for (idx = 0; idx < cnt; idx++)
540 trace_xfs_extlist(ip, idx, whichfork, caller_ip);
541}
542
543/*
544 * Validate that the bmbt_irecs being returned from bmapi are valid
Zhi Yong Wua97f4df2013-08-12 03:14:53 +0000545 * given the caller's original parameters. Specifically check the
546 * ranges of the returned irecs to ensure that they only extend beyond
Dave Chinner9e5987a2013-02-25 12:31:26 +1100547 * the given parameters if the XFS_BMAPI_ENTIRE flag was set.
548 */
549STATIC void
550xfs_bmap_validate_ret(
551 xfs_fileoff_t bno,
552 xfs_filblks_t len,
553 int flags,
554 xfs_bmbt_irec_t *mval,
555 int nmap,
556 int ret_nmap)
557{
558 int i; /* index to map values */
559
560 ASSERT(ret_nmap <= nmap);
561
562 for (i = 0; i < ret_nmap; i++) {
563 ASSERT(mval[i].br_blockcount > 0);
564 if (!(flags & XFS_BMAPI_ENTIRE)) {
565 ASSERT(mval[i].br_startoff >= bno);
566 ASSERT(mval[i].br_blockcount <= len);
567 ASSERT(mval[i].br_startoff + mval[i].br_blockcount <=
568 bno + len);
569 } else {
570 ASSERT(mval[i].br_startoff < bno + len);
571 ASSERT(mval[i].br_startoff + mval[i].br_blockcount >
572 bno);
573 }
574 ASSERT(i == 0 ||
575 mval[i - 1].br_startoff + mval[i - 1].br_blockcount ==
576 mval[i].br_startoff);
577 ASSERT(mval[i].br_startblock != DELAYSTARTBLOCK &&
578 mval[i].br_startblock != HOLESTARTBLOCK);
579 ASSERT(mval[i].br_state == XFS_EXT_NORM ||
580 mval[i].br_state == XFS_EXT_UNWRITTEN);
581 }
582}
583
584#else
585#define xfs_bmap_check_leaf_extents(cur, ip, whichfork) do { } while (0)
586#define xfs_bmap_validate_ret(bno,len,flags,mval,onmap,nmap)
587#endif /* DEBUG */
588
589/*
590 * bmap free list manipulation functions
591 */
592
593/*
594 * Add the extent to the list of extents to be free at transaction end.
595 * The list is maintained sorted (by block number).
596 */
597void
598xfs_bmap_add_free(
599 xfs_fsblock_t bno, /* fs block number of extent */
600 xfs_filblks_t len, /* length of extent */
601 xfs_bmap_free_t *flist, /* list of extents */
602 xfs_mount_t *mp) /* mount point structure */
603{
604 xfs_bmap_free_item_t *cur; /* current (next) element */
605 xfs_bmap_free_item_t *new; /* new element */
606 xfs_bmap_free_item_t *prev; /* previous element */
607#ifdef DEBUG
608 xfs_agnumber_t agno;
609 xfs_agblock_t agbno;
610
611 ASSERT(bno != NULLFSBLOCK);
612 ASSERT(len > 0);
613 ASSERT(len <= MAXEXTLEN);
614 ASSERT(!isnullstartblock(bno));
615 agno = XFS_FSB_TO_AGNO(mp, bno);
616 agbno = XFS_FSB_TO_AGBNO(mp, bno);
617 ASSERT(agno < mp->m_sb.sb_agcount);
618 ASSERT(agbno < mp->m_sb.sb_agblocks);
619 ASSERT(len < mp->m_sb.sb_agblocks);
620 ASSERT(agbno + len <= mp->m_sb.sb_agblocks);
621#endif
622 ASSERT(xfs_bmap_free_item_zone != NULL);
623 new = kmem_zone_alloc(xfs_bmap_free_item_zone, KM_SLEEP);
624 new->xbfi_startblock = bno;
625 new->xbfi_blockcount = (xfs_extlen_t)len;
626 for (prev = NULL, cur = flist->xbf_first;
627 cur != NULL;
628 prev = cur, cur = cur->xbfi_next) {
629 if (cur->xbfi_startblock >= bno)
630 break;
631 }
632 if (prev)
633 prev->xbfi_next = new;
634 else
635 flist->xbf_first = new;
636 new->xbfi_next = cur;
637 flist->xbf_count++;
638}
639
640/*
641 * Remove the entry "free" from the free item list. Prev points to the
642 * previous entry, unless "free" is the head of the list.
643 */
Dave Chinner68988112013-08-12 20:49:42 +1000644void
Dave Chinner9e5987a2013-02-25 12:31:26 +1100645xfs_bmap_del_free(
646 xfs_bmap_free_t *flist, /* free item list header */
647 xfs_bmap_free_item_t *prev, /* previous item on list, if any */
648 xfs_bmap_free_item_t *free) /* list item to be freed */
649{
650 if (prev)
651 prev->xbfi_next = free->xbfi_next;
652 else
653 flist->xbf_first = free->xbfi_next;
654 flist->xbf_count--;
655 kmem_zone_free(xfs_bmap_free_item_zone, free);
656}
657
Dave Chinner9e5987a2013-02-25 12:31:26 +1100658/*
659 * Free up any items left in the list.
660 */
661void
662xfs_bmap_cancel(
663 xfs_bmap_free_t *flist) /* list of bmap_free_items */
664{
665 xfs_bmap_free_item_t *free; /* free list item */
666 xfs_bmap_free_item_t *next;
667
668 if (flist->xbf_count == 0)
669 return;
670 ASSERT(flist->xbf_first != NULL);
671 for (free = flist->xbf_first; free; free = next) {
672 next = free->xbfi_next;
673 xfs_bmap_del_free(flist, NULL, free);
674 }
675 ASSERT(flist->xbf_count == 0);
676}
677
678/*
679 * Inode fork format manipulation functions
680 */
681
682/*
683 * Transform a btree format file with only one leaf node, where the
684 * extents list will fit in the inode, into an extents format file.
685 * Since the file extents are already in-core, all we have to do is
686 * give up the space for the btree root and pitch the leaf block.
687 */
688STATIC int /* error */
689xfs_bmap_btree_to_extents(
690 xfs_trans_t *tp, /* transaction pointer */
691 xfs_inode_t *ip, /* incore inode pointer */
692 xfs_btree_cur_t *cur, /* btree cursor */
693 int *logflagsp, /* inode logging flags */
694 int whichfork) /* data or attr fork */
695{
696 /* REFERENCED */
697 struct xfs_btree_block *cblock;/* child btree block */
698 xfs_fsblock_t cbno; /* child block number */
699 xfs_buf_t *cbp; /* child block's buffer */
700 int error; /* error return value */
701 xfs_ifork_t *ifp; /* inode fork data */
702 xfs_mount_t *mp; /* mount point structure */
703 __be64 *pp; /* ptr to block address */
704 struct xfs_btree_block *rblock;/* root btree block */
705
706 mp = ip->i_mount;
707 ifp = XFS_IFORK_PTR(ip, whichfork);
708 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
709 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
710 rblock = ifp->if_broot;
711 ASSERT(be16_to_cpu(rblock->bb_level) == 1);
712 ASSERT(be16_to_cpu(rblock->bb_numrecs) == 1);
713 ASSERT(xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0) == 1);
714 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, ifp->if_broot_bytes);
715 cbno = be64_to_cpu(*pp);
716 *logflagsp = 0;
717#ifdef DEBUG
718 if ((error = xfs_btree_check_lptr(cur, cbno, 1)))
719 return error;
720#endif
721 error = xfs_btree_read_bufl(mp, tp, cbno, 0, &cbp, XFS_BMAP_BTREE_REF,
722 &xfs_bmbt_buf_ops);
723 if (error)
724 return error;
725 cblock = XFS_BUF_TO_BLOCK(cbp);
726 if ((error = xfs_btree_check_block(cur, cblock, 0, cbp)))
727 return error;
728 xfs_bmap_add_free(cbno, 1, cur->bc_private.b.flist, mp);
729 ip->i_d.di_nblocks--;
730 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
731 xfs_trans_binval(tp, cbp);
732 if (cur->bc_bufs[0] == cbp)
733 cur->bc_bufs[0] = NULL;
734 xfs_iroot_realloc(ip, -1, whichfork);
735 ASSERT(ifp->if_broot == NULL);
736 ASSERT((ifp->if_flags & XFS_IFBROOT) == 0);
737 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
738 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
739 return 0;
740}
741
742/*
743 * Convert an extents-format file into a btree-format file.
744 * The new file will have a root block (in the inode) and a single child block.
745 */
746STATIC int /* error */
747xfs_bmap_extents_to_btree(
748 xfs_trans_t *tp, /* transaction pointer */
749 xfs_inode_t *ip, /* incore inode pointer */
750 xfs_fsblock_t *firstblock, /* first-block-allocated */
751 xfs_bmap_free_t *flist, /* blocks freed in xaction */
752 xfs_btree_cur_t **curp, /* cursor returned to caller */
753 int wasdel, /* converting a delayed alloc */
754 int *logflagsp, /* inode logging flags */
755 int whichfork) /* data or attr fork */
756{
757 struct xfs_btree_block *ablock; /* allocated (child) bt block */
758 xfs_buf_t *abp; /* buffer for ablock */
759 xfs_alloc_arg_t args; /* allocation arguments */
760 xfs_bmbt_rec_t *arp; /* child record pointer */
761 struct xfs_btree_block *block; /* btree root block */
762 xfs_btree_cur_t *cur; /* bmap btree cursor */
763 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
764 int error; /* error return value */
765 xfs_extnum_t i, cnt; /* extent record index */
766 xfs_ifork_t *ifp; /* inode fork pointer */
767 xfs_bmbt_key_t *kp; /* root block key pointer */
768 xfs_mount_t *mp; /* mount structure */
769 xfs_extnum_t nextents; /* number of file extents */
770 xfs_bmbt_ptr_t *pp; /* root block address pointer */
771
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500772 mp = ip->i_mount;
Dave Chinner9e5987a2013-02-25 12:31:26 +1100773 ifp = XFS_IFORK_PTR(ip, whichfork);
774 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS);
775
776 /*
777 * Make space in the inode incore.
778 */
779 xfs_iroot_realloc(ip, 1, whichfork);
780 ifp->if_flags |= XFS_IFBROOT;
781
782 /*
783 * Fill in the root.
784 */
785 block = ifp->if_broot;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500786 if (xfs_sb_version_hascrc(&mp->m_sb))
787 xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL,
788 XFS_BMAP_CRC_MAGIC, 1, 1, ip->i_ino,
789 XFS_BTREE_LONG_PTRS | XFS_BTREE_CRC_BLOCKS);
790 else
791 xfs_btree_init_block_int(mp, block, XFS_BUF_DADDR_NULL,
792 XFS_BMAP_MAGIC, 1, 1, ip->i_ino,
793 XFS_BTREE_LONG_PTRS);
Dave Chinner9e5987a2013-02-25 12:31:26 +1100794
795 /*
796 * Need a cursor. Can't allocate until bb_level is filled in.
797 */
Dave Chinner9e5987a2013-02-25 12:31:26 +1100798 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
799 cur->bc_private.b.firstblock = *firstblock;
800 cur->bc_private.b.flist = flist;
801 cur->bc_private.b.flags = wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
802 /*
803 * Convert to a btree with two levels, one record in root.
804 */
805 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_BTREE);
806 memset(&args, 0, sizeof(args));
807 args.tp = tp;
808 args.mp = mp;
809 args.firstblock = *firstblock;
810 if (*firstblock == NULLFSBLOCK) {
811 args.type = XFS_ALLOCTYPE_START_BNO;
812 args.fsbno = XFS_INO_TO_FSB(mp, ip->i_ino);
813 } else if (flist->xbf_low) {
814 args.type = XFS_ALLOCTYPE_START_BNO;
815 args.fsbno = *firstblock;
816 } else {
817 args.type = XFS_ALLOCTYPE_NEAR_BNO;
818 args.fsbno = *firstblock;
819 }
820 args.minlen = args.maxlen = args.prod = 1;
821 args.wasdel = wasdel;
822 *logflagsp = 0;
823 if ((error = xfs_alloc_vextent(&args))) {
824 xfs_iroot_realloc(ip, -1, whichfork);
825 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
826 return error;
827 }
828 /*
829 * Allocation can't fail, the space was reserved.
830 */
831 ASSERT(args.fsbno != NULLFSBLOCK);
832 ASSERT(*firstblock == NULLFSBLOCK ||
833 args.agno == XFS_FSB_TO_AGNO(mp, *firstblock) ||
834 (flist->xbf_low &&
835 args.agno > XFS_FSB_TO_AGNO(mp, *firstblock)));
836 *firstblock = cur->bc_private.b.firstblock = args.fsbno;
837 cur->bc_private.b.allocated++;
838 ip->i_d.di_nblocks++;
839 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, 1L);
840 abp = xfs_btree_get_bufl(mp, tp, args.fsbno, 0);
841 /*
842 * Fill in the child block.
843 */
844 abp->b_ops = &xfs_bmbt_buf_ops;
845 ablock = XFS_BUF_TO_BLOCK(abp);
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500846 if (xfs_sb_version_hascrc(&mp->m_sb))
847 xfs_btree_init_block_int(mp, ablock, abp->b_bn,
848 XFS_BMAP_CRC_MAGIC, 0, 0, ip->i_ino,
849 XFS_BTREE_LONG_PTRS | XFS_BTREE_CRC_BLOCKS);
850 else
851 xfs_btree_init_block_int(mp, ablock, abp->b_bn,
852 XFS_BMAP_MAGIC, 0, 0, ip->i_ino,
853 XFS_BTREE_LONG_PTRS);
854
Dave Chinner9e5987a2013-02-25 12:31:26 +1100855 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
856 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
857 for (cnt = i = 0; i < nextents; i++) {
858 ep = xfs_iext_get_ext(ifp, i);
859 if (!isnullstartblock(xfs_bmbt_get_startblock(ep))) {
860 arp->l0 = cpu_to_be64(ep->l0);
861 arp->l1 = cpu_to_be64(ep->l1);
862 arp++; cnt++;
863 }
864 }
865 ASSERT(cnt == XFS_IFORK_NEXTENTS(ip, whichfork));
866 xfs_btree_set_numrecs(ablock, cnt);
867
868 /*
869 * Fill in the root key and pointer.
870 */
871 kp = XFS_BMBT_KEY_ADDR(mp, block, 1);
872 arp = XFS_BMBT_REC_ADDR(mp, ablock, 1);
873 kp->br_startoff = cpu_to_be64(xfs_bmbt_disk_get_startoff(arp));
874 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, xfs_bmbt_get_maxrecs(cur,
875 be16_to_cpu(block->bb_level)));
876 *pp = cpu_to_be64(args.fsbno);
877
878 /*
879 * Do all this logging at the end so that
880 * the root is at the right level.
881 */
882 xfs_btree_log_block(cur, abp, XFS_BB_ALL_BITS);
883 xfs_btree_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs));
884 ASSERT(*curp == NULL);
885 *curp = cur;
886 *logflagsp = XFS_ILOG_CORE | xfs_ilog_fbroot(whichfork);
887 return 0;
888}
889
890/*
891 * Convert a local file to an extents file.
892 * This code is out of bounds for data forks of regular files,
893 * since the file data needs to get logged so things will stay consistent.
894 * (The bmap-level manipulations are ok, though).
895 */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000896void
897xfs_bmap_local_to_extents_empty(
898 struct xfs_inode *ip,
899 int whichfork)
900{
901 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
902
903 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
904 ASSERT(ifp->if_bytes == 0);
905 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) == 0);
906
Eric Sandeen6a9edd32014-04-14 18:59:26 +1000907 xfs_bmap_forkoff_reset(ip, whichfork);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000908 ifp->if_flags &= ~XFS_IFINLINE;
909 ifp->if_flags |= XFS_IFEXTENTS;
910 XFS_IFORK_FMT_SET(ip, whichfork, XFS_DINODE_FMT_EXTENTS);
911}
912
913
Dave Chinner9e5987a2013-02-25 12:31:26 +1100914STATIC int /* error */
915xfs_bmap_local_to_extents(
916 xfs_trans_t *tp, /* transaction pointer */
917 xfs_inode_t *ip, /* incore inode pointer */
918 xfs_fsblock_t *firstblock, /* first block allocated in xaction */
919 xfs_extlen_t total, /* total blocks needed by transaction */
920 int *logflagsp, /* inode logging flags */
921 int whichfork,
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500922 void (*init_fn)(struct xfs_trans *tp,
923 struct xfs_buf *bp,
Dave Chinner9e5987a2013-02-25 12:31:26 +1100924 struct xfs_inode *ip,
925 struct xfs_ifork *ifp))
926{
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000927 int error = 0;
Dave Chinner9e5987a2013-02-25 12:31:26 +1100928 int flags; /* logging flags returned */
929 xfs_ifork_t *ifp; /* inode fork pointer */
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000930 xfs_alloc_arg_t args; /* allocation arguments */
931 xfs_buf_t *bp; /* buffer for extent block */
932 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Dave Chinner9e5987a2013-02-25 12:31:26 +1100933
934 /*
935 * We don't want to deal with the case of keeping inode data inline yet.
936 * So sending the data fork of a regular inode is invalid.
937 */
938 ASSERT(!(S_ISREG(ip->i_d.di_mode) && whichfork == XFS_DATA_FORK));
939 ifp = XFS_IFORK_PTR(ip, whichfork);
940 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000941
942 if (!ifp->if_bytes) {
943 xfs_bmap_local_to_extents_empty(ip, whichfork);
944 flags = XFS_ILOG_CORE;
945 goto done;
946 }
947
Dave Chinner9e5987a2013-02-25 12:31:26 +1100948 flags = 0;
949 error = 0;
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000950 ASSERT((ifp->if_flags & (XFS_IFINLINE|XFS_IFEXTENTS|XFS_IFEXTIREC)) ==
951 XFS_IFINLINE);
952 memset(&args, 0, sizeof(args));
953 args.tp = tp;
954 args.mp = ip->i_mount;
955 args.firstblock = *firstblock;
956 /*
957 * Allocate a block. We know we need only one, since the
958 * file currently fits in an inode.
959 */
960 if (*firstblock == NULLFSBLOCK) {
961 args.fsbno = XFS_INO_TO_FSB(args.mp, ip->i_ino);
962 args.type = XFS_ALLOCTYPE_START_BNO;
Dave Chinner9e5987a2013-02-25 12:31:26 +1100963 } else {
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000964 args.fsbno = *firstblock;
965 args.type = XFS_ALLOCTYPE_NEAR_BNO;
Dave Chinner9e5987a2013-02-25 12:31:26 +1100966 }
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000967 args.total = total;
968 args.minlen = args.maxlen = args.prod = 1;
969 error = xfs_alloc_vextent(&args);
970 if (error)
971 goto done;
972
973 /* Can't fail, the space was reserved. */
974 ASSERT(args.fsbno != NULLFSBLOCK);
975 ASSERT(args.len == 1);
976 *firstblock = args.fsbno;
977 bp = xfs_btree_get_bufl(args.mp, tp, args.fsbno, 0);
978
979 /* initialise the block and copy the data */
980 init_fn(tp, bp, ip, ifp);
981
982 /* account for the change in fork size and log everything */
983 xfs_trans_log_buf(tp, bp, 0, ifp->if_bytes - 1);
984 xfs_idata_realloc(ip, -ifp->if_bytes, whichfork);
985 xfs_bmap_local_to_extents_empty(ip, whichfork);
Dave Chinner9e5987a2013-02-25 12:31:26 +1100986 flags |= XFS_ILOG_CORE;
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000987
988 xfs_iext_add(ifp, 0, 1);
989 ep = xfs_iext_get_ext(ifp, 0);
990 xfs_bmbt_set_allf(ep, 0, args.fsbno, 1, XFS_EXT_NORM);
991 trace_xfs_bmap_post_update(ip, 0,
992 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0,
993 _THIS_IP_);
994 XFS_IFORK_NEXT_SET(ip, whichfork, 1);
995 ip->i_d.di_nblocks = 1;
996 xfs_trans_mod_dquot_byino(tp, ip,
997 XFS_TRANS_DQ_BCOUNT, 1L);
998 flags |= xfs_ilog_fext(whichfork);
999
Dave Chinner9e5987a2013-02-25 12:31:26 +11001000done:
1001 *logflagsp = flags;
1002 return error;
1003}
1004
1005/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 * Called from xfs_bmap_add_attrfork to handle btree format files.
1007 */
1008STATIC int /* error */
1009xfs_bmap_add_attrfork_btree(
1010 xfs_trans_t *tp, /* transaction pointer */
1011 xfs_inode_t *ip, /* incore inode pointer */
1012 xfs_fsblock_t *firstblock, /* first block allocated */
1013 xfs_bmap_free_t *flist, /* blocks to free at commit */
1014 int *flags) /* inode logging flags */
1015{
1016 xfs_btree_cur_t *cur; /* btree cursor */
1017 int error; /* error return value */
1018 xfs_mount_t *mp; /* file system mount struct */
1019 int stat; /* newroot status */
1020
1021 mp = ip->i_mount;
1022 if (ip->i_df.if_broot_bytes <= XFS_IFORK_DSIZE(ip))
1023 *flags |= XFS_ILOG_DBROOT;
1024 else {
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001025 cur = xfs_bmbt_init_cursor(mp, tp, ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 cur->bc_private.b.flist = flist;
1027 cur->bc_private.b.firstblock = *firstblock;
1028 if ((error = xfs_bmbt_lookup_ge(cur, 0, 0, 0, &stat)))
1029 goto error0;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001030 /* must be at least one entry */
1031 XFS_WANT_CORRUPTED_GOTO(stat == 1, error0);
Christoph Hellwigea77b0a2008-10-30 16:57:28 +11001032 if ((error = xfs_btree_new_iroot(cur, flags, &stat)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 goto error0;
1034 if (stat == 0) {
1035 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1036 return XFS_ERROR(ENOSPC);
1037 }
1038 *firstblock = cur->bc_private.b.firstblock;
1039 cur->bc_private.b.allocated = 0;
1040 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1041 }
1042 return 0;
1043error0:
1044 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1045 return error;
1046}
1047
1048/*
1049 * Called from xfs_bmap_add_attrfork to handle extents format files.
1050 */
1051STATIC int /* error */
1052xfs_bmap_add_attrfork_extents(
1053 xfs_trans_t *tp, /* transaction pointer */
1054 xfs_inode_t *ip, /* incore inode pointer */
1055 xfs_fsblock_t *firstblock, /* first block allocated */
1056 xfs_bmap_free_t *flist, /* blocks to free at commit */
1057 int *flags) /* inode logging flags */
1058{
1059 xfs_btree_cur_t *cur; /* bmap btree cursor */
1060 int error; /* error return value */
1061
1062 if (ip->i_d.di_nextents * sizeof(xfs_bmbt_rec_t) <= XFS_IFORK_DSIZE(ip))
1063 return 0;
1064 cur = NULL;
1065 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist, &cur, 0,
1066 flags, XFS_DATA_FORK);
1067 if (cur) {
1068 cur->bc_private.b.allocated = 0;
1069 xfs_btree_del_cursor(cur,
1070 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
1071 }
1072 return error;
1073}
1074
1075/*
Dave Chinner1e823792013-02-11 15:58:13 +11001076 * Called from xfs_bmap_add_attrfork to handle local format files. Each
1077 * different data fork content type needs a different callout to do the
1078 * conversion. Some are basic and only require special block initialisation
1079 * callouts for the data formating, others (directories) are so specialised they
1080 * handle everything themselves.
1081 *
1082 * XXX (dgc): investigate whether directory conversion can use the generic
1083 * formatting callout. It should be possible - it's just a very complex
Christoph Hellwigee1a47a2013-04-21 14:53:46 -05001084 * formatter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 */
1086STATIC int /* error */
1087xfs_bmap_add_attrfork_local(
1088 xfs_trans_t *tp, /* transaction pointer */
1089 xfs_inode_t *ip, /* incore inode pointer */
1090 xfs_fsblock_t *firstblock, /* first block allocated */
1091 xfs_bmap_free_t *flist, /* blocks to free at commit */
1092 int *flags) /* inode logging flags */
1093{
1094 xfs_da_args_t dargs; /* args for dir/attr code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 if (ip->i_df.if_bytes <= XFS_IFORK_DSIZE(ip))
1097 return 0;
Dave Chinner1e823792013-02-11 15:58:13 +11001098
Al Viroabbede12011-07-26 02:31:30 -04001099 if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 memset(&dargs, 0, sizeof(dargs));
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001101 dargs.geo = ip->i_mount->m_dir_geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 dargs.dp = ip;
1103 dargs.firstblock = firstblock;
1104 dargs.flist = flist;
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001105 dargs.total = dargs.geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 dargs.whichfork = XFS_DATA_FORK;
1107 dargs.trans = tp;
Dave Chinner1e823792013-02-11 15:58:13 +11001108 return xfs_dir2_sf_to_block(&dargs);
1109 }
1110
1111 if (S_ISLNK(ip->i_d.di_mode))
1112 return xfs_bmap_local_to_extents(tp, ip, firstblock, 1,
1113 flags, XFS_DATA_FORK,
1114 xfs_symlink_local_to_remote);
1115
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001116 /* should only be called for types that support local format data */
1117 ASSERT(0);
1118 return EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
1121/*
Dave Chinner9e5987a2013-02-25 12:31:26 +11001122 * Convert inode from non-attributed to attributed.
1123 * Must not be in a transaction, ip must not be locked.
1124 */
1125int /* error code */
1126xfs_bmap_add_attrfork(
1127 xfs_inode_t *ip, /* incore inode pointer */
1128 int size, /* space new attribute needs */
1129 int rsvd) /* xact may use reserved blks */
1130{
1131 xfs_fsblock_t firstblock; /* 1st block/ag allocated */
1132 xfs_bmap_free_t flist; /* freed extent records */
1133 xfs_mount_t *mp; /* mount structure */
1134 xfs_trans_t *tp; /* transaction pointer */
1135 int blks; /* space reservation */
1136 int version = 1; /* superblock attr version */
1137 int committed; /* xaction was committed */
1138 int logflags; /* logging flags */
1139 int error; /* error return value */
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001140 int cancel_flags = 0;
Dave Chinner9e5987a2013-02-25 12:31:26 +11001141
1142 ASSERT(XFS_IFORK_Q(ip) == 0);
1143
1144 mp = ip->i_mount;
1145 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
1146 tp = xfs_trans_alloc(mp, XFS_TRANS_ADDAFORK);
1147 blks = XFS_ADDAFORK_SPACE_RES(mp);
1148 if (rsvd)
1149 tp->t_flags |= XFS_TRANS_RESERVE;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001150 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_addafork, blks, 0);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001151 if (error) {
1152 xfs_trans_cancel(tp, 0);
1153 return error;
1154 }
1155 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Dave Chinner9e5987a2013-02-25 12:31:26 +11001156 xfs_ilock(ip, XFS_ILOCK_EXCL);
1157 error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ?
1158 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
1159 XFS_QMOPT_RES_REGBLKS);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001160 if (error)
1161 goto trans_cancel;
1162 cancel_flags |= XFS_TRANS_ABORT;
Dave Chinner9e5987a2013-02-25 12:31:26 +11001163 if (XFS_IFORK_Q(ip))
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001164 goto trans_cancel;
Dave Chinner9e5987a2013-02-25 12:31:26 +11001165 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) {
1166 /*
1167 * For inodes coming from pre-6.2 filesystems.
1168 */
1169 ASSERT(ip->i_d.di_aformat == 0);
1170 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1171 }
1172 ASSERT(ip->i_d.di_anextents == 0);
1173
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001174 xfs_trans_ijoin(tp, ip, 0);
Dave Chinner9e5987a2013-02-25 12:31:26 +11001175 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1176
1177 switch (ip->i_d.di_format) {
1178 case XFS_DINODE_FMT_DEV:
1179 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
1180 break;
1181 case XFS_DINODE_FMT_UUID:
1182 ip->i_d.di_forkoff = roundup(sizeof(uuid_t), 8) >> 3;
1183 break;
1184 case XFS_DINODE_FMT_LOCAL:
1185 case XFS_DINODE_FMT_EXTENTS:
1186 case XFS_DINODE_FMT_BTREE:
1187 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
1188 if (!ip->i_d.di_forkoff)
1189 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
1190 else if (mp->m_flags & XFS_MOUNT_ATTR2)
1191 version = 2;
1192 break;
1193 default:
1194 ASSERT(0);
1195 error = XFS_ERROR(EINVAL);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001196 goto trans_cancel;
Dave Chinner9e5987a2013-02-25 12:31:26 +11001197 }
1198
1199 ASSERT(ip->i_afp == NULL);
1200 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
1201 ip->i_afp->if_flags = XFS_IFEXTENTS;
1202 logflags = 0;
1203 xfs_bmap_init(&flist, &firstblock);
1204 switch (ip->i_d.di_format) {
1205 case XFS_DINODE_FMT_LOCAL:
1206 error = xfs_bmap_add_attrfork_local(tp, ip, &firstblock, &flist,
1207 &logflags);
1208 break;
1209 case XFS_DINODE_FMT_EXTENTS:
1210 error = xfs_bmap_add_attrfork_extents(tp, ip, &firstblock,
1211 &flist, &logflags);
1212 break;
1213 case XFS_DINODE_FMT_BTREE:
1214 error = xfs_bmap_add_attrfork_btree(tp, ip, &firstblock, &flist,
1215 &logflags);
1216 break;
1217 default:
1218 error = 0;
1219 break;
1220 }
1221 if (logflags)
1222 xfs_trans_log_inode(tp, ip, logflags);
1223 if (error)
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001224 goto bmap_cancel;
Dave Chinner9e5987a2013-02-25 12:31:26 +11001225 if (!xfs_sb_version_hasattr(&mp->m_sb) ||
1226 (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) {
1227 __int64_t sbfields = 0;
1228
1229 spin_lock(&mp->m_sb_lock);
1230 if (!xfs_sb_version_hasattr(&mp->m_sb)) {
1231 xfs_sb_version_addattr(&mp->m_sb);
1232 sbfields |= XFS_SB_VERSIONNUM;
1233 }
1234 if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) {
1235 xfs_sb_version_addattr2(&mp->m_sb);
1236 sbfields |= (XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
1237 }
1238 if (sbfields) {
1239 spin_unlock(&mp->m_sb_lock);
1240 xfs_mod_sb(tp, sbfields);
1241 } else
1242 spin_unlock(&mp->m_sb_lock);
1243 }
1244
1245 error = xfs_bmap_finish(&tp, &flist, &committed);
1246 if (error)
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001247 goto bmap_cancel;
1248 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Dave Chinner9e5987a2013-02-25 12:31:26 +11001249 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001250 return error;
1251
1252bmap_cancel:
1253 xfs_bmap_cancel(&flist);
1254trans_cancel:
1255 xfs_trans_cancel(tp, cancel_flags);
1256 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner9e5987a2013-02-25 12:31:26 +11001257 return error;
1258}
1259
1260/*
1261 * Internal and external extent tree search functions.
1262 */
1263
1264/*
1265 * Read in the extents to if_extents.
1266 * All inode fields are set up by caller, we just traverse the btree
1267 * and copy the records in. If the file system cannot contain unwritten
1268 * extents, the records are checked for no "state" flags.
1269 */
1270int /* error */
1271xfs_bmap_read_extents(
1272 xfs_trans_t *tp, /* transaction pointer */
1273 xfs_inode_t *ip, /* incore inode */
1274 int whichfork) /* data or attr fork */
1275{
1276 struct xfs_btree_block *block; /* current btree block */
1277 xfs_fsblock_t bno; /* block # of "block" */
1278 xfs_buf_t *bp; /* buffer for "block" */
1279 int error; /* error return value */
1280 xfs_exntfmt_t exntf; /* XFS_EXTFMT_NOSTATE, if checking */
1281 xfs_extnum_t i, j; /* index into the extents list */
1282 xfs_ifork_t *ifp; /* fork structure */
1283 int level; /* btree level, for checking */
1284 xfs_mount_t *mp; /* file system mount structure */
1285 __be64 *pp; /* pointer to block address */
1286 /* REFERENCED */
1287 xfs_extnum_t room; /* number of entries there's room for */
1288
1289 bno = NULLFSBLOCK;
1290 mp = ip->i_mount;
1291 ifp = XFS_IFORK_PTR(ip, whichfork);
1292 exntf = (whichfork != XFS_DATA_FORK) ? XFS_EXTFMT_NOSTATE :
1293 XFS_EXTFMT_INODE(ip);
1294 block = ifp->if_broot;
1295 /*
1296 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
1297 */
1298 level = be16_to_cpu(block->bb_level);
1299 ASSERT(level > 0);
1300 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
1301 bno = be64_to_cpu(*pp);
1302 ASSERT(bno != NULLDFSBNO);
1303 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
1304 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
1305 /*
1306 * Go down the tree until leaf level is reached, following the first
1307 * pointer (leftmost) at each level.
1308 */
1309 while (level-- > 0) {
1310 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1311 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1312 if (error)
1313 return error;
1314 block = XFS_BUF_TO_BLOCK(bp);
1315 XFS_WANT_CORRUPTED_GOTO(
1316 xfs_bmap_sanity_check(mp, bp, level),
1317 error0);
1318 if (level == 0)
1319 break;
1320 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
1321 bno = be64_to_cpu(*pp);
1322 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
1323 xfs_trans_brelse(tp, bp);
1324 }
1325 /*
1326 * Here with bp and block set to the leftmost leaf node in the tree.
1327 */
1328 room = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1329 i = 0;
1330 /*
1331 * Loop over all leaf nodes. Copy information to the extent records.
1332 */
1333 for (;;) {
1334 xfs_bmbt_rec_t *frp;
1335 xfs_fsblock_t nextbno;
1336 xfs_extnum_t num_recs;
1337 xfs_extnum_t start;
1338
1339 num_recs = xfs_btree_get_numrecs(block);
1340 if (unlikely(i + num_recs > room)) {
1341 ASSERT(i + num_recs <= room);
1342 xfs_warn(ip->i_mount,
1343 "corrupt dinode %Lu, (btree extents).",
1344 (unsigned long long) ip->i_ino);
1345 XFS_CORRUPTION_ERROR("xfs_bmap_read_extents(1)",
1346 XFS_ERRLEVEL_LOW, ip->i_mount, block);
1347 goto error0;
1348 }
1349 XFS_WANT_CORRUPTED_GOTO(
1350 xfs_bmap_sanity_check(mp, bp, 0),
1351 error0);
1352 /*
1353 * Read-ahead the next leaf block, if any.
1354 */
1355 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
1356 if (nextbno != NULLFSBLOCK)
1357 xfs_btree_reada_bufl(mp, nextbno, 1,
1358 &xfs_bmbt_buf_ops);
1359 /*
1360 * Copy records into the extent records.
1361 */
1362 frp = XFS_BMBT_REC_ADDR(mp, block, 1);
1363 start = i;
1364 for (j = 0; j < num_recs; j++, i++, frp++) {
1365 xfs_bmbt_rec_host_t *trp = xfs_iext_get_ext(ifp, i);
1366 trp->l0 = be64_to_cpu(frp->l0);
1367 trp->l1 = be64_to_cpu(frp->l1);
1368 }
1369 if (exntf == XFS_EXTFMT_NOSTATE) {
1370 /*
1371 * Check all attribute bmap btree records and
1372 * any "older" data bmap btree records for a
1373 * set bit in the "extent flag" position.
1374 */
1375 if (unlikely(xfs_check_nostate_extents(ifp,
1376 start, num_recs))) {
1377 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
1378 XFS_ERRLEVEL_LOW,
1379 ip->i_mount);
1380 goto error0;
1381 }
1382 }
1383 xfs_trans_brelse(tp, bp);
1384 bno = nextbno;
1385 /*
1386 * If we've reached the end, stop.
1387 */
1388 if (bno == NULLFSBLOCK)
1389 break;
1390 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1391 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1392 if (error)
1393 return error;
1394 block = XFS_BUF_TO_BLOCK(bp);
1395 }
1396 ASSERT(i == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
1397 ASSERT(i == XFS_IFORK_NEXTENTS(ip, whichfork));
1398 XFS_BMAP_TRACE_EXLIST(ip, i, whichfork);
1399 return 0;
1400error0:
1401 xfs_trans_brelse(tp, bp);
1402 return XFS_ERROR(EFSCORRUPTED);
1403}
1404
1405
1406/*
1407 * Search the extent records for the entry containing block bno.
1408 * If bno lies in a hole, point to the next entry. If bno lies
1409 * past eof, *eofp will be set, and *prevp will contain the last
1410 * entry (null if none). Else, *lastxp will be set to the index
1411 * of the found entry; *gotp will contain the entry.
1412 */
1413STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1414xfs_bmap_search_multi_extents(
1415 xfs_ifork_t *ifp, /* inode fork pointer */
1416 xfs_fileoff_t bno, /* block number searched for */
1417 int *eofp, /* out: end of file found */
1418 xfs_extnum_t *lastxp, /* out: last extent index */
1419 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1420 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1421{
1422 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1423 xfs_extnum_t lastx; /* last extent index */
1424
1425 /*
1426 * Initialize the extent entry structure to catch access to
1427 * uninitialized br_startblock field.
1428 */
1429 gotp->br_startoff = 0xffa5a5a5a5a5a5a5LL;
1430 gotp->br_blockcount = 0xa55a5a5a5a5a5a5aLL;
1431 gotp->br_state = XFS_EXT_INVALID;
1432#if XFS_BIG_BLKNOS
1433 gotp->br_startblock = 0xffffa5a5a5a5a5a5LL;
1434#else
1435 gotp->br_startblock = 0xffffa5a5;
1436#endif
1437 prevp->br_startoff = NULLFILEOFF;
1438
1439 ep = xfs_iext_bno_to_ext(ifp, bno, &lastx);
1440 if (lastx > 0) {
1441 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx - 1), prevp);
1442 }
1443 if (lastx < (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))) {
1444 xfs_bmbt_get_all(ep, gotp);
1445 *eofp = 0;
1446 } else {
1447 if (lastx > 0) {
1448 *gotp = *prevp;
1449 }
1450 *eofp = 1;
1451 ep = NULL;
1452 }
1453 *lastxp = lastx;
1454 return ep;
1455}
1456
1457/*
1458 * Search the extents list for the inode, for the extent containing bno.
1459 * If bno lies in a hole, point to the next entry. If bno lies past eof,
1460 * *eofp will be set, and *prevp will contain the last entry (null if none).
1461 * Else, *lastxp will be set to the index of the found
1462 * entry; *gotp will contain the entry.
1463 */
1464STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1465xfs_bmap_search_extents(
1466 xfs_inode_t *ip, /* incore inode pointer */
1467 xfs_fileoff_t bno, /* block number searched for */
1468 int fork, /* data or attr fork */
1469 int *eofp, /* out: end of file found */
1470 xfs_extnum_t *lastxp, /* out: last extent index */
1471 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1472 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1473{
1474 xfs_ifork_t *ifp; /* inode fork pointer */
1475 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1476
1477 XFS_STATS_INC(xs_look_exlist);
1478 ifp = XFS_IFORK_PTR(ip, fork);
1479
1480 ep = xfs_bmap_search_multi_extents(ifp, bno, eofp, lastxp, gotp, prevp);
1481
1482 if (unlikely(!(gotp->br_startblock) && (*lastxp != NULLEXTNUM) &&
1483 !(XFS_IS_REALTIME_INODE(ip) && fork == XFS_DATA_FORK))) {
1484 xfs_alert_tag(ip->i_mount, XFS_PTAG_FSBLOCK_ZERO,
1485 "Access to block zero in inode %llu "
1486 "start_block: %llx start_off: %llx "
Eric Sandeen08e96e12013-10-11 20:59:05 -05001487 "blkcnt: %llx extent-state: %x lastx: %x",
Dave Chinner9e5987a2013-02-25 12:31:26 +11001488 (unsigned long long)ip->i_ino,
1489 (unsigned long long)gotp->br_startblock,
1490 (unsigned long long)gotp->br_startoff,
1491 (unsigned long long)gotp->br_blockcount,
1492 gotp->br_state, *lastxp);
1493 *lastxp = NULLEXTNUM;
1494 *eofp = 1;
1495 return NULL;
1496 }
1497 return ep;
1498}
1499
1500/*
1501 * Returns the file-relative block number of the first unused block(s)
1502 * in the file with at least "len" logically contiguous blocks free.
1503 * This is the lowest-address hole if the file has holes, else the first block
1504 * past the end of file.
1505 * Return 0 if the file is currently local (in-inode).
1506 */
1507int /* error */
1508xfs_bmap_first_unused(
1509 xfs_trans_t *tp, /* transaction pointer */
1510 xfs_inode_t *ip, /* incore inode */
1511 xfs_extlen_t len, /* size of hole to find */
1512 xfs_fileoff_t *first_unused, /* unused block */
1513 int whichfork) /* data or attr fork */
1514{
1515 int error; /* error return value */
1516 int idx; /* extent record index */
1517 xfs_ifork_t *ifp; /* inode fork pointer */
1518 xfs_fileoff_t lastaddr; /* last block number seen */
1519 xfs_fileoff_t lowest; /* lowest useful block */
1520 xfs_fileoff_t max; /* starting useful block */
1521 xfs_fileoff_t off; /* offset for this block */
1522 xfs_extnum_t nextents; /* number of extent entries */
1523
1524 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE ||
1525 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ||
1526 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
1527 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1528 *first_unused = 0;
1529 return 0;
1530 }
1531 ifp = XFS_IFORK_PTR(ip, whichfork);
1532 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1533 (error = xfs_iread_extents(tp, ip, whichfork)))
1534 return error;
1535 lowest = *first_unused;
1536 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1537 for (idx = 0, lastaddr = 0, max = lowest; idx < nextents; idx++) {
1538 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
1539 off = xfs_bmbt_get_startoff(ep);
1540 /*
1541 * See if the hole before this extent will work.
1542 */
1543 if (off >= lowest + len && off - max >= len) {
1544 *first_unused = max;
1545 return 0;
1546 }
1547 lastaddr = off + xfs_bmbt_get_blockcount(ep);
1548 max = XFS_FILEOFF_MAX(lastaddr, lowest);
1549 }
1550 *first_unused = max;
1551 return 0;
1552}
1553
1554/*
Zhi Yong Wu02bb4872013-08-12 03:14:54 +00001555 * Returns the file-relative block number of the last block - 1 before
Dave Chinner9e5987a2013-02-25 12:31:26 +11001556 * last_block (input value) in the file.
1557 * This is not based on i_size, it is based on the extent records.
1558 * Returns 0 for local files, as they do not have extent records.
1559 */
1560int /* error */
1561xfs_bmap_last_before(
1562 xfs_trans_t *tp, /* transaction pointer */
1563 xfs_inode_t *ip, /* incore inode */
1564 xfs_fileoff_t *last_block, /* last block */
1565 int whichfork) /* data or attr fork */
1566{
1567 xfs_fileoff_t bno; /* input file offset */
1568 int eof; /* hit end of file */
1569 xfs_bmbt_rec_host_t *ep; /* pointer to last extent */
1570 int error; /* error return value */
1571 xfs_bmbt_irec_t got; /* current extent value */
1572 xfs_ifork_t *ifp; /* inode fork pointer */
1573 xfs_extnum_t lastx; /* last extent used */
1574 xfs_bmbt_irec_t prev; /* previous extent value */
1575
1576 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1577 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
1578 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
1579 return XFS_ERROR(EIO);
1580 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1581 *last_block = 0;
1582 return 0;
1583 }
1584 ifp = XFS_IFORK_PTR(ip, whichfork);
1585 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1586 (error = xfs_iread_extents(tp, ip, whichfork)))
1587 return error;
1588 bno = *last_block - 1;
1589 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
1590 &prev);
1591 if (eof || xfs_bmbt_get_startoff(ep) > bno) {
1592 if (prev.br_startoff == NULLFILEOFF)
1593 *last_block = 0;
1594 else
1595 *last_block = prev.br_startoff + prev.br_blockcount;
1596 }
1597 /*
1598 * Otherwise *last_block is already the right answer.
1599 */
1600 return 0;
1601}
1602
Dave Chinner68988112013-08-12 20:49:42 +10001603int
Dave Chinner9e5987a2013-02-25 12:31:26 +11001604xfs_bmap_last_extent(
1605 struct xfs_trans *tp,
1606 struct xfs_inode *ip,
1607 int whichfork,
1608 struct xfs_bmbt_irec *rec,
1609 int *is_empty)
1610{
1611 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1612 int error;
1613 int nextents;
1614
1615 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1616 error = xfs_iread_extents(tp, ip, whichfork);
1617 if (error)
1618 return error;
1619 }
1620
1621 nextents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
1622 if (nextents == 0) {
1623 *is_empty = 1;
1624 return 0;
1625 }
1626
1627 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, nextents - 1), rec);
1628 *is_empty = 0;
1629 return 0;
1630}
1631
1632/*
1633 * Check the last inode extent to determine whether this allocation will result
1634 * in blocks being allocated at the end of the file. When we allocate new data
1635 * blocks at the end of the file which do not start at the previous data block,
1636 * we will try to align the new blocks at stripe unit boundaries.
1637 *
Dave Chinner6e708bc2013-11-22 10:41:16 +11001638 * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be
Dave Chinner9e5987a2013-02-25 12:31:26 +11001639 * at, or past the EOF.
1640 */
1641STATIC int
1642xfs_bmap_isaeof(
1643 struct xfs_bmalloca *bma,
1644 int whichfork)
1645{
1646 struct xfs_bmbt_irec rec;
1647 int is_empty;
1648 int error;
1649
1650 bma->aeof = 0;
1651 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec,
1652 &is_empty);
Dave Chinner6e708bc2013-11-22 10:41:16 +11001653 if (error)
Dave Chinner9e5987a2013-02-25 12:31:26 +11001654 return error;
1655
Dave Chinner6e708bc2013-11-22 10:41:16 +11001656 if (is_empty) {
1657 bma->aeof = 1;
1658 return 0;
1659 }
1660
Dave Chinner9e5987a2013-02-25 12:31:26 +11001661 /*
1662 * Check if we are allocation or past the last extent, or at least into
1663 * the last delayed allocated extent.
1664 */
1665 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount ||
1666 (bma->offset >= rec.br_startoff &&
1667 isnullstartblock(rec.br_startblock));
1668 return 0;
1669}
1670
1671/*
Dave Chinner9e5987a2013-02-25 12:31:26 +11001672 * Returns the file-relative block number of the first block past eof in
1673 * the file. This is not based on i_size, it is based on the extent records.
1674 * Returns 0 for local files, as they do not have extent records.
1675 */
1676int
1677xfs_bmap_last_offset(
Dave Chinner9e5987a2013-02-25 12:31:26 +11001678 struct xfs_inode *ip,
1679 xfs_fileoff_t *last_block,
1680 int whichfork)
1681{
1682 struct xfs_bmbt_irec rec;
1683 int is_empty;
1684 int error;
1685
1686 *last_block = 0;
1687
1688 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL)
1689 return 0;
1690
1691 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1692 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1693 return XFS_ERROR(EIO);
1694
1695 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty);
1696 if (error || is_empty)
1697 return error;
1698
1699 *last_block = rec.br_startoff + rec.br_blockcount;
1700 return 0;
1701}
1702
1703/*
1704 * Returns whether the selected fork of the inode has exactly one
1705 * block or not. For the data fork we check this matches di_size,
1706 * implying the file's range is 0..bsize-1.
1707 */
1708int /* 1=>1 block, 0=>otherwise */
1709xfs_bmap_one_block(
1710 xfs_inode_t *ip, /* incore inode */
1711 int whichfork) /* data or attr fork */
1712{
1713 xfs_bmbt_rec_host_t *ep; /* ptr to fork's extent */
1714 xfs_ifork_t *ifp; /* inode fork pointer */
1715 int rval; /* return value */
1716 xfs_bmbt_irec_t s; /* internal version of extent */
1717
1718#ifndef DEBUG
1719 if (whichfork == XFS_DATA_FORK)
1720 return XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize;
1721#endif /* !DEBUG */
1722 if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1)
1723 return 0;
1724 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1725 return 0;
1726 ifp = XFS_IFORK_PTR(ip, whichfork);
1727 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
1728 ep = xfs_iext_get_ext(ifp, 0);
1729 xfs_bmbt_get_all(ep, &s);
1730 rval = s.br_startoff == 0 && s.br_blockcount == 1;
1731 if (rval && whichfork == XFS_DATA_FORK)
1732 ASSERT(XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize);
1733 return rval;
1734}
1735
1736/*
1737 * Extent tree manipulation functions used during allocation.
1738 */
1739
1740/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001741 * Convert a delayed allocation to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 */
1743STATIC int /* error */
1744xfs_bmap_add_extent_delay_real(
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001745 struct xfs_bmalloca *bma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001747 struct xfs_bmbt_irec *new = &bma->got;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 int diff; /* temp value */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001749 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001752 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 xfs_fileoff_t new_endoff; /* end offset of new entry */
1754 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
1755 /* left is 0, right is 1, prev is 2 */
1756 int rval=0; /* return value (logging flags) */
1757 int state = 0;/* state bits, accessed thru macros */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001758 xfs_filblks_t da_new; /* new count del alloc blocks used */
1759 xfs_filblks_t da_old; /* old count del alloc blocks used */
1760 xfs_filblks_t temp=0; /* value for da_new calculations */
1761 xfs_filblks_t temp2=0;/* value for da_new calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 int tmp_rval; /* partial logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001764 ifp = XFS_IFORK_PTR(bma->ip, XFS_DATA_FORK);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001765
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001766 ASSERT(bma->idx >= 0);
1767 ASSERT(bma->idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001768 ASSERT(!isnullstartblock(new->br_startblock));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001769 ASSERT(!bma->cur ||
1770 (bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001771
1772 XFS_STATS_INC(xs_add_exlist);
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774#define LEFT r[0]
1775#define RIGHT r[1]
1776#define PREV r[2]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 /*
1779 * Set up a bunch of variables to make the tests simpler.
1780 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001781 ep = xfs_iext_get_ext(ifp, bma->idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 xfs_bmbt_get_all(ep, &PREV);
1783 new_endoff = new->br_startoff + new->br_blockcount;
1784 ASSERT(PREV.br_startoff <= new->br_startoff);
1785 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001786
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001787 da_old = startblockval(PREV.br_startblock);
1788 da_new = 0;
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 /*
1791 * Set flags determining what part of the previous delayed allocation
1792 * extent is being replaced by a real allocation.
1793 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001794 if (PREV.br_startoff == new->br_startoff)
1795 state |= BMAP_LEFT_FILLING;
1796 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
1797 state |= BMAP_RIGHT_FILLING;
1798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 /*
1800 * Check and set flags if this segment has a left neighbor.
1801 * Don't set contiguous if the combined extent would be too large.
1802 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001803 if (bma->idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001804 state |= BMAP_LEFT_VALID;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001805 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &LEFT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001806
1807 if (isnullstartblock(LEFT.br_startblock))
1808 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001810
1811 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
1812 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
1813 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
1814 LEFT.br_state == new->br_state &&
1815 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1816 state |= BMAP_LEFT_CONTIG;
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 /*
1819 * Check and set flags if this segment has a right neighbor.
1820 * Don't set contiguous if the combined extent would be too large.
1821 * Also check for all-three-contiguous being too large.
1822 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001823 if (bma->idx < bma->ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001824 state |= BMAP_RIGHT_VALID;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001825 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx + 1), &RIGHT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001826
1827 if (isnullstartblock(RIGHT.br_startblock))
1828 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001830
1831 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1832 new_endoff == RIGHT.br_startoff &&
1833 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
1834 new->br_state == RIGHT.br_state &&
1835 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1836 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1837 BMAP_RIGHT_FILLING)) !=
1838 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1839 BMAP_RIGHT_FILLING) ||
1840 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1841 <= MAXEXTLEN))
1842 state |= BMAP_RIGHT_CONTIG;
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 error = 0;
1845 /*
1846 * Switch out based on the FILLING and CONTIG state bits.
1847 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001848 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1849 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
1850 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1851 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 /*
1853 * Filling in all of a previously delayed allocation extent.
1854 * The left and right neighbors are both contiguous with new.
1855 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001856 bma->idx--;
1857 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1858 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 LEFT.br_blockcount + PREV.br_blockcount +
1860 RIGHT.br_blockcount);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001861 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001862
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001863 xfs_iext_remove(bma->ip, bma->idx + 1, 2, state);
1864 bma->ip->i_d.di_nextents--;
1865 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1867 else {
1868 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001869 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 RIGHT.br_startblock,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001871 RIGHT.br_blockcount, &i);
1872 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001874 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001875 error = xfs_btree_delete(bma->cur, &i);
1876 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001878 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001879 error = xfs_btree_decrement(bma->cur, 0, &i);
1880 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001882 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001883 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 LEFT.br_startblock,
1885 LEFT.br_blockcount +
1886 PREV.br_blockcount +
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001887 RIGHT.br_blockcount, LEFT.br_state);
1888 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 goto done;
1890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 break;
1892
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001893 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 /*
1895 * Filling in all of a previously delayed allocation extent.
1896 * The left neighbor is contiguous, the right is not.
1897 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001898 bma->idx--;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001899
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001900 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1901 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
Christoph Hellwigec90c552011-05-23 08:52:53 +00001902 LEFT.br_blockcount + PREV.br_blockcount);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001903 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001904
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001905 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1906 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 rval = XFS_ILOG_DEXT;
1908 else {
1909 rval = 0;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001910 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 LEFT.br_startblock, LEFT.br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001912 &i);
1913 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001915 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001916 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 LEFT.br_startblock,
1918 LEFT.br_blockcount +
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001919 PREV.br_blockcount, LEFT.br_state);
1920 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 goto done;
1922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 break;
1924
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001925 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 /*
1927 * Filling in all of a previously delayed allocation extent.
1928 * The right neighbor is contiguous, the left is not.
1929 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001930 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 xfs_bmbt_set_startblock(ep, new->br_startblock);
1932 xfs_bmbt_set_blockcount(ep,
1933 PREV.br_blockcount + RIGHT.br_blockcount);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001934 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001935
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001936 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1937 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 rval = XFS_ILOG_DEXT;
1939 else {
1940 rval = 0;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001941 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 RIGHT.br_startblock,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001943 RIGHT.br_blockcount, &i);
1944 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001946 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001947 error = xfs_bmbt_update(bma->cur, PREV.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 new->br_startblock,
1949 PREV.br_blockcount +
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001950 RIGHT.br_blockcount, PREV.br_state);
1951 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 goto done;
1953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 break;
1955
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001956 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 /*
1958 * Filling in all of a previously delayed allocation extent.
1959 * Neither the left nor right neighbors are contiguous with
1960 * the new one.
1961 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001962 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 xfs_bmbt_set_startblock(ep, new->br_startblock);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001964 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001965
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001966 bma->ip->i_d.di_nextents++;
1967 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1969 else {
1970 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001971 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 new->br_startblock, new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001973 &i);
1974 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001976 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001977 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
1978 error = xfs_btree_insert(bma->cur, &i);
1979 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001981 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 break;
1984
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001985 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 /*
1987 * Filling in the first part of a previous delayed allocation.
1988 * The left neighbor is contiguous.
1989 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001990 trace_xfs_bmap_pre_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
1991 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 LEFT.br_blockcount + new->br_blockcount);
1993 xfs_bmbt_set_startoff(ep,
1994 PREV.br_startoff + new->br_blockcount);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001995 trace_xfs_bmap_post_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001998 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002000 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 rval = XFS_ILOG_DEXT;
2002 else {
2003 rval = 0;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002004 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 LEFT.br_startblock, LEFT.br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002006 &i);
2007 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002009 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002010 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 LEFT.br_startblock,
2012 LEFT.br_blockcount +
2013 new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002014 LEFT.br_state);
2015 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 goto done;
2017 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002018 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002019 startblockval(PREV.br_startblock));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002020 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002021 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002022
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002023 bma->idx--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 break;
2025
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002026 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 /*
2028 * Filling in the first part of a previous delayed allocation.
2029 * The left neighbor is not contiguous.
2030 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002031 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 xfs_bmbt_set_startoff(ep, new_endoff);
2033 temp = PREV.br_blockcount - new->br_blockcount;
2034 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002035 xfs_iext_insert(bma->ip, bma->idx, 1, new, state);
2036 bma->ip->i_d.di_nextents++;
2037 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2039 else {
2040 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002041 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 new->br_startblock, new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002043 &i);
2044 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002046 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002047 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2048 error = xfs_btree_insert(bma->cur, &i);
2049 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002051 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002053
2054 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002055 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2056 bma->firstblock, bma->flist,
2057 &bma->cur, 1, &tmp_rval, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 rval |= tmp_rval;
2059 if (error)
2060 goto done;
2061 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002062 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002063 startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002064 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2065 ep = xfs_iext_get_ext(ifp, bma->idx + 1);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002066 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002067 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 break;
2069
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002070 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 /*
2072 * Filling in the last part of a previous delayed allocation.
2073 * The right neighbor is contiguous with the new allocation.
2074 */
2075 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002076 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002078 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, bma->idx + 1),
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002079 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 new->br_blockcount + RIGHT.br_blockcount,
2081 RIGHT.br_state);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002082 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2083 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 rval = XFS_ILOG_DEXT;
2085 else {
2086 rval = 0;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002087 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 RIGHT.br_startblock,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002089 RIGHT.br_blockcount, &i);
2090 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002092 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002093 error = xfs_bmbt_update(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 new->br_startblock,
2095 new->br_blockcount +
2096 RIGHT.br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002097 RIGHT.br_state);
2098 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 goto done;
2100 }
Christoph Hellwigec90c552011-05-23 08:52:53 +00002101
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002102 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002103 startblockval(PREV.br_startblock));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002104 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002105 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002106 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002107
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002108 bma->idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 break;
2110
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002111 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 /*
2113 * Filling in the last part of a previous delayed allocation.
2114 * The right neighbor is not contiguous.
2115 */
2116 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002117 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002119 xfs_iext_insert(bma->ip, bma->idx + 1, 1, new, state);
2120 bma->ip->i_d.di_nextents++;
2121 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2123 else {
2124 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002125 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 new->br_startblock, new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002127 &i);
2128 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002130 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002131 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2132 error = xfs_btree_insert(bma->cur, &i);
2133 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002135 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002137
2138 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002139 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2140 bma->firstblock, bma->flist, &bma->cur, 1,
2141 &tmp_rval, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 rval |= tmp_rval;
2143 if (error)
2144 goto done;
2145 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002146 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002147 startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002148 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2149 ep = xfs_iext_get_ext(ifp, bma->idx);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002150 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002151 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002152
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002153 bma->idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 break;
2155
2156 case 0:
2157 /*
2158 * Filling in the middle part of a previous delayed allocation.
2159 * Contiguity is impossible here.
2160 * This case is avoided almost all the time.
bpm@sgi.com24446fc2011-01-19 17:41:58 +00002161 *
2162 * We start with a delayed allocation:
2163 *
2164 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
2165 * PREV @ idx
2166 *
2167 * and we are allocating:
2168 * +rrrrrrrrrrrrrrrrr+
2169 * new
2170 *
2171 * and we set it up for insertion as:
2172 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
2173 * new
2174 * PREV @ idx LEFT RIGHT
2175 * inserted at idx + 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 */
2177 temp = new->br_startoff - PREV.br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 temp2 = PREV.br_startoff + PREV.br_blockcount - new_endoff;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002179 trace_xfs_bmap_pre_update(bma->ip, bma->idx, 0, _THIS_IP_);
bpm@sgi.com24446fc2011-01-19 17:41:58 +00002180 xfs_bmbt_set_blockcount(ep, temp); /* truncate PREV */
2181 LEFT = *new;
2182 RIGHT.br_state = PREV.br_state;
2183 RIGHT.br_startblock = nullstartblock(
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002184 (int)xfs_bmap_worst_indlen(bma->ip, temp2));
bpm@sgi.com24446fc2011-01-19 17:41:58 +00002185 RIGHT.br_startoff = new_endoff;
2186 RIGHT.br_blockcount = temp2;
2187 /* insert LEFT (r[0]) and RIGHT (r[1]) at the same time */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002188 xfs_iext_insert(bma->ip, bma->idx + 1, 2, &LEFT, state);
2189 bma->ip->i_d.di_nextents++;
2190 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2192 else {
2193 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002194 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 new->br_startblock, new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002196 &i);
2197 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002199 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002200 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2201 error = xfs_btree_insert(bma->cur, &i);
2202 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002204 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002206
2207 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002208 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2209 bma->firstblock, bma->flist, &bma->cur,
2210 1, &tmp_rval, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 rval |= tmp_rval;
2212 if (error)
2213 goto done;
2214 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002215 temp = xfs_bmap_worst_indlen(bma->ip, temp);
2216 temp2 = xfs_bmap_worst_indlen(bma->ip, temp2);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002217 diff = (int)(temp + temp2 - startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002218 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
Christoph Hellwigb9b984d2011-09-18 20:40:42 +00002219 if (diff > 0) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002220 error = xfs_icsb_modify_counters(bma->ip->i_mount,
Christoph Hellwigb9b984d2011-09-18 20:40:42 +00002221 XFS_SBS_FDBLOCKS,
2222 -((int64_t)diff), 0);
2223 ASSERT(!error);
2224 if (error)
2225 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 }
Christoph Hellwigb9b984d2011-09-18 20:40:42 +00002227
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002228 ep = xfs_iext_get_ext(ifp, bma->idx);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002229 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002230 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2231 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
2232 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, bma->idx + 2),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002233 nullstartblock((int)temp2));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002234 trace_xfs_bmap_post_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002235
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002236 bma->idx++;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002237 da_new = temp + temp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 break;
2239
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002240 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2241 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2242 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2243 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2244 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2245 case BMAP_LEFT_CONTIG:
2246 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 /*
2248 * These cases are all impossible.
2249 */
2250 ASSERT(0);
2251 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002252
2253 /* convert to a btree if necessary */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002254 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002255 int tmp_logflags; /* partial log flag return val */
2256
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002257 ASSERT(bma->cur == NULL);
2258 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2259 bma->firstblock, bma->flist, &bma->cur,
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002260 da_old > 0, &tmp_logflags, XFS_DATA_FORK);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002261 bma->logflags |= tmp_logflags;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002262 if (error)
2263 goto done;
2264 }
2265
2266 /* adjust for changes in reserved delayed indirect blocks */
2267 if (da_old || da_new) {
2268 temp = da_new;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002269 if (bma->cur)
2270 temp += bma->cur->bc_private.b.allocated;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002271 ASSERT(temp <= da_old);
2272 if (temp < da_old)
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002273 xfs_icsb_modify_counters(bma->ip->i_mount,
2274 XFS_SBS_FDBLOCKS,
2275 (int64_t)(da_old - temp), 0);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002276 }
2277
2278 /* clear out the allocated field, done with it now in any case. */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002279 if (bma->cur)
2280 bma->cur->bc_private.b.allocated = 0;
2281
2282 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283done:
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002284 bma->logflags |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 return error;
2286#undef LEFT
2287#undef RIGHT
2288#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
2291/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002292 * Convert an unwritten allocation to a real allocation or vice versa.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 */
2294STATIC int /* error */
2295xfs_bmap_add_extent_unwritten_real(
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002296 struct xfs_trans *tp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 xfs_inode_t *ip, /* incore inode pointer */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002298 xfs_extnum_t *idx, /* extent number to update/insert */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002300 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002301 xfs_fsblock_t *first, /* pointer to firstblock variable */
2302 xfs_bmap_free_t *flist, /* list of extents to be freed */
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002303 int *logflagsp) /* inode logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 xfs_btree_cur_t *cur; /* btree cursor */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002306 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002309 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 xfs_fileoff_t new_endoff; /* end offset of new entry */
2311 xfs_exntst_t newext; /* new extent state */
2312 xfs_exntst_t oldext; /* old extent state */
2313 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
2314 /* left is 0, right is 1, prev is 2 */
2315 int rval=0; /* return value (logging flags) */
2316 int state = 0;/* state bits, accessed thru macros */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002318 *logflagsp = 0;
2319
2320 cur = *curp;
2321 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
2322
2323 ASSERT(*idx >= 0);
2324 ASSERT(*idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
2325 ASSERT(!isnullstartblock(new->br_startblock));
2326
2327 XFS_STATS_INC(xs_add_exlist);
2328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329#define LEFT r[0]
2330#define RIGHT r[1]
2331#define PREV r[2]
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002332
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 /*
2334 * Set up a bunch of variables to make the tests simpler.
2335 */
2336 error = 0;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002337 ep = xfs_iext_get_ext(ifp, *idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 xfs_bmbt_get_all(ep, &PREV);
2339 newext = new->br_state;
2340 oldext = (newext == XFS_EXT_UNWRITTEN) ?
2341 XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
2342 ASSERT(PREV.br_state == oldext);
2343 new_endoff = new->br_startoff + new->br_blockcount;
2344 ASSERT(PREV.br_startoff <= new->br_startoff);
2345 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 /*
2348 * Set flags determining what part of the previous oldext allocation
2349 * extent is being replaced by a newext allocation.
2350 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002351 if (PREV.br_startoff == new->br_startoff)
2352 state |= BMAP_LEFT_FILLING;
2353 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
2354 state |= BMAP_RIGHT_FILLING;
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 /*
2357 * Check and set flags if this segment has a left neighbor.
2358 * Don't set contiguous if the combined extent would be too large.
2359 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002360 if (*idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002361 state |= BMAP_LEFT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002362 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &LEFT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002363
2364 if (isnullstartblock(LEFT.br_startblock))
2365 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002367
2368 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2369 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
2370 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
2371 LEFT.br_state == newext &&
2372 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2373 state |= BMAP_LEFT_CONTIG;
2374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 /*
2376 * Check and set flags if this segment has a right neighbor.
2377 * Don't set contiguous if the combined extent would be too large.
2378 * Also check for all-three-contiguous being too large.
2379 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002380 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002381 state |= BMAP_RIGHT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002382 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx + 1), &RIGHT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002383 if (isnullstartblock(RIGHT.br_startblock))
2384 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002386
2387 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2388 new_endoff == RIGHT.br_startoff &&
2389 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
2390 newext == RIGHT.br_state &&
2391 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
2392 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2393 BMAP_RIGHT_FILLING)) !=
2394 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2395 BMAP_RIGHT_FILLING) ||
2396 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
2397 <= MAXEXTLEN))
2398 state |= BMAP_RIGHT_CONTIG;
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 /*
2401 * Switch out based on the FILLING and CONTIG state bits.
2402 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002403 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2404 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
2405 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2406 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 /*
2408 * Setting all of a previous oldext extent to newext.
2409 * The left and right neighbors are both contiguous with new.
2410 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002411 --*idx;
2412
2413 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2414 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 LEFT.br_blockcount + PREV.br_blockcount +
2416 RIGHT.br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002417 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002418
Christoph Hellwigec90c552011-05-23 08:52:53 +00002419 xfs_iext_remove(ip, *idx + 1, 2, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 ip->i_d.di_nextents -= 2;
2421 if (cur == NULL)
2422 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2423 else {
2424 rval = XFS_ILOG_CORE;
2425 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2426 RIGHT.br_startblock,
2427 RIGHT.br_blockcount, &i)))
2428 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002429 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002430 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002432 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002433 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002435 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002436 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002438 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002439 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002441 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2443 LEFT.br_startblock,
2444 LEFT.br_blockcount + PREV.br_blockcount +
2445 RIGHT.br_blockcount, LEFT.br_state)))
2446 goto done;
2447 }
2448 break;
2449
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002450 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 /*
2452 * Setting all of a previous oldext extent to newext.
2453 * The left neighbor is contiguous, the right is not.
2454 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002455 --*idx;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002456
Christoph Hellwigec90c552011-05-23 08:52:53 +00002457 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2458 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
2459 LEFT.br_blockcount + PREV.br_blockcount);
2460 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2461
2462 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 ip->i_d.di_nextents--;
2464 if (cur == NULL)
2465 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2466 else {
2467 rval = XFS_ILOG_CORE;
2468 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2469 PREV.br_startblock, PREV.br_blockcount,
2470 &i)))
2471 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002472 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002473 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002475 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002476 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002478 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2480 LEFT.br_startblock,
2481 LEFT.br_blockcount + PREV.br_blockcount,
2482 LEFT.br_state)))
2483 goto done;
2484 }
2485 break;
2486
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002487 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 /*
2489 * Setting all of a previous oldext extent to newext.
2490 * The right neighbor is contiguous, the left is not.
2491 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002492 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 xfs_bmbt_set_blockcount(ep,
2494 PREV.br_blockcount + RIGHT.br_blockcount);
2495 xfs_bmbt_set_state(ep, newext);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002496 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2497 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 ip->i_d.di_nextents--;
2499 if (cur == NULL)
2500 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2501 else {
2502 rval = XFS_ILOG_CORE;
2503 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2504 RIGHT.br_startblock,
2505 RIGHT.br_blockcount, &i)))
2506 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002507 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002508 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002510 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002511 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002513 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2515 new->br_startblock,
2516 new->br_blockcount + RIGHT.br_blockcount,
2517 newext)))
2518 goto done;
2519 }
2520 break;
2521
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002522 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 /*
2524 * Setting all of a previous oldext extent to newext.
2525 * Neither the left nor right neighbors are contiguous with
2526 * the new one.
2527 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002528 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 xfs_bmbt_set_state(ep, newext);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002530 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (cur == NULL)
2533 rval = XFS_ILOG_DEXT;
2534 else {
2535 rval = 0;
2536 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2537 new->br_startblock, new->br_blockcount,
2538 &i)))
2539 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002540 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2542 new->br_startblock, new->br_blockcount,
2543 newext)))
2544 goto done;
2545 }
2546 break;
2547
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002548 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 /*
2550 * Setting the first part of a previous oldext extent to newext.
2551 * The left neighbor is contiguous.
2552 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002553 trace_xfs_bmap_pre_update(ip, *idx - 1, state, _THIS_IP_);
2554 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 LEFT.br_blockcount + new->br_blockcount);
2556 xfs_bmbt_set_startoff(ep,
2557 PREV.br_startoff + new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002558 trace_xfs_bmap_post_update(ip, *idx - 1, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002559
Christoph Hellwigec90c552011-05-23 08:52:53 +00002560 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 xfs_bmbt_set_startblock(ep,
2562 new->br_startblock + new->br_blockcount);
2563 xfs_bmbt_set_blockcount(ep,
2564 PREV.br_blockcount - new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002565 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002566
Christoph Hellwigec90c552011-05-23 08:52:53 +00002567 --*idx;
2568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 if (cur == NULL)
2570 rval = XFS_ILOG_DEXT;
2571 else {
2572 rval = 0;
2573 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2574 PREV.br_startblock, PREV.br_blockcount,
2575 &i)))
2576 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002577 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 if ((error = xfs_bmbt_update(cur,
2579 PREV.br_startoff + new->br_blockcount,
2580 PREV.br_startblock + new->br_blockcount,
2581 PREV.br_blockcount - new->br_blockcount,
2582 oldext)))
2583 goto done;
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002584 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 goto done;
Christoph Hellwigb0eab142011-09-18 20:41:06 +00002586 error = xfs_bmbt_update(cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 LEFT.br_startblock,
2588 LEFT.br_blockcount + new->br_blockcount,
Christoph Hellwigb0eab142011-09-18 20:41:06 +00002589 LEFT.br_state);
2590 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 goto done;
2592 }
2593 break;
2594
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002595 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 /*
2597 * Setting the first part of a previous oldext extent to newext.
2598 * The left neighbor is not contiguous.
2599 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002600 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 ASSERT(ep && xfs_bmbt_get_state(ep) == oldext);
2602 xfs_bmbt_set_startoff(ep, new_endoff);
2603 xfs_bmbt_set_blockcount(ep,
2604 PREV.br_blockcount - new->br_blockcount);
2605 xfs_bmbt_set_startblock(ep,
2606 new->br_startblock + new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002607 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002608
Christoph Hellwigec90c552011-05-23 08:52:53 +00002609 xfs_iext_insert(ip, *idx, 1, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 ip->i_d.di_nextents++;
2611 if (cur == NULL)
2612 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2613 else {
2614 rval = XFS_ILOG_CORE;
2615 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2616 PREV.br_startblock, PREV.br_blockcount,
2617 &i)))
2618 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002619 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 if ((error = xfs_bmbt_update(cur,
2621 PREV.br_startoff + new->br_blockcount,
2622 PREV.br_startblock + new->br_blockcount,
2623 PREV.br_blockcount - new->br_blockcount,
2624 oldext)))
2625 goto done;
2626 cur->bc_rec.b = *new;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002627 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002629 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 }
2631 break;
2632
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002633 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 /*
2635 * Setting the last part of a previous oldext extent to newext.
2636 * The right neighbor is contiguous with the new allocation.
2637 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002638 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 xfs_bmbt_set_blockcount(ep,
2640 PREV.br_blockcount - new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002641 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2642
2643 ++*idx;
2644
2645 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2646 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002647 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 new->br_blockcount + RIGHT.br_blockcount, newext);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002649 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 if (cur == NULL)
2652 rval = XFS_ILOG_DEXT;
2653 else {
2654 rval = 0;
2655 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2656 PREV.br_startblock,
2657 PREV.br_blockcount, &i)))
2658 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002659 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2661 PREV.br_startblock,
2662 PREV.br_blockcount - new->br_blockcount,
2663 oldext)))
2664 goto done;
Christoph Hellwig637aa502008-10-30 16:55:45 +11002665 if ((error = xfs_btree_increment(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 goto done;
2667 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2668 new->br_startblock,
2669 new->br_blockcount + RIGHT.br_blockcount,
2670 newext)))
2671 goto done;
2672 }
2673 break;
2674
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002675 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 /*
2677 * Setting the last part of a previous oldext extent to newext.
2678 * The right neighbor is not contiguous.
2679 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002680 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 xfs_bmbt_set_blockcount(ep,
2682 PREV.br_blockcount - new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002683 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002684
Christoph Hellwigec90c552011-05-23 08:52:53 +00002685 ++*idx;
2686 xfs_iext_insert(ip, *idx, 1, new, state);
2687
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 ip->i_d.di_nextents++;
2689 if (cur == NULL)
2690 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2691 else {
2692 rval = XFS_ILOG_CORE;
2693 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2694 PREV.br_startblock, PREV.br_blockcount,
2695 &i)))
2696 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002697 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2699 PREV.br_startblock,
2700 PREV.br_blockcount - new->br_blockcount,
2701 oldext)))
2702 goto done;
2703 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2704 new->br_startblock, new->br_blockcount,
2705 &i)))
2706 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002707 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 cur->bc_rec.b.br_state = XFS_EXT_NORM;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002709 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002711 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
2713 break;
2714
2715 case 0:
2716 /*
2717 * Setting the middle part of a previous oldext extent to
2718 * newext. Contiguity is impossible here.
2719 * One extent becomes three extents.
2720 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002721 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 xfs_bmbt_set_blockcount(ep,
2723 new->br_startoff - PREV.br_startoff);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002724 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 r[0] = *new;
2727 r[1].br_startoff = new_endoff;
2728 r[1].br_blockcount =
2729 PREV.br_startoff + PREV.br_blockcount - new_endoff;
2730 r[1].br_startblock = new->br_startblock + new->br_blockcount;
2731 r[1].br_state = oldext;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002732
2733 ++*idx;
2734 xfs_iext_insert(ip, *idx, 2, &r[0], state);
2735
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 ip->i_d.di_nextents += 2;
2737 if (cur == NULL)
2738 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2739 else {
2740 rval = XFS_ILOG_CORE;
2741 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2742 PREV.br_startblock, PREV.br_blockcount,
2743 &i)))
2744 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002745 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 /* new right extent - oldext */
2747 if ((error = xfs_bmbt_update(cur, r[1].br_startoff,
2748 r[1].br_startblock, r[1].br_blockcount,
2749 r[1].br_state)))
2750 goto done;
2751 /* new left extent - oldext */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 cur->bc_rec.b = PREV;
Tim Shimmin6a617dd2008-07-18 17:13:04 +10002753 cur->bc_rec.b.br_blockcount =
2754 new->br_startoff - PREV.br_startoff;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002755 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002757 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10002758 /*
2759 * Reset the cursor to the position of the new extent
2760 * we are about to insert as we can't trust it after
2761 * the previous insert.
2762 */
2763 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2764 new->br_startblock, new->br_blockcount,
2765 &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 goto done;
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10002767 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 /* new middle extent - newext */
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10002769 cur->bc_rec.b.br_state = new->br_state;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002770 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002772 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 }
2774 break;
2775
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002776 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2777 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2778 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2779 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2780 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2781 case BMAP_LEFT_CONTIG:
2782 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 /*
2784 * These cases are all impossible.
2785 */
2786 ASSERT(0);
2787 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002788
2789 /* convert to a btree if necessary */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002790 if (xfs_bmap_needs_btree(ip, XFS_DATA_FORK)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002791 int tmp_logflags; /* partial log flag return val */
2792
2793 ASSERT(cur == NULL);
2794 error = xfs_bmap_extents_to_btree(tp, ip, first, flist, &cur,
2795 0, &tmp_logflags, XFS_DATA_FORK);
2796 *logflagsp |= tmp_logflags;
2797 if (error)
2798 goto done;
2799 }
2800
2801 /* clear out the allocated field, done with it now in any case. */
2802 if (cur) {
2803 cur->bc_private.b.allocated = 0;
2804 *curp = cur;
2805 }
2806
2807 xfs_bmap_check_leaf_extents(*curp, ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808done:
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002809 *logflagsp |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 return error;
2811#undef LEFT
2812#undef RIGHT
2813#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814}
2815
2816/*
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002817 * Convert a hole to a delayed allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 */
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002819STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820xfs_bmap_add_extent_hole_delay(
2821 xfs_inode_t *ip, /* incore inode pointer */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002822 xfs_extnum_t *idx, /* extent number to update/insert */
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002823 xfs_bmbt_irec_t *new) /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824{
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002825 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2827 xfs_filblks_t newlen=0; /* new indirect size */
2828 xfs_filblks_t oldlen=0; /* old indirect size */
2829 xfs_bmbt_irec_t right; /* right neighbor extent entry */
2830 int state; /* state bits, accessed thru macros */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002831 xfs_filblks_t temp=0; /* temp for indirect calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002833 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 state = 0;
Eric Sandeen9d87c312009-01-14 23:22:07 -06002835 ASSERT(isnullstartblock(new->br_startblock));
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002836
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 /*
2838 * Check and set flags if this segment has a left neighbor
2839 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002840 if (*idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002841 state |= BMAP_LEFT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002842 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &left);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002843
2844 if (isnullstartblock(left.br_startblock))
2845 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 /*
2849 * Check and set flags if the current (right) segment exists.
2850 * If it doesn't exist, we're converting the hole at end-of-file.
2851 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002852 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002853 state |= BMAP_RIGHT_VALID;
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00002854 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx), &right);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002855
2856 if (isnullstartblock(right.br_startblock))
2857 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 /*
2861 * Set contiguity flags on the left and right neighbors.
2862 * Don't let extents get too large, even if the pieces are contiguous.
2863 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002864 if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) &&
2865 left.br_startoff + left.br_blockcount == new->br_startoff &&
2866 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2867 state |= BMAP_LEFT_CONTIG;
2868
2869 if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) &&
2870 new->br_startoff + new->br_blockcount == right.br_startoff &&
2871 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2872 (!(state & BMAP_LEFT_CONTIG) ||
2873 (left.br_blockcount + new->br_blockcount +
2874 right.br_blockcount <= MAXEXTLEN)))
2875 state |= BMAP_RIGHT_CONTIG;
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 /*
2878 * Switch out based on the contiguity flags.
2879 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002880 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2881 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 /*
2883 * New allocation is contiguous with delayed allocations
2884 * on the left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002885 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002887 --*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 temp = left.br_blockcount + new->br_blockcount +
2889 right.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002890
Christoph Hellwigec90c552011-05-23 08:52:53 +00002891 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2892 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002893 oldlen = startblockval(left.br_startblock) +
2894 startblockval(new->br_startblock) +
2895 startblockval(right.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 newlen = xfs_bmap_worst_indlen(ip, temp);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002897 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002898 nullstartblock((int)newlen));
Christoph Hellwigec90c552011-05-23 08:52:53 +00002899 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002900
Christoph Hellwigec90c552011-05-23 08:52:53 +00002901 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 break;
2903
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002904 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 /*
2906 * New allocation is contiguous with a delayed allocation
2907 * on the left.
2908 * Merge the new allocation with the left neighbor.
2909 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002910 --*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 temp = left.br_blockcount + new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002912
2913 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2914 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002915 oldlen = startblockval(left.br_startblock) +
2916 startblockval(new->br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 newlen = xfs_bmap_worst_indlen(ip, temp);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002918 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002919 nullstartblock((int)newlen));
Christoph Hellwigec90c552011-05-23 08:52:53 +00002920 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 break;
2922
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002923 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 /*
2925 * New allocation is contiguous with a delayed allocation
2926 * on the right.
2927 * Merge the new allocation with the right neighbor.
2928 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002929 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 temp = new->br_blockcount + right.br_blockcount;
Eric Sandeen9d87c312009-01-14 23:22:07 -06002931 oldlen = startblockval(new->br_startblock) +
2932 startblockval(right.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 newlen = xfs_bmap_worst_indlen(ip, temp);
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00002934 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
2935 new->br_startoff,
Eric Sandeen9d87c312009-01-14 23:22:07 -06002936 nullstartblock((int)newlen), temp, right.br_state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002937 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 break;
2939
2940 case 0:
2941 /*
2942 * New allocation is not contiguous with another
2943 * delayed allocation.
2944 * Insert a new entry.
2945 */
2946 oldlen = newlen = 0;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002947 xfs_iext_insert(ip, *idx, 1, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 break;
2949 }
2950 if (oldlen != newlen) {
2951 ASSERT(oldlen > newlen);
Christoph Hellwig96540c72010-09-30 02:25:55 +00002952 xfs_icsb_modify_counters(ip->i_mount, XFS_SBS_FDBLOCKS,
Christoph Hellwig54893272011-05-11 15:04:03 +00002953 (int64_t)(oldlen - newlen), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 /*
2955 * Nothing to do for disk quota accounting here.
2956 */
2957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958}
2959
2960/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002961 * Convert a hole to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 */
2963STATIC int /* error */
2964xfs_bmap_add_extent_hole_real(
Christoph Hellwigc6534242011-09-18 20:41:05 +00002965 struct xfs_bmalloca *bma,
2966 int whichfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967{
Christoph Hellwigc6534242011-09-18 20:41:05 +00002968 struct xfs_bmbt_irec *new = &bma->got;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 int i; /* temp state */
2971 xfs_ifork_t *ifp; /* inode fork pointer */
2972 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2973 xfs_bmbt_irec_t right; /* right neighbor extent entry */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002974 int rval=0; /* return value (logging flags) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 int state; /* state bits, accessed thru macros */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Christoph Hellwigc6534242011-09-18 20:41:05 +00002977 ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002978
Christoph Hellwigc6534242011-09-18 20:41:05 +00002979 ASSERT(bma->idx >= 0);
2980 ASSERT(bma->idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002981 ASSERT(!isnullstartblock(new->br_startblock));
Christoph Hellwigc6534242011-09-18 20:41:05 +00002982 ASSERT(!bma->cur ||
2983 !(bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002984
2985 XFS_STATS_INC(xs_add_exlist);
2986
2987 state = 0;
Christoph Hellwig6ef35542009-11-25 00:00:21 +00002988 if (whichfork == XFS_ATTR_FORK)
2989 state |= BMAP_ATTRFORK;
2990
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 /*
2992 * Check and set flags if this segment has a left neighbor.
2993 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00002994 if (bma->idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002995 state |= BMAP_LEFT_VALID;
Christoph Hellwigc6534242011-09-18 20:41:05 +00002996 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &left);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002997 if (isnullstartblock(left.br_startblock))
2998 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003000
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 /*
3002 * Check and set flags if this segment has a current value.
3003 * Not true if we're inserting into the "hole" at eof.
3004 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003005 if (bma->idx < ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003006 state |= BMAP_RIGHT_VALID;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003007 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &right);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003008 if (isnullstartblock(right.br_startblock))
3009 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003011
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 /*
3013 * We're inserting a real allocation between "left" and "right".
3014 * Set the contiguity flags. Don't let extents get too large.
3015 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003016 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
3017 left.br_startoff + left.br_blockcount == new->br_startoff &&
3018 left.br_startblock + left.br_blockcount == new->br_startblock &&
3019 left.br_state == new->br_state &&
3020 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
3021 state |= BMAP_LEFT_CONTIG;
3022
3023 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
3024 new->br_startoff + new->br_blockcount == right.br_startoff &&
3025 new->br_startblock + new->br_blockcount == right.br_startblock &&
3026 new->br_state == right.br_state &&
3027 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
3028 (!(state & BMAP_LEFT_CONTIG) ||
3029 left.br_blockcount + new->br_blockcount +
3030 right.br_blockcount <= MAXEXTLEN))
3031 state |= BMAP_RIGHT_CONTIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003033 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 /*
3035 * Select which case we're in here, and implement it.
3036 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003037 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
3038 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 /*
3040 * New allocation is contiguous with real allocations on the
3041 * left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003042 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003044 --bma->idx;
3045 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3046 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 left.br_blockcount + new->br_blockcount +
3048 right.br_blockcount);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003049 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00003050
Christoph Hellwigc6534242011-09-18 20:41:05 +00003051 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00003052
Christoph Hellwigc6534242011-09-18 20:41:05 +00003053 XFS_IFORK_NEXT_SET(bma->ip, whichfork,
3054 XFS_IFORK_NEXTENTS(bma->ip, whichfork) - 1);
3055 if (bma->cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06003056 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003057 } else {
3058 rval = XFS_ILOG_CORE;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003059 error = xfs_bmbt_lookup_eq(bma->cur, right.br_startoff,
3060 right.br_startblock, right.br_blockcount,
3061 &i);
3062 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003063 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003064 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003065 error = xfs_btree_delete(bma->cur, &i);
3066 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003067 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003068 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003069 error = xfs_btree_decrement(bma->cur, 0, &i);
3070 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003071 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003072 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003073 error = xfs_bmbt_update(bma->cur, left.br_startoff,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003074 left.br_startblock,
3075 left.br_blockcount +
3076 new->br_blockcount +
3077 right.br_blockcount,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003078 left.br_state);
3079 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003080 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003082 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003084 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 /*
3086 * New allocation is contiguous with a real allocation
3087 * on the left.
3088 * Merge the new allocation with the left neighbor.
3089 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003090 --bma->idx;
3091 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3092 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 left.br_blockcount + new->br_blockcount);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003094 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00003095
Christoph Hellwigc6534242011-09-18 20:41:05 +00003096 if (bma->cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06003097 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003098 } else {
3099 rval = 0;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003100 error = xfs_bmbt_lookup_eq(bma->cur, left.br_startoff,
3101 left.br_startblock, left.br_blockcount,
3102 &i);
3103 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003104 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003105 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003106 error = xfs_bmbt_update(bma->cur, left.br_startoff,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003107 left.br_startblock,
3108 left.br_blockcount +
3109 new->br_blockcount,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003110 left.br_state);
3111 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003112 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003114 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003116 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 /*
3118 * New allocation is contiguous with a real allocation
3119 * on the right.
3120 * Merge the new allocation with the right neighbor.
3121 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003122 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3123 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, bma->idx),
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00003124 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 new->br_blockcount + right.br_blockcount,
3126 right.br_state);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003127 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00003128
Christoph Hellwigc6534242011-09-18 20:41:05 +00003129 if (bma->cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06003130 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003131 } else {
3132 rval = 0;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003133 error = xfs_bmbt_lookup_eq(bma->cur,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003134 right.br_startoff,
3135 right.br_startblock,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003136 right.br_blockcount, &i);
3137 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003138 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003139 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003140 error = xfs_bmbt_update(bma->cur, new->br_startoff,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003141 new->br_startblock,
3142 new->br_blockcount +
3143 right.br_blockcount,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003144 right.br_state);
3145 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003146 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003148 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
3150 case 0:
3151 /*
3152 * New allocation is not contiguous with another
3153 * real allocation.
3154 * Insert a new entry.
3155 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003156 xfs_iext_insert(bma->ip, bma->idx, 1, new, state);
3157 XFS_IFORK_NEXT_SET(bma->ip, whichfork,
3158 XFS_IFORK_NEXTENTS(bma->ip, whichfork) + 1);
3159 if (bma->cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06003160 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003161 } else {
3162 rval = XFS_ILOG_CORE;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003163 error = xfs_bmbt_lookup_eq(bma->cur,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003164 new->br_startoff,
3165 new->br_startblock,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003166 new->br_blockcount, &i);
3167 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003168 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003169 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003170 bma->cur->bc_rec.b.br_state = new->br_state;
3171 error = xfs_btree_insert(bma->cur, &i);
3172 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003173 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003174 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003176 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00003178
3179 /* convert to a btree if necessary */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00003180 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00003181 int tmp_logflags; /* partial log flag return val */
3182
Christoph Hellwigc6534242011-09-18 20:41:05 +00003183 ASSERT(bma->cur == NULL);
3184 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
3185 bma->firstblock, bma->flist, &bma->cur,
3186 0, &tmp_logflags, whichfork);
3187 bma->logflags |= tmp_logflags;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00003188 if (error)
3189 goto done;
3190 }
3191
3192 /* clear out the allocated field, done with it now in any case. */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003193 if (bma->cur)
3194 bma->cur->bc_private.b.allocated = 0;
3195
3196 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003197done:
Christoph Hellwigc6534242011-09-18 20:41:05 +00003198 bma->logflags |= rval;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003199 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200}
3201
Nathan Scottdd9f4382006-01-11 15:28:28 +11003202/*
Dave Chinner9e5987a2013-02-25 12:31:26 +11003203 * Functions used in the extent read, allocate and remove paths
3204 */
3205
3206/*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003207 * Adjust the size of the new extent based on di_extsize and rt extsize.
3208 */
Dave Chinner68988112013-08-12 20:49:42 +10003209int
Nathan Scottdd9f4382006-01-11 15:28:28 +11003210xfs_bmap_extsize_align(
3211 xfs_mount_t *mp,
3212 xfs_bmbt_irec_t *gotp, /* next extent pointer */
3213 xfs_bmbt_irec_t *prevp, /* previous extent pointer */
3214 xfs_extlen_t extsz, /* align to this extent size */
3215 int rt, /* is this a realtime inode? */
3216 int eof, /* is extent at end-of-file? */
3217 int delay, /* creating delalloc extent? */
3218 int convert, /* overwriting unwritten extent? */
3219 xfs_fileoff_t *offp, /* in/out: aligned offset */
3220 xfs_extlen_t *lenp) /* in/out: aligned length */
3221{
3222 xfs_fileoff_t orig_off; /* original offset */
3223 xfs_extlen_t orig_alen; /* original length */
3224 xfs_fileoff_t orig_end; /* original off+len */
3225 xfs_fileoff_t nexto; /* next file offset */
3226 xfs_fileoff_t prevo; /* previous file offset */
3227 xfs_fileoff_t align_off; /* temp for offset */
3228 xfs_extlen_t align_alen; /* temp for length */
3229 xfs_extlen_t temp; /* temp for calculations */
3230
3231 if (convert)
3232 return 0;
3233
3234 orig_off = align_off = *offp;
3235 orig_alen = align_alen = *lenp;
3236 orig_end = orig_off + orig_alen;
3237
3238 /*
3239 * If this request overlaps an existing extent, then don't
3240 * attempt to perform any additional alignment.
3241 */
3242 if (!delay && !eof &&
3243 (orig_off >= gotp->br_startoff) &&
3244 (orig_end <= gotp->br_startoff + gotp->br_blockcount)) {
3245 return 0;
3246 }
3247
3248 /*
3249 * If the file offset is unaligned vs. the extent size
3250 * we need to align it. This will be possible unless
3251 * the file was previously written with a kernel that didn't
3252 * perform this alignment, or if a truncate shot us in the
3253 * foot.
3254 */
3255 temp = do_mod(orig_off, extsz);
3256 if (temp) {
3257 align_alen += temp;
3258 align_off -= temp;
3259 }
3260 /*
3261 * Same adjustment for the end of the requested area.
3262 */
3263 if ((temp = (align_alen % extsz))) {
3264 align_alen += extsz - temp;
3265 }
3266 /*
3267 * If the previous block overlaps with this proposed allocation
3268 * then move the start forward without adjusting the length.
3269 */
3270 if (prevp->br_startoff != NULLFILEOFF) {
3271 if (prevp->br_startblock == HOLESTARTBLOCK)
3272 prevo = prevp->br_startoff;
3273 else
3274 prevo = prevp->br_startoff + prevp->br_blockcount;
3275 } else
3276 prevo = 0;
3277 if (align_off != orig_off && align_off < prevo)
3278 align_off = prevo;
3279 /*
3280 * If the next block overlaps with this proposed allocation
3281 * then move the start back without adjusting the length,
3282 * but not before offset 0.
3283 * This may of course make the start overlap previous block,
3284 * and if we hit the offset 0 limit then the next block
3285 * can still overlap too.
3286 */
3287 if (!eof && gotp->br_startoff != NULLFILEOFF) {
3288 if ((delay && gotp->br_startblock == HOLESTARTBLOCK) ||
3289 (!delay && gotp->br_startblock == DELAYSTARTBLOCK))
3290 nexto = gotp->br_startoff + gotp->br_blockcount;
3291 else
3292 nexto = gotp->br_startoff;
3293 } else
3294 nexto = NULLFILEOFF;
3295 if (!eof &&
3296 align_off + align_alen != orig_end &&
3297 align_off + align_alen > nexto)
3298 align_off = nexto > align_alen ? nexto - align_alen : 0;
3299 /*
3300 * If we're now overlapping the next or previous extent that
3301 * means we can't fit an extsz piece in this hole. Just move
3302 * the start forward to the first valid spot and set
3303 * the length so we hit the end.
3304 */
3305 if (align_off != orig_off && align_off < prevo)
3306 align_off = prevo;
3307 if (align_off + align_alen != orig_end &&
3308 align_off + align_alen > nexto &&
3309 nexto != NULLFILEOFF) {
3310 ASSERT(nexto > prevo);
3311 align_alen = nexto - align_off;
3312 }
3313
3314 /*
3315 * If realtime, and the result isn't a multiple of the realtime
3316 * extent size we need to remove blocks until it is.
3317 */
3318 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
3319 /*
3320 * We're not covering the original request, or
3321 * we won't be able to once we fix the length.
3322 */
3323 if (orig_off < align_off ||
3324 orig_end > align_off + align_alen ||
3325 align_alen - temp < orig_alen)
3326 return XFS_ERROR(EINVAL);
3327 /*
3328 * Try to fix it by moving the start up.
3329 */
3330 if (align_off + temp <= orig_off) {
3331 align_alen -= temp;
3332 align_off += temp;
3333 }
3334 /*
3335 * Try to fix it by moving the end in.
3336 */
3337 else if (align_off + align_alen - temp >= orig_end)
3338 align_alen -= temp;
3339 /*
3340 * Set the start to the minimum then trim the length.
3341 */
3342 else {
3343 align_alen -= orig_off - align_off;
3344 align_off = orig_off;
3345 align_alen -= align_alen % mp->m_sb.sb_rextsize;
3346 }
3347 /*
3348 * Result doesn't cover the request, fail it.
3349 */
3350 if (orig_off < align_off || orig_end > align_off + align_alen)
3351 return XFS_ERROR(EINVAL);
3352 } else {
3353 ASSERT(orig_off >= align_off);
3354 ASSERT(orig_end <= align_off + align_alen);
3355 }
3356
3357#ifdef DEBUG
3358 if (!eof && gotp->br_startoff != NULLFILEOFF)
3359 ASSERT(align_off + align_alen <= gotp->br_startoff);
3360 if (prevp->br_startoff != NULLFILEOFF)
3361 ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount);
3362#endif
3363
3364 *lenp = align_alen;
3365 *offp = align_off;
3366 return 0;
3367}
3368
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369#define XFS_ALLOC_GAP_UNITS 4
3370
Dave Chinner68988112013-08-12 20:49:42 +10003371void
Nathan Scotta365bdd2006-03-14 13:34:16 +11003372xfs_bmap_adjacent(
Dave Chinner68988112013-08-12 20:49:42 +10003373 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374{
3375 xfs_fsblock_t adjust; /* adjustment to block numbers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3377 xfs_mount_t *mp; /* mount point structure */
3378 int nullfb; /* true if ap->firstblock isn't set */
3379 int rt; /* true if inode is realtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
3381#define ISVALID(x,y) \
3382 (rt ? \
3383 (x) < mp->m_sb.sb_rblocks : \
3384 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
3385 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
3386 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
3387
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 mp = ap->ip->i_mount;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003389 nullfb = *ap->firstblock == NULLFSBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 rt = XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003391 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 /*
3393 * If allocating at eof, and there's a previous real block,
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003394 * try to use its last block as our starting point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003396 if (ap->eof && ap->prev.br_startoff != NULLFILEOFF &&
3397 !isnullstartblock(ap->prev.br_startblock) &&
3398 ISVALID(ap->prev.br_startblock + ap->prev.br_blockcount,
3399 ap->prev.br_startblock)) {
Dave Chinner3a756672011-09-18 20:40:58 +00003400 ap->blkno = ap->prev.br_startblock + ap->prev.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 /*
3402 * Adjust for the gap between prevp and us.
3403 */
Dave Chinner3a756672011-09-18 20:40:58 +00003404 adjust = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003405 (ap->prev.br_startoff + ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 if (adjust &&
Dave Chinner3a756672011-09-18 20:40:58 +00003407 ISVALID(ap->blkno + adjust, ap->prev.br_startblock))
3408 ap->blkno += adjust;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 }
3410 /*
3411 * If not at eof, then compare the two neighbor blocks.
3412 * Figure out whether either one gives us a good starting point,
3413 * and pick the better one.
3414 */
3415 else if (!ap->eof) {
3416 xfs_fsblock_t gotbno; /* right side block number */
3417 xfs_fsblock_t gotdiff=0; /* right side difference */
3418 xfs_fsblock_t prevbno; /* left side block number */
3419 xfs_fsblock_t prevdiff=0; /* left side difference */
3420
3421 /*
3422 * If there's a previous (left) block, select a requested
3423 * start block based on it.
3424 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003425 if (ap->prev.br_startoff != NULLFILEOFF &&
3426 !isnullstartblock(ap->prev.br_startblock) &&
3427 (prevbno = ap->prev.br_startblock +
3428 ap->prev.br_blockcount) &&
3429 ISVALID(prevbno, ap->prev.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 /*
3431 * Calculate gap to end of previous block.
3432 */
Dave Chinner3a756672011-09-18 20:40:58 +00003433 adjust = prevdiff = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003434 (ap->prev.br_startoff +
3435 ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 /*
3437 * Figure the startblock based on the previous block's
3438 * end and the gap size.
3439 * Heuristic!
3440 * If the gap is large relative to the piece we're
3441 * allocating, or using it gives us an invalid block
3442 * number, then just use the end of the previous block.
3443 */
Dave Chinner3a756672011-09-18 20:40:58 +00003444 if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 ISVALID(prevbno + prevdiff,
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003446 ap->prev.br_startblock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 prevbno += adjust;
3448 else
3449 prevdiff += adjust;
3450 /*
3451 * If the firstblock forbids it, can't use it,
3452 * must use default.
3453 */
3454 if (!rt && !nullfb &&
3455 XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno)
3456 prevbno = NULLFSBLOCK;
3457 }
3458 /*
3459 * No previous block or can't follow it, just default.
3460 */
3461 else
3462 prevbno = NULLFSBLOCK;
3463 /*
3464 * If there's a following (right) block, select a requested
3465 * start block based on it.
3466 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003467 if (!isnullstartblock(ap->got.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 /*
3469 * Calculate gap to start of next block.
3470 */
Dave Chinner3a756672011-09-18 20:40:58 +00003471 adjust = gotdiff = ap->got.br_startoff - ap->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 /*
3473 * Figure the startblock based on the next block's
3474 * start and the gap size.
3475 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003476 gotbno = ap->got.br_startblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 /*
3478 * Heuristic!
3479 * If the gap is large relative to the piece we're
3480 * allocating, or using it gives us an invalid block
3481 * number, then just use the start of the next block
3482 * offset by our length.
3483 */
Dave Chinner3a756672011-09-18 20:40:58 +00003484 if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 ISVALID(gotbno - gotdiff, gotbno))
3486 gotbno -= adjust;
Dave Chinner3a756672011-09-18 20:40:58 +00003487 else if (ISVALID(gotbno - ap->length, gotbno)) {
3488 gotbno -= ap->length;
3489 gotdiff += adjust - ap->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 } else
3491 gotdiff += adjust;
3492 /*
3493 * If the firstblock forbids it, can't use it,
3494 * must use default.
3495 */
3496 if (!rt && !nullfb &&
3497 XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno)
3498 gotbno = NULLFSBLOCK;
3499 }
3500 /*
3501 * No next block, just default.
3502 */
3503 else
3504 gotbno = NULLFSBLOCK;
3505 /*
3506 * If both valid, pick the better one, else the only good
Dave Chinner3a756672011-09-18 20:40:58 +00003507 * one, else ap->blkno is already set (to 0 or the inode block).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 */
3509 if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003510 ap->blkno = prevdiff <= gotdiff ? prevbno : gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 else if (prevbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003512 ap->blkno = prevbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 else if (gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003514 ap->blkno = gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 }
Nathan Scotta365bdd2006-03-14 13:34:16 +11003516#undef ISVALID
Nathan Scotta365bdd2006-03-14 13:34:16 +11003517}
3518
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003519static int
3520xfs_bmap_longest_free_extent(
3521 struct xfs_trans *tp,
3522 xfs_agnumber_t ag,
3523 xfs_extlen_t *blen,
3524 int *notinit)
3525{
3526 struct xfs_mount *mp = tp->t_mountp;
3527 struct xfs_perag *pag;
3528 xfs_extlen_t longest;
3529 int error = 0;
3530
3531 pag = xfs_perag_get(mp, ag);
3532 if (!pag->pagf_init) {
3533 error = xfs_alloc_pagf_init(mp, tp, ag, XFS_ALLOC_FLAG_TRYLOCK);
3534 if (error)
3535 goto out;
3536
3537 if (!pag->pagf_init) {
3538 *notinit = 1;
3539 goto out;
3540 }
3541 }
3542
3543 longest = xfs_alloc_longest_free_extent(mp, pag);
3544 if (*blen < longest)
3545 *blen = longest;
3546
3547out:
3548 xfs_perag_put(pag);
3549 return error;
3550}
3551
3552static void
3553xfs_bmap_select_minlen(
3554 struct xfs_bmalloca *ap,
3555 struct xfs_alloc_arg *args,
3556 xfs_extlen_t *blen,
3557 int notinit)
3558{
3559 if (notinit || *blen < ap->minlen) {
3560 /*
3561 * Since we did a BUF_TRYLOCK above, it is possible that
3562 * there is space for this request.
3563 */
3564 args->minlen = ap->minlen;
3565 } else if (*blen < args->maxlen) {
3566 /*
3567 * If the best seen length is less than the request length,
3568 * use the best as the minimum.
3569 */
3570 args->minlen = *blen;
3571 } else {
3572 /*
3573 * Otherwise we've seen an extent as big as maxlen, use that
3574 * as the minimum.
3575 */
3576 args->minlen = args->maxlen;
3577 }
3578}
3579
Nathan Scotta365bdd2006-03-14 13:34:16 +11003580STATIC int
Christoph Hellwigc467c042010-02-15 23:34:42 +00003581xfs_bmap_btalloc_nullfb(
3582 struct xfs_bmalloca *ap,
3583 struct xfs_alloc_arg *args,
3584 xfs_extlen_t *blen)
3585{
3586 struct xfs_mount *mp = ap->ip->i_mount;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003587 xfs_agnumber_t ag, startag;
3588 int notinit = 0;
3589 int error;
3590
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003591 args->type = XFS_ALLOCTYPE_START_BNO;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003592 args->total = ap->total;
3593
Christoph Hellwigc467c042010-02-15 23:34:42 +00003594 startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3595 if (startag == NULLAGNUMBER)
3596 startag = ag = 0;
3597
Dave Chinner14b064c2011-01-27 12:16:28 +11003598 while (*blen < args->maxlen) {
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003599 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3600 &notinit);
3601 if (error)
3602 return error;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003603
Christoph Hellwigc467c042010-02-15 23:34:42 +00003604 if (++ag == mp->m_sb.sb_agcount)
3605 ag = 0;
3606 if (ag == startag)
3607 break;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003608 }
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003609
3610 xfs_bmap_select_minlen(ap, args, blen, notinit);
3611 return 0;
3612}
3613
3614STATIC int
3615xfs_bmap_btalloc_filestreams(
3616 struct xfs_bmalloca *ap,
3617 struct xfs_alloc_arg *args,
3618 xfs_extlen_t *blen)
3619{
3620 struct xfs_mount *mp = ap->ip->i_mount;
3621 xfs_agnumber_t ag;
3622 int notinit = 0;
3623 int error;
3624
3625 args->type = XFS_ALLOCTYPE_NEAR_BNO;
3626 args->total = ap->total;
3627
3628 ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3629 if (ag == NULLAGNUMBER)
3630 ag = 0;
3631
3632 error = xfs_bmap_longest_free_extent(args->tp, ag, blen, &notinit);
3633 if (error)
3634 return error;
3635
3636 if (*blen < args->maxlen) {
3637 error = xfs_filestream_new_ag(ap, &ag);
3638 if (error)
3639 return error;
3640
3641 error = xfs_bmap_longest_free_extent(args->tp, ag, blen,
3642 &notinit);
3643 if (error)
3644 return error;
3645
3646 }
3647
3648 xfs_bmap_select_minlen(ap, args, blen, notinit);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003649
3650 /*
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003651 * Set the failure fallback case to look in the selected AG as stream
3652 * may have moved.
Christoph Hellwigc467c042010-02-15 23:34:42 +00003653 */
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003654 ap->blkno = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003655 return 0;
3656}
3657
3658STATIC int
Nathan Scotta365bdd2006-03-14 13:34:16 +11003659xfs_bmap_btalloc(
Dave Chinner68988112013-08-12 20:49:42 +10003660 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003661{
3662 xfs_mount_t *mp; /* mount point structure */
3663 xfs_alloctype_t atype = 0; /* type for allocation routines */
3664 xfs_extlen_t align; /* minimum allocation alignment */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003665 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
Christoph Hellwigc467c042010-02-15 23:34:42 +00003666 xfs_agnumber_t ag;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003667 xfs_alloc_arg_t args;
3668 xfs_extlen_t blen;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003669 xfs_extlen_t nextminlen = 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003670 int nullfb; /* true if ap->firstblock isn't set */
3671 int isaligned;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003672 int tryagain;
3673 int error;
Dave Chinner33177f02013-12-12 16:34:36 +11003674 int stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003675
Dave Chinnera99ebf42011-12-01 11:24:20 +00003676 ASSERT(ap->length);
3677
Nathan Scotta365bdd2006-03-14 13:34:16 +11003678 mp = ap->ip->i_mount;
Dave Chinner33177f02013-12-12 16:34:36 +11003679
3680 /* stripe alignment for allocation is determined by mount parameters */
3681 stripe_align = 0;
3682 if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC))
3683 stripe_align = mp->m_swidth;
3684 else if (mp->m_dalign)
3685 stripe_align = mp->m_dalign;
3686
David Chinner957d0eb2007-06-18 16:50:37 +10003687 align = ap->userdata ? xfs_get_extsz_hint(ap->ip) : 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003688 if (unlikely(align)) {
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003689 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
Nathan Scotta365bdd2006-03-14 13:34:16 +11003690 align, 0, ap->eof, 0, ap->conv,
Dave Chinner3a756672011-09-18 20:40:58 +00003691 &ap->offset, &ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003692 ASSERT(!error);
Dave Chinner3a756672011-09-18 20:40:58 +00003693 ASSERT(ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003694 }
Dave Chinner33177f02013-12-12 16:34:36 +11003695
3696
Dave Chinner0937e0f2011-09-18 20:40:57 +00003697 nullfb = *ap->firstblock == NULLFSBLOCK;
3698 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
David Chinner2a82b8b2007-07-11 11:09:12 +10003699 if (nullfb) {
3700 if (ap->userdata && xfs_inode_is_filestream(ap->ip)) {
3701 ag = xfs_filestream_lookup_ag(ap->ip);
3702 ag = (ag != NULLAGNUMBER) ? ag : 0;
Dave Chinner3a756672011-09-18 20:40:58 +00003703 ap->blkno = XFS_AGB_TO_FSB(mp, ag, 0);
David Chinner2a82b8b2007-07-11 11:09:12 +10003704 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00003705 ap->blkno = XFS_INO_TO_FSB(mp, ap->ip->i_ino);
David Chinner2a82b8b2007-07-11 11:09:12 +10003706 }
3707 } else
Dave Chinner3a756672011-09-18 20:40:58 +00003708 ap->blkno = *ap->firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003709
3710 xfs_bmap_adjacent(ap);
3711
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 /*
Dave Chinner3a756672011-09-18 20:40:58 +00003713 * If allowed, use ap->blkno; otherwise must use firstblock since
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 * it's in the right allocation group.
3715 */
Dave Chinner3a756672011-09-18 20:40:58 +00003716 if (nullfb || XFS_FSB_TO_AGNO(mp, ap->blkno) == fb_agno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 ;
3718 else
Dave Chinner3a756672011-09-18 20:40:58 +00003719 ap->blkno = *ap->firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 * Normal allocation, done through xfs_alloc_vextent.
3722 */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003723 tryagain = isaligned = 0;
Mark Tinguelya0041682012-09-20 13:16:45 -05003724 memset(&args, 0, sizeof(args));
Nathan Scotta365bdd2006-03-14 13:34:16 +11003725 args.tp = ap->tp;
3726 args.mp = mp;
Dave Chinner3a756672011-09-18 20:40:58 +00003727 args.fsbno = ap->blkno;
Dave Chinner14b064c2011-01-27 12:16:28 +11003728
3729 /* Trim the allocation back to the maximum an AG can fit. */
Dave Chinner3a756672011-09-18 20:40:58 +00003730 args.maxlen = MIN(ap->length, XFS_ALLOC_AG_MAX_USABLE(mp));
Dave Chinner0937e0f2011-09-18 20:40:57 +00003731 args.firstblock = *ap->firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003732 blen = 0;
3733 if (nullfb) {
Christoph Hellwigc977eb12014-04-23 07:11:41 +10003734 /*
3735 * Search for an allocation group with a single extent large
3736 * enough for the request. If one isn't found, then adjust
3737 * the minimum allocation size to the largest space found.
3738 */
3739 if (ap->userdata && xfs_inode_is_filestream(ap->ip))
3740 error = xfs_bmap_btalloc_filestreams(ap, &args, &blen);
3741 else
3742 error = xfs_bmap_btalloc_nullfb(ap, &args, &blen);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003743 if (error)
3744 return error;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003745 } else if (ap->flist->xbf_low) {
David Chinner2a82b8b2007-07-11 11:09:12 +10003746 if (xfs_inode_is_filestream(ap->ip))
3747 args.type = XFS_ALLOCTYPE_FIRST_AG;
3748 else
3749 args.type = XFS_ALLOCTYPE_START_BNO;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003750 args.total = args.minlen = ap->minlen;
3751 } else {
3752 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3753 args.total = ap->total;
3754 args.minlen = ap->minlen;
3755 }
David Chinner957d0eb2007-06-18 16:50:37 +10003756 /* apply extent size hints if obtained earlier */
3757 if (unlikely(align)) {
3758 args.prod = align;
Dave Chinner3a756672011-09-18 20:40:58 +00003759 if ((args.mod = (xfs_extlen_t)do_mod(ap->offset, args.prod)))
Nathan Scotta365bdd2006-03-14 13:34:16 +11003760 args.mod = (xfs_extlen_t)(args.prod - args.mod);
Tim Shimmine6a4b372007-11-23 16:30:42 +11003761 } else if (mp->m_sb.sb_blocksize >= PAGE_CACHE_SIZE) {
Nathan Scotta365bdd2006-03-14 13:34:16 +11003762 args.prod = 1;
3763 args.mod = 0;
3764 } else {
Tim Shimmine6a4b372007-11-23 16:30:42 +11003765 args.prod = PAGE_CACHE_SIZE >> mp->m_sb.sb_blocklog;
Dave Chinner3a756672011-09-18 20:40:58 +00003766 if ((args.mod = (xfs_extlen_t)(do_mod(ap->offset, args.prod))))
Nathan Scotta365bdd2006-03-14 13:34:16 +11003767 args.mod = (xfs_extlen_t)(args.prod - args.mod);
3768 }
3769 /*
3770 * If we are not low on available data blocks, and the
3771 * underlying logical volume manager is a stripe, and
3772 * the file offset is zero then try to allocate data
3773 * blocks on stripe unit boundary.
3774 * NOTE: ap->aeof is only set if the allocation length
3775 * is >= the stripe unit and the allocation offset is
3776 * at the end of file.
3777 */
Dave Chinner0937e0f2011-09-18 20:40:57 +00003778 if (!ap->flist->xbf_low && ap->aeof) {
Dave Chinner3a756672011-09-18 20:40:58 +00003779 if (!ap->offset) {
Dave Chinner33177f02013-12-12 16:34:36 +11003780 args.alignment = stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003781 atype = args.type;
3782 isaligned = 1;
3783 /*
3784 * Adjust for alignment
3785 */
Dave Chinner14b064c2011-01-27 12:16:28 +11003786 if (blen > args.alignment && blen <= args.maxlen)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003787 args.minlen = blen - args.alignment;
3788 args.minalignslop = 0;
3789 } else {
3790 /*
3791 * First try an exact bno allocation.
3792 * If it fails then do a near or start bno
3793 * allocation with alignment turned on.
3794 */
3795 atype = args.type;
3796 tryagain = 1;
3797 args.type = XFS_ALLOCTYPE_THIS_BNO;
3798 args.alignment = 1;
3799 /*
3800 * Compute the minlen+alignment for the
3801 * next case. Set slop so that the value
3802 * of minlen+alignment+slop doesn't go up
3803 * between the calls.
3804 */
Dave Chinner33177f02013-12-12 16:34:36 +11003805 if (blen > stripe_align && blen <= args.maxlen)
3806 nextminlen = blen - stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003807 else
3808 nextminlen = args.minlen;
Dave Chinner33177f02013-12-12 16:34:36 +11003809 if (nextminlen + stripe_align > args.minlen + 1)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003810 args.minalignslop =
Dave Chinner33177f02013-12-12 16:34:36 +11003811 nextminlen + stripe_align -
Nathan Scotta365bdd2006-03-14 13:34:16 +11003812 args.minlen - 1;
3813 else
3814 args.minalignslop = 0;
3815 }
3816 } else {
3817 args.alignment = 1;
3818 args.minalignslop = 0;
3819 }
3820 args.minleft = ap->minleft;
3821 args.wasdel = ap->wasdel;
3822 args.isfl = 0;
3823 args.userdata = ap->userdata;
3824 if ((error = xfs_alloc_vextent(&args)))
3825 return error;
3826 if (tryagain && args.fsbno == NULLFSBLOCK) {
3827 /*
3828 * Exact allocation failed. Now try with alignment
3829 * turned on.
3830 */
3831 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00003832 args.fsbno = ap->blkno;
Dave Chinner33177f02013-12-12 16:34:36 +11003833 args.alignment = stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003834 args.minlen = nextminlen;
3835 args.minalignslop = 0;
3836 isaligned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 if ((error = xfs_alloc_vextent(&args)))
3838 return error;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003839 }
3840 if (isaligned && args.fsbno == NULLFSBLOCK) {
3841 /*
3842 * allocation failed, so turn off alignment and
3843 * try again.
3844 */
3845 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00003846 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003847 args.alignment = 0;
3848 if ((error = xfs_alloc_vextent(&args)))
3849 return error;
3850 }
3851 if (args.fsbno == NULLFSBLOCK && nullfb &&
3852 args.minlen > ap->minlen) {
3853 args.minlen = ap->minlen;
3854 args.type = XFS_ALLOCTYPE_START_BNO;
Dave Chinner3a756672011-09-18 20:40:58 +00003855 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003856 if ((error = xfs_alloc_vextent(&args)))
3857 return error;
3858 }
3859 if (args.fsbno == NULLFSBLOCK && nullfb) {
3860 args.fsbno = 0;
3861 args.type = XFS_ALLOCTYPE_FIRST_AG;
3862 args.total = ap->minlen;
3863 args.minleft = 0;
3864 if ((error = xfs_alloc_vextent(&args)))
3865 return error;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003866 ap->flist->xbf_low = 1;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003867 }
3868 if (args.fsbno != NULLFSBLOCK) {
Dave Chinner0937e0f2011-09-18 20:40:57 +00003869 /*
3870 * check the allocation happened at the same or higher AG than
3871 * the first block that was allocated.
3872 */
3873 ASSERT(*ap->firstblock == NULLFSBLOCK ||
3874 XFS_FSB_TO_AGNO(mp, *ap->firstblock) ==
3875 XFS_FSB_TO_AGNO(mp, args.fsbno) ||
3876 (ap->flist->xbf_low &&
3877 XFS_FSB_TO_AGNO(mp, *ap->firstblock) <
3878 XFS_FSB_TO_AGNO(mp, args.fsbno)));
3879
Dave Chinner3a756672011-09-18 20:40:58 +00003880 ap->blkno = args.fsbno;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003881 if (*ap->firstblock == NULLFSBLOCK)
3882 *ap->firstblock = args.fsbno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003883 ASSERT(nullfb || fb_agno == args.agno ||
Dave Chinner0937e0f2011-09-18 20:40:57 +00003884 (ap->flist->xbf_low && fb_agno < args.agno));
Dave Chinner3a756672011-09-18 20:40:58 +00003885 ap->length = args.len;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003886 ap->ip->i_d.di_nblocks += args.len;
3887 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
3888 if (ap->wasdel)
3889 ap->ip->i_delayed_blks -= args.len;
3890 /*
3891 * Adjust the disk quota also. This was reserved
3892 * earlier.
3893 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02003894 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
Nathan Scotta365bdd2006-03-14 13:34:16 +11003895 ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT :
3896 XFS_TRANS_DQ_BCOUNT,
3897 (long) args.len);
3898 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00003899 ap->blkno = NULLFSBLOCK;
3900 ap->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 }
3902 return 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003903}
3904
3905/*
3906 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
3907 * It figures out where to ask the underlying allocator to put the new extent.
3908 */
3909STATIC int
3910xfs_bmap_alloc(
Dave Chinner68988112013-08-12 20:49:42 +10003911 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003912{
Eric Sandeen71ddabb2007-11-23 16:29:42 +11003913 if (XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003914 return xfs_bmap_rtalloc(ap);
3915 return xfs_bmap_btalloc(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916}
3917
3918/*
Dave Chinneraef9a892011-09-18 20:40:44 +00003919 * Trim the returned map to the required bounds
3920 */
3921STATIC void
3922xfs_bmapi_trim_map(
3923 struct xfs_bmbt_irec *mval,
3924 struct xfs_bmbt_irec *got,
3925 xfs_fileoff_t *bno,
3926 xfs_filblks_t len,
3927 xfs_fileoff_t obno,
3928 xfs_fileoff_t end,
3929 int n,
3930 int flags)
3931{
3932 if ((flags & XFS_BMAPI_ENTIRE) ||
3933 got->br_startoff + got->br_blockcount <= obno) {
3934 *mval = *got;
3935 if (isnullstartblock(got->br_startblock))
3936 mval->br_startblock = DELAYSTARTBLOCK;
3937 return;
3938 }
3939
3940 if (obno > *bno)
3941 *bno = obno;
3942 ASSERT((*bno >= obno) || (n == 0));
3943 ASSERT(*bno < end);
3944 mval->br_startoff = *bno;
3945 if (isnullstartblock(got->br_startblock))
3946 mval->br_startblock = DELAYSTARTBLOCK;
3947 else
3948 mval->br_startblock = got->br_startblock +
3949 (*bno - got->br_startoff);
3950 /*
3951 * Return the minimum of what we got and what we asked for for
3952 * the length. We can use the len variable here because it is
3953 * modified below and we could have been there before coming
3954 * here if the first part of the allocation didn't overlap what
3955 * was asked for.
3956 */
3957 mval->br_blockcount = XFS_FILBLKS_MIN(end - *bno,
3958 got->br_blockcount - (*bno - got->br_startoff));
3959 mval->br_state = got->br_state;
3960 ASSERT(mval->br_blockcount <= len);
3961 return;
3962}
3963
3964/*
3965 * Update and validate the extent map to return
3966 */
3967STATIC void
3968xfs_bmapi_update_map(
3969 struct xfs_bmbt_irec **map,
3970 xfs_fileoff_t *bno,
3971 xfs_filblks_t *len,
3972 xfs_fileoff_t obno,
3973 xfs_fileoff_t end,
3974 int *n,
3975 int flags)
3976{
3977 xfs_bmbt_irec_t *mval = *map;
3978
3979 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
3980 ((mval->br_startoff + mval->br_blockcount) <= end));
3981 ASSERT((flags & XFS_BMAPI_ENTIRE) || (mval->br_blockcount <= *len) ||
3982 (mval->br_startoff < obno));
3983
3984 *bno = mval->br_startoff + mval->br_blockcount;
3985 *len = end - *bno;
3986 if (*n > 0 && mval->br_startoff == mval[-1].br_startoff) {
3987 /* update previous map with new information */
3988 ASSERT(mval->br_startblock == mval[-1].br_startblock);
3989 ASSERT(mval->br_blockcount > mval[-1].br_blockcount);
3990 ASSERT(mval->br_state == mval[-1].br_state);
3991 mval[-1].br_blockcount = mval->br_blockcount;
3992 mval[-1].br_state = mval->br_state;
3993 } else if (*n > 0 && mval->br_startblock != DELAYSTARTBLOCK &&
3994 mval[-1].br_startblock != DELAYSTARTBLOCK &&
3995 mval[-1].br_startblock != HOLESTARTBLOCK &&
3996 mval->br_startblock == mval[-1].br_startblock +
3997 mval[-1].br_blockcount &&
3998 ((flags & XFS_BMAPI_IGSTATE) ||
3999 mval[-1].br_state == mval->br_state)) {
4000 ASSERT(mval->br_startoff ==
4001 mval[-1].br_startoff + mval[-1].br_blockcount);
4002 mval[-1].br_blockcount += mval->br_blockcount;
4003 } else if (*n > 0 &&
4004 mval->br_startblock == DELAYSTARTBLOCK &&
4005 mval[-1].br_startblock == DELAYSTARTBLOCK &&
4006 mval->br_startoff ==
4007 mval[-1].br_startoff + mval[-1].br_blockcount) {
4008 mval[-1].br_blockcount += mval->br_blockcount;
4009 mval[-1].br_state = mval->br_state;
4010 } else if (!((*n == 0) &&
4011 ((mval->br_startoff + mval->br_blockcount) <=
4012 obno))) {
4013 mval++;
4014 (*n)++;
4015 }
4016 *map = mval;
4017}
4018
4019/*
Dave Chinner5c8ed202011-09-18 20:40:45 +00004020 * Map file blocks to filesystem blocks without allocation.
4021 */
4022int
4023xfs_bmapi_read(
4024 struct xfs_inode *ip,
4025 xfs_fileoff_t bno,
4026 xfs_filblks_t len,
4027 struct xfs_bmbt_irec *mval,
4028 int *nmap,
4029 int flags)
4030{
4031 struct xfs_mount *mp = ip->i_mount;
4032 struct xfs_ifork *ifp;
4033 struct xfs_bmbt_irec got;
4034 struct xfs_bmbt_irec prev;
4035 xfs_fileoff_t obno;
4036 xfs_fileoff_t end;
4037 xfs_extnum_t lastx;
4038 int error;
4039 int eof;
4040 int n = 0;
4041 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4042 XFS_ATTR_FORK : XFS_DATA_FORK;
4043
4044 ASSERT(*nmap >= 1);
4045 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK|XFS_BMAPI_ENTIRE|
4046 XFS_BMAPI_IGSTATE)));
Christoph Hellwigeef334e2013-12-06 12:30:17 -08004047 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED|XFS_ILOCK_EXCL));
Dave Chinner5c8ed202011-09-18 20:40:45 +00004048
4049 if (unlikely(XFS_TEST_ERROR(
4050 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4051 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
4052 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4053 XFS_ERROR_REPORT("xfs_bmapi_read", XFS_ERRLEVEL_LOW, mp);
4054 return XFS_ERROR(EFSCORRUPTED);
4055 }
4056
4057 if (XFS_FORCED_SHUTDOWN(mp))
4058 return XFS_ERROR(EIO);
4059
4060 XFS_STATS_INC(xs_blk_mapr);
4061
4062 ifp = XFS_IFORK_PTR(ip, whichfork);
Dave Chinner5c8ed202011-09-18 20:40:45 +00004063
4064 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4065 error = xfs_iread_extents(NULL, ip, whichfork);
4066 if (error)
4067 return error;
4068 }
4069
4070 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got, &prev);
4071 end = bno + len;
4072 obno = bno;
4073
4074 while (bno < end && n < *nmap) {
4075 /* Reading past eof, act as though there's a hole up to end. */
4076 if (eof)
4077 got.br_startoff = end;
4078 if (got.br_startoff > bno) {
4079 /* Reading in a hole. */
4080 mval->br_startoff = bno;
4081 mval->br_startblock = HOLESTARTBLOCK;
4082 mval->br_blockcount =
4083 XFS_FILBLKS_MIN(len, got.br_startoff - bno);
4084 mval->br_state = XFS_EXT_NORM;
4085 bno += mval->br_blockcount;
4086 len -= mval->br_blockcount;
4087 mval++;
4088 n++;
4089 continue;
4090 }
4091
4092 /* set up the extent map to return. */
4093 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4094 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4095
4096 /* If we're done, stop now. */
4097 if (bno >= end || n >= *nmap)
4098 break;
4099
4100 /* Else go on to the next record. */
4101 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4102 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4103 else
4104 eof = 1;
4105 }
4106 *nmap = n;
4107 return 0;
4108}
4109
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004110STATIC int
4111xfs_bmapi_reserve_delalloc(
4112 struct xfs_inode *ip,
4113 xfs_fileoff_t aoff,
4114 xfs_filblks_t len,
4115 struct xfs_bmbt_irec *got,
4116 struct xfs_bmbt_irec *prev,
4117 xfs_extnum_t *lastx,
4118 int eof)
4119{
4120 struct xfs_mount *mp = ip->i_mount;
4121 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4122 xfs_extlen_t alen;
4123 xfs_extlen_t indlen;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004124 char rt = XFS_IS_REALTIME_INODE(ip);
4125 xfs_extlen_t extsz;
4126 int error;
4127
4128 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN);
4129 if (!eof)
4130 alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff);
4131
4132 /* Figure out the extent size, adjust alen */
4133 extsz = xfs_get_extsz_hint(ip);
4134 if (extsz) {
4135 /*
4136 * Make sure we don't exceed a single extent length when we
4137 * align the extent by reducing length we are going to
4138 * allocate by the maximum amount extent size aligment may
4139 * require.
4140 */
4141 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN - (2 * extsz - 1));
4142 error = xfs_bmap_extsize_align(mp, got, prev, extsz, rt, eof,
4143 1, 0, &aoff, &alen);
4144 ASSERT(!error);
4145 }
4146
4147 if (rt)
4148 extsz = alen / mp->m_sb.sb_rextsize;
4149
4150 /*
4151 * Make a transaction-less quota reservation for delayed allocation
4152 * blocks. This number gets adjusted later. We return if we haven't
4153 * allocated blocks already inside this loop.
4154 */
4155 error = xfs_trans_reserve_quota_nblks(NULL, ip, (long)alen, 0,
4156 rt ? XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4157 if (error)
4158 return error;
4159
4160 /*
4161 * Split changing sb for alen and indlen since they could be coming
4162 * from different places.
4163 */
4164 indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen);
4165 ASSERT(indlen > 0);
4166
4167 if (rt) {
4168 error = xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
4169 -((int64_t)extsz), 0);
4170 } else {
4171 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4172 -((int64_t)alen), 0);
4173 }
4174
4175 if (error)
4176 goto out_unreserve_quota;
4177
4178 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4179 -((int64_t)indlen), 0);
4180 if (error)
4181 goto out_unreserve_blocks;
4182
4183
4184 ip->i_delayed_blks += alen;
4185
4186 got->br_startoff = aoff;
4187 got->br_startblock = nullstartblock(indlen);
4188 got->br_blockcount = alen;
4189 got->br_state = XFS_EXT_NORM;
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00004190 xfs_bmap_add_extent_hole_delay(ip, lastx, got);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004191
4192 /*
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00004193 * Update our extent pointer, given that xfs_bmap_add_extent_hole_delay
4194 * might have merged it into one of the neighbouring ones.
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004195 */
4196 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *lastx), got);
4197
4198 ASSERT(got->br_startoff <= aoff);
4199 ASSERT(got->br_startoff + got->br_blockcount >= aoff + alen);
4200 ASSERT(isnullstartblock(got->br_startblock));
4201 ASSERT(got->br_state == XFS_EXT_NORM);
4202 return 0;
4203
4204out_unreserve_blocks:
4205 if (rt)
4206 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS, extsz, 0);
4207 else
4208 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS, alen, 0);
4209out_unreserve_quota:
4210 if (XFS_IS_QUOTA_ON(mp))
Dave Chinnerea562ed2012-05-08 20:48:53 +10004211 xfs_trans_unreserve_quota_nblks(NULL, ip, (long)alen, 0, rt ?
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004212 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4213 return error;
4214}
4215
Dave Chinner5c8ed202011-09-18 20:40:45 +00004216/*
Christoph Hellwig44032802011-09-18 20:40:48 +00004217 * Map file blocks to filesystem blocks, adding delayed allocations as needed.
4218 */
4219int
4220xfs_bmapi_delay(
4221 struct xfs_inode *ip, /* incore inode */
4222 xfs_fileoff_t bno, /* starting file offs. mapped */
4223 xfs_filblks_t len, /* length to map in file */
4224 struct xfs_bmbt_irec *mval, /* output: map values */
4225 int *nmap, /* i/o: mval size/count */
4226 int flags) /* XFS_BMAPI_... */
4227{
4228 struct xfs_mount *mp = ip->i_mount;
4229 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4230 struct xfs_bmbt_irec got; /* current file extent record */
4231 struct xfs_bmbt_irec prev; /* previous file extent record */
4232 xfs_fileoff_t obno; /* old block number (offset) */
4233 xfs_fileoff_t end; /* end of mapped file region */
4234 xfs_extnum_t lastx; /* last useful extent number */
4235 int eof; /* we've hit the end of extents */
4236 int n = 0; /* current extent index */
4237 int error = 0;
4238
4239 ASSERT(*nmap >= 1);
4240 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4241 ASSERT(!(flags & ~XFS_BMAPI_ENTIRE));
Christoph Hellwigeef334e2013-12-06 12:30:17 -08004242 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig44032802011-09-18 20:40:48 +00004243
4244 if (unlikely(XFS_TEST_ERROR(
4245 (XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_EXTENTS &&
4246 XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_BTREE),
4247 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4248 XFS_ERROR_REPORT("xfs_bmapi_delay", XFS_ERRLEVEL_LOW, mp);
4249 return XFS_ERROR(EFSCORRUPTED);
4250 }
4251
4252 if (XFS_FORCED_SHUTDOWN(mp))
4253 return XFS_ERROR(EIO);
4254
4255 XFS_STATS_INC(xs_blk_mapw);
4256
4257 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4258 error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK);
4259 if (error)
4260 return error;
4261 }
4262
4263 xfs_bmap_search_extents(ip, bno, XFS_DATA_FORK, &eof, &lastx, &got, &prev);
4264 end = bno + len;
4265 obno = bno;
4266
4267 while (bno < end && n < *nmap) {
4268 if (eof || got.br_startoff > bno) {
4269 error = xfs_bmapi_reserve_delalloc(ip, bno, len, &got,
4270 &prev, &lastx, eof);
4271 if (error) {
4272 if (n == 0) {
4273 *nmap = 0;
4274 return error;
4275 }
4276 break;
4277 }
4278 }
4279
4280 /* set up the extent map to return. */
4281 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4282 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4283
4284 /* If we're done, stop now. */
4285 if (bno >= end || n >= *nmap)
4286 break;
4287
4288 /* Else go on to the next record. */
4289 prev = got;
4290 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4291 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4292 else
4293 eof = 1;
4294 }
4295
4296 *nmap = n;
4297 return 0;
4298}
4299
4300
Dave Chinnercf11da92014-07-15 07:08:24 +10004301static int
4302xfs_bmapi_allocate(
Dave Chinnere04426b2012-10-05 11:06:59 +10004303 struct xfs_bmalloca *bma)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004304{
4305 struct xfs_mount *mp = bma->ip->i_mount;
Dave Chinnere04426b2012-10-05 11:06:59 +10004306 int whichfork = (bma->flags & XFS_BMAPI_ATTRFORK) ?
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004307 XFS_ATTR_FORK : XFS_DATA_FORK;
4308 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004309 int tmp_logflags = 0;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004310 int error;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004311
Dave Chinnera99ebf42011-12-01 11:24:20 +00004312 ASSERT(bma->length > 0);
4313
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004314 /*
4315 * For the wasdelay case, we could also just allocate the stuff asked
4316 * for in this bmap call but that wouldn't be as good.
4317 */
4318 if (bma->wasdel) {
Dave Chinner963c30c2011-09-18 20:40:59 +00004319 bma->length = (xfs_extlen_t)bma->got.br_blockcount;
4320 bma->offset = bma->got.br_startoff;
Dave Chinnere0c3da52011-09-18 20:41:01 +00004321 if (bma->idx != NULLEXTNUM && bma->idx) {
4322 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1),
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004323 &bma->prev);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004324 }
4325 } else {
Dave Chinner963c30c2011-09-18 20:40:59 +00004326 bma->length = XFS_FILBLKS_MIN(bma->length, MAXEXTLEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004327 if (!bma->eof)
Dave Chinner963c30c2011-09-18 20:40:59 +00004328 bma->length = XFS_FILBLKS_MIN(bma->length,
Dave Chinner3a756672011-09-18 20:40:58 +00004329 bma->got.br_startoff - bma->offset);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004330 }
4331
4332 /*
4333 * Indicate if this is the first user data in the file, or just any
4334 * user data.
4335 */
Dave Chinnere04426b2012-10-05 11:06:59 +10004336 if (!(bma->flags & XFS_BMAPI_METADATA)) {
Dave Chinner963c30c2011-09-18 20:40:59 +00004337 bma->userdata = (bma->offset == 0) ?
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004338 XFS_ALLOC_INITIAL_USER_DATA : XFS_ALLOC_USERDATA;
4339 }
4340
Dave Chinnere04426b2012-10-05 11:06:59 +10004341 bma->minlen = (bma->flags & XFS_BMAPI_CONTIG) ? bma->length : 1;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004342
4343 /*
4344 * Only want to do the alignment at the eof if it is userdata and
4345 * allocation length is larger than a stripe unit.
4346 */
Dave Chinner963c30c2011-09-18 20:40:59 +00004347 if (mp->m_dalign && bma->length >= mp->m_dalign &&
Dave Chinnere04426b2012-10-05 11:06:59 +10004348 !(bma->flags & XFS_BMAPI_METADATA) && whichfork == XFS_DATA_FORK) {
Dave Chinner1b164472011-09-18 20:40:55 +00004349 error = xfs_bmap_isaeof(bma, whichfork);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004350 if (error)
4351 return error;
4352 }
4353
4354 error = xfs_bmap_alloc(bma);
4355 if (error)
4356 return error;
4357
Dave Chinner0937e0f2011-09-18 20:40:57 +00004358 if (bma->flist->xbf_low)
4359 bma->minleft = 0;
Dave Chinner29c8d172011-09-18 20:41:00 +00004360 if (bma->cur)
4361 bma->cur->bc_private.b.firstblock = *bma->firstblock;
Dave Chinner963c30c2011-09-18 20:40:59 +00004362 if (bma->blkno == NULLFSBLOCK)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004363 return 0;
Dave Chinner29c8d172011-09-18 20:41:00 +00004364 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4365 bma->cur = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork);
4366 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4367 bma->cur->bc_private.b.flist = bma->flist;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004368 }
4369 /*
4370 * Bump the number of extents we've allocated
4371 * in this call.
4372 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004373 bma->nallocs++;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004374
Dave Chinner29c8d172011-09-18 20:41:00 +00004375 if (bma->cur)
4376 bma->cur->bc_private.b.flags =
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004377 bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
4378
Dave Chinner963c30c2011-09-18 20:40:59 +00004379 bma->got.br_startoff = bma->offset;
4380 bma->got.br_startblock = bma->blkno;
4381 bma->got.br_blockcount = bma->length;
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004382 bma->got.br_state = XFS_EXT_NORM;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004383
4384 /*
4385 * A wasdelay extent has been initialized, so shouldn't be flagged
4386 * as unwritten.
4387 */
Dave Chinnere04426b2012-10-05 11:06:59 +10004388 if (!bma->wasdel && (bma->flags & XFS_BMAPI_PREALLOC) &&
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004389 xfs_sb_version_hasextflgbit(&mp->m_sb))
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004390 bma->got.br_state = XFS_EXT_UNWRITTEN;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004391
Christoph Hellwigc6534242011-09-18 20:41:05 +00004392 if (bma->wasdel)
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00004393 error = xfs_bmap_add_extent_delay_real(bma);
Christoph Hellwigc6534242011-09-18 20:41:05 +00004394 else
4395 error = xfs_bmap_add_extent_hole_real(bma, whichfork);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004396
Christoph Hellwigc315c902011-09-18 20:41:02 +00004397 bma->logflags |= tmp_logflags;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004398 if (error)
4399 return error;
4400
4401 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004402 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4403 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4404 * the neighbouring ones.
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004405 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004406 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004407
Dave Chinner963c30c2011-09-18 20:40:59 +00004408 ASSERT(bma->got.br_startoff <= bma->offset);
4409 ASSERT(bma->got.br_startoff + bma->got.br_blockcount >=
4410 bma->offset + bma->length);
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004411 ASSERT(bma->got.br_state == XFS_EXT_NORM ||
4412 bma->got.br_state == XFS_EXT_UNWRITTEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004413 return 0;
4414}
4415
Dave Chinnerb447fe52011-09-18 20:40:51 +00004416STATIC int
4417xfs_bmapi_convert_unwritten(
4418 struct xfs_bmalloca *bma,
4419 struct xfs_bmbt_irec *mval,
4420 xfs_filblks_t len,
Christoph Hellwigc315c902011-09-18 20:41:02 +00004421 int flags)
Dave Chinnerb447fe52011-09-18 20:40:51 +00004422{
4423 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4424 XFS_ATTR_FORK : XFS_DATA_FORK;
4425 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004426 int tmp_logflags = 0;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004427 int error;
4428
Dave Chinnerb447fe52011-09-18 20:40:51 +00004429 /* check if we need to do unwritten->real conversion */
4430 if (mval->br_state == XFS_EXT_UNWRITTEN &&
4431 (flags & XFS_BMAPI_PREALLOC))
4432 return 0;
4433
4434 /* check if we need to do real->unwritten conversion */
4435 if (mval->br_state == XFS_EXT_NORM &&
4436 (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) !=
4437 (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT))
4438 return 0;
4439
4440 /*
4441 * Modify (by adding) the state flag, if writing.
4442 */
4443 ASSERT(mval->br_blockcount <= len);
Dave Chinner29c8d172011-09-18 20:41:00 +00004444 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4445 bma->cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp,
Dave Chinnerb447fe52011-09-18 20:40:51 +00004446 bma->ip, whichfork);
Dave Chinner29c8d172011-09-18 20:41:00 +00004447 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4448 bma->cur->bc_private.b.flist = bma->flist;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004449 }
4450 mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN)
4451 ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
4452
Dave Chinnere0c3da52011-09-18 20:41:01 +00004453 error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, &bma->idx,
Christoph Hellwigc315c902011-09-18 20:41:02 +00004454 &bma->cur, mval, bma->firstblock, bma->flist,
4455 &tmp_logflags);
4456 bma->logflags |= tmp_logflags;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004457 if (error)
4458 return error;
4459
4460 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004461 * Update our extent pointer, given that
4462 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4463 * of the neighbouring ones.
Dave Chinnerb447fe52011-09-18 20:40:51 +00004464 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004465 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
Dave Chinnerb447fe52011-09-18 20:40:51 +00004466
4467 /*
4468 * We may have combined previously unwritten space with written space,
4469 * so generate another request.
4470 */
4471 if (mval->br_blockcount < len)
4472 return EAGAIN;
4473 return 0;
4474}
4475
Christoph Hellwig44032802011-09-18 20:40:48 +00004476/*
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004477 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4478 * extent state if necessary. Details behaviour is controlled by the flags
4479 * parameter. Only allocates blocks from a single allocation group, to avoid
4480 * locking problems.
4481 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 * The returned value in "firstblock" from the first call in a transaction
4483 * must be remembered and presented to subsequent calls in "firstblock".
4484 * An upper bound for the number of blocks to be allocated is supplied to
4485 * the first call in "total"; if no allocation group has that many free
4486 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4487 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004488int
4489xfs_bmapi_write(
4490 struct xfs_trans *tp, /* transaction pointer */
4491 struct xfs_inode *ip, /* incore inode */
4492 xfs_fileoff_t bno, /* starting file offs. mapped */
4493 xfs_filblks_t len, /* length to map in file */
4494 int flags, /* XFS_BMAPI_... */
4495 xfs_fsblock_t *firstblock, /* first allocated block
4496 controls a.g. for allocs */
4497 xfs_extlen_t total, /* total blocks needed */
4498 struct xfs_bmbt_irec *mval, /* output: map values */
4499 int *nmap, /* i/o: mval size/count */
4500 struct xfs_bmap_free *flist) /* i/o: list extents to free */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501{
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004502 struct xfs_mount *mp = ip->i_mount;
4503 struct xfs_ifork *ifp;
Dave Chinnera30b0362013-09-02 20:49:36 +10004504 struct xfs_bmalloca bma = { NULL }; /* args for xfs_bmap_alloc */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004505 xfs_fileoff_t end; /* end of mapped file region */
4506 int eof; /* after the end of extents */
4507 int error; /* error return */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004508 int n; /* current extent index */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004509 xfs_fileoff_t obno; /* old block number (offset) */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004510 int whichfork; /* data or attr fork */
4511 char inhole; /* current location is hole in file */
4512 char wasdelay; /* old extent was delayed */
4513
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514#ifdef DEBUG
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004515 xfs_fileoff_t orig_bno; /* original block number value */
4516 int orig_flags; /* original flags arg value */
4517 xfs_filblks_t orig_len; /* original value of len arg */
4518 struct xfs_bmbt_irec *orig_mval; /* original value of mval */
4519 int orig_nmap; /* original value of *nmap */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
4521 orig_bno = bno;
4522 orig_len = len;
4523 orig_flags = flags;
4524 orig_mval = mval;
4525 orig_nmap = *nmap;
4526#endif
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004527 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4528 XFS_ATTR_FORK : XFS_DATA_FORK;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004529
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 ASSERT(*nmap >= 1);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004531 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4532 ASSERT(!(flags & XFS_BMAPI_IGSTATE));
4533 ASSERT(tp != NULL);
Dave Chinnera99ebf42011-12-01 11:24:20 +00004534 ASSERT(len > 0);
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004535 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL);
Christoph Hellwigeef334e2013-12-06 12:30:17 -08004536 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004537
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 if (unlikely(XFS_TEST_ERROR(
4539 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004540 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004542 XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 return XFS_ERROR(EFSCORRUPTED);
4544 }
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004545
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 if (XFS_FORCED_SHUTDOWN(mp))
4547 return XFS_ERROR(EIO);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004548
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549 ifp = XFS_IFORK_PTR(ip, whichfork);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004550
4551 XFS_STATS_INC(xs_blk_mapw);
4552
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004553 if (*firstblock == NULLFSBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE)
Dave Chinner0937e0f2011-09-18 20:40:57 +00004555 bma.minleft = be16_to_cpu(ifp->if_broot->bb_level) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 else
Dave Chinner0937e0f2011-09-18 20:40:57 +00004557 bma.minleft = 1;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004558 } else {
Dave Chinner0937e0f2011-09-18 20:40:57 +00004559 bma.minleft = 0;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004560 }
4561
4562 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4563 error = xfs_iread_extents(tp, ip, whichfork);
4564 if (error)
4565 goto error0;
4566 }
4567
Dave Chinnere0c3da52011-09-18 20:41:01 +00004568 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &bma.idx, &bma.got,
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004569 &bma.prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 n = 0;
4571 end = bno + len;
4572 obno = bno;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004573
4574 bma.tp = tp;
4575 bma.ip = ip;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004576 bma.total = total;
4577 bma.userdata = 0;
Dave Chinner0937e0f2011-09-18 20:40:57 +00004578 bma.flist = flist;
4579 bma.firstblock = firstblock;
Christoph Hellwigb4e91812010-06-23 18:11:15 +10004580
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 while (bno < end && n < *nmap) {
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004582 inhole = eof || bma.got.br_startoff > bno;
4583 wasdelay = !inhole && isnullstartblock(bma.got.br_startblock);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004584
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 /*
4586 * First, deal with the hole before the allocated space
4587 * that we found, if any.
4588 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004589 if (inhole || wasdelay) {
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004590 bma.eof = eof;
4591 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
4592 bma.wasdel = wasdelay;
Dave Chinner3a756672011-09-18 20:40:58 +00004593 bma.offset = bno;
Dave Chinnere04426b2012-10-05 11:06:59 +10004594 bma.flags = flags;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004595
Dave Chinnera99ebf42011-12-01 11:24:20 +00004596 /*
4597 * There's a 32/64 bit type mismatch between the
4598 * allocation length request (which can be 64 bits in
4599 * length) and the bma length request, which is
4600 * xfs_extlen_t and therefore 32 bits. Hence we have to
4601 * check for 32-bit overflows and handle them here.
4602 */
4603 if (len > (xfs_filblks_t)MAXEXTLEN)
4604 bma.length = MAXEXTLEN;
4605 else
4606 bma.length = len;
4607
4608 ASSERT(len > 0);
4609 ASSERT(bma.length > 0);
Dave Chinnere04426b2012-10-05 11:06:59 +10004610 error = xfs_bmapi_allocate(&bma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 if (error)
4612 goto error0;
Dave Chinner3a756672011-09-18 20:40:58 +00004613 if (bma.blkno == NULLFSBLOCK)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004614 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 }
Christoph Hellwig44032802011-09-18 20:40:48 +00004616
Dave Chinneraef9a892011-09-18 20:40:44 +00004617 /* Deal with the allocated space we found. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004618 xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno,
4619 end, n, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
Dave Chinnerb447fe52011-09-18 20:40:51 +00004621 /* Execute unwritten extent conversion if necessary */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004622 error = xfs_bmapi_convert_unwritten(&bma, mval, len, flags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004623 if (error == EAGAIN)
4624 continue;
4625 if (error)
4626 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627
Dave Chinneraef9a892011-09-18 20:40:44 +00004628 /* update the extent map to return */
4629 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4630
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 /*
4632 * If we're done, stop now. Stop when we've allocated
4633 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4634 * the transaction may get too big.
4635 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004636 if (bno >= end || n >= *nmap || bma.nallocs >= *nmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637 break;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004638
4639 /* Else go on to the next record. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004640 bma.prev = bma.got;
Dave Chinnere0c3da52011-09-18 20:41:01 +00004641 if (++bma.idx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t)) {
4642 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma.idx),
4643 &bma.got);
4644 } else
Christoph Hellwig5690f922011-05-11 15:04:07 +00004645 eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 *nmap = n;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004648
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 /*
4650 * Transform from btree to extents, give it cur.
4651 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004652 if (xfs_bmap_wants_extents(ip, whichfork)) {
Christoph Hellwigc315c902011-09-18 20:41:02 +00004653 int tmp_logflags = 0;
4654
Dave Chinner29c8d172011-09-18 20:41:00 +00004655 ASSERT(bma.cur);
4656 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 &tmp_logflags, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004658 bma.logflags |= tmp_logflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 if (error)
4660 goto error0;
4661 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004662
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004664 XFS_IFORK_NEXTENTS(ip, whichfork) >
4665 XFS_IFORK_MAXEXT(ip, whichfork));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667error0:
4668 /*
4669 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004670 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004672 if ((bma.logflags & xfs_ilog_fext(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Christoph Hellwigc315c902011-09-18 20:41:02 +00004674 bma.logflags &= ~xfs_ilog_fext(whichfork);
4675 else if ((bma.logflags & xfs_ilog_fbroot(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
Christoph Hellwigc315c902011-09-18 20:41:02 +00004677 bma.logflags &= ~xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678 /*
4679 * Log whatever the flags say, even if error. Otherwise we might miss
4680 * detecting a case where the data is changed, there's an error,
4681 * and it's not logged so we don't shutdown when we should.
4682 */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004683 if (bma.logflags)
4684 xfs_trans_log_inode(tp, ip, bma.logflags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004685
Dave Chinner29c8d172011-09-18 20:41:00 +00004686 if (bma.cur) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 if (!error) {
4688 ASSERT(*firstblock == NULLFSBLOCK ||
4689 XFS_FSB_TO_AGNO(mp, *firstblock) ==
4690 XFS_FSB_TO_AGNO(mp,
Dave Chinner29c8d172011-09-18 20:41:00 +00004691 bma.cur->bc_private.b.firstblock) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 (flist->xbf_low &&
4693 XFS_FSB_TO_AGNO(mp, *firstblock) <
4694 XFS_FSB_TO_AGNO(mp,
Dave Chinner29c8d172011-09-18 20:41:00 +00004695 bma.cur->bc_private.b.firstblock)));
4696 *firstblock = bma.cur->bc_private.b.firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 }
Dave Chinner29c8d172011-09-18 20:41:00 +00004698 xfs_btree_del_cursor(bma.cur,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
4700 }
4701 if (!error)
4702 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
4703 orig_nmap, *nmap);
4704 return error;
4705}
4706
4707/*
Dave Chinner9e5987a2013-02-25 12:31:26 +11004708 * Called by xfs_bmapi to update file extent records and the btree
4709 * after removing space (or undoing a delayed allocation).
4710 */
4711STATIC int /* error */
4712xfs_bmap_del_extent(
4713 xfs_inode_t *ip, /* incore inode pointer */
4714 xfs_trans_t *tp, /* current transaction pointer */
4715 xfs_extnum_t *idx, /* extent number to update/delete */
4716 xfs_bmap_free_t *flist, /* list of extents to be freed */
4717 xfs_btree_cur_t *cur, /* if null, not a btree */
4718 xfs_bmbt_irec_t *del, /* data to remove from extents */
4719 int *logflagsp, /* inode logging flags */
4720 int whichfork) /* data or attr fork */
4721{
4722 xfs_filblks_t da_new; /* new delay-alloc indirect blocks */
4723 xfs_filblks_t da_old; /* old delay-alloc indirect blocks */
4724 xfs_fsblock_t del_endblock=0; /* first block past del */
4725 xfs_fileoff_t del_endoff; /* first offset past del */
4726 int delay; /* current block is delayed allocated */
4727 int do_fx; /* free extent at end of routine */
4728 xfs_bmbt_rec_host_t *ep; /* current extent entry pointer */
4729 int error; /* error return value */
4730 int flags; /* inode logging flags */
4731 xfs_bmbt_irec_t got; /* current extent entry */
4732 xfs_fileoff_t got_endoff; /* first offset past got */
4733 int i; /* temp state */
4734 xfs_ifork_t *ifp; /* inode fork pointer */
4735 xfs_mount_t *mp; /* mount structure */
4736 xfs_filblks_t nblks; /* quota/sb block count */
4737 xfs_bmbt_irec_t new; /* new record to be inserted */
4738 /* REFERENCED */
4739 uint qfield; /* quota field to update */
4740 xfs_filblks_t temp; /* for indirect length calculations */
4741 xfs_filblks_t temp2; /* for indirect length calculations */
4742 int state = 0;
4743
4744 XFS_STATS_INC(xs_del_exlist);
4745
4746 if (whichfork == XFS_ATTR_FORK)
4747 state |= BMAP_ATTRFORK;
4748
4749 mp = ip->i_mount;
4750 ifp = XFS_IFORK_PTR(ip, whichfork);
4751 ASSERT((*idx >= 0) && (*idx < ifp->if_bytes /
4752 (uint)sizeof(xfs_bmbt_rec_t)));
4753 ASSERT(del->br_blockcount > 0);
4754 ep = xfs_iext_get_ext(ifp, *idx);
4755 xfs_bmbt_get_all(ep, &got);
4756 ASSERT(got.br_startoff <= del->br_startoff);
4757 del_endoff = del->br_startoff + del->br_blockcount;
4758 got_endoff = got.br_startoff + got.br_blockcount;
4759 ASSERT(got_endoff >= del_endoff);
4760 delay = isnullstartblock(got.br_startblock);
4761 ASSERT(isnullstartblock(del->br_startblock) == delay);
4762 flags = 0;
4763 qfield = 0;
4764 error = 0;
4765 /*
4766 * If deleting a real allocation, must free up the disk space.
4767 */
4768 if (!delay) {
4769 flags = XFS_ILOG_CORE;
4770 /*
4771 * Realtime allocation. Free it and record di_nblocks update.
4772 */
4773 if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) {
4774 xfs_fsblock_t bno;
4775 xfs_filblks_t len;
4776
4777 ASSERT(do_mod(del->br_blockcount,
4778 mp->m_sb.sb_rextsize) == 0);
4779 ASSERT(do_mod(del->br_startblock,
4780 mp->m_sb.sb_rextsize) == 0);
4781 bno = del->br_startblock;
4782 len = del->br_blockcount;
4783 do_div(bno, mp->m_sb.sb_rextsize);
4784 do_div(len, mp->m_sb.sb_rextsize);
4785 error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len);
4786 if (error)
4787 goto done;
4788 do_fx = 0;
4789 nblks = len * mp->m_sb.sb_rextsize;
4790 qfield = XFS_TRANS_DQ_RTBCOUNT;
4791 }
4792 /*
4793 * Ordinary allocation.
4794 */
4795 else {
4796 do_fx = 1;
4797 nblks = del->br_blockcount;
4798 qfield = XFS_TRANS_DQ_BCOUNT;
4799 }
4800 /*
4801 * Set up del_endblock and cur for later.
4802 */
4803 del_endblock = del->br_startblock + del->br_blockcount;
4804 if (cur) {
4805 if ((error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
4806 got.br_startblock, got.br_blockcount,
4807 &i)))
4808 goto done;
4809 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4810 }
4811 da_old = da_new = 0;
4812 } else {
4813 da_old = startblockval(got.br_startblock);
4814 da_new = 0;
4815 nblks = 0;
4816 do_fx = 0;
4817 }
4818 /*
4819 * Set flag value to use in switch statement.
4820 * Left-contig is 2, right-contig is 1.
4821 */
4822 switch (((got.br_startoff == del->br_startoff) << 1) |
4823 (got_endoff == del_endoff)) {
4824 case 3:
4825 /*
4826 * Matches the whole extent. Delete the entry.
4827 */
4828 xfs_iext_remove(ip, *idx, 1,
4829 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0);
4830 --*idx;
4831 if (delay)
4832 break;
4833
4834 XFS_IFORK_NEXT_SET(ip, whichfork,
4835 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
4836 flags |= XFS_ILOG_CORE;
4837 if (!cur) {
4838 flags |= xfs_ilog_fext(whichfork);
4839 break;
4840 }
4841 if ((error = xfs_btree_delete(cur, &i)))
4842 goto done;
4843 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4844 break;
4845
4846 case 2:
4847 /*
4848 * Deleting the first part of the extent.
4849 */
4850 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4851 xfs_bmbt_set_startoff(ep, del_endoff);
4852 temp = got.br_blockcount - del->br_blockcount;
4853 xfs_bmbt_set_blockcount(ep, temp);
4854 if (delay) {
4855 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4856 da_old);
4857 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4858 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4859 da_new = temp;
4860 break;
4861 }
4862 xfs_bmbt_set_startblock(ep, del_endblock);
4863 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4864 if (!cur) {
4865 flags |= xfs_ilog_fext(whichfork);
4866 break;
4867 }
4868 if ((error = xfs_bmbt_update(cur, del_endoff, del_endblock,
4869 got.br_blockcount - del->br_blockcount,
4870 got.br_state)))
4871 goto done;
4872 break;
4873
4874 case 1:
4875 /*
4876 * Deleting the last part of the extent.
4877 */
4878 temp = got.br_blockcount - del->br_blockcount;
4879 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4880 xfs_bmbt_set_blockcount(ep, temp);
4881 if (delay) {
4882 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4883 da_old);
4884 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4885 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4886 da_new = temp;
4887 break;
4888 }
4889 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4890 if (!cur) {
4891 flags |= xfs_ilog_fext(whichfork);
4892 break;
4893 }
4894 if ((error = xfs_bmbt_update(cur, got.br_startoff,
4895 got.br_startblock,
4896 got.br_blockcount - del->br_blockcount,
4897 got.br_state)))
4898 goto done;
4899 break;
4900
4901 case 0:
4902 /*
4903 * Deleting the middle of the extent.
4904 */
4905 temp = del->br_startoff - got.br_startoff;
4906 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4907 xfs_bmbt_set_blockcount(ep, temp);
4908 new.br_startoff = del_endoff;
4909 temp2 = got_endoff - del_endoff;
4910 new.br_blockcount = temp2;
4911 new.br_state = got.br_state;
4912 if (!delay) {
4913 new.br_startblock = del_endblock;
4914 flags |= XFS_ILOG_CORE;
4915 if (cur) {
4916 if ((error = xfs_bmbt_update(cur,
4917 got.br_startoff,
4918 got.br_startblock, temp,
4919 got.br_state)))
4920 goto done;
4921 if ((error = xfs_btree_increment(cur, 0, &i)))
4922 goto done;
4923 cur->bc_rec.b = new;
4924 error = xfs_btree_insert(cur, &i);
4925 if (error && error != ENOSPC)
4926 goto done;
4927 /*
4928 * If get no-space back from btree insert,
4929 * it tried a split, and we have a zero
4930 * block reservation.
4931 * Fix up our state and return the error.
4932 */
4933 if (error == ENOSPC) {
4934 /*
4935 * Reset the cursor, don't trust
4936 * it after any insert operation.
4937 */
4938 if ((error = xfs_bmbt_lookup_eq(cur,
4939 got.br_startoff,
4940 got.br_startblock,
4941 temp, &i)))
4942 goto done;
4943 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4944 /*
4945 * Update the btree record back
4946 * to the original value.
4947 */
4948 if ((error = xfs_bmbt_update(cur,
4949 got.br_startoff,
4950 got.br_startblock,
4951 got.br_blockcount,
4952 got.br_state)))
4953 goto done;
4954 /*
4955 * Reset the extent record back
4956 * to the original value.
4957 */
4958 xfs_bmbt_set_blockcount(ep,
4959 got.br_blockcount);
4960 flags = 0;
4961 error = XFS_ERROR(ENOSPC);
4962 goto done;
4963 }
4964 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4965 } else
4966 flags |= xfs_ilog_fext(whichfork);
4967 XFS_IFORK_NEXT_SET(ip, whichfork,
4968 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
4969 } else {
4970 ASSERT(whichfork == XFS_DATA_FORK);
4971 temp = xfs_bmap_worst_indlen(ip, temp);
4972 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4973 temp2 = xfs_bmap_worst_indlen(ip, temp2);
4974 new.br_startblock = nullstartblock((int)temp2);
4975 da_new = temp + temp2;
4976 while (da_new > da_old) {
4977 if (temp) {
4978 temp--;
4979 da_new--;
4980 xfs_bmbt_set_startblock(ep,
4981 nullstartblock((int)temp));
4982 }
4983 if (da_new == da_old)
4984 break;
4985 if (temp2) {
4986 temp2--;
4987 da_new--;
4988 new.br_startblock =
4989 nullstartblock((int)temp2);
4990 }
4991 }
4992 }
4993 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4994 xfs_iext_insert(ip, *idx + 1, 1, &new, state);
4995 ++*idx;
4996 break;
4997 }
4998 /*
4999 * If we need to, add to list of extents to delete.
5000 */
5001 if (do_fx)
5002 xfs_bmap_add_free(del->br_startblock, del->br_blockcount, flist,
5003 mp);
5004 /*
5005 * Adjust inode # blocks in the file.
5006 */
5007 if (nblks)
5008 ip->i_d.di_nblocks -= nblks;
5009 /*
5010 * Adjust quota data.
5011 */
5012 if (qfield)
5013 xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks);
5014
5015 /*
5016 * Account for change in delayed indirect blocks.
5017 * Nothing to do for disk quota accounting here.
5018 */
5019 ASSERT(da_old >= da_new);
5020 if (da_old > da_new) {
5021 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
5022 (int64_t)(da_old - da_new), 0);
5023 }
5024done:
5025 *logflagsp = flags;
5026 return error;
5027}
5028
5029/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 * Unmap (remove) blocks from a file.
5031 * If nexts is nonzero then the number of extents to remove is limited to
5032 * that value. If not all extents in the block range can be removed then
5033 * *done is set.
5034 */
5035int /* error */
5036xfs_bunmapi(
5037 xfs_trans_t *tp, /* transaction pointer */
5038 struct xfs_inode *ip, /* incore inode */
5039 xfs_fileoff_t bno, /* starting offset to unmap */
5040 xfs_filblks_t len, /* length to unmap in file */
5041 int flags, /* misc flags */
5042 xfs_extnum_t nexts, /* number of extents max */
5043 xfs_fsblock_t *firstblock, /* first allocated block
5044 controls a.g. for allocs */
5045 xfs_bmap_free_t *flist, /* i/o: list extents to free */
5046 int *done) /* set if not done yet */
5047{
5048 xfs_btree_cur_t *cur; /* bmap btree cursor */
5049 xfs_bmbt_irec_t del; /* extent being deleted */
5050 int eof; /* is deleting at eof */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10005051 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052 int error; /* error return value */
5053 xfs_extnum_t extno; /* extent number in list */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005054 xfs_bmbt_irec_t got; /* current extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 xfs_ifork_t *ifp; /* inode fork pointer */
5056 int isrt; /* freeing in rt area */
5057 xfs_extnum_t lastx; /* last extent index used */
5058 int logflags; /* transaction logging flags */
5059 xfs_extlen_t mod; /* rt extent offset */
5060 xfs_mount_t *mp; /* mount structure */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005061 xfs_extnum_t nextents; /* number of file extents */
5062 xfs_bmbt_irec_t prev; /* previous extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 xfs_fileoff_t start; /* first file offset deleted */
5064 int tmp_logflags; /* partial logging flags */
5065 int wasdel; /* was a delayed alloc extent */
5066 int whichfork; /* data or attribute fork */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 xfs_fsblock_t sum;
5068
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00005069 trace_xfs_bunmap(ip, bno, len, flags, _RET_IP_);
5070
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
5072 XFS_ATTR_FORK : XFS_DATA_FORK;
5073 ifp = XFS_IFORK_PTR(ip, whichfork);
5074 if (unlikely(
5075 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5076 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
5077 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW,
5078 ip->i_mount);
5079 return XFS_ERROR(EFSCORRUPTED);
5080 }
5081 mp = ip->i_mount;
5082 if (XFS_FORCED_SHUTDOWN(mp))
5083 return XFS_ERROR(EIO);
Christoph Hellwig54893272011-05-11 15:04:03 +00005084
Christoph Hellwigeef334e2013-12-06 12:30:17 -08005085 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086 ASSERT(len > 0);
5087 ASSERT(nexts >= 0);
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005088
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5090 (error = xfs_iread_extents(tp, ip, whichfork)))
5091 return error;
5092 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5093 if (nextents == 0) {
5094 *done = 1;
5095 return 0;
5096 }
5097 XFS_STATS_INC(xs_blk_unmap);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005098 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099 start = bno;
5100 bno = start + len - 1;
5101 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
5102 &prev);
Christoph Hellwigb4e91812010-06-23 18:11:15 +10005103
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 /*
5105 * Check to see if the given block number is past the end of the
5106 * file, back up to the last block if so...
5107 */
5108 if (eof) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005109 ep = xfs_iext_get_ext(ifp, --lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 xfs_bmbt_get_all(ep, &got);
5111 bno = got.br_startoff + got.br_blockcount - 1;
5112 }
5113 logflags = 0;
5114 if (ifp->if_flags & XFS_IFBROOT) {
5115 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
Christoph Hellwig561f7d12008-10-30 16:53:59 +11005116 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 cur->bc_private.b.firstblock = *firstblock;
5118 cur->bc_private.b.flist = flist;
5119 cur->bc_private.b.flags = 0;
5120 } else
5121 cur = NULL;
Kamal Dasu5575acc2012-02-23 00:41:39 +00005122
5123 if (isrt) {
5124 /*
5125 * Synchronize by locking the bitmap inode.
5126 */
5127 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL);
5128 xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
5129 }
5130
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131 extno = 0;
5132 while (bno != (xfs_fileoff_t)-1 && bno >= start && lastx >= 0 &&
5133 (nexts == 0 || extno < nexts)) {
5134 /*
5135 * Is the found extent after a hole in which bno lives?
5136 * Just back up to the previous extent, if so.
5137 */
5138 if (got.br_startoff > bno) {
5139 if (--lastx < 0)
5140 break;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005141 ep = xfs_iext_get_ext(ifp, lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142 xfs_bmbt_get_all(ep, &got);
5143 }
5144 /*
5145 * Is the last block of this extent before the range
5146 * we're supposed to delete? If so, we're done.
5147 */
5148 bno = XFS_FILEOFF_MIN(bno,
5149 got.br_startoff + got.br_blockcount - 1);
5150 if (bno < start)
5151 break;
5152 /*
5153 * Then deal with the (possibly delayed) allocated space
5154 * we found.
5155 */
5156 ASSERT(ep != NULL);
5157 del = got;
Eric Sandeen9d87c312009-01-14 23:22:07 -06005158 wasdel = isnullstartblock(del.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 if (got.br_startoff < start) {
5160 del.br_startoff = start;
5161 del.br_blockcount -= start - got.br_startoff;
5162 if (!wasdel)
5163 del.br_startblock += start - got.br_startoff;
5164 }
5165 if (del.br_startoff + del.br_blockcount > bno + 1)
5166 del.br_blockcount = bno + 1 - del.br_startoff;
5167 sum = del.br_startblock + del.br_blockcount;
5168 if (isrt &&
5169 (mod = do_mod(sum, mp->m_sb.sb_rextsize))) {
5170 /*
5171 * Realtime extent not lined up at the end.
5172 * The extent could have been split into written
5173 * and unwritten pieces, or we could just be
5174 * unmapping part of it. But we can't really
5175 * get rid of part of a realtime extent.
5176 */
5177 if (del.br_state == XFS_EXT_UNWRITTEN ||
Eric Sandeen62118702008-03-06 13:44:28 +11005178 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179 /*
5180 * This piece is unwritten, or we're not
5181 * using unwritten extents. Skip over it.
5182 */
5183 ASSERT(bno >= mod);
5184 bno -= mod > del.br_blockcount ?
5185 del.br_blockcount : mod;
5186 if (bno < got.br_startoff) {
5187 if (--lastx >= 0)
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005188 xfs_bmbt_get_all(xfs_iext_get_ext(
5189 ifp, lastx), &got);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 }
5191 continue;
5192 }
5193 /*
5194 * It's written, turn it unwritten.
5195 * This is better than zeroing it.
5196 */
5197 ASSERT(del.br_state == XFS_EXT_NORM);
5198 ASSERT(xfs_trans_get_block_res(tp) > 0);
5199 /*
5200 * If this spans a realtime extent boundary,
5201 * chop it back to the start of the one we end at.
5202 */
5203 if (del.br_blockcount > mod) {
5204 del.br_startoff += del.br_blockcount - mod;
5205 del.br_startblock += del.br_blockcount - mod;
5206 del.br_blockcount = mod;
5207 }
5208 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005209 error = xfs_bmap_add_extent_unwritten_real(tp, ip,
5210 &lastx, &cur, &del, firstblock, flist,
5211 &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 if (error)
5213 goto error0;
5214 goto nodelete;
5215 }
5216 if (isrt && (mod = do_mod(del.br_startblock, mp->m_sb.sb_rextsize))) {
5217 /*
5218 * Realtime extent is lined up at the end but not
5219 * at the front. We'll get rid of full extents if
5220 * we can.
5221 */
5222 mod = mp->m_sb.sb_rextsize - mod;
5223 if (del.br_blockcount > mod) {
5224 del.br_blockcount -= mod;
5225 del.br_startoff += mod;
5226 del.br_startblock += mod;
5227 } else if ((del.br_startoff == start &&
5228 (del.br_state == XFS_EXT_UNWRITTEN ||
5229 xfs_trans_get_block_res(tp) == 0)) ||
Eric Sandeen62118702008-03-06 13:44:28 +11005230 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 /*
5232 * Can't make it unwritten. There isn't
5233 * a full extent here so just skip it.
5234 */
5235 ASSERT(bno >= del.br_blockcount);
5236 bno -= del.br_blockcount;
Christoph Hellwigf1c63b72011-05-11 15:04:09 +00005237 if (got.br_startoff > bno) {
5238 if (--lastx >= 0) {
5239 ep = xfs_iext_get_ext(ifp,
5240 lastx);
5241 xfs_bmbt_get_all(ep, &got);
5242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 }
5244 continue;
5245 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
5246 /*
5247 * This one is already unwritten.
5248 * It must have a written left neighbor.
5249 * Unwrite the killed part of that one and
5250 * try again.
5251 */
5252 ASSERT(lastx > 0);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005253 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5254 lastx - 1), &prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 ASSERT(prev.br_state == XFS_EXT_NORM);
Eric Sandeen9d87c312009-01-14 23:22:07 -06005256 ASSERT(!isnullstartblock(prev.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 ASSERT(del.br_startblock ==
5258 prev.br_startblock + prev.br_blockcount);
5259 if (prev.br_startoff < start) {
5260 mod = start - prev.br_startoff;
5261 prev.br_blockcount -= mod;
5262 prev.br_startblock += mod;
5263 prev.br_startoff = start;
5264 }
5265 prev.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwigec90c552011-05-23 08:52:53 +00005266 lastx--;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005267 error = xfs_bmap_add_extent_unwritten_real(tp,
5268 ip, &lastx, &cur, &prev,
5269 firstblock, flist, &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 if (error)
5271 goto error0;
5272 goto nodelete;
5273 } else {
5274 ASSERT(del.br_state == XFS_EXT_NORM);
5275 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005276 error = xfs_bmap_add_extent_unwritten_real(tp,
5277 ip, &lastx, &cur, &del,
5278 firstblock, flist, &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 if (error)
5280 goto error0;
5281 goto nodelete;
5282 }
5283 }
5284 if (wasdel) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06005285 ASSERT(startblockval(del.br_startblock) > 0);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005286 /* Update realtime/data freespace, unreserve quota */
Nathan Scott06d10dd2005-06-21 15:48:47 +10005287 if (isrt) {
5288 xfs_filblks_t rtexts;
5289
5290 rtexts = XFS_FSB_TO_B(mp, del.br_blockcount);
5291 do_div(rtexts, mp->m_sb.sb_rextsize);
5292 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
Christoph Hellwig54893272011-05-11 15:04:03 +00005293 (int64_t)rtexts, 0);
Christoph Hellwig7d095252009-06-08 15:33:32 +02005294 (void)xfs_trans_reserve_quota_nblks(NULL,
5295 ip, -((long)del.br_blockcount), 0,
Nathan Scott06d10dd2005-06-21 15:48:47 +10005296 XFS_QMOPT_RES_RTBLKS);
5297 } else {
Christoph Hellwig96540c72010-09-30 02:25:55 +00005298 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
Christoph Hellwig54893272011-05-11 15:04:03 +00005299 (int64_t)del.br_blockcount, 0);
Christoph Hellwig7d095252009-06-08 15:33:32 +02005300 (void)xfs_trans_reserve_quota_nblks(NULL,
5301 ip, -((long)del.br_blockcount), 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302 XFS_QMOPT_RES_REGBLKS);
Nathan Scott06d10dd2005-06-21 15:48:47 +10005303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 ip->i_delayed_blks -= del.br_blockcount;
5305 if (cur)
5306 cur->bc_private.b.flags |=
5307 XFS_BTCUR_BPRV_WASDEL;
5308 } else if (cur)
5309 cur->bc_private.b.flags &= ~XFS_BTCUR_BPRV_WASDEL;
5310 /*
5311 * If it's the case where the directory code is running
5312 * with no block reservation, and the deleted block is in
5313 * the middle of its extent, and the resulting insert
5314 * of an extent would cause transformation to btree format,
5315 * then reject it. The calling code will then swap
5316 * blocks around instead.
5317 * We have to do this now, rather than waiting for the
5318 * conversion to btree format, since the transaction
5319 * will be dirty.
5320 */
5321 if (!wasdel && xfs_trans_get_block_res(tp) == 0 &&
5322 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005323 XFS_IFORK_NEXTENTS(ip, whichfork) >= /* Note the >= */
5324 XFS_IFORK_MAXEXT(ip, whichfork) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325 del.br_startoff > got.br_startoff &&
5326 del.br_startoff + del.br_blockcount <
5327 got.br_startoff + got.br_blockcount) {
5328 error = XFS_ERROR(ENOSPC);
5329 goto error0;
5330 }
Christoph Hellwigec90c552011-05-23 08:52:53 +00005331 error = xfs_bmap_del_extent(ip, tp, &lastx, flist, cur, &del,
Christoph Hellwig54893272011-05-11 15:04:03 +00005332 &tmp_logflags, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 logflags |= tmp_logflags;
5334 if (error)
5335 goto error0;
5336 bno = del.br_startoff - 1;
5337nodelete:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 /*
5339 * If not done go on to the next (previous) record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 if (bno != (xfs_fileoff_t)-1 && bno >= start) {
Christoph Hellwig00239ac2011-05-11 15:04:08 +00005342 if (lastx >= 0) {
5343 ep = xfs_iext_get_ext(ifp, lastx);
5344 if (xfs_bmbt_get_startoff(ep) > bno) {
5345 if (--lastx >= 0)
5346 ep = xfs_iext_get_ext(ifp,
5347 lastx);
5348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 xfs_bmbt_get_all(ep, &got);
Christoph Hellwig00239ac2011-05-11 15:04:08 +00005350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351 extno++;
5352 }
5353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 *done = bno == (xfs_fileoff_t)-1 || bno < start || lastx < 0;
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005355
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356 /*
5357 * Convert to a btree if necessary.
5358 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005359 if (xfs_bmap_needs_btree(ip, whichfork)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 ASSERT(cur == NULL);
5361 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist,
5362 &cur, 0, &tmp_logflags, whichfork);
5363 logflags |= tmp_logflags;
5364 if (error)
5365 goto error0;
5366 }
5367 /*
5368 * transform from btree to extents, give it cur
5369 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005370 else if (xfs_bmap_wants_extents(ip, whichfork)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371 ASSERT(cur != NULL);
5372 error = xfs_bmap_btree_to_extents(tp, ip, cur, &tmp_logflags,
5373 whichfork);
5374 logflags |= tmp_logflags;
5375 if (error)
5376 goto error0;
5377 }
5378 /*
5379 * transform from extents to local?
5380 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 error = 0;
5382error0:
5383 /*
5384 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005385 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06005387 if ((logflags & xfs_ilog_fext(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005389 logflags &= ~xfs_ilog_fext(whichfork);
5390 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005392 logflags &= ~xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 /*
5394 * Log inode even in the error case, if the transaction
5395 * is dirty we'll need to shut down the filesystem.
5396 */
5397 if (logflags)
5398 xfs_trans_log_inode(tp, ip, logflags);
5399 if (cur) {
5400 if (!error) {
5401 *firstblock = cur->bc_private.b.firstblock;
5402 cur->bc_private.b.allocated = 0;
5403 }
5404 xfs_btree_del_cursor(cur,
5405 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5406 }
5407 return error;
5408}
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005409
5410/*
5411 * Shift extent records to the left to cover a hole.
5412 *
5413 * The maximum number of extents to be shifted in a single operation
5414 * is @num_exts, and @current_ext keeps track of the current extent
5415 * index we have shifted. @offset_shift_fsb is the length by which each
5416 * extent is shifted. If there is no hole to shift the extents
5417 * into, this will be considered invalid operation and we abort immediately.
5418 */
5419int
5420xfs_bmap_shift_extents(
5421 struct xfs_trans *tp,
5422 struct xfs_inode *ip,
5423 int *done,
5424 xfs_fileoff_t start_fsb,
5425 xfs_fileoff_t offset_shift_fsb,
5426 xfs_extnum_t *current_ext,
5427 xfs_fsblock_t *firstblock,
5428 struct xfs_bmap_free *flist,
5429 int num_exts)
5430{
5431 struct xfs_btree_cur *cur;
5432 struct xfs_bmbt_rec_host *gotp;
5433 struct xfs_bmbt_irec got;
5434 struct xfs_bmbt_irec left;
5435 struct xfs_mount *mp = ip->i_mount;
5436 struct xfs_ifork *ifp;
5437 xfs_extnum_t nexts = 0;
5438 xfs_fileoff_t startoff;
5439 int error = 0;
5440 int i;
5441 int whichfork = XFS_DATA_FORK;
5442 int logflags;
5443 xfs_filblks_t blockcount = 0;
Dave Chinnerd39a2ce2014-04-17 08:15:25 +10005444 int total_extents;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005445
5446 if (unlikely(XFS_TEST_ERROR(
5447 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5448 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
5449 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
5450 XFS_ERROR_REPORT("xfs_bmap_shift_extents",
5451 XFS_ERRLEVEL_LOW, mp);
5452 return XFS_ERROR(EFSCORRUPTED);
5453 }
5454
5455 if (XFS_FORCED_SHUTDOWN(mp))
5456 return XFS_ERROR(EIO);
5457
5458 ASSERT(current_ext != NULL);
5459
5460 ifp = XFS_IFORK_PTR(ip, whichfork);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005461 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5462 /* Read in all the extents */
5463 error = xfs_iread_extents(tp, ip, whichfork);
5464 if (error)
5465 return error;
5466 }
5467
5468 /*
5469 * If *current_ext is 0, we would need to lookup the extent
5470 * from where we would start shifting and store it in gotp.
5471 */
5472 if (!*current_ext) {
5473 gotp = xfs_iext_bno_to_ext(ifp, start_fsb, current_ext);
5474 /*
5475 * gotp can be null in 2 cases: 1) if there are no extents
5476 * or 2) start_fsb lies in a hole beyond which there are
5477 * no extents. Either way, we are done.
5478 */
5479 if (!gotp) {
5480 *done = 1;
5481 return 0;
5482 }
5483 }
5484
5485 /* We are going to change core inode */
5486 logflags = XFS_ILOG_CORE;
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005487 if (ifp->if_flags & XFS_IFBROOT) {
5488 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5489 cur->bc_private.b.firstblock = *firstblock;
5490 cur->bc_private.b.flist = flist;
5491 cur->bc_private.b.flags = 0;
5492 } else {
5493 cur = NULL;
5494 logflags |= XFS_ILOG_DEXT;
5495 }
5496
Dave Chinnerd39a2ce2014-04-17 08:15:25 +10005497 /*
5498 * There may be delalloc extents in the data fork before the range we
5499 * are collapsing out, so we cannot
5500 * use the count of real extents here. Instead we have to calculate it
5501 * from the incore fork.
5502 */
5503 total_extents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
5504 while (nexts++ < num_exts && *current_ext < total_extents) {
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005505
5506 gotp = xfs_iext_get_ext(ifp, *current_ext);
5507 xfs_bmbt_get_all(gotp, &got);
5508 startoff = got.br_startoff - offset_shift_fsb;
5509
5510 /*
5511 * Before shifting extent into hole, make sure that the hole
5512 * is large enough to accomodate the shift.
5513 */
5514 if (*current_ext) {
5515 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5516 *current_ext - 1), &left);
5517
5518 if (startoff < left.br_startoff + left.br_blockcount)
5519 error = XFS_ERROR(EINVAL);
5520 } else if (offset_shift_fsb > got.br_startoff) {
5521 /*
5522 * When first extent is shifted, offset_shift_fsb
5523 * should be less than the stating offset of
5524 * the first extent.
5525 */
5526 error = XFS_ERROR(EINVAL);
5527 }
5528
5529 if (error)
5530 goto del_cursor;
5531
5532 if (cur) {
5533 error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
5534 got.br_startblock,
5535 got.br_blockcount,
5536 &i);
5537 if (error)
5538 goto del_cursor;
5539 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5540 }
5541
5542 /* Check if we can merge 2 adjacent extents */
5543 if (*current_ext &&
5544 left.br_startoff + left.br_blockcount == startoff &&
5545 left.br_startblock + left.br_blockcount ==
5546 got.br_startblock &&
5547 left.br_state == got.br_state &&
5548 left.br_blockcount + got.br_blockcount <= MAXEXTLEN) {
5549 blockcount = left.br_blockcount +
5550 got.br_blockcount;
5551 xfs_iext_remove(ip, *current_ext, 1, 0);
5552 if (cur) {
5553 error = xfs_btree_delete(cur, &i);
5554 if (error)
5555 goto del_cursor;
5556 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5557 }
5558 XFS_IFORK_NEXT_SET(ip, whichfork,
5559 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
5560 gotp = xfs_iext_get_ext(ifp, --*current_ext);
5561 xfs_bmbt_get_all(gotp, &got);
5562
5563 /* Make cursor point to the extent we will update */
5564 if (cur) {
5565 error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
5566 got.br_startblock,
5567 got.br_blockcount,
5568 &i);
5569 if (error)
5570 goto del_cursor;
5571 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5572 }
5573
5574 xfs_bmbt_set_blockcount(gotp, blockcount);
5575 got.br_blockcount = blockcount;
5576 } else {
5577 /* We have to update the startoff */
5578 xfs_bmbt_set_startoff(gotp, startoff);
5579 got.br_startoff = startoff;
5580 }
5581
5582 if (cur) {
5583 error = xfs_bmbt_update(cur, got.br_startoff,
5584 got.br_startblock,
5585 got.br_blockcount,
5586 got.br_state);
5587 if (error)
5588 goto del_cursor;
5589 }
5590
5591 (*current_ext)++;
Dave Chinnerd39a2ce2014-04-17 08:15:25 +10005592 total_extents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005593 }
5594
5595 /* Check if we are done */
Dave Chinnerd39a2ce2014-04-17 08:15:25 +10005596 if (*current_ext == total_extents)
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005597 *done = 1;
5598
5599del_cursor:
5600 if (cur)
5601 xfs_btree_del_cursor(cur,
5602 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5603
5604 xfs_trans_log_inode(tp, ip, logflags);
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005605 return error;
5606}