]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/ufs/ufs/ufs_vfsops.c
Put jail(2) under COMPAT_FREEBSD11. It has been the "old" way of creating
[FreeBSD/FreeBSD.git] / sys / ufs / ufs / ufs_vfsops.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1991, 1993, 1994
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_vfsops.c        8.8 (Berkeley) 5/20/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/kernel.h>
48 #include <sys/lock.h>
49 #include <sys/malloc.h>
50 #include <sys/mount.h>
51 #include <sys/proc.h>
52 #include <sys/socket.h>
53 #include <sys/vnode.h>
54
55 #include <ufs/ufs/extattr.h>
56 #include <ufs/ufs/quota.h>
57 #include <ufs/ufs/inode.h>
58 #include <ufs/ufs/ufsmount.h>
59 #include <ufs/ufs/ufs_extern.h>
60 #ifdef UFS_DIRHASH
61 #include <ufs/ufs/dir.h>
62 #include <ufs/ufs/dirhash.h>
63 #endif
64
65 MALLOC_DEFINE(M_UFSMNT, "ufs_mount", "UFS mount structure");
66
67 /*
68  * Return the root of a filesystem.
69  */
70 int
71 ufs_root(mp, flags, vpp)
72         struct mount *mp;
73         int flags;
74         struct vnode **vpp;
75 {
76         struct vnode *nvp;
77         int error;
78
79         error = VFS_VGET(mp, (ino_t)UFS_ROOTINO, flags, &nvp);
80         if (error)
81                 return (error);
82         *vpp = nvp;
83         return (0);
84 }
85
86 /*
87  * Do operations associated with quotas
88  */
89 int
90 ufs_quotactl(mp, cmds, id, arg)
91         struct mount *mp;
92         int cmds;
93         uid_t id;
94         void *arg;
95 {
96 #ifndef QUOTA
97         if ((cmds >> SUBCMDSHIFT) == Q_QUOTAON)
98                 vfs_unbusy(mp);
99
100         return (EOPNOTSUPP);
101 #else
102         struct thread *td;
103         int cmd, type, error;
104
105         td = curthread;
106         cmd = cmds >> SUBCMDSHIFT;
107         type = cmds & SUBCMDMASK;
108         if (id == -1) {
109                 switch (type) {
110
111                 case USRQUOTA:
112                         id = td->td_ucred->cr_ruid;
113                         break;
114
115                 case GRPQUOTA:
116                         id = td->td_ucred->cr_rgid;
117                         break;
118
119                 default:
120                         if (cmd == Q_QUOTAON)
121                                 vfs_unbusy(mp);
122                         return (EINVAL);
123                 }
124         }
125         if ((u_int)type >= MAXQUOTAS) {
126                 if (cmd == Q_QUOTAON)
127                         vfs_unbusy(mp);
128                 return (EINVAL);
129         }
130
131         switch (cmd) {
132         case Q_QUOTAON:
133                 error = quotaon(td, mp, type, arg);
134                 break;
135
136         case Q_QUOTAOFF:
137                 error = quotaoff(td, mp, type);
138                 break;
139
140         case Q_SETQUOTA32:
141                 error = setquota32(td, mp, id, type, arg);
142                 break;
143
144         case Q_SETUSE32:
145                 error = setuse32(td, mp, id, type, arg);
146                 break;
147
148         case Q_GETQUOTA32:
149                 error = getquota32(td, mp, id, type, arg);
150                 break;
151
152         case Q_SETQUOTA:
153                 error = setquota(td, mp, id, type, arg);
154                 break;
155
156         case Q_SETUSE:
157                 error = setuse(td, mp, id, type, arg);
158                 break;
159
160         case Q_GETQUOTA:
161                 error = getquota(td, mp, id, type, arg);
162                 break;
163
164         case Q_GETQUOTASIZE:
165                 error = getquotasize(td, mp, id, type, arg);
166                 break;
167
168         case Q_SYNC:
169                 error = qsync(mp);
170                 break;
171
172         default:
173                 error = EINVAL;
174                 break;
175         }
176         return (error);
177 #endif
178 }
179
180 /*
181  * Initial UFS filesystems, done only once.
182  */
183 int
184 ufs_init(vfsp)
185         struct vfsconf *vfsp;
186 {
187
188 #ifdef QUOTA
189         dqinit();
190 #endif
191 #ifdef UFS_DIRHASH
192         ufsdirhash_init();
193 #endif
194         return (0);
195 }
196
197 /*
198  * Uninitialise UFS filesystems, done before module unload.
199  */
200 int
201 ufs_uninit(vfsp)
202         struct vfsconf *vfsp;
203 {
204
205 #ifdef QUOTA
206         dquninit();
207 #endif
208 #ifdef UFS_DIRHASH
209         ufsdirhash_uninit();
210 #endif
211         return (0);
212 }
213
214 /*
215  * This is the generic part of fhtovp called after the underlying
216  * filesystem has validated the file handle.
217  *
218  * Call the VFS_CHECKEXP beforehand to verify access.
219  */
220 int
221 ufs_fhtovp(mp, ufhp, flags, vpp)
222         struct mount *mp;
223         struct ufid *ufhp;
224         int flags;
225         struct vnode **vpp;
226 {
227         struct inode *ip;
228         struct vnode *nvp;
229         int error;
230
231         error = VFS_VGET(mp, ufhp->ufid_ino, flags, &nvp);
232         if (error) {
233                 *vpp = NULLVP;
234                 return (error);
235         }
236         ip = VTOI(nvp);
237         if (ip->i_mode == 0 || ip->i_gen != ufhp->ufid_gen ||
238             ip->i_effnlink <= 0) {
239                 vput(nvp);
240                 *vpp = NULLVP;
241                 return (ESTALE);
242         }
243         *vpp = nvp;
244         vnode_create_vobject(*vpp, DIP(ip, i_size), curthread);
245         return (0);
246 }