Home | History | Annotate | Line # | Download | only in kernfs
kernfs_vfsops.c revision 1.70.10.1
      1  1.70.10.1      elad /*	$NetBSD: kernfs_vfsops.c,v 1.70.10.1 2006/03/08 01:34:34 elad 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.53       agc  * 3. Neither the name of the University nor the names of its contributors
     19        1.2       cgd  *    may be used to endorse or promote products derived from this software
     20        1.2       cgd  *    without specific prior written permission.
     21        1.1       cgd  *
     22        1.2       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23        1.2       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24        1.2       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25        1.2       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26        1.2       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27        1.2       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28        1.2       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29        1.2       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30        1.2       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31        1.2       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32        1.2       cgd  * SUCH DAMAGE.
     33        1.1       cgd  *
     34       1.32      fvdl  *	@(#)kernfs_vfsops.c	8.10 (Berkeley) 5/14/95
     35        1.1       cgd  */
     36        1.1       cgd 
     37        1.1       cgd /*
     38        1.1       cgd  * Kernel params Filesystem
     39        1.1       cgd  */
     40       1.42     lukem 
     41       1.42     lukem #include <sys/cdefs.h>
     42  1.70.10.1      elad __KERNEL_RCSID(0, "$NetBSD: kernfs_vfsops.c,v 1.70.10.1 2006/03/08 01:34:34 elad Exp $");
     43       1.33  jonathan 
     44       1.54    itojun #ifdef _KERNEL_OPT
     45       1.33  jonathan #include "opt_compat_netbsd.h"
     46       1.33  jonathan #endif
     47        1.1       cgd 
     48        1.9   mycroft #include <sys/param.h>
     49        1.9   mycroft #include <sys/systm.h>
     50       1.57    atatat #include <sys/sysctl.h>
     51       1.15   mycroft #include <sys/conf.h>
     52        1.9   mycroft #include <sys/proc.h>
     53        1.9   mycroft #include <sys/vnode.h>
     54        1.9   mycroft #include <sys/mount.h>
     55        1.9   mycroft #include <sys/namei.h>
     56       1.60  christos #include <sys/dirent.h>
     57        1.9   mycroft #include <sys/malloc.h>
     58       1.54    itojun #include <sys/syslog.h>
     59       1.15   mycroft 
     60       1.15   mycroft #include <miscfs/specfs/specdev.h>
     61        1.9   mycroft #include <miscfs/kernfs/kernfs.h>
     62        1.1       cgd 
     63       1.47   thorpej MALLOC_DEFINE(M_KERNFSMNT, "kernfs mount", "kernfs mount structures");
     64       1.47   thorpej 
     65       1.15   mycroft dev_t rrootdev = NODEV;
     66       1.15   mycroft 
     67       1.68   xtraeme void	kernfs_init(void);
     68       1.68   xtraeme void	kernfs_reinit(void);
     69       1.68   xtraeme void	kernfs_done(void);
     70       1.68   xtraeme void	kernfs_get_rrootdev(void);
     71       1.68   xtraeme int	kernfs_mount(struct mount *, const char *, void *,
     72       1.70  christos 	    struct nameidata *, struct lwp *);
     73       1.70  christos int	kernfs_start(struct mount *, int, struct lwp *);
     74       1.70  christos int	kernfs_unmount(struct mount *, int, struct lwp *);
     75       1.70  christos int	kernfs_statvfs(struct mount *, struct statvfs *, struct lwp *);
     76       1.68   xtraeme int	kernfs_quotactl(struct mount *, int, uid_t, void *,
     77       1.70  christos 			     struct lwp *);
     78  1.70.10.1      elad int	kernfs_sync(struct mount *, int, kauth_cred_t, struct lwp *);
     79       1.68   xtraeme int	kernfs_vget(struct mount *, ino_t, struct vnode **);
     80       1.25  christos 
     81       1.25  christos void
     82        1.1       cgd kernfs_init()
     83        1.1       cgd {
     84       1.49  christos #ifdef _LKM
     85       1.49  christos 	malloc_type_attach(M_KERNFSMNT);
     86       1.49  christos #endif
     87       1.54    itojun 	kernfs_hashinit();
     88       1.54    itojun }
     89       1.54    itojun 
     90       1.54    itojun void
     91       1.54    itojun kernfs_reinit()
     92       1.54    itojun {
     93       1.54    itojun 	kernfs_hashreinit();
     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.54    itojun 	kernfs_hashdone();
    103       1.36  jdolecek }
    104       1.36  jdolecek 
    105       1.36  jdolecek void
    106       1.15   mycroft kernfs_get_rrootdev()
    107       1.10       cgd {
    108       1.16   mycroft 	static int tried = 0;
    109       1.10       cgd 
    110       1.16   mycroft 	if (tried) {
    111       1.15   mycroft 		/* Already did it once. */
    112       1.15   mycroft 		return;
    113       1.15   mycroft 	}
    114       1.16   mycroft 	tried = 1;
    115       1.16   mycroft 
    116       1.16   mycroft 	if (rootdev == NODEV)
    117       1.16   mycroft 		return;
    118       1.45   gehenna 	rrootdev = devsw_blk2chr(rootdev);
    119       1.54    itojun 	if (rrootdev != NODEV)
    120       1.45   gehenna 		return;
    121       1.16   mycroft 	rrootdev = NODEV;
    122       1.28  christos 	printf("kernfs_get_rrootdev: no raw root device\n");
    123        1.1       cgd }
    124        1.1       cgd 
    125        1.1       cgd /*
    126       1.15   mycroft  * Mount the Kernel params filesystem
    127        1.1       cgd  */
    128       1.25  christos int
    129       1.70  christos kernfs_mount(mp, path, data, ndp, l)
    130        1.1       cgd 	struct mount *mp;
    131       1.29       cgd 	const char *path;
    132       1.29       cgd 	void *data;
    133        1.1       cgd 	struct nameidata *ndp;
    134       1.70  christos 	struct lwp *l;
    135        1.1       cgd {
    136        1.1       cgd 	int error = 0;
    137        1.1       cgd 	struct kernfs_mount *fmp;
    138        1.1       cgd 
    139       1.54    itojun 	if (UIO_MX & (UIO_MX - 1)) {
    140       1.54    itojun 		log(LOG_ERR, "kernfs: invalid directory entry size");
    141       1.54    itojun 		return (EINVAL);
    142       1.54    itojun 	}
    143        1.1       cgd 
    144       1.46  christos 	if (mp->mnt_flag & MNT_GETARGS)
    145       1.46  christos 		return 0;
    146        1.1       cgd 	/*
    147        1.1       cgd 	 * Update is a no-op
    148        1.1       cgd 	 */
    149        1.1       cgd 	if (mp->mnt_flag & MNT_UPDATE)
    150        1.1       cgd 		return (EOPNOTSUPP);
    151        1.1       cgd 
    152       1.15   mycroft 	MALLOC(fmp, struct kernfs_mount *, sizeof(struct kernfs_mount),
    153       1.47   thorpej 	    M_KERNFSMNT, M_WAITOK);
    154       1.54    itojun 	memset(fmp, 0, sizeof(*fmp));
    155       1.54    itojun 	TAILQ_INIT(&fmp->nodelist);
    156       1.54    itojun 
    157       1.65  jdolecek 	mp->mnt_stat.f_namemax = MAXNAMLEN;
    158       1.65  jdolecek 	mp->mnt_flag |= MNT_LOCAL;
    159       1.54    itojun 	mp->mnt_data = fmp;
    160       1.37     assar 	vfs_getnewfsid(mp);
    161        1.1       cgd 
    162       1.64      tron 	if ((error = set_statvfs_info(path, UIO_USERSPACE, "kernfs",
    163       1.70  christos 	    UIO_SYSSPACE, mp, l)) != 0) {
    164       1.64      tron 		free(fmp, M_KERNFSMNT);
    165       1.64      tron 		return error;
    166       1.64      tron 	}
    167       1.10       cgd 
    168       1.15   mycroft 	kernfs_get_rrootdev();
    169       1.64      tron 	return 0;
    170        1.1       cgd }
    171        1.1       cgd 
    172       1.25  christos int
    173       1.70  christos kernfs_start(mp, flags, l)
    174        1.1       cgd 	struct mount *mp;
    175        1.1       cgd 	int flags;
    176       1.70  christos 	struct lwp *l;
    177        1.1       cgd {
    178       1.15   mycroft 
    179        1.1       cgd 	return (0);
    180        1.1       cgd }
    181        1.1       cgd 
    182       1.25  christos int
    183       1.70  christos kernfs_unmount(mp, mntflags, l)
    184        1.1       cgd 	struct mount *mp;
    185        1.1       cgd 	int mntflags;
    186       1.70  christos 	struct lwp *l;
    187        1.1       cgd {
    188        1.1       cgd 	int error;
    189        1.1       cgd 	int flags = 0;
    190        1.1       cgd 
    191       1.54    itojun 	if (mntflags & MNT_FORCE)
    192        1.1       cgd 		flags |= FORCECLOSE;
    193        1.1       cgd 
    194       1.54    itojun 	if ((error = vflush(mp, 0, flags)) != 0)
    195        1.1       cgd 		return (error);
    196        1.1       cgd 
    197        1.1       cgd 	/*
    198        1.1       cgd 	 * Finally, throw away the kernfs_mount structure
    199        1.1       cgd 	 */
    200       1.47   thorpej 	free(mp->mnt_data, M_KERNFSMNT);
    201       1.64      tron 	mp->mnt_data = NULL;
    202       1.15   mycroft 	return (0);
    203        1.1       cgd }
    204        1.1       cgd 
    205       1.25  christos int
    206       1.51   thorpej kernfs_root(mp, vpp)
    207        1.1       cgd 	struct mount *mp;
    208        1.1       cgd 	struct vnode **vpp;
    209        1.1       cgd {
    210        1.1       cgd 
    211       1.54    itojun 	/* setup "." */
    212       1.56     darcy 	return (kernfs_allocvp(mp, vpp, KFSkern, &kern_targets[0], 0));
    213        1.1       cgd }
    214        1.1       cgd 
    215       1.25  christos int
    216       1.70  christos kernfs_quotactl(mp, cmd, uid, arg, l)
    217        1.1       cgd 	struct mount *mp;
    218        1.1       cgd 	int cmd;
    219        1.1       cgd 	uid_t uid;
    220       1.61       jrf 	void *arg;
    221       1.70  christos 	struct lwp *l;
    222        1.1       cgd {
    223       1.15   mycroft 
    224        1.1       cgd 	return (EOPNOTSUPP);
    225        1.1       cgd }
    226        1.1       cgd 
    227       1.25  christos int
    228       1.70  christos kernfs_statvfs(mp, sbp, l)
    229        1.1       cgd 	struct mount *mp;
    230       1.59  christos 	struct statvfs *sbp;
    231       1.70  christos 	struct lwp *l;
    232        1.1       cgd {
    233        1.1       cgd 
    234        1.1       cgd 	sbp->f_bsize = DEV_BSIZE;
    235       1.59  christos 	sbp->f_frsize = DEV_BSIZE;
    236       1.13       cgd 	sbp->f_iosize = DEV_BSIZE;
    237        1.1       cgd 	sbp->f_blocks = 2;		/* 1K to keep df happy */
    238        1.1       cgd 	sbp->f_bfree = 0;
    239        1.1       cgd 	sbp->f_bavail = 0;
    240       1.59  christos 	sbp->f_bresvd = 0;
    241       1.54    itojun 	sbp->f_files = 1024;	/* XXX lie */
    242       1.54    itojun 	sbp->f_ffree = 128;	/* XXX lie */
    243       1.59  christos 	sbp->f_favail = 128;	/* XXX lie */
    244       1.59  christos 	sbp->f_fresvd = 0;
    245       1.59  christos 	copy_statvfs_info(sbp, mp);
    246        1.1       cgd 	return (0);
    247        1.1       cgd }
    248        1.1       cgd 
    249       1.25  christos /*ARGSUSED*/
    250       1.25  christos int
    251       1.70  christos kernfs_sync(mp, waitfor, uc, l)
    252        1.1       cgd 	struct mount *mp;
    253        1.1       cgd 	int waitfor;
    254  1.70.10.1      elad 	kauth_cred_t uc;
    255       1.70  christos 	struct lwp *l;
    256        1.1       cgd {
    257       1.15   mycroft 
    258        1.1       cgd 	return (0);
    259        1.1       cgd }
    260        1.1       cgd 
    261       1.15   mycroft /*
    262       1.15   mycroft  * Kernfs flat namespace lookup.
    263       1.15   mycroft  * Currently unsupported.
    264       1.15   mycroft  */
    265       1.25  christos int
    266       1.51   thorpej kernfs_vget(mp, ino, vpp)
    267       1.15   mycroft 	struct mount *mp;
    268       1.15   mycroft 	ino_t ino;
    269       1.15   mycroft 	struct vnode **vpp;
    270       1.15   mycroft {
    271       1.15   mycroft 
    272       1.15   mycroft 	return (EOPNOTSUPP);
    273       1.15   mycroft }
    274       1.15   mycroft 
    275       1.58    atatat SYSCTL_SETUP(sysctl_vfs_kernfs_setup, "sysctl vfs.kern subtree setup")
    276       1.32      fvdl {
    277       1.57    atatat 
    278       1.58    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    279       1.58    atatat 		       CTLFLAG_PERMANENT,
    280       1.57    atatat 		       CTLTYPE_NODE, "vfs", NULL,
    281       1.57    atatat 		       NULL, 0, NULL, 0,
    282       1.57    atatat 		       CTL_VFS, CTL_EOL);
    283       1.58    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    284       1.58    atatat 		       CTLFLAG_PERMANENT,
    285       1.62    atatat 		       CTLTYPE_NODE, "kernfs",
    286       1.62    atatat 		       SYSCTL_DESCR("/kern file system"),
    287       1.57    atatat 		       NULL, 0, NULL, 0,
    288       1.57    atatat 		       CTL_VFS, 11, CTL_EOL);
    289       1.57    atatat 	/*
    290       1.57    atatat 	 * XXX the "11" above could be dynamic, thereby eliminating one
    291       1.57    atatat 	 * more instance of the "number to vfs" mapping problem, but
    292       1.57    atatat 	 * "11" is the order as taken from sys/mount.h
    293       1.57    atatat 	 */
    294       1.32      fvdl }
    295       1.32      fvdl 
    296       1.38  jdolecek extern const struct vnodeopv_desc kernfs_vnodeop_opv_desc;
    297       1.31   thorpej 
    298       1.38  jdolecek const struct vnodeopv_desc * const kernfs_vnodeopv_descs[] = {
    299       1.31   thorpej 	&kernfs_vnodeop_opv_desc,
    300       1.31   thorpej 	NULL,
    301       1.31   thorpej };
    302       1.31   thorpej 
    303        1.1       cgd struct vfsops kernfs_vfsops = {
    304       1.12       cgd 	MOUNT_KERNFS,
    305        1.1       cgd 	kernfs_mount,
    306        1.1       cgd 	kernfs_start,
    307        1.1       cgd 	kernfs_unmount,
    308        1.1       cgd 	kernfs_root,
    309        1.1       cgd 	kernfs_quotactl,
    310       1.59  christos 	kernfs_statvfs,
    311        1.1       cgd 	kernfs_sync,
    312       1.15   mycroft 	kernfs_vget,
    313       1.69      jmmv 	NULL,				/* vfs_fhtovp */
    314       1.69      jmmv 	NULL,				/* vfs_vptofh */
    315        1.1       cgd 	kernfs_init,
    316       1.54    itojun 	kernfs_reinit,
    317       1.36  jdolecek 	kernfs_done,
    318       1.31   thorpej 	NULL,				/* vfs_mountroot */
    319       1.63   hannken 	(int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp,
    320       1.66   thorpej 	vfs_stdextattrctl,
    321       1.31   thorpej 	kernfs_vnodeopv_descs,
    322        1.1       cgd };
    323       1.67   thorpej VFS_ATTACH(kernfs_vfsops);
    324