]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/ufs/ufs/ufs_vfsops.c
zfs: merge OpenZFS master-bedbc13da
[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             (cmds >> SUBCMDSHIFT) == Q_QUOTAOFF)
99                 vfs_unbusy(mp);
100
101         return (EOPNOTSUPP);
102 #else
103         struct thread *td;
104         int cmd, type, error;
105
106         td = curthread;
107         cmd = cmds >> SUBCMDSHIFT;
108         type = cmds & SUBCMDMASK;
109         if (id == -1) {
110                 switch (type) {
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 || cmd == Q_QUOTAOFF)
121                                 vfs_unbusy(mp);
122                         return (EINVAL);
123                 }
124         }
125         if ((u_int)type >= MAXQUOTAS) {
126                 if (cmd == Q_QUOTAON || cmd == Q_QUOTAOFF)
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                 vfs_ref(mp);
138                 vfs_unbusy(mp);
139                 vn_start_write(NULL, &mp, V_WAIT | V_MNTREF);
140                 error = quotaoff(td, mp, type);
141                 vn_finished_write(mp);
142                 break;
143
144         case Q_SETQUOTA32:
145                 error = setquota32(td, mp, id, type, arg);
146                 break;
147
148         case Q_SETUSE32:
149                 error = setuse32(td, mp, id, type, arg);
150                 break;
151
152         case Q_GETQUOTA32:
153                 error = getquota32(td, mp, id, type, arg);
154                 break;
155
156         case Q_SETQUOTA:
157                 error = setquota(td, mp, id, type, arg);
158                 break;
159
160         case Q_SETUSE:
161                 error = setuse(td, mp, id, type, arg);
162                 break;
163
164         case Q_GETQUOTA:
165                 error = getquota(td, mp, id, type, arg);
166                 break;
167
168         case Q_GETQUOTASIZE:
169                 error = getquotasize(td, mp, id, type, arg);
170                 break;
171
172         case Q_SYNC:
173                 error = qsync(mp);
174                 break;
175
176         default:
177                 error = EINVAL;
178                 break;
179         }
180         return (error);
181 #endif
182 }
183
184 /*
185  * Initial UFS filesystems, done only once.
186  */
187 int
188 ufs_init(vfsp)
189         struct vfsconf *vfsp;
190 {
191
192 #ifdef QUOTA
193         dqinit();
194 #endif
195 #ifdef UFS_DIRHASH
196         ufsdirhash_init();
197 #endif
198         return (0);
199 }
200
201 /*
202  * Uninitialise UFS filesystems, done before module unload.
203  */
204 int
205 ufs_uninit(vfsp)
206         struct vfsconf *vfsp;
207 {
208
209 #ifdef QUOTA
210         dquninit();
211 #endif
212 #ifdef UFS_DIRHASH
213         ufsdirhash_uninit();
214 #endif
215         return (0);
216 }