xref: /freebsd/sys/ufs/ufs/ufs_inode.c (revision 1a60c7fc)
160727d8bSWarner Losh /*-
2996c772fSJohn Dyson  * Copyright (c) 1991, 1993, 1995
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  * (c) UNIX System Laboratories, Inc.
5df8bae1dSRodney W. Grimes  * All or some portions of this file are derived from material licensed
6df8bae1dSRodney W. Grimes  * to the University of California by American Telephone and Telegraph
7df8bae1dSRodney W. Grimes  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8df8bae1dSRodney W. Grimes  * the permission of UNIX System Laboratories, Inc.
9df8bae1dSRodney W. Grimes  *
10df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
11df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
12df8bae1dSRodney W. Grimes  * are met:
13df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
14df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
15df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
16df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
17df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
18df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
19df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
20df8bae1dSRodney W. Grimes  *    without specific prior written permission.
21df8bae1dSRodney W. Grimes  *
22df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
33df8bae1dSRodney W. Grimes  *
34996c772fSJohn Dyson  *	@(#)ufs_inode.c	8.9 (Berkeley) 5/14/95
35df8bae1dSRodney W. Grimes  */
36df8bae1dSRodney W. Grimes 
37f4636c59SDavid E. O'Brien #include <sys/cdefs.h>
38f4636c59SDavid E. O'Brien __FBSDID("$FreeBSD$");
39f4636c59SDavid E. O'Brien 
4001733a9bSGarrett Wollman #include "opt_quota.h"
41516081f2SRobert Watson #include "opt_ufs.h"
4201733a9bSGarrett Wollman 
43df8bae1dSRodney W. Grimes #include <sys/param.h>
445df14863SJeff Roberson #include <sys/systm.h>
45df8bae1dSRodney W. Grimes #include <sys/vnode.h>
467106ca0dSJohn Baldwin #include <sys/lock.h>
47df8bae1dSRodney W. Grimes #include <sys/mount.h>
482cfc47fbSPoul-Henning Kamp #include <sys/malloc.h>
491b367556SJason Evans #include <sys/mutex.h>
50df8bae1dSRodney W. Grimes 
51a64ed089SRobert Watson #include <ufs/ufs/extattr.h>
52df8bae1dSRodney W. Grimes #include <ufs/ufs/quota.h>
53df8bae1dSRodney W. Grimes #include <ufs/ufs/inode.h>
542cfc47fbSPoul-Henning Kamp #include <ufs/ufs/ufsmount.h>
55df8bae1dSRodney W. Grimes #include <ufs/ufs/ufs_extern.h>
569b5ad47fSIan Dowse #ifdef UFS_DIRHASH
579b5ad47fSIan Dowse #include <ufs/ufs/dir.h>
589b5ad47fSIan Dowse #include <ufs/ufs/dirhash.h>
599b5ad47fSIan Dowse #endif
601a60c7fcSPawel Jakub Dawidek #ifdef UFS_GJOURNAL
611a60c7fcSPawel Jakub Dawidek #include <ufs/ufs/gjournal.h>
621a60c7fcSPawel Jakub Dawidek #endif
63df8bae1dSRodney W. Grimes 
64df8bae1dSRodney W. Grimes /*
65df8bae1dSRodney W. Grimes  * Last reference to an inode.  If necessary, write or delete it.
66df8bae1dSRodney W. Grimes  */
67df8bae1dSRodney W. Grimes int
68df8bae1dSRodney W. Grimes ufs_inactive(ap)
69df8bae1dSRodney W. Grimes 	struct vop_inactive_args /* {
70df8bae1dSRodney W. Grimes 		struct vnode *a_vp;
71b40ce416SJulian Elischer 		struct thread *a_td;
72df8bae1dSRodney W. Grimes 	} */ *ap;
73df8bae1dSRodney W. Grimes {
74996c772fSJohn Dyson 	struct vnode *vp = ap->a_vp;
75996c772fSJohn Dyson 	struct inode *ip = VTOI(vp);
76b40ce416SJulian Elischer 	struct thread *td = ap->a_td;
771c85e6a3SKirk McKusick 	mode_t mode;
781c85e6a3SKirk McKusick 	int error = 0;
79791dd2faSTor Egge 	struct mount *mp;
80df8bae1dSRodney W. Grimes 
81791dd2faSTor Egge 	mp = NULL;
82df8bae1dSRodney W. Grimes 	if (prtactive && vp->v_usecount != 0)
8361acca9fSJustin T. Gibbs 		vprint("ufs_inactive: pushing active", vp);
84996c772fSJohn Dyson 	/*
85996c772fSJohn Dyson 	 * Ignore inodes related to stale file handles.
86996c772fSJohn Dyson 	 */
87996c772fSJohn Dyson 	if (ip->i_mode == 0)
88996c772fSJohn Dyson 		goto out;
891a60c7fcSPawel Jakub Dawidek #ifdef UFS_GJOURNAL
901a60c7fcSPawel Jakub Dawidek 	ufs_gjournal_close(vp);
911a60c7fcSPawel Jakub Dawidek #endif
924613aa0eSTor Egge 	if ((ip->i_effnlink == 0 && DOINGSOFTDEP(vp)) ||
934613aa0eSTor Egge 	    (ip->i_nlink <= 0 &&
944613aa0eSTor Egge 	     (vp->v_mount->mnt_flag & MNT_RDONLY) == 0)) {
95ca2fa807STor Egge 	loop:
96ca2fa807STor Egge 		if (vn_start_secondary_write(vp, &mp, V_NOWAIT) != 0) {
97ca2fa807STor Egge 			/* Cannot delete file while file system is suspended */
98ca2fa807STor Egge 			if ((vp->v_iflag & VI_DOOMED) != 0) {
99ca2fa807STor Egge 				/* Cannot return before file is deleted */
100ca2fa807STor Egge 				(void) vn_start_secondary_write(vp, &mp,
101ca2fa807STor Egge 								V_WAIT);
102ca2fa807STor Egge 			} else {
103ca2fa807STor Egge 				MNT_ILOCK(mp);
104ca2fa807STor Egge 				if ((mp->mnt_kern_flag &
105ca2fa807STor Egge 				     (MNTK_SUSPEND2 | MNTK_SUSPENDED)) == 0) {
106ca2fa807STor Egge 					MNT_IUNLOCK(mp);
107ca2fa807STor Egge 					goto loop;
108ca2fa807STor Egge 				}
109ca2fa807STor Egge 				/*
110ca2fa807STor Egge 				 * Fail to inactivate vnode now and
111ca2fa807STor Egge 				 * let ffs_snapshot() clean up after
112ca2fa807STor Egge 				 * it has resumed the file system.
113ca2fa807STor Egge 				 */
114ca2fa807STor Egge 				VI_LOCK(vp);
115ca2fa807STor Egge 				vp->v_iflag |= VI_OWEINACT;
116ca2fa807STor Egge 				VI_UNLOCK(vp);
117ca2fa807STor Egge 				MNT_IUNLOCK(mp);
118ca2fa807STor Egge 				return (0);
119ca2fa807STor Egge 			}
120ca2fa807STor Egge 		}
1214613aa0eSTor Egge 	}
1224613aa0eSTor Egge 	if (ip->i_effnlink == 0 && DOINGSOFTDEP(vp))
1234613aa0eSTor Egge 		softdep_releasefile(ip);
1244613aa0eSTor Egge 	if (ip->i_nlink <= 0 && (vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
125df8bae1dSRodney W. Grimes #ifdef QUOTA
126df8bae1dSRodney W. Grimes 		if (!getinoquota(ip))
127a7d50c22SKirk McKusick 			(void)chkiq(ip, -1, NOCRED, FORCE);
128df8bae1dSRodney W. Grimes #endif
129516081f2SRobert Watson #ifdef UFS_EXTATTR
1302fc6567eSRobert Watson 		ufs_extattr_vnode_inactive(vp, td);
131a64ed089SRobert Watson #endif
1327aca6291SKirk McKusick 		error = UFS_TRUNCATE(vp, (off_t)0, IO_EXT | IO_NORMAL,
1337aca6291SKirk McKusick 		    NOCRED, td);
134812b1d41SKirk McKusick 		/*
135812b1d41SKirk McKusick 		 * Setting the mode to zero needs to wait for the inode
136812b1d41SKirk McKusick 		 * to be written just as does a change to the link count.
137812b1d41SKirk McKusick 		 * So, rather than creating a new entry point to do the
138812b1d41SKirk McKusick 		 * same thing, we just use softdep_change_linkcnt().
139812b1d41SKirk McKusick 		 */
140b403319bSAlexander Kabaev 		DIP_SET(ip, i_rdev, 0);
141df8bae1dSRodney W. Grimes 		mode = ip->i_mode;
142df8bae1dSRodney W. Grimes 		ip->i_mode = 0;
143b403319bSAlexander Kabaev 		DIP_SET(ip, i_mode, 0);
144df8bae1dSRodney W. Grimes 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
145812b1d41SKirk McKusick 		if (DOINGSOFTDEP(vp))
146812b1d41SKirk McKusick 			softdep_change_linkcnt(ip);
147cec0f20cSPoul-Henning Kamp 		UFS_VFREE(vp, ip->i_number, mode);
148df8bae1dSRodney W. Grimes 	}
149f2a2857bSKirk McKusick 	if (ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE)) {
150f2a2857bSKirk McKusick 		if ((ip->i_flag & (IN_CHANGE | IN_UPDATE | IN_MODIFIED)) == 0 &&
151791dd2faSTor Egge 		    mp == NULL &&
152791dd2faSTor Egge 		    vn_start_secondary_write(vp, &mp, V_NOWAIT)) {
153791dd2faSTor Egge 			mp = NULL;
154f2a2857bSKirk McKusick 			ip->i_flag &= ~IN_ACCESS;
155f2a2857bSKirk McKusick 		} else {
156791dd2faSTor Egge 			if (mp == NULL)
157791dd2faSTor Egge 				(void) vn_start_secondary_write(vp, &mp,
158791dd2faSTor Egge 								V_WAIT);
159de5d1ba5SBruce Evans 			UFS_UPDATE(vp, 0);
160f2a2857bSKirk McKusick 		}
161f2a2857bSKirk McKusick 	}
162996c772fSJohn Dyson out:
163df8bae1dSRodney W. Grimes 	/*
164df8bae1dSRodney W. Grimes 	 * If we are done with the inode, reclaim it
165df8bae1dSRodney W. Grimes 	 * so that it can be reused immediately.
166df8bae1dSRodney W. Grimes 	 */
167996c772fSJohn Dyson 	if (ip->i_mode == 0)
168d4eb29baSPoul-Henning Kamp 		vrecycle(vp, td);
169791dd2faSTor Egge 	if (mp != NULL)
170791dd2faSTor Egge 		vn_finished_secondary_write(mp);
171df8bae1dSRodney W. Grimes 	return (error);
172df8bae1dSRodney W. Grimes }
173df8bae1dSRodney W. Grimes 
174df8bae1dSRodney W. Grimes /*
175df8bae1dSRodney W. Grimes  * Reclaim an inode so that it can be used for other purposes.
176df8bae1dSRodney W. Grimes  */
177df8bae1dSRodney W. Grimes int
1782cfc47fbSPoul-Henning Kamp ufs_reclaim(ap)
1792cfc47fbSPoul-Henning Kamp 	struct vop_reclaim_args /* {
1802cfc47fbSPoul-Henning Kamp 		struct vnode *a_vp;
181b40ce416SJulian Elischer 		struct thread *a_td;
1822cfc47fbSPoul-Henning Kamp 	} */ *ap;
183df8bae1dSRodney W. Grimes {
18405f4ff5dSPoul-Henning Kamp 	struct vnode *vp = ap->a_vp;
1851c85e6a3SKirk McKusick 	struct inode *ip = VTOI(vp);
1861c85e6a3SKirk McKusick 	struct ufsmount *ump = ip->i_ump;
1872fe5b4cbSAndrey A. Chernov #ifdef QUOTA
1882fe5b4cbSAndrey A. Chernov 	int i;
1892fe5b4cbSAndrey A. Chernov #endif
190df8bae1dSRodney W. Grimes 
191df8bae1dSRodney W. Grimes 	if (prtactive && vp->v_usecount != 0)
192df8bae1dSRodney W. Grimes 		vprint("ufs_reclaim: pushing active", vp);
1934483fe92SJeff Roberson 	/*
1944483fe92SJeff Roberson 	 * Destroy the vm object and flush associated pages.
1954483fe92SJeff Roberson 	 */
1964483fe92SJeff Roberson 	vnode_destroy_vobject(vp);
19730551872SBruce Evans 	if (ip->i_flag & IN_LAZYMOD) {
19830551872SBruce Evans 		ip->i_flag |= IN_MODIFIED;
199de5d1ba5SBruce Evans 		UFS_UPDATE(vp, 0);
20030551872SBruce Evans 	}
201df8bae1dSRodney W. Grimes 	/*
20240715905SPoul-Henning Kamp 	 * Remove the inode from its hash chain.
20340715905SPoul-Henning Kamp 	 */
20414bc0685SPoul-Henning Kamp 	vfs_hash_remove(vp);
20540715905SPoul-Henning Kamp 	/*
206df8bae1dSRodney W. Grimes 	 * Purge old data structures associated with the inode.
207df8bae1dSRodney W. Grimes 	 */
208df8bae1dSRodney W. Grimes #ifdef QUOTA
209df8bae1dSRodney W. Grimes 	for (i = 0; i < MAXQUOTAS; i++) {
210df8bae1dSRodney W. Grimes 		if (ip->i_dquot[i] != NODQUOT) {
211df8bae1dSRodney W. Grimes 			dqrele(vp, ip->i_dquot[i]);
212df8bae1dSRodney W. Grimes 			ip->i_dquot[i] = NODQUOT;
213df8bae1dSRodney W. Grimes 		}
214df8bae1dSRodney W. Grimes 	}
215df8bae1dSRodney W. Grimes #endif
2169b5ad47fSIan Dowse #ifdef UFS_DIRHASH
2179b5ad47fSIan Dowse 	if (ip->i_dirhash != NULL)
2189b5ad47fSIan Dowse 		ufsdirhash_free(ip);
2199b5ad47fSIan Dowse #endif
22023d15e85SJeff Roberson 	/*
22123d15e85SJeff Roberson 	 * Lock the clearing of v_data so ffs_lock() can inspect it
22223d15e85SJeff Roberson 	 * prior to obtaining the lock.
22323d15e85SJeff Roberson 	 */
22423d15e85SJeff Roberson 	VI_LOCK(vp);
2252cfc47fbSPoul-Henning Kamp 	vp->v_data = 0;
22623d15e85SJeff Roberson 	VI_UNLOCK(vp);
22723d15e85SJeff Roberson 	UFS_IFREE(ump, ip);
228df8bae1dSRodney W. Grimes 	return (0);
229df8bae1dSRodney W. Grimes }
230