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