]> CyberLeo.Net >> Repos - FreeBSD/releng/8.2.git/blob - sys/ufs/ufs/ufs_inode.c
Copy stable/8 to releng/8.2 in preparation for FreeBSD-8.2 release.
[FreeBSD/releng/8.2.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 #ifdef UFS_GJOURNAL
61 #include <ufs/ufs/gjournal.h>
62 #endif
63
64 /*
65  * Last reference to an inode.  If necessary, write or delete it.
66  */
67 int
68 ufs_inactive(ap)
69         struct vop_inactive_args /* {
70                 struct vnode *a_vp;
71                 struct thread *a_td;
72         } */ *ap;
73 {
74         struct vnode *vp = ap->a_vp;
75         struct inode *ip = VTOI(vp);
76         struct thread *td = ap->a_td;
77         mode_t mode;
78         int error = 0;
79         struct mount *mp;
80
81         mp = NULL;
82         /*
83          * Ignore inodes related to stale file handles.
84          */
85         if (ip->i_mode == 0)
86                 goto out;
87 #ifdef UFS_GJOURNAL
88         ufs_gjournal_close(vp);
89 #endif
90         if ((ip->i_effnlink == 0 && DOINGSOFTDEP(vp)) ||
91             (ip->i_nlink <= 0 && !UFS_RDONLY(ip))) {
92         loop:
93                 if (vn_start_secondary_write(vp, &mp, V_NOWAIT) != 0) {
94                         /* Cannot delete file while file system is suspended */
95                         if ((vp->v_iflag & VI_DOOMED) != 0) {
96                                 /* Cannot return before file is deleted */
97                                 (void) vn_start_secondary_write(vp, &mp,
98                                                                 V_WAIT);
99                         } else {
100                                 MNT_ILOCK(mp);
101                                 if ((mp->mnt_kern_flag &
102                                      (MNTK_SUSPEND2 | MNTK_SUSPENDED)) == 0) {
103                                         MNT_IUNLOCK(mp);
104                                         goto loop;
105                                 }
106                                 /*
107                                  * Fail to inactivate vnode now and
108                                  * let ffs_snapshot() clean up after
109                                  * it has resumed the file system.
110                                  */
111                                 VI_LOCK(vp);
112                                 vp->v_iflag |= VI_OWEINACT;
113                                 VI_UNLOCK(vp);
114                                 MNT_IUNLOCK(mp);
115                                 return (0);
116                         }
117                 }
118         }
119         if (ip->i_effnlink == 0 && DOINGSOFTDEP(vp))
120                 softdep_releasefile(ip);
121         if (ip->i_nlink <= 0 && !UFS_RDONLY(ip)) {
122 #ifdef QUOTA
123                 if (!getinoquota(ip))
124                         (void)chkiq(ip, -1, NOCRED, FORCE);
125 #endif
126 #ifdef UFS_EXTATTR
127                 ufs_extattr_vnode_inactive(vp, td);
128 #endif
129                 error = UFS_TRUNCATE(vp, (off_t)0, IO_EXT | IO_NORMAL,
130                     NOCRED, td);
131                 /*
132                  * Setting the mode to zero needs to wait for the inode
133                  * to be written just as does a change to the link count.
134                  * So, rather than creating a new entry point to do the
135                  * same thing, we just use softdep_change_linkcnt().
136                  */
137                 DIP_SET(ip, i_rdev, 0);
138                 mode = ip->i_mode;
139                 ip->i_mode = 0;
140                 DIP_SET(ip, i_mode, 0);
141                 ip->i_flag |= IN_CHANGE | IN_UPDATE;
142                 if (DOINGSOFTDEP(vp))
143                         softdep_change_linkcnt(ip);
144                 UFS_VFREE(vp, ip->i_number, mode);
145         }
146         if (ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) {
147                 if ((ip->i_flag & (IN_CHANGE | IN_UPDATE | IN_MODIFIED)) == 0 &&
148                     mp == NULL &&
149                     vn_start_secondary_write(vp, &mp, V_NOWAIT)) {
150                         mp = NULL;
151                         ip->i_flag &= ~IN_ACCESS;
152                 } else {
153                         if (mp == NULL)
154                                 (void) vn_start_secondary_write(vp, &mp,
155                                                                 V_WAIT);
156                         UFS_UPDATE(vp, 0);
157                 }
158         }
159 out:
160         /*
161          * If we are done with the inode, reclaim it
162          * so that it can be reused immediately.
163          */
164         if (ip->i_mode == 0)
165                 vrecycle(vp, td);
166         if (mp != NULL)
167                 vn_finished_secondary_write(mp);
168         return (error);
169 }
170
171 /*
172  * Reclaim an inode so that it can be used for other purposes.
173  */
174 int
175 ufs_reclaim(ap)
176         struct vop_reclaim_args /* {
177                 struct vnode *a_vp;
178                 struct thread *a_td;
179         } */ *ap;
180 {
181         struct vnode *vp = ap->a_vp;
182         struct inode *ip = VTOI(vp);
183         struct ufsmount *ump = ip->i_ump;
184 #ifdef QUOTA
185         int i;
186 #endif
187
188         /*
189          * Destroy the vm object and flush associated pages.
190          */
191         vnode_destroy_vobject(vp);
192         if (ip->i_flag & IN_LAZYMOD)
193                 ip->i_flag |= IN_MODIFIED;
194         UFS_UPDATE(vp, 0);
195         /*
196          * Remove the inode from its hash chain.
197          */
198         vfs_hash_remove(vp);
199         /*
200          * Purge old data structures associated with the inode.
201          */
202 #ifdef QUOTA
203         for (i = 0; i < MAXQUOTAS; i++) {
204                 if (ip->i_dquot[i] != NODQUOT) {
205                         dqrele(vp, ip->i_dquot[i]);
206                         ip->i_dquot[i] = NODQUOT;
207                 }
208         }
209 #endif
210 #ifdef UFS_DIRHASH
211         if (ip->i_dirhash != NULL)
212                 ufsdirhash_free(ip);
213 #endif
214         /*
215          * Lock the clearing of v_data so ffs_lock() can inspect it
216          * prior to obtaining the lock.
217          */
218         VI_LOCK(vp);
219         vp->v_data = 0;
220         VI_UNLOCK(vp);
221         UFS_IFREE(ump, ip);
222         return (0);
223 }