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