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