]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/ufs/ufs/ufs_inode.c
This commit was generated by cvs2svn to compensate for changes in r156678,
[FreeBSD/FreeBSD.git] / sys / ufs / ufs / ufs_inode.c
1 /*-
2  * Copyright (c) 1991, 1993, 1995
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 4. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)ufs_inode.c 8.9 (Berkeley) 5/14/95
35  */
36
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39
40 #include "opt_quota.h"
41 #include "opt_ufs.h"
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/vnode.h>
46 #include <sys/lock.h>
47 #include <sys/mount.h>
48 #include <sys/malloc.h>
49 #include <sys/mutex.h>
50
51 #include <ufs/ufs/extattr.h>
52 #include <ufs/ufs/quota.h>
53 #include <ufs/ufs/inode.h>
54 #include <ufs/ufs/ufsmount.h>
55 #include <ufs/ufs/ufs_extern.h>
56 #ifdef UFS_DIRHASH
57 #include <ufs/ufs/dir.h>
58 #include <ufs/ufs/dirhash.h>
59 #endif
60
61 /*
62  * Last reference to an inode.  If necessary, write or delete it.
63  */
64 int
65 ufs_inactive(ap)
66         struct vop_inactive_args /* {
67                 struct vnode *a_vp;
68                 struct thread *a_td;
69         } */ *ap;
70 {
71         struct vnode *vp = ap->a_vp;
72         struct inode *ip = VTOI(vp);
73         struct thread *td = ap->a_td;
74         mode_t mode;
75         int error = 0;
76         struct mount *mp;
77
78         mp = NULL;
79         if (prtactive && vp->v_usecount != 0)
80                 vprint("ufs_inactive: pushing active", vp);
81         /*
82          * Ignore inodes related to stale file handles.
83          */
84         if (ip->i_mode == 0)
85                 goto out;
86         if (ip->i_effnlink == 0 && DOINGSOFTDEP(vp))
87                 softdep_releasefile(ip);
88         if (ip->i_nlink <= 0 && (vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
89         loop:
90                 if (vn_start_secondary_write(vp, &mp, V_NOWAIT) != 0) {
91                         /* Cannot delete file while file system is suspended */
92                         if ((vp->v_iflag & VI_DOOMED) != 0) {
93                                 /* Cannot return before file is deleted */
94                                 (void) vn_start_secondary_write(vp, &mp,
95                                                                 V_WAIT);
96                         } else {
97                                 MNT_ILOCK(mp);
98                                 if ((mp->mnt_kern_flag &
99                                      (MNTK_SUSPEND2 | MNTK_SUSPENDED)) == 0) {
100                                         MNT_IUNLOCK(mp);
101                                         goto loop;
102                                 }
103                                 /*
104                                  * Fail to inactivate vnode now and
105                                  * let ffs_snapshot() clean up after
106                                  * it has resumed the file system.
107                                  */
108                                 VI_LOCK(vp);
109                                 vp->v_iflag |= VI_OWEINACT;
110                                 VI_UNLOCK(vp);
111                                 MNT_IUNLOCK(mp);
112                                 return (0);
113                         }
114                 }
115 #ifdef QUOTA
116                 if (!getinoquota(ip))
117                         (void)chkiq(ip, -1, NOCRED, FORCE);
118 #endif
119 #ifdef UFS_EXTATTR
120                 ufs_extattr_vnode_inactive(vp, td);
121 #endif
122                 error = UFS_TRUNCATE(vp, (off_t)0, IO_EXT | IO_NORMAL,
123                     NOCRED, td);
124                 /*
125                  * Setting the mode to zero needs to wait for the inode
126                  * to be written just as does a change to the link count.
127                  * So, rather than creating a new entry point to do the
128                  * same thing, we just use softdep_change_linkcnt().
129                  */
130                 DIP_SET(ip, i_rdev, 0);
131                 mode = ip->i_mode;
132                 ip->i_mode = 0;
133                 DIP_SET(ip, i_mode, 0);
134                 ip->i_flag |= IN_CHANGE | IN_UPDATE;
135                 if (DOINGSOFTDEP(vp))
136                         softdep_change_linkcnt(ip);
137                 UFS_VFREE(vp, ip->i_number, mode);
138         }
139         if (ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) {
140                 if ((ip->i_flag & (IN_CHANGE | IN_UPDATE | IN_MODIFIED)) == 0 &&
141                     mp == NULL &&
142                     vn_start_secondary_write(vp, &mp, V_NOWAIT)) {
143                         mp = NULL;
144                         ip->i_flag &= ~IN_ACCESS;
145                 } else {
146                         if (mp == NULL)
147                                 (void) vn_start_secondary_write(vp, &mp,
148                                                                 V_WAIT);
149                         UFS_UPDATE(vp, 0);
150                 }
151         }
152 out:
153         /*
154          * If we are done with the inode, reclaim it
155          * so that it can be reused immediately.
156          */
157         if (ip->i_mode == 0)
158                 vrecycle(vp, td);
159         if (mp != NULL)
160                 vn_finished_secondary_write(mp);
161         return (error);
162 }
163
164 /*
165  * Reclaim an inode so that it can be used for other purposes.
166  */
167 int
168 ufs_reclaim(ap)
169         struct vop_reclaim_args /* {
170                 struct vnode *a_vp;
171                 struct thread *a_td;
172         } */ *ap;
173 {
174         struct vnode *vp = ap->a_vp;
175         struct inode *ip = VTOI(vp);
176         struct ufsmount *ump = ip->i_ump;
177 #ifdef QUOTA
178         int i;
179 #endif
180
181         if (prtactive && vp->v_usecount != 0)
182                 vprint("ufs_reclaim: pushing active", vp);
183         /*
184          * Destroy the vm object and flush associated pages.
185          */
186         vnode_destroy_vobject(vp);
187         if (ip->i_flag & IN_LAZYMOD) {
188                 ip->i_flag |= IN_MODIFIED;
189                 UFS_UPDATE(vp, 0);
190         }
191         /*
192          * Remove the inode from its hash chain.
193          */
194         vfs_hash_remove(vp);
195         /*
196          * Purge old data structures associated with the inode.
197          */
198 #ifdef QUOTA
199         for (i = 0; i < MAXQUOTAS; i++) {
200                 if (ip->i_dquot[i] != NODQUOT) {
201                         dqrele(vp, ip->i_dquot[i]);
202                         ip->i_dquot[i] = NODQUOT;
203                 }
204         }
205 #endif
206 #ifdef UFS_DIRHASH
207         if (ip->i_dirhash != NULL)
208                 ufsdirhash_free(ip);
209 #endif
210         /*
211          * Lock the clearing of v_data so ffs_lock() can inspect it
212          * prior to obtaining the lock.
213          */
214         VI_LOCK(vp);
215         vp->v_data = 0;
216         VI_UNLOCK(vp);
217         UFS_IFREE(ump, ip);
218         return (0);
219 }