Remove the thread argument from ext2_quotaoff(), ext2_flushfiles(),
[dragonfly.git] / sys / vfs / ufs / ufs_vfsops.c
1 /*
2  * Copyright (c) 1991, 1993, 1994
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  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)ufs_vfsops.c        8.8 (Berkeley) 5/20/95
39  * $FreeBSD: src/sys/ufs/ufs/ufs_vfsops.c,v 1.17.2.3 2001/10/14 19:08:16 iedowse Exp $
40  * $DragonFly: src/sys/vfs/ufs/ufs_vfsops.c,v 1.14 2006/05/06 16:20:19 dillon Exp $
41  */
42
43 #include "opt_quota.h"
44
45 #include <sys/param.h>
46 #include <sys/kernel.h>
47 #include <sys/mount.h>
48 #include <sys/proc.h>
49 #include <sys/malloc.h>
50 #include <sys/vnode.h>
51
52 #include "quota.h"
53 #include "inode.h"
54 #include "ufsmount.h"
55 #include "ufs_extern.h"
56
57 MALLOC_DEFINE(M_UFSMNT, "UFS mount", "UFS mount structure");
58 /*
59  * Return the root of a filesystem.
60  */
61 int
62 ufs_root(struct mount *mp, struct vnode **vpp)
63 {
64         struct vnode *nvp;
65         int error;
66
67         error = VFS_VGET(mp, (ino_t)ROOTINO, &nvp);
68         if (error)
69                 return (error);
70         *vpp = nvp;
71         return (0);
72 }
73
74 /*
75  * Do operations associated with quotas
76  */
77 int
78 ufs_quotactl(struct mount *mp, int cmds, uid_t uid, caddr_t arg,
79              struct thread *td)
80 {
81 #ifndef QUOTA
82         return (EOPNOTSUPP);
83 #else
84         struct ucred *cred;
85         int cmd, type, error;
86
87         if (td->td_proc == NULL)
88                 return (EOPNOTSUPP);
89         cred = td->td_proc->p_ucred;
90
91         type = cmds & SUBCMDMASK;
92         cmd = cmds >> SUBCMDSHIFT;
93
94         if (uid == -1) {
95                 switch(type) {
96                         case USRQUOTA:
97                                 uid = cred->cr_ruid;
98                                 break;
99                         case GRPQUOTA:
100                                 uid = cred->cr_rgid;
101                                 break;
102                         default:
103                                 return (EINVAL);
104                 }
105         }
106                                         
107         switch (cmd) {
108         case Q_SYNC:
109                 break;
110         case Q_GETQUOTA:
111                 if (uid == cred->cr_ruid)
112                         break;
113                 /* fall through */
114         default:
115                 if ((error = suser_cred(cred, PRISON_ROOT)) != 0)
116                         return (error);
117         }
118
119         type = cmds & SUBCMDMASK;
120         if ((uint)type >= MAXQUOTAS)
121                 return (EINVAL);
122         if (vfs_busy(mp, LK_NOWAIT))
123                 return (0);
124
125         switch (cmd) {
126
127         case Q_QUOTAON:
128                 error = ufs_quotaon(cred, mp, type, arg);
129                 break;
130
131         case Q_QUOTAOFF:
132                 error = ufs_quotaoff(mp, type);
133                 break;
134
135         case Q_SETQUOTA:
136                 error = ufs_setquota(mp, uid, type, arg);
137                 break;
138
139         case Q_SETUSE:
140                 error = ufs_setuse(mp, uid, type, arg);
141                 break;
142
143         case Q_GETQUOTA:
144                 error = ufs_getquota(mp, uid, type, arg);
145                 break;
146
147         case Q_SYNC:
148                 error = ufs_qsync(mp);
149                 break;
150
151         default:
152                 error = EINVAL;
153                 break;
154         }
155         vfs_unbusy(mp);
156         return (error);
157 #endif
158 }
159
160 /*
161  * Initial UFS filesystems, done only once.
162  */
163 int
164 ufs_init(struct vfsconf *vfsp)
165 {
166         static int done;
167
168         if (done)
169                 return (0);
170         done = 1;
171         ufs_ihashinit();
172 #ifdef QUOTA
173         ufs_dqinit();
174 #endif
175         return (0);
176 }
177
178 /*
179  * This is the generic part of fhtovp called after the underlying
180  * filesystem has validated the file handle.
181  *
182  * Call the VFS_CHECKEXP beforehand to verify access.
183  */
184 int
185 ufs_fhtovp(struct mount *mp, struct ufid *ufhp, struct vnode **vpp)
186 {
187         struct inode *ip;
188         struct vnode *nvp;
189         int error;
190
191         error = VFS_VGET(mp, ufhp->ufid_ino, &nvp);
192         if (error) {
193                 *vpp = NULLVP;
194                 return (error);
195         }
196         ip = VTOI(nvp);
197         if (ip->i_mode == 0 ||
198             ip->i_gen != ufhp->ufid_gen ||
199             (VFSTOUFS(mp)->um_i_effnlink_valid ? ip->i_effnlink :
200             ip->i_nlink) <= 0) {
201                 vput(nvp);
202                 *vpp = NULLVP;
203                 return (ESTALE);
204         }
205         *vpp = nvp;
206         return (0);
207 }
208
209
210 /*
211  * This is the generic part of fhtovp called after the underlying
212  * filesystem has validated the file handle.
213  *
214  * Verify that a host should have access to a filesystem.
215  */
216 int
217 ufs_check_export(struct mount *mp, struct sockaddr *nam, int *exflagsp,
218                  struct ucred **credanonp)
219 {
220         struct netcred *np;
221         struct ufsmount *ump;;
222
223         ump = VFSTOUFS(mp);
224         /*
225          * Get the export permission structure for this <mp, client> tuple.
226          */
227         np = vfs_export_lookup(mp, &ump->um_export, nam);
228         if (np == NULL)
229                 return (EACCES);
230
231         *exflagsp = np->netc_exflags;
232         *credanonp = &np->netc_anon;
233         return (0);
234 }