Home | History | Annotate | Line # | Download | only in procfs
procfs_vfsops.c revision 1.48.2.2
      1  1.48.2.2     skrll /*	$NetBSD: procfs_vfsops.c,v 1.48.2.2 2004/08/03 10:54:07 skrll Exp $	*/
      2      1.18       cgd 
      3       1.1        pk /*
      4      1.16   mycroft  * Copyright (c) 1993
      5      1.16   mycroft  *	The Regents of the University of California.  All rights reserved.
      6       1.2        pk  *
      7       1.9       cgd  * This code is derived from software contributed to Berkeley by
      8       1.9       cgd  * Jan-Simon Pendry.
      9       1.9       cgd  *
     10       1.2        pk  * Redistribution and use in source and binary forms, with or without
     11       1.2        pk  * modification, are permitted provided that the following conditions
     12       1.2        pk  * are met:
     13       1.2        pk  * 1. Redistributions of source code must retain the above copyright
     14       1.2        pk  *    notice, this list of conditions and the following disclaimer.
     15       1.2        pk  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.2        pk  *    notice, this list of conditions and the following disclaimer in the
     17       1.2        pk  *    documentation and/or other materials provided with the distribution.
     18  1.48.2.2     skrll  * 3. Neither the name of the University nor the names of its contributors
     19  1.48.2.2     skrll  *    may be used to endorse or promote products derived from this software
     20  1.48.2.2     skrll  *    without specific prior written permission.
     21  1.48.2.2     skrll  *
     22  1.48.2.2     skrll  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  1.48.2.2     skrll  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  1.48.2.2     skrll  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  1.48.2.2     skrll  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  1.48.2.2     skrll  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  1.48.2.2     skrll  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  1.48.2.2     skrll  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  1.48.2.2     skrll  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  1.48.2.2     skrll  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  1.48.2.2     skrll  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  1.48.2.2     skrll  * SUCH DAMAGE.
     33  1.48.2.2     skrll  *
     34  1.48.2.2     skrll  *	@(#)procfs_vfsops.c	8.7 (Berkeley) 5/10/95
     35  1.48.2.2     skrll  */
     36  1.48.2.2     skrll 
     37  1.48.2.2     skrll /*
     38  1.48.2.2     skrll  * Copyright (c) 1993 Jan-Simon Pendry
     39  1.48.2.2     skrll  *
     40  1.48.2.2     skrll  * This code is derived from software contributed to Berkeley by
     41  1.48.2.2     skrll  * Jan-Simon Pendry.
     42  1.48.2.2     skrll  *
     43  1.48.2.2     skrll  * Redistribution and use in source and binary forms, with or without
     44  1.48.2.2     skrll  * modification, are permitted provided that the following conditions
     45  1.48.2.2     skrll  * are met:
     46  1.48.2.2     skrll  * 1. Redistributions of source code must retain the above copyright
     47  1.48.2.2     skrll  *    notice, this list of conditions and the following disclaimer.
     48  1.48.2.2     skrll  * 2. Redistributions in binary form must reproduce the above copyright
     49  1.48.2.2     skrll  *    notice, this list of conditions and the following disclaimer in the
     50  1.48.2.2     skrll  *    documentation and/or other materials provided with the distribution.
     51       1.2        pk  * 3. All advertising materials mentioning features or use of this software
     52       1.2        pk  *    must display the following acknowledgement:
     53       1.9       cgd  *	This product includes software developed by the University of
     54       1.9       cgd  *	California, Berkeley and its contributors.
     55       1.9       cgd  * 4. Neither the name of the University nor the names of its contributors
     56       1.9       cgd  *    may be used to endorse or promote products derived from this software
     57       1.9       cgd  *    without specific prior written permission.
     58       1.9       cgd  *
     59       1.9       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     60       1.9       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     61       1.9       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     62       1.9       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     63       1.9       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     64       1.9       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     65       1.9       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     66       1.9       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     67       1.9       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     68       1.9       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     69       1.9       cgd  * SUCH DAMAGE.
     70       1.9       cgd  *
     71      1.28      fvdl  *	@(#)procfs_vfsops.c	8.7 (Berkeley) 5/10/95
     72       1.2        pk  */
     73       1.2        pk 
     74       1.2        pk /*
     75       1.9       cgd  * procfs VFS interface
     76       1.1        pk  */
     77      1.41     lukem 
     78      1.41     lukem #include <sys/cdefs.h>
     79  1.48.2.2     skrll __KERNEL_RCSID(0, "$NetBSD: procfs_vfsops.c,v 1.48.2.2 2004/08/03 10:54:07 skrll Exp $");
     80      1.29  jonathan 
     81      1.39       mrg #if defined(_KERNEL_OPT)
     82      1.29  jonathan #include "opt_compat_netbsd.h"
     83      1.29  jonathan #endif
     84       1.1        pk 
     85       1.8   mycroft #include <sys/param.h>
     86       1.8   mycroft #include <sys/time.h>
     87       1.8   mycroft #include <sys/kernel.h>
     88      1.25  christos #include <sys/systm.h>
     89  1.48.2.2     skrll #include <sys/sysctl.h>
     90       1.8   mycroft #include <sys/proc.h>
     91       1.8   mycroft #include <sys/buf.h>
     92       1.9       cgd #include <sys/syslog.h>
     93       1.8   mycroft #include <sys/mount.h>
     94  1.48.2.2     skrll #include <sys/dirent.h>
     95       1.8   mycroft #include <sys/signalvar.h>
     96       1.8   mycroft #include <sys/vnode.h>
     97      1.32      fvdl #include <sys/malloc.h>
     98      1.35       mrg 
     99       1.9       cgd #include <miscfs/procfs/procfs.h>
    100      1.35       mrg 
    101      1.35       mrg #include <uvm/uvm_extern.h>			/* for PAGE_SIZE */
    102       1.1        pk 
    103      1.28      fvdl void	procfs_init __P((void));
    104      1.40       chs void	procfs_reinit __P((void));
    105      1.33  jdolecek void	procfs_done __P((void));
    106      1.26       cgd int	procfs_mount __P((struct mount *, const char *, void *,
    107  1.48.2.1   darrenr 			  struct nameidata *, struct lwp *));
    108  1.48.2.1   darrenr int	procfs_start __P((struct mount *, int, struct lwp *));
    109  1.48.2.1   darrenr int	procfs_unmount __P((struct mount *, int, struct lwp *));
    110  1.48.2.2     skrll int	procfs_quotactl __P((struct mount *, int, uid_t, void *,
    111  1.48.2.1   darrenr 			     struct lwp *));
    112  1.48.2.2     skrll int	procfs_statvfs __P((struct mount *, struct statvfs *, struct lwp *));
    113  1.48.2.1   darrenr int	procfs_sync __P((struct mount *, int, struct ucred *, struct lwp *));
    114  1.48.2.1   darrenr int	procfs_vget __P((struct mount *, ino_t, struct vnode **, struct lwp *));
    115  1.48.2.1   darrenr int	procfs_fhtovp __P((struct mount *, struct fid *, struct vnode **, struct lwp *));
    116      1.31  wrstuden int	procfs_checkexp __P((struct mount *, struct mbuf *, int *,
    117      1.31  wrstuden 			   struct ucred **));
    118      1.25  christos int	procfs_vptofh __P((struct vnode *, struct fid *));
    119  1.48.2.2     skrll 
    120       1.1        pk /*
    121       1.1        pk  * VFS Operations.
    122       1.1        pk  *
    123       1.1        pk  * mount system call
    124       1.1        pk  */
    125       1.1        pk /* ARGSUSED */
    126      1.25  christos int
    127  1.48.2.1   darrenr procfs_mount(mp, path, data, ndp, l)
    128       1.9       cgd 	struct mount *mp;
    129      1.26       cgd 	const char *path;
    130      1.26       cgd 	void *data;
    131       1.1        pk 	struct nameidata *ndp;
    132  1.48.2.1   darrenr 	struct lwp *l;
    133       1.1        pk {
    134      1.32      fvdl 	struct procfsmount *pmnt;
    135      1.36      fvdl 	struct procfs_args args;
    136      1.36      fvdl 	int error;
    137       1.1        pk 
    138       1.9       cgd 	if (UIO_MX & (UIO_MX-1)) {
    139       1.9       cgd 		log(LOG_ERR, "procfs: invalid directory entry size");
    140       1.9       cgd 		return (EINVAL);
    141      1.43  christos 	}
    142      1.43  christos 
    143      1.43  christos 	if (mp->mnt_flag & MNT_GETARGS) {
    144      1.43  christos 		pmnt = VFSTOPROC(mp);
    145      1.43  christos 		if (pmnt == NULL)
    146      1.43  christos 			return EIO;
    147      1.43  christos 		args.version = PROCFS_ARGSVERSION;
    148      1.43  christos 		args.flags = pmnt->pmnt_flags;
    149      1.43  christos 		return copyout(&args, data, sizeof(args));
    150       1.1        pk 	}
    151       1.1        pk 
    152       1.9       cgd 	if (mp->mnt_flag & MNT_UPDATE)
    153       1.9       cgd 		return (EOPNOTSUPP);
    154       1.9       cgd 
    155      1.36      fvdl 	if (data != NULL) {
    156      1.36      fvdl 		error = copyin(data, &args, sizeof args);
    157      1.36      fvdl 		if (error != 0)
    158      1.36      fvdl 			return error;
    159      1.36      fvdl 
    160      1.36      fvdl 		if (args.version != PROCFS_ARGSVERSION)
    161      1.36      fvdl 			return EINVAL;
    162      1.36      fvdl 	} else
    163      1.36      fvdl 		args.flags = 0;
    164      1.36      fvdl 
    165      1.16   mycroft 	mp->mnt_flag |= MNT_LOCAL;
    166      1.32      fvdl 	pmnt = (struct procfsmount *) malloc(sizeof(struct procfsmount),
    167      1.32      fvdl 	    M_UFSMNT, M_WAITOK);   /* XXX need new malloc type */
    168      1.32      fvdl 
    169      1.42     soren 	mp->mnt_data = pmnt;
    170      1.34     assar 	vfs_getnewfsid(mp);
    171       1.9       cgd 
    172  1.48.2.2     skrll 	error = set_statvfs_info(path, UIO_USERSPACE, "procfs", UIO_SYSSPACE,
    173  1.48.2.1   darrenr 	    mp, l);
    174      1.32      fvdl 	pmnt->pmnt_exechook = exechook_establish(procfs_revoke_vnodes, mp);
    175      1.36      fvdl 	pmnt->pmnt_flags = args.flags;
    176      1.32      fvdl 
    177      1.45  christos 	return error;
    178       1.1        pk }
    179       1.1        pk 
    180       1.1        pk /*
    181       1.1        pk  * unmount system call
    182       1.1        pk  */
    183      1.25  christos int
    184  1.48.2.1   darrenr procfs_unmount(mp, mntflags, l)
    185       1.1        pk 	struct mount *mp;
    186       1.1        pk 	int mntflags;
    187  1.48.2.1   darrenr 	struct lwp *l;
    188       1.1        pk {
    189       1.9       cgd 	int error;
    190       1.9       cgd 	int flags = 0;
    191       1.9       cgd 
    192      1.28      fvdl 	if (mntflags & MNT_FORCE)
    193       1.9       cgd 		flags |= FORCECLOSE;
    194       1.9       cgd 
    195      1.25  christos 	if ((error = vflush(mp, 0, flags)) != 0)
    196       1.9       cgd 		return (error);
    197       1.9       cgd 
    198      1.32      fvdl 	exechook_disestablish(VFSTOPROC(mp)->pmnt_exechook);
    199      1.32      fvdl 
    200      1.32      fvdl 	free(mp->mnt_data, M_UFSMNT);
    201      1.32      fvdl 	mp->mnt_data = 0;
    202      1.32      fvdl 
    203       1.1        pk 	return (0);
    204       1.1        pk }
    205       1.1        pk 
    206      1.25  christos int
    207  1.48.2.1   darrenr procfs_root(mp, vpp, l)
    208       1.1        pk 	struct mount *mp;
    209       1.1        pk 	struct vnode **vpp;
    210  1.48.2.1   darrenr 	struct lwp *l;
    211       1.1        pk {
    212       1.1        pk 
    213  1.48.2.2     skrll 	return (procfs_allocvp(mp, vpp, 0, PFSroot, -1));
    214       1.1        pk }
    215       1.1        pk 
    216       1.1        pk /* ARGSUSED */
    217      1.25  christos int
    218  1.48.2.1   darrenr procfs_start(mp, flags, l)
    219       1.1        pk 	struct mount *mp;
    220       1.1        pk 	int flags;
    221  1.48.2.1   darrenr 	struct lwp *l;
    222       1.1        pk {
    223       1.9       cgd 
    224       1.9       cgd 	return (0);
    225       1.1        pk }
    226       1.1        pk 
    227       1.1        pk /*
    228       1.1        pk  * Get file system statistics.
    229       1.1        pk  */
    230      1.25  christos int
    231  1.48.2.2     skrll procfs_statvfs(mp, sbp, l)
    232       1.1        pk 	struct mount *mp;
    233  1.48.2.2     skrll 	struct statvfs *sbp;
    234  1.48.2.1   darrenr 	struct lwp *l;
    235       1.1        pk {
    236      1.16   mycroft 
    237      1.16   mycroft 	sbp->f_bsize = PAGE_SIZE;
    238  1.48.2.2     skrll 	sbp->f_frsize = PAGE_SIZE;
    239      1.14       cgd 	sbp->f_iosize = PAGE_SIZE;
    240       1.9       cgd 	sbp->f_blocks = 1;	/* avoid divide by zero in some df's */
    241       1.4        pk 	sbp->f_bfree = 0;
    242       1.1        pk 	sbp->f_bavail = 0;
    243  1.48.2.2     skrll 	sbp->f_bresvd = 0;
    244       1.9       cgd 	sbp->f_files = maxproc;			/* approx */
    245       1.9       cgd 	sbp->f_ffree = maxproc - nprocs;	/* approx */
    246  1.48.2.2     skrll 	sbp->f_favail = maxproc - nprocs;	/* approx */
    247  1.48.2.2     skrll 	sbp->f_fresvd = 0;
    248  1.48.2.2     skrll 	sbp->f_namemax = MAXNAMLEN;
    249  1.48.2.2     skrll 	copy_statvfs_info(sbp, mp);
    250       1.9       cgd 	return (0);
    251       1.1        pk }
    252       1.1        pk 
    253      1.25  christos /*ARGSUSED*/
    254      1.25  christos int
    255  1.48.2.1   darrenr procfs_quotactl(mp, cmds, uid, arg, l)
    256       1.1        pk 	struct mount *mp;
    257       1.1        pk 	int cmds;
    258       1.1        pk 	uid_t uid;
    259  1.48.2.2     skrll 	void *arg;
    260  1.48.2.1   darrenr 	struct lwp *l;
    261       1.1        pk {
    262       1.9       cgd 
    263       1.9       cgd 	return (EOPNOTSUPP);
    264       1.1        pk }
    265       1.1        pk 
    266      1.25  christos /*ARGSUSED*/
    267      1.25  christos int
    268  1.48.2.1   darrenr procfs_sync(mp, waitfor, uc, l)
    269       1.1        pk 	struct mount *mp;
    270       1.1        pk 	int waitfor;
    271      1.25  christos 	struct ucred *uc;
    272  1.48.2.1   darrenr 	struct lwp *l;
    273       1.1        pk {
    274       1.9       cgd 
    275       1.9       cgd 	return (0);
    276       1.1        pk }
    277       1.1        pk 
    278      1.25  christos /*ARGSUSED*/
    279      1.25  christos int
    280  1.48.2.1   darrenr procfs_vget(mp, ino, vpp, l)
    281      1.16   mycroft 	struct mount *mp;
    282      1.16   mycroft 	ino_t ino;
    283      1.16   mycroft 	struct vnode **vpp;
    284  1.48.2.1   darrenr 	struct lwp *l;
    285      1.16   mycroft {
    286      1.16   mycroft 	return (EOPNOTSUPP);
    287      1.16   mycroft }
    288      1.16   mycroft 
    289      1.25  christos /*ARGSUSED*/
    290      1.25  christos int
    291  1.48.2.1   darrenr procfs_fhtovp(mp, fhp, vpp, l)
    292       1.9       cgd 	struct mount *mp;
    293       1.1        pk 	struct fid *fhp;
    294      1.31  wrstuden 	struct vnode **vpp;
    295  1.48.2.1   darrenr 	struct lwp *l;
    296      1.31  wrstuden {
    297      1.31  wrstuden 
    298      1.31  wrstuden 	return (EINVAL);
    299      1.31  wrstuden }
    300      1.31  wrstuden 
    301      1.31  wrstuden /*ARGSUSED*/
    302      1.31  wrstuden int
    303      1.31  wrstuden procfs_checkexp(mp, mb, what, anon)
    304      1.31  wrstuden 	struct mount *mp;
    305      1.25  christos 	struct mbuf *mb;
    306      1.25  christos 	int *what;
    307      1.25  christos 	struct ucred **anon;
    308       1.1        pk {
    309      1.16   mycroft 
    310      1.16   mycroft 	return (EINVAL);
    311       1.1        pk }
    312       1.1        pk 
    313      1.25  christos /*ARGSUSED*/
    314      1.25  christos int
    315       1.9       cgd procfs_vptofh(vp, fhp)
    316       1.1        pk 	struct vnode *vp;
    317       1.1        pk 	struct fid *fhp;
    318       1.1        pk {
    319      1.16   mycroft 
    320      1.16   mycroft 	return (EINVAL);
    321       1.1        pk }
    322       1.1        pk 
    323      1.25  christos void
    324       1.9       cgd procfs_init()
    325       1.1        pk {
    326      1.32      fvdl 	procfs_hashinit();
    327       1.1        pk }
    328       1.9       cgd 
    329      1.33  jdolecek void
    330      1.40       chs procfs_reinit()
    331      1.40       chs {
    332      1.40       chs 	procfs_hashreinit();
    333      1.40       chs }
    334      1.40       chs 
    335      1.40       chs void
    336      1.33  jdolecek procfs_done()
    337      1.33  jdolecek {
    338      1.33  jdolecek 	procfs_hashdone();
    339      1.33  jdolecek }
    340      1.33  jdolecek 
    341  1.48.2.2     skrll SYSCTL_SETUP(sysctl_vfs_procfs_setup, "sysctl vfs.procfs subtree setup")
    342      1.28      fvdl {
    343  1.48.2.2     skrll 
    344  1.48.2.2     skrll 	sysctl_createv(clog, 0, NULL, NULL,
    345  1.48.2.2     skrll 		       CTLFLAG_PERMANENT,
    346  1.48.2.2     skrll 		       CTLTYPE_NODE, "vfs", NULL,
    347  1.48.2.2     skrll 		       NULL, 0, NULL, 0,
    348  1.48.2.2     skrll 		       CTL_VFS, CTL_EOL);
    349  1.48.2.2     skrll 	sysctl_createv(clog, 0, NULL, NULL,
    350  1.48.2.2     skrll 		       CTLFLAG_PERMANENT,
    351  1.48.2.2     skrll 		       CTLTYPE_NODE, "procfs",
    352  1.48.2.2     skrll 		       SYSCTL_DESCR("Process file system"),
    353  1.48.2.2     skrll 		       NULL, 0, NULL, 0,
    354  1.48.2.2     skrll 		       CTL_VFS, 12, CTL_EOL);
    355  1.48.2.2     skrll 	/*
    356  1.48.2.2     skrll 	 * XXX the "12" above could be dynamic, thereby eliminating
    357  1.48.2.2     skrll 	 * one more instance of the "number to vfs" mapping problem,
    358  1.48.2.2     skrll 	 * but "12" is the order as taken from sys/mount.h
    359  1.48.2.2     skrll 	 */
    360      1.28      fvdl }
    361      1.28      fvdl 
    362      1.37  jdolecek extern const struct vnodeopv_desc procfs_vnodeop_opv_desc;
    363      1.27   thorpej 
    364      1.37  jdolecek const struct vnodeopv_desc * const procfs_vnodeopv_descs[] = {
    365      1.27   thorpej 	&procfs_vnodeop_opv_desc,
    366      1.27   thorpej 	NULL,
    367      1.27   thorpej };
    368      1.27   thorpej 
    369       1.9       cgd struct vfsops procfs_vfsops = {
    370      1.12       cgd 	MOUNT_PROCFS,
    371       1.9       cgd 	procfs_mount,
    372       1.9       cgd 	procfs_start,
    373       1.9       cgd 	procfs_unmount,
    374       1.9       cgd 	procfs_root,
    375       1.9       cgd 	procfs_quotactl,
    376  1.48.2.2     skrll 	procfs_statvfs,
    377       1.9       cgd 	procfs_sync,
    378      1.16   mycroft 	procfs_vget,
    379       1.9       cgd 	procfs_fhtovp,
    380       1.9       cgd 	procfs_vptofh,
    381       1.9       cgd 	procfs_init,
    382      1.40       chs 	procfs_reinit,
    383      1.33  jdolecek 	procfs_done,
    384  1.48.2.2     skrll 	NULL,
    385      1.27   thorpej 	NULL,				/* vfs_mountroot */
    386      1.31  wrstuden 	procfs_checkexp,
    387  1.48.2.2     skrll 	(int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp,
    388      1.27   thorpej 	procfs_vnodeopv_descs,
    389       1.9       cgd };
    390