Home | History | Annotate | Line # | Download | only in procfs
procfs_vfsops.c revision 1.65
      1  1.65  christos /*	$NetBSD: procfs_vfsops.c,v 1.65 2006/09/03 04:57:26 christos 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.49       agc  * 3. Neither the name of the University nor the names of its contributors
     19  1.49       agc  *    may be used to endorse or promote products derived from this software
     20  1.49       agc  *    without specific prior written permission.
     21  1.49       agc  *
     22  1.49       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  1.49       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  1.49       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  1.49       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  1.49       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  1.49       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  1.49       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  1.49       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  1.49       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  1.49       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  1.49       agc  * SUCH DAMAGE.
     33  1.49       agc  *
     34  1.49       agc  *	@(#)procfs_vfsops.c	8.7 (Berkeley) 5/10/95
     35  1.49       agc  */
     36  1.49       agc 
     37  1.49       agc /*
     38  1.49       agc  * Copyright (c) 1993 Jan-Simon Pendry
     39  1.49       agc  *
     40  1.49       agc  * This code is derived from software contributed to Berkeley by
     41  1.49       agc  * Jan-Simon Pendry.
     42  1.49       agc  *
     43  1.49       agc  * Redistribution and use in source and binary forms, with or without
     44  1.49       agc  * modification, are permitted provided that the following conditions
     45  1.49       agc  * are met:
     46  1.49       agc  * 1. Redistributions of source code must retain the above copyright
     47  1.49       agc  *    notice, this list of conditions and the following disclaimer.
     48  1.49       agc  * 2. Redistributions in binary form must reproduce the above copyright
     49  1.49       agc  *    notice, this list of conditions and the following disclaimer in the
     50  1.49       agc  *    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.65  christos __KERNEL_RCSID(0, "$NetBSD: procfs_vfsops.c,v 1.65 2006/09/03 04:57:26 christos 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.51    atatat #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.54  christos #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.64      elad #include <sys/kauth.h>
     99  1.35       mrg 
    100   1.9       cgd #include <miscfs/procfs/procfs.h>
    101  1.35       mrg 
    102  1.35       mrg #include <uvm/uvm_extern.h>			/* for PAGE_SIZE */
    103   1.1        pk 
    104  1.61   xtraeme void	procfs_init(void);
    105  1.61   xtraeme void	procfs_reinit(void);
    106  1.61   xtraeme void	procfs_done(void);
    107  1.61   xtraeme int	procfs_mount(struct mount *, const char *, void *,
    108  1.63  christos 			  struct nameidata *, struct lwp *);
    109  1.63  christos int	procfs_start(struct mount *, int, struct lwp *);
    110  1.63  christos int	procfs_unmount(struct mount *, int, struct lwp *);
    111  1.61   xtraeme int	procfs_quotactl(struct mount *, int, uid_t, void *,
    112  1.63  christos 			     struct lwp *);
    113  1.63  christos int	procfs_statvfs(struct mount *, struct statvfs *, struct lwp *);
    114  1.64      elad int	procfs_sync(struct mount *, int, kauth_cred_t, struct lwp *);
    115  1.61   xtraeme int	procfs_vget(struct mount *, ino_t, struct vnode **);
    116  1.52    atatat 
    117   1.1        pk /*
    118   1.1        pk  * VFS Operations.
    119   1.1        pk  *
    120   1.1        pk  * mount system call
    121   1.1        pk  */
    122   1.1        pk /* ARGSUSED */
    123  1.25  christos int
    124  1.63  christos procfs_mount(mp, path, data, ndp, l)
    125   1.9       cgd 	struct mount *mp;
    126  1.26       cgd 	const char *path;
    127  1.26       cgd 	void *data;
    128   1.1        pk 	struct nameidata *ndp;
    129  1.63  christos 	struct lwp *l;
    130   1.1        pk {
    131  1.32      fvdl 	struct procfsmount *pmnt;
    132  1.36      fvdl 	struct procfs_args args;
    133  1.36      fvdl 	int error;
    134   1.1        pk 
    135   1.9       cgd 	if (UIO_MX & (UIO_MX-1)) {
    136   1.9       cgd 		log(LOG_ERR, "procfs: invalid directory entry size");
    137   1.9       cgd 		return (EINVAL);
    138  1.43  christos 	}
    139  1.43  christos 
    140  1.43  christos 	if (mp->mnt_flag & MNT_GETARGS) {
    141  1.43  christos 		pmnt = VFSTOPROC(mp);
    142  1.43  christos 		if (pmnt == NULL)
    143  1.43  christos 			return EIO;
    144  1.43  christos 		args.version = PROCFS_ARGSVERSION;
    145  1.43  christos 		args.flags = pmnt->pmnt_flags;
    146  1.43  christos 		return copyout(&args, data, sizeof(args));
    147   1.1        pk 	}
    148   1.1        pk 
    149   1.9       cgd 	if (mp->mnt_flag & MNT_UPDATE)
    150   1.9       cgd 		return (EOPNOTSUPP);
    151   1.9       cgd 
    152  1.36      fvdl 	if (data != NULL) {
    153  1.36      fvdl 		error = copyin(data, &args, sizeof args);
    154  1.36      fvdl 		if (error != 0)
    155  1.36      fvdl 			return error;
    156  1.36      fvdl 
    157  1.36      fvdl 		if (args.version != PROCFS_ARGSVERSION)
    158  1.36      fvdl 			return EINVAL;
    159  1.36      fvdl 	} else
    160  1.36      fvdl 		args.flags = 0;
    161  1.36      fvdl 
    162  1.32      fvdl 	pmnt = (struct procfsmount *) malloc(sizeof(struct procfsmount),
    163  1.32      fvdl 	    M_UFSMNT, M_WAITOK);   /* XXX need new malloc type */
    164  1.32      fvdl 
    165  1.58  jdolecek 	mp->mnt_stat.f_namemax = MAXNAMLEN;
    166  1.58  jdolecek 	mp->mnt_flag |= MNT_LOCAL;
    167  1.42     soren 	mp->mnt_data = pmnt;
    168  1.34     assar 	vfs_getnewfsid(mp);
    169   1.9       cgd 
    170  1.53  christos 	error = set_statvfs_info(path, UIO_USERSPACE, "procfs", UIO_SYSSPACE,
    171  1.63  christos 	    mp, l);
    172  1.32      fvdl 	pmnt->pmnt_exechook = exechook_establish(procfs_revoke_vnodes, mp);
    173  1.36      fvdl 	pmnt->pmnt_flags = args.flags;
    174  1.32      fvdl 
    175  1.45  christos 	return error;
    176   1.1        pk }
    177   1.1        pk 
    178   1.1        pk /*
    179   1.1        pk  * unmount system call
    180   1.1        pk  */
    181  1.25  christos int
    182  1.63  christos procfs_unmount(mp, mntflags, l)
    183   1.1        pk 	struct mount *mp;
    184   1.1        pk 	int mntflags;
    185  1.63  christos 	struct lwp *l;
    186   1.1        pk {
    187   1.9       cgd 	int error;
    188   1.9       cgd 	int flags = 0;
    189   1.9       cgd 
    190  1.28      fvdl 	if (mntflags & MNT_FORCE)
    191   1.9       cgd 		flags |= FORCECLOSE;
    192   1.9       cgd 
    193  1.25  christos 	if ((error = vflush(mp, 0, flags)) != 0)
    194   1.9       cgd 		return (error);
    195   1.9       cgd 
    196  1.32      fvdl 	exechook_disestablish(VFSTOPROC(mp)->pmnt_exechook);
    197  1.32      fvdl 
    198  1.32      fvdl 	free(mp->mnt_data, M_UFSMNT);
    199  1.32      fvdl 	mp->mnt_data = 0;
    200  1.32      fvdl 
    201   1.1        pk 	return (0);
    202   1.1        pk }
    203   1.1        pk 
    204  1.25  christos int
    205  1.47   thorpej procfs_root(mp, vpp)
    206   1.1        pk 	struct mount *mp;
    207   1.1        pk 	struct vnode **vpp;
    208   1.1        pk {
    209   1.1        pk 
    210  1.50     darcy 	return (procfs_allocvp(mp, vpp, 0, PFSroot, -1));
    211   1.1        pk }
    212   1.1        pk 
    213   1.1        pk /* ARGSUSED */
    214  1.25  christos int
    215  1.63  christos procfs_start(mp, flags, l)
    216   1.1        pk 	struct mount *mp;
    217   1.1        pk 	int flags;
    218  1.63  christos 	struct lwp *l;
    219   1.1        pk {
    220   1.9       cgd 
    221   1.9       cgd 	return (0);
    222   1.1        pk }
    223   1.1        pk 
    224   1.1        pk /*
    225   1.1        pk  * Get file system statistics.
    226   1.1        pk  */
    227  1.25  christos int
    228  1.63  christos procfs_statvfs(mp, sbp, l)
    229   1.1        pk 	struct mount *mp;
    230  1.53  christos 	struct statvfs *sbp;
    231  1.63  christos 	struct lwp *l;
    232   1.1        pk {
    233  1.16   mycroft 
    234  1.16   mycroft 	sbp->f_bsize = PAGE_SIZE;
    235  1.53  christos 	sbp->f_frsize = PAGE_SIZE;
    236  1.14       cgd 	sbp->f_iosize = PAGE_SIZE;
    237   1.9       cgd 	sbp->f_blocks = 1;	/* avoid divide by zero in some df's */
    238   1.4        pk 	sbp->f_bfree = 0;
    239   1.1        pk 	sbp->f_bavail = 0;
    240  1.53  christos 	sbp->f_bresvd = 0;
    241   1.9       cgd 	sbp->f_files = maxproc;			/* approx */
    242   1.9       cgd 	sbp->f_ffree = maxproc - nprocs;	/* approx */
    243  1.53  christos 	sbp->f_favail = maxproc - nprocs;	/* approx */
    244  1.53  christos 	sbp->f_fresvd = 0;
    245  1.53  christos 	copy_statvfs_info(sbp, mp);
    246   1.9       cgd 	return (0);
    247   1.1        pk }
    248   1.1        pk 
    249  1.25  christos /*ARGSUSED*/
    250  1.25  christos int
    251  1.63  christos procfs_quotactl(mp, cmds, uid, arg, l)
    252   1.1        pk 	struct mount *mp;
    253   1.1        pk 	int cmds;
    254   1.1        pk 	uid_t uid;
    255  1.55       jrf 	void *arg;
    256  1.63  christos 	struct lwp *l;
    257   1.1        pk {
    258   1.9       cgd 
    259   1.9       cgd 	return (EOPNOTSUPP);
    260   1.1        pk }
    261   1.1        pk 
    262  1.25  christos /*ARGSUSED*/
    263  1.25  christos int
    264  1.63  christos procfs_sync(mp, waitfor, uc, l)
    265   1.1        pk 	struct mount *mp;
    266   1.1        pk 	int waitfor;
    267  1.64      elad 	kauth_cred_t uc;
    268  1.63  christos 	struct lwp *l;
    269   1.1        pk {
    270   1.9       cgd 
    271   1.9       cgd 	return (0);
    272   1.1        pk }
    273   1.1        pk 
    274  1.25  christos /*ARGSUSED*/
    275  1.25  christos int
    276  1.47   thorpej procfs_vget(mp, ino, vpp)
    277  1.16   mycroft 	struct mount *mp;
    278  1.16   mycroft 	ino_t ino;
    279  1.16   mycroft 	struct vnode **vpp;
    280  1.16   mycroft {
    281  1.16   mycroft 	return (EOPNOTSUPP);
    282  1.16   mycroft }
    283  1.16   mycroft 
    284  1.25  christos void
    285   1.9       cgd procfs_init()
    286   1.1        pk {
    287  1.32      fvdl 	procfs_hashinit();
    288   1.1        pk }
    289   1.9       cgd 
    290  1.33  jdolecek void
    291  1.40       chs procfs_reinit()
    292  1.40       chs {
    293  1.40       chs 	procfs_hashreinit();
    294  1.40       chs }
    295  1.40       chs 
    296  1.40       chs void
    297  1.33  jdolecek procfs_done()
    298  1.33  jdolecek {
    299  1.33  jdolecek 	procfs_hashdone();
    300  1.33  jdolecek }
    301  1.33  jdolecek 
    302  1.51    atatat SYSCTL_SETUP(sysctl_vfs_procfs_setup, "sysctl vfs.procfs subtree setup")
    303  1.28      fvdl {
    304  1.51    atatat 
    305  1.52    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    306  1.52    atatat 		       CTLFLAG_PERMANENT,
    307  1.51    atatat 		       CTLTYPE_NODE, "vfs", NULL,
    308  1.51    atatat 		       NULL, 0, NULL, 0,
    309  1.51    atatat 		       CTL_VFS, CTL_EOL);
    310  1.52    atatat 	sysctl_createv(clog, 0, NULL, NULL,
    311  1.52    atatat 		       CTLFLAG_PERMANENT,
    312  1.56    atatat 		       CTLTYPE_NODE, "procfs",
    313  1.56    atatat 		       SYSCTL_DESCR("Process file system"),
    314  1.51    atatat 		       NULL, 0, NULL, 0,
    315  1.51    atatat 		       CTL_VFS, 12, CTL_EOL);
    316  1.51    atatat 	/*
    317  1.51    atatat 	 * XXX the "12" above could be dynamic, thereby eliminating
    318  1.51    atatat 	 * one more instance of the "number to vfs" mapping problem,
    319  1.51    atatat 	 * but "12" is the order as taken from sys/mount.h
    320  1.51    atatat 	 */
    321  1.28      fvdl }
    322  1.28      fvdl 
    323  1.37  jdolecek extern const struct vnodeopv_desc procfs_vnodeop_opv_desc;
    324  1.27   thorpej 
    325  1.37  jdolecek const struct vnodeopv_desc * const procfs_vnodeopv_descs[] = {
    326  1.27   thorpej 	&procfs_vnodeop_opv_desc,
    327  1.27   thorpej 	NULL,
    328  1.27   thorpej };
    329  1.27   thorpej 
    330   1.9       cgd struct vfsops procfs_vfsops = {
    331  1.12       cgd 	MOUNT_PROCFS,
    332   1.9       cgd 	procfs_mount,
    333   1.9       cgd 	procfs_start,
    334   1.9       cgd 	procfs_unmount,
    335   1.9       cgd 	procfs_root,
    336   1.9       cgd 	procfs_quotactl,
    337  1.53  christos 	procfs_statvfs,
    338   1.9       cgd 	procfs_sync,
    339  1.16   mycroft 	procfs_vget,
    340  1.62      jmmv 	NULL,				/* vfs_fhtovp */
    341  1.62      jmmv 	NULL,				/* vfs_vptofh */
    342   1.9       cgd 	procfs_init,
    343  1.40       chs 	procfs_reinit,
    344  1.33  jdolecek 	procfs_done,
    345  1.27   thorpej 	NULL,				/* vfs_mountroot */
    346  1.57   hannken 	(int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp,
    347  1.59   thorpej 	vfs_stdextattrctl,
    348  1.27   thorpej 	procfs_vnodeopv_descs,
    349  1.65  christos 	0,
    350  1.65  christos 	{ NULL, NULL },
    351   1.9       cgd };
    352  1.60   thorpej VFS_ATTACH(procfs_vfsops);
    353