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