NetBSD/sys/fs/ptyfs/ptyfs_vfsops.c

418 lines
9.5 KiB
C
Raw Normal View History

/* $NetBSD: ptyfs_vfsops.c,v 1.26 2007/07/17 11:19:33 pooka Exp $ */
/*
* Copyright (c) 1992, 1993, 1995
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software donated 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. 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.
*
*/
/*
* Pseudo-tty Filesystem
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ptyfs_vfsops.c,v 1.26 2007/07/17 11:19:33 pooka Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sysctl.h>
#include <sys/conf.h>
#include <sys/proc.h>
#include <sys/vnode.h>
#include <sys/mount.h>
#include <sys/namei.h>
2004-11-25 08:15:10 +03:00
#include <sys/stat.h>
#include <sys/dirent.h>
#include <sys/malloc.h>
#include <sys/syslog.h>
#include <sys/select.h>
#include <sys/filedesc.h>
#include <sys/tty.h>
#include <sys/pty.h>
2006-05-15 01:31:52 +04:00
#include <sys/kauth.h>
2004-11-11 22:19:59 +03:00
#include <fs/ptyfs/ptyfs.h>
#include <miscfs/specfs/specdev.h>
MALLOC_JUSTDEFINE(M_PTYFSMNT, "ptyfs mount", "ptyfs mount structures");
void ptyfs_init(void);
void ptyfs_reinit(void);
void ptyfs_done(void);
int ptyfs_mount(struct mount *, const char *, void *, size_t *,
struct nameidata *, struct lwp *);
2005-12-11 15:16:03 +03:00
int ptyfs_start(struct mount *, int, struct lwp *);
int ptyfs_unmount(struct mount *, int, struct lwp *);
int ptyfs_statvfs(struct mount *, struct statvfs *, struct lwp *);
int ptyfs_quotactl(struct mount *, int, uid_t, void *, struct lwp *);
2006-05-15 01:31:52 +04:00
int ptyfs_sync(struct mount *, int, kauth_cred_t, struct lwp *);
int ptyfs_vget(struct mount *, ino_t, struct vnode **);
2005-12-11 15:16:03 +03:00
static int ptyfs__allocvp(struct ptm_pty *, struct lwp *, struct vnode **,
dev_t, char);
static int ptyfs__makename(struct ptm_pty *, struct lwp *, char *, size_t,
dev_t, char);
static void ptyfs__getvattr(struct ptm_pty *, struct lwp *, struct vattr *);
/*
* ptm glue: When we mount, we make ptm point to us.
*/
struct ptm_pty *ptyfs_save_ptm;
static int ptyfs_count;
struct ptm_pty ptm_ptyfspty = {
ptyfs__allocvp,
ptyfs__makename,
2004-11-25 08:15:10 +03:00
ptyfs__getvattr,
NULL
};
static const char *
ptyfs__getpath(struct lwp *l, const struct mount *mp)
{
#define MAXBUF (sizeof(mp->mnt_stat.f_mntonname) + 32)
struct cwdinfo *cwdi = l->l_proc->p_cwdi;
2006-06-20 13:17:14 +04:00
char *buf;
const char *rv;
size_t len;
char *bp;
int error;
rv = mp->mnt_stat.f_mntonname;
if (cwdi->cwdi_rdir == NULL)
return rv;
buf = malloc(MAXBUF, M_TEMP, M_WAITOK);
bp = buf + MAXBUF;
*--bp = '\0';
error = getcwd_common(cwdi->cwdi_rdir, rootvnode, &bp,
buf, MAXBUF / 2, 0, l);
if (error) /* XXX */
goto out;
len = strlen(bp);
if (len < sizeof(mp->mnt_stat.f_mntonname)) /* XXX */
rv += len;
out:
free(buf, M_TEMP);
return rv;
}
static int
ptyfs__makename(struct ptm_pty *pt, struct lwp *l, char *tbuf, size_t bufsiz,
dev_t dev, char ms)
{
struct mount *mp = pt->arg;
size_t len;
switch (ms) {
case 'p':
/* We don't provide access to the master, should we? */
len = snprintf(tbuf, bufsiz, "/dev/null");
break;
case 't':
len = snprintf(tbuf, bufsiz, "%s/%d", ptyfs__getpath(l, mp),
minor(dev));
break;
default:
return EINVAL;
}
return len >= bufsiz ? ENOSPC : 0;
}
2004-11-25 08:15:10 +03:00
static int
/*ARGSUSED*/
2005-12-11 15:16:03 +03:00
ptyfs__allocvp(struct ptm_pty *pt, struct lwp *l, struct vnode **vpp,
dev_t dev, char ms)
{
struct mount *mp = pt->arg;
ptyfstype type;
switch (ms) {
case 'p':
type = PTYFSptc;
break;
case 't':
type = PTYFSpts;
break;
default:
return EINVAL;
}
2005-12-11 15:16:03 +03:00
return ptyfs_allocvp(mp, vpp, type, minor(dev), l);
}
2004-11-25 08:15:10 +03:00
static void
ptyfs__getvattr(struct ptm_pty *pt, struct lwp *l, struct vattr *vattr)
2004-11-25 08:15:10 +03:00
{
struct mount *mp = pt->arg;
struct ptyfsmount *pmnt = VFSTOPTY(mp);
VATTR_NULL(vattr);
/* get real uid */
vattr->va_uid = kauth_cred_getuid(l->l_cred);
2004-11-25 08:15:10 +03:00
vattr->va_gid = pmnt->pmnt_gid;
vattr->va_mode = pmnt->pmnt_mode;
}
void
ptyfs_init(void)
{
malloc_type_attach(M_PTYFSMNT);
ptyfs_hashinit();
}
void
ptyfs_reinit(void)
{
ptyfs_hashreinit();
}
void
ptyfs_done(void)
{
ptyfs_hashdone();
malloc_type_detach(M_PTYFSMNT);
}
/*
* Mount the Pseudo tty params filesystem
*/
int
ptyfs_mount(struct mount *mp, const char *path, void *data, size_t *data_len,
struct nameidata *ndp, struct lwp *l)
{
int error = 0;
2004-11-25 08:15:10 +03:00
struct ptyfsmount *pmnt;
struct ptyfs_args *args = data;
if (*data_len < sizeof *args)
return EINVAL;
if (UIO_MX & (UIO_MX - 1)) {
log(LOG_ERR, "ptyfs: invalid directory entry size");
return EINVAL;
}
2004-11-25 08:15:10 +03:00
if (mp->mnt_flag & MNT_GETARGS) {
pmnt = VFSTOPTY(mp);
if (pmnt == NULL)
return EIO;
args->version = PTYFS_ARGSVERSION;
args->mode = pmnt->pmnt_mode;
args->gid = pmnt->pmnt_gid;
*data_len = sizeof *args;
return 0;
2004-11-25 08:15:10 +03:00
}
/* Don't allow more than one mount */
if (ptyfs_count)
return EBUSY;
if (mp->mnt_flag & MNT_UPDATE)
return EOPNOTSUPP;
if (args->version != PTYFS_ARGSVERSION)
return EINVAL;
2004-11-25 08:15:10 +03:00
2005-02-27 01:58:54 +03:00
pmnt = malloc(sizeof(struct ptyfsmount), M_UFSMNT, M_WAITOK);
2004-11-25 08:15:10 +03:00
mp->mnt_data = pmnt;
pmnt->pmnt_gid = args->gid;
pmnt->pmnt_mode = args->mode;
mp->mnt_flag |= MNT_LOCAL;
vfs_getnewfsid(mp);
if ((error = set_statvfs_info(path, UIO_USERSPACE, "ptyfs",
UIO_SYSSPACE, mp->mnt_op->vfs_name, mp, l)) != 0) {
free(pmnt, M_UFSMNT);
return error;
}
/* Point pty access to us */
ptm_ptyfspty.arg = mp;
ptyfs_save_ptm = pty_sethandler(&ptm_ptyfspty);
ptyfs_count++;
return 0;
}
/*ARGSUSED*/
int
ptyfs_start(struct mount *mp, int flags,
struct lwp *p)
{
return 0;
}
/*ARGSUSED*/
int
ptyfs_unmount(struct mount *mp, int mntflags, struct lwp *p)
{
int error;
int flags = 0;
if (mntflags & MNT_FORCE)
flags |= FORCECLOSE;
if ((error = vflush(mp, 0, flags)) != 0)
return (error);
/* Restore where pty access was pointing */
(void)pty_sethandler(ptyfs_save_ptm);
ptyfs_save_ptm = NULL;
ptm_ptyfspty.arg = NULL;
2004-11-25 08:15:10 +03:00
/*
2004-11-25 08:15:10 +03:00
* Finally, throw away the ptyfsmount structure
*/
2004-11-25 08:15:10 +03:00
free(mp->mnt_data, M_UFSMNT);
2005-02-27 01:58:54 +03:00
mp->mnt_data = 0;
ptyfs_count--;
2004-11-25 08:15:10 +03:00
return 0;
}
int
ptyfs_root(struct mount *mp, struct vnode **vpp)
{
/* setup "." */
return ptyfs_allocvp(mp, vpp, PTYFSroot, 0, NULL);
}
/*ARGSUSED*/
int
ptyfs_quotactl(struct mount *mp, int cmd, uid_t uid,
void *arg, struct lwp *p)
{
return EOPNOTSUPP;
}
/*ARGSUSED*/
int
ptyfs_statvfs(struct mount *mp, struct statvfs *sbp, struct lwp *p)
{
sbp->f_bsize = DEV_BSIZE;
sbp->f_frsize = DEV_BSIZE;
sbp->f_iosize = DEV_BSIZE;
sbp->f_blocks = 2; /* 1K to keep df happy */
sbp->f_bfree = 0;
sbp->f_bavail = 0;
sbp->f_bresvd = 0;
sbp->f_files = 1024; /* XXX lie */
sbp->f_ffree = 128; /* XXX lie */
sbp->f_favail = 128; /* XXX lie */
sbp->f_fresvd = 0;
sbp->f_namemax = MAXNAMLEN;
copy_statvfs_info(sbp, mp);
return 0;
}
/*ARGSUSED*/
int
ptyfs_sync(struct mount *mp, int waitfor,
kauth_cred_t uc, struct lwp *p)
{
return 0;
}
/*
* Kernfs flat namespace lookup.
* Currently unsupported.
*/
/*ARGSUSED*/
int
ptyfs_vget(struct mount *mp, ino_t ino,
struct vnode **vpp)
{
return EOPNOTSUPP;
}
SYSCTL_SETUP(sysctl_vfs_ptyfs_setup, "sysctl vfs.ptyfs subtree setup")
{
sysctl_createv(clog, 0, NULL, NULL,
CTLFLAG_PERMANENT,
CTLTYPE_NODE, "vfs", NULL,
NULL, 0, NULL, 0,
CTL_VFS, CTL_EOL);
sysctl_createv(clog, 0, NULL, NULL,
CTLFLAG_PERMANENT,
CTLTYPE_NODE, "ptyfs",
SYSCTL_DESCR("Pty file system"),
NULL, 0, NULL, 0,
CTL_VFS, 23, CTL_EOL);
/*
* XXX the "23" above could be dynamic, thereby eliminating
* one more instance of the "number to vfs" mapping problem,
* but "23" is the order as taken from sys/mount.h
*/
}
extern const struct vnodeopv_desc ptyfs_vnodeop_opv_desc;
const struct vnodeopv_desc * const ptyfs_vnodeopv_descs[] = {
&ptyfs_vnodeop_opv_desc,
NULL,
};
struct vfsops ptyfs_vfsops = {
MOUNT_PTYFS,
sizeof (struct ptyfs_args),
ptyfs_mount,
ptyfs_start,
ptyfs_unmount,
ptyfs_root,
ptyfs_quotactl,
ptyfs_statvfs,
ptyfs_sync,
ptyfs_vget,
(void *)eopnotsupp, /* vfs_fhtovp */
(void *)eopnotsupp, /* vfs_vptofp */
ptyfs_init,
ptyfs_reinit,
ptyfs_done,
NULL, /* vfs_mountroot */
(int (*)(struct mount *, struct vnode *, struct timespec *))eopnotsupp,
2005-01-03 00:15:48 +03:00
(int (*)(struct mount *, int, struct vnode *, int, const char *,
2005-12-11 15:16:03 +03:00
struct lwp *))eopnotsupp,
vfs_stdsuspendctl,
ptyfs_vnodeopv_descs,
2006-09-03 08:56:33 +04:00
0,
{ NULL, NULL },
};
VFS_ATTACH(ptyfs_vfsops);