remove unused behvavior cruft in xfs_super.h
[safe/jmp/linux-2.6] / fs / xfs / xfs_inode.c
1 /*
2  * Copyright (c) 2000-2006 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 <linux/log2.h>
19
20 #include "xfs.h"
21 #include "xfs_fs.h"
22 #include "xfs_types.h"
23 #include "xfs_bit.h"
24 #include "xfs_log.h"
25 #include "xfs_inum.h"
26 #include "xfs_trans.h"
27 #include "xfs_trans_priv.h"
28 #include "xfs_sb.h"
29 #include "xfs_ag.h"
30 #include "xfs_dir2.h"
31 #include "xfs_dmapi.h"
32 #include "xfs_mount.h"
33 #include "xfs_bmap_btree.h"
34 #include "xfs_alloc_btree.h"
35 #include "xfs_ialloc_btree.h"
36 #include "xfs_dir2_sf.h"
37 #include "xfs_attr_sf.h"
38 #include "xfs_dinode.h"
39 #include "xfs_inode.h"
40 #include "xfs_buf_item.h"
41 #include "xfs_inode_item.h"
42 #include "xfs_btree.h"
43 #include "xfs_btree_trace.h"
44 #include "xfs_alloc.h"
45 #include "xfs_ialloc.h"
46 #include "xfs_bmap.h"
47 #include "xfs_rw.h"
48 #include "xfs_error.h"
49 #include "xfs_utils.h"
50 #include "xfs_dir2_trace.h"
51 #include "xfs_quota.h"
52 #include "xfs_acl.h"
53 #include "xfs_filestream.h"
54 #include "xfs_vnodeops.h"
55
56 kmem_zone_t *xfs_ifork_zone;
57 kmem_zone_t *xfs_inode_zone;
58
59 /*
60  * Used in xfs_itruncate().  This is the maximum number of extents
61  * freed from a file in a single transaction.
62  */
63 #define XFS_ITRUNC_MAX_EXTENTS  2
64
65 STATIC int xfs_iflush_int(xfs_inode_t *, xfs_buf_t *);
66 STATIC int xfs_iformat_local(xfs_inode_t *, xfs_dinode_t *, int, int);
67 STATIC int xfs_iformat_extents(xfs_inode_t *, xfs_dinode_t *, int);
68 STATIC int xfs_iformat_btree(xfs_inode_t *, xfs_dinode_t *, int);
69
70 #ifdef DEBUG
71 /*
72  * Make sure that the extents in the given memory buffer
73  * are valid.
74  */
75 STATIC void
76 xfs_validate_extents(
77         xfs_ifork_t             *ifp,
78         int                     nrecs,
79         xfs_exntfmt_t           fmt)
80 {
81         xfs_bmbt_irec_t         irec;
82         xfs_bmbt_rec_host_t     rec;
83         int                     i;
84
85         for (i = 0; i < nrecs; i++) {
86                 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
87                 rec.l0 = get_unaligned(&ep->l0);
88                 rec.l1 = get_unaligned(&ep->l1);
89                 xfs_bmbt_get_all(&rec, &irec);
90                 if (fmt == XFS_EXTFMT_NOSTATE)
91                         ASSERT(irec.br_state == XFS_EXT_NORM);
92         }
93 }
94 #else /* DEBUG */
95 #define xfs_validate_extents(ifp, nrecs, fmt)
96 #endif /* DEBUG */
97
98 /*
99  * Check that none of the inode's in the buffer have a next
100  * unlinked field of 0.
101  */
102 #if defined(DEBUG)
103 void
104 xfs_inobp_check(
105         xfs_mount_t     *mp,
106         xfs_buf_t       *bp)
107 {
108         int             i;
109         int             j;
110         xfs_dinode_t    *dip;
111
112         j = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
113
114         for (i = 0; i < j; i++) {
115                 dip = (xfs_dinode_t *)xfs_buf_offset(bp,
116                                         i * mp->m_sb.sb_inodesize);
117                 if (!dip->di_next_unlinked)  {
118                         xfs_fs_cmn_err(CE_ALERT, mp,
119                                 "Detected a bogus zero next_unlinked field in incore inode buffer 0x%p.  About to pop an ASSERT.",
120                                 bp);
121                         ASSERT(dip->di_next_unlinked);
122                 }
123         }
124 }
125 #endif
126
127 /*
128  * Find the buffer associated with the given inode map
129  * We do basic validation checks on the buffer once it has been
130  * retrieved from disk.
131  */
132 STATIC int
133 xfs_imap_to_bp(
134         xfs_mount_t     *mp,
135         xfs_trans_t     *tp,
136         struct xfs_imap *imap,
137         xfs_buf_t       **bpp,
138         uint            buf_flags,
139         uint            iget_flags)
140 {
141         int             error;
142         int             i;
143         int             ni;
144         xfs_buf_t       *bp;
145
146         error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, imap->im_blkno,
147                                    (int)imap->im_len, buf_flags, &bp);
148         if (error) {
149                 if (error != EAGAIN) {
150                         cmn_err(CE_WARN,
151                                 "xfs_imap_to_bp: xfs_trans_read_buf()returned "
152                                 "an error %d on %s.  Returning error.",
153                                 error, mp->m_fsname);
154                 } else {
155                         ASSERT(buf_flags & XFS_BUF_TRYLOCK);
156                 }
157                 return error;
158         }
159
160         /*
161          * Validate the magic number and version of every inode in the buffer
162          * (if DEBUG kernel) or the first inode in the buffer, otherwise.
163          */
164 #ifdef DEBUG
165         ni = BBTOB(imap->im_len) >> mp->m_sb.sb_inodelog;
166 #else   /* usual case */
167         ni = 1;
168 #endif
169
170         for (i = 0; i < ni; i++) {
171                 int             di_ok;
172                 xfs_dinode_t    *dip;
173
174                 dip = (xfs_dinode_t *)xfs_buf_offset(bp,
175                                         (i << mp->m_sb.sb_inodelog));
176                 di_ok = be16_to_cpu(dip->di_magic) == XFS_DINODE_MAGIC &&
177                             XFS_DINODE_GOOD_VERSION(dip->di_version);
178                 if (unlikely(XFS_TEST_ERROR(!di_ok, mp,
179                                                 XFS_ERRTAG_ITOBP_INOTOBP,
180                                                 XFS_RANDOM_ITOBP_INOTOBP))) {
181                         if (iget_flags & XFS_IGET_BULKSTAT) {
182                                 xfs_trans_brelse(tp, bp);
183                                 return XFS_ERROR(EINVAL);
184                         }
185                         XFS_CORRUPTION_ERROR("xfs_imap_to_bp",
186                                                 XFS_ERRLEVEL_HIGH, mp, dip);
187 #ifdef DEBUG
188                         cmn_err(CE_PANIC,
189                                         "Device %s - bad inode magic/vsn "
190                                         "daddr %lld #%d (magic=%x)",
191                                 XFS_BUFTARG_NAME(mp->m_ddev_targp),
192                                 (unsigned long long)imap->im_blkno, i,
193                                 be16_to_cpu(dip->di_magic));
194 #endif
195                         xfs_trans_brelse(tp, bp);
196                         return XFS_ERROR(EFSCORRUPTED);
197                 }
198         }
199
200         xfs_inobp_check(mp, bp);
201
202         /*
203          * Mark the buffer as an inode buffer now that it looks good
204          */
205         XFS_BUF_SET_VTYPE(bp, B_FS_INO);
206
207         *bpp = bp;
208         return 0;
209 }
210
211 /*
212  * This routine is called to map an inode number within a file
213  * system to the buffer containing the on-disk version of the
214  * inode.  It returns a pointer to the buffer containing the
215  * on-disk inode in the bpp parameter, and in the dip parameter
216  * it returns a pointer to the on-disk inode within that buffer.
217  *
218  * If a non-zero error is returned, then the contents of bpp and
219  * dipp are undefined.
220  *
221  * Use xfs_imap() to determine the size and location of the
222  * buffer to read from disk.
223  */
224 int
225 xfs_inotobp(
226         xfs_mount_t     *mp,
227         xfs_trans_t     *tp,
228         xfs_ino_t       ino,
229         xfs_dinode_t    **dipp,
230         xfs_buf_t       **bpp,
231         int             *offset,
232         uint            imap_flags)
233 {
234         struct xfs_imap imap;
235         xfs_buf_t       *bp;
236         int             error;
237
238         imap.im_blkno = 0;
239         error = xfs_imap(mp, tp, ino, &imap, imap_flags);
240         if (error)
241                 return error;
242
243         error = xfs_imap_to_bp(mp, tp, &imap, &bp, XFS_BUF_LOCK, imap_flags);
244         if (error)
245                 return error;
246
247         *dipp = (xfs_dinode_t *)xfs_buf_offset(bp, imap.im_boffset);
248         *bpp = bp;
249         *offset = imap.im_boffset;
250         return 0;
251 }
252
253
254 /*
255  * This routine is called to map an inode to the buffer containing
256  * the on-disk version of the inode.  It returns a pointer to the
257  * buffer containing the on-disk inode in the bpp parameter, and in
258  * the dip parameter it returns a pointer to the on-disk inode within
259  * that buffer.
260  *
261  * If a non-zero error is returned, then the contents of bpp and
262  * dipp are undefined.
263  *
264  * The inode is expected to already been mapped to its buffer and read
265  * in once, thus we can use the mapping information stored in the inode
266  * rather than calling xfs_imap().  This allows us to avoid the overhead
267  * of looking at the inode btree for small block file systems
268  * (see xfs_imap()).
269  */
270 int
271 xfs_itobp(
272         xfs_mount_t     *mp,
273         xfs_trans_t     *tp,
274         xfs_inode_t     *ip,
275         xfs_dinode_t    **dipp,
276         xfs_buf_t       **bpp,
277         uint            buf_flags)
278 {
279         xfs_buf_t       *bp;
280         int             error;
281
282         ASSERT(ip->i_imap.im_blkno != 0);
283
284         error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &bp, buf_flags, 0);
285         if (error)
286                 return error;
287
288         if (!bp) {
289                 ASSERT(buf_flags & XFS_BUF_TRYLOCK);
290                 ASSERT(tp == NULL);
291                 *bpp = NULL;
292                 return EAGAIN;
293         }
294
295         *dipp = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
296         *bpp = bp;
297         return 0;
298 }
299
300 /*
301  * Move inode type and inode format specific information from the
302  * on-disk inode to the in-core inode.  For fifos, devs, and sockets
303  * this means set if_rdev to the proper value.  For files, directories,
304  * and symlinks this means to bring in the in-line data or extent
305  * pointers.  For a file in B-tree format, only the root is immediately
306  * brought in-core.  The rest will be in-lined in if_extents when it
307  * is first referenced (see xfs_iread_extents()).
308  */
309 STATIC int
310 xfs_iformat(
311         xfs_inode_t             *ip,
312         xfs_dinode_t            *dip)
313 {
314         xfs_attr_shortform_t    *atp;
315         int                     size;
316         int                     error;
317         xfs_fsize_t             di_size;
318         ip->i_df.if_ext_max =
319                 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
320         error = 0;
321
322         if (unlikely(be32_to_cpu(dip->di_nextents) +
323                      be16_to_cpu(dip->di_anextents) >
324                      be64_to_cpu(dip->di_nblocks))) {
325                 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
326                         "corrupt dinode %Lu, extent total = %d, nblocks = %Lu.",
327                         (unsigned long long)ip->i_ino,
328                         (int)(be32_to_cpu(dip->di_nextents) +
329                               be16_to_cpu(dip->di_anextents)),
330                         (unsigned long long)
331                                 be64_to_cpu(dip->di_nblocks));
332                 XFS_CORRUPTION_ERROR("xfs_iformat(1)", XFS_ERRLEVEL_LOW,
333                                      ip->i_mount, dip);
334                 return XFS_ERROR(EFSCORRUPTED);
335         }
336
337         if (unlikely(dip->di_forkoff > ip->i_mount->m_sb.sb_inodesize)) {
338                 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
339                         "corrupt dinode %Lu, forkoff = 0x%x.",
340                         (unsigned long long)ip->i_ino,
341                         dip->di_forkoff);
342                 XFS_CORRUPTION_ERROR("xfs_iformat(2)", XFS_ERRLEVEL_LOW,
343                                      ip->i_mount, dip);
344                 return XFS_ERROR(EFSCORRUPTED);
345         }
346
347         switch (ip->i_d.di_mode & S_IFMT) {
348         case S_IFIFO:
349         case S_IFCHR:
350         case S_IFBLK:
351         case S_IFSOCK:
352                 if (unlikely(dip->di_format != XFS_DINODE_FMT_DEV)) {
353                         XFS_CORRUPTION_ERROR("xfs_iformat(3)", XFS_ERRLEVEL_LOW,
354                                               ip->i_mount, dip);
355                         return XFS_ERROR(EFSCORRUPTED);
356                 }
357                 ip->i_d.di_size = 0;
358                 ip->i_size = 0;
359                 ip->i_df.if_u2.if_rdev = xfs_dinode_get_rdev(dip);
360                 break;
361
362         case S_IFREG:
363         case S_IFLNK:
364         case S_IFDIR:
365                 switch (dip->di_format) {
366                 case XFS_DINODE_FMT_LOCAL:
367                         /*
368                          * no local regular files yet
369                          */
370                         if (unlikely((be16_to_cpu(dip->di_mode) & S_IFMT) == S_IFREG)) {
371                                 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
372                                         "corrupt inode %Lu "
373                                         "(local format for regular file).",
374                                         (unsigned long long) ip->i_ino);
375                                 XFS_CORRUPTION_ERROR("xfs_iformat(4)",
376                                                      XFS_ERRLEVEL_LOW,
377                                                      ip->i_mount, dip);
378                                 return XFS_ERROR(EFSCORRUPTED);
379                         }
380
381                         di_size = be64_to_cpu(dip->di_size);
382                         if (unlikely(di_size > XFS_DFORK_DSIZE(dip, ip->i_mount))) {
383                                 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
384                                         "corrupt inode %Lu "
385                                         "(bad size %Ld for local inode).",
386                                         (unsigned long long) ip->i_ino,
387                                         (long long) di_size);
388                                 XFS_CORRUPTION_ERROR("xfs_iformat(5)",
389                                                      XFS_ERRLEVEL_LOW,
390                                                      ip->i_mount, dip);
391                                 return XFS_ERROR(EFSCORRUPTED);
392                         }
393
394                         size = (int)di_size;
395                         error = xfs_iformat_local(ip, dip, XFS_DATA_FORK, size);
396                         break;
397                 case XFS_DINODE_FMT_EXTENTS:
398                         error = xfs_iformat_extents(ip, dip, XFS_DATA_FORK);
399                         break;
400                 case XFS_DINODE_FMT_BTREE:
401                         error = xfs_iformat_btree(ip, dip, XFS_DATA_FORK);
402                         break;
403                 default:
404                         XFS_ERROR_REPORT("xfs_iformat(6)", XFS_ERRLEVEL_LOW,
405                                          ip->i_mount);
406                         return XFS_ERROR(EFSCORRUPTED);
407                 }
408                 break;
409
410         default:
411                 XFS_ERROR_REPORT("xfs_iformat(7)", XFS_ERRLEVEL_LOW, ip->i_mount);
412                 return XFS_ERROR(EFSCORRUPTED);
413         }
414         if (error) {
415                 return error;
416         }
417         if (!XFS_DFORK_Q(dip))
418                 return 0;
419         ASSERT(ip->i_afp == NULL);
420         ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
421         ip->i_afp->if_ext_max =
422                 XFS_IFORK_ASIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
423         switch (dip->di_aformat) {
424         case XFS_DINODE_FMT_LOCAL:
425                 atp = (xfs_attr_shortform_t *)XFS_DFORK_APTR(dip);
426                 size = be16_to_cpu(atp->hdr.totsize);
427                 error = xfs_iformat_local(ip, dip, XFS_ATTR_FORK, size);
428                 break;
429         case XFS_DINODE_FMT_EXTENTS:
430                 error = xfs_iformat_extents(ip, dip, XFS_ATTR_FORK);
431                 break;
432         case XFS_DINODE_FMT_BTREE:
433                 error = xfs_iformat_btree(ip, dip, XFS_ATTR_FORK);
434                 break;
435         default:
436                 error = XFS_ERROR(EFSCORRUPTED);
437                 break;
438         }
439         if (error) {
440                 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
441                 ip->i_afp = NULL;
442                 xfs_idestroy_fork(ip, XFS_DATA_FORK);
443         }
444         return error;
445 }
446
447 /*
448  * The file is in-lined in the on-disk inode.
449  * If it fits into if_inline_data, then copy
450  * it there, otherwise allocate a buffer for it
451  * and copy the data there.  Either way, set
452  * if_data to point at the data.
453  * If we allocate a buffer for the data, make
454  * sure that its size is a multiple of 4 and
455  * record the real size in i_real_bytes.
456  */
457 STATIC int
458 xfs_iformat_local(
459         xfs_inode_t     *ip,
460         xfs_dinode_t    *dip,
461         int             whichfork,
462         int             size)
463 {
464         xfs_ifork_t     *ifp;
465         int             real_size;
466
467         /*
468          * If the size is unreasonable, then something
469          * is wrong and we just bail out rather than crash in
470          * kmem_alloc() or memcpy() below.
471          */
472         if (unlikely(size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
473                 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
474                         "corrupt inode %Lu "
475                         "(bad size %d for local fork, size = %d).",
476                         (unsigned long long) ip->i_ino, size,
477                         XFS_DFORK_SIZE(dip, ip->i_mount, whichfork));
478                 XFS_CORRUPTION_ERROR("xfs_iformat_local", XFS_ERRLEVEL_LOW,
479                                      ip->i_mount, dip);
480                 return XFS_ERROR(EFSCORRUPTED);
481         }
482         ifp = XFS_IFORK_PTR(ip, whichfork);
483         real_size = 0;
484         if (size == 0)
485                 ifp->if_u1.if_data = NULL;
486         else if (size <= sizeof(ifp->if_u2.if_inline_data))
487                 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
488         else {
489                 real_size = roundup(size, 4);
490                 ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP);
491         }
492         ifp->if_bytes = size;
493         ifp->if_real_bytes = real_size;
494         if (size)
495                 memcpy(ifp->if_u1.if_data, XFS_DFORK_PTR(dip, whichfork), size);
496         ifp->if_flags &= ~XFS_IFEXTENTS;
497         ifp->if_flags |= XFS_IFINLINE;
498         return 0;
499 }
500
501 /*
502  * The file consists of a set of extents all
503  * of which fit into the on-disk inode.
504  * If there are few enough extents to fit into
505  * the if_inline_ext, then copy them there.
506  * Otherwise allocate a buffer for them and copy
507  * them into it.  Either way, set if_extents
508  * to point at the extents.
509  */
510 STATIC int
511 xfs_iformat_extents(
512         xfs_inode_t     *ip,
513         xfs_dinode_t    *dip,
514         int             whichfork)
515 {
516         xfs_bmbt_rec_t  *dp;
517         xfs_ifork_t     *ifp;
518         int             nex;
519         int             size;
520         int             i;
521
522         ifp = XFS_IFORK_PTR(ip, whichfork);
523         nex = XFS_DFORK_NEXTENTS(dip, whichfork);
524         size = nex * (uint)sizeof(xfs_bmbt_rec_t);
525
526         /*
527          * If the number of extents is unreasonable, then something
528          * is wrong and we just bail out rather than crash in
529          * kmem_alloc() or memcpy() below.
530          */
531         if (unlikely(size < 0 || size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
532                 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
533                         "corrupt inode %Lu ((a)extents = %d).",
534                         (unsigned long long) ip->i_ino, nex);
535                 XFS_CORRUPTION_ERROR("xfs_iformat_extents(1)", XFS_ERRLEVEL_LOW,
536                                      ip->i_mount, dip);
537                 return XFS_ERROR(EFSCORRUPTED);
538         }
539
540         ifp->if_real_bytes = 0;
541         if (nex == 0)
542                 ifp->if_u1.if_extents = NULL;
543         else if (nex <= XFS_INLINE_EXTS)
544                 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
545         else
546                 xfs_iext_add(ifp, 0, nex);
547
548         ifp->if_bytes = size;
549         if (size) {
550                 dp = (xfs_bmbt_rec_t *) XFS_DFORK_PTR(dip, whichfork);
551                 xfs_validate_extents(ifp, nex, XFS_EXTFMT_INODE(ip));
552                 for (i = 0; i < nex; i++, dp++) {
553                         xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
554                         ep->l0 = get_unaligned_be64(&dp->l0);
555                         ep->l1 = get_unaligned_be64(&dp->l1);
556                 }
557                 XFS_BMAP_TRACE_EXLIST(ip, nex, whichfork);
558                 if (whichfork != XFS_DATA_FORK ||
559                         XFS_EXTFMT_INODE(ip) == XFS_EXTFMT_NOSTATE)
560                                 if (unlikely(xfs_check_nostate_extents(
561                                     ifp, 0, nex))) {
562                                         XFS_ERROR_REPORT("xfs_iformat_extents(2)",
563                                                          XFS_ERRLEVEL_LOW,
564                                                          ip->i_mount);
565                                         return XFS_ERROR(EFSCORRUPTED);
566                                 }
567         }
568         ifp->if_flags |= XFS_IFEXTENTS;
569         return 0;
570 }
571
572 /*
573  * The file has too many extents to fit into
574  * the inode, so they are in B-tree format.
575  * Allocate a buffer for the root of the B-tree
576  * and copy the root into it.  The i_extents
577  * field will remain NULL until all of the
578  * extents are read in (when they are needed).
579  */
580 STATIC int
581 xfs_iformat_btree(
582         xfs_inode_t             *ip,
583         xfs_dinode_t            *dip,
584         int                     whichfork)
585 {
586         xfs_bmdr_block_t        *dfp;
587         xfs_ifork_t             *ifp;
588         /* REFERENCED */
589         int                     nrecs;
590         int                     size;
591
592         ifp = XFS_IFORK_PTR(ip, whichfork);
593         dfp = (xfs_bmdr_block_t *)XFS_DFORK_PTR(dip, whichfork);
594         size = XFS_BMAP_BROOT_SPACE(dfp);
595         nrecs = be16_to_cpu(dfp->bb_numrecs);
596
597         /*
598          * blow out if -- fork has less extents than can fit in
599          * fork (fork shouldn't be a btree format), root btree
600          * block has more records than can fit into the fork,
601          * or the number of extents is greater than the number of
602          * blocks.
603          */
604         if (unlikely(XFS_IFORK_NEXTENTS(ip, whichfork) <= ifp->if_ext_max
605             || XFS_BMDR_SPACE_CALC(nrecs) >
606                         XFS_DFORK_SIZE(dip, ip->i_mount, whichfork)
607             || XFS_IFORK_NEXTENTS(ip, whichfork) > ip->i_d.di_nblocks)) {
608                 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
609                         "corrupt inode %Lu (btree).",
610                         (unsigned long long) ip->i_ino);
611                 XFS_ERROR_REPORT("xfs_iformat_btree", XFS_ERRLEVEL_LOW,
612                                  ip->i_mount);
613                 return XFS_ERROR(EFSCORRUPTED);
614         }
615
616         ifp->if_broot_bytes = size;
617         ifp->if_broot = kmem_alloc(size, KM_SLEEP);
618         ASSERT(ifp->if_broot != NULL);
619         /*
620          * Copy and convert from the on-disk structure
621          * to the in-memory structure.
622          */
623         xfs_bmdr_to_bmbt(ip->i_mount, dfp,
624                          XFS_DFORK_SIZE(dip, ip->i_mount, whichfork),
625                          ifp->if_broot, size);
626         ifp->if_flags &= ~XFS_IFEXTENTS;
627         ifp->if_flags |= XFS_IFBROOT;
628
629         return 0;
630 }
631
632 void
633 xfs_dinode_from_disk(
634         xfs_icdinode_t          *to,
635         xfs_dinode_t            *from)
636 {
637         to->di_magic = be16_to_cpu(from->di_magic);
638         to->di_mode = be16_to_cpu(from->di_mode);
639         to->di_version = from ->di_version;
640         to->di_format = from->di_format;
641         to->di_onlink = be16_to_cpu(from->di_onlink);
642         to->di_uid = be32_to_cpu(from->di_uid);
643         to->di_gid = be32_to_cpu(from->di_gid);
644         to->di_nlink = be32_to_cpu(from->di_nlink);
645         to->di_projid = be16_to_cpu(from->di_projid);
646         memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
647         to->di_flushiter = be16_to_cpu(from->di_flushiter);
648         to->di_atime.t_sec = be32_to_cpu(from->di_atime.t_sec);
649         to->di_atime.t_nsec = be32_to_cpu(from->di_atime.t_nsec);
650         to->di_mtime.t_sec = be32_to_cpu(from->di_mtime.t_sec);
651         to->di_mtime.t_nsec = be32_to_cpu(from->di_mtime.t_nsec);
652         to->di_ctime.t_sec = be32_to_cpu(from->di_ctime.t_sec);
653         to->di_ctime.t_nsec = be32_to_cpu(from->di_ctime.t_nsec);
654         to->di_size = be64_to_cpu(from->di_size);
655         to->di_nblocks = be64_to_cpu(from->di_nblocks);
656         to->di_extsize = be32_to_cpu(from->di_extsize);
657         to->di_nextents = be32_to_cpu(from->di_nextents);
658         to->di_anextents = be16_to_cpu(from->di_anextents);
659         to->di_forkoff = from->di_forkoff;
660         to->di_aformat  = from->di_aformat;
661         to->di_dmevmask = be32_to_cpu(from->di_dmevmask);
662         to->di_dmstate  = be16_to_cpu(from->di_dmstate);
663         to->di_flags    = be16_to_cpu(from->di_flags);
664         to->di_gen      = be32_to_cpu(from->di_gen);
665 }
666
667 void
668 xfs_dinode_to_disk(
669         xfs_dinode_t            *to,
670         xfs_icdinode_t          *from)
671 {
672         to->di_magic = cpu_to_be16(from->di_magic);
673         to->di_mode = cpu_to_be16(from->di_mode);
674         to->di_version = from ->di_version;
675         to->di_format = from->di_format;
676         to->di_onlink = cpu_to_be16(from->di_onlink);
677         to->di_uid = cpu_to_be32(from->di_uid);
678         to->di_gid = cpu_to_be32(from->di_gid);
679         to->di_nlink = cpu_to_be32(from->di_nlink);
680         to->di_projid = cpu_to_be16(from->di_projid);
681         memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
682         to->di_flushiter = cpu_to_be16(from->di_flushiter);
683         to->di_atime.t_sec = cpu_to_be32(from->di_atime.t_sec);
684         to->di_atime.t_nsec = cpu_to_be32(from->di_atime.t_nsec);
685         to->di_mtime.t_sec = cpu_to_be32(from->di_mtime.t_sec);
686         to->di_mtime.t_nsec = cpu_to_be32(from->di_mtime.t_nsec);
687         to->di_ctime.t_sec = cpu_to_be32(from->di_ctime.t_sec);
688         to->di_ctime.t_nsec = cpu_to_be32(from->di_ctime.t_nsec);
689         to->di_size = cpu_to_be64(from->di_size);
690         to->di_nblocks = cpu_to_be64(from->di_nblocks);
691         to->di_extsize = cpu_to_be32(from->di_extsize);
692         to->di_nextents = cpu_to_be32(from->di_nextents);
693         to->di_anextents = cpu_to_be16(from->di_anextents);
694         to->di_forkoff = from->di_forkoff;
695         to->di_aformat = from->di_aformat;
696         to->di_dmevmask = cpu_to_be32(from->di_dmevmask);
697         to->di_dmstate = cpu_to_be16(from->di_dmstate);
698         to->di_flags = cpu_to_be16(from->di_flags);
699         to->di_gen = cpu_to_be32(from->di_gen);
700 }
701
702 STATIC uint
703 _xfs_dic2xflags(
704         __uint16_t              di_flags)
705 {
706         uint                    flags = 0;
707
708         if (di_flags & XFS_DIFLAG_ANY) {
709                 if (di_flags & XFS_DIFLAG_REALTIME)
710                         flags |= XFS_XFLAG_REALTIME;
711                 if (di_flags & XFS_DIFLAG_PREALLOC)
712                         flags |= XFS_XFLAG_PREALLOC;
713                 if (di_flags & XFS_DIFLAG_IMMUTABLE)
714                         flags |= XFS_XFLAG_IMMUTABLE;
715                 if (di_flags & XFS_DIFLAG_APPEND)
716                         flags |= XFS_XFLAG_APPEND;
717                 if (di_flags & XFS_DIFLAG_SYNC)
718                         flags |= XFS_XFLAG_SYNC;
719                 if (di_flags & XFS_DIFLAG_NOATIME)
720                         flags |= XFS_XFLAG_NOATIME;
721                 if (di_flags & XFS_DIFLAG_NODUMP)
722                         flags |= XFS_XFLAG_NODUMP;
723                 if (di_flags & XFS_DIFLAG_RTINHERIT)
724                         flags |= XFS_XFLAG_RTINHERIT;
725                 if (di_flags & XFS_DIFLAG_PROJINHERIT)
726                         flags |= XFS_XFLAG_PROJINHERIT;
727                 if (di_flags & XFS_DIFLAG_NOSYMLINKS)
728                         flags |= XFS_XFLAG_NOSYMLINKS;
729                 if (di_flags & XFS_DIFLAG_EXTSIZE)
730                         flags |= XFS_XFLAG_EXTSIZE;
731                 if (di_flags & XFS_DIFLAG_EXTSZINHERIT)
732                         flags |= XFS_XFLAG_EXTSZINHERIT;
733                 if (di_flags & XFS_DIFLAG_NODEFRAG)
734                         flags |= XFS_XFLAG_NODEFRAG;
735                 if (di_flags & XFS_DIFLAG_FILESTREAM)
736                         flags |= XFS_XFLAG_FILESTREAM;
737         }
738
739         return flags;
740 }
741
742 uint
743 xfs_ip2xflags(
744         xfs_inode_t             *ip)
745 {
746         xfs_icdinode_t          *dic = &ip->i_d;
747
748         return _xfs_dic2xflags(dic->di_flags) |
749                                 (XFS_IFORK_Q(ip) ? XFS_XFLAG_HASATTR : 0);
750 }
751
752 uint
753 xfs_dic2xflags(
754         xfs_dinode_t            *dip)
755 {
756         return _xfs_dic2xflags(be16_to_cpu(dip->di_flags)) |
757                                 (XFS_DFORK_Q(dip) ? XFS_XFLAG_HASATTR : 0);
758 }
759
760 /*
761  * Read the disk inode attributes into the in-core inode structure.
762  */
763 int
764 xfs_iread(
765         xfs_mount_t     *mp,
766         xfs_trans_t     *tp,
767         xfs_inode_t     *ip,
768         xfs_daddr_t     bno,
769         uint            iget_flags)
770 {
771         xfs_buf_t       *bp;
772         xfs_dinode_t    *dip;
773         int             error;
774
775         /*
776          * Fill in the location information in the in-core inode.
777          */
778         ip->i_imap.im_blkno = bno;
779         error = xfs_imap(mp, tp, ip->i_ino, &ip->i_imap, iget_flags);
780         if (error)
781                 return error;
782         ASSERT(bno == 0 || bno == ip->i_imap.im_blkno);
783
784         /*
785          * Get pointers to the on-disk inode and the buffer containing it.
786          */
787         error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &bp,
788                                XFS_BUF_LOCK, iget_flags);
789         if (error)
790                 return error;
791         dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
792
793         /*
794          * If we got something that isn't an inode it means someone
795          * (nfs or dmi) has a stale handle.
796          */
797         if (be16_to_cpu(dip->di_magic) != XFS_DINODE_MAGIC) {
798 #ifdef DEBUG
799                 xfs_fs_cmn_err(CE_ALERT, mp, "xfs_iread: "
800                                 "dip->di_magic (0x%x) != "
801                                 "XFS_DINODE_MAGIC (0x%x)",
802                                 be16_to_cpu(dip->di_magic),
803                                 XFS_DINODE_MAGIC);
804 #endif /* DEBUG */
805                 error = XFS_ERROR(EINVAL);
806                 goto out_brelse;
807         }
808
809         /*
810          * If the on-disk inode is already linked to a directory
811          * entry, copy all of the inode into the in-core inode.
812          * xfs_iformat() handles copying in the inode format
813          * specific information.
814          * Otherwise, just get the truly permanent information.
815          */
816         if (dip->di_mode) {
817                 xfs_dinode_from_disk(&ip->i_d, dip);
818                 error = xfs_iformat(ip, dip);
819                 if (error)  {
820 #ifdef DEBUG
821                         xfs_fs_cmn_err(CE_ALERT, mp, "xfs_iread: "
822                                         "xfs_iformat() returned error %d",
823                                         error);
824 #endif /* DEBUG */
825                         goto out_brelse;
826                 }
827         } else {
828                 ip->i_d.di_magic = be16_to_cpu(dip->di_magic);
829                 ip->i_d.di_version = dip->di_version;
830                 ip->i_d.di_gen = be32_to_cpu(dip->di_gen);
831                 ip->i_d.di_flushiter = be16_to_cpu(dip->di_flushiter);
832                 /*
833                  * Make sure to pull in the mode here as well in
834                  * case the inode is released without being used.
835                  * This ensures that xfs_inactive() will see that
836                  * the inode is already free and not try to mess
837                  * with the uninitialized part of it.
838                  */
839                 ip->i_d.di_mode = 0;
840                 /*
841                  * Initialize the per-fork minima and maxima for a new
842                  * inode here.  xfs_iformat will do it for old inodes.
843                  */
844                 ip->i_df.if_ext_max =
845                         XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
846         }
847
848         /*
849          * The inode format changed when we moved the link count and
850          * made it 32 bits long.  If this is an old format inode,
851          * convert it in memory to look like a new one.  If it gets
852          * flushed to disk we will convert back before flushing or
853          * logging it.  We zero out the new projid field and the old link
854          * count field.  We'll handle clearing the pad field (the remains
855          * of the old uuid field) when we actually convert the inode to
856          * the new format. We don't change the version number so that we
857          * can distinguish this from a real new format inode.
858          */
859         if (ip->i_d.di_version == 1) {
860                 ip->i_d.di_nlink = ip->i_d.di_onlink;
861                 ip->i_d.di_onlink = 0;
862                 ip->i_d.di_projid = 0;
863         }
864
865         ip->i_delayed_blks = 0;
866         ip->i_size = ip->i_d.di_size;
867
868         /*
869          * Mark the buffer containing the inode as something to keep
870          * around for a while.  This helps to keep recently accessed
871          * meta-data in-core longer.
872          */
873          XFS_BUF_SET_REF(bp, XFS_INO_REF);
874
875         /*
876          * Use xfs_trans_brelse() to release the buffer containing the
877          * on-disk inode, because it was acquired with xfs_trans_read_buf()
878          * in xfs_itobp() above.  If tp is NULL, this is just a normal
879          * brelse().  If we're within a transaction, then xfs_trans_brelse()
880          * will only release the buffer if it is not dirty within the
881          * transaction.  It will be OK to release the buffer in this case,
882          * because inodes on disk are never destroyed and we will be
883          * locking the new in-core inode before putting it in the hash
884          * table where other processes can find it.  Thus we don't have
885          * to worry about the inode being changed just because we released
886          * the buffer.
887          */
888  out_brelse:
889         xfs_trans_brelse(tp, bp);
890         return error;
891 }
892
893 /*
894  * Read in extents from a btree-format inode.
895  * Allocate and fill in if_extents.  Real work is done in xfs_bmap.c.
896  */
897 int
898 xfs_iread_extents(
899         xfs_trans_t     *tp,
900         xfs_inode_t     *ip,
901         int             whichfork)
902 {
903         int             error;
904         xfs_ifork_t     *ifp;
905         xfs_extnum_t    nextents;
906         size_t          size;
907
908         if (unlikely(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
909                 XFS_ERROR_REPORT("xfs_iread_extents", XFS_ERRLEVEL_LOW,
910                                  ip->i_mount);
911                 return XFS_ERROR(EFSCORRUPTED);
912         }
913         nextents = XFS_IFORK_NEXTENTS(ip, whichfork);
914         size = nextents * sizeof(xfs_bmbt_rec_t);
915         ifp = XFS_IFORK_PTR(ip, whichfork);
916
917         /*
918          * We know that the size is valid (it's checked in iformat_btree)
919          */
920         ifp->if_lastex = NULLEXTNUM;
921         ifp->if_bytes = ifp->if_real_bytes = 0;
922         ifp->if_flags |= XFS_IFEXTENTS;
923         xfs_iext_add(ifp, 0, nextents);
924         error = xfs_bmap_read_extents(tp, ip, whichfork);
925         if (error) {
926                 xfs_iext_destroy(ifp);
927                 ifp->if_flags &= ~XFS_IFEXTENTS;
928                 return error;
929         }
930         xfs_validate_extents(ifp, nextents, XFS_EXTFMT_INODE(ip));
931         return 0;
932 }
933
934 /*
935  * Allocate an inode on disk and return a copy of its in-core version.
936  * The in-core inode is locked exclusively.  Set mode, nlink, and rdev
937  * appropriately within the inode.  The uid and gid for the inode are
938  * set according to the contents of the given cred structure.
939  *
940  * Use xfs_dialloc() to allocate the on-disk inode. If xfs_dialloc()
941  * has a free inode available, call xfs_iget()
942  * to obtain the in-core version of the allocated inode.  Finally,
943  * fill in the inode and log its initial contents.  In this case,
944  * ialloc_context would be set to NULL and call_again set to false.
945  *
946  * If xfs_dialloc() does not have an available inode,
947  * it will replenish its supply by doing an allocation. Since we can
948  * only do one allocation within a transaction without deadlocks, we
949  * must commit the current transaction before returning the inode itself.
950  * In this case, therefore, we will set call_again to true and return.
951  * The caller should then commit the current transaction, start a new
952  * transaction, and call xfs_ialloc() again to actually get the inode.
953  *
954  * To ensure that some other process does not grab the inode that
955  * was allocated during the first call to xfs_ialloc(), this routine
956  * also returns the [locked] bp pointing to the head of the freelist
957  * as ialloc_context.  The caller should hold this buffer across
958  * the commit and pass it back into this routine on the second call.
959  *
960  * If we are allocating quota inodes, we do not have a parent inode
961  * to attach to or associate with (i.e. pip == NULL) because they
962  * are not linked into the directory structure - they are attached
963  * directly to the superblock - and so have no parent.
964  */
965 int
966 xfs_ialloc(
967         xfs_trans_t     *tp,
968         xfs_inode_t     *pip,
969         mode_t          mode,
970         xfs_nlink_t     nlink,
971         xfs_dev_t       rdev,
972         cred_t          *cr,
973         xfs_prid_t      prid,
974         int             okalloc,
975         xfs_buf_t       **ialloc_context,
976         boolean_t       *call_again,
977         xfs_inode_t     **ipp)
978 {
979         xfs_ino_t       ino;
980         xfs_inode_t     *ip;
981         uint            flags;
982         int             error;
983         timespec_t      tv;
984         int             filestreams = 0;
985
986         /*
987          * Call the space management code to pick
988          * the on-disk inode to be allocated.
989          */
990         error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode, okalloc,
991                             ialloc_context, call_again, &ino);
992         if (error)
993                 return error;
994         if (*call_again || ino == NULLFSINO) {
995                 *ipp = NULL;
996                 return 0;
997         }
998         ASSERT(*ialloc_context == NULL);
999
1000         /*
1001          * Get the in-core inode with the lock held exclusively.
1002          * This is because we're setting fields here we need
1003          * to prevent others from looking at until we're done.
1004          */
1005         error = xfs_trans_iget(tp->t_mountp, tp, ino,
1006                                 XFS_IGET_CREATE, XFS_ILOCK_EXCL, &ip);
1007         if (error)
1008                 return error;
1009         ASSERT(ip != NULL);
1010
1011         ip->i_d.di_mode = (__uint16_t)mode;
1012         ip->i_d.di_onlink = 0;
1013         ip->i_d.di_nlink = nlink;
1014         ASSERT(ip->i_d.di_nlink == nlink);
1015         ip->i_d.di_uid = current_fsuid();
1016         ip->i_d.di_gid = current_fsgid();
1017         ip->i_d.di_projid = prid;
1018         memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
1019
1020         /*
1021          * If the superblock version is up to where we support new format
1022          * inodes and this is currently an old format inode, then change
1023          * the inode version number now.  This way we only do the conversion
1024          * here rather than here and in the flush/logging code.
1025          */
1026         if (xfs_sb_version_hasnlink(&tp->t_mountp->m_sb) &&
1027             ip->i_d.di_version == 1) {
1028                 ip->i_d.di_version = 2;
1029                 /*
1030                  * We've already zeroed the old link count, the projid field,
1031                  * and the pad field.
1032                  */
1033         }
1034
1035         /*
1036          * Project ids won't be stored on disk if we are using a version 1 inode.
1037          */
1038         if ((prid != 0) && (ip->i_d.di_version == 1))
1039                 xfs_bump_ino_vers2(tp, ip);
1040
1041         if (pip && XFS_INHERIT_GID(pip)) {
1042                 ip->i_d.di_gid = pip->i_d.di_gid;
1043                 if ((pip->i_d.di_mode & S_ISGID) && (mode & S_IFMT) == S_IFDIR) {
1044                         ip->i_d.di_mode |= S_ISGID;
1045                 }
1046         }
1047
1048         /*
1049          * If the group ID of the new file does not match the effective group
1050          * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
1051          * (and only if the irix_sgid_inherit compatibility variable is set).
1052          */
1053         if ((irix_sgid_inherit) &&
1054             (ip->i_d.di_mode & S_ISGID) &&
1055             (!in_group_p((gid_t)ip->i_d.di_gid))) {
1056                 ip->i_d.di_mode &= ~S_ISGID;
1057         }
1058
1059         ip->i_d.di_size = 0;
1060         ip->i_size = 0;
1061         ip->i_d.di_nextents = 0;
1062         ASSERT(ip->i_d.di_nblocks == 0);
1063
1064         nanotime(&tv);
1065         ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
1066         ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
1067         ip->i_d.di_atime = ip->i_d.di_mtime;
1068         ip->i_d.di_ctime = ip->i_d.di_mtime;
1069
1070         /*
1071          * di_gen will have been taken care of in xfs_iread.
1072          */
1073         ip->i_d.di_extsize = 0;
1074         ip->i_d.di_dmevmask = 0;
1075         ip->i_d.di_dmstate = 0;
1076         ip->i_d.di_flags = 0;
1077         flags = XFS_ILOG_CORE;
1078         switch (mode & S_IFMT) {
1079         case S_IFIFO:
1080         case S_IFCHR:
1081         case S_IFBLK:
1082         case S_IFSOCK:
1083                 ip->i_d.di_format = XFS_DINODE_FMT_DEV;
1084                 ip->i_df.if_u2.if_rdev = rdev;
1085                 ip->i_df.if_flags = 0;
1086                 flags |= XFS_ILOG_DEV;
1087                 break;
1088         case S_IFREG:
1089                 /*
1090                  * we can't set up filestreams until after the VFS inode
1091                  * is set up properly.
1092                  */
1093                 if (pip && xfs_inode_is_filestream(pip))
1094                         filestreams = 1;
1095                 /* fall through */
1096         case S_IFDIR:
1097                 if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
1098                         uint    di_flags = 0;
1099
1100                         if ((mode & S_IFMT) == S_IFDIR) {
1101                                 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
1102                                         di_flags |= XFS_DIFLAG_RTINHERIT;
1103                                 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
1104                                         di_flags |= XFS_DIFLAG_EXTSZINHERIT;
1105                                         ip->i_d.di_extsize = pip->i_d.di_extsize;
1106                                 }
1107                         } else if ((mode & S_IFMT) == S_IFREG) {
1108                                 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
1109                                         di_flags |= XFS_DIFLAG_REALTIME;
1110                                 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
1111                                         di_flags |= XFS_DIFLAG_EXTSIZE;
1112                                         ip->i_d.di_extsize = pip->i_d.di_extsize;
1113                                 }
1114                         }
1115                         if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
1116                             xfs_inherit_noatime)
1117                                 di_flags |= XFS_DIFLAG_NOATIME;
1118                         if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
1119                             xfs_inherit_nodump)
1120                                 di_flags |= XFS_DIFLAG_NODUMP;
1121                         if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
1122                             xfs_inherit_sync)
1123                                 di_flags |= XFS_DIFLAG_SYNC;
1124                         if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
1125                             xfs_inherit_nosymlinks)
1126                                 di_flags |= XFS_DIFLAG_NOSYMLINKS;
1127                         if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1128                                 di_flags |= XFS_DIFLAG_PROJINHERIT;
1129                         if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
1130                             xfs_inherit_nodefrag)
1131                                 di_flags |= XFS_DIFLAG_NODEFRAG;
1132                         if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
1133                                 di_flags |= XFS_DIFLAG_FILESTREAM;
1134                         ip->i_d.di_flags |= di_flags;
1135                 }
1136                 /* FALLTHROUGH */
1137         case S_IFLNK:
1138                 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
1139                 ip->i_df.if_flags = XFS_IFEXTENTS;
1140                 ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
1141                 ip->i_df.if_u1.if_extents = NULL;
1142                 break;
1143         default:
1144                 ASSERT(0);
1145         }
1146         /*
1147          * Attribute fork settings for new inode.
1148          */
1149         ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1150         ip->i_d.di_anextents = 0;
1151
1152         /*
1153          * Log the new values stuffed into the inode.
1154          */
1155         xfs_trans_log_inode(tp, ip, flags);
1156
1157         /* now that we have an i_mode we can setup inode ops and unlock */
1158         xfs_setup_inode(ip);
1159
1160         /* now we have set up the vfs inode we can associate the filestream */
1161         if (filestreams) {
1162                 error = xfs_filestream_associate(pip, ip);
1163                 if (error < 0)
1164                         return -error;
1165                 if (!error)
1166                         xfs_iflags_set(ip, XFS_IFILESTREAM);
1167         }
1168
1169         *ipp = ip;
1170         return 0;
1171 }
1172
1173 /*
1174  * Check to make sure that there are no blocks allocated to the
1175  * file beyond the size of the file.  We don't check this for
1176  * files with fixed size extents or real time extents, but we
1177  * at least do it for regular files.
1178  */
1179 #ifdef DEBUG
1180 void
1181 xfs_isize_check(
1182         xfs_mount_t     *mp,
1183         xfs_inode_t     *ip,
1184         xfs_fsize_t     isize)
1185 {
1186         xfs_fileoff_t   map_first;
1187         int             nimaps;
1188         xfs_bmbt_irec_t imaps[2];
1189
1190         if ((ip->i_d.di_mode & S_IFMT) != S_IFREG)
1191                 return;
1192
1193         if (XFS_IS_REALTIME_INODE(ip))
1194                 return;
1195
1196         if (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE)
1197                 return;
1198
1199         nimaps = 2;
1200         map_first = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize);
1201         /*
1202          * The filesystem could be shutting down, so bmapi may return
1203          * an error.
1204          */
1205         if (xfs_bmapi(NULL, ip, map_first,
1206                          (XFS_B_TO_FSB(mp,
1207                                        (xfs_ufsize_t)XFS_MAXIOFFSET(mp)) -
1208                           map_first),
1209                          XFS_BMAPI_ENTIRE, NULL, 0, imaps, &nimaps,
1210                          NULL, NULL))
1211             return;
1212         ASSERT(nimaps == 1);
1213         ASSERT(imaps[0].br_startblock == HOLESTARTBLOCK);
1214 }
1215 #endif  /* DEBUG */
1216
1217 /*
1218  * Calculate the last possible buffered byte in a file.  This must
1219  * include data that was buffered beyond the EOF by the write code.
1220  * This also needs to deal with overflowing the xfs_fsize_t type
1221  * which can happen for sizes near the limit.
1222  *
1223  * We also need to take into account any blocks beyond the EOF.  It
1224  * may be the case that they were buffered by a write which failed.
1225  * In that case the pages will still be in memory, but the inode size
1226  * will never have been updated.
1227  */
1228 xfs_fsize_t
1229 xfs_file_last_byte(
1230         xfs_inode_t     *ip)
1231 {
1232         xfs_mount_t     *mp;
1233         xfs_fsize_t     last_byte;
1234         xfs_fileoff_t   last_block;
1235         xfs_fileoff_t   size_last_block;
1236         int             error;
1237
1238         ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED));
1239
1240         mp = ip->i_mount;
1241         /*
1242          * Only check for blocks beyond the EOF if the extents have
1243          * been read in.  This eliminates the need for the inode lock,
1244          * and it also saves us from looking when it really isn't
1245          * necessary.
1246          */
1247         if (ip->i_df.if_flags & XFS_IFEXTENTS) {
1248                 error = xfs_bmap_last_offset(NULL, ip, &last_block,
1249                         XFS_DATA_FORK);
1250                 if (error) {
1251                         last_block = 0;
1252                 }
1253         } else {
1254                 last_block = 0;
1255         }
1256         size_last_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)ip->i_size);
1257         last_block = XFS_FILEOFF_MAX(last_block, size_last_block);
1258
1259         last_byte = XFS_FSB_TO_B(mp, last_block);
1260         if (last_byte < 0) {
1261                 return XFS_MAXIOFFSET(mp);
1262         }
1263         last_byte += (1 << mp->m_writeio_log);
1264         if (last_byte < 0) {
1265                 return XFS_MAXIOFFSET(mp);
1266         }
1267         return last_byte;
1268 }
1269
1270 #if defined(XFS_RW_TRACE)
1271 STATIC void
1272 xfs_itrunc_trace(
1273         int             tag,
1274         xfs_inode_t     *ip,
1275         int             flag,
1276         xfs_fsize_t     new_size,
1277         xfs_off_t       toss_start,
1278         xfs_off_t       toss_finish)
1279 {
1280         if (ip->i_rwtrace == NULL) {
1281                 return;
1282         }
1283
1284         ktrace_enter(ip->i_rwtrace,
1285                      (void*)((long)tag),
1286                      (void*)ip,
1287                      (void*)(unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff),
1288                      (void*)(unsigned long)(ip->i_d.di_size & 0xffffffff),
1289                      (void*)((long)flag),
1290                      (void*)(unsigned long)((new_size >> 32) & 0xffffffff),
1291                      (void*)(unsigned long)(new_size & 0xffffffff),
1292                      (void*)(unsigned long)((toss_start >> 32) & 0xffffffff),
1293                      (void*)(unsigned long)(toss_start & 0xffffffff),
1294                      (void*)(unsigned long)((toss_finish >> 32) & 0xffffffff),
1295                      (void*)(unsigned long)(toss_finish & 0xffffffff),
1296                      (void*)(unsigned long)current_cpu(),
1297                      (void*)(unsigned long)current_pid(),
1298                      (void*)NULL,
1299                      (void*)NULL,
1300                      (void*)NULL);
1301 }
1302 #else
1303 #define xfs_itrunc_trace(tag, ip, flag, new_size, toss_start, toss_finish)
1304 #endif
1305
1306 /*
1307  * Start the truncation of the file to new_size.  The new size
1308  * must be smaller than the current size.  This routine will
1309  * clear the buffer and page caches of file data in the removed
1310  * range, and xfs_itruncate_finish() will remove the underlying
1311  * disk blocks.
1312  *
1313  * The inode must have its I/O lock locked EXCLUSIVELY, and it
1314  * must NOT have the inode lock held at all.  This is because we're
1315  * calling into the buffer/page cache code and we can't hold the
1316  * inode lock when we do so.
1317  *
1318  * We need to wait for any direct I/Os in flight to complete before we
1319  * proceed with the truncate. This is needed to prevent the extents
1320  * being read or written by the direct I/Os from being removed while the
1321  * I/O is in flight as there is no other method of synchronising
1322  * direct I/O with the truncate operation.  Also, because we hold
1323  * the IOLOCK in exclusive mode, we prevent new direct I/Os from being
1324  * started until the truncate completes and drops the lock. Essentially,
1325  * the vn_iowait() call forms an I/O barrier that provides strict ordering
1326  * between direct I/Os and the truncate operation.
1327  *
1328  * The flags parameter can have either the value XFS_ITRUNC_DEFINITE
1329  * or XFS_ITRUNC_MAYBE.  The XFS_ITRUNC_MAYBE value should be used
1330  * in the case that the caller is locking things out of order and
1331  * may not be able to call xfs_itruncate_finish() with the inode lock
1332  * held without dropping the I/O lock.  If the caller must drop the
1333  * I/O lock before calling xfs_itruncate_finish(), then xfs_itruncate_start()
1334  * must be called again with all the same restrictions as the initial
1335  * call.
1336  */
1337 int
1338 xfs_itruncate_start(
1339         xfs_inode_t     *ip,
1340         uint            flags,
1341         xfs_fsize_t     new_size)
1342 {
1343         xfs_fsize_t     last_byte;
1344         xfs_off_t       toss_start;
1345         xfs_mount_t     *mp;
1346         int             error = 0;
1347
1348         ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
1349         ASSERT((new_size == 0) || (new_size <= ip->i_size));
1350         ASSERT((flags == XFS_ITRUNC_DEFINITE) ||
1351                (flags == XFS_ITRUNC_MAYBE));
1352
1353         mp = ip->i_mount;
1354
1355         /* wait for the completion of any pending DIOs */
1356         if (new_size == 0 || new_size < ip->i_size)
1357                 vn_iowait(ip);
1358
1359         /*
1360          * Call toss_pages or flushinval_pages to get rid of pages
1361          * overlapping the region being removed.  We have to use
1362          * the less efficient flushinval_pages in the case that the
1363          * caller may not be able to finish the truncate without
1364          * dropping the inode's I/O lock.  Make sure
1365          * to catch any pages brought in by buffers overlapping
1366          * the EOF by searching out beyond the isize by our
1367          * block size. We round new_size up to a block boundary
1368          * so that we don't toss things on the same block as
1369          * new_size but before it.
1370          *
1371          * Before calling toss_page or flushinval_pages, make sure to
1372          * call remapf() over the same region if the file is mapped.
1373          * This frees up mapped file references to the pages in the
1374          * given range and for the flushinval_pages case it ensures
1375          * that we get the latest mapped changes flushed out.
1376          */
1377         toss_start = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
1378         toss_start = XFS_FSB_TO_B(mp, toss_start);
1379         if (toss_start < 0) {
1380                 /*
1381                  * The place to start tossing is beyond our maximum
1382                  * file size, so there is no way that the data extended
1383                  * out there.
1384                  */
1385                 return 0;
1386         }
1387         last_byte = xfs_file_last_byte(ip);
1388         xfs_itrunc_trace(XFS_ITRUNC_START, ip, flags, new_size, toss_start,
1389                          last_byte);
1390         if (last_byte > toss_start) {
1391                 if (flags & XFS_ITRUNC_DEFINITE) {
1392                         xfs_tosspages(ip, toss_start,
1393                                         -1, FI_REMAPF_LOCKED);
1394                 } else {
1395                         error = xfs_flushinval_pages(ip, toss_start,
1396                                         -1, FI_REMAPF_LOCKED);
1397                 }
1398         }
1399
1400 #ifdef DEBUG
1401         if (new_size == 0) {
1402                 ASSERT(VN_CACHED(VFS_I(ip)) == 0);
1403         }
1404 #endif
1405         return error;
1406 }
1407
1408 /*
1409  * Shrink the file to the given new_size.  The new size must be smaller than
1410  * the current size.  This will free up the underlying blocks in the removed
1411  * range after a call to xfs_itruncate_start() or xfs_atruncate_start().
1412  *
1413  * The transaction passed to this routine must have made a permanent log
1414  * reservation of at least XFS_ITRUNCATE_LOG_RES.  This routine may commit the
1415  * given transaction and start new ones, so make sure everything involved in
1416  * the transaction is tidy before calling here.  Some transaction will be
1417  * returned to the caller to be committed.  The incoming transaction must
1418  * already include the inode, and both inode locks must be held exclusively.
1419  * The inode must also be "held" within the transaction.  On return the inode
1420  * will be "held" within the returned transaction.  This routine does NOT
1421  * require any disk space to be reserved for it within the transaction.
1422  *
1423  * The fork parameter must be either xfs_attr_fork or xfs_data_fork, and it
1424  * indicates the fork which is to be truncated.  For the attribute fork we only
1425  * support truncation to size 0.
1426  *
1427  * We use the sync parameter to indicate whether or not the first transaction
1428  * we perform might have to be synchronous.  For the attr fork, it needs to be
1429  * so if the unlink of the inode is not yet known to be permanent in the log.
1430  * This keeps us from freeing and reusing the blocks of the attribute fork
1431  * before the unlink of the inode becomes permanent.
1432  *
1433  * For the data fork, we normally have to run synchronously if we're being
1434  * called out of the inactive path or we're being called out of the create path
1435  * where we're truncating an existing file.  Either way, the truncate needs to
1436  * be sync so blocks don't reappear in the file with altered data in case of a
1437  * crash.  wsync filesystems can run the first case async because anything that
1438  * shrinks the inode has to run sync so by the time we're called here from
1439  * inactive, the inode size is permanently set to 0.
1440  *
1441  * Calls from the truncate path always need to be sync unless we're in a wsync
1442  * filesystem and the file has already been unlinked.
1443  *
1444  * The caller is responsible for correctly setting the sync parameter.  It gets
1445  * too hard for us to guess here which path we're being called out of just
1446  * based on inode state.
1447  *
1448  * If we get an error, we must return with the inode locked and linked into the
1449  * current transaction. This keeps things simple for the higher level code,
1450  * because it always knows that the inode is locked and held in the transaction
1451  * that returns to it whether errors occur or not.  We don't mark the inode
1452  * dirty on error so that transactions can be easily aborted if possible.
1453  */
1454 int
1455 xfs_itruncate_finish(
1456         xfs_trans_t     **tp,
1457         xfs_inode_t     *ip,
1458         xfs_fsize_t     new_size,
1459         int             fork,
1460         int             sync)
1461 {
1462         xfs_fsblock_t   first_block;
1463         xfs_fileoff_t   first_unmap_block;
1464         xfs_fileoff_t   last_block;
1465         xfs_filblks_t   unmap_len=0;
1466         xfs_mount_t     *mp;
1467         xfs_trans_t     *ntp;
1468         int             done;
1469         int             committed;
1470         xfs_bmap_free_t free_list;
1471         int             error;
1472
1473         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL));
1474         ASSERT((new_size == 0) || (new_size <= ip->i_size));
1475         ASSERT(*tp != NULL);
1476         ASSERT((*tp)->t_flags & XFS_TRANS_PERM_LOG_RES);
1477         ASSERT(ip->i_transp == *tp);
1478         ASSERT(ip->i_itemp != NULL);
1479         ASSERT(ip->i_itemp->ili_flags & XFS_ILI_HOLD);
1480
1481
1482         ntp = *tp;
1483         mp = (ntp)->t_mountp;
1484         ASSERT(! XFS_NOT_DQATTACHED(mp, ip));
1485
1486         /*
1487          * We only support truncating the entire attribute fork.
1488          */
1489         if (fork == XFS_ATTR_FORK) {
1490                 new_size = 0LL;
1491         }
1492         first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
1493         xfs_itrunc_trace(XFS_ITRUNC_FINISH1, ip, 0, new_size, 0, 0);
1494         /*
1495          * The first thing we do is set the size to new_size permanently
1496          * on disk.  This way we don't have to worry about anyone ever
1497          * being able to look at the data being freed even in the face
1498          * of a crash.  What we're getting around here is the case where
1499          * we free a block, it is allocated to another file, it is written
1500          * to, and then we crash.  If the new data gets written to the
1501          * file but the log buffers containing the free and reallocation
1502          * don't, then we'd end up with garbage in the blocks being freed.
1503          * As long as we make the new_size permanent before actually
1504          * freeing any blocks it doesn't matter if they get writtten to.
1505          *
1506          * The callers must signal into us whether or not the size
1507          * setting here must be synchronous.  There are a few cases
1508          * where it doesn't have to be synchronous.  Those cases
1509          * occur if the file is unlinked and we know the unlink is
1510          * permanent or if the blocks being truncated are guaranteed
1511          * to be beyond the inode eof (regardless of the link count)
1512          * and the eof value is permanent.  Both of these cases occur
1513          * only on wsync-mounted filesystems.  In those cases, we're
1514          * guaranteed that no user will ever see the data in the blocks
1515          * that are being truncated so the truncate can run async.
1516          * In the free beyond eof case, the file may wind up with
1517          * more blocks allocated to it than it needs if we crash
1518          * and that won't get fixed until the next time the file
1519          * is re-opened and closed but that's ok as that shouldn't
1520          * be too many blocks.
1521          *
1522          * However, we can't just make all wsync xactions run async
1523          * because there's one call out of the create path that needs
1524          * to run sync where it's truncating an existing file to size
1525          * 0 whose size is > 0.
1526          *
1527          * It's probably possible to come up with a test in this
1528          * routine that would correctly distinguish all the above
1529          * cases from the values of the function parameters and the
1530          * inode state but for sanity's sake, I've decided to let the
1531          * layers above just tell us.  It's simpler to correctly figure
1532          * out in the layer above exactly under what conditions we
1533          * can run async and I think it's easier for others read and
1534          * follow the logic in case something has to be changed.
1535          * cscope is your friend -- rcc.
1536          *
1537          * The attribute fork is much simpler.
1538          *
1539          * For the attribute fork we allow the caller to tell us whether
1540          * the unlink of the inode that led to this call is yet permanent
1541          * in the on disk log.  If it is not and we will be freeing extents
1542          * in this inode then we make the first transaction synchronous
1543          * to make sure that the unlink is permanent by the time we free
1544          * the blocks.
1545          */
1546         if (fork == XFS_DATA_FORK) {
1547                 if (ip->i_d.di_nextents > 0) {
1548                         /*
1549                          * If we are not changing the file size then do
1550                          * not update the on-disk file size - we may be
1551                          * called from xfs_inactive_free_eofblocks().  If we
1552                          * update the on-disk file size and then the system
1553                          * crashes before the contents of the file are
1554                          * flushed to disk then the files may be full of
1555                          * holes (ie NULL files bug).
1556                          */
1557                         if (ip->i_size != new_size) {
1558                                 ip->i_d.di_size = new_size;
1559                                 ip->i_size = new_size;
1560                                 xfs_trans_log_inode(ntp, ip, XFS_ILOG_CORE);
1561                         }
1562                 }
1563         } else if (sync) {
1564                 ASSERT(!(mp->m_flags & XFS_MOUNT_WSYNC));
1565                 if (ip->i_d.di_anextents > 0)
1566                         xfs_trans_set_sync(ntp);
1567         }
1568         ASSERT(fork == XFS_DATA_FORK ||
1569                 (fork == XFS_ATTR_FORK &&
1570                         ((sync && !(mp->m_flags & XFS_MOUNT_WSYNC)) ||
1571                          (sync == 0 && (mp->m_flags & XFS_MOUNT_WSYNC)))));
1572
1573         /*
1574          * Since it is possible for space to become allocated beyond
1575          * the end of the file (in a crash where the space is allocated
1576          * but the inode size is not yet updated), simply remove any
1577          * blocks which show up between the new EOF and the maximum
1578          * possible file size.  If the first block to be removed is
1579          * beyond the maximum file size (ie it is the same as last_block),
1580          * then there is nothing to do.
1581          */
1582         last_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1583         ASSERT(first_unmap_block <= last_block);
1584         done = 0;
1585         if (last_block == first_unmap_block) {
1586                 done = 1;
1587         } else {
1588                 unmap_len = last_block - first_unmap_block + 1;
1589         }
1590         while (!done) {
1591                 /*
1592                  * Free up up to XFS_ITRUNC_MAX_EXTENTS.  xfs_bunmapi()
1593                  * will tell us whether it freed the entire range or
1594                  * not.  If this is a synchronous mount (wsync),
1595                  * then we can tell bunmapi to keep all the
1596                  * transactions asynchronous since the unlink
1597                  * transaction that made this inode inactive has
1598                  * already hit the disk.  There's no danger of
1599                  * the freed blocks being reused, there being a
1600                  * crash, and the reused blocks suddenly reappearing
1601                  * in this file with garbage in them once recovery
1602                  * runs.
1603                  */
1604                 XFS_BMAP_INIT(&free_list, &first_block);
1605                 error = xfs_bunmapi(ntp, ip,
1606                                     first_unmap_block, unmap_len,
1607                                     XFS_BMAPI_AFLAG(fork) |
1608                                       (sync ? 0 : XFS_BMAPI_ASYNC),
1609                                     XFS_ITRUNC_MAX_EXTENTS,
1610                                     &first_block, &free_list,
1611                                     NULL, &done);
1612                 if (error) {
1613                         /*
1614                          * If the bunmapi call encounters an error,
1615                          * return to the caller where the transaction
1616                          * can be properly aborted.  We just need to
1617                          * make sure we're not holding any resources
1618                          * that we were not when we came in.
1619                          */
1620                         xfs_bmap_cancel(&free_list);
1621                         return error;
1622                 }
1623
1624                 /*
1625                  * Duplicate the transaction that has the permanent
1626                  * reservation and commit the old transaction.
1627                  */
1628                 error = xfs_bmap_finish(tp, &free_list, &committed);
1629                 ntp = *tp;
1630                 if (committed) {
1631                         /* link the inode into the next xact in the chain */
1632                         xfs_trans_ijoin(ntp, ip,
1633                                         XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1634                         xfs_trans_ihold(ntp, ip);
1635                 }
1636
1637                 if (error) {
1638                         /*
1639                          * If the bmap finish call encounters an error, return
1640                          * to the caller where the transaction can be properly
1641                          * aborted.  We just need to make sure we're not
1642                          * holding any resources that we were not when we came
1643                          * in.
1644                          *
1645                          * Aborting from this point might lose some blocks in
1646                          * the file system, but oh well.
1647                          */
1648                         xfs_bmap_cancel(&free_list);
1649                         return error;
1650                 }
1651
1652                 if (committed) {
1653                         /*
1654                          * Mark the inode dirty so it will be logged and
1655                          * moved forward in the log as part of every commit.
1656                          */
1657                         xfs_trans_log_inode(ntp, ip, XFS_ILOG_CORE);
1658                 }
1659
1660                 ntp = xfs_trans_dup(ntp);
1661                 error = xfs_trans_commit(*tp, 0);
1662                 *tp = ntp;
1663
1664                 /* link the inode into the next transaction in the chain */
1665                 xfs_trans_ijoin(ntp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1666                 xfs_trans_ihold(ntp, ip);
1667
1668                 if (error)
1669                         return error;
1670                 /*
1671                  * transaction commit worked ok so we can drop the extra ticket
1672                  * reference that we gained in xfs_trans_dup()
1673                  */
1674                 xfs_log_ticket_put(ntp->t_ticket);
1675                 error = xfs_trans_reserve(ntp, 0,
1676                                         XFS_ITRUNCATE_LOG_RES(mp), 0,
1677                                         XFS_TRANS_PERM_LOG_RES,
1678                                         XFS_ITRUNCATE_LOG_COUNT);
1679                 if (error)
1680                         return error;
1681         }
1682         /*
1683          * Only update the size in the case of the data fork, but
1684          * always re-log the inode so that our permanent transaction
1685          * can keep on rolling it forward in the log.
1686          */
1687         if (fork == XFS_DATA_FORK) {
1688                 xfs_isize_check(mp, ip, new_size);
1689                 /*
1690                  * If we are not changing the file size then do
1691                  * not update the on-disk file size - we may be
1692                  * called from xfs_inactive_free_eofblocks().  If we
1693                  * update the on-disk file size and then the system
1694                  * crashes before the contents of the file are
1695                  * flushed to disk then the files may be full of
1696                  * holes (ie NULL files bug).
1697                  */
1698                 if (ip->i_size != new_size) {
1699                         ip->i_d.di_size = new_size;
1700                         ip->i_size = new_size;
1701                 }
1702         }
1703         xfs_trans_log_inode(ntp, ip, XFS_ILOG_CORE);
1704         ASSERT((new_size != 0) ||
1705                (fork == XFS_ATTR_FORK) ||
1706                (ip->i_delayed_blks == 0));
1707         ASSERT((new_size != 0) ||
1708                (fork == XFS_ATTR_FORK) ||
1709                (ip->i_d.di_nextents == 0));
1710         xfs_itrunc_trace(XFS_ITRUNC_FINISH2, ip, 0, new_size, 0, 0);
1711         return 0;
1712 }
1713
1714 /*
1715  * This is called when the inode's link count goes to 0.
1716  * We place the on-disk inode on a list in the AGI.  It
1717  * will be pulled from this list when the inode is freed.
1718  */
1719 int
1720 xfs_iunlink(
1721         xfs_trans_t     *tp,
1722         xfs_inode_t     *ip)
1723 {
1724         xfs_mount_t     *mp;
1725         xfs_agi_t       *agi;
1726         xfs_dinode_t    *dip;
1727         xfs_buf_t       *agibp;
1728         xfs_buf_t       *ibp;
1729         xfs_agino_t     agino;
1730         short           bucket_index;
1731         int             offset;
1732         int             error;
1733
1734         ASSERT(ip->i_d.di_nlink == 0);
1735         ASSERT(ip->i_d.di_mode != 0);
1736         ASSERT(ip->i_transp == tp);
1737
1738         mp = tp->t_mountp;
1739
1740         /*
1741          * Get the agi buffer first.  It ensures lock ordering
1742          * on the list.
1743          */
1744         error = xfs_read_agi(mp, tp, XFS_INO_TO_AGNO(mp, ip->i_ino), &agibp);
1745         if (error)
1746                 return error;
1747         agi = XFS_BUF_TO_AGI(agibp);
1748
1749         /*
1750          * Get the index into the agi hash table for the
1751          * list this inode will go on.
1752          */
1753         agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
1754         ASSERT(agino != 0);
1755         bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
1756         ASSERT(agi->agi_unlinked[bucket_index]);
1757         ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
1758
1759         if (be32_to_cpu(agi->agi_unlinked[bucket_index]) != NULLAGINO) {
1760                 /*
1761                  * There is already another inode in the bucket we need
1762                  * to add ourselves to.  Add us at the front of the list.
1763                  * Here we put the head pointer into our next pointer,
1764                  * and then we fall through to point the head at us.
1765                  */
1766                 error = xfs_itobp(mp, tp, ip, &dip, &ibp, XFS_BUF_LOCK);
1767                 if (error)
1768                         return error;
1769
1770                 ASSERT(be32_to_cpu(dip->di_next_unlinked) == NULLAGINO);
1771                 /* both on-disk, don't endian flip twice */
1772                 dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
1773                 offset = ip->i_imap.im_boffset +
1774                         offsetof(xfs_dinode_t, di_next_unlinked);
1775                 xfs_trans_inode_buf(tp, ibp);
1776                 xfs_trans_log_buf(tp, ibp, offset,
1777                                   (offset + sizeof(xfs_agino_t) - 1));
1778                 xfs_inobp_check(mp, ibp);
1779         }
1780
1781         /*
1782          * Point the bucket head pointer at the inode being inserted.
1783          */
1784         ASSERT(agino != 0);
1785         agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
1786         offset = offsetof(xfs_agi_t, agi_unlinked) +
1787                 (sizeof(xfs_agino_t) * bucket_index);
1788         xfs_trans_log_buf(tp, agibp, offset,
1789                           (offset + sizeof(xfs_agino_t) - 1));
1790         return 0;
1791 }
1792
1793 /*
1794  * Pull the on-disk inode from the AGI unlinked list.
1795  */
1796 STATIC int
1797 xfs_iunlink_remove(
1798         xfs_trans_t     *tp,
1799         xfs_inode_t     *ip)
1800 {
1801         xfs_ino_t       next_ino;
1802         xfs_mount_t     *mp;
1803         xfs_agi_t       *agi;
1804         xfs_dinode_t    *dip;
1805         xfs_buf_t       *agibp;
1806         xfs_buf_t       *ibp;
1807         xfs_agnumber_t  agno;
1808         xfs_agino_t     agino;
1809         xfs_agino_t     next_agino;
1810         xfs_buf_t       *last_ibp;
1811         xfs_dinode_t    *last_dip = NULL;
1812         short           bucket_index;
1813         int             offset, last_offset = 0;
1814         int             error;
1815
1816         mp = tp->t_mountp;
1817         agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
1818
1819         /*
1820          * Get the agi buffer first.  It ensures lock ordering
1821          * on the list.
1822          */
1823         error = xfs_read_agi(mp, tp, agno, &agibp);
1824         if (error)
1825                 return error;
1826
1827         agi = XFS_BUF_TO_AGI(agibp);
1828
1829         /*
1830          * Get the index into the agi hash table for the
1831          * list this inode will go on.
1832          */
1833         agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
1834         ASSERT(agino != 0);
1835         bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
1836         ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != NULLAGINO);
1837         ASSERT(agi->agi_unlinked[bucket_index]);
1838
1839         if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
1840                 /*
1841                  * We're at the head of the list.  Get the inode's
1842                  * on-disk buffer to see if there is anyone after us
1843                  * on the list.  Only modify our next pointer if it
1844                  * is not already NULLAGINO.  This saves us the overhead
1845                  * of dealing with the buffer when there is no need to
1846                  * change it.
1847                  */
1848                 error = xfs_itobp(mp, tp, ip, &dip, &ibp, XFS_BUF_LOCK);
1849                 if (error) {
1850                         cmn_err(CE_WARN,
1851                                 "xfs_iunlink_remove: xfs_itobp()  returned an error %d on %s.  Returning error.",
1852                                 error, mp->m_fsname);
1853                         return error;
1854                 }
1855                 next_agino = be32_to_cpu(dip->di_next_unlinked);
1856                 ASSERT(next_agino != 0);
1857                 if (next_agino != NULLAGINO) {
1858                         dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
1859                         offset = ip->i_imap.im_boffset +
1860                                 offsetof(xfs_dinode_t, di_next_unlinked);
1861                         xfs_trans_inode_buf(tp, ibp);
1862                         xfs_trans_log_buf(tp, ibp, offset,
1863                                           (offset + sizeof(xfs_agino_t) - 1));
1864                         xfs_inobp_check(mp, ibp);
1865                 } else {
1866                         xfs_trans_brelse(tp, ibp);
1867                 }
1868                 /*
1869                  * Point the bucket head pointer at the next inode.
1870                  */
1871                 ASSERT(next_agino != 0);
1872                 ASSERT(next_agino != agino);
1873                 agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
1874                 offset = offsetof(xfs_agi_t, agi_unlinked) +
1875                         (sizeof(xfs_agino_t) * bucket_index);
1876                 xfs_trans_log_buf(tp, agibp, offset,
1877                                   (offset + sizeof(xfs_agino_t) - 1));
1878         } else {
1879                 /*
1880                  * We need to search the list for the inode being freed.
1881                  */
1882                 next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
1883                 last_ibp = NULL;
1884                 while (next_agino != agino) {
1885                         /*
1886                          * If the last inode wasn't the one pointing to
1887                          * us, then release its buffer since we're not
1888                          * going to do anything with it.
1889                          */
1890                         if (last_ibp != NULL) {
1891                                 xfs_trans_brelse(tp, last_ibp);
1892                         }
1893                         next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
1894                         error = xfs_inotobp(mp, tp, next_ino, &last_dip,
1895                                             &last_ibp, &last_offset, 0);
1896                         if (error) {
1897                                 cmn_err(CE_WARN,
1898                         "xfs_iunlink_remove: xfs_inotobp()  returned an error %d on %s.  Returning error.",
1899                                         error, mp->m_fsname);
1900                                 return error;
1901                         }
1902                         next_agino = be32_to_cpu(last_dip->di_next_unlinked);
1903                         ASSERT(next_agino != NULLAGINO);
1904                         ASSERT(next_agino != 0);
1905                 }
1906                 /*
1907                  * Now last_ibp points to the buffer previous to us on
1908                  * the unlinked list.  Pull us from the list.
1909                  */
1910                 error = xfs_itobp(mp, tp, ip, &dip, &ibp, XFS_BUF_LOCK);
1911                 if (error) {
1912                         cmn_err(CE_WARN,
1913                                 "xfs_iunlink_remove: xfs_itobp()  returned an error %d on %s.  Returning error.",
1914                                 error, mp->m_fsname);
1915                         return error;
1916                 }
1917                 next_agino = be32_to_cpu(dip->di_next_unlinked);
1918                 ASSERT(next_agino != 0);
1919                 ASSERT(next_agino != agino);
1920                 if (next_agino != NULLAGINO) {
1921                         dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
1922                         offset = ip->i_imap.im_boffset +
1923                                 offsetof(xfs_dinode_t, di_next_unlinked);
1924                         xfs_trans_inode_buf(tp, ibp);
1925                         xfs_trans_log_buf(tp, ibp, offset,
1926                                           (offset + sizeof(xfs_agino_t) - 1));
1927                         xfs_inobp_check(mp, ibp);
1928                 } else {
1929                         xfs_trans_brelse(tp, ibp);
1930                 }
1931                 /*
1932                  * Point the previous inode on the list to the next inode.
1933                  */
1934                 last_dip->di_next_unlinked = cpu_to_be32(next_agino);
1935                 ASSERT(next_agino != 0);
1936                 offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
1937                 xfs_trans_inode_buf(tp, last_ibp);
1938                 xfs_trans_log_buf(tp, last_ibp, offset,
1939                                   (offset + sizeof(xfs_agino_t) - 1));
1940                 xfs_inobp_check(mp, last_ibp);
1941         }
1942         return 0;
1943 }
1944
1945 STATIC void
1946 xfs_ifree_cluster(
1947         xfs_inode_t     *free_ip,
1948         xfs_trans_t     *tp,
1949         xfs_ino_t       inum)
1950 {
1951         xfs_mount_t             *mp = free_ip->i_mount;
1952         int                     blks_per_cluster;
1953         int                     nbufs;
1954         int                     ninodes;
1955         int                     i, j, found, pre_flushed;
1956         xfs_daddr_t             blkno;
1957         xfs_buf_t               *bp;
1958         xfs_inode_t             *ip, **ip_found;
1959         xfs_inode_log_item_t    *iip;
1960         xfs_log_item_t          *lip;
1961         xfs_perag_t             *pag = xfs_get_perag(mp, inum);
1962
1963         if (mp->m_sb.sb_blocksize >= XFS_INODE_CLUSTER_SIZE(mp)) {
1964                 blks_per_cluster = 1;
1965                 ninodes = mp->m_sb.sb_inopblock;
1966                 nbufs = XFS_IALLOC_BLOCKS(mp);
1967         } else {
1968                 blks_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) /
1969                                         mp->m_sb.sb_blocksize;
1970                 ninodes = blks_per_cluster * mp->m_sb.sb_inopblock;
1971                 nbufs = XFS_IALLOC_BLOCKS(mp) / blks_per_cluster;
1972         }
1973
1974         ip_found = kmem_alloc(ninodes * sizeof(xfs_inode_t *), KM_NOFS);
1975
1976         for (j = 0; j < nbufs; j++, inum += ninodes) {
1977                 blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
1978                                          XFS_INO_TO_AGBNO(mp, inum));
1979
1980
1981                 /*
1982                  * Look for each inode in memory and attempt to lock it,
1983                  * we can be racing with flush and tail pushing here.
1984                  * any inode we get the locks on, add to an array of
1985                  * inode items to process later.
1986                  *
1987                  * The get the buffer lock, we could beat a flush
1988                  * or tail pushing thread to the lock here, in which
1989                  * case they will go looking for the inode buffer
1990                  * and fail, we need some other form of interlock
1991                  * here.
1992                  */
1993                 found = 0;
1994                 for (i = 0; i < ninodes; i++) {
1995                         read_lock(&pag->pag_ici_lock);
1996                         ip = radix_tree_lookup(&pag->pag_ici_root,
1997                                         XFS_INO_TO_AGINO(mp, (inum + i)));
1998
1999                         /* Inode not in memory or we found it already,
2000                          * nothing to do
2001                          */
2002                         if (!ip || xfs_iflags_test(ip, XFS_ISTALE)) {
2003                                 read_unlock(&pag->pag_ici_lock);
2004                                 continue;
2005                         }
2006
2007                         if (xfs_inode_clean(ip)) {
2008                                 read_unlock(&pag->pag_ici_lock);
2009                                 continue;
2010                         }
2011
2012                         /* If we can get the locks then add it to the
2013                          * list, otherwise by the time we get the bp lock
2014                          * below it will already be attached to the
2015                          * inode buffer.
2016                          */
2017
2018                         /* This inode will already be locked - by us, lets
2019                          * keep it that way.
2020                          */
2021
2022                         if (ip == free_ip) {
2023                                 if (xfs_iflock_nowait(ip)) {
2024                                         xfs_iflags_set(ip, XFS_ISTALE);
2025                                         if (xfs_inode_clean(ip)) {
2026                                                 xfs_ifunlock(ip);
2027                                         } else {
2028                                                 ip_found[found++] = ip;
2029                                         }
2030                                 }
2031                                 read_unlock(&pag->pag_ici_lock);
2032                                 continue;
2033                         }
2034
2035                         if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
2036                                 if (xfs_iflock_nowait(ip)) {
2037                                         xfs_iflags_set(ip, XFS_ISTALE);
2038
2039                                         if (xfs_inode_clean(ip)) {
2040                                                 xfs_ifunlock(ip);
2041                                                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2042                                         } else {
2043                                                 ip_found[found++] = ip;
2044                                         }
2045                                 } else {
2046                                         xfs_iunlock(ip, XFS_ILOCK_EXCL);
2047                                 }
2048                         }
2049                         read_unlock(&pag->pag_ici_lock);
2050                 }
2051
2052                 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno, 
2053                                         mp->m_bsize * blks_per_cluster,
2054                                         XFS_BUF_LOCK);
2055
2056                 pre_flushed = 0;
2057                 lip = XFS_BUF_FSPRIVATE(bp, xfs_log_item_t *);
2058                 while (lip) {
2059                         if (lip->li_type == XFS_LI_INODE) {
2060                                 iip = (xfs_inode_log_item_t *)lip;
2061                                 ASSERT(iip->ili_logged == 1);
2062                                 lip->li_cb = (void(*)(xfs_buf_t*,xfs_log_item_t*)) xfs_istale_done;
2063                                 xfs_trans_ail_copy_lsn(mp->m_ail,
2064                                                         &iip->ili_flush_lsn,
2065                                                         &iip->ili_item.li_lsn);
2066                                 xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
2067                                 pre_flushed++;
2068                         }
2069                         lip = lip->li_bio_list;
2070                 }
2071
2072                 for (i = 0; i < found; i++) {
2073                         ip = ip_found[i];
2074                         iip = ip->i_itemp;
2075
2076                         if (!iip) {
2077                                 ip->i_update_core = 0;
2078                                 xfs_ifunlock(ip);
2079                                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2080                                 continue;
2081                         }
2082
2083                         iip->ili_last_fields = iip->ili_format.ilf_fields;
2084                         iip->ili_format.ilf_fields = 0;
2085                         iip->ili_logged = 1;
2086                         xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
2087                                                 &iip->ili_item.li_lsn);
2088
2089                         xfs_buf_attach_iodone(bp,
2090                                 (void(*)(xfs_buf_t*,xfs_log_item_t*))
2091                                 xfs_istale_done, (xfs_log_item_t *)iip);
2092                         if (ip != free_ip) {
2093                                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2094                         }
2095                 }
2096
2097                 if (found || pre_flushed)
2098                         xfs_trans_stale_inode_buf(tp, bp);
2099                 xfs_trans_binval(tp, bp);
2100         }
2101
2102         kmem_free(ip_found);
2103         xfs_put_perag(mp, pag);
2104 }
2105
2106 /*
2107  * This is called to return an inode to the inode free list.
2108  * The inode should already be truncated to 0 length and have
2109  * no pages associated with it.  This routine also assumes that
2110  * the inode is already a part of the transaction.
2111  *
2112  * The on-disk copy of the inode will have been added to the list
2113  * of unlinked inodes in the AGI. We need to remove the inode from
2114  * that list atomically with respect to freeing it here.
2115  */
2116 int
2117 xfs_ifree(
2118         xfs_trans_t     *tp,
2119         xfs_inode_t     *ip,
2120         xfs_bmap_free_t *flist)
2121 {
2122         int                     error;
2123         int                     delete;
2124         xfs_ino_t               first_ino;
2125         xfs_dinode_t            *dip;
2126         xfs_buf_t               *ibp;
2127
2128         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
2129         ASSERT(ip->i_transp == tp);
2130         ASSERT(ip->i_d.di_nlink == 0);
2131         ASSERT(ip->i_d.di_nextents == 0);
2132         ASSERT(ip->i_d.di_anextents == 0);
2133         ASSERT((ip->i_d.di_size == 0 && ip->i_size == 0) ||
2134                ((ip->i_d.di_mode & S_IFMT) != S_IFREG));
2135         ASSERT(ip->i_d.di_nblocks == 0);
2136
2137         /*
2138          * Pull the on-disk inode from the AGI unlinked list.
2139          */
2140         error = xfs_iunlink_remove(tp, ip);
2141         if (error != 0) {
2142                 return error;
2143         }
2144
2145         error = xfs_difree(tp, ip->i_ino, flist, &delete, &first_ino);
2146         if (error != 0) {
2147                 return error;
2148         }
2149         ip->i_d.di_mode = 0;            /* mark incore inode as free */
2150         ip->i_d.di_flags = 0;
2151         ip->i_d.di_dmevmask = 0;
2152         ip->i_d.di_forkoff = 0;         /* mark the attr fork not in use */
2153         ip->i_df.if_ext_max =
2154                 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
2155         ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
2156         ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
2157         /*
2158          * Bump the generation count so no one will be confused
2159          * by reincarnations of this inode.
2160          */
2161         ip->i_d.di_gen++;
2162
2163         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2164
2165         error = xfs_itobp(ip->i_mount, tp, ip, &dip, &ibp, XFS_BUF_LOCK);
2166         if (error)
2167                 return error;
2168
2169         /*
2170         * Clear the on-disk di_mode. This is to prevent xfs_bulkstat
2171         * from picking up this inode when it is reclaimed (its incore state
2172         * initialzed but not flushed to disk yet). The in-core di_mode is
2173         * already cleared  and a corresponding transaction logged.
2174         * The hack here just synchronizes the in-core to on-disk
2175         * di_mode value in advance before the actual inode sync to disk.
2176         * This is OK because the inode is already unlinked and would never
2177         * change its di_mode again for this inode generation.
2178         * This is a temporary hack that would require a proper fix
2179         * in the future.
2180         */
2181         dip->di_mode = 0;
2182
2183         if (delete) {
2184                 xfs_ifree_cluster(ip, tp, first_ino);
2185         }
2186
2187         return 0;
2188 }
2189
2190 /*
2191  * Reallocate the space for if_broot based on the number of records
2192  * being added or deleted as indicated in rec_diff.  Move the records
2193  * and pointers in if_broot to fit the new size.  When shrinking this
2194  * will eliminate holes between the records and pointers created by
2195  * the caller.  When growing this will create holes to be filled in
2196  * by the caller.
2197  *
2198  * The caller must not request to add more records than would fit in
2199  * the on-disk inode root.  If the if_broot is currently NULL, then
2200  * if we adding records one will be allocated.  The caller must also
2201  * not request that the number of records go below zero, although
2202  * it can go to zero.
2203  *
2204  * ip -- the inode whose if_broot area is changing
2205  * ext_diff -- the change in the number of records, positive or negative,
2206  *       requested for the if_broot array.
2207  */
2208 void
2209 xfs_iroot_realloc(
2210         xfs_inode_t             *ip,
2211         int                     rec_diff,
2212         int                     whichfork)
2213 {
2214         struct xfs_mount        *mp = ip->i_mount;
2215         int                     cur_max;
2216         xfs_ifork_t             *ifp;
2217         struct xfs_btree_block  *new_broot;
2218         int                     new_max;
2219         size_t                  new_size;
2220         char                    *np;
2221         char                    *op;
2222
2223         /*
2224          * Handle the degenerate case quietly.
2225          */
2226         if (rec_diff == 0) {
2227                 return;
2228         }
2229
2230         ifp = XFS_IFORK_PTR(ip, whichfork);
2231         if (rec_diff > 0) {
2232                 /*
2233                  * If there wasn't any memory allocated before, just
2234                  * allocate it now and get out.
2235                  */
2236                 if (ifp->if_broot_bytes == 0) {
2237                         new_size = (size_t)XFS_BMAP_BROOT_SPACE_CALC(rec_diff);
2238                         ifp->if_broot = kmem_alloc(new_size, KM_SLEEP);
2239                         ifp->if_broot_bytes = (int)new_size;
2240                         return;
2241                 }
2242
2243                 /*
2244                  * If there is already an existing if_broot, then we need
2245                  * to realloc() it and shift the pointers to their new
2246                  * location.  The records don't change location because
2247                  * they are kept butted up against the btree block header.
2248                  */
2249                 cur_max = xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0);
2250                 new_max = cur_max + rec_diff;
2251                 new_size = (size_t)XFS_BMAP_BROOT_SPACE_CALC(new_max);
2252                 ifp->if_broot = kmem_realloc(ifp->if_broot, new_size,
2253                                 (size_t)XFS_BMAP_BROOT_SPACE_CALC(cur_max), /* old size */
2254                                 KM_SLEEP);
2255                 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
2256                                                      ifp->if_broot_bytes);
2257                 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
2258                                                      (int)new_size);
2259                 ifp->if_broot_bytes = (int)new_size;
2260                 ASSERT(ifp->if_broot_bytes <=
2261                         XFS_IFORK_SIZE(ip, whichfork) + XFS_BROOT_SIZE_ADJ);
2262                 memmove(np, op, cur_max * (uint)sizeof(xfs_dfsbno_t));
2263                 return;
2264         }
2265
2266         /*
2267          * rec_diff is less than 0.  In this case, we are shrinking the
2268          * if_broot buffer.  It must already exist.  If we go to zero
2269          * records, just get rid of the root and clear the status bit.
2270          */
2271         ASSERT((ifp->if_broot != NULL) && (ifp->if_broot_bytes > 0));
2272         cur_max = xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0);
2273         new_max = cur_max + rec_diff;
2274         ASSERT(new_max >= 0);
2275         if (new_max > 0)
2276                 new_size = (size_t)XFS_BMAP_BROOT_SPACE_CALC(new_max);
2277         else
2278                 new_size = 0;
2279         if (new_size > 0) {
2280                 new_broot = kmem_alloc(new_size, KM_SLEEP);
2281                 /*
2282                  * First copy over the btree block header.
2283                  */
2284                 memcpy(new_broot, ifp->if_broot, XFS_BTREE_LBLOCK_LEN);
2285         } else {
2286                 new_broot = NULL;
2287                 ifp->if_flags &= ~XFS_IFBROOT;
2288         }
2289
2290         /*
2291          * Only copy the records and pointers if there are any.
2292          */
2293         if (new_max > 0) {
2294                 /*
2295                  * First copy the records.
2296                  */
2297                 op = (char *)XFS_BMBT_REC_ADDR(mp, ifp->if_broot, 1);
2298                 np = (char *)XFS_BMBT_REC_ADDR(mp, new_broot, 1);
2299                 memcpy(np, op, new_max * (uint)sizeof(xfs_bmbt_rec_t));
2300
2301                 /*
2302                  * Then copy the pointers.
2303                  */
2304                 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
2305                                                      ifp->if_broot_bytes);
2306                 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, new_broot, 1,
2307                                                      (int)new_size);
2308                 memcpy(np, op, new_max * (uint)sizeof(xfs_dfsbno_t));
2309         }
2310         kmem_free(ifp->if_broot);
2311         ifp->if_broot = new_broot;
2312         ifp->if_broot_bytes = (int)new_size;
2313         ASSERT(ifp->if_broot_bytes <=
2314                 XFS_IFORK_SIZE(ip, whichfork) + XFS_BROOT_SIZE_ADJ);
2315         return;
2316 }
2317
2318
2319 /*
2320  * This is called when the amount of space needed for if_data
2321  * is increased or decreased.  The change in size is indicated by
2322  * the number of bytes that need to be added or deleted in the
2323  * byte_diff parameter.
2324  *
2325  * If the amount of space needed has decreased below the size of the
2326  * inline buffer, then switch to using the inline buffer.  Otherwise,
2327  * use kmem_realloc() or kmem_alloc() to adjust the size of the buffer
2328  * to what is needed.
2329  *
2330  * ip -- the inode whose if_data area is changing
2331  * byte_diff -- the change in the number of bytes, positive or negative,
2332  *       requested for the if_data array.
2333  */
2334 void
2335 xfs_idata_realloc(
2336         xfs_inode_t     *ip,
2337         int             byte_diff,
2338         int             whichfork)
2339 {
2340         xfs_ifork_t     *ifp;
2341         int             new_size;
2342         int             real_size;
2343
2344         if (byte_diff == 0) {
2345                 return;
2346         }
2347
2348         ifp = XFS_IFORK_PTR(ip, whichfork);
2349         new_size = (int)ifp->if_bytes + byte_diff;
2350         ASSERT(new_size >= 0);
2351
2352         if (new_size == 0) {
2353                 if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
2354                         kmem_free(ifp->if_u1.if_data);
2355                 }
2356                 ifp->if_u1.if_data = NULL;
2357                 real_size = 0;
2358         } else if (new_size <= sizeof(ifp->if_u2.if_inline_data)) {
2359                 /*
2360                  * If the valid extents/data can fit in if_inline_ext/data,
2361                  * copy them from the malloc'd vector and free it.
2362                  */
2363                 if (ifp->if_u1.if_data == NULL) {
2364                         ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
2365                 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
2366                         ASSERT(ifp->if_real_bytes != 0);
2367                         memcpy(ifp->if_u2.if_inline_data, ifp->if_u1.if_data,
2368                               new_size);
2369                         kmem_free(ifp->if_u1.if_data);
2370                         ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
2371                 }
2372                 real_size = 0;
2373         } else {
2374                 /*
2375                  * Stuck with malloc/realloc.
2376                  * For inline data, the underlying buffer must be
2377                  * a multiple of 4 bytes in size so that it can be
2378                  * logged and stay on word boundaries.  We enforce
2379                  * that here.
2380                  */
2381                 real_size = roundup(new_size, 4);
2382                 if (ifp->if_u1.if_data == NULL) {
2383                         ASSERT(ifp->if_real_bytes == 0);
2384                         ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP);
2385                 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
2386                         /*
2387                          * Only do the realloc if the underlying size
2388                          * is really changing.
2389                          */
2390                         if (ifp->if_real_bytes != real_size) {
2391                                 ifp->if_u1.if_data =
2392                                         kmem_realloc(ifp->if_u1.if_data,
2393                                                         real_size,
2394                                                         ifp->if_real_bytes,
2395                                                         KM_SLEEP);
2396                         }
2397                 } else {
2398                         ASSERT(ifp->if_real_bytes == 0);
2399                         ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP);
2400                         memcpy(ifp->if_u1.if_data, ifp->if_u2.if_inline_data,
2401                                 ifp->if_bytes);
2402                 }
2403         }
2404         ifp->if_real_bytes = real_size;
2405         ifp->if_bytes = new_size;
2406         ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
2407 }
2408
2409 void
2410 xfs_idestroy_fork(
2411         xfs_inode_t     *ip,
2412         int             whichfork)
2413 {
2414         xfs_ifork_t     *ifp;
2415
2416         ifp = XFS_IFORK_PTR(ip, whichfork);
2417         if (ifp->if_broot != NULL) {
2418                 kmem_free(ifp->if_broot);
2419                 ifp->if_broot = NULL;
2420         }
2421
2422         /*
2423          * If the format is local, then we can't have an extents
2424          * array so just look for an inline data array.  If we're
2425          * not local then we may or may not have an extents list,
2426          * so check and free it up if we do.
2427          */
2428         if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
2429                 if ((ifp->if_u1.if_data != ifp->if_u2.if_inline_data) &&
2430                     (ifp->if_u1.if_data != NULL)) {
2431                         ASSERT(ifp->if_real_bytes != 0);
2432                         kmem_free(ifp->if_u1.if_data);
2433                         ifp->if_u1.if_data = NULL;
2434                         ifp->if_real_bytes = 0;
2435                 }
2436         } else if ((ifp->if_flags & XFS_IFEXTENTS) &&
2437                    ((ifp->if_flags & XFS_IFEXTIREC) ||
2438                     ((ifp->if_u1.if_extents != NULL) &&
2439                      (ifp->if_u1.if_extents != ifp->if_u2.if_inline_ext)))) {
2440                 ASSERT(ifp->if_real_bytes != 0);
2441                 xfs_iext_destroy(ifp);
2442         }
2443         ASSERT(ifp->if_u1.if_extents == NULL ||
2444                ifp->if_u1.if_extents == ifp->if_u2.if_inline_ext);
2445         ASSERT(ifp->if_real_bytes == 0);
2446         if (whichfork == XFS_ATTR_FORK) {
2447                 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
2448                 ip->i_afp = NULL;
2449         }
2450 }
2451
2452 /*
2453  * This is called free all the memory associated with an inode.
2454  * It must free the inode itself and any buffers allocated for
2455  * if_extents/if_data and if_broot.  It must also free the lock
2456  * associated with the inode.
2457  *
2458  * Note: because we don't initialise everything on reallocation out
2459  * of the zone, we must ensure we nullify everything correctly before
2460  * freeing the structure.
2461  */
2462 void
2463 xfs_idestroy(
2464         xfs_inode_t     *ip)
2465 {
2466         switch (ip->i_d.di_mode & S_IFMT) {
2467         case S_IFREG:
2468         case S_IFDIR:
2469         case S_IFLNK:
2470                 xfs_idestroy_fork(ip, XFS_DATA_FORK);
2471                 break;
2472         }
2473         if (ip->i_afp)
2474                 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
2475
2476 #ifdef XFS_INODE_TRACE
2477         ktrace_free(ip->i_trace);
2478 #endif
2479 #ifdef XFS_BMAP_TRACE
2480         ktrace_free(ip->i_xtrace);
2481 #endif
2482 #ifdef XFS_BTREE_TRACE
2483         ktrace_free(ip->i_btrace);
2484 #endif
2485 #ifdef XFS_RW_TRACE
2486         ktrace_free(ip->i_rwtrace);
2487 #endif
2488 #ifdef XFS_ILOCK_TRACE
2489         ktrace_free(ip->i_lock_trace);
2490 #endif
2491 #ifdef XFS_DIR2_TRACE
2492         ktrace_free(ip->i_dir_trace);
2493 #endif
2494         if (ip->i_itemp) {
2495                 /*
2496                  * Only if we are shutting down the fs will we see an
2497                  * inode still in the AIL. If it is there, we should remove
2498                  * it to prevent a use-after-free from occurring.
2499                  */
2500                 xfs_log_item_t  *lip = &ip->i_itemp->ili_item;
2501                 struct xfs_ail  *ailp = lip->li_ailp;
2502
2503                 ASSERT(((lip->li_flags & XFS_LI_IN_AIL) == 0) ||
2504                                        XFS_FORCED_SHUTDOWN(ip->i_mount));
2505                 if (lip->li_flags & XFS_LI_IN_AIL) {
2506                         spin_lock(&ailp->xa_lock);
2507                         if (lip->li_flags & XFS_LI_IN_AIL)
2508                                 xfs_trans_ail_delete(ailp, lip);
2509                         else
2510                                 spin_unlock(&ailp->xa_lock);
2511                 }
2512                 xfs_inode_item_destroy(ip);
2513                 ip->i_itemp = NULL;
2514         }
2515         /* asserts to verify all state is correct here */
2516         ASSERT(atomic_read(&ip->i_iocount) == 0);
2517         ASSERT(atomic_read(&ip->i_pincount) == 0);
2518         ASSERT(!spin_is_locked(&ip->i_flags_lock));
2519         ASSERT(completion_done(&ip->i_flush));
2520         kmem_zone_free(xfs_inode_zone, ip);
2521 }
2522
2523
2524 /*
2525  * Increment the pin count of the given buffer.
2526  * This value is protected by ipinlock spinlock in the mount structure.
2527  */
2528 void
2529 xfs_ipin(
2530         xfs_inode_t     *ip)
2531 {
2532         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
2533
2534         atomic_inc(&ip->i_pincount);
2535 }
2536
2537 /*
2538  * Decrement the pin count of the given inode, and wake up
2539  * anyone in xfs_iwait_unpin() if the count goes to 0.  The
2540  * inode must have been previously pinned with a call to xfs_ipin().
2541  */
2542 void
2543 xfs_iunpin(
2544         xfs_inode_t     *ip)
2545 {
2546         ASSERT(atomic_read(&ip->i_pincount) > 0);
2547
2548         if (atomic_dec_and_test(&ip->i_pincount))
2549                 wake_up(&ip->i_ipin_wait);
2550 }
2551
2552 /*
2553  * This is called to unpin an inode. It can be directed to wait or to return
2554  * immediately without waiting for the inode to be unpinned.  The caller must
2555  * have the inode locked in at least shared mode so that the buffer cannot be
2556  * subsequently pinned once someone is waiting for it to be unpinned.
2557  */
2558 STATIC void
2559 __xfs_iunpin_wait(
2560         xfs_inode_t     *ip,
2561         int             wait)
2562 {
2563         xfs_inode_log_item_t    *iip = ip->i_itemp;
2564
2565         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
2566         if (atomic_read(&ip->i_pincount) == 0)
2567                 return;
2568
2569         /* Give the log a push to start the unpinning I/O */
2570         xfs_log_force(ip->i_mount, (iip && iip->ili_last_lsn) ?
2571                                 iip->ili_last_lsn : 0, XFS_LOG_FORCE);
2572         if (wait)
2573                 wait_event(ip->i_ipin_wait, (atomic_read(&ip->i_pincount) == 0));
2574 }
2575
2576 static inline void
2577 xfs_iunpin_wait(
2578         xfs_inode_t     *ip)
2579 {
2580         __xfs_iunpin_wait(ip, 1);
2581 }
2582
2583 static inline void
2584 xfs_iunpin_nowait(
2585         xfs_inode_t     *ip)
2586 {
2587         __xfs_iunpin_wait(ip, 0);
2588 }
2589
2590
2591 /*
2592  * xfs_iextents_copy()
2593  *
2594  * This is called to copy the REAL extents (as opposed to the delayed
2595  * allocation extents) from the inode into the given buffer.  It
2596  * returns the number of bytes copied into the buffer.
2597  *
2598  * If there are no delayed allocation extents, then we can just
2599  * memcpy() the extents into the buffer.  Otherwise, we need to
2600  * examine each extent in turn and skip those which are delayed.
2601  */
2602 int
2603 xfs_iextents_copy(
2604         xfs_inode_t             *ip,
2605         xfs_bmbt_rec_t          *dp,
2606         int                     whichfork)
2607 {
2608         int                     copied;
2609         int                     i;
2610         xfs_ifork_t             *ifp;
2611         int                     nrecs;
2612         xfs_fsblock_t           start_block;
2613
2614         ifp = XFS_IFORK_PTR(ip, whichfork);
2615         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
2616         ASSERT(ifp->if_bytes > 0);
2617
2618         nrecs = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
2619         XFS_BMAP_TRACE_EXLIST(ip, nrecs, whichfork);
2620         ASSERT(nrecs > 0);
2621
2622         /*
2623          * There are some delayed allocation extents in the
2624          * inode, so copy the extents one at a time and skip
2625          * the delayed ones.  There must be at least one
2626          * non-delayed extent.
2627          */
2628         copied = 0;
2629         for (i = 0; i < nrecs; i++) {
2630                 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
2631                 start_block = xfs_bmbt_get_startblock(ep);
2632                 if (ISNULLSTARTBLOCK(start_block)) {
2633                         /*
2634                          * It's a delayed allocation extent, so skip it.
2635                          */
2636                         continue;
2637                 }
2638
2639                 /* Translate to on disk format */
2640                 put_unaligned(cpu_to_be64(ep->l0), &dp->l0);
2641                 put_unaligned(cpu_to_be64(ep->l1), &dp->l1);
2642                 dp++;
2643                 copied++;
2644         }
2645         ASSERT(copied != 0);
2646         xfs_validate_extents(ifp, copied, XFS_EXTFMT_INODE(ip));
2647
2648         return (copied * (uint)sizeof(xfs_bmbt_rec_t));
2649 }
2650
2651 /*
2652  * Each of the following cases stores data into the same region
2653  * of the on-disk inode, so only one of them can be valid at
2654  * any given time. While it is possible to have conflicting formats
2655  * and log flags, e.g. having XFS_ILOG_?DATA set when the fork is
2656  * in EXTENTS format, this can only happen when the fork has
2657  * changed formats after being modified but before being flushed.
2658  * In these cases, the format always takes precedence, because the
2659  * format indicates the current state of the fork.
2660  */
2661 /*ARGSUSED*/
2662 STATIC void
2663 xfs_iflush_fork(
2664         xfs_inode_t             *ip,
2665         xfs_dinode_t            *dip,
2666         xfs_inode_log_item_t    *iip,
2667         int                     whichfork,
2668         xfs_buf_t               *bp)
2669 {
2670         char                    *cp;
2671         xfs_ifork_t             *ifp;
2672         xfs_mount_t             *mp;
2673 #ifdef XFS_TRANS_DEBUG
2674         int                     first;
2675 #endif
2676         static const short      brootflag[2] =
2677                 { XFS_ILOG_DBROOT, XFS_ILOG_ABROOT };
2678         static const short      dataflag[2] =
2679                 { XFS_ILOG_DDATA, XFS_ILOG_ADATA };
2680         static const short      extflag[2] =
2681                 { XFS_ILOG_DEXT, XFS_ILOG_AEXT };
2682
2683         if (!iip)
2684                 return;
2685         ifp = XFS_IFORK_PTR(ip, whichfork);
2686         /*
2687          * This can happen if we gave up in iformat in an error path,
2688          * for the attribute fork.
2689          */
2690         if (!ifp) {
2691                 ASSERT(whichfork == XFS_ATTR_FORK);
2692                 return;
2693         }
2694         cp = XFS_DFORK_PTR(dip, whichfork);
2695         mp = ip->i_mount;
2696         switch (XFS_IFORK_FORMAT(ip, whichfork)) {
2697         case XFS_DINODE_FMT_LOCAL:
2698                 if ((iip->ili_format.ilf_fields & dataflag[whichfork]) &&
2699                     (ifp->if_bytes > 0)) {
2700                         ASSERT(ifp->if_u1.if_data != NULL);
2701                         ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
2702                         memcpy(cp, ifp->if_u1.if_data, ifp->if_bytes);
2703                 }
2704                 break;
2705
2706         case XFS_DINODE_FMT_EXTENTS:
2707                 ASSERT((ifp->if_flags & XFS_IFEXTENTS) ||
2708                        !(iip->ili_format.ilf_fields & extflag[whichfork]));
2709                 ASSERT((xfs_iext_get_ext(ifp, 0) != NULL) ||
2710                         (ifp->if_bytes == 0));
2711                 ASSERT((xfs_iext_get_ext(ifp, 0) == NULL) ||
2712                         (ifp->if_bytes > 0));
2713                 if ((iip->ili_format.ilf_fields & extflag[whichfork]) &&
2714                     (ifp->if_bytes > 0)) {
2715                         ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) > 0);
2716                         (void)xfs_iextents_copy(ip, (xfs_bmbt_rec_t *)cp,
2717                                 whichfork);
2718                 }
2719                 break;
2720
2721         case XFS_DINODE_FMT_BTREE:
2722                 if ((iip->ili_format.ilf_fields & brootflag[whichfork]) &&
2723                     (ifp->if_broot_bytes > 0)) {
2724                         ASSERT(ifp->if_broot != NULL);
2725                         ASSERT(ifp->if_broot_bytes <=
2726                                (XFS_IFORK_SIZE(ip, whichfork) +
2727                                 XFS_BROOT_SIZE_ADJ));
2728                         xfs_bmbt_to_bmdr(mp, ifp->if_broot, ifp->if_broot_bytes,
2729                                 (xfs_bmdr_block_t *)cp,
2730                                 XFS_DFORK_SIZE(dip, mp, whichfork));
2731                 }
2732                 break;
2733
2734         case XFS_DINODE_FMT_DEV:
2735                 if (iip->ili_format.ilf_fields & XFS_ILOG_DEV) {
2736                         ASSERT(whichfork == XFS_DATA_FORK);
2737                         xfs_dinode_put_rdev(dip, ip->i_df.if_u2.if_rdev);
2738                 }
2739                 break;
2740
2741         case XFS_DINODE_FMT_UUID:
2742                 if (iip->ili_format.ilf_fields & XFS_ILOG_UUID) {
2743                         ASSERT(whichfork == XFS_DATA_FORK);
2744                         memcpy(XFS_DFORK_DPTR(dip),
2745                                &ip->i_df.if_u2.if_uuid,
2746                                sizeof(uuid_t));
2747                 }
2748                 break;
2749
2750         default:
2751                 ASSERT(0);
2752                 break;
2753         }
2754 }
2755
2756 STATIC int
2757 xfs_iflush_cluster(
2758         xfs_inode_t     *ip,
2759         xfs_buf_t       *bp)
2760 {
2761         xfs_mount_t             *mp = ip->i_mount;
2762         xfs_perag_t             *pag = xfs_get_perag(mp, ip->i_ino);
2763         unsigned long           first_index, mask;
2764         unsigned long           inodes_per_cluster;
2765         int                     ilist_size;
2766         xfs_inode_t             **ilist;
2767         xfs_inode_t             *iq;
2768         int                     nr_found;
2769         int                     clcount = 0;
2770         int                     bufwasdelwri;
2771         int                     i;
2772
2773         ASSERT(pag->pagi_inodeok);
2774         ASSERT(pag->pag_ici_init);
2775
2776         inodes_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog;
2777         ilist_size = inodes_per_cluster * sizeof(xfs_inode_t *);
2778         ilist = kmem_alloc(ilist_size, KM_MAYFAIL|KM_NOFS);
2779         if (!ilist)
2780                 return 0;
2781
2782         mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1);
2783         first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
2784         read_lock(&pag->pag_ici_lock);
2785         /* really need a gang lookup range call here */
2786         nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)ilist,
2787                                         first_index, inodes_per_cluster);
2788         if (nr_found == 0)
2789                 goto out_free;
2790
2791         for (i = 0; i < nr_found; i++) {
2792                 iq = ilist[i];
2793                 if (iq == ip)
2794                         continue;
2795                 /* if the inode lies outside this cluster, we're done. */
2796                 if ((XFS_INO_TO_AGINO(mp, iq->i_ino) & mask) != first_index)
2797                         break;
2798                 /*
2799                  * Do an un-protected check to see if the inode is dirty and
2800                  * is a candidate for flushing.  These checks will be repeated
2801                  * later after the appropriate locks are acquired.
2802                  */
2803                 if (xfs_inode_clean(iq) && xfs_ipincount(iq) == 0)
2804                         continue;
2805
2806                 /*
2807                  * Try to get locks.  If any are unavailable or it is pinned,
2808                  * then this inode cannot be flushed and is skipped.
2809                  */
2810
2811                 if (!xfs_ilock_nowait(iq, XFS_ILOCK_SHARED))
2812                         continue;
2813                 if (!xfs_iflock_nowait(iq)) {
2814                         xfs_iunlock(iq, XFS_ILOCK_SHARED);
2815                         continue;
2816                 }
2817                 if (xfs_ipincount(iq)) {
2818                         xfs_ifunlock(iq);
2819                         xfs_iunlock(iq, XFS_ILOCK_SHARED);
2820                         continue;
2821                 }
2822
2823                 /*
2824                  * arriving here means that this inode can be flushed.  First
2825                  * re-check that it's dirty before flushing.
2826                  */
2827                 if (!xfs_inode_clean(iq)) {
2828                         int     error;
2829                         error = xfs_iflush_int(iq, bp);
2830                         if (error) {
2831                                 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2832                                 goto cluster_corrupt_out;
2833                         }
2834                         clcount++;
2835                 } else {
2836                         xfs_ifunlock(iq);
2837                 }
2838                 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2839         }
2840
2841         if (clcount) {
2842                 XFS_STATS_INC(xs_icluster_flushcnt);
2843                 XFS_STATS_ADD(xs_icluster_flushinode, clcount);
2844         }
2845
2846 out_free:
2847         read_unlock(&pag->pag_ici_lock);
2848         kmem_free(ilist);
2849         return 0;
2850
2851
2852 cluster_corrupt_out:
2853         /*
2854          * Corruption detected in the clustering loop.  Invalidate the
2855          * inode buffer and shut down the filesystem.
2856          */
2857         read_unlock(&pag->pag_ici_lock);
2858         /*
2859          * Clean up the buffer.  If it was B_DELWRI, just release it --
2860          * brelse can handle it with no problems.  If not, shut down the
2861          * filesystem before releasing the buffer.
2862          */
2863         bufwasdelwri = XFS_BUF_ISDELAYWRITE(bp);
2864         if (bufwasdelwri)
2865                 xfs_buf_relse(bp);
2866
2867         xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
2868
2869         if (!bufwasdelwri) {
2870                 /*
2871                  * Just like incore_relse: if we have b_iodone functions,
2872                  * mark the buffer as an error and call them.  Otherwise
2873                  * mark it as stale and brelse.
2874                  */
2875                 if (XFS_BUF_IODONE_FUNC(bp)) {
2876                         XFS_BUF_CLR_BDSTRAT_FUNC(bp);
2877                         XFS_BUF_UNDONE(bp);
2878                         XFS_BUF_STALE(bp);
2879                         XFS_BUF_SHUT(bp);
2880                         XFS_BUF_ERROR(bp,EIO);
2881                         xfs_biodone(bp);
2882                 } else {
2883                         XFS_BUF_STALE(bp);
2884                         xfs_buf_relse(bp);
2885                 }
2886         }
2887
2888         /*
2889          * Unlocks the flush lock
2890          */
2891         xfs_iflush_abort(iq);
2892         kmem_free(ilist);
2893         return XFS_ERROR(EFSCORRUPTED);
2894 }
2895
2896 /*
2897  * xfs_iflush() will write a modified inode's changes out to the
2898  * inode's on disk home.  The caller must have the inode lock held
2899  * in at least shared mode and the inode flush completion must be
2900  * active as well.  The inode lock will still be held upon return from
2901  * the call and the caller is free to unlock it.
2902  * The inode flush will be completed when the inode reaches the disk.
2903  * The flags indicate how the inode's buffer should be written out.
2904  */
2905 int
2906 xfs_iflush(
2907         xfs_inode_t             *ip,
2908         uint                    flags)
2909 {
2910         xfs_inode_log_item_t    *iip;
2911         xfs_buf_t               *bp;
2912         xfs_dinode_t            *dip;
2913         xfs_mount_t             *mp;
2914         int                     error;
2915         int                     noblock = (flags == XFS_IFLUSH_ASYNC_NOBLOCK);
2916         enum { INT_DELWRI = (1 << 0), INT_ASYNC = (1 << 1) };
2917
2918         XFS_STATS_INC(xs_iflush_count);
2919
2920         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
2921         ASSERT(!completion_done(&ip->i_flush));
2922         ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
2923                ip->i_d.di_nextents > ip->i_df.if_ext_max);
2924
2925         iip = ip->i_itemp;
2926         mp = ip->i_mount;
2927
2928         /*
2929          * If the inode isn't dirty, then just release the inode
2930          * flush lock and do nothing.
2931          */
2932         if (xfs_inode_clean(ip)) {
2933                 xfs_ifunlock(ip);
2934                 return 0;
2935         }
2936
2937         /*
2938          * We can't flush the inode until it is unpinned, so wait for it if we
2939          * are allowed to block.  We know noone new can pin it, because we are
2940          * holding the inode lock shared and you need to hold it exclusively to
2941          * pin the inode.
2942          *
2943          * If we are not allowed to block, force the log out asynchronously so
2944          * that when we come back the inode will be unpinned. If other inodes
2945          * in the same cluster are dirty, they will probably write the inode
2946          * out for us if they occur after the log force completes.
2947          */
2948         if (noblock && xfs_ipincount(ip)) {
2949                 xfs_iunpin_nowait(ip);
2950                 xfs_ifunlock(ip);
2951                 return EAGAIN;
2952         }
2953         xfs_iunpin_wait(ip);
2954
2955         /*
2956          * This may have been unpinned because the filesystem is shutting
2957          * down forcibly. If that's the case we must not write this inode
2958          * to disk, because the log record didn't make it to disk!
2959          */
2960         if (XFS_FORCED_SHUTDOWN(mp)) {
2961                 ip->i_update_core = 0;
2962                 if (iip)
2963                         iip->ili_format.ilf_fields = 0;
2964                 xfs_ifunlock(ip);
2965                 return XFS_ERROR(EIO);
2966         }
2967
2968         /*
2969          * Decide how buffer will be flushed out.  This is done before
2970          * the call to xfs_iflush_int because this field is zeroed by it.
2971          */
2972         if (iip != NULL && iip->ili_format.ilf_fields != 0) {
2973                 /*
2974                  * Flush out the inode buffer according to the directions
2975                  * of the caller.  In the cases where the caller has given
2976                  * us a choice choose the non-delwri case.  This is because
2977                  * the inode is in the AIL and we need to get it out soon.
2978                  */
2979                 switch (flags) {
2980                 case XFS_IFLUSH_SYNC:
2981                 case XFS_IFLUSH_DELWRI_ELSE_SYNC:
2982                         flags = 0;
2983                         break;
2984                 case XFS_IFLUSH_ASYNC_NOBLOCK:
2985                 case XFS_IFLUSH_ASYNC:
2986                 case XFS_IFLUSH_DELWRI_ELSE_ASYNC:
2987                         flags = INT_ASYNC;
2988                         break;
2989                 case XFS_IFLUSH_DELWRI:
2990                         flags = INT_DELWRI;
2991                         break;
2992                 default:
2993                         ASSERT(0);
2994                         flags = 0;
2995                         break;
2996                 }
2997         } else {
2998                 switch (flags) {
2999                 case XFS_IFLUSH_DELWRI_ELSE_SYNC:
3000                 case XFS_IFLUSH_DELWRI_ELSE_ASYNC:
3001                 case XFS_IFLUSH_DELWRI:
3002                         flags = INT_DELWRI;
3003                         break;
3004                 case XFS_IFLUSH_ASYNC_NOBLOCK:
3005                 case XFS_IFLUSH_ASYNC:
3006                         flags = INT_ASYNC;
3007                         break;
3008                 case XFS_IFLUSH_SYNC:
3009                         flags = 0;
3010                         break;
3011                 default:
3012                         ASSERT(0);
3013                         flags = 0;
3014                         break;
3015                 }
3016         }
3017
3018         /*
3019          * Get the buffer containing the on-disk inode.
3020          */
3021         error = xfs_itobp(mp, NULL, ip, &dip, &bp,
3022                                 noblock ? XFS_BUF_TRYLOCK : XFS_BUF_LOCK);
3023         if (error || !bp) {
3024                 xfs_ifunlock(ip);
3025                 return error;
3026         }
3027
3028         /*
3029          * First flush out the inode that xfs_iflush was called with.
3030          */
3031         error = xfs_iflush_int(ip, bp);
3032         if (error)
3033                 goto corrupt_out;
3034
3035         /*
3036          * If the buffer is pinned then push on the log now so we won't
3037          * get stuck waiting in the write for too long.
3038          */
3039         if (XFS_BUF_ISPINNED(bp))
3040                 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE);
3041
3042         /*
3043          * inode clustering:
3044          * see if other inodes can be gathered into this write
3045          */
3046         error = xfs_iflush_cluster(ip, bp);
3047         if (error)
3048                 goto cluster_corrupt_out;
3049
3050         if (flags & INT_DELWRI) {
3051                 xfs_bdwrite(mp, bp);
3052         } else if (flags & INT_ASYNC) {
3053                 error = xfs_bawrite(mp, bp);
3054         } else {
3055                 error = xfs_bwrite(mp, bp);
3056         }
3057         return error;
3058
3059 corrupt_out:
3060         xfs_buf_relse(bp);
3061         xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
3062 cluster_corrupt_out:
3063         /*
3064          * Unlocks the flush lock
3065          */
3066         xfs_iflush_abort(ip);
3067         return XFS_ERROR(EFSCORRUPTED);
3068 }
3069
3070
3071 STATIC int
3072 xfs_iflush_int(
3073         xfs_inode_t             *ip,
3074         xfs_buf_t               *bp)
3075 {
3076         xfs_inode_log_item_t    *iip;
3077         xfs_dinode_t            *dip;
3078         xfs_mount_t             *mp;
3079 #ifdef XFS_TRANS_DEBUG
3080         int                     first;
3081 #endif
3082
3083         ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
3084         ASSERT(!completion_done(&ip->i_flush));
3085         ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
3086                ip->i_d.di_nextents > ip->i_df.if_ext_max);
3087
3088         iip = ip->i_itemp;
3089         mp = ip->i_mount;
3090
3091
3092         /*
3093          * If the inode isn't dirty, then just release the inode
3094          * flush lock and do nothing.
3095          */
3096         if (xfs_inode_clean(ip)) {
3097                 xfs_ifunlock(ip);
3098                 return 0;
3099         }
3100
3101         /* set *dip = inode's place in the buffer */
3102         dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
3103
3104         /*
3105          * Clear i_update_core before copying out the data.
3106          * This is for coordination with our timestamp updates
3107          * that don't hold the inode lock. They will always
3108          * update the timestamps BEFORE setting i_update_core,
3109          * so if we clear i_update_core after they set it we
3110          * are guaranteed to see their updates to the timestamps.
3111          * I believe that this depends on strongly ordered memory
3112          * semantics, but we have that.  We use the SYNCHRONIZE
3113          * macro to make sure that the compiler does not reorder
3114          * the i_update_core access below the data copy below.
3115          */
3116         ip->i_update_core = 0;
3117         SYNCHRONIZE();
3118
3119         /*
3120          * Make sure to get the latest atime from the Linux inode.
3121          */
3122         xfs_synchronize_atime(ip);
3123
3124         if (XFS_TEST_ERROR(be16_to_cpu(dip->di_magic) != XFS_DINODE_MAGIC,
3125                                mp, XFS_ERRTAG_IFLUSH_1, XFS_RANDOM_IFLUSH_1)) {
3126                 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3127                     "xfs_iflush: Bad inode %Lu magic number 0x%x, ptr 0x%p",
3128                         ip->i_ino, be16_to_cpu(dip->di_magic), dip);
3129                 goto corrupt_out;
3130         }
3131         if (XFS_TEST_ERROR(ip->i_d.di_magic != XFS_DINODE_MAGIC,
3132                                 mp, XFS_ERRTAG_IFLUSH_2, XFS_RANDOM_IFLUSH_2)) {
3133                 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3134                         "xfs_iflush: Bad inode %Lu, ptr 0x%p, magic number 0x%x",
3135                         ip->i_ino, ip, ip->i_d.di_magic);
3136                 goto corrupt_out;
3137         }
3138         if ((ip->i_d.di_mode & S_IFMT) == S_IFREG) {
3139                 if (XFS_TEST_ERROR(
3140                     (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3141                     (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
3142                     mp, XFS_ERRTAG_IFLUSH_3, XFS_RANDOM_IFLUSH_3)) {
3143                         xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3144                                 "xfs_iflush: Bad regular inode %Lu, ptr 0x%p",
3145                                 ip->i_ino, ip);
3146                         goto corrupt_out;
3147                 }
3148         } else if ((ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
3149                 if (XFS_TEST_ERROR(
3150                     (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3151                     (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
3152                     (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
3153                     mp, XFS_ERRTAG_IFLUSH_4, XFS_RANDOM_IFLUSH_4)) {
3154                         xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3155                                 "xfs_iflush: Bad directory inode %Lu, ptr 0x%p",
3156                                 ip->i_ino, ip);
3157                         goto corrupt_out;
3158                 }
3159         }
3160         if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
3161                                 ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5,
3162                                 XFS_RANDOM_IFLUSH_5)) {
3163                 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3164                         "xfs_iflush: detected corrupt incore inode %Lu, total extents = %d, nblocks = %Ld, ptr 0x%p",
3165                         ip->i_ino,
3166                         ip->i_d.di_nextents + ip->i_d.di_anextents,
3167                         ip->i_d.di_nblocks,
3168                         ip);
3169                 goto corrupt_out;
3170         }
3171         if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
3172                                 mp, XFS_ERRTAG_IFLUSH_6, XFS_RANDOM_IFLUSH_6)) {
3173                 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3174                         "xfs_iflush: bad inode %Lu, forkoff 0x%x, ptr 0x%p",
3175                         ip->i_ino, ip->i_d.di_forkoff, ip);
3176                 goto corrupt_out;
3177         }
3178         /*
3179          * bump the flush iteration count, used to detect flushes which
3180          * postdate a log record during recovery.
3181          */
3182
3183         ip->i_d.di_flushiter++;
3184
3185         /*
3186          * Copy the dirty parts of the inode into the on-disk
3187          * inode.  We always copy out the core of the inode,
3188          * because if the inode is dirty at all the core must
3189          * be.
3190          */
3191         xfs_dinode_to_disk(dip, &ip->i_d);
3192
3193         /* Wrap, we never let the log put out DI_MAX_FLUSH */
3194         if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
3195                 ip->i_d.di_flushiter = 0;
3196
3197         /*
3198          * If this is really an old format inode and the superblock version
3199          * has not been updated to support only new format inodes, then
3200          * convert back to the old inode format.  If the superblock version
3201          * has been updated, then make the conversion permanent.
3202          */
3203         ASSERT(ip->i_d.di_version == 1 || xfs_sb_version_hasnlink(&mp->m_sb));
3204         if (ip->i_d.di_version == 1) {
3205                 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
3206                         /*
3207                          * Convert it back.
3208                          */
3209                         ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
3210                         dip->di_onlink = cpu_to_be16(ip->i_d.di_nlink);
3211                 } else {
3212                         /*
3213                          * The superblock version has already been bumped,
3214                          * so just make the conversion to the new inode
3215                          * format permanent.
3216                          */
3217                         ip->i_d.di_version = 2;
3218                         dip->di_version = 2;
3219                         ip->i_d.di_onlink = 0;
3220                         dip->di_onlink = 0;
3221                         memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
3222                         memset(&(dip->di_pad[0]), 0,
3223                               sizeof(dip->di_pad));
3224                         ASSERT(ip->i_d.di_projid == 0);
3225                 }
3226         }
3227
3228         xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK, bp);
3229         if (XFS_IFORK_Q(ip))
3230                 xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK, bp);
3231         xfs_inobp_check(mp, bp);
3232
3233         /*
3234          * We've recorded everything logged in the inode, so we'd
3235          * like to clear the ilf_fields bits so we don't log and
3236          * flush things unnecessarily.  However, we can't stop
3237          * logging all this information until the data we've copied
3238          * into the disk buffer is written to disk.  If we did we might
3239          * overwrite the copy of the inode in the log with all the
3240          * data after re-logging only part of it, and in the face of
3241          * a crash we wouldn't have all the data we need to recover.
3242          *
3243          * What we do is move the bits to the ili_last_fields field.
3244          * When logging the inode, these bits are moved back to the
3245          * ilf_fields field.  In the xfs_iflush_done() routine we
3246          * clear ili_last_fields, since we know that the information
3247          * those bits represent is permanently on disk.  As long as
3248          * the flush completes before the inode is logged again, then
3249          * both ilf_fields and ili_last_fields will be cleared.
3250          *
3251          * We can play with the ilf_fields bits here, because the inode
3252          * lock must be held exclusively in order to set bits there
3253          * and the flush lock protects the ili_last_fields bits.
3254          * Set ili_logged so the flush done
3255          * routine can tell whether or not to look in the AIL.
3256          * Also, store the current LSN of the inode so that we can tell
3257          * whether the item has moved in the AIL from xfs_iflush_done().
3258          * In order to read the lsn we need the AIL lock, because
3259          * it is a 64 bit value that cannot be read atomically.
3260          */
3261         if (iip != NULL && iip->ili_format.ilf_fields != 0) {
3262                 iip->ili_last_fields = iip->ili_format.ilf_fields;
3263                 iip->ili_format.ilf_fields = 0;
3264                 iip->ili_logged = 1;
3265
3266                 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
3267                                         &iip->ili_item.li_lsn);
3268
3269                 /*
3270                  * Attach the function xfs_iflush_done to the inode's
3271                  * buffer.  This will remove the inode from the AIL
3272                  * and unlock the inode's flush lock when the inode is
3273                  * completely written to disk.
3274                  */
3275                 xfs_buf_attach_iodone(bp, (void(*)(xfs_buf_t*,xfs_log_item_t*))
3276                                       xfs_iflush_done, (xfs_log_item_t *)iip);
3277
3278                 ASSERT(XFS_BUF_FSPRIVATE(bp, void *) != NULL);
3279                 ASSERT(XFS_BUF_IODONE_FUNC(bp) != NULL);
3280         } else {
3281                 /*
3282                  * We're flushing an inode which is not in the AIL and has
3283                  * not been logged but has i_update_core set.  For this
3284                  * case we can use a B_DELWRI flush and immediately drop
3285                  * the inode flush lock because we can avoid the whole
3286                  * AIL state thing.  It's OK to drop the flush lock now,
3287                  * because we've already locked the buffer and to do anything
3288                  * you really need both.
3289                  */
3290                 if (iip != NULL) {
3291                         ASSERT(iip->ili_logged == 0);
3292                         ASSERT(iip->ili_last_fields == 0);
3293                         ASSERT((iip->ili_item.li_flags & XFS_LI_IN_AIL) == 0);
3294                 }
3295                 xfs_ifunlock(ip);
3296         }
3297
3298         return 0;
3299
3300 corrupt_out:
3301         return XFS_ERROR(EFSCORRUPTED);
3302 }
3303
3304
3305
3306 #ifdef XFS_ILOCK_TRACE
3307 ktrace_t        *xfs_ilock_trace_buf;
3308
3309 void
3310 xfs_ilock_trace(xfs_inode_t *ip, int lock, unsigned int lockflags, inst_t *ra)
3311 {
3312         ktrace_enter(ip->i_lock_trace,
3313                      (void *)ip,
3314                      (void *)(unsigned long)lock, /* 1 = LOCK, 3=UNLOCK, etc */
3315                      (void *)(unsigned long)lockflags, /* XFS_ILOCK_EXCL etc */
3316                      (void *)ra,                /* caller of ilock */
3317                      (void *)(unsigned long)current_cpu(),
3318                      (void *)(unsigned long)current_pid(),
3319                      NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3320 }
3321 #endif
3322
3323 /*
3324  * Return a pointer to the extent record at file index idx.
3325  */
3326 xfs_bmbt_rec_host_t *
3327 xfs_iext_get_ext(
3328         xfs_ifork_t     *ifp,           /* inode fork pointer */
3329         xfs_extnum_t    idx)            /* index of target extent */
3330 {
3331         ASSERT(idx >= 0);
3332         if ((ifp->if_flags & XFS_IFEXTIREC) && (idx == 0)) {
3333                 return ifp->if_u1.if_ext_irec->er_extbuf;
3334         } else if (ifp->if_flags & XFS_IFEXTIREC) {
3335                 xfs_ext_irec_t  *erp;           /* irec pointer */
3336                 int             erp_idx = 0;    /* irec index */
3337                 xfs_extnum_t    page_idx = idx; /* ext index in target list */
3338
3339                 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 0);
3340                 return &erp->er_extbuf[page_idx];
3341         } else if (ifp->if_bytes) {
3342                 return &ifp->if_u1.if_extents[idx];
3343         } else {
3344                 return NULL;
3345         }
3346 }
3347
3348 /*
3349  * Insert new item(s) into the extent records for incore inode
3350  * fork 'ifp'.  'count' new items are inserted at index 'idx'.
3351  */
3352 void
3353 xfs_iext_insert(
3354         xfs_ifork_t     *ifp,           /* inode fork pointer */
3355         xfs_extnum_t    idx,            /* starting index of new items */
3356         xfs_extnum_t    count,          /* number of inserted items */
3357         xfs_bmbt_irec_t *new)           /* items to insert */
3358 {
3359         xfs_extnum_t    i;              /* extent record index */
3360
3361         ASSERT(ifp->if_flags & XFS_IFEXTENTS);
3362         xfs_iext_add(ifp, idx, count);
3363         for (i = idx; i < idx + count; i++, new++)
3364                 xfs_bmbt_set_all(xfs_iext_get_ext(ifp, i), new);
3365 }
3366
3367 /*
3368  * This is called when the amount of space required for incore file
3369  * extents needs to be increased. The ext_diff parameter stores the
3370  * number of new extents being added and the idx parameter contains
3371  * the extent index where the new extents will be added. If the new
3372  * extents are being appended, then we just need to (re)allocate and
3373  * initialize the space. Otherwise, if the new extents are being
3374  * inserted into the middle of the existing entries, a bit more work
3375  * is required to make room for the new extents to be inserted. The
3376  * caller is responsible for filling in the new extent entries upon
3377  * return.
3378  */
3379 void
3380 xfs_iext_add(
3381         xfs_ifork_t     *ifp,           /* inode fork pointer */
3382         xfs_extnum_t    idx,            /* index to begin adding exts */
3383         int             ext_diff)       /* number of extents to add */
3384 {
3385         int             byte_diff;      /* new bytes being added */
3386         int             new_size;       /* size of extents after adding */
3387         xfs_extnum_t    nextents;       /* number of extents in file */
3388
3389         nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3390         ASSERT((idx >= 0) && (idx <= nextents));
3391         byte_diff = ext_diff * sizeof(xfs_bmbt_rec_t);
3392         new_size = ifp->if_bytes + byte_diff;
3393         /*
3394          * If the new number of extents (nextents + ext_diff)
3395          * fits inside the inode, then continue to use the inline
3396          * extent buffer.
3397          */
3398         if (nextents + ext_diff <= XFS_INLINE_EXTS) {
3399                 if (idx < nextents) {
3400                         memmove(&ifp->if_u2.if_inline_ext[idx + ext_diff],
3401                                 &ifp->if_u2.if_inline_ext[idx],
3402                                 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
3403                         memset(&ifp->if_u2.if_inline_ext[idx], 0, byte_diff);
3404                 }
3405                 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
3406                 ifp->if_real_bytes = 0;
3407                 ifp->if_lastex = nextents + ext_diff;
3408         }
3409         /*
3410          * Otherwise use a linear (direct) extent list.
3411          * If the extents are currently inside the inode,
3412          * xfs_iext_realloc_direct will switch us from
3413          * inline to direct extent allocation mode.
3414          */
3415         else if (nextents + ext_diff <= XFS_LINEAR_EXTS) {
3416                 xfs_iext_realloc_direct(ifp, new_size);
3417                 if (idx < nextents) {
3418                         memmove(&ifp->if_u1.if_extents[idx + ext_diff],
3419                                 &ifp->if_u1.if_extents[idx],
3420                                 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
3421                         memset(&ifp->if_u1.if_extents[idx], 0, byte_diff);
3422                 }
3423         }
3424         /* Indirection array */
3425         else {
3426                 xfs_ext_irec_t  *erp;
3427                 int             erp_idx = 0;
3428                 int             page_idx = idx;
3429
3430                 ASSERT(nextents + ext_diff > XFS_LINEAR_EXTS);
3431                 if (ifp->if_flags & XFS_IFEXTIREC) {
3432                         erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 1);
3433                 } else {
3434                         xfs_iext_irec_init(ifp);
3435                         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3436                         erp = ifp->if_u1.if_ext_irec;
3437                 }
3438                 /* Extents fit in target extent page */
3439                 if (erp && erp->er_extcount + ext_diff <= XFS_LINEAR_EXTS) {
3440                         if (page_idx < erp->er_extcount) {
3441                                 memmove(&erp->er_extbuf[page_idx + ext_diff],
3442                                         &erp->er_extbuf[page_idx],
3443                                         (erp->er_extcount - page_idx) *
3444                                         sizeof(xfs_bmbt_rec_t));
3445                                 memset(&erp->er_extbuf[page_idx], 0, byte_diff);
3446                         }
3447                         erp->er_extcount += ext_diff;
3448                         xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
3449                 }
3450                 /* Insert a new extent page */
3451                 else if (erp) {
3452                         xfs_iext_add_indirect_multi(ifp,
3453                                 erp_idx, page_idx, ext_diff);
3454                 }
3455                 /*
3456                  * If extent(s) are being appended to the last page in
3457                  * the indirection array and the new extent(s) don't fit
3458                  * in the page, then erp is NULL and erp_idx is set to
3459                  * the next index needed in the indirection array.
3460                  */
3461                 else {
3462                         int     count = ext_diff;
3463
3464                         while (count) {
3465                                 erp = xfs_iext_irec_new(ifp, erp_idx);
3466                                 erp->er_extcount = count;
3467                                 count -= MIN(count, (int)XFS_LINEAR_EXTS);
3468                                 if (count) {
3469                                         erp_idx++;
3470                                 }
3471                         }
3472                 }
3473         }
3474         ifp->if_bytes = new_size;
3475 }
3476
3477 /*
3478  * This is called when incore extents are being added to the indirection
3479  * array and the new extents do not fit in the target extent list. The
3480  * erp_idx parameter contains the irec index for the target extent list
3481  * in the indirection array, and the idx parameter contains the extent
3482  * index within the list. The number of extents being added is stored
3483  * in the count parameter.
3484  *
3485  *    |-------|   |-------|
3486  *    |       |   |       |    idx - number of extents before idx
3487  *    |  idx  |   | count |
3488  *    |       |   |       |    count - number of extents being inserted at idx
3489  *    |-------|   |-------|
3490  *    | count |   | nex2  |    nex2 - number of extents after idx + count
3491  *    |-------|   |-------|
3492  */
3493 void
3494 xfs_iext_add_indirect_multi(
3495         xfs_ifork_t     *ifp,                   /* inode fork pointer */
3496         int             erp_idx,                /* target extent irec index */
3497         xfs_extnum_t    idx,                    /* index within target list */
3498         int             count)                  /* new extents being added */
3499 {
3500         int             byte_diff;              /* new bytes being added */
3501         xfs_ext_irec_t  *erp;                   /* pointer to irec entry */
3502         xfs_extnum_t    ext_diff;               /* number of extents to add */
3503         xfs_extnum_t    ext_cnt;                /* new extents still needed */
3504         xfs_extnum_t    nex2;                   /* extents after idx + count */
3505         xfs_bmbt_rec_t  *nex2_ep = NULL;        /* temp list for nex2 extents */
3506         int             nlists;                 /* number of irec's (lists) */
3507
3508         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3509         erp = &ifp->if_u1.if_ext_irec[erp_idx];
3510         nex2 = erp->er_extcount - idx;
3511         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3512
3513         /*
3514          * Save second part of target extent list
3515          * (all extents past */
3516         if (nex2) {
3517                 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
3518                 nex2_ep = (xfs_bmbt_rec_t *) kmem_alloc(byte_diff, KM_NOFS);
3519                 memmove(nex2_ep, &erp->er_extbuf[idx], byte_diff);
3520                 erp->er_extcount -= nex2;
3521                 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -nex2);
3522                 memset(&erp->er_extbuf[idx], 0, byte_diff);
3523         }
3524
3525         /*
3526          * Add the new extents to the end of the target
3527          * list, then allocate new irec record(s) and
3528          * extent buffer(s) as needed to store the rest
3529          * of the new extents.
3530          */
3531         ext_cnt = count;
3532         ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS - erp->er_extcount);
3533         if (ext_diff) {
3534                 erp->er_extcount += ext_diff;
3535                 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
3536                 ext_cnt -= ext_diff;
3537         }
3538         while (ext_cnt) {
3539                 erp_idx++;
3540                 erp = xfs_iext_irec_new(ifp, erp_idx);
3541                 ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS);
3542                 erp->er_extcount = ext_diff;
3543                 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
3544                 ext_cnt -= ext_diff;
3545         }
3546
3547         /* Add nex2 extents back to indirection array */
3548         if (nex2) {
3549                 xfs_extnum_t    ext_avail;
3550                 int             i;
3551
3552                 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
3553                 ext_avail = XFS_LINEAR_EXTS - erp->er_extcount;
3554                 i = 0;
3555                 /*
3556                  * If nex2 extents fit in the current page, append
3557                  * nex2_ep after the new extents.
3558                  */
3559                 if (nex2 <= ext_avail) {
3560                         i = erp->er_extcount;
3561                 }
3562                 /*
3563                  * Otherwise, check if space is available in the
3564                  * next page.
3565                  */
3566                 else if ((erp_idx < nlists - 1) &&
3567                          (nex2 <= (ext_avail = XFS_LINEAR_EXTS -
3568                           ifp->if_u1.if_ext_irec[erp_idx+1].er_extcount))) {
3569                         erp_idx++;
3570                         erp++;
3571                         /* Create a hole for nex2 extents */
3572                         memmove(&erp->er_extbuf[nex2], erp->er_extbuf,
3573                                 erp->er_extcount * sizeof(xfs_bmbt_rec_t));
3574                 }
3575                 /*
3576                  * Final choice, create a new extent page for
3577                  * nex2 extents.
3578                  */
3579                 else {
3580                         erp_idx++;
3581                         erp = xfs_iext_irec_new(ifp, erp_idx);
3582                 }
3583                 memmove(&erp->er_extbuf[i], nex2_ep, byte_diff);
3584                 kmem_free(nex2_ep);
3585                 erp->er_extcount += nex2;
3586                 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, nex2);
3587         }
3588 }
3589
3590 /*
3591  * This is called when the amount of space required for incore file
3592  * extents needs to be decreased. The ext_diff parameter stores the
3593  * number of extents to be removed and the idx parameter contains
3594  * the extent index where the extents will be removed from.
3595  *
3596  * If the amount of space needed has decreased below the linear
3597  * limit, XFS_IEXT_BUFSZ, then switch to using the contiguous
3598  * extent array.  Otherwise, use kmem_realloc() to adjust the
3599  * size to what is needed.
3600  */
3601 void
3602 xfs_iext_remove(
3603         xfs_ifork_t     *ifp,           /* inode fork pointer */
3604         xfs_extnum_t    idx,            /* index to begin removing exts */
3605         int             ext_diff)       /* number of extents to remove */
3606 {
3607         xfs_extnum_t    nextents;       /* number of extents in file */
3608         int             new_size;       /* size of extents after removal */
3609
3610         ASSERT(ext_diff > 0);
3611         nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3612         new_size = (nextents - ext_diff) * sizeof(xfs_bmbt_rec_t);
3613
3614         if (new_size == 0) {
3615                 xfs_iext_destroy(ifp);
3616         } else if (ifp->if_flags & XFS_IFEXTIREC) {
3617                 xfs_iext_remove_indirect(ifp, idx, ext_diff);
3618         } else if (ifp->if_real_bytes) {
3619                 xfs_iext_remove_direct(ifp, idx, ext_diff);
3620         } else {
3621                 xfs_iext_remove_inline(ifp, idx, ext_diff);
3622         }
3623         ifp->if_bytes = new_size;
3624 }
3625
3626 /*
3627  * This removes ext_diff extents from the inline buffer, beginning
3628  * at extent index idx.
3629  */
3630 void
3631 xfs_iext_remove_inline(
3632         xfs_ifork_t     *ifp,           /* inode fork pointer */
3633         xfs_extnum_t    idx,            /* index to begin removing exts */
3634         int             ext_diff)       /* number of extents to remove */
3635 {
3636         int             nextents;       /* number of extents in file */
3637
3638         ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
3639         ASSERT(idx < XFS_INLINE_EXTS);
3640         nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3641         ASSERT(((nextents - ext_diff) > 0) &&
3642                 (nextents - ext_diff) < XFS_INLINE_EXTS);
3643
3644         if (idx + ext_diff < nextents) {
3645                 memmove(&ifp->if_u2.if_inline_ext[idx],
3646                         &ifp->if_u2.if_inline_ext[idx + ext_diff],
3647                         (nextents - (idx + ext_diff)) *
3648                          sizeof(xfs_bmbt_rec_t));
3649                 memset(&ifp->if_u2.if_inline_ext[nextents - ext_diff],
3650                         0, ext_diff * sizeof(xfs_bmbt_rec_t));
3651         } else {
3652                 memset(&ifp->if_u2.if_inline_ext[idx], 0,
3653                         ext_diff * sizeof(xfs_bmbt_rec_t));
3654         }
3655 }
3656
3657 /*
3658  * This removes ext_diff extents from a linear (direct) extent list,
3659  * beginning at extent index idx. If the extents are being removed
3660  * from the end of the list (ie. truncate) then we just need to re-
3661  * allocate the list to remove the extra space. Otherwise, if the
3662  * extents are being removed from the middle of the existing extent
3663  * entries, then we first need to move the extent records beginning
3664  * at idx + ext_diff up in the list to overwrite the records being
3665  * removed, then remove the extra space via kmem_realloc.
3666  */
3667 void
3668 xfs_iext_remove_direct(
3669         xfs_ifork_t     *ifp,           /* inode fork pointer */
3670         xfs_extnum_t    idx,            /* index to begin removing exts */
3671         int             ext_diff)       /* number of extents to remove */
3672 {
3673         xfs_extnum_t    nextents;       /* number of extents in file */
3674         int             new_size;       /* size of extents after removal */
3675
3676         ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
3677         new_size = ifp->if_bytes -
3678                 (ext_diff * sizeof(xfs_bmbt_rec_t));
3679         nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3680
3681         if (new_size == 0) {
3682                 xfs_iext_destroy(ifp);
3683                 return;
3684         }
3685         /* Move extents up in the list (if needed) */
3686         if (idx + ext_diff < nextents) {
3687                 memmove(&ifp->if_u1.if_extents[idx],
3688                         &ifp->if_u1.if_extents[idx + ext_diff],
3689                         (nextents - (idx + ext_diff)) *
3690                          sizeof(xfs_bmbt_rec_t));
3691         }
3692         memset(&ifp->if_u1.if_extents[nextents - ext_diff],
3693                 0, ext_diff * sizeof(xfs_bmbt_rec_t));
3694         /*
3695          * Reallocate the direct extent list. If the extents
3696          * will fit inside the inode then xfs_iext_realloc_direct
3697          * will switch from direct to inline extent allocation
3698          * mode for us.
3699          */
3700         xfs_iext_realloc_direct(ifp, new_size);
3701         ifp->if_bytes = new_size;
3702 }
3703
3704 /*
3705  * This is called when incore extents are being removed from the
3706  * indirection array and the extents being removed span multiple extent
3707  * buffers. The idx parameter contains the file extent index where we
3708  * want to begin removing extents, and the count parameter contains
3709  * how many extents need to be removed.
3710  *
3711  *    |-------|   |-------|
3712  *    | nex1  |   |       |    nex1 - number of extents before idx
3713  *    |-------|   | count |
3714  *    |       |   |       |    count - number of extents being removed at idx
3715  *    | count |   |-------|
3716  *    |       |   | nex2  |    nex2 - number of extents after idx + count
3717  *    |-------|   |-------|
3718  */
3719 void
3720 xfs_iext_remove_indirect(
3721         xfs_ifork_t     *ifp,           /* inode fork pointer */
3722         xfs_extnum_t    idx,            /* index to begin removing extents */
3723         int             count)          /* number of extents to remove */
3724 {
3725         xfs_ext_irec_t  *erp;           /* indirection array pointer */
3726         int             erp_idx = 0;    /* indirection array index */
3727         xfs_extnum_t    ext_cnt;        /* extents left to remove */
3728         xfs_extnum_t    ext_diff;       /* extents to remove in current list */
3729         xfs_extnum_t    nex1;           /* number of extents before idx */
3730         xfs_extnum_t    nex2;           /* extents after idx + count */
3731         int             nlists;         /* entries in indirection array */
3732         int             page_idx = idx; /* index in target extent list */
3733
3734         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3735         erp = xfs_iext_idx_to_irec(ifp,  &page_idx, &erp_idx, 0);
3736         ASSERT(erp != NULL);
3737         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3738         nex1 = page_idx;
3739         ext_cnt = count;
3740         while (ext_cnt) {
3741                 nex2 = MAX((erp->er_extcount - (nex1 + ext_cnt)), 0);
3742                 ext_diff = MIN(ext_cnt, (erp->er_extcount - nex1));
3743                 /*
3744                  * Check for deletion of entire list;
3745                  * xfs_iext_irec_remove() updates extent offsets.
3746                  */
3747                 if (ext_diff == erp->er_extcount) {
3748                         xfs_iext_irec_remove(ifp, erp_idx);
3749                         ext_cnt -= ext_diff;
3750                         nex1 = 0;
3751                         if (ext_cnt) {
3752                                 ASSERT(erp_idx < ifp->if_real_bytes /
3753                                         XFS_IEXT_BUFSZ);
3754                                 erp = &ifp->if_u1.if_ext_irec[erp_idx];
3755                                 nex1 = 0;
3756                                 continue;
3757                         } else {
3758                                 break;
3759                         }
3760                 }
3761                 /* Move extents up (if needed) */
3762                 if (nex2) {
3763                         memmove(&erp->er_extbuf[nex1],
3764                                 &erp->er_extbuf[nex1 + ext_diff],
3765                                 nex2 * sizeof(xfs_bmbt_rec_t));
3766                 }
3767                 /* Zero out rest of page */
3768                 memset(&erp->er_extbuf[nex1 + nex2], 0, (XFS_IEXT_BUFSZ -
3769                         ((nex1 + nex2) * sizeof(xfs_bmbt_rec_t))));
3770                 /* Update remaining counters */
3771                 erp->er_extcount -= ext_diff;
3772                 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -ext_diff);
3773                 ext_cnt -= ext_diff;
3774                 nex1 = 0;
3775                 erp_idx++;
3776                 erp++;
3777         }
3778         ifp->if_bytes -= count * sizeof(xfs_bmbt_rec_t);
3779         xfs_iext_irec_compact(ifp);
3780 }
3781
3782 /*
3783  * Create, destroy, or resize a linear (direct) block of extents.
3784  */
3785 void
3786 xfs_iext_realloc_direct(
3787         xfs_ifork_t     *ifp,           /* inode fork pointer */
3788         int             new_size)       /* new size of extents */
3789 {
3790         int             rnew_size;      /* real new size of extents */
3791
3792         rnew_size = new_size;
3793
3794         ASSERT(!(ifp->if_flags & XFS_IFEXTIREC) ||
3795                 ((new_size >= 0) && (new_size <= XFS_IEXT_BUFSZ) &&
3796                  (new_size != ifp->if_real_bytes)));
3797
3798         /* Free extent records */
3799         if (new_size == 0) {
3800                 xfs_iext_destroy(ifp);
3801         }
3802         /* Resize direct extent list and zero any new bytes */
3803         else if (ifp->if_real_bytes) {
3804                 /* Check if extents will fit inside the inode */
3805                 if (new_size <= XFS_INLINE_EXTS * sizeof(xfs_bmbt_rec_t)) {
3806                         xfs_iext_direct_to_inline(ifp, new_size /
3807                                 (uint)sizeof(xfs_bmbt_rec_t));
3808                         ifp->if_bytes = new_size;
3809                         return;
3810                 }
3811                 if (!is_power_of_2(new_size)){
3812                         rnew_size = roundup_pow_of_two(new_size);
3813                 }
3814                 if (rnew_size != ifp->if_real_bytes) {
3815                         ifp->if_u1.if_extents =
3816                                 kmem_realloc(ifp->if_u1.if_extents,
3817                                                 rnew_size,
3818                                                 ifp->if_real_bytes, KM_NOFS);
3819                 }
3820                 if (rnew_size > ifp->if_real_bytes) {
3821                         memset(&ifp->if_u1.if_extents[ifp->if_bytes /
3822                                 (uint)sizeof(xfs_bmbt_rec_t)], 0,
3823                                 rnew_size - ifp->if_real_bytes);
3824                 }
3825         }
3826         /*
3827          * Switch from the inline extent buffer to a direct
3828          * extent list. Be sure to include the inline extent
3829          * bytes in new_size.
3830          */
3831         else {
3832                 new_size += ifp->if_bytes;
3833                 if (!is_power_of_2(new_size)) {
3834                         rnew_size = roundup_pow_of_two(new_size);
3835                 }
3836                 xfs_iext_inline_to_direct(ifp, rnew_size);
3837         }
3838         ifp->if_real_bytes = rnew_size;
3839         ifp->if_bytes = new_size;
3840 }
3841
3842 /*
3843  * Switch from linear (direct) extent records to inline buffer.
3844  */
3845 void
3846 xfs_iext_direct_to_inline(
3847         xfs_ifork_t     *ifp,           /* inode fork pointer */
3848         xfs_extnum_t    nextents)       /* number of extents in file */
3849 {
3850         ASSERT(ifp->if_flags & XFS_IFEXTENTS);
3851         ASSERT(nextents <= XFS_INLINE_EXTS);
3852         /*
3853          * The inline buffer was zeroed when we switched
3854          * from inline to direct extent allocation mode,
3855          * so we don't need to clear it here.
3856          */
3857         memcpy(ifp->if_u2.if_inline_ext, ifp->if_u1.if_extents,
3858                 nextents * sizeof(xfs_bmbt_rec_t));
3859         kmem_free(ifp->if_u1.if_extents);
3860         ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
3861         ifp->if_real_bytes = 0;
3862 }
3863
3864 /*
3865  * Switch from inline buffer to linear (direct) extent records.
3866  * new_size should already be rounded up to the next power of 2
3867  * by the caller (when appropriate), so use new_size as it is.
3868  * However, since new_size may be rounded up, we can't update
3869  * if_bytes here. It is the caller's responsibility to update
3870  * if_bytes upon return.
3871  */
3872 void
3873 xfs_iext_inline_to_direct(
3874         xfs_ifork_t     *ifp,           /* inode fork pointer */
3875         int             new_size)       /* number of extents in file */
3876 {
3877         ifp->if_u1.if_extents = kmem_alloc(new_size, KM_NOFS);
3878         memset(ifp->if_u1.if_extents, 0, new_size);
3879         if (ifp->if_bytes) {
3880                 memcpy(ifp->if_u1.if_extents, ifp->if_u2.if_inline_ext,
3881                         ifp->if_bytes);
3882                 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
3883                         sizeof(xfs_bmbt_rec_t));
3884         }
3885         ifp->if_real_bytes = new_size;
3886 }
3887
3888 /*
3889  * Resize an extent indirection array to new_size bytes.
3890  */
3891 void
3892 xfs_iext_realloc_indirect(
3893         xfs_ifork_t     *ifp,           /* inode fork pointer */
3894         int             new_size)       /* new indirection array size */
3895 {
3896         int             nlists;         /* number of irec's (ex lists) */
3897         int             size;           /* current indirection array size */
3898
3899         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3900         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3901         size = nlists * sizeof(xfs_ext_irec_t);
3902         ASSERT(ifp->if_real_bytes);
3903         ASSERT((new_size >= 0) && (new_size != size));
3904         if (new_size == 0) {
3905                 xfs_iext_destroy(ifp);
3906         } else {
3907                 ifp->if_u1.if_ext_irec = (xfs_ext_irec_t *)
3908                         kmem_realloc(ifp->if_u1.if_ext_irec,
3909                                 new_size, size, KM_NOFS);
3910         }
3911 }
3912
3913 /*
3914  * Switch from indirection array to linear (direct) extent allocations.
3915  */
3916 void
3917 xfs_iext_indirect_to_direct(
3918          xfs_ifork_t    *ifp)           /* inode fork pointer */
3919 {
3920         xfs_bmbt_rec_host_t *ep;        /* extent record pointer */
3921         xfs_extnum_t    nextents;       /* number of extents in file */
3922         int             size;           /* size of file extents */
3923
3924         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3925         nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3926         ASSERT(nextents <= XFS_LINEAR_EXTS);
3927         size = nextents * sizeof(xfs_bmbt_rec_t);
3928
3929         xfs_iext_irec_compact_pages(ifp);
3930         ASSERT(ifp->if_real_bytes == XFS_IEXT_BUFSZ);
3931
3932         ep = ifp->if_u1.if_ext_irec->er_extbuf;
3933         kmem_free(ifp->if_u1.if_ext_irec);
3934         ifp->if_flags &= ~XFS_IFEXTIREC;
3935         ifp->if_u1.if_extents = ep;
3936         ifp->if_bytes = size;
3937         if (nextents < XFS_LINEAR_EXTS) {
3938                 xfs_iext_realloc_direct(ifp, size);
3939         }
3940 }
3941
3942 /*
3943  * Free incore file extents.
3944  */
3945 void
3946 xfs_iext_destroy(
3947         xfs_ifork_t     *ifp)           /* inode fork pointer */
3948 {
3949         if (ifp->if_flags & XFS_IFEXTIREC) {
3950                 int     erp_idx;
3951                 int     nlists;
3952
3953                 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3954                 for (erp_idx = nlists - 1; erp_idx >= 0 ; erp_idx--) {
3955                         xfs_iext_irec_remove(ifp, erp_idx);
3956                 }
3957                 ifp->if_flags &= ~XFS_IFEXTIREC;
3958         } else if (ifp->if_real_bytes) {
3959                 kmem_free(ifp->if_u1.if_extents);
3960         } else if (ifp->if_bytes) {
3961                 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
3962                         sizeof(xfs_bmbt_rec_t));
3963         }
3964         ifp->if_u1.if_extents = NULL;
3965         ifp->if_real_bytes = 0;
3966         ifp->if_bytes = 0;
3967 }
3968
3969 /*
3970  * Return a pointer to the extent record for file system block bno.
3971  */
3972 xfs_bmbt_rec_host_t *                   /* pointer to found extent record */
3973 xfs_iext_bno_to_ext(
3974         xfs_ifork_t     *ifp,           /* inode fork pointer */
3975         xfs_fileoff_t   bno,            /* block number to search for */
3976         xfs_extnum_t    *idxp)          /* index of target extent */
3977 {
3978         xfs_bmbt_rec_host_t *base;      /* pointer to first extent */
3979         xfs_filblks_t   blockcount = 0; /* number of blocks in extent */
3980         xfs_bmbt_rec_host_t *ep = NULL; /* pointer to target extent */
3981         xfs_ext_irec_t  *erp = NULL;    /* indirection array pointer */
3982         int             high;           /* upper boundary in search */
3983         xfs_extnum_t    idx = 0;        /* index of target extent */
3984         int             low;            /* lower boundary in search */
3985         xfs_extnum_t    nextents;       /* number of file extents */
3986         xfs_fileoff_t   startoff = 0;   /* start offset of extent */
3987
3988         nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3989         if (nextents == 0) {
3990                 *idxp = 0;
3991                 return NULL;
3992         }
3993         low = 0;
3994         if (ifp->if_flags & XFS_IFEXTIREC) {
3995                 /* Find target extent list */
3996                 int     erp_idx = 0;
3997                 erp = xfs_iext_bno_to_irec(ifp, bno, &erp_idx);
3998                 base = erp->er_extbuf;
3999                 high = erp->er_extcount - 1;
4000         } else {
4001                 base = ifp->if_u1.if_extents;
4002                 high = nextents - 1;
4003         }
4004         /* Binary search extent records */
4005         while (low <= high) {
4006                 idx = (low + high) >> 1;
4007                 ep = base + idx;
4008                 startoff = xfs_bmbt_get_startoff(ep);
4009                 blockcount = xfs_bmbt_get_blockcount(ep);
4010                 if (bno < startoff) {
4011                         high = idx - 1;
4012                 } else if (bno >= startoff + blockcount) {
4013                         low = idx + 1;
4014                 } else {
4015                         /* Convert back to file-based extent index */
4016                         if (ifp->if_flags & XFS_IFEXTIREC) {
4017                                 idx += erp->er_extoff;
4018                         }
4019                         *idxp = idx;
4020                         return ep;
4021                 }
4022         }
4023         /* Convert back to file-based extent index */
4024         if (ifp->if_flags & XFS_IFEXTIREC) {
4025                 idx += erp->er_extoff;
4026         }
4027         if (bno >= startoff + blockcount) {
4028                 if (++idx == nextents) {
4029                         ep = NULL;
4030                 } else {
4031                         ep = xfs_iext_get_ext(ifp, idx);
4032                 }
4033         }
4034         *idxp = idx;
4035         return ep;
4036 }
4037
4038 /*
4039  * Return a pointer to the indirection array entry containing the
4040  * extent record for filesystem block bno. Store the index of the
4041  * target irec in *erp_idxp.
4042  */
4043 xfs_ext_irec_t *                        /* pointer to found extent record */
4044 xfs_iext_bno_to_irec(
4045         xfs_ifork_t     *ifp,           /* inode fork pointer */
4046         xfs_fileoff_t   bno,            /* block number to search for */
4047         int             *erp_idxp)      /* irec index of target ext list */
4048 {
4049         xfs_ext_irec_t  *erp = NULL;    /* indirection array pointer */
4050         xfs_ext_irec_t  *erp_next;      /* next indirection array entry */
4051         int             erp_idx;        /* indirection array index */
4052         int             nlists;         /* number of extent irec's (lists) */
4053         int             high;           /* binary search upper limit */
4054         int             low;            /* binary search lower limit */
4055
4056         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4057         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4058         erp_idx = 0;
4059         low = 0;
4060         high = nlists - 1;
4061         while (low <= high) {
4062                 erp_idx = (low + high) >> 1;
4063                 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4064                 erp_next = erp_idx < nlists - 1 ? erp + 1 : NULL;
4065                 if (bno < xfs_bmbt_get_startoff(erp->er_extbuf)) {
4066                         high = erp_idx - 1;
4067                 } else if (erp_next && bno >=
4068                            xfs_bmbt_get_startoff(erp_next->er_extbuf)) {
4069                         low = erp_idx + 1;
4070                 } else {
4071                         break;
4072                 }
4073         }
4074         *erp_idxp = erp_idx;
4075         return erp;
4076 }
4077
4078 /*
4079  * Return a pointer to the indirection array entry containing the
4080  * extent record at file extent index *idxp. Store the index of the
4081  * target irec in *erp_idxp and store the page index of the target
4082  * extent record in *idxp.
4083  */
4084 xfs_ext_irec_t *
4085 xfs_iext_idx_to_irec(
4086         xfs_ifork_t     *ifp,           /* inode fork pointer */
4087         xfs_extnum_t    *idxp,          /* extent index (file -> page) */
4088         int             *erp_idxp,      /* pointer to target irec */
4089         int             realloc)        /* new bytes were just added */
4090 {
4091         xfs_ext_irec_t  *prev;          /* pointer to previous irec */
4092         xfs_ext_irec_t  *erp = NULL;    /* pointer to current irec */
4093         int             erp_idx;        /* indirection array index */
4094         int             nlists;         /* number of irec's (ex lists) */
4095         int             high;           /* binary search upper limit */
4096         int             low;            /* binary search lower limit */
4097         xfs_extnum_t    page_idx = *idxp; /* extent index in target list */
4098
4099         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4100         ASSERT(page_idx >= 0 && page_idx <=
4101                 ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t));
4102         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4103         erp_idx = 0;
4104         low = 0;
4105         high = nlists - 1;
4106
4107         /* Binary search extent irec's */
4108         while (low <= high) {
4109                 erp_idx = (low + high) >> 1;
4110                 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4111                 prev = erp_idx > 0 ? erp - 1 : NULL;
4112                 if (page_idx < erp->er_extoff || (page_idx == erp->er_extoff &&
4113                      realloc && prev && prev->er_extcount < XFS_LINEAR_EXTS)) {
4114                         high = erp_idx - 1;
4115                 } else if (page_idx > erp->er_extoff + erp->er_extcount ||
4116                            (page_idx == erp->er_extoff + erp->er_extcount &&
4117                             !realloc)) {
4118                         low = erp_idx + 1;
4119                 } else if (page_idx == erp->er_extoff + erp->er_extcount &&
4120                            erp->er_extcount == XFS_LINEAR_EXTS) {
4121                         ASSERT(realloc);
4122                         page_idx = 0;
4123                         erp_idx++;
4124                         erp = erp_idx < nlists ? erp + 1 : NULL;
4125                         break;
4126                 } else {
4127                         page_idx -= erp->er_extoff;
4128                         break;
4129                 }
4130         }
4131         *idxp = page_idx;
4132         *erp_idxp = erp_idx;
4133         return(erp);
4134 }
4135
4136 /*
4137  * Allocate and initialize an indirection array once the space needed
4138  * for incore extents increases above XFS_IEXT_BUFSZ.
4139  */
4140 void
4141 xfs_iext_irec_init(
4142         xfs_ifork_t     *ifp)           /* inode fork pointer */
4143 {
4144         xfs_ext_irec_t  *erp;           /* indirection array pointer */
4145         xfs_extnum_t    nextents;       /* number of extents in file */
4146
4147         ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
4148         nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
4149         ASSERT(nextents <= XFS_LINEAR_EXTS);
4150
4151         erp = kmem_alloc(sizeof(xfs_ext_irec_t), KM_NOFS);
4152
4153         if (nextents == 0) {
4154                 ifp->if_u1.if_extents = kmem_alloc(XFS_IEXT_BUFSZ, KM_NOFS);
4155         } else if (!ifp->if_real_bytes) {
4156                 xfs_iext_inline_to_direct(ifp, XFS_IEXT_BUFSZ);
4157         } else if (ifp->if_real_bytes < XFS_IEXT_BUFSZ) {
4158                 xfs_iext_realloc_direct(ifp, XFS_IEXT_BUFSZ);
4159         }
4160         erp->er_extbuf = ifp->if_u1.if_extents;
4161         erp->er_extcount = nextents;
4162         erp->er_extoff = 0;
4163
4164         ifp->if_flags |= XFS_IFEXTIREC;
4165         ifp->if_real_bytes = XFS_IEXT_BUFSZ;
4166         ifp->if_bytes = nextents * sizeof(xfs_bmbt_rec_t);
4167         ifp->if_u1.if_ext_irec = erp;
4168
4169         return;
4170 }
4171
4172 /*
4173  * Allocate and initialize a new entry in the indirection array.
4174  */
4175 xfs_ext_irec_t *
4176 xfs_iext_irec_new(
4177         xfs_ifork_t     *ifp,           /* inode fork pointer */
4178         int             erp_idx)        /* index for new irec */
4179 {
4180         xfs_ext_irec_t  *erp;           /* indirection array pointer */
4181         int             i;              /* loop counter */
4182         int             nlists;         /* number of irec's (ex lists) */
4183
4184         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4185         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4186
4187         /* Resize indirection array */
4188         xfs_iext_realloc_indirect(ifp, ++nlists *
4189                                   sizeof(xfs_ext_irec_t));
4190         /*
4191          * Move records down in the array so the
4192          * new page can use erp_idx.
4193          */
4194         erp = ifp->if_u1.if_ext_irec;
4195         for (i = nlists - 1; i > erp_idx; i--) {
4196                 memmove(&erp[i], &erp[i-1], sizeof(xfs_ext_irec_t));
4197         }
4198         ASSERT(i == erp_idx);
4199
4200         /* Initialize new extent record */
4201         erp = ifp->if_u1.if_ext_irec;
4202         erp[erp_idx].er_extbuf = kmem_alloc(XFS_IEXT_BUFSZ, KM_NOFS);
4203         ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
4204         memset(erp[erp_idx].er_extbuf, 0, XFS_IEXT_BUFSZ);
4205         erp[erp_idx].er_extcount = 0;
4206         erp[erp_idx].er_extoff = erp_idx > 0 ?
4207                 erp[erp_idx-1].er_extoff + erp[erp_idx-1].er_extcount : 0;
4208         return (&erp[erp_idx]);
4209 }
4210
4211 /*
4212  * Remove a record from the indirection array.
4213  */
4214 void
4215 xfs_iext_irec_remove(
4216         xfs_ifork_t     *ifp,           /* inode fork pointer */
4217         int             erp_idx)        /* irec index to remove */
4218 {
4219         xfs_ext_irec_t  *erp;           /* indirection array pointer */
4220         int             i;              /* loop counter */
4221         int             nlists;         /* number of irec's (ex lists) */
4222
4223         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4224         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4225         erp = &ifp->if_u1.if_ext_irec[erp_idx];
4226         if (erp->er_extbuf) {
4227                 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1,
4228                         -erp->er_extcount);
4229                 kmem_free(erp->er_extbuf);
4230         }
4231         /* Compact extent records */
4232         erp = ifp->if_u1.if_ext_irec;
4233         for (i = erp_idx; i < nlists - 1; i++) {
4234                 memmove(&erp[i], &erp[i+1], sizeof(xfs_ext_irec_t));
4235         }
4236         /*
4237          * Manually free the last extent record from the indirection
4238          * array.  A call to xfs_iext_realloc_indirect() with a size
4239          * of zero would result in a call to xfs_iext_destroy() which
4240          * would in turn call this function again, creating a nasty
4241          * infinite loop.
4242          */
4243         if (--nlists) {
4244                 xfs_iext_realloc_indirect(ifp,
4245                         nlists * sizeof(xfs_ext_irec_t));
4246         } else {
4247                 kmem_free(ifp->if_u1.if_ext_irec);
4248         }
4249         ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
4250 }
4251
4252 /*
4253  * This is called to clean up large amounts of unused memory allocated
4254  * by the indirection array.  Before compacting anything though, verify
4255  * that the indirection array is still needed and switch back to the
4256  * linear extent list (or even the inline buffer) if possible.  The
4257  * compaction policy is as follows:
4258  *
4259  *    Full Compaction: Extents fit into a single page (or inline buffer)
4260  * Partial Compaction: Extents occupy less than 50% of allocated space
4261  *      No Compaction: Extents occupy at least 50% of allocated space
4262  */
4263 void
4264 xfs_iext_irec_compact(
4265         xfs_ifork_t     *ifp)           /* inode fork pointer */
4266 {
4267         xfs_extnum_t    nextents;       /* number of extents in file */
4268         int             nlists;         /* number of irec's (ex lists) */
4269
4270         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4271         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4272         nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
4273
4274         if (nextents == 0) {
4275                 xfs_iext_destroy(ifp);
4276         } else if (nextents <= XFS_INLINE_EXTS) {
4277                 xfs_iext_indirect_to_direct(ifp);
4278                 xfs_iext_direct_to_inline(ifp, nextents);
4279         } else if (nextents <= XFS_LINEAR_EXTS) {
4280                 xfs_iext_indirect_to_direct(ifp);
4281         } else if (nextents < (nlists * XFS_LINEAR_EXTS) >> 1) {
4282                 xfs_iext_irec_compact_pages(ifp);
4283         }
4284 }
4285
4286 /*
4287  * Combine extents from neighboring extent pages.
4288  */
4289 void
4290 xfs_iext_irec_compact_pages(
4291         xfs_ifork_t     *ifp)           /* inode fork pointer */
4292 {
4293         xfs_ext_irec_t  *erp, *erp_next;/* pointers to irec entries */
4294         int             erp_idx = 0;    /* indirection array index */
4295         int             nlists;         /* number of irec's (ex lists) */
4296
4297         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4298         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4299         while (erp_idx < nlists - 1) {
4300                 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4301                 erp_next = erp + 1;
4302                 if (erp_next->er_extcount <=
4303                     (XFS_LINEAR_EXTS - erp->er_extcount)) {
4304                         memcpy(&erp->er_extbuf[erp->er_extcount],
4305                                 erp_next->er_extbuf, erp_next->er_extcount *
4306                                 sizeof(xfs_bmbt_rec_t));
4307                         erp->er_extcount += erp_next->er_extcount;
4308                         /*
4309                          * Free page before removing extent record
4310                          * so er_extoffs don't get modified in
4311                          * xfs_iext_irec_remove.
4312                          */
4313                         kmem_free(erp_next->er_extbuf);
4314                         erp_next->er_extbuf = NULL;
4315                         xfs_iext_irec_remove(ifp, erp_idx + 1);
4316                         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4317                 } else {
4318                         erp_idx++;
4319                 }
4320         }
4321 }
4322
4323 /*
4324  * This is called to update the er_extoff field in the indirection
4325  * array when extents have been added or removed from one of the
4326  * extent lists. erp_idx contains the irec index to begin updating
4327  * at and ext_diff contains the number of extents that were added
4328  * or removed.
4329  */
4330 void
4331 xfs_iext_irec_update_extoffs(
4332         xfs_ifork_t     *ifp,           /* inode fork pointer */
4333         int             erp_idx,        /* irec index to update */
4334         int             ext_diff)       /* number of new extents */
4335 {
4336         int             i;              /* loop counter */
4337         int             nlists;         /* number of irec's (ex lists */
4338
4339         ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4340         nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4341         for (i = erp_idx; i < nlists; i++) {
4342                 ifp->if_u1.if_ext_irec[i].er_extoff += ext_diff;
4343         }
4344 }