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