Home | History | Annotate | Line # | Download | only in ptyfs
ptyfs_vfsops.c revision 1.54
      1  1.54  christos /*	$NetBSD: ptyfs_vfsops.c,v 1.54 2014/10/15 15:00:03 christos Exp $	*/
      2   1.1  jdolecek 
      3   1.1  jdolecek /*
      4   1.1  jdolecek  * Copyright (c) 1992, 1993, 1995
      5   1.1  jdolecek  *	The Regents of the University of California.  All rights reserved.
      6   1.1  jdolecek  *
      7   1.1  jdolecek  * This code is derived from software donated to Berkeley by
      8   1.1  jdolecek  * Jan-Simon Pendry.
      9   1.1  jdolecek  *
     10   1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
     11   1.1  jdolecek  * modification, are permitted provided that the following conditions
     12   1.1  jdolecek  * are met:
     13   1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     14   1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     15   1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     18   1.1  jdolecek  * 3. Neither the name of the University nor the names of its contributors
     19   1.1  jdolecek  *    may be used to endorse or promote products derived from this software
     20   1.1  jdolecek  *    without specific prior written permission.
     21   1.1  jdolecek  *
     22   1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1  jdolecek  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1  jdolecek  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1  jdolecek  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1  jdolecek  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1  jdolecek  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1  jdolecek  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1  jdolecek  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1  jdolecek  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1  jdolecek  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1  jdolecek  * SUCH DAMAGE.
     33   1.1  jdolecek  *
     34   1.1  jdolecek  */
     35   1.1  jdolecek 
     36   1.1  jdolecek /*
     37   1.1  jdolecek  * Pseudo-tty Filesystem
     38   1.1  jdolecek  */
     39   1.1  jdolecek 
     40   1.1  jdolecek #include <sys/cdefs.h>
     41  1.54  christos __KERNEL_RCSID(0, "$NetBSD: ptyfs_vfsops.c,v 1.54 2014/10/15 15:00:03 christos Exp $");
     42   1.1  jdolecek 
     43   1.1  jdolecek #include <sys/param.h>
     44   1.1  jdolecek #include <sys/systm.h>
     45   1.1  jdolecek #include <sys/sysctl.h>
     46   1.1  jdolecek #include <sys/conf.h>
     47   1.1  jdolecek #include <sys/proc.h>
     48   1.1  jdolecek #include <sys/vnode.h>
     49   1.1  jdolecek #include <sys/mount.h>
     50   1.1  jdolecek #include <sys/namei.h>
     51   1.3  christos #include <sys/stat.h>
     52   1.1  jdolecek #include <sys/dirent.h>
     53   1.1  jdolecek #include <sys/malloc.h>
     54   1.1  jdolecek #include <sys/syslog.h>
     55   1.1  jdolecek #include <sys/select.h>
     56  1.13  christos #include <sys/filedesc.h>
     57   1.1  jdolecek #include <sys/tty.h>
     58   1.1  jdolecek #include <sys/pty.h>
     59  1.15      elad #include <sys/kauth.h>
     60  1.33    rumble #include <sys/module.h>
     61   1.1  jdolecek 
     62   1.2  jdolecek #include <fs/ptyfs/ptyfs.h>
     63  1.31  dholland #include <miscfs/genfs/genfs.h>
     64   1.1  jdolecek #include <miscfs/specfs/specdev.h>
     65   1.1  jdolecek 
     66  1.33    rumble MODULE(MODULE_CLASS_VFS, ptyfs, NULL);
     67  1.33    rumble 
     68  1.24     pooka MALLOC_JUSTDEFINE(M_PTYFSMNT, "ptyfs mount", "ptyfs mount structures");
     69  1.29    rumble MALLOC_JUSTDEFINE(M_PTYFSTMP, "ptyfs temp", "ptyfs temporary structures");
     70   1.1  jdolecek 
     71  1.28     pooka VFS_PROTOS(ptyfs);
     72   1.1  jdolecek 
     73  1.36    rumble static struct sysctllog *ptyfs_sysctl_log;
     74  1.36    rumble 
     75  1.48  christos static int ptyfs__allocvp(struct mount *, struct lwp *, struct vnode **,
     76   1.1  jdolecek     dev_t, char);
     77  1.48  christos static int ptyfs__makename(struct mount *, struct lwp *, char *, size_t,
     78  1.13  christos     dev_t, char);
     79  1.48  christos static void ptyfs__getvattr(struct mount *, struct lwp *, struct vattr *);
     80  1.49  christos static int ptyfs__getmp(struct lwp *, struct mount **);
     81   1.1  jdolecek 
     82   1.1  jdolecek /*
     83   1.1  jdolecek  * ptm glue: When we mount, we make ptm point to us.
     84   1.1  jdolecek  */
     85   1.1  jdolecek struct ptm_pty *ptyfs_save_ptm;
     86  1.11  christos static int ptyfs_count;
     87   1.1  jdolecek 
     88  1.49  christos static TAILQ_HEAD(, ptyfsmount) ptyfs_head;
     89  1.49  christos 
     90   1.1  jdolecek struct ptm_pty ptm_ptyfspty = {
     91   1.1  jdolecek 	ptyfs__allocvp,
     92   1.1  jdolecek 	ptyfs__makename,
     93   1.3  christos 	ptyfs__getvattr,
     94  1.49  christos 	ptyfs__getmp,
     95   1.1  jdolecek };
     96   1.1  jdolecek 
     97  1.49  christos static int
     98  1.49  christos ptyfs__getmp(struct lwp *l, struct mount **mpp)
     99  1.49  christos {
    100  1.49  christos  	struct cwdinfo *cwdi = l->l_proc->p_cwdi;
    101  1.49  christos  	struct mount *mp;
    102  1.49  christos 	struct ptyfsmount *pmnt;
    103  1.49  christos 
    104  1.49  christos 	TAILQ_FOREACH(pmnt, &ptyfs_head, pmnt_le) {
    105  1.49  christos 		mp = pmnt->pmnt_mp;
    106  1.49  christos 		if (cwdi->cwdi_rdir == NULL)
    107  1.49  christos 			goto ok;
    108  1.49  christos 
    109  1.49  christos 		if (vn_isunder(mp->mnt_vnodecovered, cwdi->cwdi_rdir, l))
    110  1.49  christos 			goto ok;
    111  1.49  christos 	}
    112  1.49  christos  	*mpp = NULL;
    113  1.49  christos  	return EOPNOTSUPP;
    114  1.49  christos ok:
    115  1.49  christos 	*mpp = mp;
    116  1.49  christos 	return 0;
    117  1.49  christos }
    118  1.49  christos 
    119  1.39  christos static const char *
    120  1.39  christos ptyfs__getpath(struct lwp *l, const struct mount *mp)
    121  1.39  christos {
    122  1.39  christos #define MAXBUF (sizeof(mp->mnt_stat.f_mntonname) + 32)
    123  1.39  christos 	struct cwdinfo *cwdi = l->l_proc->p_cwdi;
    124  1.39  christos 	char *buf;
    125  1.39  christos 	const char *rv;
    126  1.39  christos 	size_t len;
    127  1.39  christos 	char *bp;
    128  1.39  christos 	int error;
    129  1.39  christos 
    130  1.39  christos 	rv = mp->mnt_stat.f_mntonname;
    131  1.43  christos 	if (cwdi->cwdi_rdir == NULL)
    132  1.39  christos 		return rv;
    133  1.39  christos 
    134  1.39  christos 	buf = malloc(MAXBUF, M_TEMP, M_WAITOK);
    135  1.39  christos 	bp = buf + MAXBUF;
    136  1.39  christos 	*--bp = '\0';
    137  1.46  christos 	error = getcwd_common(mp->mnt_vnodecovered, cwdi->cwdi_rdir, &bp,
    138  1.39  christos 	    buf, MAXBUF / 2, 0, l);
    139  1.46  christos 	if (error) {	/* Mount point is out of rdir */
    140  1.46  christos 		rv = NULL;
    141  1.39  christos 		goto out;
    142  1.46  christos 	}
    143  1.39  christos 
    144  1.39  christos 	len = strlen(bp);
    145  1.39  christos 	if (len < sizeof(mp->mnt_stat.f_mntonname))	/* XXX */
    146  1.46  christos 		rv += strlen(rv) - len;
    147  1.39  christos out:
    148  1.39  christos 	free(buf, M_TEMP);
    149  1.39  christos 	return rv;
    150  1.39  christos }
    151  1.39  christos 
    152   1.1  jdolecek static int
    153  1.48  christos ptyfs__makename(struct mount *mp, struct lwp *l, char *tbuf, size_t bufsiz,
    154  1.13  christos     dev_t dev, char ms)
    155   1.1  jdolecek {
    156   1.1  jdolecek 	size_t len;
    157  1.46  christos 	const char *np;
    158  1.51   hannken 	int pty = minor(dev);
    159   1.1  jdolecek 
    160   1.1  jdolecek 	switch (ms) {
    161   1.1  jdolecek 	case 'p':
    162   1.1  jdolecek 		/* We don't provide access to the master, should we? */
    163   1.8  christos 		len = snprintf(tbuf, bufsiz, "/dev/null");
    164   1.1  jdolecek 		break;
    165   1.1  jdolecek 	case 't':
    166  1.49  christos 		/*
    167  1.49  christos 		 * We support traditional ptys, so we can get here,
    168  1.49  christos 		 * if pty had been opened before PTYFS was mounted,
    169  1.49  christos 		 * or was opened through /dev/ptyXX devices.
    170  1.49  christos 		 * Return it only outside chroot for more security .
    171  1.49  christos 		 */
    172  1.49  christos 		if (l->l_proc->p_cwdi->cwdi_rdir == NULL
    173  1.49  christos 		    && ptyfs_save_ptm != NULL
    174  1.51   hannken 		    && ptyfs_next_active(mp, pty) != pty)
    175  1.49  christos 			return (*ptyfs_save_ptm->makename)(mp, l,
    176  1.49  christos 			    tbuf, bufsiz, dev, ms);
    177  1.49  christos 
    178  1.46  christos 		np = ptyfs__getpath(l, mp);
    179  1.46  christos 		if (np == NULL)
    180  1.46  christos 			return EOPNOTSUPP;
    181  1.46  christos 		len = snprintf(tbuf, bufsiz, "%s/%llu", np,
    182  1.46  christos 			(unsigned long long)minor(dev));
    183   1.1  jdolecek 		break;
    184   1.1  jdolecek 	default:
    185   1.1  jdolecek 		return EINVAL;
    186   1.1  jdolecek 	}
    187   1.1  jdolecek 
    188   1.1  jdolecek 	return len >= bufsiz ? ENOSPC : 0;
    189   1.1  jdolecek }
    190   1.1  jdolecek 
    191   1.3  christos 
    192   1.1  jdolecek static int
    193   1.1  jdolecek /*ARGSUSED*/
    194  1.48  christos ptyfs__allocvp(struct mount *mp, struct lwp *l, struct vnode **vpp,
    195   1.1  jdolecek     dev_t dev, char ms)
    196   1.1  jdolecek {
    197  1.51   hannken 	int error;
    198   1.1  jdolecek 	ptyfstype type;
    199   1.1  jdolecek 
    200   1.1  jdolecek 	switch (ms) {
    201   1.1  jdolecek 	case 'p':
    202   1.1  jdolecek 		type = PTYFSptc;
    203   1.1  jdolecek 		break;
    204   1.1  jdolecek 	case 't':
    205   1.1  jdolecek 		type = PTYFSpts;
    206   1.1  jdolecek 		break;
    207   1.1  jdolecek 	default:
    208   1.1  jdolecek 		return EINVAL;
    209   1.1  jdolecek 	}
    210   1.1  jdolecek 
    211  1.51   hannken 	error = ptyfs_allocvp(mp, vpp, type, minor(dev));
    212  1.53   hannken 	if (error)
    213  1.53   hannken 		return error;
    214  1.53   hannken 	error = vn_lock(*vpp, LK_EXCLUSIVE);
    215  1.53   hannken 	if (error) {
    216  1.53   hannken 		vrele(*vpp);
    217  1.53   hannken 		*vpp = NULL;
    218  1.53   hannken 		return error;
    219  1.53   hannken 	}
    220  1.54  christos 	/* Activate node only after we have grabbed device. */
    221  1.54  christos 	if (type == PTYFSpts)
    222  1.51   hannken 		ptyfs_set_active(mp, minor(dev));
    223  1.53   hannken 	return 0;
    224   1.1  jdolecek }
    225   1.1  jdolecek 
    226   1.3  christos 
    227   1.3  christos static void
    228  1.48  christos ptyfs__getvattr(struct mount *mp, struct lwp *l, struct vattr *vattr)
    229   1.3  christos {
    230   1.3  christos 	struct ptyfsmount *pmnt = VFSTOPTY(mp);
    231  1.42     pooka 	vattr_null(vattr);
    232   1.3  christos 	/* get real uid */
    233  1.18        ad 	vattr->va_uid = kauth_cred_getuid(l->l_cred);
    234   1.3  christos 	vattr->va_gid = pmnt->pmnt_gid;
    235   1.3  christos 	vattr->va_mode = pmnt->pmnt_mode;
    236   1.3  christos }
    237   1.3  christos 
    238   1.3  christos 
    239   1.1  jdolecek void
    240   1.1  jdolecek ptyfs_init(void)
    241   1.1  jdolecek {
    242  1.24     pooka 
    243  1.49  christos 	TAILQ_INIT(&ptyfs_head);
    244   1.1  jdolecek 	malloc_type_attach(M_PTYFSMNT);
    245  1.29    rumble 	malloc_type_attach(M_PTYFSTMP);
    246   1.1  jdolecek 	ptyfs_hashinit();
    247   1.1  jdolecek }
    248   1.1  jdolecek 
    249   1.1  jdolecek void
    250   1.1  jdolecek ptyfs_reinit(void)
    251   1.1  jdolecek {
    252  1.53   hannken 
    253   1.1  jdolecek }
    254   1.1  jdolecek 
    255   1.1  jdolecek void
    256   1.1  jdolecek ptyfs_done(void)
    257   1.1  jdolecek {
    258  1.24     pooka 
    259  1.24     pooka 	ptyfs_hashdone();
    260  1.29    rumble 	malloc_type_detach(M_PTYFSTMP);
    261   1.1  jdolecek 	malloc_type_detach(M_PTYFSMNT);
    262   1.1  jdolecek }
    263   1.1  jdolecek 
    264  1.40  christos #define OSIZE sizeof(struct { int f; gid_t g; mode_t m; })
    265   1.1  jdolecek /*
    266   1.1  jdolecek  * Mount the Pseudo tty params filesystem
    267   1.1  jdolecek  */
    268   1.1  jdolecek int
    269  1.30     pooka ptyfs_mount(struct mount *mp, const char *path, void *data, size_t *data_len)
    270   1.1  jdolecek {
    271  1.30     pooka 	struct lwp *l = curlwp;
    272   1.1  jdolecek 	int error = 0;
    273   1.3  christos 	struct ptyfsmount *pmnt;
    274  1.25       dsl 	struct ptyfs_args *args = data;
    275  1.25       dsl 
    276  1.50      maxv 	if (args == NULL)
    277  1.50      maxv 		return EINVAL;
    278  1.52      maxv 	if (*data_len != sizeof *args) {
    279  1.52      maxv 		if (*data_len != OSIZE || args->version >= PTYFS_ARGSVERSION)
    280  1.52      maxv 			return EINVAL;
    281  1.52      maxv 	}
    282   1.1  jdolecek 
    283   1.1  jdolecek 	if (UIO_MX & (UIO_MX - 1)) {
    284   1.1  jdolecek 		log(LOG_ERR, "ptyfs: invalid directory entry size");
    285   1.1  jdolecek 		return EINVAL;
    286   1.1  jdolecek 	}
    287   1.1  jdolecek 
    288   1.3  christos 	if (mp->mnt_flag & MNT_GETARGS) {
    289   1.3  christos 		pmnt = VFSTOPTY(mp);
    290   1.3  christos 		if (pmnt == NULL)
    291   1.3  christos 			return EIO;
    292  1.25       dsl 		args->mode = pmnt->pmnt_mode;
    293  1.25       dsl 		args->gid = pmnt->pmnt_gid;
    294  1.39  christos 		if (args->version >= PTYFS_ARGSVERSION) {
    295  1.39  christos 			args->flags = pmnt->pmnt_flags;
    296  1.39  christos 			*data_len = sizeof *args;
    297  1.39  christos 		} else {
    298  1.40  christos 			*data_len = OSIZE;
    299  1.39  christos 		}
    300  1.25       dsl 		return 0;
    301   1.3  christos 	}
    302   1.3  christos 
    303  1.44  christos #if 0
    304  1.14  christos 	/* Don't allow more than one mount */
    305  1.14  christos 	if (ptyfs_count)
    306  1.14  christos 		return EBUSY;
    307  1.44  christos #endif
    308  1.14  christos 
    309   1.1  jdolecek 	if (mp->mnt_flag & MNT_UPDATE)
    310   1.1  jdolecek 		return EOPNOTSUPP;
    311   1.1  jdolecek 
    312  1.40  christos 	if (args->version > PTYFS_ARGSVERSION)
    313   1.7  christos 		return EINVAL;
    314   1.3  christos 
    315  1.29    rumble 	pmnt = malloc(sizeof(struct ptyfsmount), M_PTYFSMNT, M_WAITOK);
    316   1.3  christos 
    317   1.3  christos 	mp->mnt_data = pmnt;
    318  1.51   hannken 	mutex_init(&pmnt->pmnt_lock, MUTEX_DEFAULT, IPL_NONE);
    319  1.25       dsl 	pmnt->pmnt_gid = args->gid;
    320  1.25       dsl 	pmnt->pmnt_mode = args->mode;
    321  1.39  christos 	if (args->version >= PTYFS_ARGSVERSION)
    322  1.39  christos 		pmnt->pmnt_flags = args->flags;
    323  1.39  christos 	else
    324  1.39  christos 		pmnt->pmnt_flags = 0;
    325  1.51   hannken 	pmnt->pmnt_bitmap_size = 0;
    326  1.51   hannken 	pmnt->pmnt_bitmap = NULL;
    327   1.1  jdolecek 	mp->mnt_flag |= MNT_LOCAL;
    328   1.1  jdolecek 	vfs_getnewfsid(mp);
    329   1.1  jdolecek 
    330   1.1  jdolecek 	if ((error = set_statvfs_info(path, UIO_USERSPACE, "ptyfs",
    331  1.26     pooka 	    UIO_SYSSPACE, mp->mnt_op->vfs_name, mp, l)) != 0) {
    332  1.34    simonb 		free(pmnt, M_PTYFSMNT);
    333   1.1  jdolecek 		return error;
    334   1.1  jdolecek 	}
    335   1.1  jdolecek 
    336  1.49  christos 	pmnt->pmnt_mp = mp;
    337  1.49  christos 	TAILQ_INSERT_TAIL(&ptyfs_head, pmnt, pmnt_le);
    338  1.49  christos 	if (ptyfs_count++ == 0) {
    339  1.49  christos 		/* Point pty access to us */
    340  1.44  christos 		ptyfs_save_ptm = pty_sethandler(&ptm_ptyfspty);
    341  1.44  christos 	}
    342   1.1  jdolecek 	return 0;
    343   1.1  jdolecek }
    344   1.1  jdolecek 
    345   1.1  jdolecek /*ARGSUSED*/
    346   1.1  jdolecek int
    347  1.30     pooka ptyfs_start(struct mount *mp, int flags)
    348   1.1  jdolecek {
    349   1.1  jdolecek 	return 0;
    350   1.1  jdolecek }
    351   1.1  jdolecek 
    352   1.1  jdolecek /*ARGSUSED*/
    353   1.1  jdolecek int
    354  1.30     pooka ptyfs_unmount(struct mount *mp, int mntflags)
    355   1.1  jdolecek {
    356   1.1  jdolecek 	int error;
    357   1.1  jdolecek 	int flags = 0;
    358  1.49  christos 	struct ptyfsmount *pmnt;
    359   1.1  jdolecek 
    360   1.1  jdolecek 	if (mntflags & MNT_FORCE)
    361   1.1  jdolecek 		flags |= FORCECLOSE;
    362   1.1  jdolecek 
    363   1.1  jdolecek 	if ((error = vflush(mp, 0, flags)) != 0)
    364  1.44  christos 		return error;
    365   1.1  jdolecek 
    366  1.44  christos 	ptyfs_count--;
    367  1.44  christos 	if (ptyfs_count == 0) {
    368  1.44  christos 		/* Restore where pty access was pointing */
    369  1.44  christos 		(void)pty_sethandler(ptyfs_save_ptm);
    370  1.44  christos 		ptyfs_save_ptm = NULL;
    371  1.44  christos 	}
    372  1.49  christos 	TAILQ_FOREACH(pmnt, &ptyfs_head, pmnt_le) {
    373  1.49  christos 		if (pmnt->pmnt_mp == mp) {
    374  1.49  christos 			TAILQ_REMOVE(&ptyfs_head, pmnt, pmnt_le);
    375  1.49  christos 			break;
    376  1.49  christos 		}
    377  1.49  christos  	}
    378   1.3  christos 
    379   1.1  jdolecek 	/*
    380   1.3  christos 	 * Finally, throw away the ptyfsmount structure
    381   1.1  jdolecek 	 */
    382  1.51   hannken 	if (pmnt->pmnt_bitmap_size > 0)
    383  1.51   hannken 		kmem_free(pmnt->pmnt_bitmap, pmnt->pmnt_bitmap_size);
    384  1.51   hannken 	mutex_destroy(&pmnt->pmnt_lock);
    385  1.34    simonb 	free(mp->mnt_data, M_PTYFSMNT);
    386  1.35    simonb 	mp->mnt_data = NULL;
    387   1.3  christos 
    388   1.1  jdolecek 	return 0;
    389   1.1  jdolecek }
    390   1.1  jdolecek 
    391   1.1  jdolecek int
    392   1.1  jdolecek ptyfs_root(struct mount *mp, struct vnode **vpp)
    393   1.1  jdolecek {
    394  1.53   hannken 	int error;
    395  1.53   hannken 
    396   1.1  jdolecek 	/* setup "." */
    397  1.53   hannken 	error = ptyfs_allocvp(mp, vpp, PTYFSroot, 0);
    398  1.53   hannken 	if (error)
    399  1.53   hannken 		return error;
    400  1.53   hannken 	error = vn_lock(*vpp, LK_EXCLUSIVE);
    401  1.53   hannken 	if (error) {
    402  1.53   hannken 		vrele(*vpp);
    403  1.53   hannken 		*vpp = NULL;
    404  1.53   hannken 		return error;
    405  1.53   hannken 	}
    406  1.53   hannken 	return 0;
    407   1.1  jdolecek }
    408   1.1  jdolecek 
    409   1.1  jdolecek /*ARGSUSED*/
    410   1.1  jdolecek int
    411  1.21  christos ptyfs_sync(struct mount *mp, int waitfor,
    412  1.30     pooka     kauth_cred_t uc)
    413   1.1  jdolecek {
    414   1.1  jdolecek 	return 0;
    415   1.1  jdolecek }
    416   1.1  jdolecek 
    417   1.1  jdolecek /*
    418  1.53   hannken  * Initialize this vnode / ptynode pair.
    419  1.54  christos  * Only for the slave side of a pty, caller assures
    420  1.54  christos  * no other thread will try to load this node.
    421  1.53   hannken  */
    422  1.53   hannken int
    423  1.53   hannken ptyfs_loadvnode(struct mount *mp, struct vnode *vp,
    424  1.53   hannken     const void *key, size_t key_len, const void **new_key)
    425  1.53   hannken {
    426  1.53   hannken 	struct ptyfskey pkey;
    427  1.53   hannken 	struct ptyfsnode *ptyfs;
    428  1.53   hannken 
    429  1.53   hannken 	KASSERT(key_len == sizeof(pkey));
    430  1.53   hannken 	memcpy(&pkey, key, key_len);
    431  1.53   hannken 
    432  1.53   hannken 	ptyfs = ptyfs_get_node(pkey.ptk_type, pkey.ptk_pty);
    433  1.53   hannken 	KASSERT(memcmp(&ptyfs->ptyfs_key, &pkey, sizeof(pkey)) == 0);
    434  1.53   hannken 
    435  1.53   hannken 	switch (pkey.ptk_type) {
    436  1.53   hannken 	case PTYFSroot:	/* /pts = dr-xr-xr-x */
    437  1.53   hannken 		vp->v_type = VDIR;
    438  1.53   hannken 		vp->v_vflag = VV_ROOT;
    439  1.53   hannken 		break;
    440  1.53   hannken 
    441  1.53   hannken 	case PTYFSpts:	/* /pts/N = cxxxxxxxxx */
    442  1.53   hannken 	case PTYFSptc:	/* controlling side = cxxxxxxxxx */
    443  1.53   hannken 		vp->v_type = VCHR;
    444  1.53   hannken 		spec_node_init(vp, PTYFS_MAKEDEV(ptyfs));
    445  1.53   hannken 		break;
    446  1.53   hannken 	default:
    447  1.53   hannken 		panic("ptyfs_loadvnode");
    448  1.53   hannken 	}
    449  1.53   hannken 
    450  1.53   hannken 	vp->v_tag = VT_PTYFS;
    451  1.53   hannken 	vp->v_op = ptyfs_vnodeop_p;
    452  1.53   hannken 	vp->v_data = ptyfs;
    453  1.53   hannken 	uvm_vnp_setsize(vp, 0);
    454  1.53   hannken 	*new_key = &ptyfs->ptyfs_key;
    455  1.53   hannken 	return 0;
    456  1.53   hannken }
    457  1.53   hannken 
    458  1.53   hannken /*
    459   1.1  jdolecek  * Kernfs flat namespace lookup.
    460   1.1  jdolecek  * Currently unsupported.
    461   1.1  jdolecek  */
    462   1.1  jdolecek /*ARGSUSED*/
    463   1.1  jdolecek int
    464  1.21  christos ptyfs_vget(struct mount *mp, ino_t ino,
    465  1.21  christos     struct vnode **vpp)
    466   1.1  jdolecek {
    467   1.1  jdolecek 	return EOPNOTSUPP;
    468   1.1  jdolecek }
    469   1.1  jdolecek 
    470   1.1  jdolecek extern const struct vnodeopv_desc ptyfs_vnodeop_opv_desc;
    471   1.1  jdolecek 
    472   1.1  jdolecek const struct vnodeopv_desc * const ptyfs_vnodeopv_descs[] = {
    473   1.1  jdolecek 	&ptyfs_vnodeop_opv_desc,
    474   1.1  jdolecek 	NULL,
    475   1.1  jdolecek };
    476   1.1  jdolecek 
    477   1.1  jdolecek struct vfsops ptyfs_vfsops = {
    478  1.47   hannken 	.vfs_name = MOUNT_PTYFS,
    479  1.47   hannken 	.vfs_min_mount_data = sizeof (struct ptyfs_args),
    480  1.47   hannken 	.vfs_mount = ptyfs_mount,
    481  1.47   hannken 	.vfs_start = ptyfs_start,
    482  1.47   hannken 	.vfs_unmount = ptyfs_unmount,
    483  1.47   hannken 	.vfs_root = ptyfs_root,
    484  1.47   hannken 	.vfs_quotactl = (void *)eopnotsupp,
    485  1.47   hannken 	.vfs_statvfs = genfs_statvfs,
    486  1.47   hannken 	.vfs_sync = ptyfs_sync,
    487  1.47   hannken 	.vfs_vget = ptyfs_vget,
    488  1.53   hannken 	.vfs_loadvnode = ptyfs_loadvnode,
    489  1.47   hannken 	.vfs_fhtovp = (void *)eopnotsupp,
    490  1.47   hannken 	.vfs_vptofh = (void *)eopnotsupp,
    491  1.47   hannken 	.vfs_init = ptyfs_init,
    492  1.47   hannken 	.vfs_reinit = ptyfs_reinit,
    493  1.47   hannken 	.vfs_done = ptyfs_done,
    494  1.47   hannken 	.vfs_snapshot = (void *)eopnotsupp,
    495  1.47   hannken 	.vfs_extattrctl = (void *)eopnotsupp,
    496  1.47   hannken 	.vfs_suspendctl = (void *)eopnotsupp,
    497  1.47   hannken 	.vfs_renamelock_enter = genfs_renamelock_enter,
    498  1.47   hannken 	.vfs_renamelock_exit = genfs_renamelock_exit,
    499  1.47   hannken 	.vfs_fsync = (void *)eopnotsupp,
    500  1.47   hannken 	.vfs_opv_descs = ptyfs_vnodeopv_descs
    501   1.1  jdolecek };
    502  1.33    rumble 
    503  1.33    rumble static int
    504  1.33    rumble ptyfs_modcmd(modcmd_t cmd, void *arg)
    505  1.33    rumble {
    506  1.36    rumble 	int error;
    507  1.33    rumble 
    508  1.33    rumble 	switch (cmd) {
    509  1.33    rumble 	case MODULE_CMD_INIT:
    510  1.36    rumble 		error = vfs_attach(&ptyfs_vfsops);
    511  1.36    rumble 		if (error != 0)
    512  1.36    rumble 			break;
    513  1.36    rumble 		sysctl_createv(&ptyfs_sysctl_log, 0, NULL, NULL,
    514  1.36    rumble 			       CTLFLAG_PERMANENT,
    515  1.36    rumble 			       CTLTYPE_NODE, "ptyfs",
    516  1.36    rumble 			       SYSCTL_DESCR("Pty file system"),
    517  1.36    rumble 			       NULL, 0, NULL, 0,
    518  1.36    rumble 			       CTL_VFS, 23, CTL_EOL);
    519  1.36    rumble 		/*
    520  1.36    rumble 		 * XXX the "23" above could be dynamic, thereby eliminating
    521  1.36    rumble 		 * one more instance of the "number to vfs" mapping problem,
    522  1.36    rumble 		 * but "23" is the order as taken from sys/mount.h
    523  1.36    rumble 		 */
    524  1.36    rumble 		break;
    525  1.33    rumble 	case MODULE_CMD_FINI:
    526  1.36    rumble 		error = vfs_detach(&ptyfs_vfsops);
    527  1.36    rumble 		if (error != 0)
    528  1.36    rumble 			break;
    529  1.36    rumble 		sysctl_teardown(&ptyfs_sysctl_log);
    530  1.36    rumble 		break;
    531  1.33    rumble 	default:
    532  1.36    rumble 		error = ENOTTY;
    533  1.36    rumble 		break;
    534  1.33    rumble 	}
    535  1.36    rumble 
    536  1.36    rumble 	return (error);
    537  1.33    rumble }
    538