blob: 576f3ae1a67d261b85cbb78318dcc75239d16bd7 [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 Chinner70a98832013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-02-25 12:31:26 +1100794
795 /*
796 * Need a cursor. Can't allocate until bb_level is filled in.
797 */
Dave Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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 Chinner9e5987a72013-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));
1101 dargs.dp = ip;
1102 dargs.firstblock = firstblock;
1103 dargs.flist = flist;
Dave Chinner1e823792013-02-11 15:58:13 +11001104 dargs.total = ip->i_mount->m_dirblkfsbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 dargs.whichfork = XFS_DATA_FORK;
1106 dargs.trans = tp;
Dave Chinner1e823792013-02-11 15:58:13 +11001107 return xfs_dir2_sf_to_block(&dargs);
1108 }
1109
1110 if (S_ISLNK(ip->i_d.di_mode))
1111 return xfs_bmap_local_to_extents(tp, ip, firstblock, 1,
1112 flags, XFS_DATA_FORK,
1113 xfs_symlink_local_to_remote);
1114
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001115 /* should only be called for types that support local format data */
1116 ASSERT(0);
1117 return EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
1120/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11001121 * Convert inode from non-attributed to attributed.
1122 * Must not be in a transaction, ip must not be locked.
1123 */
1124int /* error code */
1125xfs_bmap_add_attrfork(
1126 xfs_inode_t *ip, /* incore inode pointer */
1127 int size, /* space new attribute needs */
1128 int rsvd) /* xact may use reserved blks */
1129{
1130 xfs_fsblock_t firstblock; /* 1st block/ag allocated */
1131 xfs_bmap_free_t flist; /* freed extent records */
1132 xfs_mount_t *mp; /* mount structure */
1133 xfs_trans_t *tp; /* transaction pointer */
1134 int blks; /* space reservation */
1135 int version = 1; /* superblock attr version */
1136 int committed; /* xaction was committed */
1137 int logflags; /* logging flags */
1138 int error; /* error return value */
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001139 int cancel_flags = 0;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001140
1141 ASSERT(XFS_IFORK_Q(ip) == 0);
1142
1143 mp = ip->i_mount;
1144 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
1145 tp = xfs_trans_alloc(mp, XFS_TRANS_ADDAFORK);
1146 blks = XFS_ADDAFORK_SPACE_RES(mp);
1147 if (rsvd)
1148 tp->t_flags |= XFS_TRANS_RESERVE;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001149 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_addafork, blks, 0);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001150 if (error) {
1151 xfs_trans_cancel(tp, 0);
1152 return error;
1153 }
1154 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001155 xfs_ilock(ip, XFS_ILOCK_EXCL);
1156 error = xfs_trans_reserve_quota_nblks(tp, ip, blks, 0, rsvd ?
1157 XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
1158 XFS_QMOPT_RES_REGBLKS);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001159 if (error)
1160 goto trans_cancel;
1161 cancel_flags |= XFS_TRANS_ABORT;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001162 if (XFS_IFORK_Q(ip))
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001163 goto trans_cancel;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001164 if (ip->i_d.di_aformat != XFS_DINODE_FMT_EXTENTS) {
1165 /*
1166 * For inodes coming from pre-6.2 filesystems.
1167 */
1168 ASSERT(ip->i_d.di_aformat == 0);
1169 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1170 }
1171 ASSERT(ip->i_d.di_anextents == 0);
1172
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001173 xfs_trans_ijoin(tp, ip, 0);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001174 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1175
1176 switch (ip->i_d.di_format) {
1177 case XFS_DINODE_FMT_DEV:
1178 ip->i_d.di_forkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
1179 break;
1180 case XFS_DINODE_FMT_UUID:
1181 ip->i_d.di_forkoff = roundup(sizeof(uuid_t), 8) >> 3;
1182 break;
1183 case XFS_DINODE_FMT_LOCAL:
1184 case XFS_DINODE_FMT_EXTENTS:
1185 case XFS_DINODE_FMT_BTREE:
1186 ip->i_d.di_forkoff = xfs_attr_shortform_bytesfit(ip, size);
1187 if (!ip->i_d.di_forkoff)
1188 ip->i_d.di_forkoff = xfs_default_attroffset(ip) >> 3;
1189 else if (mp->m_flags & XFS_MOUNT_ATTR2)
1190 version = 2;
1191 break;
1192 default:
1193 ASSERT(0);
1194 error = XFS_ERROR(EINVAL);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001195 goto trans_cancel;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001196 }
1197
1198 ASSERT(ip->i_afp == NULL);
1199 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
1200 ip->i_afp->if_flags = XFS_IFEXTENTS;
1201 logflags = 0;
1202 xfs_bmap_init(&flist, &firstblock);
1203 switch (ip->i_d.di_format) {
1204 case XFS_DINODE_FMT_LOCAL:
1205 error = xfs_bmap_add_attrfork_local(tp, ip, &firstblock, &flist,
1206 &logflags);
1207 break;
1208 case XFS_DINODE_FMT_EXTENTS:
1209 error = xfs_bmap_add_attrfork_extents(tp, ip, &firstblock,
1210 &flist, &logflags);
1211 break;
1212 case XFS_DINODE_FMT_BTREE:
1213 error = xfs_bmap_add_attrfork_btree(tp, ip, &firstblock, &flist,
1214 &logflags);
1215 break;
1216 default:
1217 error = 0;
1218 break;
1219 }
1220 if (logflags)
1221 xfs_trans_log_inode(tp, ip, logflags);
1222 if (error)
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001223 goto bmap_cancel;
Dave Chinner9e5987a72013-02-25 12:31:26 +11001224 if (!xfs_sb_version_hasattr(&mp->m_sb) ||
1225 (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2)) {
1226 __int64_t sbfields = 0;
1227
1228 spin_lock(&mp->m_sb_lock);
1229 if (!xfs_sb_version_hasattr(&mp->m_sb)) {
1230 xfs_sb_version_addattr(&mp->m_sb);
1231 sbfields |= XFS_SB_VERSIONNUM;
1232 }
1233 if (!xfs_sb_version_hasattr2(&mp->m_sb) && version == 2) {
1234 xfs_sb_version_addattr2(&mp->m_sb);
1235 sbfields |= (XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
1236 }
1237 if (sbfields) {
1238 spin_unlock(&mp->m_sb_lock);
1239 xfs_mod_sb(tp, sbfields);
1240 } else
1241 spin_unlock(&mp->m_sb_lock);
1242 }
1243
1244 error = xfs_bmap_finish(&tp, &flist, &committed);
1245 if (error)
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001246 goto bmap_cancel;
1247 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001248 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Mark Tinguely9e3908e2013-11-07 15:43:28 -06001249 return error;
1250
1251bmap_cancel:
1252 xfs_bmap_cancel(&flist);
1253trans_cancel:
1254 xfs_trans_cancel(tp, cancel_flags);
1255 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner9e5987a72013-02-25 12:31:26 +11001256 return error;
1257}
1258
1259/*
1260 * Internal and external extent tree search functions.
1261 */
1262
1263/*
1264 * Read in the extents to if_extents.
1265 * All inode fields are set up by caller, we just traverse the btree
1266 * and copy the records in. If the file system cannot contain unwritten
1267 * extents, the records are checked for no "state" flags.
1268 */
1269int /* error */
1270xfs_bmap_read_extents(
1271 xfs_trans_t *tp, /* transaction pointer */
1272 xfs_inode_t *ip, /* incore inode */
1273 int whichfork) /* data or attr fork */
1274{
1275 struct xfs_btree_block *block; /* current btree block */
1276 xfs_fsblock_t bno; /* block # of "block" */
1277 xfs_buf_t *bp; /* buffer for "block" */
1278 int error; /* error return value */
1279 xfs_exntfmt_t exntf; /* XFS_EXTFMT_NOSTATE, if checking */
1280 xfs_extnum_t i, j; /* index into the extents list */
1281 xfs_ifork_t *ifp; /* fork structure */
1282 int level; /* btree level, for checking */
1283 xfs_mount_t *mp; /* file system mount structure */
1284 __be64 *pp; /* pointer to block address */
1285 /* REFERENCED */
1286 xfs_extnum_t room; /* number of entries there's room for */
1287
1288 bno = NULLFSBLOCK;
1289 mp = ip->i_mount;
1290 ifp = XFS_IFORK_PTR(ip, whichfork);
1291 exntf = (whichfork != XFS_DATA_FORK) ? XFS_EXTFMT_NOSTATE :
1292 XFS_EXTFMT_INODE(ip);
1293 block = ifp->if_broot;
1294 /*
1295 * Root level must use BMAP_BROOT_PTR_ADDR macro to get ptr out.
1296 */
1297 level = be16_to_cpu(block->bb_level);
1298 ASSERT(level > 0);
1299 pp = XFS_BMAP_BROOT_PTR_ADDR(mp, block, 1, ifp->if_broot_bytes);
1300 bno = be64_to_cpu(*pp);
1301 ASSERT(bno != NULLDFSBNO);
1302 ASSERT(XFS_FSB_TO_AGNO(mp, bno) < mp->m_sb.sb_agcount);
1303 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks);
1304 /*
1305 * Go down the tree until leaf level is reached, following the first
1306 * pointer (leftmost) at each level.
1307 */
1308 while (level-- > 0) {
1309 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1310 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1311 if (error)
1312 return error;
1313 block = XFS_BUF_TO_BLOCK(bp);
1314 XFS_WANT_CORRUPTED_GOTO(
1315 xfs_bmap_sanity_check(mp, bp, level),
1316 error0);
1317 if (level == 0)
1318 break;
1319 pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
1320 bno = be64_to_cpu(*pp);
1321 XFS_WANT_CORRUPTED_GOTO(XFS_FSB_SANITY_CHECK(mp, bno), error0);
1322 xfs_trans_brelse(tp, bp);
1323 }
1324 /*
1325 * Here with bp and block set to the leftmost leaf node in the tree.
1326 */
1327 room = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1328 i = 0;
1329 /*
1330 * Loop over all leaf nodes. Copy information to the extent records.
1331 */
1332 for (;;) {
1333 xfs_bmbt_rec_t *frp;
1334 xfs_fsblock_t nextbno;
1335 xfs_extnum_t num_recs;
1336 xfs_extnum_t start;
1337
1338 num_recs = xfs_btree_get_numrecs(block);
1339 if (unlikely(i + num_recs > room)) {
1340 ASSERT(i + num_recs <= room);
1341 xfs_warn(ip->i_mount,
1342 "corrupt dinode %Lu, (btree extents).",
1343 (unsigned long long) ip->i_ino);
1344 XFS_CORRUPTION_ERROR("xfs_bmap_read_extents(1)",
1345 XFS_ERRLEVEL_LOW, ip->i_mount, block);
1346 goto error0;
1347 }
1348 XFS_WANT_CORRUPTED_GOTO(
1349 xfs_bmap_sanity_check(mp, bp, 0),
1350 error0);
1351 /*
1352 * Read-ahead the next leaf block, if any.
1353 */
1354 nextbno = be64_to_cpu(block->bb_u.l.bb_rightsib);
1355 if (nextbno != NULLFSBLOCK)
1356 xfs_btree_reada_bufl(mp, nextbno, 1,
1357 &xfs_bmbt_buf_ops);
1358 /*
1359 * Copy records into the extent records.
1360 */
1361 frp = XFS_BMBT_REC_ADDR(mp, block, 1);
1362 start = i;
1363 for (j = 0; j < num_recs; j++, i++, frp++) {
1364 xfs_bmbt_rec_host_t *trp = xfs_iext_get_ext(ifp, i);
1365 trp->l0 = be64_to_cpu(frp->l0);
1366 trp->l1 = be64_to_cpu(frp->l1);
1367 }
1368 if (exntf == XFS_EXTFMT_NOSTATE) {
1369 /*
1370 * Check all attribute bmap btree records and
1371 * any "older" data bmap btree records for a
1372 * set bit in the "extent flag" position.
1373 */
1374 if (unlikely(xfs_check_nostate_extents(ifp,
1375 start, num_recs))) {
1376 XFS_ERROR_REPORT("xfs_bmap_read_extents(2)",
1377 XFS_ERRLEVEL_LOW,
1378 ip->i_mount);
1379 goto error0;
1380 }
1381 }
1382 xfs_trans_brelse(tp, bp);
1383 bno = nextbno;
1384 /*
1385 * If we've reached the end, stop.
1386 */
1387 if (bno == NULLFSBLOCK)
1388 break;
1389 error = xfs_btree_read_bufl(mp, tp, bno, 0, &bp,
1390 XFS_BMAP_BTREE_REF, &xfs_bmbt_buf_ops);
1391 if (error)
1392 return error;
1393 block = XFS_BUF_TO_BLOCK(bp);
1394 }
1395 ASSERT(i == (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)));
1396 ASSERT(i == XFS_IFORK_NEXTENTS(ip, whichfork));
1397 XFS_BMAP_TRACE_EXLIST(ip, i, whichfork);
1398 return 0;
1399error0:
1400 xfs_trans_brelse(tp, bp);
1401 return XFS_ERROR(EFSCORRUPTED);
1402}
1403
1404
1405/*
1406 * Search the extent records for the entry containing block bno.
1407 * If bno lies in a hole, point to the next entry. If bno lies
1408 * past eof, *eofp will be set, and *prevp will contain the last
1409 * entry (null if none). Else, *lastxp will be set to the index
1410 * of the found entry; *gotp will contain the entry.
1411 */
1412STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1413xfs_bmap_search_multi_extents(
1414 xfs_ifork_t *ifp, /* inode fork pointer */
1415 xfs_fileoff_t bno, /* block number searched for */
1416 int *eofp, /* out: end of file found */
1417 xfs_extnum_t *lastxp, /* out: last extent index */
1418 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1419 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1420{
1421 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1422 xfs_extnum_t lastx; /* last extent index */
1423
1424 /*
1425 * Initialize the extent entry structure to catch access to
1426 * uninitialized br_startblock field.
1427 */
1428 gotp->br_startoff = 0xffa5a5a5a5a5a5a5LL;
1429 gotp->br_blockcount = 0xa55a5a5a5a5a5a5aLL;
1430 gotp->br_state = XFS_EXT_INVALID;
1431#if XFS_BIG_BLKNOS
1432 gotp->br_startblock = 0xffffa5a5a5a5a5a5LL;
1433#else
1434 gotp->br_startblock = 0xffffa5a5;
1435#endif
1436 prevp->br_startoff = NULLFILEOFF;
1437
1438 ep = xfs_iext_bno_to_ext(ifp, bno, &lastx);
1439 if (lastx > 0) {
1440 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx - 1), prevp);
1441 }
1442 if (lastx < (ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t))) {
1443 xfs_bmbt_get_all(ep, gotp);
1444 *eofp = 0;
1445 } else {
1446 if (lastx > 0) {
1447 *gotp = *prevp;
1448 }
1449 *eofp = 1;
1450 ep = NULL;
1451 }
1452 *lastxp = lastx;
1453 return ep;
1454}
1455
1456/*
1457 * Search the extents list for the inode, for the extent containing bno.
1458 * If bno lies in a hole, point to the next entry. If bno lies past eof,
1459 * *eofp will be set, and *prevp will contain the last entry (null if none).
1460 * Else, *lastxp will be set to the index of the found
1461 * entry; *gotp will contain the entry.
1462 */
1463STATIC xfs_bmbt_rec_host_t * /* pointer to found extent entry */
1464xfs_bmap_search_extents(
1465 xfs_inode_t *ip, /* incore inode pointer */
1466 xfs_fileoff_t bno, /* block number searched for */
1467 int fork, /* data or attr fork */
1468 int *eofp, /* out: end of file found */
1469 xfs_extnum_t *lastxp, /* out: last extent index */
1470 xfs_bmbt_irec_t *gotp, /* out: extent entry found */
1471 xfs_bmbt_irec_t *prevp) /* out: previous extent entry found */
1472{
1473 xfs_ifork_t *ifp; /* inode fork pointer */
1474 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1475
1476 XFS_STATS_INC(xs_look_exlist);
1477 ifp = XFS_IFORK_PTR(ip, fork);
1478
1479 ep = xfs_bmap_search_multi_extents(ifp, bno, eofp, lastxp, gotp, prevp);
1480
1481 if (unlikely(!(gotp->br_startblock) && (*lastxp != NULLEXTNUM) &&
1482 !(XFS_IS_REALTIME_INODE(ip) && fork == XFS_DATA_FORK))) {
1483 xfs_alert_tag(ip->i_mount, XFS_PTAG_FSBLOCK_ZERO,
1484 "Access to block zero in inode %llu "
1485 "start_block: %llx start_off: %llx "
Eric Sandeen08e96e12013-10-11 20:59:05 -05001486 "blkcnt: %llx extent-state: %x lastx: %x",
Dave Chinner9e5987a72013-02-25 12:31:26 +11001487 (unsigned long long)ip->i_ino,
1488 (unsigned long long)gotp->br_startblock,
1489 (unsigned long long)gotp->br_startoff,
1490 (unsigned long long)gotp->br_blockcount,
1491 gotp->br_state, *lastxp);
1492 *lastxp = NULLEXTNUM;
1493 *eofp = 1;
1494 return NULL;
1495 }
1496 return ep;
1497}
1498
1499/*
1500 * Returns the file-relative block number of the first unused block(s)
1501 * in the file with at least "len" logically contiguous blocks free.
1502 * This is the lowest-address hole if the file has holes, else the first block
1503 * past the end of file.
1504 * Return 0 if the file is currently local (in-inode).
1505 */
1506int /* error */
1507xfs_bmap_first_unused(
1508 xfs_trans_t *tp, /* transaction pointer */
1509 xfs_inode_t *ip, /* incore inode */
1510 xfs_extlen_t len, /* size of hole to find */
1511 xfs_fileoff_t *first_unused, /* unused block */
1512 int whichfork) /* data or attr fork */
1513{
1514 int error; /* error return value */
1515 int idx; /* extent record index */
1516 xfs_ifork_t *ifp; /* inode fork pointer */
1517 xfs_fileoff_t lastaddr; /* last block number seen */
1518 xfs_fileoff_t lowest; /* lowest useful block */
1519 xfs_fileoff_t max; /* starting useful block */
1520 xfs_fileoff_t off; /* offset for this block */
1521 xfs_extnum_t nextents; /* number of extent entries */
1522
1523 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE ||
1524 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS ||
1525 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL);
1526 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1527 *first_unused = 0;
1528 return 0;
1529 }
1530 ifp = XFS_IFORK_PTR(ip, whichfork);
1531 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1532 (error = xfs_iread_extents(tp, ip, whichfork)))
1533 return error;
1534 lowest = *first_unused;
1535 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1536 for (idx = 0, lastaddr = 0, max = lowest; idx < nextents; idx++) {
1537 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
1538 off = xfs_bmbt_get_startoff(ep);
1539 /*
1540 * See if the hole before this extent will work.
1541 */
1542 if (off >= lowest + len && off - max >= len) {
1543 *first_unused = max;
1544 return 0;
1545 }
1546 lastaddr = off + xfs_bmbt_get_blockcount(ep);
1547 max = XFS_FILEOFF_MAX(lastaddr, lowest);
1548 }
1549 *first_unused = max;
1550 return 0;
1551}
1552
1553/*
Zhi Yong Wu02bb4872013-08-12 03:14:54 +00001554 * Returns the file-relative block number of the last block - 1 before
Dave Chinner9e5987a72013-02-25 12:31:26 +11001555 * last_block (input value) in the file.
1556 * This is not based on i_size, it is based on the extent records.
1557 * Returns 0 for local files, as they do not have extent records.
1558 */
1559int /* error */
1560xfs_bmap_last_before(
1561 xfs_trans_t *tp, /* transaction pointer */
1562 xfs_inode_t *ip, /* incore inode */
1563 xfs_fileoff_t *last_block, /* last block */
1564 int whichfork) /* data or attr fork */
1565{
1566 xfs_fileoff_t bno; /* input file offset */
1567 int eof; /* hit end of file */
1568 xfs_bmbt_rec_host_t *ep; /* pointer to last extent */
1569 int error; /* error return value */
1570 xfs_bmbt_irec_t got; /* current extent value */
1571 xfs_ifork_t *ifp; /* inode fork pointer */
1572 xfs_extnum_t lastx; /* last extent used */
1573 xfs_bmbt_irec_t prev; /* previous extent value */
1574
1575 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1576 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
1577 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL)
1578 return XFS_ERROR(EIO);
1579 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
1580 *last_block = 0;
1581 return 0;
1582 }
1583 ifp = XFS_IFORK_PTR(ip, whichfork);
1584 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
1585 (error = xfs_iread_extents(tp, ip, whichfork)))
1586 return error;
1587 bno = *last_block - 1;
1588 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
1589 &prev);
1590 if (eof || xfs_bmbt_get_startoff(ep) > bno) {
1591 if (prev.br_startoff == NULLFILEOFF)
1592 *last_block = 0;
1593 else
1594 *last_block = prev.br_startoff + prev.br_blockcount;
1595 }
1596 /*
1597 * Otherwise *last_block is already the right answer.
1598 */
1599 return 0;
1600}
1601
Dave Chinner68988112013-08-12 20:49:42 +10001602int
Dave Chinner9e5987a72013-02-25 12:31:26 +11001603xfs_bmap_last_extent(
1604 struct xfs_trans *tp,
1605 struct xfs_inode *ip,
1606 int whichfork,
1607 struct xfs_bmbt_irec *rec,
1608 int *is_empty)
1609{
1610 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1611 int error;
1612 int nextents;
1613
1614 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1615 error = xfs_iread_extents(tp, ip, whichfork);
1616 if (error)
1617 return error;
1618 }
1619
1620 nextents = ifp->if_bytes / sizeof(xfs_bmbt_rec_t);
1621 if (nextents == 0) {
1622 *is_empty = 1;
1623 return 0;
1624 }
1625
1626 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, nextents - 1), rec);
1627 *is_empty = 0;
1628 return 0;
1629}
1630
1631/*
1632 * Check the last inode extent to determine whether this allocation will result
1633 * in blocks being allocated at the end of the file. When we allocate new data
1634 * blocks at the end of the file which do not start at the previous data block,
1635 * we will try to align the new blocks at stripe unit boundaries.
1636 *
Dave Chinner6e708bc2013-11-22 10:41:16 +11001637 * Returns 1 in bma->aeof if the file (fork) is empty as any new write will be
Dave Chinner9e5987a72013-02-25 12:31:26 +11001638 * at, or past the EOF.
1639 */
1640STATIC int
1641xfs_bmap_isaeof(
1642 struct xfs_bmalloca *bma,
1643 int whichfork)
1644{
1645 struct xfs_bmbt_irec rec;
1646 int is_empty;
1647 int error;
1648
1649 bma->aeof = 0;
1650 error = xfs_bmap_last_extent(NULL, bma->ip, whichfork, &rec,
1651 &is_empty);
Dave Chinner6e708bc2013-11-22 10:41:16 +11001652 if (error)
Dave Chinner9e5987a72013-02-25 12:31:26 +11001653 return error;
1654
Dave Chinner6e708bc2013-11-22 10:41:16 +11001655 if (is_empty) {
1656 bma->aeof = 1;
1657 return 0;
1658 }
1659
Dave Chinner9e5987a72013-02-25 12:31:26 +11001660 /*
1661 * Check if we are allocation or past the last extent, or at least into
1662 * the last delayed allocated extent.
1663 */
1664 bma->aeof = bma->offset >= rec.br_startoff + rec.br_blockcount ||
1665 (bma->offset >= rec.br_startoff &&
1666 isnullstartblock(rec.br_startblock));
1667 return 0;
1668}
1669
1670/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11001671 * Returns the file-relative block number of the first block past eof in
1672 * the file. This is not based on i_size, it is based on the extent records.
1673 * Returns 0 for local files, as they do not have extent records.
1674 */
1675int
1676xfs_bmap_last_offset(
Dave Chinner9e5987a72013-02-25 12:31:26 +11001677 struct xfs_inode *ip,
1678 xfs_fileoff_t *last_block,
1679 int whichfork)
1680{
1681 struct xfs_bmbt_irec rec;
1682 int is_empty;
1683 int error;
1684
1685 *last_block = 0;
1686
1687 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL)
1688 return 0;
1689
1690 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE &&
1691 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1692 return XFS_ERROR(EIO);
1693
1694 error = xfs_bmap_last_extent(NULL, ip, whichfork, &rec, &is_empty);
1695 if (error || is_empty)
1696 return error;
1697
1698 *last_block = rec.br_startoff + rec.br_blockcount;
1699 return 0;
1700}
1701
1702/*
1703 * Returns whether the selected fork of the inode has exactly one
1704 * block or not. For the data fork we check this matches di_size,
1705 * implying the file's range is 0..bsize-1.
1706 */
1707int /* 1=>1 block, 0=>otherwise */
1708xfs_bmap_one_block(
1709 xfs_inode_t *ip, /* incore inode */
1710 int whichfork) /* data or attr fork */
1711{
1712 xfs_bmbt_rec_host_t *ep; /* ptr to fork's extent */
1713 xfs_ifork_t *ifp; /* inode fork pointer */
1714 int rval; /* return value */
1715 xfs_bmbt_irec_t s; /* internal version of extent */
1716
1717#ifndef DEBUG
1718 if (whichfork == XFS_DATA_FORK)
1719 return XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize;
1720#endif /* !DEBUG */
1721 if (XFS_IFORK_NEXTENTS(ip, whichfork) != 1)
1722 return 0;
1723 if (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
1724 return 0;
1725 ifp = XFS_IFORK_PTR(ip, whichfork);
1726 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
1727 ep = xfs_iext_get_ext(ifp, 0);
1728 xfs_bmbt_get_all(ep, &s);
1729 rval = s.br_startoff == 0 && s.br_blockcount == 1;
1730 if (rval && whichfork == XFS_DATA_FORK)
1731 ASSERT(XFS_ISIZE(ip) == ip->i_mount->m_sb.sb_blocksize);
1732 return rval;
1733}
1734
1735/*
1736 * Extent tree manipulation functions used during allocation.
1737 */
1738
1739/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001740 * Convert a delayed allocation to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 */
1742STATIC int /* error */
1743xfs_bmap_add_extent_delay_real(
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001744 struct xfs_bmalloca *bma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001746 struct xfs_bmbt_irec *new = &bma->got;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 int diff; /* temp value */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001748 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001751 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 xfs_fileoff_t new_endoff; /* end offset of new entry */
1753 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
1754 /* left is 0, right is 1, prev is 2 */
1755 int rval=0; /* return value (logging flags) */
1756 int state = 0;/* state bits, accessed thru macros */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001757 xfs_filblks_t da_new; /* new count del alloc blocks used */
1758 xfs_filblks_t da_old; /* old count del alloc blocks used */
1759 xfs_filblks_t temp=0; /* value for da_new calculations */
1760 xfs_filblks_t temp2=0;/* value for da_new calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 int tmp_rval; /* partial logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001763 ifp = XFS_IFORK_PTR(bma->ip, XFS_DATA_FORK);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001764
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001765 ASSERT(bma->idx >= 0);
1766 ASSERT(bma->idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001767 ASSERT(!isnullstartblock(new->br_startblock));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001768 ASSERT(!bma->cur ||
1769 (bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001770
1771 XFS_STATS_INC(xs_add_exlist);
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773#define LEFT r[0]
1774#define RIGHT r[1]
1775#define PREV r[2]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 /*
1778 * Set up a bunch of variables to make the tests simpler.
1779 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001780 ep = xfs_iext_get_ext(ifp, bma->idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 xfs_bmbt_get_all(ep, &PREV);
1782 new_endoff = new->br_startoff + new->br_blockcount;
1783 ASSERT(PREV.br_startoff <= new->br_startoff);
1784 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001785
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00001786 da_old = startblockval(PREV.br_startblock);
1787 da_new = 0;
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 /*
1790 * Set flags determining what part of the previous delayed allocation
1791 * extent is being replaced by a real allocation.
1792 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001793 if (PREV.br_startoff == new->br_startoff)
1794 state |= BMAP_LEFT_FILLING;
1795 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
1796 state |= BMAP_RIGHT_FILLING;
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 /*
1799 * Check and set flags if this segment has a left neighbor.
1800 * Don't set contiguous if the combined extent would be too large.
1801 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001802 if (bma->idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001803 state |= BMAP_LEFT_VALID;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001804 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &LEFT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001805
1806 if (isnullstartblock(LEFT.br_startblock))
1807 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001809
1810 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
1811 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
1812 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
1813 LEFT.br_state == new->br_state &&
1814 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
1815 state |= BMAP_LEFT_CONTIG;
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 /*
1818 * Check and set flags if this segment has a right neighbor.
1819 * Don't set contiguous if the combined extent would be too large.
1820 * Also check for all-three-contiguous being too large.
1821 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001822 if (bma->idx < bma->ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001823 state |= BMAP_RIGHT_VALID;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001824 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx + 1), &RIGHT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001825
1826 if (isnullstartblock(RIGHT.br_startblock))
1827 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001829
1830 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
1831 new_endoff == RIGHT.br_startoff &&
1832 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
1833 new->br_state == RIGHT.br_state &&
1834 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
1835 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1836 BMAP_RIGHT_FILLING)) !=
1837 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
1838 BMAP_RIGHT_FILLING) ||
1839 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
1840 <= MAXEXTLEN))
1841 state |= BMAP_RIGHT_CONTIG;
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 error = 0;
1844 /*
1845 * Switch out based on the FILLING and CONTIG state bits.
1846 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001847 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1848 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
1849 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
1850 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 /*
1852 * Filling in all of a previously delayed allocation extent.
1853 * The left and right neighbors are both contiguous with new.
1854 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001855 bma->idx--;
1856 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1857 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 LEFT.br_blockcount + PREV.br_blockcount +
1859 RIGHT.br_blockcount);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001860 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001861
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001862 xfs_iext_remove(bma->ip, bma->idx + 1, 2, state);
1863 bma->ip->i_d.di_nextents--;
1864 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1866 else {
1867 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001868 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 RIGHT.br_startblock,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001870 RIGHT.br_blockcount, &i);
1871 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001873 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001874 error = xfs_btree_delete(bma->cur, &i);
1875 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001877 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001878 error = xfs_btree_decrement(bma->cur, 0, &i);
1879 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001881 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001882 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 LEFT.br_startblock,
1884 LEFT.br_blockcount +
1885 PREV.br_blockcount +
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001886 RIGHT.br_blockcount, LEFT.br_state);
1887 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 goto done;
1889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 break;
1891
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001892 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 /*
1894 * Filling in all of a previously delayed allocation extent.
1895 * The left neighbor is contiguous, the right is not.
1896 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001897 bma->idx--;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001898
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001899 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
1900 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
Christoph Hellwigec90c552011-05-23 08:52:53 +00001901 LEFT.br_blockcount + PREV.br_blockcount);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001902 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00001903
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001904 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1905 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 rval = XFS_ILOG_DEXT;
1907 else {
1908 rval = 0;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001909 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 LEFT.br_startblock, LEFT.br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001911 &i);
1912 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001914 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001915 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 LEFT.br_startblock,
1917 LEFT.br_blockcount +
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001918 PREV.br_blockcount, LEFT.br_state);
1919 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 goto done;
1921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 break;
1923
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001924 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 /*
1926 * Filling in all of a previously delayed allocation extent.
1927 * The right neighbor is contiguous, the left is not.
1928 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001929 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 xfs_bmbt_set_startblock(ep, new->br_startblock);
1931 xfs_bmbt_set_blockcount(ep,
1932 PREV.br_blockcount + RIGHT.br_blockcount);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001933 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001934
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001935 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
1936 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 rval = XFS_ILOG_DEXT;
1938 else {
1939 rval = 0;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001940 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 RIGHT.br_startblock,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001942 RIGHT.br_blockcount, &i);
1943 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001945 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001946 error = xfs_bmbt_update(bma->cur, PREV.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 new->br_startblock,
1948 PREV.br_blockcount +
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001949 RIGHT.br_blockcount, PREV.br_state);
1950 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 goto done;
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 break;
1954
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001955 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 /*
1957 * Filling in all of a previously delayed allocation extent.
1958 * Neither the left nor right neighbors are contiguous with
1959 * the new one.
1960 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001961 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 xfs_bmbt_set_startblock(ep, new->br_startblock);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001963 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001964
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001965 bma->ip->i_d.di_nextents++;
1966 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
1968 else {
1969 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001970 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 new->br_startblock, new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001972 &i);
1973 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001975 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001976 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
1977 error = xfs_btree_insert(bma->cur, &i);
1978 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10001980 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 break;
1983
Christoph Hellwig7574aa92009-11-25 00:00:19 +00001984 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 /*
1986 * Filling in the first part of a previous delayed allocation.
1987 * The left neighbor is contiguous.
1988 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001989 trace_xfs_bmap_pre_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
1990 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 LEFT.br_blockcount + new->br_blockcount);
1992 xfs_bmbt_set_startoff(ep,
1993 PREV.br_startoff + new->br_blockcount);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001994 trace_xfs_bmap_post_update(bma->ip, bma->idx - 1, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001997 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00001999 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 rval = XFS_ILOG_DEXT;
2001 else {
2002 rval = 0;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002003 error = xfs_bmbt_lookup_eq(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 LEFT.br_startblock, LEFT.br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002005 &i);
2006 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002008 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002009 error = xfs_bmbt_update(bma->cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 LEFT.br_startblock,
2011 LEFT.br_blockcount +
2012 new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002013 LEFT.br_state);
2014 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 goto done;
2016 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002017 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002018 startblockval(PREV.br_startblock));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002019 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002020 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002021
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002022 bma->idx--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 break;
2024
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002025 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 /*
2027 * Filling in the first part of a previous delayed allocation.
2028 * The left neighbor is not contiguous.
2029 */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002030 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 xfs_bmbt_set_startoff(ep, new_endoff);
2032 temp = PREV.br_blockcount - new->br_blockcount;
2033 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002034 xfs_iext_insert(bma->ip, bma->idx, 1, new, state);
2035 bma->ip->i_d.di_nextents++;
2036 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2038 else {
2039 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002040 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 new->br_startblock, new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002042 &i);
2043 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002045 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002046 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2047 error = xfs_btree_insert(bma->cur, &i);
2048 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002050 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002052
2053 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002054 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2055 bma->firstblock, bma->flist,
2056 &bma->cur, 1, &tmp_rval, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 rval |= tmp_rval;
2058 if (error)
2059 goto done;
2060 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002061 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002062 startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002063 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2064 ep = xfs_iext_get_ext(ifp, bma->idx + 1);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002065 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002066 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 break;
2068
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002069 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /*
2071 * Filling in the last part of a previous delayed allocation.
2072 * The right neighbor is contiguous with the new allocation.
2073 */
2074 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002075 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002077 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, bma->idx + 1),
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002078 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 new->br_blockcount + RIGHT.br_blockcount,
2080 RIGHT.br_state);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002081 trace_xfs_bmap_post_update(bma->ip, bma->idx + 1, state, _THIS_IP_);
2082 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 rval = XFS_ILOG_DEXT;
2084 else {
2085 rval = 0;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002086 error = xfs_bmbt_lookup_eq(bma->cur, RIGHT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 RIGHT.br_startblock,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002088 RIGHT.br_blockcount, &i);
2089 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002091 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002092 error = xfs_bmbt_update(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 new->br_startblock,
2094 new->br_blockcount +
2095 RIGHT.br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002096 RIGHT.br_state);
2097 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 goto done;
2099 }
Christoph Hellwigec90c552011-05-23 08:52:53 +00002100
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002101 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002102 startblockval(PREV.br_startblock));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002103 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002104 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002105 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002106
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002107 bma->idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 break;
2109
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002110 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 /*
2112 * Filling in the last part of a previous delayed allocation.
2113 * The right neighbor is not contiguous.
2114 */
2115 temp = PREV.br_blockcount - new->br_blockcount;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002116 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 xfs_bmbt_set_blockcount(ep, temp);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002118 xfs_iext_insert(bma->ip, bma->idx + 1, 1, new, state);
2119 bma->ip->i_d.di_nextents++;
2120 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2122 else {
2123 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002124 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 new->br_startblock, new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002126 &i);
2127 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002129 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002130 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2131 error = xfs_btree_insert(bma->cur, &i);
2132 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002134 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002136
2137 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002138 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2139 bma->firstblock, bma->flist, &bma->cur, 1,
2140 &tmp_rval, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 rval |= tmp_rval;
2142 if (error)
2143 goto done;
2144 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002145 da_new = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(bma->ip, temp),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002146 startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002147 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
2148 ep = xfs_iext_get_ext(ifp, bma->idx);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002149 xfs_bmbt_set_startblock(ep, nullstartblock(da_new));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002150 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002151
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002152 bma->idx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 break;
2154
2155 case 0:
2156 /*
2157 * Filling in the middle part of a previous delayed allocation.
2158 * Contiguity is impossible here.
2159 * This case is avoided almost all the time.
bpm@sgi.com24446fc2011-01-19 17:41:58 +00002160 *
2161 * We start with a delayed allocation:
2162 *
2163 * +ddddddddddddddddddddddddddddddddddddddddddddddddddddddd+
2164 * PREV @ idx
2165 *
2166 * and we are allocating:
2167 * +rrrrrrrrrrrrrrrrr+
2168 * new
2169 *
2170 * and we set it up for insertion as:
2171 * +ddddddddddddddddddd+rrrrrrrrrrrrrrrrr+ddddddddddddddddd+
2172 * new
2173 * PREV @ idx LEFT RIGHT
2174 * inserted at idx + 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 */
2176 temp = new->br_startoff - PREV.br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 temp2 = PREV.br_startoff + PREV.br_blockcount - new_endoff;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002178 trace_xfs_bmap_pre_update(bma->ip, bma->idx, 0, _THIS_IP_);
bpm@sgi.com24446fc2011-01-19 17:41:58 +00002179 xfs_bmbt_set_blockcount(ep, temp); /* truncate PREV */
2180 LEFT = *new;
2181 RIGHT.br_state = PREV.br_state;
2182 RIGHT.br_startblock = nullstartblock(
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002183 (int)xfs_bmap_worst_indlen(bma->ip, temp2));
bpm@sgi.com24446fc2011-01-19 17:41:58 +00002184 RIGHT.br_startoff = new_endoff;
2185 RIGHT.br_blockcount = temp2;
2186 /* insert LEFT (r[0]) and RIGHT (r[1]) at the same time */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002187 xfs_iext_insert(bma->ip, bma->idx + 1, 2, &LEFT, state);
2188 bma->ip->i_d.di_nextents++;
2189 if (bma->cur == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2191 else {
2192 rval = XFS_ILOG_CORE;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002193 error = xfs_bmbt_lookup_eq(bma->cur, new->br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 new->br_startblock, new->br_blockcount,
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002195 &i);
2196 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002198 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002199 bma->cur->bc_rec.b.br_state = XFS_EXT_NORM;
2200 error = xfs_btree_insert(bma->cur, &i);
2201 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002203 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002205
2206 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002207 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2208 bma->firstblock, bma->flist, &bma->cur,
2209 1, &tmp_rval, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 rval |= tmp_rval;
2211 if (error)
2212 goto done;
2213 }
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002214 temp = xfs_bmap_worst_indlen(bma->ip, temp);
2215 temp2 = xfs_bmap_worst_indlen(bma->ip, temp2);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002216 diff = (int)(temp + temp2 - startblockval(PREV.br_startblock) -
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002217 (bma->cur ? bma->cur->bc_private.b.allocated : 0));
Christoph Hellwigb9b984d2011-09-18 20:40:42 +00002218 if (diff > 0) {
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002219 error = xfs_icsb_modify_counters(bma->ip->i_mount,
Christoph Hellwigb9b984d2011-09-18 20:40:42 +00002220 XFS_SBS_FDBLOCKS,
2221 -((int64_t)diff), 0);
2222 ASSERT(!error);
2223 if (error)
2224 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
Christoph Hellwigb9b984d2011-09-18 20:40:42 +00002226
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002227 ep = xfs_iext_get_ext(ifp, bma->idx);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002228 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002229 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
2230 trace_xfs_bmap_pre_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
2231 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, bma->idx + 2),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002232 nullstartblock((int)temp2));
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002233 trace_xfs_bmap_post_update(bma->ip, bma->idx + 2, state, _THIS_IP_);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002234
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002235 bma->idx++;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002236 da_new = temp + temp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 break;
2238
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002239 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2240 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2241 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2242 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2243 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2244 case BMAP_LEFT_CONTIG:
2245 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 /*
2247 * These cases are all impossible.
2248 */
2249 ASSERT(0);
2250 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002251
2252 /* convert to a btree if necessary */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002253 if (xfs_bmap_needs_btree(bma->ip, XFS_DATA_FORK)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002254 int tmp_logflags; /* partial log flag return val */
2255
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002256 ASSERT(bma->cur == NULL);
2257 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
2258 bma->firstblock, bma->flist, &bma->cur,
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002259 da_old > 0, &tmp_logflags, XFS_DATA_FORK);
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002260 bma->logflags |= tmp_logflags;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002261 if (error)
2262 goto done;
2263 }
2264
2265 /* adjust for changes in reserved delayed indirect blocks */
2266 if (da_old || da_new) {
2267 temp = da_new;
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002268 if (bma->cur)
2269 temp += bma->cur->bc_private.b.allocated;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002270 ASSERT(temp <= da_old);
2271 if (temp < da_old)
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002272 xfs_icsb_modify_counters(bma->ip->i_mount,
2273 XFS_SBS_FDBLOCKS,
2274 (int64_t)(da_old - temp), 0);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002275 }
2276
2277 /* clear out the allocated field, done with it now in any case. */
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002278 if (bma->cur)
2279 bma->cur->bc_private.b.allocated = 0;
2280
2281 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282done:
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00002283 bma->logflags |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 return error;
2285#undef LEFT
2286#undef RIGHT
2287#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288}
2289
2290/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002291 * Convert an unwritten allocation to a real allocation or vice versa.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 */
2293STATIC int /* error */
2294xfs_bmap_add_extent_unwritten_real(
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002295 struct xfs_trans *tp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 xfs_inode_t *ip, /* incore inode pointer */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002297 xfs_extnum_t *idx, /* extent number to update/insert */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 xfs_btree_cur_t **curp, /* if *curp is null, not a btree */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002299 xfs_bmbt_irec_t *new, /* new data to add to file extents */
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002300 xfs_fsblock_t *first, /* pointer to firstblock variable */
2301 xfs_bmap_free_t *flist, /* list of extents to be freed */
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002302 int *logflagsp) /* inode logging flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 xfs_btree_cur_t *cur; /* btree cursor */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002305 xfs_bmbt_rec_host_t *ep; /* extent entry for idx */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 int i; /* temp state */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002308 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 xfs_fileoff_t new_endoff; /* end offset of new entry */
2310 xfs_exntst_t newext; /* new extent state */
2311 xfs_exntst_t oldext; /* old extent state */
2312 xfs_bmbt_irec_t r[3]; /* neighbor extent entries */
2313 /* left is 0, right is 1, prev is 2 */
2314 int rval=0; /* return value (logging flags) */
2315 int state = 0;/* state bits, accessed thru macros */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002317 *logflagsp = 0;
2318
2319 cur = *curp;
2320 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
2321
2322 ASSERT(*idx >= 0);
2323 ASSERT(*idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
2324 ASSERT(!isnullstartblock(new->br_startblock));
2325
2326 XFS_STATS_INC(xs_add_exlist);
2327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328#define LEFT r[0]
2329#define RIGHT r[1]
2330#define PREV r[2]
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 /*
2333 * Set up a bunch of variables to make the tests simpler.
2334 */
2335 error = 0;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002336 ep = xfs_iext_get_ext(ifp, *idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 xfs_bmbt_get_all(ep, &PREV);
2338 newext = new->br_state;
2339 oldext = (newext == XFS_EXT_UNWRITTEN) ?
2340 XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
2341 ASSERT(PREV.br_state == oldext);
2342 new_endoff = new->br_startoff + new->br_blockcount;
2343 ASSERT(PREV.br_startoff <= new->br_startoff);
2344 ASSERT(PREV.br_startoff + PREV.br_blockcount >= new_endoff);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 /*
2347 * Set flags determining what part of the previous oldext allocation
2348 * extent is being replaced by a newext allocation.
2349 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002350 if (PREV.br_startoff == new->br_startoff)
2351 state |= BMAP_LEFT_FILLING;
2352 if (PREV.br_startoff + PREV.br_blockcount == new_endoff)
2353 state |= BMAP_RIGHT_FILLING;
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 /*
2356 * Check and set flags if this segment has a left neighbor.
2357 * Don't set contiguous if the combined extent would be too large.
2358 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002359 if (*idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002360 state |= BMAP_LEFT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002361 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &LEFT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002362
2363 if (isnullstartblock(LEFT.br_startblock))
2364 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002366
2367 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
2368 LEFT.br_startoff + LEFT.br_blockcount == new->br_startoff &&
2369 LEFT.br_startblock + LEFT.br_blockcount == new->br_startblock &&
2370 LEFT.br_state == newext &&
2371 LEFT.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2372 state |= BMAP_LEFT_CONTIG;
2373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 /*
2375 * Check and set flags if this segment has a right neighbor.
2376 * Don't set contiguous if the combined extent would be too large.
2377 * Also check for all-three-contiguous being too large.
2378 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002379 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t) - 1) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002380 state |= BMAP_RIGHT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002381 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx + 1), &RIGHT);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002382 if (isnullstartblock(RIGHT.br_startblock))
2383 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002385
2386 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
2387 new_endoff == RIGHT.br_startoff &&
2388 new->br_startblock + new->br_blockcount == RIGHT.br_startblock &&
2389 newext == RIGHT.br_state &&
2390 new->br_blockcount + RIGHT.br_blockcount <= MAXEXTLEN &&
2391 ((state & (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2392 BMAP_RIGHT_FILLING)) !=
2393 (BMAP_LEFT_CONTIG | BMAP_LEFT_FILLING |
2394 BMAP_RIGHT_FILLING) ||
2395 LEFT.br_blockcount + new->br_blockcount + RIGHT.br_blockcount
2396 <= MAXEXTLEN))
2397 state |= BMAP_RIGHT_CONTIG;
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 /*
2400 * Switch out based on the FILLING and CONTIG state bits.
2401 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002402 switch (state & (BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2403 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG)) {
2404 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG |
2405 BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 /*
2407 * Setting all of a previous oldext extent to newext.
2408 * The left and right neighbors are both contiguous with new.
2409 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002410 --*idx;
2411
2412 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2413 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 LEFT.br_blockcount + PREV.br_blockcount +
2415 RIGHT.br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002416 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002417
Christoph Hellwigec90c552011-05-23 08:52:53 +00002418 xfs_iext_remove(ip, *idx + 1, 2, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 ip->i_d.di_nextents -= 2;
2420 if (cur == NULL)
2421 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2422 else {
2423 rval = XFS_ILOG_CORE;
2424 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2425 RIGHT.br_startblock,
2426 RIGHT.br_blockcount, &i)))
2427 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002428 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002429 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002431 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002432 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002434 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002435 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002437 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002438 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002440 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2442 LEFT.br_startblock,
2443 LEFT.br_blockcount + PREV.br_blockcount +
2444 RIGHT.br_blockcount, LEFT.br_state)))
2445 goto done;
2446 }
2447 break;
2448
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002449 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 /*
2451 * Setting all of a previous oldext extent to newext.
2452 * The left neighbor is contiguous, the right is not.
2453 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002454 --*idx;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002455
Christoph Hellwigec90c552011-05-23 08:52:53 +00002456 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2457 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx),
2458 LEFT.br_blockcount + PREV.br_blockcount);
2459 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2460
2461 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 ip->i_d.di_nextents--;
2463 if (cur == NULL)
2464 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2465 else {
2466 rval = XFS_ILOG_CORE;
2467 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2468 PREV.br_startblock, PREV.br_blockcount,
2469 &i)))
2470 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002471 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002472 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002474 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002475 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002477 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 if ((error = xfs_bmbt_update(cur, LEFT.br_startoff,
2479 LEFT.br_startblock,
2480 LEFT.br_blockcount + PREV.br_blockcount,
2481 LEFT.br_state)))
2482 goto done;
2483 }
2484 break;
2485
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002486 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 /*
2488 * Setting all of a previous oldext extent to newext.
2489 * The right neighbor is contiguous, the left is not.
2490 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002491 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 xfs_bmbt_set_blockcount(ep,
2493 PREV.br_blockcount + RIGHT.br_blockcount);
2494 xfs_bmbt_set_state(ep, newext);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002495 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2496 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 ip->i_d.di_nextents--;
2498 if (cur == NULL)
2499 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2500 else {
2501 rval = XFS_ILOG_CORE;
2502 if ((error = xfs_bmbt_lookup_eq(cur, RIGHT.br_startoff,
2503 RIGHT.br_startblock,
2504 RIGHT.br_blockcount, &i)))
2505 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002506 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11002507 if ((error = xfs_btree_delete(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002509 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002510 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002512 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2514 new->br_startblock,
2515 new->br_blockcount + RIGHT.br_blockcount,
2516 newext)))
2517 goto done;
2518 }
2519 break;
2520
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002521 case BMAP_LEFT_FILLING | BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 /*
2523 * Setting all of a previous oldext extent to newext.
2524 * Neither the left nor right neighbors are contiguous with
2525 * the new one.
2526 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002527 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 xfs_bmbt_set_state(ep, newext);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002529 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002530
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 if (cur == NULL)
2532 rval = XFS_ILOG_DEXT;
2533 else {
2534 rval = 0;
2535 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2536 new->br_startblock, new->br_blockcount,
2537 &i)))
2538 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002539 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2541 new->br_startblock, new->br_blockcount,
2542 newext)))
2543 goto done;
2544 }
2545 break;
2546
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002547 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 /*
2549 * Setting the first part of a previous oldext extent to newext.
2550 * The left neighbor is contiguous.
2551 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002552 trace_xfs_bmap_pre_update(ip, *idx - 1, state, _THIS_IP_);
2553 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx - 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 LEFT.br_blockcount + new->br_blockcount);
2555 xfs_bmbt_set_startoff(ep,
2556 PREV.br_startoff + new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002557 trace_xfs_bmap_post_update(ip, *idx - 1, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002558
Christoph Hellwigec90c552011-05-23 08:52:53 +00002559 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 xfs_bmbt_set_startblock(ep,
2561 new->br_startblock + new->br_blockcount);
2562 xfs_bmbt_set_blockcount(ep,
2563 PREV.br_blockcount - new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002564 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002565
Christoph Hellwigec90c552011-05-23 08:52:53 +00002566 --*idx;
2567
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 if (cur == NULL)
2569 rval = XFS_ILOG_DEXT;
2570 else {
2571 rval = 0;
2572 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2573 PREV.br_startblock, PREV.br_blockcount,
2574 &i)))
2575 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002576 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if ((error = xfs_bmbt_update(cur,
2578 PREV.br_startoff + new->br_blockcount,
2579 PREV.br_startblock + new->br_blockcount,
2580 PREV.br_blockcount - new->br_blockcount,
2581 oldext)))
2582 goto done;
Christoph Hellwig8df4da42008-10-30 16:55:58 +11002583 if ((error = xfs_btree_decrement(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 goto done;
Christoph Hellwigb0eab142011-09-18 20:41:06 +00002585 error = xfs_bmbt_update(cur, LEFT.br_startoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 LEFT.br_startblock,
2587 LEFT.br_blockcount + new->br_blockcount,
Christoph Hellwigb0eab142011-09-18 20:41:06 +00002588 LEFT.br_state);
2589 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 goto done;
2591 }
2592 break;
2593
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002594 case BMAP_LEFT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 /*
2596 * Setting the first part of a previous oldext extent to newext.
2597 * The left neighbor is not contiguous.
2598 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002599 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 ASSERT(ep && xfs_bmbt_get_state(ep) == oldext);
2601 xfs_bmbt_set_startoff(ep, new_endoff);
2602 xfs_bmbt_set_blockcount(ep,
2603 PREV.br_blockcount - new->br_blockcount);
2604 xfs_bmbt_set_startblock(ep,
2605 new->br_startblock + new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002606 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002607
Christoph Hellwigec90c552011-05-23 08:52:53 +00002608 xfs_iext_insert(ip, *idx, 1, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 ip->i_d.di_nextents++;
2610 if (cur == NULL)
2611 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2612 else {
2613 rval = XFS_ILOG_CORE;
2614 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2615 PREV.br_startblock, PREV.br_blockcount,
2616 &i)))
2617 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002618 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 if ((error = xfs_bmbt_update(cur,
2620 PREV.br_startoff + new->br_blockcount,
2621 PREV.br_startblock + new->br_blockcount,
2622 PREV.br_blockcount - new->br_blockcount,
2623 oldext)))
2624 goto done;
2625 cur->bc_rec.b = *new;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002626 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002628 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 }
2630 break;
2631
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002632 case BMAP_RIGHT_FILLING | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 /*
2634 * Setting the last part of a previous oldext extent to newext.
2635 * The right neighbor is contiguous with the new allocation.
2636 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002637 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 xfs_bmbt_set_blockcount(ep,
2639 PREV.br_blockcount - new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002640 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
2641
2642 ++*idx;
2643
2644 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2645 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002646 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 new->br_blockcount + RIGHT.br_blockcount, newext);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002648 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002649
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 if (cur == NULL)
2651 rval = XFS_ILOG_DEXT;
2652 else {
2653 rval = 0;
2654 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2655 PREV.br_startblock,
2656 PREV.br_blockcount, &i)))
2657 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002658 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2660 PREV.br_startblock,
2661 PREV.br_blockcount - new->br_blockcount,
2662 oldext)))
2663 goto done;
Christoph Hellwig637aa502008-10-30 16:55:45 +11002664 if ((error = xfs_btree_increment(cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 goto done;
2666 if ((error = xfs_bmbt_update(cur, new->br_startoff,
2667 new->br_startblock,
2668 new->br_blockcount + RIGHT.br_blockcount,
2669 newext)))
2670 goto done;
2671 }
2672 break;
2673
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002674 case BMAP_RIGHT_FILLING:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 /*
2676 * Setting the last part of a previous oldext extent to newext.
2677 * The right neighbor is not contiguous.
2678 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002679 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 xfs_bmbt_set_blockcount(ep,
2681 PREV.br_blockcount - new->br_blockcount);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002682 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002683
Christoph Hellwigec90c552011-05-23 08:52:53 +00002684 ++*idx;
2685 xfs_iext_insert(ip, *idx, 1, new, state);
2686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 ip->i_d.di_nextents++;
2688 if (cur == NULL)
2689 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2690 else {
2691 rval = XFS_ILOG_CORE;
2692 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2693 PREV.br_startblock, PREV.br_blockcount,
2694 &i)))
2695 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002696 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 if ((error = xfs_bmbt_update(cur, PREV.br_startoff,
2698 PREV.br_startblock,
2699 PREV.br_blockcount - new->br_blockcount,
2700 oldext)))
2701 goto done;
2702 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2703 new->br_startblock, new->br_blockcount,
2704 &i)))
2705 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002706 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 cur->bc_rec.b.br_state = XFS_EXT_NORM;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002708 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002710 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 }
2712 break;
2713
2714 case 0:
2715 /*
2716 * Setting the middle part of a previous oldext extent to
2717 * newext. Contiguity is impossible here.
2718 * One extent becomes three extents.
2719 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002720 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 xfs_bmbt_set_blockcount(ep,
2722 new->br_startoff - PREV.br_startoff);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002723 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 r[0] = *new;
2726 r[1].br_startoff = new_endoff;
2727 r[1].br_blockcount =
2728 PREV.br_startoff + PREV.br_blockcount - new_endoff;
2729 r[1].br_startblock = new->br_startblock + new->br_blockcount;
2730 r[1].br_state = oldext;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002731
2732 ++*idx;
2733 xfs_iext_insert(ip, *idx, 2, &r[0], state);
2734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 ip->i_d.di_nextents += 2;
2736 if (cur == NULL)
2737 rval = XFS_ILOG_CORE | XFS_ILOG_DEXT;
2738 else {
2739 rval = XFS_ILOG_CORE;
2740 if ((error = xfs_bmbt_lookup_eq(cur, PREV.br_startoff,
2741 PREV.br_startblock, PREV.br_blockcount,
2742 &i)))
2743 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002744 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 /* new right extent - oldext */
2746 if ((error = xfs_bmbt_update(cur, r[1].br_startoff,
2747 r[1].br_startblock, r[1].br_blockcount,
2748 r[1].br_state)))
2749 goto done;
2750 /* new left extent - oldext */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 cur->bc_rec.b = PREV;
Tim Shimmin6a617dd2008-07-18 17:13:04 +10002752 cur->bc_rec.b.br_blockcount =
2753 new->br_startoff - PREV.br_startoff;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002754 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002756 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10002757 /*
2758 * Reset the cursor to the position of the new extent
2759 * we are about to insert as we can't trust it after
2760 * the previous insert.
2761 */
2762 if ((error = xfs_bmbt_lookup_eq(cur, new->br_startoff,
2763 new->br_startblock, new->br_blockcount,
2764 &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 goto done;
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10002766 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 /* new middle extent - newext */
Lachlan McIlroyddea2d52008-06-23 13:25:53 +10002768 cur->bc_rec.b.br_state = new->br_state;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11002769 if ((error = xfs_btree_insert(cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10002771 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 }
2773 break;
2774
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002775 case BMAP_LEFT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2776 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2777 case BMAP_LEFT_FILLING | BMAP_RIGHT_CONTIG:
2778 case BMAP_RIGHT_FILLING | BMAP_LEFT_CONTIG:
2779 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
2780 case BMAP_LEFT_CONTIG:
2781 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 /*
2783 * These cases are all impossible.
2784 */
2785 ASSERT(0);
2786 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002787
2788 /* convert to a btree if necessary */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002789 if (xfs_bmap_needs_btree(ip, XFS_DATA_FORK)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002790 int tmp_logflags; /* partial log flag return val */
2791
2792 ASSERT(cur == NULL);
2793 error = xfs_bmap_extents_to_btree(tp, ip, first, flist, &cur,
2794 0, &tmp_logflags, XFS_DATA_FORK);
2795 *logflagsp |= tmp_logflags;
2796 if (error)
2797 goto done;
2798 }
2799
2800 /* clear out the allocated field, done with it now in any case. */
2801 if (cur) {
2802 cur->bc_private.b.allocated = 0;
2803 *curp = cur;
2804 }
2805
2806 xfs_bmap_check_leaf_extents(*curp, ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807done:
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002808 *logflagsp |= rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 return error;
2810#undef LEFT
2811#undef RIGHT
2812#undef PREV
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813}
2814
2815/*
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002816 * Convert a hole to a delayed allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 */
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002818STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819xfs_bmap_add_extent_hole_delay(
2820 xfs_inode_t *ip, /* incore inode pointer */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002821 xfs_extnum_t *idx, /* extent number to update/insert */
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00002822 xfs_bmbt_irec_t *new) /* new data to add to file extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823{
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002824 xfs_ifork_t *ifp; /* inode fork pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2826 xfs_filblks_t newlen=0; /* new indirect size */
2827 xfs_filblks_t oldlen=0; /* old indirect size */
2828 xfs_bmbt_irec_t right; /* right neighbor extent entry */
2829 int state; /* state bits, accessed thru macros */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002830 xfs_filblks_t temp=0; /* temp for indirect calculations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002832 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 state = 0;
Eric Sandeen9d87c312009-01-14 23:22:07 -06002834 ASSERT(isnullstartblock(new->br_startblock));
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 /*
2837 * Check and set flags if this segment has a left neighbor
2838 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002839 if (*idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002840 state |= BMAP_LEFT_VALID;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002841 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx - 1), &left);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002842
2843 if (isnullstartblock(left.br_startblock))
2844 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 /*
2848 * Check and set flags if the current (right) segment exists.
2849 * If it doesn't exist, we're converting the hole at end-of-file.
2850 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002851 if (*idx < ip->i_df.if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002852 state |= BMAP_RIGHT_VALID;
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00002853 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *idx), &right);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002854
2855 if (isnullstartblock(right.br_startblock))
2856 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 /*
2860 * Set contiguity flags on the left and right neighbors.
2861 * Don't let extents get too large, even if the pieces are contiguous.
2862 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002863 if ((state & BMAP_LEFT_VALID) && (state & BMAP_LEFT_DELAY) &&
2864 left.br_startoff + left.br_blockcount == new->br_startoff &&
2865 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
2866 state |= BMAP_LEFT_CONTIG;
2867
2868 if ((state & BMAP_RIGHT_VALID) && (state & BMAP_RIGHT_DELAY) &&
2869 new->br_startoff + new->br_blockcount == right.br_startoff &&
2870 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
2871 (!(state & BMAP_LEFT_CONTIG) ||
2872 (left.br_blockcount + new->br_blockcount +
2873 right.br_blockcount <= MAXEXTLEN)))
2874 state |= BMAP_RIGHT_CONTIG;
2875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 /*
2877 * Switch out based on the contiguity flags.
2878 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002879 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
2880 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 /*
2882 * New allocation is contiguous with delayed allocations
2883 * on the left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002884 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002886 --*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 temp = left.br_blockcount + new->br_blockcount +
2888 right.br_blockcount;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002889
Christoph Hellwigec90c552011-05-23 08:52:53 +00002890 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2891 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002892 oldlen = startblockval(left.br_startblock) +
2893 startblockval(new->br_startblock) +
2894 startblockval(right.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 newlen = xfs_bmap_worst_indlen(ip, temp);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002896 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002897 nullstartblock((int)newlen));
Christoph Hellwigec90c552011-05-23 08:52:53 +00002898 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002899
Christoph Hellwigec90c552011-05-23 08:52:53 +00002900 xfs_iext_remove(ip, *idx + 1, 1, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 break;
2902
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002903 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 /*
2905 * New allocation is contiguous with a delayed allocation
2906 * on the left.
2907 * Merge the new allocation with the left neighbor.
2908 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002909 --*idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 temp = left.br_blockcount + new->br_blockcount;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002911
2912 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
2913 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, *idx), temp);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002914 oldlen = startblockval(left.br_startblock) +
2915 startblockval(new->br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 newlen = xfs_bmap_worst_indlen(ip, temp);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002917 xfs_bmbt_set_startblock(xfs_iext_get_ext(ifp, *idx),
Eric Sandeen9d87c312009-01-14 23:22:07 -06002918 nullstartblock((int)newlen));
Christoph Hellwigec90c552011-05-23 08:52:53 +00002919 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 break;
2921
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002922 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 /*
2924 * New allocation is contiguous with a delayed allocation
2925 * on the right.
2926 * Merge the new allocation with the right neighbor.
2927 */
Christoph Hellwigec90c552011-05-23 08:52:53 +00002928 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 temp = new->br_blockcount + right.br_blockcount;
Eric Sandeen9d87c312009-01-14 23:22:07 -06002930 oldlen = startblockval(new->br_startblock) +
2931 startblockval(right.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 newlen = xfs_bmap_worst_indlen(ip, temp);
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00002933 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, *idx),
2934 new->br_startoff,
Eric Sandeen9d87c312009-01-14 23:22:07 -06002935 nullstartblock((int)newlen), temp, right.br_state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00002936 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 break;
2938
2939 case 0:
2940 /*
2941 * New allocation is not contiguous with another
2942 * delayed allocation.
2943 * Insert a new entry.
2944 */
2945 oldlen = newlen = 0;
Christoph Hellwigec90c552011-05-23 08:52:53 +00002946 xfs_iext_insert(ip, *idx, 1, new, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 break;
2948 }
2949 if (oldlen != newlen) {
2950 ASSERT(oldlen > newlen);
Christoph Hellwig96540c72010-09-30 02:25:55 +00002951 xfs_icsb_modify_counters(ip->i_mount, XFS_SBS_FDBLOCKS,
Christoph Hellwig54893272011-05-11 15:04:03 +00002952 (int64_t)(oldlen - newlen), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 /*
2954 * Nothing to do for disk quota accounting here.
2955 */
2956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957}
2958
2959/*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002960 * Convert a hole to a real allocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 */
2962STATIC int /* error */
2963xfs_bmap_add_extent_hole_real(
Christoph Hellwigc6534242011-09-18 20:41:05 +00002964 struct xfs_bmalloca *bma,
2965 int whichfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
Christoph Hellwigc6534242011-09-18 20:41:05 +00002967 struct xfs_bmbt_irec *new = &bma->got;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 int i; /* temp state */
2970 xfs_ifork_t *ifp; /* inode fork pointer */
2971 xfs_bmbt_irec_t left; /* left neighbor extent entry */
2972 xfs_bmbt_irec_t right; /* right neighbor extent entry */
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002973 int rval=0; /* return value (logging flags) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 int state; /* state bits, accessed thru macros */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Christoph Hellwigc6534242011-09-18 20:41:05 +00002976 ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002977
Christoph Hellwigc6534242011-09-18 20:41:05 +00002978 ASSERT(bma->idx >= 0);
2979 ASSERT(bma->idx <= ifp->if_bytes / sizeof(struct xfs_bmbt_rec));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002980 ASSERT(!isnullstartblock(new->br_startblock));
Christoph Hellwigc6534242011-09-18 20:41:05 +00002981 ASSERT(!bma->cur ||
2982 !(bma->cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL));
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00002983
2984 XFS_STATS_INC(xs_add_exlist);
2985
2986 state = 0;
Christoph Hellwig6ef35542009-11-25 00:00:21 +00002987 if (whichfork == XFS_ATTR_FORK)
2988 state |= BMAP_ATTRFORK;
2989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 /*
2991 * Check and set flags if this segment has a left neighbor.
2992 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00002993 if (bma->idx > 0) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002994 state |= BMAP_LEFT_VALID;
Christoph Hellwigc6534242011-09-18 20:41:05 +00002995 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1), &left);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002996 if (isnullstartblock(left.br_startblock))
2997 state |= BMAP_LEFT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00002999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 /*
3001 * Check and set flags if this segment has a current value.
3002 * Not true if we're inserting into the "hole" at eof.
3003 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003004 if (bma->idx < ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t)) {
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003005 state |= BMAP_RIGHT_VALID;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003006 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &right);
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003007 if (isnullstartblock(right.br_startblock))
3008 state |= BMAP_RIGHT_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 }
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003010
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 /*
3012 * We're inserting a real allocation between "left" and "right".
3013 * Set the contiguity flags. Don't let extents get too large.
3014 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003015 if ((state & BMAP_LEFT_VALID) && !(state & BMAP_LEFT_DELAY) &&
3016 left.br_startoff + left.br_blockcount == new->br_startoff &&
3017 left.br_startblock + left.br_blockcount == new->br_startblock &&
3018 left.br_state == new->br_state &&
3019 left.br_blockcount + new->br_blockcount <= MAXEXTLEN)
3020 state |= BMAP_LEFT_CONTIG;
3021
3022 if ((state & BMAP_RIGHT_VALID) && !(state & BMAP_RIGHT_DELAY) &&
3023 new->br_startoff + new->br_blockcount == right.br_startoff &&
3024 new->br_startblock + new->br_blockcount == right.br_startblock &&
3025 new->br_state == right.br_state &&
3026 new->br_blockcount + right.br_blockcount <= MAXEXTLEN &&
3027 (!(state & BMAP_LEFT_CONTIG) ||
3028 left.br_blockcount + new->br_blockcount +
3029 right.br_blockcount <= MAXEXTLEN))
3030 state |= BMAP_RIGHT_CONTIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003032 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 /*
3034 * Select which case we're in here, and implement it.
3035 */
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003036 switch (state & (BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG)) {
3037 case BMAP_LEFT_CONTIG | BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 /*
3039 * New allocation is contiguous with real allocations on the
3040 * left and on the right.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003041 * Merge all three into a single extent record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003043 --bma->idx;
3044 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3045 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 left.br_blockcount + new->br_blockcount +
3047 right.br_blockcount);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003048 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00003049
Christoph Hellwigc6534242011-09-18 20:41:05 +00003050 xfs_iext_remove(bma->ip, bma->idx + 1, 1, state);
Christoph Hellwigec90c552011-05-23 08:52:53 +00003051
Christoph Hellwigc6534242011-09-18 20:41:05 +00003052 XFS_IFORK_NEXT_SET(bma->ip, whichfork,
3053 XFS_IFORK_NEXTENTS(bma->ip, whichfork) - 1);
3054 if (bma->cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06003055 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003056 } else {
3057 rval = XFS_ILOG_CORE;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003058 error = xfs_bmbt_lookup_eq(bma->cur, right.br_startoff,
3059 right.br_startblock, right.br_blockcount,
3060 &i);
3061 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003062 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003063 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003064 error = xfs_btree_delete(bma->cur, &i);
3065 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003066 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003067 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003068 error = xfs_btree_decrement(bma->cur, 0, &i);
3069 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003070 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003071 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003072 error = xfs_bmbt_update(bma->cur, left.br_startoff,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003073 left.br_startblock,
3074 left.br_blockcount +
3075 new->br_blockcount +
3076 right.br_blockcount,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003077 left.br_state);
3078 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003079 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003081 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003083 case BMAP_LEFT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 /*
3085 * New allocation is contiguous with a real allocation
3086 * on the left.
3087 * Merge the new allocation with the left neighbor.
3088 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003089 --bma->idx;
3090 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3091 xfs_bmbt_set_blockcount(xfs_iext_get_ext(ifp, bma->idx),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 left.br_blockcount + new->br_blockcount);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003093 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00003094
Christoph Hellwigc6534242011-09-18 20:41:05 +00003095 if (bma->cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06003096 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003097 } else {
3098 rval = 0;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003099 error = xfs_bmbt_lookup_eq(bma->cur, left.br_startoff,
3100 left.br_startblock, left.br_blockcount,
3101 &i);
3102 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003103 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003104 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003105 error = xfs_bmbt_update(bma->cur, left.br_startoff,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003106 left.br_startblock,
3107 left.br_blockcount +
3108 new->br_blockcount,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003109 left.br_state);
3110 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003111 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003113 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
Christoph Hellwig7574aa92009-11-25 00:00:19 +00003115 case BMAP_RIGHT_CONTIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 /*
3117 * New allocation is contiguous with a real allocation
3118 * on the right.
3119 * Merge the new allocation with the right neighbor.
3120 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003121 trace_xfs_bmap_pre_update(bma->ip, bma->idx, state, _THIS_IP_);
3122 xfs_bmbt_set_allf(xfs_iext_get_ext(ifp, bma->idx),
Christoph Hellwig2f2b3222011-05-11 15:04:06 +00003123 new->br_startoff, new->br_startblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 new->br_blockcount + right.br_blockcount,
3125 right.br_state);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003126 trace_xfs_bmap_post_update(bma->ip, bma->idx, state, _THIS_IP_);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00003127
Christoph Hellwigc6534242011-09-18 20:41:05 +00003128 if (bma->cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06003129 rval = xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003130 } else {
3131 rval = 0;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003132 error = xfs_bmbt_lookup_eq(bma->cur,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003133 right.br_startoff,
3134 right.br_startblock,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003135 right.br_blockcount, &i);
3136 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003137 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003138 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003139 error = xfs_bmbt_update(bma->cur, new->br_startoff,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003140 new->br_startblock,
3141 new->br_blockcount +
3142 right.br_blockcount,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003143 right.br_state);
3144 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003145 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003147 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
3149 case 0:
3150 /*
3151 * New allocation is not contiguous with another
3152 * real allocation.
3153 * Insert a new entry.
3154 */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003155 xfs_iext_insert(bma->ip, bma->idx, 1, new, state);
3156 XFS_IFORK_NEXT_SET(bma->ip, whichfork,
3157 XFS_IFORK_NEXTENTS(bma->ip, whichfork) + 1);
3158 if (bma->cur == NULL) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06003159 rval = XFS_ILOG_CORE | xfs_ilog_fext(whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003160 } else {
3161 rval = XFS_ILOG_CORE;
Christoph Hellwigc6534242011-09-18 20:41:05 +00003162 error = xfs_bmbt_lookup_eq(bma->cur,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003163 new->br_startoff,
3164 new->br_startblock,
Christoph Hellwigc6534242011-09-18 20:41:05 +00003165 new->br_blockcount, &i);
3166 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003167 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003168 XFS_WANT_CORRUPTED_GOTO(i == 0, done);
Christoph Hellwigc6534242011-09-18 20:41:05 +00003169 bma->cur->bc_rec.b.br_state = new->br_state;
3170 error = xfs_btree_insert(bma->cur, &i);
3171 if (error)
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003172 goto done;
Lachlan McIlroy6bd8fc82008-06-23 13:25:46 +10003173 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 }
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003175 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 }
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00003177
3178 /* convert to a btree if necessary */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00003179 if (xfs_bmap_needs_btree(bma->ip, whichfork)) {
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00003180 int tmp_logflags; /* partial log flag return val */
3181
Christoph Hellwigc6534242011-09-18 20:41:05 +00003182 ASSERT(bma->cur == NULL);
3183 error = xfs_bmap_extents_to_btree(bma->tp, bma->ip,
3184 bma->firstblock, bma->flist, &bma->cur,
3185 0, &tmp_logflags, whichfork);
3186 bma->logflags |= tmp_logflags;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00003187 if (error)
3188 goto done;
3189 }
3190
3191 /* clear out the allocated field, done with it now in any case. */
Christoph Hellwigc6534242011-09-18 20:41:05 +00003192 if (bma->cur)
3193 bma->cur->bc_private.b.allocated = 0;
3194
3195 xfs_bmap_check_leaf_extents(bma->cur, bma->ip, whichfork);
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003196done:
Christoph Hellwigc6534242011-09-18 20:41:05 +00003197 bma->logflags |= rval;
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003198 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199}
3200
Nathan Scottdd9f4382006-01-11 15:28:28 +11003201/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11003202 * Functions used in the extent read, allocate and remove paths
3203 */
3204
3205/*
Nathan Scottdd9f4382006-01-11 15:28:28 +11003206 * Adjust the size of the new extent based on di_extsize and rt extsize.
3207 */
Dave Chinner68988112013-08-12 20:49:42 +10003208int
Nathan Scottdd9f4382006-01-11 15:28:28 +11003209xfs_bmap_extsize_align(
3210 xfs_mount_t *mp,
3211 xfs_bmbt_irec_t *gotp, /* next extent pointer */
3212 xfs_bmbt_irec_t *prevp, /* previous extent pointer */
3213 xfs_extlen_t extsz, /* align to this extent size */
3214 int rt, /* is this a realtime inode? */
3215 int eof, /* is extent at end-of-file? */
3216 int delay, /* creating delalloc extent? */
3217 int convert, /* overwriting unwritten extent? */
3218 xfs_fileoff_t *offp, /* in/out: aligned offset */
3219 xfs_extlen_t *lenp) /* in/out: aligned length */
3220{
3221 xfs_fileoff_t orig_off; /* original offset */
3222 xfs_extlen_t orig_alen; /* original length */
3223 xfs_fileoff_t orig_end; /* original off+len */
3224 xfs_fileoff_t nexto; /* next file offset */
3225 xfs_fileoff_t prevo; /* previous file offset */
3226 xfs_fileoff_t align_off; /* temp for offset */
3227 xfs_extlen_t align_alen; /* temp for length */
3228 xfs_extlen_t temp; /* temp for calculations */
3229
3230 if (convert)
3231 return 0;
3232
3233 orig_off = align_off = *offp;
3234 orig_alen = align_alen = *lenp;
3235 orig_end = orig_off + orig_alen;
3236
3237 /*
3238 * If this request overlaps an existing extent, then don't
3239 * attempt to perform any additional alignment.
3240 */
3241 if (!delay && !eof &&
3242 (orig_off >= gotp->br_startoff) &&
3243 (orig_end <= gotp->br_startoff + gotp->br_blockcount)) {
3244 return 0;
3245 }
3246
3247 /*
3248 * If the file offset is unaligned vs. the extent size
3249 * we need to align it. This will be possible unless
3250 * the file was previously written with a kernel that didn't
3251 * perform this alignment, or if a truncate shot us in the
3252 * foot.
3253 */
3254 temp = do_mod(orig_off, extsz);
3255 if (temp) {
3256 align_alen += temp;
3257 align_off -= temp;
3258 }
3259 /*
3260 * Same adjustment for the end of the requested area.
3261 */
3262 if ((temp = (align_alen % extsz))) {
3263 align_alen += extsz - temp;
3264 }
3265 /*
3266 * If the previous block overlaps with this proposed allocation
3267 * then move the start forward without adjusting the length.
3268 */
3269 if (prevp->br_startoff != NULLFILEOFF) {
3270 if (prevp->br_startblock == HOLESTARTBLOCK)
3271 prevo = prevp->br_startoff;
3272 else
3273 prevo = prevp->br_startoff + prevp->br_blockcount;
3274 } else
3275 prevo = 0;
3276 if (align_off != orig_off && align_off < prevo)
3277 align_off = prevo;
3278 /*
3279 * If the next block overlaps with this proposed allocation
3280 * then move the start back without adjusting the length,
3281 * but not before offset 0.
3282 * This may of course make the start overlap previous block,
3283 * and if we hit the offset 0 limit then the next block
3284 * can still overlap too.
3285 */
3286 if (!eof && gotp->br_startoff != NULLFILEOFF) {
3287 if ((delay && gotp->br_startblock == HOLESTARTBLOCK) ||
3288 (!delay && gotp->br_startblock == DELAYSTARTBLOCK))
3289 nexto = gotp->br_startoff + gotp->br_blockcount;
3290 else
3291 nexto = gotp->br_startoff;
3292 } else
3293 nexto = NULLFILEOFF;
3294 if (!eof &&
3295 align_off + align_alen != orig_end &&
3296 align_off + align_alen > nexto)
3297 align_off = nexto > align_alen ? nexto - align_alen : 0;
3298 /*
3299 * If we're now overlapping the next or previous extent that
3300 * means we can't fit an extsz piece in this hole. Just move
3301 * the start forward to the first valid spot and set
3302 * the length so we hit the end.
3303 */
3304 if (align_off != orig_off && align_off < prevo)
3305 align_off = prevo;
3306 if (align_off + align_alen != orig_end &&
3307 align_off + align_alen > nexto &&
3308 nexto != NULLFILEOFF) {
3309 ASSERT(nexto > prevo);
3310 align_alen = nexto - align_off;
3311 }
3312
3313 /*
3314 * If realtime, and the result isn't a multiple of the realtime
3315 * extent size we need to remove blocks until it is.
3316 */
3317 if (rt && (temp = (align_alen % mp->m_sb.sb_rextsize))) {
3318 /*
3319 * We're not covering the original request, or
3320 * we won't be able to once we fix the length.
3321 */
3322 if (orig_off < align_off ||
3323 orig_end > align_off + align_alen ||
3324 align_alen - temp < orig_alen)
3325 return XFS_ERROR(EINVAL);
3326 /*
3327 * Try to fix it by moving the start up.
3328 */
3329 if (align_off + temp <= orig_off) {
3330 align_alen -= temp;
3331 align_off += temp;
3332 }
3333 /*
3334 * Try to fix it by moving the end in.
3335 */
3336 else if (align_off + align_alen - temp >= orig_end)
3337 align_alen -= temp;
3338 /*
3339 * Set the start to the minimum then trim the length.
3340 */
3341 else {
3342 align_alen -= orig_off - align_off;
3343 align_off = orig_off;
3344 align_alen -= align_alen % mp->m_sb.sb_rextsize;
3345 }
3346 /*
3347 * Result doesn't cover the request, fail it.
3348 */
3349 if (orig_off < align_off || orig_end > align_off + align_alen)
3350 return XFS_ERROR(EINVAL);
3351 } else {
3352 ASSERT(orig_off >= align_off);
3353 ASSERT(orig_end <= align_off + align_alen);
3354 }
3355
3356#ifdef DEBUG
3357 if (!eof && gotp->br_startoff != NULLFILEOFF)
3358 ASSERT(align_off + align_alen <= gotp->br_startoff);
3359 if (prevp->br_startoff != NULLFILEOFF)
3360 ASSERT(align_off >= prevp->br_startoff + prevp->br_blockcount);
3361#endif
3362
3363 *lenp = align_alen;
3364 *offp = align_off;
3365 return 0;
3366}
3367
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368#define XFS_ALLOC_GAP_UNITS 4
3369
Dave Chinner68988112013-08-12 20:49:42 +10003370void
Nathan Scotta365bdd2006-03-14 13:34:16 +11003371xfs_bmap_adjacent(
Dave Chinner68988112013-08-12 20:49:42 +10003372 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373{
3374 xfs_fsblock_t adjust; /* adjustment to block numbers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
3376 xfs_mount_t *mp; /* mount point structure */
3377 int nullfb; /* true if ap->firstblock isn't set */
3378 int rt; /* true if inode is realtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
3380#define ISVALID(x,y) \
3381 (rt ? \
3382 (x) < mp->m_sb.sb_rblocks : \
3383 XFS_FSB_TO_AGNO(mp, x) == XFS_FSB_TO_AGNO(mp, y) && \
3384 XFS_FSB_TO_AGNO(mp, x) < mp->m_sb.sb_agcount && \
3385 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks)
3386
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 mp = ap->ip->i_mount;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003388 nullfb = *ap->firstblock == NULLFSBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 rt = XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003390 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 /*
3392 * If allocating at eof, and there's a previous real block,
Malcolm Parsons9da096f2009-03-29 09:55:42 +02003393 * try to use its last block as our starting point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003395 if (ap->eof && ap->prev.br_startoff != NULLFILEOFF &&
3396 !isnullstartblock(ap->prev.br_startblock) &&
3397 ISVALID(ap->prev.br_startblock + ap->prev.br_blockcount,
3398 ap->prev.br_startblock)) {
Dave Chinner3a756672011-09-18 20:40:58 +00003399 ap->blkno = ap->prev.br_startblock + ap->prev.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 /*
3401 * Adjust for the gap between prevp and us.
3402 */
Dave Chinner3a756672011-09-18 20:40:58 +00003403 adjust = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003404 (ap->prev.br_startoff + ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 if (adjust &&
Dave Chinner3a756672011-09-18 20:40:58 +00003406 ISVALID(ap->blkno + adjust, ap->prev.br_startblock))
3407 ap->blkno += adjust;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 }
3409 /*
3410 * If not at eof, then compare the two neighbor blocks.
3411 * Figure out whether either one gives us a good starting point,
3412 * and pick the better one.
3413 */
3414 else if (!ap->eof) {
3415 xfs_fsblock_t gotbno; /* right side block number */
3416 xfs_fsblock_t gotdiff=0; /* right side difference */
3417 xfs_fsblock_t prevbno; /* left side block number */
3418 xfs_fsblock_t prevdiff=0; /* left side difference */
3419
3420 /*
3421 * If there's a previous (left) block, select a requested
3422 * start block based on it.
3423 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003424 if (ap->prev.br_startoff != NULLFILEOFF &&
3425 !isnullstartblock(ap->prev.br_startblock) &&
3426 (prevbno = ap->prev.br_startblock +
3427 ap->prev.br_blockcount) &&
3428 ISVALID(prevbno, ap->prev.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 /*
3430 * Calculate gap to end of previous block.
3431 */
Dave Chinner3a756672011-09-18 20:40:58 +00003432 adjust = prevdiff = ap->offset -
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003433 (ap->prev.br_startoff +
3434 ap->prev.br_blockcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 /*
3436 * Figure the startblock based on the previous block's
3437 * end and the gap size.
3438 * Heuristic!
3439 * If the gap is large relative to the piece we're
3440 * allocating, or using it gives us an invalid block
3441 * number, then just use the end of the previous block.
3442 */
Dave Chinner3a756672011-09-18 20:40:58 +00003443 if (prevdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 ISVALID(prevbno + prevdiff,
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003445 ap->prev.br_startblock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 prevbno += adjust;
3447 else
3448 prevdiff += adjust;
3449 /*
3450 * If the firstblock forbids it, can't use it,
3451 * must use default.
3452 */
3453 if (!rt && !nullfb &&
3454 XFS_FSB_TO_AGNO(mp, prevbno) != fb_agno)
3455 prevbno = NULLFSBLOCK;
3456 }
3457 /*
3458 * No previous block or can't follow it, just default.
3459 */
3460 else
3461 prevbno = NULLFSBLOCK;
3462 /*
3463 * If there's a following (right) block, select a requested
3464 * start block based on it.
3465 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003466 if (!isnullstartblock(ap->got.br_startblock)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 /*
3468 * Calculate gap to start of next block.
3469 */
Dave Chinner3a756672011-09-18 20:40:58 +00003470 adjust = gotdiff = ap->got.br_startoff - ap->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 /*
3472 * Figure the startblock based on the next block's
3473 * start and the gap size.
3474 */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003475 gotbno = ap->got.br_startblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 /*
3477 * Heuristic!
3478 * If the gap is large relative to the piece we're
3479 * allocating, or using it gives us an invalid block
3480 * number, then just use the start of the next block
3481 * offset by our length.
3482 */
Dave Chinner3a756672011-09-18 20:40:58 +00003483 if (gotdiff <= XFS_ALLOC_GAP_UNITS * ap->length &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 ISVALID(gotbno - gotdiff, gotbno))
3485 gotbno -= adjust;
Dave Chinner3a756672011-09-18 20:40:58 +00003486 else if (ISVALID(gotbno - ap->length, gotbno)) {
3487 gotbno -= ap->length;
3488 gotdiff += adjust - ap->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 } else
3490 gotdiff += adjust;
3491 /*
3492 * If the firstblock forbids it, can't use it,
3493 * must use default.
3494 */
3495 if (!rt && !nullfb &&
3496 XFS_FSB_TO_AGNO(mp, gotbno) != fb_agno)
3497 gotbno = NULLFSBLOCK;
3498 }
3499 /*
3500 * No next block, just default.
3501 */
3502 else
3503 gotbno = NULLFSBLOCK;
3504 /*
3505 * If both valid, pick the better one, else the only good
Dave Chinner3a756672011-09-18 20:40:58 +00003506 * one, else ap->blkno is already set (to 0 or the inode block).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 */
3508 if (prevbno != NULLFSBLOCK && gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003509 ap->blkno = prevdiff <= gotdiff ? prevbno : gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 else if (prevbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003511 ap->blkno = prevbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 else if (gotbno != NULLFSBLOCK)
Dave Chinner3a756672011-09-18 20:40:58 +00003513 ap->blkno = gotbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 }
Nathan Scotta365bdd2006-03-14 13:34:16 +11003515#undef ISVALID
Nathan Scotta365bdd2006-03-14 13:34:16 +11003516}
3517
3518STATIC int
Christoph Hellwigc467c042010-02-15 23:34:42 +00003519xfs_bmap_btalloc_nullfb(
3520 struct xfs_bmalloca *ap,
3521 struct xfs_alloc_arg *args,
3522 xfs_extlen_t *blen)
3523{
3524 struct xfs_mount *mp = ap->ip->i_mount;
3525 struct xfs_perag *pag;
3526 xfs_agnumber_t ag, startag;
3527 int notinit = 0;
3528 int error;
3529
3530 if (ap->userdata && xfs_inode_is_filestream(ap->ip))
3531 args->type = XFS_ALLOCTYPE_NEAR_BNO;
3532 else
3533 args->type = XFS_ALLOCTYPE_START_BNO;
3534 args->total = ap->total;
3535
3536 /*
3537 * Search for an allocation group with a single extent large enough
3538 * for the request. If one isn't found, then adjust the minimum
3539 * allocation size to the largest space found.
3540 */
3541 startag = ag = XFS_FSB_TO_AGNO(mp, args->fsbno);
3542 if (startag == NULLAGNUMBER)
3543 startag = ag = 0;
3544
3545 pag = xfs_perag_get(mp, ag);
Dave Chinner14b064c2011-01-27 12:16:28 +11003546 while (*blen < args->maxlen) {
Christoph Hellwigc467c042010-02-15 23:34:42 +00003547 if (!pag->pagf_init) {
3548 error = xfs_alloc_pagf_init(mp, args->tp, ag,
3549 XFS_ALLOC_FLAG_TRYLOCK);
3550 if (error) {
3551 xfs_perag_put(pag);
3552 return error;
3553 }
3554 }
3555
3556 /*
3557 * See xfs_alloc_fix_freelist...
3558 */
3559 if (pag->pagf_init) {
3560 xfs_extlen_t longest;
3561 longest = xfs_alloc_longest_free_extent(mp, pag);
3562 if (*blen < longest)
3563 *blen = longest;
3564 } else
3565 notinit = 1;
3566
3567 if (xfs_inode_is_filestream(ap->ip)) {
Dave Chinner14b064c2011-01-27 12:16:28 +11003568 if (*blen >= args->maxlen)
Christoph Hellwigc467c042010-02-15 23:34:42 +00003569 break;
3570
3571 if (ap->userdata) {
3572 /*
3573 * If startag is an invalid AG, we've
3574 * come here once before and
3575 * xfs_filestream_new_ag picked the
3576 * best currently available.
3577 *
3578 * Don't continue looping, since we
3579 * could loop forever.
3580 */
3581 if (startag == NULLAGNUMBER)
3582 break;
3583
3584 error = xfs_filestream_new_ag(ap, &ag);
3585 xfs_perag_put(pag);
3586 if (error)
3587 return error;
3588
3589 /* loop again to set 'blen'*/
3590 startag = NULLAGNUMBER;
3591 pag = xfs_perag_get(mp, ag);
3592 continue;
3593 }
3594 }
3595 if (++ag == mp->m_sb.sb_agcount)
3596 ag = 0;
3597 if (ag == startag)
3598 break;
3599 xfs_perag_put(pag);
3600 pag = xfs_perag_get(mp, ag);
3601 }
3602 xfs_perag_put(pag);
3603
3604 /*
3605 * Since the above loop did a BUF_TRYLOCK, it is
3606 * possible that there is space for this request.
3607 */
3608 if (notinit || *blen < ap->minlen)
3609 args->minlen = ap->minlen;
3610 /*
3611 * If the best seen length is less than the request
3612 * length, use the best as the minimum.
3613 */
Dave Chinner14b064c2011-01-27 12:16:28 +11003614 else if (*blen < args->maxlen)
Christoph Hellwigc467c042010-02-15 23:34:42 +00003615 args->minlen = *blen;
3616 /*
Dave Chinner14b064c2011-01-27 12:16:28 +11003617 * Otherwise we've seen an extent as big as maxlen,
Christoph Hellwigc467c042010-02-15 23:34:42 +00003618 * use that as the minimum.
3619 */
3620 else
Dave Chinner14b064c2011-01-27 12:16:28 +11003621 args->minlen = args->maxlen;
Christoph Hellwigc467c042010-02-15 23:34:42 +00003622
3623 /*
3624 * set the failure fallback case to look in the selected
3625 * AG as the stream may have moved.
3626 */
3627 if (xfs_inode_is_filestream(ap->ip))
Dave Chinner3a756672011-09-18 20:40:58 +00003628 ap->blkno = args->fsbno = XFS_AGB_TO_FSB(mp, ag, 0);
Christoph Hellwigc467c042010-02-15 23:34:42 +00003629
3630 return 0;
3631}
3632
3633STATIC int
Nathan Scotta365bdd2006-03-14 13:34:16 +11003634xfs_bmap_btalloc(
Dave Chinner68988112013-08-12 20:49:42 +10003635 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003636{
3637 xfs_mount_t *mp; /* mount point structure */
3638 xfs_alloctype_t atype = 0; /* type for allocation routines */
3639 xfs_extlen_t align; /* minimum allocation alignment */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003640 xfs_agnumber_t fb_agno; /* ag number of ap->firstblock */
Christoph Hellwigc467c042010-02-15 23:34:42 +00003641 xfs_agnumber_t ag;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003642 xfs_alloc_arg_t args;
3643 xfs_extlen_t blen;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003644 xfs_extlen_t nextminlen = 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003645 int nullfb; /* true if ap->firstblock isn't set */
3646 int isaligned;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003647 int tryagain;
3648 int error;
Dave Chinner33177f052013-12-12 16:34:36 +11003649 int stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003650
Dave Chinnera99ebf42011-12-01 11:24:20 +00003651 ASSERT(ap->length);
3652
Nathan Scotta365bdd2006-03-14 13:34:16 +11003653 mp = ap->ip->i_mount;
Dave Chinner33177f052013-12-12 16:34:36 +11003654
3655 /* stripe alignment for allocation is determined by mount parameters */
3656 stripe_align = 0;
3657 if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC))
3658 stripe_align = mp->m_swidth;
3659 else if (mp->m_dalign)
3660 stripe_align = mp->m_dalign;
3661
David Chinner957d0eb2007-06-18 16:50:37 +10003662 align = ap->userdata ? xfs_get_extsz_hint(ap->ip) : 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003663 if (unlikely(align)) {
Dave Chinnerbaf41a52011-09-18 20:40:56 +00003664 error = xfs_bmap_extsize_align(mp, &ap->got, &ap->prev,
Nathan Scotta365bdd2006-03-14 13:34:16 +11003665 align, 0, ap->eof, 0, ap->conv,
Dave Chinner3a756672011-09-18 20:40:58 +00003666 &ap->offset, &ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003667 ASSERT(!error);
Dave Chinner3a756672011-09-18 20:40:58 +00003668 ASSERT(ap->length);
Nathan Scotta365bdd2006-03-14 13:34:16 +11003669 }
Dave Chinner33177f052013-12-12 16:34:36 +11003670
3671
Dave Chinner0937e0f2011-09-18 20:40:57 +00003672 nullfb = *ap->firstblock == NULLFSBLOCK;
3673 fb_agno = nullfb ? NULLAGNUMBER : XFS_FSB_TO_AGNO(mp, *ap->firstblock);
David Chinner2a82b8b2007-07-11 11:09:12 +10003674 if (nullfb) {
3675 if (ap->userdata && xfs_inode_is_filestream(ap->ip)) {
3676 ag = xfs_filestream_lookup_ag(ap->ip);
3677 ag = (ag != NULLAGNUMBER) ? ag : 0;
Dave Chinner3a756672011-09-18 20:40:58 +00003678 ap->blkno = XFS_AGB_TO_FSB(mp, ag, 0);
David Chinner2a82b8b2007-07-11 11:09:12 +10003679 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00003680 ap->blkno = XFS_INO_TO_FSB(mp, ap->ip->i_ino);
David Chinner2a82b8b2007-07-11 11:09:12 +10003681 }
3682 } else
Dave Chinner3a756672011-09-18 20:40:58 +00003683 ap->blkno = *ap->firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003684
3685 xfs_bmap_adjacent(ap);
3686
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 /*
Dave Chinner3a756672011-09-18 20:40:58 +00003688 * If allowed, use ap->blkno; otherwise must use firstblock since
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 * it's in the right allocation group.
3690 */
Dave Chinner3a756672011-09-18 20:40:58 +00003691 if (nullfb || XFS_FSB_TO_AGNO(mp, ap->blkno) == fb_agno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 ;
3693 else
Dave Chinner3a756672011-09-18 20:40:58 +00003694 ap->blkno = *ap->firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 * Normal allocation, done through xfs_alloc_vextent.
3697 */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003698 tryagain = isaligned = 0;
Mark Tinguelya0041682012-09-20 13:16:45 -05003699 memset(&args, 0, sizeof(args));
Nathan Scotta365bdd2006-03-14 13:34:16 +11003700 args.tp = ap->tp;
3701 args.mp = mp;
Dave Chinner3a756672011-09-18 20:40:58 +00003702 args.fsbno = ap->blkno;
Dave Chinner14b064c2011-01-27 12:16:28 +11003703
3704 /* Trim the allocation back to the maximum an AG can fit. */
Dave Chinner3a756672011-09-18 20:40:58 +00003705 args.maxlen = MIN(ap->length, XFS_ALLOC_AG_MAX_USABLE(mp));
Dave Chinner0937e0f2011-09-18 20:40:57 +00003706 args.firstblock = *ap->firstblock;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003707 blen = 0;
3708 if (nullfb) {
Christoph Hellwigc467c042010-02-15 23:34:42 +00003709 error = xfs_bmap_btalloc_nullfb(ap, &args, &blen);
3710 if (error)
3711 return error;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003712 } else if (ap->flist->xbf_low) {
David Chinner2a82b8b2007-07-11 11:09:12 +10003713 if (xfs_inode_is_filestream(ap->ip))
3714 args.type = XFS_ALLOCTYPE_FIRST_AG;
3715 else
3716 args.type = XFS_ALLOCTYPE_START_BNO;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003717 args.total = args.minlen = ap->minlen;
3718 } else {
3719 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3720 args.total = ap->total;
3721 args.minlen = ap->minlen;
3722 }
David Chinner957d0eb2007-06-18 16:50:37 +10003723 /* apply extent size hints if obtained earlier */
3724 if (unlikely(align)) {
3725 args.prod = align;
Dave Chinner3a756672011-09-18 20:40:58 +00003726 if ((args.mod = (xfs_extlen_t)do_mod(ap->offset, args.prod)))
Nathan Scotta365bdd2006-03-14 13:34:16 +11003727 args.mod = (xfs_extlen_t)(args.prod - args.mod);
Tim Shimmine6a4b372007-11-23 16:30:42 +11003728 } else if (mp->m_sb.sb_blocksize >= PAGE_CACHE_SIZE) {
Nathan Scotta365bdd2006-03-14 13:34:16 +11003729 args.prod = 1;
3730 args.mod = 0;
3731 } else {
Tim Shimmine6a4b372007-11-23 16:30:42 +11003732 args.prod = PAGE_CACHE_SIZE >> mp->m_sb.sb_blocklog;
Dave Chinner3a756672011-09-18 20:40:58 +00003733 if ((args.mod = (xfs_extlen_t)(do_mod(ap->offset, args.prod))))
Nathan Scotta365bdd2006-03-14 13:34:16 +11003734 args.mod = (xfs_extlen_t)(args.prod - args.mod);
3735 }
3736 /*
3737 * If we are not low on available data blocks, and the
3738 * underlying logical volume manager is a stripe, and
3739 * the file offset is zero then try to allocate data
3740 * blocks on stripe unit boundary.
3741 * NOTE: ap->aeof is only set if the allocation length
3742 * is >= the stripe unit and the allocation offset is
3743 * at the end of file.
3744 */
Dave Chinner0937e0f2011-09-18 20:40:57 +00003745 if (!ap->flist->xbf_low && ap->aeof) {
Dave Chinner3a756672011-09-18 20:40:58 +00003746 if (!ap->offset) {
Dave Chinner33177f052013-12-12 16:34:36 +11003747 args.alignment = stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003748 atype = args.type;
3749 isaligned = 1;
3750 /*
3751 * Adjust for alignment
3752 */
Dave Chinner14b064c2011-01-27 12:16:28 +11003753 if (blen > args.alignment && blen <= args.maxlen)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003754 args.minlen = blen - args.alignment;
3755 args.minalignslop = 0;
3756 } else {
3757 /*
3758 * First try an exact bno allocation.
3759 * If it fails then do a near or start bno
3760 * allocation with alignment turned on.
3761 */
3762 atype = args.type;
3763 tryagain = 1;
3764 args.type = XFS_ALLOCTYPE_THIS_BNO;
3765 args.alignment = 1;
3766 /*
3767 * Compute the minlen+alignment for the
3768 * next case. Set slop so that the value
3769 * of minlen+alignment+slop doesn't go up
3770 * between the calls.
3771 */
Dave Chinner33177f052013-12-12 16:34:36 +11003772 if (blen > stripe_align && blen <= args.maxlen)
3773 nextminlen = blen - stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003774 else
3775 nextminlen = args.minlen;
Dave Chinner33177f052013-12-12 16:34:36 +11003776 if (nextminlen + stripe_align > args.minlen + 1)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003777 args.minalignslop =
Dave Chinner33177f052013-12-12 16:34:36 +11003778 nextminlen + stripe_align -
Nathan Scotta365bdd2006-03-14 13:34:16 +11003779 args.minlen - 1;
3780 else
3781 args.minalignslop = 0;
3782 }
3783 } else {
3784 args.alignment = 1;
3785 args.minalignslop = 0;
3786 }
3787 args.minleft = ap->minleft;
3788 args.wasdel = ap->wasdel;
3789 args.isfl = 0;
3790 args.userdata = ap->userdata;
3791 if ((error = xfs_alloc_vextent(&args)))
3792 return error;
3793 if (tryagain && args.fsbno == NULLFSBLOCK) {
3794 /*
3795 * Exact allocation failed. Now try with alignment
3796 * turned on.
3797 */
3798 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00003799 args.fsbno = ap->blkno;
Dave Chinner33177f052013-12-12 16:34:36 +11003800 args.alignment = stripe_align;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003801 args.minlen = nextminlen;
3802 args.minalignslop = 0;
3803 isaligned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 if ((error = xfs_alloc_vextent(&args)))
3805 return error;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003806 }
3807 if (isaligned && args.fsbno == NULLFSBLOCK) {
3808 /*
3809 * allocation failed, so turn off alignment and
3810 * try again.
3811 */
3812 args.type = atype;
Dave Chinner3a756672011-09-18 20:40:58 +00003813 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003814 args.alignment = 0;
3815 if ((error = xfs_alloc_vextent(&args)))
3816 return error;
3817 }
3818 if (args.fsbno == NULLFSBLOCK && nullfb &&
3819 args.minlen > ap->minlen) {
3820 args.minlen = ap->minlen;
3821 args.type = XFS_ALLOCTYPE_START_BNO;
Dave Chinner3a756672011-09-18 20:40:58 +00003822 args.fsbno = ap->blkno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003823 if ((error = xfs_alloc_vextent(&args)))
3824 return error;
3825 }
3826 if (args.fsbno == NULLFSBLOCK && nullfb) {
3827 args.fsbno = 0;
3828 args.type = XFS_ALLOCTYPE_FIRST_AG;
3829 args.total = ap->minlen;
3830 args.minleft = 0;
3831 if ((error = xfs_alloc_vextent(&args)))
3832 return error;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003833 ap->flist->xbf_low = 1;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003834 }
3835 if (args.fsbno != NULLFSBLOCK) {
Dave Chinner0937e0f2011-09-18 20:40:57 +00003836 /*
3837 * check the allocation happened at the same or higher AG than
3838 * the first block that was allocated.
3839 */
3840 ASSERT(*ap->firstblock == NULLFSBLOCK ||
3841 XFS_FSB_TO_AGNO(mp, *ap->firstblock) ==
3842 XFS_FSB_TO_AGNO(mp, args.fsbno) ||
3843 (ap->flist->xbf_low &&
3844 XFS_FSB_TO_AGNO(mp, *ap->firstblock) <
3845 XFS_FSB_TO_AGNO(mp, args.fsbno)));
3846
Dave Chinner3a756672011-09-18 20:40:58 +00003847 ap->blkno = args.fsbno;
Dave Chinner0937e0f2011-09-18 20:40:57 +00003848 if (*ap->firstblock == NULLFSBLOCK)
3849 *ap->firstblock = args.fsbno;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003850 ASSERT(nullfb || fb_agno == args.agno ||
Dave Chinner0937e0f2011-09-18 20:40:57 +00003851 (ap->flist->xbf_low && fb_agno < args.agno));
Dave Chinner3a756672011-09-18 20:40:58 +00003852 ap->length = args.len;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003853 ap->ip->i_d.di_nblocks += args.len;
3854 xfs_trans_log_inode(ap->tp, ap->ip, XFS_ILOG_CORE);
3855 if (ap->wasdel)
3856 ap->ip->i_delayed_blks -= args.len;
3857 /*
3858 * Adjust the disk quota also. This was reserved
3859 * earlier.
3860 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02003861 xfs_trans_mod_dquot_byino(ap->tp, ap->ip,
Nathan Scotta365bdd2006-03-14 13:34:16 +11003862 ap->wasdel ? XFS_TRANS_DQ_DELBCOUNT :
3863 XFS_TRANS_DQ_BCOUNT,
3864 (long) args.len);
3865 } else {
Dave Chinner3a756672011-09-18 20:40:58 +00003866 ap->blkno = NULLFSBLOCK;
3867 ap->length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 }
3869 return 0;
Nathan Scotta365bdd2006-03-14 13:34:16 +11003870}
3871
3872/*
3873 * xfs_bmap_alloc is called by xfs_bmapi to allocate an extent for a file.
3874 * It figures out where to ask the underlying allocator to put the new extent.
3875 */
3876STATIC int
3877xfs_bmap_alloc(
Dave Chinner68988112013-08-12 20:49:42 +10003878 struct xfs_bmalloca *ap) /* bmap alloc argument struct */
Nathan Scotta365bdd2006-03-14 13:34:16 +11003879{
Eric Sandeen71ddabb2007-11-23 16:29:42 +11003880 if (XFS_IS_REALTIME_INODE(ap->ip) && ap->userdata)
Nathan Scotta365bdd2006-03-14 13:34:16 +11003881 return xfs_bmap_rtalloc(ap);
3882 return xfs_bmap_btalloc(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883}
3884
3885/*
Dave Chinneraef9a892011-09-18 20:40:44 +00003886 * Trim the returned map to the required bounds
3887 */
3888STATIC void
3889xfs_bmapi_trim_map(
3890 struct xfs_bmbt_irec *mval,
3891 struct xfs_bmbt_irec *got,
3892 xfs_fileoff_t *bno,
3893 xfs_filblks_t len,
3894 xfs_fileoff_t obno,
3895 xfs_fileoff_t end,
3896 int n,
3897 int flags)
3898{
3899 if ((flags & XFS_BMAPI_ENTIRE) ||
3900 got->br_startoff + got->br_blockcount <= obno) {
3901 *mval = *got;
3902 if (isnullstartblock(got->br_startblock))
3903 mval->br_startblock = DELAYSTARTBLOCK;
3904 return;
3905 }
3906
3907 if (obno > *bno)
3908 *bno = obno;
3909 ASSERT((*bno >= obno) || (n == 0));
3910 ASSERT(*bno < end);
3911 mval->br_startoff = *bno;
3912 if (isnullstartblock(got->br_startblock))
3913 mval->br_startblock = DELAYSTARTBLOCK;
3914 else
3915 mval->br_startblock = got->br_startblock +
3916 (*bno - got->br_startoff);
3917 /*
3918 * Return the minimum of what we got and what we asked for for
3919 * the length. We can use the len variable here because it is
3920 * modified below and we could have been there before coming
3921 * here if the first part of the allocation didn't overlap what
3922 * was asked for.
3923 */
3924 mval->br_blockcount = XFS_FILBLKS_MIN(end - *bno,
3925 got->br_blockcount - (*bno - got->br_startoff));
3926 mval->br_state = got->br_state;
3927 ASSERT(mval->br_blockcount <= len);
3928 return;
3929}
3930
3931/*
3932 * Update and validate the extent map to return
3933 */
3934STATIC void
3935xfs_bmapi_update_map(
3936 struct xfs_bmbt_irec **map,
3937 xfs_fileoff_t *bno,
3938 xfs_filblks_t *len,
3939 xfs_fileoff_t obno,
3940 xfs_fileoff_t end,
3941 int *n,
3942 int flags)
3943{
3944 xfs_bmbt_irec_t *mval = *map;
3945
3946 ASSERT((flags & XFS_BMAPI_ENTIRE) ||
3947 ((mval->br_startoff + mval->br_blockcount) <= end));
3948 ASSERT((flags & XFS_BMAPI_ENTIRE) || (mval->br_blockcount <= *len) ||
3949 (mval->br_startoff < obno));
3950
3951 *bno = mval->br_startoff + mval->br_blockcount;
3952 *len = end - *bno;
3953 if (*n > 0 && mval->br_startoff == mval[-1].br_startoff) {
3954 /* update previous map with new information */
3955 ASSERT(mval->br_startblock == mval[-1].br_startblock);
3956 ASSERT(mval->br_blockcount > mval[-1].br_blockcount);
3957 ASSERT(mval->br_state == mval[-1].br_state);
3958 mval[-1].br_blockcount = mval->br_blockcount;
3959 mval[-1].br_state = mval->br_state;
3960 } else if (*n > 0 && mval->br_startblock != DELAYSTARTBLOCK &&
3961 mval[-1].br_startblock != DELAYSTARTBLOCK &&
3962 mval[-1].br_startblock != HOLESTARTBLOCK &&
3963 mval->br_startblock == mval[-1].br_startblock +
3964 mval[-1].br_blockcount &&
3965 ((flags & XFS_BMAPI_IGSTATE) ||
3966 mval[-1].br_state == mval->br_state)) {
3967 ASSERT(mval->br_startoff ==
3968 mval[-1].br_startoff + mval[-1].br_blockcount);
3969 mval[-1].br_blockcount += mval->br_blockcount;
3970 } else if (*n > 0 &&
3971 mval->br_startblock == DELAYSTARTBLOCK &&
3972 mval[-1].br_startblock == DELAYSTARTBLOCK &&
3973 mval->br_startoff ==
3974 mval[-1].br_startoff + mval[-1].br_blockcount) {
3975 mval[-1].br_blockcount += mval->br_blockcount;
3976 mval[-1].br_state = mval->br_state;
3977 } else if (!((*n == 0) &&
3978 ((mval->br_startoff + mval->br_blockcount) <=
3979 obno))) {
3980 mval++;
3981 (*n)++;
3982 }
3983 *map = mval;
3984}
3985
3986/*
Dave Chinner5c8ed202011-09-18 20:40:45 +00003987 * Map file blocks to filesystem blocks without allocation.
3988 */
3989int
3990xfs_bmapi_read(
3991 struct xfs_inode *ip,
3992 xfs_fileoff_t bno,
3993 xfs_filblks_t len,
3994 struct xfs_bmbt_irec *mval,
3995 int *nmap,
3996 int flags)
3997{
3998 struct xfs_mount *mp = ip->i_mount;
3999 struct xfs_ifork *ifp;
4000 struct xfs_bmbt_irec got;
4001 struct xfs_bmbt_irec prev;
4002 xfs_fileoff_t obno;
4003 xfs_fileoff_t end;
4004 xfs_extnum_t lastx;
4005 int error;
4006 int eof;
4007 int n = 0;
4008 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4009 XFS_ATTR_FORK : XFS_DATA_FORK;
4010
4011 ASSERT(*nmap >= 1);
4012 ASSERT(!(flags & ~(XFS_BMAPI_ATTRFORK|XFS_BMAPI_ENTIRE|
4013 XFS_BMAPI_IGSTATE)));
Christoph Hellwigeef334e2013-12-06 12:30:17 -08004014 ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED|XFS_ILOCK_EXCL));
Dave Chinner5c8ed202011-09-18 20:40:45 +00004015
4016 if (unlikely(XFS_TEST_ERROR(
4017 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
4018 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
4019 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4020 XFS_ERROR_REPORT("xfs_bmapi_read", XFS_ERRLEVEL_LOW, mp);
4021 return XFS_ERROR(EFSCORRUPTED);
4022 }
4023
4024 if (XFS_FORCED_SHUTDOWN(mp))
4025 return XFS_ERROR(EIO);
4026
4027 XFS_STATS_INC(xs_blk_mapr);
4028
4029 ifp = XFS_IFORK_PTR(ip, whichfork);
Dave Chinner5c8ed202011-09-18 20:40:45 +00004030
4031 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4032 error = xfs_iread_extents(NULL, ip, whichfork);
4033 if (error)
4034 return error;
4035 }
4036
4037 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got, &prev);
4038 end = bno + len;
4039 obno = bno;
4040
4041 while (bno < end && n < *nmap) {
4042 /* Reading past eof, act as though there's a hole up to end. */
4043 if (eof)
4044 got.br_startoff = end;
4045 if (got.br_startoff > bno) {
4046 /* Reading in a hole. */
4047 mval->br_startoff = bno;
4048 mval->br_startblock = HOLESTARTBLOCK;
4049 mval->br_blockcount =
4050 XFS_FILBLKS_MIN(len, got.br_startoff - bno);
4051 mval->br_state = XFS_EXT_NORM;
4052 bno += mval->br_blockcount;
4053 len -= mval->br_blockcount;
4054 mval++;
4055 n++;
4056 continue;
4057 }
4058
4059 /* set up the extent map to return. */
4060 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4061 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4062
4063 /* If we're done, stop now. */
4064 if (bno >= end || n >= *nmap)
4065 break;
4066
4067 /* Else go on to the next record. */
4068 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4069 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4070 else
4071 eof = 1;
4072 }
4073 *nmap = n;
4074 return 0;
4075}
4076
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004077STATIC int
4078xfs_bmapi_reserve_delalloc(
4079 struct xfs_inode *ip,
4080 xfs_fileoff_t aoff,
4081 xfs_filblks_t len,
4082 struct xfs_bmbt_irec *got,
4083 struct xfs_bmbt_irec *prev,
4084 xfs_extnum_t *lastx,
4085 int eof)
4086{
4087 struct xfs_mount *mp = ip->i_mount;
4088 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4089 xfs_extlen_t alen;
4090 xfs_extlen_t indlen;
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004091 char rt = XFS_IS_REALTIME_INODE(ip);
4092 xfs_extlen_t extsz;
4093 int error;
4094
4095 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN);
4096 if (!eof)
4097 alen = XFS_FILBLKS_MIN(alen, got->br_startoff - aoff);
4098
4099 /* Figure out the extent size, adjust alen */
4100 extsz = xfs_get_extsz_hint(ip);
4101 if (extsz) {
4102 /*
4103 * Make sure we don't exceed a single extent length when we
4104 * align the extent by reducing length we are going to
4105 * allocate by the maximum amount extent size aligment may
4106 * require.
4107 */
4108 alen = XFS_FILBLKS_MIN(len, MAXEXTLEN - (2 * extsz - 1));
4109 error = xfs_bmap_extsize_align(mp, got, prev, extsz, rt, eof,
4110 1, 0, &aoff, &alen);
4111 ASSERT(!error);
4112 }
4113
4114 if (rt)
4115 extsz = alen / mp->m_sb.sb_rextsize;
4116
4117 /*
4118 * Make a transaction-less quota reservation for delayed allocation
4119 * blocks. This number gets adjusted later. We return if we haven't
4120 * allocated blocks already inside this loop.
4121 */
4122 error = xfs_trans_reserve_quota_nblks(NULL, ip, (long)alen, 0,
4123 rt ? XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4124 if (error)
4125 return error;
4126
4127 /*
4128 * Split changing sb for alen and indlen since they could be coming
4129 * from different places.
4130 */
4131 indlen = (xfs_extlen_t)xfs_bmap_worst_indlen(ip, alen);
4132 ASSERT(indlen > 0);
4133
4134 if (rt) {
4135 error = xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
4136 -((int64_t)extsz), 0);
4137 } else {
4138 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4139 -((int64_t)alen), 0);
4140 }
4141
4142 if (error)
4143 goto out_unreserve_quota;
4144
4145 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4146 -((int64_t)indlen), 0);
4147 if (error)
4148 goto out_unreserve_blocks;
4149
4150
4151 ip->i_delayed_blks += alen;
4152
4153 got->br_startoff = aoff;
4154 got->br_startblock = nullstartblock(indlen);
4155 got->br_blockcount = alen;
4156 got->br_state = XFS_EXT_NORM;
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00004157 xfs_bmap_add_extent_hole_delay(ip, lastx, got);
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004158
4159 /*
Christoph Hellwig1fd044d2011-09-18 20:40:49 +00004160 * Update our extent pointer, given that xfs_bmap_add_extent_hole_delay
4161 * might have merged it into one of the neighbouring ones.
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004162 */
4163 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, *lastx), got);
4164
4165 ASSERT(got->br_startoff <= aoff);
4166 ASSERT(got->br_startoff + got->br_blockcount >= aoff + alen);
4167 ASSERT(isnullstartblock(got->br_startblock));
4168 ASSERT(got->br_state == XFS_EXT_NORM);
4169 return 0;
4170
4171out_unreserve_blocks:
4172 if (rt)
4173 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS, extsz, 0);
4174 else
4175 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS, alen, 0);
4176out_unreserve_quota:
4177 if (XFS_IS_QUOTA_ON(mp))
Dave Chinnerea562ed2012-05-08 20:48:53 +10004178 xfs_trans_unreserve_quota_nblks(NULL, ip, (long)alen, 0, rt ?
Christoph Hellwigb64dfe42011-09-18 20:40:47 +00004179 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS);
4180 return error;
4181}
4182
Dave Chinner5c8ed202011-09-18 20:40:45 +00004183/*
Christoph Hellwig44032802011-09-18 20:40:48 +00004184 * Map file blocks to filesystem blocks, adding delayed allocations as needed.
4185 */
4186int
4187xfs_bmapi_delay(
4188 struct xfs_inode *ip, /* incore inode */
4189 xfs_fileoff_t bno, /* starting file offs. mapped */
4190 xfs_filblks_t len, /* length to map in file */
4191 struct xfs_bmbt_irec *mval, /* output: map values */
4192 int *nmap, /* i/o: mval size/count */
4193 int flags) /* XFS_BMAPI_... */
4194{
4195 struct xfs_mount *mp = ip->i_mount;
4196 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
4197 struct xfs_bmbt_irec got; /* current file extent record */
4198 struct xfs_bmbt_irec prev; /* previous file extent record */
4199 xfs_fileoff_t obno; /* old block number (offset) */
4200 xfs_fileoff_t end; /* end of mapped file region */
4201 xfs_extnum_t lastx; /* last useful extent number */
4202 int eof; /* we've hit the end of extents */
4203 int n = 0; /* current extent index */
4204 int error = 0;
4205
4206 ASSERT(*nmap >= 1);
4207 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4208 ASSERT(!(flags & ~XFS_BMAPI_ENTIRE));
Christoph Hellwigeef334e2013-12-06 12:30:17 -08004209 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig44032802011-09-18 20:40:48 +00004210
4211 if (unlikely(XFS_TEST_ERROR(
4212 (XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_EXTENTS &&
4213 XFS_IFORK_FORMAT(ip, XFS_DATA_FORK) != XFS_DINODE_FMT_BTREE),
4214 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
4215 XFS_ERROR_REPORT("xfs_bmapi_delay", XFS_ERRLEVEL_LOW, mp);
4216 return XFS_ERROR(EFSCORRUPTED);
4217 }
4218
4219 if (XFS_FORCED_SHUTDOWN(mp))
4220 return XFS_ERROR(EIO);
4221
4222 XFS_STATS_INC(xs_blk_mapw);
4223
4224 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4225 error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK);
4226 if (error)
4227 return error;
4228 }
4229
4230 xfs_bmap_search_extents(ip, bno, XFS_DATA_FORK, &eof, &lastx, &got, &prev);
4231 end = bno + len;
4232 obno = bno;
4233
4234 while (bno < end && n < *nmap) {
4235 if (eof || got.br_startoff > bno) {
4236 error = xfs_bmapi_reserve_delalloc(ip, bno, len, &got,
4237 &prev, &lastx, eof);
4238 if (error) {
4239 if (n == 0) {
4240 *nmap = 0;
4241 return error;
4242 }
4243 break;
4244 }
4245 }
4246
4247 /* set up the extent map to return. */
4248 xfs_bmapi_trim_map(mval, &got, &bno, len, obno, end, n, flags);
4249 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4250
4251 /* If we're done, stop now. */
4252 if (bno >= end || n >= *nmap)
4253 break;
4254
4255 /* Else go on to the next record. */
4256 prev = got;
4257 if (++lastx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t))
4258 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, lastx), &got);
4259 else
4260 eof = 1;
4261 }
4262
4263 *nmap = n;
4264 return 0;
4265}
4266
4267
Dave Chinner68988112013-08-12 20:49:42 +10004268int
Dave Chinnere04426b2012-10-05 11:06:59 +10004269__xfs_bmapi_allocate(
4270 struct xfs_bmalloca *bma)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004271{
4272 struct xfs_mount *mp = bma->ip->i_mount;
Dave Chinnere04426b2012-10-05 11:06:59 +10004273 int whichfork = (bma->flags & XFS_BMAPI_ATTRFORK) ?
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004274 XFS_ATTR_FORK : XFS_DATA_FORK;
4275 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004276 int tmp_logflags = 0;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004277 int error;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004278
Dave Chinnera99ebf42011-12-01 11:24:20 +00004279 ASSERT(bma->length > 0);
4280
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004281 /*
4282 * For the wasdelay case, we could also just allocate the stuff asked
4283 * for in this bmap call but that wouldn't be as good.
4284 */
4285 if (bma->wasdel) {
Dave Chinner963c30c2011-09-18 20:40:59 +00004286 bma->length = (xfs_extlen_t)bma->got.br_blockcount;
4287 bma->offset = bma->got.br_startoff;
Dave Chinnere0c3da52011-09-18 20:41:01 +00004288 if (bma->idx != NULLEXTNUM && bma->idx) {
4289 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx - 1),
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004290 &bma->prev);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004291 }
4292 } else {
Dave Chinner963c30c2011-09-18 20:40:59 +00004293 bma->length = XFS_FILBLKS_MIN(bma->length, MAXEXTLEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004294 if (!bma->eof)
Dave Chinner963c30c2011-09-18 20:40:59 +00004295 bma->length = XFS_FILBLKS_MIN(bma->length,
Dave Chinner3a756672011-09-18 20:40:58 +00004296 bma->got.br_startoff - bma->offset);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004297 }
4298
4299 /*
4300 * Indicate if this is the first user data in the file, or just any
4301 * user data.
4302 */
Dave Chinnere04426b2012-10-05 11:06:59 +10004303 if (!(bma->flags & XFS_BMAPI_METADATA)) {
Dave Chinner963c30c2011-09-18 20:40:59 +00004304 bma->userdata = (bma->offset == 0) ?
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004305 XFS_ALLOC_INITIAL_USER_DATA : XFS_ALLOC_USERDATA;
4306 }
4307
Dave Chinnere04426b2012-10-05 11:06:59 +10004308 bma->minlen = (bma->flags & XFS_BMAPI_CONTIG) ? bma->length : 1;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004309
4310 /*
4311 * Only want to do the alignment at the eof if it is userdata and
4312 * allocation length is larger than a stripe unit.
4313 */
Dave Chinner963c30c2011-09-18 20:40:59 +00004314 if (mp->m_dalign && bma->length >= mp->m_dalign &&
Dave Chinnere04426b2012-10-05 11:06:59 +10004315 !(bma->flags & XFS_BMAPI_METADATA) && whichfork == XFS_DATA_FORK) {
Dave Chinner1b164472011-09-18 20:40:55 +00004316 error = xfs_bmap_isaeof(bma, whichfork);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004317 if (error)
4318 return error;
4319 }
4320
4321 error = xfs_bmap_alloc(bma);
4322 if (error)
4323 return error;
4324
Dave Chinner0937e0f2011-09-18 20:40:57 +00004325 if (bma->flist->xbf_low)
4326 bma->minleft = 0;
Dave Chinner29c8d172011-09-18 20:41:00 +00004327 if (bma->cur)
4328 bma->cur->bc_private.b.firstblock = *bma->firstblock;
Dave Chinner963c30c2011-09-18 20:40:59 +00004329 if (bma->blkno == NULLFSBLOCK)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004330 return 0;
Dave Chinner29c8d172011-09-18 20:41:00 +00004331 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4332 bma->cur = xfs_bmbt_init_cursor(mp, bma->tp, bma->ip, whichfork);
4333 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4334 bma->cur->bc_private.b.flist = bma->flist;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004335 }
4336 /*
4337 * Bump the number of extents we've allocated
4338 * in this call.
4339 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004340 bma->nallocs++;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004341
Dave Chinner29c8d172011-09-18 20:41:00 +00004342 if (bma->cur)
4343 bma->cur->bc_private.b.flags =
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004344 bma->wasdel ? XFS_BTCUR_BPRV_WASDEL : 0;
4345
Dave Chinner963c30c2011-09-18 20:40:59 +00004346 bma->got.br_startoff = bma->offset;
4347 bma->got.br_startblock = bma->blkno;
4348 bma->got.br_blockcount = bma->length;
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004349 bma->got.br_state = XFS_EXT_NORM;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004350
4351 /*
4352 * A wasdelay extent has been initialized, so shouldn't be flagged
4353 * as unwritten.
4354 */
Dave Chinnere04426b2012-10-05 11:06:59 +10004355 if (!bma->wasdel && (bma->flags & XFS_BMAPI_PREALLOC) &&
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004356 xfs_sb_version_hasextflgbit(&mp->m_sb))
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004357 bma->got.br_state = XFS_EXT_UNWRITTEN;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004358
Christoph Hellwigc6534242011-09-18 20:41:05 +00004359 if (bma->wasdel)
Christoph Hellwig572a4cf2011-09-18 20:41:04 +00004360 error = xfs_bmap_add_extent_delay_real(bma);
Christoph Hellwigc6534242011-09-18 20:41:05 +00004361 else
4362 error = xfs_bmap_add_extent_hole_real(bma, whichfork);
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004363
Christoph Hellwigc315c902011-09-18 20:41:02 +00004364 bma->logflags |= tmp_logflags;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004365 if (error)
4366 return error;
4367
4368 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004369 * Update our extent pointer, given that xfs_bmap_add_extent_delay_real
4370 * or xfs_bmap_add_extent_hole_real might have merged it into one of
4371 * the neighbouring ones.
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004372 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004373 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004374
Dave Chinner963c30c2011-09-18 20:40:59 +00004375 ASSERT(bma->got.br_startoff <= bma->offset);
4376 ASSERT(bma->got.br_startoff + bma->got.br_blockcount >=
4377 bma->offset + bma->length);
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004378 ASSERT(bma->got.br_state == XFS_EXT_NORM ||
4379 bma->got.br_state == XFS_EXT_UNWRITTEN);
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004380 return 0;
4381}
4382
Dave Chinnerb447fe52011-09-18 20:40:51 +00004383STATIC int
4384xfs_bmapi_convert_unwritten(
4385 struct xfs_bmalloca *bma,
4386 struct xfs_bmbt_irec *mval,
4387 xfs_filblks_t len,
Christoph Hellwigc315c902011-09-18 20:41:02 +00004388 int flags)
Dave Chinnerb447fe52011-09-18 20:40:51 +00004389{
4390 int whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4391 XFS_ATTR_FORK : XFS_DATA_FORK;
4392 struct xfs_ifork *ifp = XFS_IFORK_PTR(bma->ip, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004393 int tmp_logflags = 0;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004394 int error;
4395
Dave Chinnerb447fe52011-09-18 20:40:51 +00004396 /* check if we need to do unwritten->real conversion */
4397 if (mval->br_state == XFS_EXT_UNWRITTEN &&
4398 (flags & XFS_BMAPI_PREALLOC))
4399 return 0;
4400
4401 /* check if we need to do real->unwritten conversion */
4402 if (mval->br_state == XFS_EXT_NORM &&
4403 (flags & (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT)) !=
4404 (XFS_BMAPI_PREALLOC | XFS_BMAPI_CONVERT))
4405 return 0;
4406
4407 /*
4408 * Modify (by adding) the state flag, if writing.
4409 */
4410 ASSERT(mval->br_blockcount <= len);
Dave Chinner29c8d172011-09-18 20:41:00 +00004411 if ((ifp->if_flags & XFS_IFBROOT) && !bma->cur) {
4412 bma->cur = xfs_bmbt_init_cursor(bma->ip->i_mount, bma->tp,
Dave Chinnerb447fe52011-09-18 20:40:51 +00004413 bma->ip, whichfork);
Dave Chinner29c8d172011-09-18 20:41:00 +00004414 bma->cur->bc_private.b.firstblock = *bma->firstblock;
4415 bma->cur->bc_private.b.flist = bma->flist;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004416 }
4417 mval->br_state = (mval->br_state == XFS_EXT_UNWRITTEN)
4418 ? XFS_EXT_NORM : XFS_EXT_UNWRITTEN;
4419
Dave Chinnere0c3da52011-09-18 20:41:01 +00004420 error = xfs_bmap_add_extent_unwritten_real(bma->tp, bma->ip, &bma->idx,
Christoph Hellwigc315c902011-09-18 20:41:02 +00004421 &bma->cur, mval, bma->firstblock, bma->flist,
4422 &tmp_logflags);
4423 bma->logflags |= tmp_logflags;
Dave Chinnerb447fe52011-09-18 20:40:51 +00004424 if (error)
4425 return error;
4426
4427 /*
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00004428 * Update our extent pointer, given that
4429 * xfs_bmap_add_extent_unwritten_real might have merged it into one
4430 * of the neighbouring ones.
Dave Chinnerb447fe52011-09-18 20:40:51 +00004431 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004432 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma->idx), &bma->got);
Dave Chinnerb447fe52011-09-18 20:40:51 +00004433
4434 /*
4435 * We may have combined previously unwritten space with written space,
4436 * so generate another request.
4437 */
4438 if (mval->br_blockcount < len)
4439 return EAGAIN;
4440 return 0;
4441}
4442
Christoph Hellwig44032802011-09-18 20:40:48 +00004443/*
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004444 * Map file blocks to filesystem blocks, and allocate blocks or convert the
4445 * extent state if necessary. Details behaviour is controlled by the flags
4446 * parameter. Only allocates blocks from a single allocation group, to avoid
4447 * locking problems.
4448 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 * The returned value in "firstblock" from the first call in a transaction
4450 * must be remembered and presented to subsequent calls in "firstblock".
4451 * An upper bound for the number of blocks to be allocated is supplied to
4452 * the first call in "total"; if no allocation group has that many free
4453 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
4454 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004455int
4456xfs_bmapi_write(
4457 struct xfs_trans *tp, /* transaction pointer */
4458 struct xfs_inode *ip, /* incore inode */
4459 xfs_fileoff_t bno, /* starting file offs. mapped */
4460 xfs_filblks_t len, /* length to map in file */
4461 int flags, /* XFS_BMAPI_... */
4462 xfs_fsblock_t *firstblock, /* first allocated block
4463 controls a.g. for allocs */
4464 xfs_extlen_t total, /* total blocks needed */
4465 struct xfs_bmbt_irec *mval, /* output: map values */
4466 int *nmap, /* i/o: mval size/count */
4467 struct xfs_bmap_free *flist) /* i/o: list extents to free */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468{
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004469 struct xfs_mount *mp = ip->i_mount;
4470 struct xfs_ifork *ifp;
Dave Chinnera30b0362013-09-02 20:49:36 +10004471 struct xfs_bmalloca bma = { NULL }; /* args for xfs_bmap_alloc */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004472 xfs_fileoff_t end; /* end of mapped file region */
4473 int eof; /* after the end of extents */
4474 int error; /* error return */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004475 int n; /* current extent index */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004476 xfs_fileoff_t obno; /* old block number (offset) */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004477 int whichfork; /* data or attr fork */
4478 char inhole; /* current location is hole in file */
4479 char wasdelay; /* old extent was delayed */
4480
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481#ifdef DEBUG
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004482 xfs_fileoff_t orig_bno; /* original block number value */
4483 int orig_flags; /* original flags arg value */
4484 xfs_filblks_t orig_len; /* original value of len arg */
4485 struct xfs_bmbt_irec *orig_mval; /* original value of mval */
4486 int orig_nmap; /* original value of *nmap */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
4488 orig_bno = bno;
4489 orig_len = len;
4490 orig_flags = flags;
4491 orig_mval = mval;
4492 orig_nmap = *nmap;
4493#endif
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004494 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
4495 XFS_ATTR_FORK : XFS_DATA_FORK;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004496
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 ASSERT(*nmap >= 1);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004498 ASSERT(*nmap <= XFS_BMAP_MAX_NMAP);
4499 ASSERT(!(flags & XFS_BMAPI_IGSTATE));
4500 ASSERT(tp != NULL);
Dave Chinnera99ebf42011-12-01 11:24:20 +00004501 ASSERT(len > 0);
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004502 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_LOCAL);
Christoph Hellwigeef334e2013-12-06 12:30:17 -08004503 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004504
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 if (unlikely(XFS_TEST_ERROR(
4506 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
Dave Chinnerf3508bc2013-07-10 07:04:00 +10004507 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004509 XFS_ERROR_REPORT("xfs_bmapi_write", XFS_ERRLEVEL_LOW, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 return XFS_ERROR(EFSCORRUPTED);
4511 }
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004512
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 if (XFS_FORCED_SHUTDOWN(mp))
4514 return XFS_ERROR(EIO);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004515
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 ifp = XFS_IFORK_PTR(ip, whichfork);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004517
4518 XFS_STATS_INC(xs_blk_mapw);
4519
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004520 if (*firstblock == NULLFSBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE)
Dave Chinner0937e0f2011-09-18 20:40:57 +00004522 bma.minleft = be16_to_cpu(ifp->if_broot->bb_level) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 else
Dave Chinner0937e0f2011-09-18 20:40:57 +00004524 bma.minleft = 1;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004525 } else {
Dave Chinner0937e0f2011-09-18 20:40:57 +00004526 bma.minleft = 0;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004527 }
4528
4529 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
4530 error = xfs_iread_extents(tp, ip, whichfork);
4531 if (error)
4532 goto error0;
4533 }
4534
Dave Chinnere0c3da52011-09-18 20:41:01 +00004535 xfs_bmap_search_extents(ip, bno, whichfork, &eof, &bma.idx, &bma.got,
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004536 &bma.prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 n = 0;
4538 end = bno + len;
4539 obno = bno;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004540
4541 bma.tp = tp;
4542 bma.ip = ip;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004543 bma.total = total;
4544 bma.userdata = 0;
Dave Chinner0937e0f2011-09-18 20:40:57 +00004545 bma.flist = flist;
4546 bma.firstblock = firstblock;
Christoph Hellwigb4e91812010-06-23 18:11:15 +10004547
Brian Foster9e96fe62013-01-17 13:11:29 -05004548 if (flags & XFS_BMAPI_STACK_SWITCH)
4549 bma.stack_switch = 1;
4550
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 while (bno < end && n < *nmap) {
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004552 inhole = eof || bma.got.br_startoff > bno;
4553 wasdelay = !inhole && isnullstartblock(bma.got.br_startblock);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 /*
4556 * First, deal with the hole before the allocated space
4557 * that we found, if any.
4558 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004559 if (inhole || wasdelay) {
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004560 bma.eof = eof;
4561 bma.conv = !!(flags & XFS_BMAPI_CONVERT);
4562 bma.wasdel = wasdelay;
Dave Chinner3a756672011-09-18 20:40:58 +00004563 bma.offset = bno;
Dave Chinnere04426b2012-10-05 11:06:59 +10004564 bma.flags = flags;
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004565
Dave Chinnera99ebf42011-12-01 11:24:20 +00004566 /*
4567 * There's a 32/64 bit type mismatch between the
4568 * allocation length request (which can be 64 bits in
4569 * length) and the bma length request, which is
4570 * xfs_extlen_t and therefore 32 bits. Hence we have to
4571 * check for 32-bit overflows and handle them here.
4572 */
4573 if (len > (xfs_filblks_t)MAXEXTLEN)
4574 bma.length = MAXEXTLEN;
4575 else
4576 bma.length = len;
4577
4578 ASSERT(len > 0);
4579 ASSERT(bma.length > 0);
Dave Chinnere04426b2012-10-05 11:06:59 +10004580 error = xfs_bmapi_allocate(&bma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 if (error)
4582 goto error0;
Dave Chinner3a756672011-09-18 20:40:58 +00004583 if (bma.blkno == NULLFSBLOCK)
Dave Chinner7e47a4e2011-09-18 20:40:50 +00004584 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 }
Christoph Hellwig44032802011-09-18 20:40:48 +00004586
Dave Chinneraef9a892011-09-18 20:40:44 +00004587 /* Deal with the allocated space we found. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004588 xfs_bmapi_trim_map(mval, &bma.got, &bno, len, obno,
4589 end, n, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590
Dave Chinnerb447fe52011-09-18 20:40:51 +00004591 /* Execute unwritten extent conversion if necessary */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004592 error = xfs_bmapi_convert_unwritten(&bma, mval, len, flags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004593 if (error == EAGAIN)
4594 continue;
4595 if (error)
4596 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
Dave Chinneraef9a892011-09-18 20:40:44 +00004598 /* update the extent map to return */
4599 xfs_bmapi_update_map(&mval, &bno, &len, obno, end, &n, flags);
4600
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 /*
4602 * If we're done, stop now. Stop when we've allocated
4603 * XFS_BMAP_MAX_NMAP extents no matter what. Otherwise
4604 * the transaction may get too big.
4605 */
Dave Chinnere0c3da52011-09-18 20:41:01 +00004606 if (bno >= end || n >= *nmap || bma.nallocs >= *nmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 break;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004608
4609 /* Else go on to the next record. */
Dave Chinnerbaf41a52011-09-18 20:40:56 +00004610 bma.prev = bma.got;
Dave Chinnere0c3da52011-09-18 20:41:01 +00004611 if (++bma.idx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t)) {
4612 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, bma.idx),
4613 &bma.got);
4614 } else
Christoph Hellwig5690f922011-05-11 15:04:07 +00004615 eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 *nmap = n;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004618
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 /*
4620 * Transform from btree to extents, give it cur.
4621 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004622 if (xfs_bmap_wants_extents(ip, whichfork)) {
Christoph Hellwigc315c902011-09-18 20:41:02 +00004623 int tmp_logflags = 0;
4624
Dave Chinner29c8d172011-09-18 20:41:00 +00004625 ASSERT(bma.cur);
4626 error = xfs_bmap_btree_to_extents(tp, ip, bma.cur,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 &tmp_logflags, whichfork);
Christoph Hellwigc315c902011-09-18 20:41:02 +00004628 bma.logflags |= tmp_logflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 if (error)
4630 goto error0;
4631 }
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004632
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00004634 XFS_IFORK_NEXTENTS(ip, whichfork) >
4635 XFS_IFORK_MAXEXT(ip, whichfork));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637error0:
4638 /*
4639 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11004640 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004642 if ((bma.logflags & xfs_ilog_fext(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Christoph Hellwigc315c902011-09-18 20:41:02 +00004644 bma.logflags &= ~xfs_ilog_fext(whichfork);
4645 else if ((bma.logflags & xfs_ilog_fbroot(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
Christoph Hellwigc315c902011-09-18 20:41:02 +00004647 bma.logflags &= ~xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 /*
4649 * Log whatever the flags say, even if error. Otherwise we might miss
4650 * detecting a case where the data is changed, there's an error,
4651 * and it's not logged so we don't shutdown when we should.
4652 */
Christoph Hellwigc315c902011-09-18 20:41:02 +00004653 if (bma.logflags)
4654 xfs_trans_log_inode(tp, ip, bma.logflags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00004655
Dave Chinner29c8d172011-09-18 20:41:00 +00004656 if (bma.cur) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 if (!error) {
4658 ASSERT(*firstblock == NULLFSBLOCK ||
4659 XFS_FSB_TO_AGNO(mp, *firstblock) ==
4660 XFS_FSB_TO_AGNO(mp,
Dave Chinner29c8d172011-09-18 20:41:00 +00004661 bma.cur->bc_private.b.firstblock) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 (flist->xbf_low &&
4663 XFS_FSB_TO_AGNO(mp, *firstblock) <
4664 XFS_FSB_TO_AGNO(mp,
Dave Chinner29c8d172011-09-18 20:41:00 +00004665 bma.cur->bc_private.b.firstblock)));
4666 *firstblock = bma.cur->bc_private.b.firstblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667 }
Dave Chinner29c8d172011-09-18 20:41:00 +00004668 xfs_btree_del_cursor(bma.cur,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
4670 }
4671 if (!error)
4672 xfs_bmap_validate_ret(orig_bno, orig_len, orig_flags, orig_mval,
4673 orig_nmap, *nmap);
4674 return error;
4675}
4676
4677/*
Dave Chinner9e5987a72013-02-25 12:31:26 +11004678 * Called by xfs_bmapi to update file extent records and the btree
4679 * after removing space (or undoing a delayed allocation).
4680 */
4681STATIC int /* error */
4682xfs_bmap_del_extent(
4683 xfs_inode_t *ip, /* incore inode pointer */
4684 xfs_trans_t *tp, /* current transaction pointer */
4685 xfs_extnum_t *idx, /* extent number to update/delete */
4686 xfs_bmap_free_t *flist, /* list of extents to be freed */
4687 xfs_btree_cur_t *cur, /* if null, not a btree */
4688 xfs_bmbt_irec_t *del, /* data to remove from extents */
4689 int *logflagsp, /* inode logging flags */
4690 int whichfork) /* data or attr fork */
4691{
4692 xfs_filblks_t da_new; /* new delay-alloc indirect blocks */
4693 xfs_filblks_t da_old; /* old delay-alloc indirect blocks */
4694 xfs_fsblock_t del_endblock=0; /* first block past del */
4695 xfs_fileoff_t del_endoff; /* first offset past del */
4696 int delay; /* current block is delayed allocated */
4697 int do_fx; /* free extent at end of routine */
4698 xfs_bmbt_rec_host_t *ep; /* current extent entry pointer */
4699 int error; /* error return value */
4700 int flags; /* inode logging flags */
4701 xfs_bmbt_irec_t got; /* current extent entry */
4702 xfs_fileoff_t got_endoff; /* first offset past got */
4703 int i; /* temp state */
4704 xfs_ifork_t *ifp; /* inode fork pointer */
4705 xfs_mount_t *mp; /* mount structure */
4706 xfs_filblks_t nblks; /* quota/sb block count */
4707 xfs_bmbt_irec_t new; /* new record to be inserted */
4708 /* REFERENCED */
4709 uint qfield; /* quota field to update */
4710 xfs_filblks_t temp; /* for indirect length calculations */
4711 xfs_filblks_t temp2; /* for indirect length calculations */
4712 int state = 0;
4713
4714 XFS_STATS_INC(xs_del_exlist);
4715
4716 if (whichfork == XFS_ATTR_FORK)
4717 state |= BMAP_ATTRFORK;
4718
4719 mp = ip->i_mount;
4720 ifp = XFS_IFORK_PTR(ip, whichfork);
4721 ASSERT((*idx >= 0) && (*idx < ifp->if_bytes /
4722 (uint)sizeof(xfs_bmbt_rec_t)));
4723 ASSERT(del->br_blockcount > 0);
4724 ep = xfs_iext_get_ext(ifp, *idx);
4725 xfs_bmbt_get_all(ep, &got);
4726 ASSERT(got.br_startoff <= del->br_startoff);
4727 del_endoff = del->br_startoff + del->br_blockcount;
4728 got_endoff = got.br_startoff + got.br_blockcount;
4729 ASSERT(got_endoff >= del_endoff);
4730 delay = isnullstartblock(got.br_startblock);
4731 ASSERT(isnullstartblock(del->br_startblock) == delay);
4732 flags = 0;
4733 qfield = 0;
4734 error = 0;
4735 /*
4736 * If deleting a real allocation, must free up the disk space.
4737 */
4738 if (!delay) {
4739 flags = XFS_ILOG_CORE;
4740 /*
4741 * Realtime allocation. Free it and record di_nblocks update.
4742 */
4743 if (whichfork == XFS_DATA_FORK && XFS_IS_REALTIME_INODE(ip)) {
4744 xfs_fsblock_t bno;
4745 xfs_filblks_t len;
4746
4747 ASSERT(do_mod(del->br_blockcount,
4748 mp->m_sb.sb_rextsize) == 0);
4749 ASSERT(do_mod(del->br_startblock,
4750 mp->m_sb.sb_rextsize) == 0);
4751 bno = del->br_startblock;
4752 len = del->br_blockcount;
4753 do_div(bno, mp->m_sb.sb_rextsize);
4754 do_div(len, mp->m_sb.sb_rextsize);
4755 error = xfs_rtfree_extent(tp, bno, (xfs_extlen_t)len);
4756 if (error)
4757 goto done;
4758 do_fx = 0;
4759 nblks = len * mp->m_sb.sb_rextsize;
4760 qfield = XFS_TRANS_DQ_RTBCOUNT;
4761 }
4762 /*
4763 * Ordinary allocation.
4764 */
4765 else {
4766 do_fx = 1;
4767 nblks = del->br_blockcount;
4768 qfield = XFS_TRANS_DQ_BCOUNT;
4769 }
4770 /*
4771 * Set up del_endblock and cur for later.
4772 */
4773 del_endblock = del->br_startblock + del->br_blockcount;
4774 if (cur) {
4775 if ((error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
4776 got.br_startblock, got.br_blockcount,
4777 &i)))
4778 goto done;
4779 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4780 }
4781 da_old = da_new = 0;
4782 } else {
4783 da_old = startblockval(got.br_startblock);
4784 da_new = 0;
4785 nblks = 0;
4786 do_fx = 0;
4787 }
4788 /*
4789 * Set flag value to use in switch statement.
4790 * Left-contig is 2, right-contig is 1.
4791 */
4792 switch (((got.br_startoff == del->br_startoff) << 1) |
4793 (got_endoff == del_endoff)) {
4794 case 3:
4795 /*
4796 * Matches the whole extent. Delete the entry.
4797 */
4798 xfs_iext_remove(ip, *idx, 1,
4799 whichfork == XFS_ATTR_FORK ? BMAP_ATTRFORK : 0);
4800 --*idx;
4801 if (delay)
4802 break;
4803
4804 XFS_IFORK_NEXT_SET(ip, whichfork,
4805 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
4806 flags |= XFS_ILOG_CORE;
4807 if (!cur) {
4808 flags |= xfs_ilog_fext(whichfork);
4809 break;
4810 }
4811 if ((error = xfs_btree_delete(cur, &i)))
4812 goto done;
4813 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4814 break;
4815
4816 case 2:
4817 /*
4818 * Deleting the first part of the extent.
4819 */
4820 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4821 xfs_bmbt_set_startoff(ep, del_endoff);
4822 temp = got.br_blockcount - del->br_blockcount;
4823 xfs_bmbt_set_blockcount(ep, temp);
4824 if (delay) {
4825 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4826 da_old);
4827 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4828 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4829 da_new = temp;
4830 break;
4831 }
4832 xfs_bmbt_set_startblock(ep, del_endblock);
4833 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4834 if (!cur) {
4835 flags |= xfs_ilog_fext(whichfork);
4836 break;
4837 }
4838 if ((error = xfs_bmbt_update(cur, del_endoff, del_endblock,
4839 got.br_blockcount - del->br_blockcount,
4840 got.br_state)))
4841 goto done;
4842 break;
4843
4844 case 1:
4845 /*
4846 * Deleting the last part of the extent.
4847 */
4848 temp = got.br_blockcount - del->br_blockcount;
4849 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4850 xfs_bmbt_set_blockcount(ep, temp);
4851 if (delay) {
4852 temp = XFS_FILBLKS_MIN(xfs_bmap_worst_indlen(ip, temp),
4853 da_old);
4854 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4855 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4856 da_new = temp;
4857 break;
4858 }
4859 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4860 if (!cur) {
4861 flags |= xfs_ilog_fext(whichfork);
4862 break;
4863 }
4864 if ((error = xfs_bmbt_update(cur, got.br_startoff,
4865 got.br_startblock,
4866 got.br_blockcount - del->br_blockcount,
4867 got.br_state)))
4868 goto done;
4869 break;
4870
4871 case 0:
4872 /*
4873 * Deleting the middle of the extent.
4874 */
4875 temp = del->br_startoff - got.br_startoff;
4876 trace_xfs_bmap_pre_update(ip, *idx, state, _THIS_IP_);
4877 xfs_bmbt_set_blockcount(ep, temp);
4878 new.br_startoff = del_endoff;
4879 temp2 = got_endoff - del_endoff;
4880 new.br_blockcount = temp2;
4881 new.br_state = got.br_state;
4882 if (!delay) {
4883 new.br_startblock = del_endblock;
4884 flags |= XFS_ILOG_CORE;
4885 if (cur) {
4886 if ((error = xfs_bmbt_update(cur,
4887 got.br_startoff,
4888 got.br_startblock, temp,
4889 got.br_state)))
4890 goto done;
4891 if ((error = xfs_btree_increment(cur, 0, &i)))
4892 goto done;
4893 cur->bc_rec.b = new;
4894 error = xfs_btree_insert(cur, &i);
4895 if (error && error != ENOSPC)
4896 goto done;
4897 /*
4898 * If get no-space back from btree insert,
4899 * it tried a split, and we have a zero
4900 * block reservation.
4901 * Fix up our state and return the error.
4902 */
4903 if (error == ENOSPC) {
4904 /*
4905 * Reset the cursor, don't trust
4906 * it after any insert operation.
4907 */
4908 if ((error = xfs_bmbt_lookup_eq(cur,
4909 got.br_startoff,
4910 got.br_startblock,
4911 temp, &i)))
4912 goto done;
4913 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4914 /*
4915 * Update the btree record back
4916 * to the original value.
4917 */
4918 if ((error = xfs_bmbt_update(cur,
4919 got.br_startoff,
4920 got.br_startblock,
4921 got.br_blockcount,
4922 got.br_state)))
4923 goto done;
4924 /*
4925 * Reset the extent record back
4926 * to the original value.
4927 */
4928 xfs_bmbt_set_blockcount(ep,
4929 got.br_blockcount);
4930 flags = 0;
4931 error = XFS_ERROR(ENOSPC);
4932 goto done;
4933 }
4934 XFS_WANT_CORRUPTED_GOTO(i == 1, done);
4935 } else
4936 flags |= xfs_ilog_fext(whichfork);
4937 XFS_IFORK_NEXT_SET(ip, whichfork,
4938 XFS_IFORK_NEXTENTS(ip, whichfork) + 1);
4939 } else {
4940 ASSERT(whichfork == XFS_DATA_FORK);
4941 temp = xfs_bmap_worst_indlen(ip, temp);
4942 xfs_bmbt_set_startblock(ep, nullstartblock((int)temp));
4943 temp2 = xfs_bmap_worst_indlen(ip, temp2);
4944 new.br_startblock = nullstartblock((int)temp2);
4945 da_new = temp + temp2;
4946 while (da_new > da_old) {
4947 if (temp) {
4948 temp--;
4949 da_new--;
4950 xfs_bmbt_set_startblock(ep,
4951 nullstartblock((int)temp));
4952 }
4953 if (da_new == da_old)
4954 break;
4955 if (temp2) {
4956 temp2--;
4957 da_new--;
4958 new.br_startblock =
4959 nullstartblock((int)temp2);
4960 }
4961 }
4962 }
4963 trace_xfs_bmap_post_update(ip, *idx, state, _THIS_IP_);
4964 xfs_iext_insert(ip, *idx + 1, 1, &new, state);
4965 ++*idx;
4966 break;
4967 }
4968 /*
4969 * If we need to, add to list of extents to delete.
4970 */
4971 if (do_fx)
4972 xfs_bmap_add_free(del->br_startblock, del->br_blockcount, flist,
4973 mp);
4974 /*
4975 * Adjust inode # blocks in the file.
4976 */
4977 if (nblks)
4978 ip->i_d.di_nblocks -= nblks;
4979 /*
4980 * Adjust quota data.
4981 */
4982 if (qfield)
4983 xfs_trans_mod_dquot_byino(tp, ip, qfield, (long)-nblks);
4984
4985 /*
4986 * Account for change in delayed indirect blocks.
4987 * Nothing to do for disk quota accounting here.
4988 */
4989 ASSERT(da_old >= da_new);
4990 if (da_old > da_new) {
4991 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
4992 (int64_t)(da_old - da_new), 0);
4993 }
4994done:
4995 *logflagsp = flags;
4996 return error;
4997}
4998
4999/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000 * Unmap (remove) blocks from a file.
5001 * If nexts is nonzero then the number of extents to remove is limited to
5002 * that value. If not all extents in the block range can be removed then
5003 * *done is set.
5004 */
5005int /* error */
5006xfs_bunmapi(
5007 xfs_trans_t *tp, /* transaction pointer */
5008 struct xfs_inode *ip, /* incore inode */
5009 xfs_fileoff_t bno, /* starting offset to unmap */
5010 xfs_filblks_t len, /* length to unmap in file */
5011 int flags, /* misc flags */
5012 xfs_extnum_t nexts, /* number of extents max */
5013 xfs_fsblock_t *firstblock, /* first allocated block
5014 controls a.g. for allocs */
5015 xfs_bmap_free_t *flist, /* i/o: list extents to free */
5016 int *done) /* set if not done yet */
5017{
5018 xfs_btree_cur_t *cur; /* bmap btree cursor */
5019 xfs_bmbt_irec_t del; /* extent being deleted */
5020 int eof; /* is deleting at eof */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10005021 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 int error; /* error return value */
5023 xfs_extnum_t extno; /* extent number in list */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005024 xfs_bmbt_irec_t got; /* current extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 xfs_ifork_t *ifp; /* inode fork pointer */
5026 int isrt; /* freeing in rt area */
5027 xfs_extnum_t lastx; /* last extent index used */
5028 int logflags; /* transaction logging flags */
5029 xfs_extlen_t mod; /* rt extent offset */
5030 xfs_mount_t *mp; /* mount structure */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005031 xfs_extnum_t nextents; /* number of file extents */
5032 xfs_bmbt_irec_t prev; /* previous extent record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 xfs_fileoff_t start; /* first file offset deleted */
5034 int tmp_logflags; /* partial logging flags */
5035 int wasdel; /* was a delayed alloc extent */
5036 int whichfork; /* data or attribute fork */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 xfs_fsblock_t sum;
5038
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00005039 trace_xfs_bunmap(ip, bno, len, flags, _RET_IP_);
5040
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 whichfork = (flags & XFS_BMAPI_ATTRFORK) ?
5042 XFS_ATTR_FORK : XFS_DATA_FORK;
5043 ifp = XFS_IFORK_PTR(ip, whichfork);
5044 if (unlikely(
5045 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5046 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
5047 XFS_ERROR_REPORT("xfs_bunmapi", XFS_ERRLEVEL_LOW,
5048 ip->i_mount);
5049 return XFS_ERROR(EFSCORRUPTED);
5050 }
5051 mp = ip->i_mount;
5052 if (XFS_FORCED_SHUTDOWN(mp))
5053 return XFS_ERROR(EIO);
Christoph Hellwig54893272011-05-11 15:04:03 +00005054
Christoph Hellwigeef334e2013-12-06 12:30:17 -08005055 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 ASSERT(len > 0);
5057 ASSERT(nexts >= 0);
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005058
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 if (!(ifp->if_flags & XFS_IFEXTENTS) &&
5060 (error = xfs_iread_extents(tp, ip, whichfork)))
5061 return error;
5062 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
5063 if (nextents == 0) {
5064 *done = 1;
5065 return 0;
5066 }
5067 XFS_STATS_INC(xs_blk_unmap);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005068 isrt = (whichfork == XFS_DATA_FORK) && XFS_IS_REALTIME_INODE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 start = bno;
5070 bno = start + len - 1;
5071 ep = xfs_bmap_search_extents(ip, bno, whichfork, &eof, &lastx, &got,
5072 &prev);
Christoph Hellwigb4e91812010-06-23 18:11:15 +10005073
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074 /*
5075 * Check to see if the given block number is past the end of the
5076 * file, back up to the last block if so...
5077 */
5078 if (eof) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005079 ep = xfs_iext_get_ext(ifp, --lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 xfs_bmbt_get_all(ep, &got);
5081 bno = got.br_startoff + got.br_blockcount - 1;
5082 }
5083 logflags = 0;
5084 if (ifp->if_flags & XFS_IFBROOT) {
5085 ASSERT(XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_BTREE);
Christoph Hellwig561f7d12008-10-30 16:53:59 +11005086 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087 cur->bc_private.b.firstblock = *firstblock;
5088 cur->bc_private.b.flist = flist;
5089 cur->bc_private.b.flags = 0;
5090 } else
5091 cur = NULL;
Kamal Dasu5575acc2012-02-23 00:41:39 +00005092
5093 if (isrt) {
5094 /*
5095 * Synchronize by locking the bitmap inode.
5096 */
5097 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL);
5098 xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
5099 }
5100
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 extno = 0;
5102 while (bno != (xfs_fileoff_t)-1 && bno >= start && lastx >= 0 &&
5103 (nexts == 0 || extno < nexts)) {
5104 /*
5105 * Is the found extent after a hole in which bno lives?
5106 * Just back up to the previous extent, if so.
5107 */
5108 if (got.br_startoff > bno) {
5109 if (--lastx < 0)
5110 break;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005111 ep = xfs_iext_get_ext(ifp, lastx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 xfs_bmbt_get_all(ep, &got);
5113 }
5114 /*
5115 * Is the last block of this extent before the range
5116 * we're supposed to delete? If so, we're done.
5117 */
5118 bno = XFS_FILEOFF_MIN(bno,
5119 got.br_startoff + got.br_blockcount - 1);
5120 if (bno < start)
5121 break;
5122 /*
5123 * Then deal with the (possibly delayed) allocated space
5124 * we found.
5125 */
5126 ASSERT(ep != NULL);
5127 del = got;
Eric Sandeen9d87c312009-01-14 23:22:07 -06005128 wasdel = isnullstartblock(del.br_startblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129 if (got.br_startoff < start) {
5130 del.br_startoff = start;
5131 del.br_blockcount -= start - got.br_startoff;
5132 if (!wasdel)
5133 del.br_startblock += start - got.br_startoff;
5134 }
5135 if (del.br_startoff + del.br_blockcount > bno + 1)
5136 del.br_blockcount = bno + 1 - del.br_startoff;
5137 sum = del.br_startblock + del.br_blockcount;
5138 if (isrt &&
5139 (mod = do_mod(sum, mp->m_sb.sb_rextsize))) {
5140 /*
5141 * Realtime extent not lined up at the end.
5142 * The extent could have been split into written
5143 * and unwritten pieces, or we could just be
5144 * unmapping part of it. But we can't really
5145 * get rid of part of a realtime extent.
5146 */
5147 if (del.br_state == XFS_EXT_UNWRITTEN ||
Eric Sandeen62118702008-03-06 13:44:28 +11005148 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 /*
5150 * This piece is unwritten, or we're not
5151 * using unwritten extents. Skip over it.
5152 */
5153 ASSERT(bno >= mod);
5154 bno -= mod > del.br_blockcount ?
5155 del.br_blockcount : mod;
5156 if (bno < got.br_startoff) {
5157 if (--lastx >= 0)
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005158 xfs_bmbt_get_all(xfs_iext_get_ext(
5159 ifp, lastx), &got);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160 }
5161 continue;
5162 }
5163 /*
5164 * It's written, turn it unwritten.
5165 * This is better than zeroing it.
5166 */
5167 ASSERT(del.br_state == XFS_EXT_NORM);
5168 ASSERT(xfs_trans_get_block_res(tp) > 0);
5169 /*
5170 * If this spans a realtime extent boundary,
5171 * chop it back to the start of the one we end at.
5172 */
5173 if (del.br_blockcount > mod) {
5174 del.br_startoff += del.br_blockcount - mod;
5175 del.br_startblock += del.br_blockcount - mod;
5176 del.br_blockcount = mod;
5177 }
5178 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005179 error = xfs_bmap_add_extent_unwritten_real(tp, ip,
5180 &lastx, &cur, &del, firstblock, flist,
5181 &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 if (error)
5183 goto error0;
5184 goto nodelete;
5185 }
5186 if (isrt && (mod = do_mod(del.br_startblock, mp->m_sb.sb_rextsize))) {
5187 /*
5188 * Realtime extent is lined up at the end but not
5189 * at the front. We'll get rid of full extents if
5190 * we can.
5191 */
5192 mod = mp->m_sb.sb_rextsize - mod;
5193 if (del.br_blockcount > mod) {
5194 del.br_blockcount -= mod;
5195 del.br_startoff += mod;
5196 del.br_startblock += mod;
5197 } else if ((del.br_startoff == start &&
5198 (del.br_state == XFS_EXT_UNWRITTEN ||
5199 xfs_trans_get_block_res(tp) == 0)) ||
Eric Sandeen62118702008-03-06 13:44:28 +11005200 !xfs_sb_version_hasextflgbit(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 /*
5202 * Can't make it unwritten. There isn't
5203 * a full extent here so just skip it.
5204 */
5205 ASSERT(bno >= del.br_blockcount);
5206 bno -= del.br_blockcount;
Christoph Hellwigf1c63b72011-05-11 15:04:09 +00005207 if (got.br_startoff > bno) {
5208 if (--lastx >= 0) {
5209 ep = xfs_iext_get_ext(ifp,
5210 lastx);
5211 xfs_bmbt_get_all(ep, &got);
5212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 }
5214 continue;
5215 } else if (del.br_state == XFS_EXT_UNWRITTEN) {
5216 /*
5217 * This one is already unwritten.
5218 * It must have a written left neighbor.
5219 * Unwrite the killed part of that one and
5220 * try again.
5221 */
5222 ASSERT(lastx > 0);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005223 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5224 lastx - 1), &prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 ASSERT(prev.br_state == XFS_EXT_NORM);
Eric Sandeen9d87c312009-01-14 23:22:07 -06005226 ASSERT(!isnullstartblock(prev.br_startblock));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 ASSERT(del.br_startblock ==
5228 prev.br_startblock + prev.br_blockcount);
5229 if (prev.br_startoff < start) {
5230 mod = start - prev.br_startoff;
5231 prev.br_blockcount -= mod;
5232 prev.br_startblock += mod;
5233 prev.br_startoff = start;
5234 }
5235 prev.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwigec90c552011-05-23 08:52:53 +00005236 lastx--;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005237 error = xfs_bmap_add_extent_unwritten_real(tp,
5238 ip, &lastx, &cur, &prev,
5239 firstblock, flist, &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 if (error)
5241 goto error0;
5242 goto nodelete;
5243 } else {
5244 ASSERT(del.br_state == XFS_EXT_NORM);
5245 del.br_state = XFS_EXT_UNWRITTEN;
Christoph Hellwiga5bd606b2011-09-18 20:40:54 +00005246 error = xfs_bmap_add_extent_unwritten_real(tp,
5247 ip, &lastx, &cur, &del,
5248 firstblock, flist, &logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249 if (error)
5250 goto error0;
5251 goto nodelete;
5252 }
5253 }
5254 if (wasdel) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06005255 ASSERT(startblockval(del.br_startblock) > 0);
Nathan Scottdd9f4382006-01-11 15:28:28 +11005256 /* Update realtime/data freespace, unreserve quota */
Nathan Scott06d10dd2005-06-21 15:48:47 +10005257 if (isrt) {
5258 xfs_filblks_t rtexts;
5259
5260 rtexts = XFS_FSB_TO_B(mp, del.br_blockcount);
5261 do_div(rtexts, mp->m_sb.sb_rextsize);
5262 xfs_mod_incore_sb(mp, XFS_SBS_FREXTENTS,
Christoph Hellwig54893272011-05-11 15:04:03 +00005263 (int64_t)rtexts, 0);
Christoph Hellwig7d095252009-06-08 15:33:32 +02005264 (void)xfs_trans_reserve_quota_nblks(NULL,
5265 ip, -((long)del.br_blockcount), 0,
Nathan Scott06d10dd2005-06-21 15:48:47 +10005266 XFS_QMOPT_RES_RTBLKS);
5267 } else {
Christoph Hellwig96540c72010-09-30 02:25:55 +00005268 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
Christoph Hellwig54893272011-05-11 15:04:03 +00005269 (int64_t)del.br_blockcount, 0);
Christoph Hellwig7d095252009-06-08 15:33:32 +02005270 (void)xfs_trans_reserve_quota_nblks(NULL,
5271 ip, -((long)del.br_blockcount), 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 XFS_QMOPT_RES_REGBLKS);
Nathan Scott06d10dd2005-06-21 15:48:47 +10005273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 ip->i_delayed_blks -= del.br_blockcount;
5275 if (cur)
5276 cur->bc_private.b.flags |=
5277 XFS_BTCUR_BPRV_WASDEL;
5278 } else if (cur)
5279 cur->bc_private.b.flags &= ~XFS_BTCUR_BPRV_WASDEL;
5280 /*
5281 * If it's the case where the directory code is running
5282 * with no block reservation, and the deleted block is in
5283 * the middle of its extent, and the resulting insert
5284 * of an extent would cause transformation to btree format,
5285 * then reject it. The calling code will then swap
5286 * blocks around instead.
5287 * We have to do this now, rather than waiting for the
5288 * conversion to btree format, since the transaction
5289 * will be dirty.
5290 */
5291 if (!wasdel && xfs_trans_get_block_res(tp) == 0 &&
5292 XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_EXTENTS &&
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005293 XFS_IFORK_NEXTENTS(ip, whichfork) >= /* Note the >= */
5294 XFS_IFORK_MAXEXT(ip, whichfork) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 del.br_startoff > got.br_startoff &&
5296 del.br_startoff + del.br_blockcount <
5297 got.br_startoff + got.br_blockcount) {
5298 error = XFS_ERROR(ENOSPC);
5299 goto error0;
5300 }
Christoph Hellwigec90c552011-05-23 08:52:53 +00005301 error = xfs_bmap_del_extent(ip, tp, &lastx, flist, cur, &del,
Christoph Hellwig54893272011-05-11 15:04:03 +00005302 &tmp_logflags, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 logflags |= tmp_logflags;
5304 if (error)
5305 goto error0;
5306 bno = del.br_startoff - 1;
5307nodelete:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308 /*
5309 * If not done go on to the next (previous) record.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311 if (bno != (xfs_fileoff_t)-1 && bno >= start) {
Christoph Hellwig00239ac2011-05-11 15:04:08 +00005312 if (lastx >= 0) {
5313 ep = xfs_iext_get_ext(ifp, lastx);
5314 if (xfs_bmbt_get_startoff(ep) > bno) {
5315 if (--lastx >= 0)
5316 ep = xfs_iext_get_ext(ifp,
5317 lastx);
5318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319 xfs_bmbt_get_all(ep, &got);
Christoph Hellwig00239ac2011-05-11 15:04:08 +00005320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 extno++;
5322 }
5323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 *done = bno == (xfs_fileoff_t)-1 || bno < start || lastx < 0;
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005325
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326 /*
5327 * Convert to a btree if necessary.
5328 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005329 if (xfs_bmap_needs_btree(ip, whichfork)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 ASSERT(cur == NULL);
5331 error = xfs_bmap_extents_to_btree(tp, ip, firstblock, flist,
5332 &cur, 0, &tmp_logflags, whichfork);
5333 logflags |= tmp_logflags;
5334 if (error)
5335 goto error0;
5336 }
5337 /*
5338 * transform from btree to extents, give it cur
5339 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00005340 else if (xfs_bmap_wants_extents(ip, whichfork)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 ASSERT(cur != NULL);
5342 error = xfs_bmap_btree_to_extents(tp, ip, cur, &tmp_logflags,
5343 whichfork);
5344 logflags |= tmp_logflags;
5345 if (error)
5346 goto error0;
5347 }
5348 /*
5349 * transform from extents to local?
5350 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351 error = 0;
5352error0:
5353 /*
5354 * Log everything. Do this after conversion, there's no point in
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11005355 * logging the extent records if we've converted to btree format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06005357 if ((logflags & xfs_ilog_fext(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005359 logflags &= ~xfs_ilog_fext(whichfork);
5360 else if ((logflags & xfs_ilog_fbroot(whichfork)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)
Eric Sandeen9d87c312009-01-14 23:22:07 -06005362 logflags &= ~xfs_ilog_fbroot(whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363 /*
5364 * Log inode even in the error case, if the transaction
5365 * is dirty we'll need to shut down the filesystem.
5366 */
5367 if (logflags)
5368 xfs_trans_log_inode(tp, ip, logflags);
5369 if (cur) {
5370 if (!error) {
5371 *firstblock = cur->bc_private.b.firstblock;
5372 cur->bc_private.b.allocated = 0;
5373 }
5374 xfs_btree_del_cursor(cur,
5375 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5376 }
5377 return error;
5378}
Namjae Jeone1d8fb82014-02-24 10:58:19 +11005379
5380/*
5381 * Shift extent records to the left to cover a hole.
5382 *
5383 * The maximum number of extents to be shifted in a single operation
5384 * is @num_exts, and @current_ext keeps track of the current extent
5385 * index we have shifted. @offset_shift_fsb is the length by which each
5386 * extent is shifted. If there is no hole to shift the extents
5387 * into, this will be considered invalid operation and we abort immediately.
5388 */
5389int
5390xfs_bmap_shift_extents(
5391 struct xfs_trans *tp,
5392 struct xfs_inode *ip,
5393 int *done,
5394 xfs_fileoff_t start_fsb,
5395 xfs_fileoff_t offset_shift_fsb,
5396 xfs_extnum_t *current_ext,
5397 xfs_fsblock_t *firstblock,
5398 struct xfs_bmap_free *flist,
5399 int num_exts)
5400{
5401 struct xfs_btree_cur *cur;
5402 struct xfs_bmbt_rec_host *gotp;
5403 struct xfs_bmbt_irec got;
5404 struct xfs_bmbt_irec left;
5405 struct xfs_mount *mp = ip->i_mount;
5406 struct xfs_ifork *ifp;
5407 xfs_extnum_t nexts = 0;
5408 xfs_fileoff_t startoff;
5409 int error = 0;
5410 int i;
5411 int whichfork = XFS_DATA_FORK;
5412 int logflags;
5413 xfs_filblks_t blockcount = 0;
5414
5415 if (unlikely(XFS_TEST_ERROR(
5416 (XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_EXTENTS &&
5417 XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE),
5418 mp, XFS_ERRTAG_BMAPIFORMAT, XFS_RANDOM_BMAPIFORMAT))) {
5419 XFS_ERROR_REPORT("xfs_bmap_shift_extents",
5420 XFS_ERRLEVEL_LOW, mp);
5421 return XFS_ERROR(EFSCORRUPTED);
5422 }
5423
5424 if (XFS_FORCED_SHUTDOWN(mp))
5425 return XFS_ERROR(EIO);
5426
5427 ASSERT(current_ext != NULL);
5428
5429 ifp = XFS_IFORK_PTR(ip, whichfork);
5430
5431 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
5432 /* Read in all the extents */
5433 error = xfs_iread_extents(tp, ip, whichfork);
5434 if (error)
5435 return error;
5436 }
5437
5438 /*
5439 * If *current_ext is 0, we would need to lookup the extent
5440 * from where we would start shifting and store it in gotp.
5441 */
5442 if (!*current_ext) {
5443 gotp = xfs_iext_bno_to_ext(ifp, start_fsb, current_ext);
5444 /*
5445 * gotp can be null in 2 cases: 1) if there are no extents
5446 * or 2) start_fsb lies in a hole beyond which there are
5447 * no extents. Either way, we are done.
5448 */
5449 if (!gotp) {
5450 *done = 1;
5451 return 0;
5452 }
5453 }
5454
5455 /* We are going to change core inode */
5456 logflags = XFS_ILOG_CORE;
5457
5458 if (ifp->if_flags & XFS_IFBROOT) {
5459 cur = xfs_bmbt_init_cursor(mp, tp, ip, whichfork);
5460 cur->bc_private.b.firstblock = *firstblock;
5461 cur->bc_private.b.flist = flist;
5462 cur->bc_private.b.flags = 0;
5463 } else {
5464 cur = NULL;
5465 logflags |= XFS_ILOG_DEXT;
5466 }
5467
5468 while (nexts++ < num_exts &&
5469 *current_ext < XFS_IFORK_NEXTENTS(ip, whichfork)) {
5470
5471 gotp = xfs_iext_get_ext(ifp, *current_ext);
5472 xfs_bmbt_get_all(gotp, &got);
5473 startoff = got.br_startoff - offset_shift_fsb;
5474
5475 /*
5476 * Before shifting extent into hole, make sure that the hole
5477 * is large enough to accomodate the shift.
5478 */
5479 if (*current_ext) {
5480 xfs_bmbt_get_all(xfs_iext_get_ext(ifp,
5481 *current_ext - 1), &left);
5482
5483 if (startoff < left.br_startoff + left.br_blockcount)
5484 error = XFS_ERROR(EINVAL);
5485 } else if (offset_shift_fsb > got.br_startoff) {
5486 /*
5487 * When first extent is shifted, offset_shift_fsb
5488 * should be less than the stating offset of
5489 * the first extent.
5490 */
5491 error = XFS_ERROR(EINVAL);
5492 }
5493
5494 if (error)
5495 goto del_cursor;
5496
5497 if (cur) {
5498 error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
5499 got.br_startblock,
5500 got.br_blockcount,
5501 &i);
5502 if (error)
5503 goto del_cursor;
5504 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5505 }
5506
5507 /* Check if we can merge 2 adjacent extents */
5508 if (*current_ext &&
5509 left.br_startoff + left.br_blockcount == startoff &&
5510 left.br_startblock + left.br_blockcount ==
5511 got.br_startblock &&
5512 left.br_state == got.br_state &&
5513 left.br_blockcount + got.br_blockcount <= MAXEXTLEN) {
5514 blockcount = left.br_blockcount +
5515 got.br_blockcount;
5516 xfs_iext_remove(ip, *current_ext, 1, 0);
5517 if (cur) {
5518 error = xfs_btree_delete(cur, &i);
5519 if (error)
5520 goto del_cursor;
5521 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5522 }
5523 XFS_IFORK_NEXT_SET(ip, whichfork,
5524 XFS_IFORK_NEXTENTS(ip, whichfork) - 1);
5525 gotp = xfs_iext_get_ext(ifp, --*current_ext);
5526 xfs_bmbt_get_all(gotp, &got);
5527
5528 /* Make cursor point to the extent we will update */
5529 if (cur) {
5530 error = xfs_bmbt_lookup_eq(cur, got.br_startoff,
5531 got.br_startblock,
5532 got.br_blockcount,
5533 &i);
5534 if (error)
5535 goto del_cursor;
5536 XFS_WANT_CORRUPTED_GOTO(i == 1, del_cursor);
5537 }
5538
5539 xfs_bmbt_set_blockcount(gotp, blockcount);
5540 got.br_blockcount = blockcount;
5541 } else {
5542 /* We have to update the startoff */
5543 xfs_bmbt_set_startoff(gotp, startoff);
5544 got.br_startoff = startoff;
5545 }
5546
5547 if (cur) {
5548 error = xfs_bmbt_update(cur, got.br_startoff,
5549 got.br_startblock,
5550 got.br_blockcount,
5551 got.br_state);
5552 if (error)
5553 goto del_cursor;
5554 }
5555
5556 (*current_ext)++;
5557 }
5558
5559 /* Check if we are done */
5560 if (*current_ext == XFS_IFORK_NEXTENTS(ip, whichfork))
5561 *done = 1;
5562
5563del_cursor:
5564 if (cur)
5565 xfs_btree_del_cursor(cur,
5566 error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
5567
5568 xfs_trans_log_inode(tp, ip, logflags);
5569
5570 return error;
5571}