kernfs_vfsops.c revision 1.51 1 1.51 thorpej /* $NetBSD: kernfs_vfsops.c,v 1.51 2003/06/29 18:43:32 thorpej Exp $ */
2 1.18 cgd
3 1.1 cgd /*
4 1.32 fvdl * Copyright (c) 1992, 1993, 1995
5 1.15 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.11 cgd * This code is derived from software donated to Berkeley by
8 1.1 cgd * Jan-Simon Pendry.
9 1.1 cgd *
10 1.2 cgd * Redistribution and use in source and binary forms, with or without
11 1.2 cgd * modification, are permitted provided that the following conditions
12 1.2 cgd * are met:
13 1.2 cgd * 1. Redistributions of source code must retain the above copyright
14 1.2 cgd * notice, this list of conditions and the following disclaimer.
15 1.2 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.2 cgd * notice, this list of conditions and the following disclaimer in the
17 1.2 cgd * documentation and/or other materials provided with the distribution.
18 1.2 cgd * 3. All advertising materials mentioning features or use of this software
19 1.2 cgd * must display the following acknowledgement:
20 1.11 cgd * This product includes software developed by the University of
21 1.11 cgd * California, Berkeley and its contributors.
22 1.2 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.2 cgd * may be used to endorse or promote products derived from this software
24 1.2 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.2 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.2 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.2 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.2 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.2 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.2 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.2 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.2 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.2 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.2 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.2 cgd * SUCH DAMAGE.
37 1.1 cgd *
38 1.32 fvdl * @(#)kernfs_vfsops.c 8.10 (Berkeley) 5/14/95
39 1.1 cgd */
40 1.1 cgd
41 1.1 cgd /*
42 1.1 cgd * Kernel params Filesystem
43 1.1 cgd */
44 1.42 lukem
45 1.42 lukem #include <sys/cdefs.h>
46 1.51 thorpej __KERNEL_RCSID(0, "$NetBSD: kernfs_vfsops.c,v 1.51 2003/06/29 18:43:32 thorpej Exp $");
47 1.33 jonathan
48 1.40 mrg #if defined(_KERNEL_OPT)
49 1.33 jonathan #include "opt_compat_netbsd.h"
50 1.33 jonathan #endif
51 1.1 cgd
52 1.9 mycroft #include <sys/param.h>
53 1.9 mycroft #include <sys/systm.h>
54 1.15 mycroft #include <sys/conf.h>
55 1.9 mycroft #include <sys/proc.h>
56 1.9 mycroft #include <sys/vnode.h>
57 1.9 mycroft #include <sys/mount.h>
58 1.9 mycroft #include <sys/namei.h>
59 1.9 mycroft #include <sys/malloc.h>
60 1.15 mycroft
61 1.15 mycroft #include <miscfs/specfs/specdev.h>
62 1.9 mycroft #include <miscfs/kernfs/kernfs.h>
63 1.1 cgd
64 1.47 thorpej MALLOC_DEFINE(M_KERNFSMNT, "kernfs mount", "kernfs mount structures");
65 1.47 thorpej
66 1.15 mycroft dev_t rrootdev = NODEV;
67 1.15 mycroft
68 1.25 christos void kernfs_init __P((void));
69 1.36 jdolecek void kernfs_done __P((void));
70 1.25 christos void kernfs_get_rrootdev __P((void));
71 1.29 cgd int kernfs_mount __P((struct mount *, const char *, void *,
72 1.50 darrenr struct nameidata *, struct lwp *));
73 1.50 darrenr int kernfs_start __P((struct mount *, int, struct lwp *));
74 1.50 darrenr int kernfs_unmount __P((struct mount *, int, struct lwp *));
75 1.51 thorpej int kernfs_root __P((struct mount *, struct vnode **));
76 1.50 darrenr int kernfs_statfs __P((struct mount *, struct statfs *, struct lwp *));
77 1.25 christos int kernfs_quotactl __P((struct mount *, int, uid_t, caddr_t,
78 1.50 darrenr struct lwp *));
79 1.50 darrenr int kernfs_sync __P((struct mount *, int, struct ucred *, struct lwp *));
80 1.51 thorpej int kernfs_vget __P((struct mount *, ino_t, struct vnode **));
81 1.51 thorpej int kernfs_fhtovp __P((struct mount *, struct fid *, struct vnode **));
82 1.35 wrstuden int kernfs_checkexp __P((struct mount *, struct mbuf *, int *,
83 1.35 wrstuden struct ucred **));
84 1.25 christos int kernfs_vptofh __P((struct vnode *, struct fid *));
85 1.32 fvdl int kernfs_sysctl __P((int *, u_int, void *, size_t *, void *, size_t,
86 1.50 darrenr struct lwp *));
87 1.25 christos
88 1.25 christos void
89 1.1 cgd kernfs_init()
90 1.1 cgd {
91 1.49 christos #ifdef _LKM
92 1.49 christos malloc_type_attach(M_KERNFSMNT);
93 1.49 christos #endif
94 1.10 cgd }
95 1.10 cgd
96 1.11 cgd void
97 1.36 jdolecek kernfs_done()
98 1.36 jdolecek {
99 1.49 christos #ifdef _LKM
100 1.49 christos malloc_type_detach(M_KERNFSMNT);
101 1.49 christos #endif
102 1.36 jdolecek }
103 1.36 jdolecek
104 1.36 jdolecek void
105 1.15 mycroft kernfs_get_rrootdev()
106 1.10 cgd {
107 1.16 mycroft static int tried = 0;
108 1.10 cgd
109 1.16 mycroft if (tried) {
110 1.15 mycroft /* Already did it once. */
111 1.15 mycroft return;
112 1.15 mycroft }
113 1.16 mycroft tried = 1;
114 1.16 mycroft
115 1.16 mycroft if (rootdev == NODEV)
116 1.16 mycroft return;
117 1.45 gehenna rrootdev = devsw_blk2chr(rootdev);
118 1.45 gehenna if (rrootdev != NODEV) {
119 1.39 mrg #ifdef KERNFS_DIAGNOSTIC
120 1.39 mrg printf("kernfs_mount: rootdev = %u.%u; rrootdev = %u.%u\n",
121 1.39 mrg major(rootdev), minor(rootdev), major(rrootdev), minor(rrootdev));
122 1.39 mrg #endif
123 1.45 gehenna return;
124 1.10 cgd }
125 1.16 mycroft rrootdev = NODEV;
126 1.28 christos printf("kernfs_get_rrootdev: no raw root device\n");
127 1.1 cgd }
128 1.1 cgd
129 1.1 cgd /*
130 1.15 mycroft * Mount the Kernel params filesystem
131 1.1 cgd */
132 1.25 christos int
133 1.50 darrenr kernfs_mount(mp, path, data, ndp, l)
134 1.1 cgd struct mount *mp;
135 1.29 cgd const char *path;
136 1.29 cgd void *data;
137 1.1 cgd struct nameidata *ndp;
138 1.50 darrenr struct lwp *l;
139 1.1 cgd {
140 1.1 cgd int error = 0;
141 1.1 cgd struct kernfs_mount *fmp;
142 1.1 cgd struct vnode *rvp;
143 1.1 cgd
144 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
145 1.30 christos printf("kernfs_mount(mp = %p)\n", mp);
146 1.1 cgd #endif
147 1.1 cgd
148 1.46 christos if (mp->mnt_flag & MNT_GETARGS)
149 1.46 christos return 0;
150 1.1 cgd /*
151 1.1 cgd * Update is a no-op
152 1.1 cgd */
153 1.1 cgd if (mp->mnt_flag & MNT_UPDATE)
154 1.1 cgd return (EOPNOTSUPP);
155 1.1 cgd
156 1.25 christos error = getnewvnode(VT_KERNFS, mp, kernfs_vnodeop_p, &rvp);
157 1.25 christos if (error)
158 1.1 cgd return (error);
159 1.1 cgd
160 1.15 mycroft MALLOC(fmp, struct kernfs_mount *, sizeof(struct kernfs_mount),
161 1.47 thorpej M_KERNFSMNT, M_WAITOK);
162 1.1 cgd rvp->v_type = VDIR;
163 1.1 cgd rvp->v_flag |= VROOT;
164 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
165 1.30 christos printf("kernfs_mount: root vp = %p\n", rvp);
166 1.1 cgd #endif
167 1.1 cgd fmp->kf_root = rvp;
168 1.1 cgd mp->mnt_flag |= MNT_LOCAL;
169 1.44 soren mp->mnt_data = fmp;
170 1.37 assar vfs_getnewfsid(mp);
171 1.1 cgd
172 1.48 christos error = set_statfs_info(path, UIO_USERSPACE, "kernfs", UIO_SYSSPACE,
173 1.50 darrenr mp, l);
174 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
175 1.28 christos printf("kernfs_mount: at %s\n", mp->mnt_stat.f_mntonname);
176 1.1 cgd #endif
177 1.10 cgd
178 1.15 mycroft kernfs_get_rrootdev();
179 1.48 christos return error;
180 1.1 cgd }
181 1.1 cgd
182 1.25 christos int
183 1.50 darrenr kernfs_start(mp, flags, l)
184 1.1 cgd struct mount *mp;
185 1.1 cgd int flags;
186 1.50 darrenr struct lwp *l;
187 1.1 cgd {
188 1.15 mycroft
189 1.1 cgd return (0);
190 1.1 cgd }
191 1.1 cgd
192 1.25 christos int
193 1.50 darrenr kernfs_unmount(mp, mntflags, l)
194 1.1 cgd struct mount *mp;
195 1.1 cgd int mntflags;
196 1.50 darrenr struct lwp *l;
197 1.1 cgd {
198 1.1 cgd int error;
199 1.1 cgd int flags = 0;
200 1.1 cgd struct vnode *rootvp = VFSTOKERNFS(mp)->kf_root;
201 1.1 cgd
202 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
203 1.30 christos printf("kernfs_unmount(mp = %p)\n", mp);
204 1.1 cgd #endif
205 1.1 cgd
206 1.32 fvdl if (mntflags & MNT_FORCE)
207 1.1 cgd flags |= FORCECLOSE;
208 1.1 cgd
209 1.1 cgd /*
210 1.1 cgd * Clear out buffer cache. I don't think we
211 1.1 cgd * ever get anything cached at this level at the
212 1.1 cgd * moment, but who knows...
213 1.1 cgd */
214 1.1 cgd if (rootvp->v_usecount > 1)
215 1.1 cgd return (EBUSY);
216 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
217 1.28 christos printf("kernfs_unmount: calling vflush\n");
218 1.1 cgd #endif
219 1.25 christos if ((error = vflush(mp, rootvp, flags)) != 0)
220 1.1 cgd return (error);
221 1.1 cgd
222 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
223 1.1 cgd vprint("kernfs root", rootvp);
224 1.15 mycroft #endif
225 1.1 cgd /*
226 1.15 mycroft * Clean out the old root vnode for reuse.
227 1.1 cgd */
228 1.1 cgd vrele(rootvp);
229 1.1 cgd vgone(rootvp);
230 1.1 cgd /*
231 1.1 cgd * Finally, throw away the kernfs_mount structure
232 1.1 cgd */
233 1.47 thorpej free(mp->mnt_data, M_KERNFSMNT);
234 1.1 cgd mp->mnt_data = 0;
235 1.15 mycroft return (0);
236 1.1 cgd }
237 1.1 cgd
238 1.25 christos int
239 1.51 thorpej kernfs_root(mp, vpp)
240 1.1 cgd struct mount *mp;
241 1.1 cgd struct vnode **vpp;
242 1.1 cgd {
243 1.1 cgd struct vnode *vp;
244 1.1 cgd
245 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
246 1.30 christos printf("kernfs_root(mp = %p)\n", mp);
247 1.1 cgd #endif
248 1.1 cgd
249 1.1 cgd /*
250 1.1 cgd * Return locked reference to root.
251 1.1 cgd */
252 1.1 cgd vp = VFSTOKERNFS(mp)->kf_root;
253 1.1 cgd VREF(vp);
254 1.32 fvdl vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
255 1.1 cgd *vpp = vp;
256 1.1 cgd return (0);
257 1.1 cgd }
258 1.1 cgd
259 1.25 christos int
260 1.50 darrenr kernfs_quotactl(mp, cmd, uid, arg, l)
261 1.1 cgd struct mount *mp;
262 1.1 cgd int cmd;
263 1.1 cgd uid_t uid;
264 1.1 cgd caddr_t arg;
265 1.50 darrenr struct lwp *l;
266 1.1 cgd {
267 1.15 mycroft
268 1.1 cgd return (EOPNOTSUPP);
269 1.1 cgd }
270 1.1 cgd
271 1.25 christos int
272 1.50 darrenr kernfs_statfs(mp, sbp, l)
273 1.1 cgd struct mount *mp;
274 1.1 cgd struct statfs *sbp;
275 1.50 darrenr struct lwp *l;
276 1.1 cgd {
277 1.1 cgd
278 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
279 1.30 christos printf("kernfs_statfs(mp = %p)\n", mp);
280 1.1 cgd #endif
281 1.1 cgd
282 1.1 cgd sbp->f_bsize = DEV_BSIZE;
283 1.13 cgd sbp->f_iosize = DEV_BSIZE;
284 1.1 cgd sbp->f_blocks = 2; /* 1K to keep df happy */
285 1.1 cgd sbp->f_bfree = 0;
286 1.1 cgd sbp->f_bavail = 0;
287 1.15 mycroft sbp->f_files = 0;
288 1.15 mycroft sbp->f_ffree = 0;
289 1.32 fvdl #ifdef COMPAT_09
290 1.32 fvdl sbp->f_type = 7;
291 1.32 fvdl #else
292 1.32 fvdl sbp->f_type = 0;
293 1.32 fvdl #endif
294 1.48 christos copy_statfs_info(sbp, mp);
295 1.1 cgd return (0);
296 1.1 cgd }
297 1.1 cgd
298 1.25 christos /*ARGSUSED*/
299 1.25 christos int
300 1.50 darrenr kernfs_sync(mp, waitfor, uc, l)
301 1.1 cgd struct mount *mp;
302 1.1 cgd int waitfor;
303 1.25 christos struct ucred *uc;
304 1.50 darrenr struct lwp *l;
305 1.1 cgd {
306 1.15 mycroft
307 1.1 cgd return (0);
308 1.1 cgd }
309 1.1 cgd
310 1.15 mycroft /*
311 1.15 mycroft * Kernfs flat namespace lookup.
312 1.15 mycroft * Currently unsupported.
313 1.15 mycroft */
314 1.25 christos int
315 1.51 thorpej kernfs_vget(mp, ino, vpp)
316 1.15 mycroft struct mount *mp;
317 1.15 mycroft ino_t ino;
318 1.15 mycroft struct vnode **vpp;
319 1.15 mycroft {
320 1.15 mycroft
321 1.15 mycroft return (EOPNOTSUPP);
322 1.15 mycroft }
323 1.15 mycroft
324 1.25 christos /*ARGSUSED*/
325 1.25 christos int
326 1.51 thorpej kernfs_fhtovp(mp, fhp, vpp)
327 1.1 cgd struct mount *mp;
328 1.1 cgd struct fid *fhp;
329 1.35 wrstuden struct vnode **vpp;
330 1.35 wrstuden {
331 1.35 wrstuden
332 1.35 wrstuden return (EOPNOTSUPP);
333 1.35 wrstuden }
334 1.35 wrstuden
335 1.35 wrstuden /*ARGSUSED*/
336 1.35 wrstuden int
337 1.35 wrstuden kernfs_checkexp(mp, mb, what, anon)
338 1.35 wrstuden struct mount *mp;
339 1.25 christos struct mbuf *mb;
340 1.25 christos int *what;
341 1.25 christos struct ucred **anon;
342 1.1 cgd {
343 1.15 mycroft
344 1.1 cgd return (EOPNOTSUPP);
345 1.1 cgd }
346 1.1 cgd
347 1.25 christos /*ARGSUSED*/
348 1.25 christos int
349 1.1 cgd kernfs_vptofh(vp, fhp)
350 1.1 cgd struct vnode *vp;
351 1.1 cgd struct fid *fhp;
352 1.1 cgd {
353 1.15 mycroft
354 1.1 cgd return (EOPNOTSUPP);
355 1.1 cgd }
356 1.1 cgd
357 1.32 fvdl int
358 1.50 darrenr kernfs_sysctl(name, namelen, oldp, oldlenp, newp, newlen, l)
359 1.32 fvdl int *name;
360 1.32 fvdl u_int namelen;
361 1.32 fvdl void *oldp;
362 1.32 fvdl size_t *oldlenp;
363 1.32 fvdl void *newp;
364 1.32 fvdl size_t newlen;
365 1.50 darrenr struct lwp *l;
366 1.32 fvdl {
367 1.32 fvdl return (EOPNOTSUPP);
368 1.32 fvdl }
369 1.32 fvdl
370 1.38 jdolecek extern const struct vnodeopv_desc kernfs_vnodeop_opv_desc;
371 1.31 thorpej
372 1.38 jdolecek const struct vnodeopv_desc * const kernfs_vnodeopv_descs[] = {
373 1.31 thorpej &kernfs_vnodeop_opv_desc,
374 1.31 thorpej NULL,
375 1.31 thorpej };
376 1.31 thorpej
377 1.1 cgd struct vfsops kernfs_vfsops = {
378 1.12 cgd MOUNT_KERNFS,
379 1.1 cgd kernfs_mount,
380 1.1 cgd kernfs_start,
381 1.1 cgd kernfs_unmount,
382 1.1 cgd kernfs_root,
383 1.1 cgd kernfs_quotactl,
384 1.1 cgd kernfs_statfs,
385 1.1 cgd kernfs_sync,
386 1.15 mycroft kernfs_vget,
387 1.1 cgd kernfs_fhtovp,
388 1.1 cgd kernfs_vptofh,
389 1.1 cgd kernfs_init,
390 1.41 chs NULL,
391 1.36 jdolecek kernfs_done,
392 1.32 fvdl kernfs_sysctl,
393 1.31 thorpej NULL, /* vfs_mountroot */
394 1.35 wrstuden kernfs_checkexp,
395 1.31 thorpej kernfs_vnodeopv_descs,
396 1.1 cgd };
397