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