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