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