Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
/* $NetBSD: kernfs_vfsops.c,v 1.57 2003/12/04 19:38:24 atatat Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-24 02:56:50 +03:00
|
|
|
/*
|
1998-03-01 05:20:01 +03:00
|
|
|
* Copyright (c) 1992, 1993, 1995
|
1994-06-08 15:33:09 +04:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-24 02:56:50 +03:00
|
|
|
*
|
1994-01-05 14:04:54 +03:00
|
|
|
* This code is derived from software donated to Berkeley by
|
1993-03-24 02:56:50 +03:00
|
|
|
* Jan-Simon Pendry.
|
|
|
|
*
|
changed copyright notice thanks to following statement:
Return-Path: jsp@compnews.co.uk
Received: from ben.uknet.ac.uk by postgres.Berkeley.EDU (5.61/1.29)
id AA25983; Thu, 25 Mar 93 05:37:37 -0800
Received: from fennel.compnews.co.uk by ben.uknet.ac.uk via UKIP with SMTP (PP)
id <g.05640-0@ben.uknet.ac.uk>; Thu, 25 Mar 1993 13:37:19 +0000
Received: from sage.compnews.co.uk by fennel.compnews.co.uk;
Thu, 25 Mar 93 13:37:08 GMT
Message-Id: <28109.9303251337@sage.compnews.co.uk>
From: jsp@compnews.co.uk (Jan-Simon Pendry)
Date: Thu, 25 Mar 1993 13:37:05 +0100
In-Reply-To: cgd@postgres.berkeley.edu's message as of Mar 25, 5:32am.
Phone-Number-1: +44 430 432450
Phone-Number-2: +44 430 432480 x20
Fax-Number: +44 430 432022
X-Mailer: Mail User's Shell (7.2.5 10/14/92)
To: cgd@postgres.berkeley.edu
Subject: Re: fdesc/kernfs/etc code...
You may put this copyright message on the source code:
/*
* Copyright (c) 1990, 1992 Jan-Simon Pendry
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Jan-Simon Pendry.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
1993-03-25 09:00:17 +03:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
changed copyright notice thanks to following statement:
Return-Path: jsp@compnews.co.uk
Received: from ben.uknet.ac.uk by postgres.Berkeley.EDU (5.61/1.29)
id AA25983; Thu, 25 Mar 93 05:37:37 -0800
Received: from fennel.compnews.co.uk by ben.uknet.ac.uk via UKIP with SMTP (PP)
id <g.05640-0@ben.uknet.ac.uk>; Thu, 25 Mar 1993 13:37:19 +0000
Received: from sage.compnews.co.uk by fennel.compnews.co.uk;
Thu, 25 Mar 93 13:37:08 GMT
Message-Id: <28109.9303251337@sage.compnews.co.uk>
From: jsp@compnews.co.uk (Jan-Simon Pendry)
Date: Thu, 25 Mar 1993 13:37:05 +0100
In-Reply-To: cgd@postgres.berkeley.edu's message as of Mar 25, 5:32am.
Phone-Number-1: +44 430 432450
Phone-Number-2: +44 430 432480 x20
Fax-Number: +44 430 432022
X-Mailer: Mail User's Shell (7.2.5 10/14/92)
To: cgd@postgres.berkeley.edu
Subject: Re: fdesc/kernfs/etc code...
You may put this copyright message on the source code:
/*
* Copyright (c) 1990, 1992 Jan-Simon Pendry
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Jan-Simon Pendry.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
1993-03-25 09:00:17 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
1993-03-24 02:56:50 +03:00
|
|
|
*
|
changed copyright notice thanks to following statement:
Return-Path: jsp@compnews.co.uk
Received: from ben.uknet.ac.uk by postgres.Berkeley.EDU (5.61/1.29)
id AA25983; Thu, 25 Mar 93 05:37:37 -0800
Received: from fennel.compnews.co.uk by ben.uknet.ac.uk via UKIP with SMTP (PP)
id <g.05640-0@ben.uknet.ac.uk>; Thu, 25 Mar 1993 13:37:19 +0000
Received: from sage.compnews.co.uk by fennel.compnews.co.uk;
Thu, 25 Mar 93 13:37:08 GMT
Message-Id: <28109.9303251337@sage.compnews.co.uk>
From: jsp@compnews.co.uk (Jan-Simon Pendry)
Date: Thu, 25 Mar 1993 13:37:05 +0100
In-Reply-To: cgd@postgres.berkeley.edu's message as of Mar 25, 5:32am.
Phone-Number-1: +44 430 432450
Phone-Number-2: +44 430 432480 x20
Fax-Number: +44 430 432022
X-Mailer: Mail User's Shell (7.2.5 10/14/92)
To: cgd@postgres.berkeley.edu
Subject: Re: fdesc/kernfs/etc code...
You may put this copyright message on the source code:
/*
* Copyright (c) 1990, 1992 Jan-Simon Pendry
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Jan-Simon Pendry.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
1993-03-25 09:00:17 +03:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
1993-03-24 02:56:50 +03:00
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)kernfs_vfsops.c 8.10 (Berkeley) 5/14/95
|
1993-03-24 02:56:50 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Kernel params Filesystem
|
|
|
|
*/
|
|
|
|
|
2001-11-10 16:33:40 +03:00
|
|
|
#include <sys/cdefs.h>
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: kernfs_vfsops.c,v 1.57 2003/12/04 19:38:24 atatat Exp $");
|
2001-11-10 16:33:40 +03:00
|
|
|
|
2003-09-08 10:51:53 +04:00
|
|
|
#ifdef _KERNEL_OPT
|
1998-07-05 12:49:30 +04:00
|
|
|
#include "opt_compat_netbsd.h"
|
|
|
|
#endif
|
|
|
|
|
1993-12-18 06:48:27 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
#include <sys/sysctl.h>
|
1994-06-08 15:33:09 +04:00
|
|
|
#include <sys/conf.h>
|
1993-12-18 06:48:27 +03:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/malloc.h>
|
2003-09-08 10:51:53 +04:00
|
|
|
#include <sys/syslog.h>
|
1994-06-08 15:33:09 +04:00
|
|
|
|
|
|
|
#include <miscfs/specfs/specdev.h>
|
1993-12-18 06:48:27 +03:00
|
|
|
#include <miscfs/kernfs/kernfs.h>
|
1993-03-24 02:56:50 +03:00
|
|
|
|
2003-02-01 09:23:35 +03:00
|
|
|
MALLOC_DEFINE(M_KERNFSMNT, "kernfs mount", "kernfs mount structures");
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
dev_t rrootdev = NODEV;
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
void kernfs_init __P((void));
|
2003-09-08 10:51:53 +04:00
|
|
|
void kernfs_reinit __P((void));
|
2000-03-16 21:08:17 +03:00
|
|
|
void kernfs_done __P((void));
|
1996-02-10 01:39:56 +03:00
|
|
|
void kernfs_get_rrootdev __P((void));
|
1996-12-22 13:10:12 +03:00
|
|
|
int kernfs_mount __P((struct mount *, const char *, void *,
|
2003-06-30 02:28:00 +04:00
|
|
|
struct nameidata *, struct proc *));
|
|
|
|
int kernfs_start __P((struct mount *, int, struct proc *));
|
|
|
|
int kernfs_unmount __P((struct mount *, int, struct proc *));
|
|
|
|
int kernfs_statfs __P((struct mount *, struct statfs *, struct proc *));
|
1996-02-10 01:39:56 +03:00
|
|
|
int kernfs_quotactl __P((struct mount *, int, uid_t, caddr_t,
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *));
|
|
|
|
int kernfs_sync __P((struct mount *, int, struct ucred *, struct proc *));
|
2003-06-29 22:43:21 +04:00
|
|
|
int kernfs_vget __P((struct mount *, ino_t, struct vnode **));
|
|
|
|
int kernfs_fhtovp __P((struct mount *, struct fid *, struct vnode **));
|
1999-02-27 02:44:43 +03:00
|
|
|
int kernfs_checkexp __P((struct mount *, struct mbuf *, int *,
|
|
|
|
struct ucred **));
|
1996-02-10 01:39:56 +03:00
|
|
|
int kernfs_vptofh __P((struct vnode *, struct fid *));
|
|
|
|
|
|
|
|
void
|
1993-03-24 02:56:50 +03:00
|
|
|
kernfs_init()
|
|
|
|
{
|
2003-04-22 21:14:12 +04:00
|
|
|
#ifdef _LKM
|
|
|
|
malloc_type_attach(M_KERNFSMNT);
|
|
|
|
#endif
|
2003-09-08 10:51:53 +04:00
|
|
|
kernfs_hashinit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
kernfs_reinit()
|
|
|
|
{
|
|
|
|
kernfs_hashreinit();
|
1993-12-20 15:39:10 +03:00
|
|
|
}
|
|
|
|
|
2000-03-16 21:08:17 +03:00
|
|
|
void
|
|
|
|
kernfs_done()
|
|
|
|
{
|
2003-04-22 21:14:12 +04:00
|
|
|
#ifdef _LKM
|
|
|
|
malloc_type_detach(M_KERNFSMNT);
|
|
|
|
#endif
|
2003-09-08 10:51:53 +04:00
|
|
|
kernfs_hashdone();
|
2000-03-16 21:08:17 +03:00
|
|
|
}
|
|
|
|
|
1994-01-05 14:04:54 +03:00
|
|
|
void
|
1994-06-08 15:33:09 +04:00
|
|
|
kernfs_get_rrootdev()
|
1993-12-20 15:39:10 +03:00
|
|
|
{
|
1994-06-15 07:05:26 +04:00
|
|
|
static int tried = 0;
|
1993-12-20 15:39:10 +03:00
|
|
|
|
1994-06-15 07:05:26 +04:00
|
|
|
if (tried) {
|
1994-06-08 15:33:09 +04:00
|
|
|
/* Already did it once. */
|
|
|
|
return;
|
|
|
|
}
|
1994-06-15 07:05:26 +04:00
|
|
|
tried = 1;
|
|
|
|
|
|
|
|
if (rootdev == NODEV)
|
|
|
|
return;
|
2002-09-06 17:18:43 +04:00
|
|
|
rrootdev = devsw_blk2chr(rootdev);
|
2003-09-08 10:51:53 +04:00
|
|
|
if (rrootdev != NODEV)
|
2002-09-06 17:18:43 +04:00
|
|
|
return;
|
1994-06-15 07:05:26 +04:00
|
|
|
rrootdev = NODEV;
|
1996-10-13 06:21:25 +04:00
|
|
|
printf("kernfs_get_rrootdev: no raw root device\n");
|
1993-03-24 02:56:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-06-08 15:33:09 +04:00
|
|
|
* Mount the Kernel params filesystem
|
1993-03-24 02:56:50 +03:00
|
|
|
*/
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
kernfs_mount(mp, path, data, ndp, p)
|
1993-03-24 02:56:50 +03:00
|
|
|
struct mount *mp;
|
1996-12-22 13:10:12 +03:00
|
|
|
const char *path;
|
|
|
|
void *data;
|
1993-03-24 02:56:50 +03:00
|
|
|
struct nameidata *ndp;
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p;
|
1993-03-24 02:56:50 +03:00
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
struct kernfs_mount *fmp;
|
|
|
|
|
2003-09-08 10:51:53 +04:00
|
|
|
if (UIO_MX & (UIO_MX - 1)) {
|
|
|
|
log(LOG_ERR, "kernfs: invalid directory entry size");
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
1993-03-24 02:56:50 +03:00
|
|
|
|
2002-09-21 22:08:27 +04:00
|
|
|
if (mp->mnt_flag & MNT_GETARGS)
|
|
|
|
return 0;
|
1993-03-24 02:56:50 +03:00
|
|
|
/*
|
|
|
|
* Update is a no-op
|
|
|
|
*/
|
|
|
|
if (mp->mnt_flag & MNT_UPDATE)
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
MALLOC(fmp, struct kernfs_mount *, sizeof(struct kernfs_mount),
|
2003-02-01 09:23:35 +03:00
|
|
|
M_KERNFSMNT, M_WAITOK);
|
2003-09-08 10:51:53 +04:00
|
|
|
memset(fmp, 0, sizeof(*fmp));
|
|
|
|
TAILQ_INIT(&fmp->nodelist);
|
|
|
|
|
2002-07-30 11:40:07 +04:00
|
|
|
mp->mnt_data = fmp;
|
2003-09-08 10:51:53 +04:00
|
|
|
mp->mnt_flag |= MNT_LOCAL;
|
2000-06-10 22:27:01 +04:00
|
|
|
vfs_getnewfsid(mp);
|
1993-03-24 02:56:50 +03:00
|
|
|
|
2003-04-17 01:44:18 +04:00
|
|
|
error = set_statfs_info(path, UIO_USERSPACE, "kernfs", UIO_SYSSPACE,
|
2003-06-30 02:28:00 +04:00
|
|
|
mp, p);
|
1993-12-20 15:39:10 +03:00
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
kernfs_get_rrootdev();
|
2003-04-17 01:44:18 +04:00
|
|
|
return error;
|
1993-03-24 02:56:50 +03:00
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
kernfs_start(mp, flags, p)
|
1993-03-24 02:56:50 +03:00
|
|
|
struct mount *mp;
|
|
|
|
int flags;
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p;
|
1993-03-24 02:56:50 +03:00
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1993-03-24 02:56:50 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
kernfs_unmount(mp, mntflags, p)
|
1993-03-24 02:56:50 +03:00
|
|
|
struct mount *mp;
|
|
|
|
int mntflags;
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p;
|
1993-03-24 02:56:50 +03:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
int flags = 0;
|
|
|
|
|
2003-09-08 10:51:53 +04:00
|
|
|
if (mntflags & MNT_FORCE)
|
1993-03-24 02:56:50 +03:00
|
|
|
flags |= FORCECLOSE;
|
|
|
|
|
2003-09-08 10:51:53 +04:00
|
|
|
if ((error = vflush(mp, 0, flags)) != 0)
|
1993-03-24 02:56:50 +03:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Finally, throw away the kernfs_mount structure
|
|
|
|
*/
|
2003-02-01 09:23:35 +03:00
|
|
|
free(mp->mnt_data, M_KERNFSMNT);
|
1993-03-24 02:56:50 +03:00
|
|
|
mp->mnt_data = 0;
|
1994-06-08 15:33:09 +04:00
|
|
|
return (0);
|
1993-03-24 02:56:50 +03:00
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2003-06-29 22:43:21 +04:00
|
|
|
kernfs_root(mp, vpp)
|
1993-03-24 02:56:50 +03:00
|
|
|
struct mount *mp;
|
|
|
|
struct vnode **vpp;
|
|
|
|
{
|
|
|
|
|
2003-09-08 10:51:53 +04:00
|
|
|
/* setup "." */
|
2003-09-27 17:29:02 +04:00
|
|
|
return (kernfs_allocvp(mp, vpp, KFSkern, &kern_targets[0], 0));
|
1993-03-24 02:56:50 +03:00
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
kernfs_quotactl(mp, cmd, uid, arg, p)
|
1993-03-24 02:56:50 +03:00
|
|
|
struct mount *mp;
|
|
|
|
int cmd;
|
|
|
|
uid_t uid;
|
|
|
|
caddr_t arg;
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p;
|
1993-03-24 02:56:50 +03:00
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1993-03-24 02:56:50 +03:00
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
kernfs_statfs(mp, sbp, p)
|
1993-03-24 02:56:50 +03:00
|
|
|
struct mount *mp;
|
|
|
|
struct statfs *sbp;
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p;
|
1993-03-24 02:56:50 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
sbp->f_bsize = DEV_BSIZE;
|
1994-04-21 11:47:31 +04:00
|
|
|
sbp->f_iosize = DEV_BSIZE;
|
1993-03-24 02:56:50 +03:00
|
|
|
sbp->f_blocks = 2; /* 1K to keep df happy */
|
|
|
|
sbp->f_bfree = 0;
|
|
|
|
sbp->f_bavail = 0;
|
2003-09-08 10:51:53 +04:00
|
|
|
sbp->f_files = 1024; /* XXX lie */
|
|
|
|
sbp->f_ffree = 128; /* XXX lie */
|
1998-03-01 05:20:01 +03:00
|
|
|
#ifdef COMPAT_09
|
|
|
|
sbp->f_type = 7;
|
|
|
|
#else
|
|
|
|
sbp->f_type = 0;
|
|
|
|
#endif
|
2003-04-17 01:44:18 +04:00
|
|
|
copy_statfs_info(sbp, mp);
|
1993-03-24 02:56:50 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
/*ARGSUSED*/
|
|
|
|
int
|
2003-06-30 02:28:00 +04:00
|
|
|
kernfs_sync(mp, waitfor, uc, p)
|
1993-03-24 02:56:50 +03:00
|
|
|
struct mount *mp;
|
|
|
|
int waitfor;
|
1996-02-10 01:39:56 +03:00
|
|
|
struct ucred *uc;
|
2003-06-30 02:28:00 +04:00
|
|
|
struct proc *p;
|
1993-03-24 02:56:50 +03:00
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1993-03-24 02:56:50 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1994-06-08 15:33:09 +04:00
|
|
|
/*
|
|
|
|
* Kernfs flat namespace lookup.
|
|
|
|
* Currently unsupported.
|
|
|
|
*/
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2003-06-29 22:43:21 +04:00
|
|
|
kernfs_vget(mp, ino, vpp)
|
1994-06-08 15:33:09 +04:00
|
|
|
struct mount *mp;
|
|
|
|
ino_t ino;
|
|
|
|
struct vnode **vpp;
|
|
|
|
{
|
|
|
|
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
/*ARGSUSED*/
|
|
|
|
int
|
2003-06-29 22:43:21 +04:00
|
|
|
kernfs_fhtovp(mp, fhp, vpp)
|
1993-03-24 02:56:50 +03:00
|
|
|
struct mount *mp;
|
|
|
|
struct fid *fhp;
|
|
|
|
struct vnode **vpp;
|
1999-02-27 02:44:43 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
int
|
|
|
|
kernfs_checkexp(mp, mb, what, anon)
|
|
|
|
struct mount *mp;
|
|
|
|
struct mbuf *mb;
|
1996-02-10 01:39:56 +03:00
|
|
|
int *what;
|
|
|
|
struct ucred **anon;
|
1993-03-24 02:56:50 +03:00
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1993-03-24 02:56:50 +03:00
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
/*ARGSUSED*/
|
|
|
|
int
|
1993-03-24 02:56:50 +03:00
|
|
|
kernfs_vptofh(vp, fhp)
|
|
|
|
struct vnode *vp;
|
|
|
|
struct fid *fhp;
|
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
|
1993-03-24 02:56:50 +03:00
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
SYSCTL_SETUP(sysctl_vfs_kern_setup, "sysctl vfs.kern subtree setup")
|
1998-03-01 05:20:01 +03:00
|
|
|
{
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
|
|
|
|
sysctl_createv(SYSCTL_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "vfs", NULL,
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_VFS, CTL_EOL);
|
|
|
|
sysctl_createv(SYSCTL_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "kernfs", NULL,
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_VFS, 11, CTL_EOL);
|
|
|
|
/*
|
|
|
|
* XXX the "11" above could be dynamic, thereby eliminating one
|
|
|
|
* more instance of the "number to vfs" mapping problem, but
|
|
|
|
* "11" is the order as taken from sys/mount.h
|
|
|
|
*/
|
1998-03-01 05:20:01 +03:00
|
|
|
}
|
|
|
|
|
2001-01-22 15:17:35 +03:00
|
|
|
extern const struct vnodeopv_desc kernfs_vnodeop_opv_desc;
|
1998-02-18 10:05:47 +03:00
|
|
|
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc * const kernfs_vnodeopv_descs[] = {
|
1998-02-18 10:05:47 +03:00
|
|
|
&kernfs_vnodeop_opv_desc,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
1993-03-24 02:56:50 +03:00
|
|
|
struct vfsops kernfs_vfsops = {
|
1994-04-14 08:05:45 +04:00
|
|
|
MOUNT_KERNFS,
|
1993-03-24 02:56:50 +03:00
|
|
|
kernfs_mount,
|
|
|
|
kernfs_start,
|
|
|
|
kernfs_unmount,
|
|
|
|
kernfs_root,
|
|
|
|
kernfs_quotactl,
|
|
|
|
kernfs_statfs,
|
|
|
|
kernfs_sync,
|
1994-06-08 15:33:09 +04:00
|
|
|
kernfs_vget,
|
1993-03-24 02:56:50 +03:00
|
|
|
kernfs_fhtovp,
|
|
|
|
kernfs_vptofh,
|
|
|
|
kernfs_init,
|
2003-09-08 10:51:53 +04:00
|
|
|
kernfs_reinit,
|
2000-03-16 21:08:17 +03:00
|
|
|
kernfs_done,
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
NULL,
|
1998-02-18 10:05:47 +03:00
|
|
|
NULL, /* vfs_mountroot */
|
1999-02-27 02:44:43 +03:00
|
|
|
kernfs_checkexp,
|
1998-02-18 10:05:47 +03:00
|
|
|
kernfs_vnodeopv_descs,
|
1993-03-24 02:56:50 +03:00
|
|
|
};
|