kernfs_vfsops.c revision 1.40 1 1.40 mrg /* $NetBSD: kernfs_vfsops.c,v 1.40 2001/05/30 11:57:17 mrg 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.33 jonathan
45 1.40 mrg #if defined(_KERNEL_OPT)
46 1.33 jonathan #include "opt_compat_netbsd.h"
47 1.33 jonathan #endif
48 1.1 cgd
49 1.9 mycroft #include <sys/param.h>
50 1.9 mycroft #include <sys/systm.h>
51 1.15 mycroft #include <sys/conf.h>
52 1.9 mycroft #include <sys/types.h>
53 1.9 mycroft #include <sys/proc.h>
54 1.9 mycroft #include <sys/vnode.h>
55 1.9 mycroft #include <sys/mount.h>
56 1.9 mycroft #include <sys/namei.h>
57 1.9 mycroft #include <sys/malloc.h>
58 1.15 mycroft
59 1.15 mycroft #include <miscfs/specfs/specdev.h>
60 1.9 mycroft #include <miscfs/kernfs/kernfs.h>
61 1.1 cgd
62 1.15 mycroft dev_t rrootdev = NODEV;
63 1.15 mycroft
64 1.25 christos void kernfs_init __P((void));
65 1.36 jdolecek void kernfs_done __P((void));
66 1.25 christos void kernfs_get_rrootdev __P((void));
67 1.29 cgd int kernfs_mount __P((struct mount *, const char *, void *,
68 1.29 cgd struct nameidata *, struct proc *));
69 1.25 christos int kernfs_start __P((struct mount *, int, struct proc *));
70 1.25 christos int kernfs_unmount __P((struct mount *, int, struct proc *));
71 1.25 christos int kernfs_root __P((struct mount *, struct vnode **));
72 1.25 christos int kernfs_statfs __P((struct mount *, struct statfs *, struct proc *));
73 1.25 christos int kernfs_quotactl __P((struct mount *, int, uid_t, caddr_t,
74 1.25 christos struct proc *));
75 1.25 christos int kernfs_sync __P((struct mount *, int, struct ucred *, struct proc *));
76 1.25 christos int kernfs_vget __P((struct mount *, ino_t, struct vnode **));
77 1.35 wrstuden int kernfs_fhtovp __P((struct mount *, struct fid *, struct vnode **));
78 1.35 wrstuden int kernfs_checkexp __P((struct mount *, struct mbuf *, int *,
79 1.35 wrstuden struct ucred **));
80 1.25 christos int kernfs_vptofh __P((struct vnode *, struct fid *));
81 1.32 fvdl int kernfs_sysctl __P((int *, u_int, void *, size_t *, void *, size_t,
82 1.32 fvdl struct proc *));
83 1.25 christos
84 1.25 christos void
85 1.1 cgd kernfs_init()
86 1.1 cgd {
87 1.10 cgd }
88 1.10 cgd
89 1.11 cgd void
90 1.36 jdolecek kernfs_done()
91 1.36 jdolecek {
92 1.36 jdolecek }
93 1.36 jdolecek
94 1.36 jdolecek void
95 1.15 mycroft kernfs_get_rrootdev()
96 1.10 cgd {
97 1.16 mycroft static int tried = 0;
98 1.16 mycroft int cmaj;
99 1.10 cgd
100 1.16 mycroft if (tried) {
101 1.15 mycroft /* Already did it once. */
102 1.15 mycroft return;
103 1.15 mycroft }
104 1.16 mycroft tried = 1;
105 1.16 mycroft
106 1.16 mycroft if (rootdev == NODEV)
107 1.16 mycroft return;
108 1.10 cgd for (cmaj = 0; cmaj < nchrdev; cmaj++) {
109 1.16 mycroft rrootdev = makedev(cmaj, minor(rootdev));
110 1.39 mrg if (chrtoblk(rrootdev) == rootdev) {
111 1.39 mrg #ifdef KERNFS_DIAGNOSTIC
112 1.39 mrg printf("kernfs_mount: rootdev = %u.%u; rrootdev = %u.%u\n",
113 1.39 mrg major(rootdev), minor(rootdev), major(rrootdev), minor(rrootdev));
114 1.39 mrg #endif
115 1.15 mycroft return;
116 1.39 mrg }
117 1.10 cgd }
118 1.16 mycroft rrootdev = NODEV;
119 1.28 christos printf("kernfs_get_rrootdev: no raw root device\n");
120 1.1 cgd }
121 1.1 cgd
122 1.1 cgd /*
123 1.15 mycroft * Mount the Kernel params filesystem
124 1.1 cgd */
125 1.25 christos int
126 1.1 cgd kernfs_mount(mp, path, data, ndp, p)
127 1.1 cgd struct mount *mp;
128 1.29 cgd const char *path;
129 1.29 cgd void *data;
130 1.1 cgd struct nameidata *ndp;
131 1.1 cgd struct proc *p;
132 1.1 cgd {
133 1.1 cgd int error = 0;
134 1.23 mycroft size_t size;
135 1.1 cgd struct kernfs_mount *fmp;
136 1.1 cgd struct vnode *rvp;
137 1.1 cgd
138 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
139 1.30 christos printf("kernfs_mount(mp = %p)\n", mp);
140 1.1 cgd #endif
141 1.1 cgd
142 1.1 cgd /*
143 1.1 cgd * Update is a no-op
144 1.1 cgd */
145 1.1 cgd if (mp->mnt_flag & MNT_UPDATE)
146 1.1 cgd return (EOPNOTSUPP);
147 1.1 cgd
148 1.25 christos error = getnewvnode(VT_KERNFS, mp, kernfs_vnodeop_p, &rvp);
149 1.25 christos if (error)
150 1.1 cgd return (error);
151 1.1 cgd
152 1.15 mycroft MALLOC(fmp, struct kernfs_mount *, sizeof(struct kernfs_mount),
153 1.15 mycroft M_MISCFSMNT, M_WAITOK);
154 1.1 cgd rvp->v_type = VDIR;
155 1.1 cgd rvp->v_flag |= VROOT;
156 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
157 1.30 christos printf("kernfs_mount: root vp = %p\n", rvp);
158 1.1 cgd #endif
159 1.1 cgd fmp->kf_root = rvp;
160 1.1 cgd mp->mnt_flag |= MNT_LOCAL;
161 1.15 mycroft mp->mnt_data = (qaddr_t)fmp;
162 1.37 assar vfs_getnewfsid(mp);
163 1.1 cgd
164 1.1 cgd (void) copyinstr(path, mp->mnt_stat.f_mntonname, MNAMELEN - 1, &size);
165 1.34 perry memset(mp->mnt_stat.f_mntonname + size, 0, MNAMELEN - size);
166 1.34 perry memset(mp->mnt_stat.f_mntfromname, 0, MNAMELEN);
167 1.34 perry memcpy(mp->mnt_stat.f_mntfromname, "kernfs", sizeof("kernfs"));
168 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
169 1.28 christos printf("kernfs_mount: at %s\n", mp->mnt_stat.f_mntonname);
170 1.1 cgd #endif
171 1.10 cgd
172 1.15 mycroft kernfs_get_rrootdev();
173 1.1 cgd return (0);
174 1.1 cgd }
175 1.1 cgd
176 1.25 christos int
177 1.1 cgd kernfs_start(mp, flags, p)
178 1.1 cgd struct mount *mp;
179 1.1 cgd int flags;
180 1.1 cgd struct proc *p;
181 1.1 cgd {
182 1.15 mycroft
183 1.1 cgd return (0);
184 1.1 cgd }
185 1.1 cgd
186 1.25 christos int
187 1.1 cgd kernfs_unmount(mp, mntflags, p)
188 1.1 cgd struct mount *mp;
189 1.1 cgd int mntflags;
190 1.1 cgd struct proc *p;
191 1.1 cgd {
192 1.1 cgd int error;
193 1.1 cgd int flags = 0;
194 1.1 cgd struct vnode *rootvp = VFSTOKERNFS(mp)->kf_root;
195 1.1 cgd
196 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
197 1.30 christos printf("kernfs_unmount(mp = %p)\n", mp);
198 1.1 cgd #endif
199 1.1 cgd
200 1.32 fvdl if (mntflags & MNT_FORCE)
201 1.1 cgd flags |= FORCECLOSE;
202 1.1 cgd
203 1.1 cgd /*
204 1.1 cgd * Clear out buffer cache. I don't think we
205 1.1 cgd * ever get anything cached at this level at the
206 1.1 cgd * moment, but who knows...
207 1.1 cgd */
208 1.1 cgd if (rootvp->v_usecount > 1)
209 1.1 cgd return (EBUSY);
210 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
211 1.28 christos printf("kernfs_unmount: calling vflush\n");
212 1.1 cgd #endif
213 1.25 christos if ((error = vflush(mp, rootvp, flags)) != 0)
214 1.1 cgd return (error);
215 1.1 cgd
216 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
217 1.1 cgd vprint("kernfs root", rootvp);
218 1.15 mycroft #endif
219 1.1 cgd /*
220 1.15 mycroft * Clean out the old root vnode for reuse.
221 1.1 cgd */
222 1.1 cgd vrele(rootvp);
223 1.1 cgd vgone(rootvp);
224 1.1 cgd /*
225 1.1 cgd * Finally, throw away the kernfs_mount structure
226 1.1 cgd */
227 1.6 cgd free(mp->mnt_data, M_MISCFSMNT);
228 1.1 cgd mp->mnt_data = 0;
229 1.15 mycroft return (0);
230 1.1 cgd }
231 1.1 cgd
232 1.25 christos int
233 1.1 cgd kernfs_root(mp, vpp)
234 1.1 cgd struct mount *mp;
235 1.1 cgd struct vnode **vpp;
236 1.1 cgd {
237 1.1 cgd struct vnode *vp;
238 1.1 cgd
239 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
240 1.30 christos printf("kernfs_root(mp = %p)\n", mp);
241 1.1 cgd #endif
242 1.1 cgd
243 1.1 cgd /*
244 1.1 cgd * Return locked reference to root.
245 1.1 cgd */
246 1.1 cgd vp = VFSTOKERNFS(mp)->kf_root;
247 1.1 cgd VREF(vp);
248 1.32 fvdl vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
249 1.1 cgd *vpp = vp;
250 1.1 cgd return (0);
251 1.1 cgd }
252 1.1 cgd
253 1.25 christos int
254 1.1 cgd kernfs_quotactl(mp, cmd, uid, arg, p)
255 1.1 cgd struct mount *mp;
256 1.1 cgd int cmd;
257 1.1 cgd uid_t uid;
258 1.1 cgd caddr_t arg;
259 1.1 cgd struct proc *p;
260 1.1 cgd {
261 1.15 mycroft
262 1.1 cgd return (EOPNOTSUPP);
263 1.1 cgd }
264 1.1 cgd
265 1.25 christos int
266 1.1 cgd kernfs_statfs(mp, sbp, p)
267 1.1 cgd struct mount *mp;
268 1.1 cgd struct statfs *sbp;
269 1.1 cgd struct proc *p;
270 1.1 cgd {
271 1.1 cgd
272 1.1 cgd #ifdef KERNFS_DIAGNOSTIC
273 1.30 christos printf("kernfs_statfs(mp = %p)\n", mp);
274 1.1 cgd #endif
275 1.1 cgd
276 1.1 cgd sbp->f_bsize = DEV_BSIZE;
277 1.13 cgd sbp->f_iosize = DEV_BSIZE;
278 1.1 cgd sbp->f_blocks = 2; /* 1K to keep df happy */
279 1.1 cgd sbp->f_bfree = 0;
280 1.1 cgd sbp->f_bavail = 0;
281 1.15 mycroft sbp->f_files = 0;
282 1.15 mycroft sbp->f_ffree = 0;
283 1.32 fvdl #ifdef COMPAT_09
284 1.32 fvdl sbp->f_type = 7;
285 1.32 fvdl #else
286 1.32 fvdl sbp->f_type = 0;
287 1.32 fvdl #endif
288 1.1 cgd if (sbp != &mp->mnt_stat) {
289 1.34 perry memcpy(&sbp->f_fsid, &mp->mnt_stat.f_fsid, sizeof(sbp->f_fsid));
290 1.34 perry memcpy(sbp->f_mntonname, mp->mnt_stat.f_mntonname, MNAMELEN);
291 1.34 perry memcpy(sbp->f_mntfromname, mp->mnt_stat.f_mntfromname, MNAMELEN);
292 1.1 cgd }
293 1.21 mycroft strncpy(sbp->f_fstypename, mp->mnt_op->vfs_name, MFSNAMELEN);
294 1.1 cgd return (0);
295 1.1 cgd }
296 1.1 cgd
297 1.25 christos /*ARGSUSED*/
298 1.25 christos int
299 1.25 christos kernfs_sync(mp, waitfor, uc, p)
300 1.1 cgd struct mount *mp;
301 1.1 cgd int waitfor;
302 1.25 christos struct ucred *uc;
303 1.25 christos struct proc *p;
304 1.1 cgd {
305 1.15 mycroft
306 1.1 cgd return (0);
307 1.1 cgd }
308 1.1 cgd
309 1.15 mycroft /*
310 1.15 mycroft * Kernfs flat namespace lookup.
311 1.15 mycroft * Currently unsupported.
312 1.15 mycroft */
313 1.25 christos int
314 1.15 mycroft kernfs_vget(mp, ino, vpp)
315 1.15 mycroft struct mount *mp;
316 1.15 mycroft ino_t ino;
317 1.15 mycroft struct vnode **vpp;
318 1.15 mycroft {
319 1.15 mycroft
320 1.15 mycroft return (EOPNOTSUPP);
321 1.15 mycroft }
322 1.15 mycroft
323 1.25 christos /*ARGSUSED*/
324 1.25 christos int
325 1.35 wrstuden kernfs_fhtovp(mp, fhp, vpp)
326 1.1 cgd struct mount *mp;
327 1.1 cgd struct fid *fhp;
328 1.35 wrstuden struct vnode **vpp;
329 1.35 wrstuden {
330 1.35 wrstuden
331 1.35 wrstuden return (EOPNOTSUPP);
332 1.35 wrstuden }
333 1.35 wrstuden
334 1.35 wrstuden /*ARGSUSED*/
335 1.35 wrstuden int
336 1.35 wrstuden kernfs_checkexp(mp, mb, what, anon)
337 1.35 wrstuden struct mount *mp;
338 1.25 christos struct mbuf *mb;
339 1.25 christos int *what;
340 1.25 christos struct ucred **anon;
341 1.1 cgd {
342 1.15 mycroft
343 1.1 cgd return (EOPNOTSUPP);
344 1.1 cgd }
345 1.1 cgd
346 1.25 christos /*ARGSUSED*/
347 1.25 christos int
348 1.1 cgd kernfs_vptofh(vp, fhp)
349 1.1 cgd struct vnode *vp;
350 1.1 cgd struct fid *fhp;
351 1.1 cgd {
352 1.15 mycroft
353 1.1 cgd return (EOPNOTSUPP);
354 1.1 cgd }
355 1.1 cgd
356 1.32 fvdl int
357 1.32 fvdl kernfs_sysctl(name, namelen, oldp, oldlenp, newp, newlen, p)
358 1.32 fvdl int *name;
359 1.32 fvdl u_int namelen;
360 1.32 fvdl void *oldp;
361 1.32 fvdl size_t *oldlenp;
362 1.32 fvdl void *newp;
363 1.32 fvdl size_t newlen;
364 1.32 fvdl struct proc *p;
365 1.32 fvdl {
366 1.32 fvdl return (EOPNOTSUPP);
367 1.32 fvdl }
368 1.32 fvdl
369 1.38 jdolecek extern const struct vnodeopv_desc kernfs_vnodeop_opv_desc;
370 1.31 thorpej
371 1.38 jdolecek const struct vnodeopv_desc * const kernfs_vnodeopv_descs[] = {
372 1.31 thorpej &kernfs_vnodeop_opv_desc,
373 1.31 thorpej NULL,
374 1.31 thorpej };
375 1.31 thorpej
376 1.1 cgd struct vfsops kernfs_vfsops = {
377 1.12 cgd MOUNT_KERNFS,
378 1.1 cgd kernfs_mount,
379 1.1 cgd kernfs_start,
380 1.1 cgd kernfs_unmount,
381 1.1 cgd kernfs_root,
382 1.1 cgd kernfs_quotactl,
383 1.1 cgd kernfs_statfs,
384 1.1 cgd kernfs_sync,
385 1.15 mycroft kernfs_vget,
386 1.1 cgd kernfs_fhtovp,
387 1.1 cgd kernfs_vptofh,
388 1.1 cgd kernfs_init,
389 1.36 jdolecek kernfs_done,
390 1.32 fvdl kernfs_sysctl,
391 1.31 thorpej NULL, /* vfs_mountroot */
392 1.35 wrstuden kernfs_checkexp,
393 1.31 thorpej kernfs_vnodeopv_descs,
394 1.1 cgd };
395