aec0fb7b40
initializations but we did have lofty goals and big ideals. Adjust to more contemporary circumstances and gain type checking. Replace the entire vop_t frobbing thing with properly typed structures. The only casualty is that we can not add a new VOP_ method with a loadable module. History has not given us reason to belive this would ever be feasible in the the first place. Eliminate in toto VOCALL(), vop_t, VNODEOP_SET() etc. Give coda correct prototypes and function definitions for all vop_()s. Generate a bit more data from the vnode_if.src file: a struct vop_vector and protype typedefs for all vop methods. Add a new vop_bypass() and make vop_default be a pointer to another struct vop_vector. Remove a lot of vfs_init since vop_vector is ready to use from the compiler. Cast various vop_mumble() to void * with uppercase name, for instance VOP_PANIC, VOP_NULL etc. Implement VCALL() by making vdesc_offset the offsetof() the relevant function pointer in vop_vector. This is disgusting but since the code is generated by a script comparatively safe. The alternative for nullfs etc. would be much worse. Fix up all vnode method vectors to remove casts so they become typesafe. (The bulk of this is generated by scripts)
1423 lines
32 KiB
C
1423 lines
32 KiB
C
/*
|
|
* Copyright (c) 2000-2004
|
|
* Poul-Henning Kamp. All rights reserved.
|
|
* Copyright (c) 1989, 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. 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.
|
|
*
|
|
* @(#)kernfs_vnops.c 8.15 (Berkeley) 5/21/95
|
|
* From: FreeBSD: src/sys/miscfs/kernfs/kernfs_vnops.c 1.43
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
/*
|
|
* TODO:
|
|
* remove empty directories
|
|
* mknod: hunt down DE_DELETED, compare name, reinstantiate.
|
|
* mkdir: want it ?
|
|
*/
|
|
|
|
#include <opt_devfs.h>
|
|
#include <opt_mac.h>
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/conf.h>
|
|
#include <sys/dirent.h>
|
|
#include <sys/fcntl.h>
|
|
#include <sys/file.h>
|
|
#include <sys/filedesc.h>
|
|
#include <sys/filio.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/lock.h>
|
|
#include <sys/mac.h>
|
|
#include <sys/malloc.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/namei.h>
|
|
#include <sys/proc.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/sx.h>
|
|
#include <sys/time.h>
|
|
#include <sys/ttycom.h>
|
|
#include <sys/unistd.h>
|
|
#include <sys/vnode.h>
|
|
|
|
#include <fs/devfs/devfs.h>
|
|
|
|
static fo_rdwr_t devfs_read_f;
|
|
static fo_rdwr_t devfs_write_f;
|
|
static fo_ioctl_t devfs_ioctl_f;
|
|
static fo_poll_t devfs_poll_f;
|
|
static fo_kqfilter_t devfs_kqfilter_f;
|
|
static fo_stat_t devfs_stat_f;
|
|
static fo_close_t devfs_close_f;
|
|
|
|
struct fileops devfs_ops_f = {
|
|
.fo_read = devfs_read_f,
|
|
.fo_write = devfs_write_f,
|
|
.fo_ioctl = devfs_ioctl_f,
|
|
.fo_poll = devfs_poll_f,
|
|
.fo_kqfilter = devfs_kqfilter_f,
|
|
.fo_stat = devfs_stat_f,
|
|
.fo_close = devfs_close_f,
|
|
.fo_flags = DFLAG_PASSABLE | DFLAG_SEEKABLE
|
|
};
|
|
|
|
static vop_access_t devfs_access;
|
|
static vop_advlock_t devfs_advlock;
|
|
static vop_close_t devfs_close;
|
|
static vop_fsync_t devfs_fsync;
|
|
static vop_getattr_t devfs_getattr;
|
|
static vop_lookup_t devfs_lookupx;
|
|
static vop_mknod_t devfs_mknod;
|
|
static vop_open_t devfs_open;
|
|
static vop_pathconf_t devfs_pathconf;
|
|
static vop_print_t devfs_print;
|
|
static vop_readdir_t devfs_readdir;
|
|
static vop_readlink_t devfs_readlink;
|
|
static vop_reclaim_t devfs_reclaim;
|
|
static vop_remove_t devfs_remove;
|
|
static vop_revoke_t devfs_revoke;
|
|
static vop_ioctl_t devfs_rioctl;
|
|
static vop_read_t devfs_rread;
|
|
static vop_setattr_t devfs_setattr;
|
|
#ifdef MAC
|
|
static vop_setlabel_t devfs_setlabel;
|
|
#endif
|
|
static vop_symlink_t devfs_symlink;
|
|
|
|
extern struct vop_vector devfs_vnodeops;
|
|
|
|
static int
|
|
devfs_fp_check(struct file *fp, struct cdev **devp, struct cdevsw **dswp)
|
|
{
|
|
|
|
*devp = fp->f_vnode->v_rdev;
|
|
if (*devp != fp->f_data)
|
|
return (ENXIO);
|
|
KASSERT((*devp)->si_refcount > 0,
|
|
("devfs: un-referenced struct cdev *(%s)", devtoname(*devp)));
|
|
*dswp = dev_refthread(*devp);
|
|
if (*dswp == NULL)
|
|
return (ENXIO);
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* Construct the fully qualified path name relative to the mountpoint
|
|
*/
|
|
static char *
|
|
devfs_fqpn(char *buf, struct vnode *dvp, struct componentname *cnp)
|
|
{
|
|
int i;
|
|
struct devfs_dirent *de, *dd;
|
|
struct devfs_mount *dmp;
|
|
|
|
dmp = VFSTODEVFS(dvp->v_mount);
|
|
dd = dvp->v_data;
|
|
i = SPECNAMELEN;
|
|
buf[i] = '\0';
|
|
i -= cnp->cn_namelen;
|
|
if (i < 0)
|
|
return (NULL);
|
|
bcopy(cnp->cn_nameptr, buf + i, cnp->cn_namelen);
|
|
de = dd;
|
|
while (de != dmp->dm_basedir) {
|
|
i--;
|
|
if (i < 0)
|
|
return (NULL);
|
|
buf[i] = '/';
|
|
i -= de->de_dirent->d_namlen;
|
|
if (i < 0)
|
|
return (NULL);
|
|
bcopy(de->de_dirent->d_name, buf + i,
|
|
de->de_dirent->d_namlen);
|
|
de = TAILQ_FIRST(&de->de_dlist); /* "." */
|
|
de = TAILQ_NEXT(de, de_list); /* ".." */
|
|
de = de->de_dir;
|
|
}
|
|
return (buf + i);
|
|
}
|
|
|
|
int
|
|
devfs_allocv(struct devfs_dirent *de, struct mount *mp, struct vnode **vpp, struct thread *td)
|
|
{
|
|
int error;
|
|
struct vnode *vp;
|
|
struct cdev *dev;
|
|
|
|
KASSERT(td == curthread, ("devfs_allocv: td != curthread"));
|
|
loop:
|
|
vp = de->de_vnode;
|
|
if (vp != NULL) {
|
|
if (vget(vp, LK_EXCLUSIVE, td))
|
|
goto loop;
|
|
*vpp = vp;
|
|
return (0);
|
|
}
|
|
if (de->de_dirent->d_type == DT_CHR) {
|
|
dev = *devfs_itod(de->de_inode);
|
|
if (dev == NULL)
|
|
return (ENOENT);
|
|
} else {
|
|
dev = NULL;
|
|
}
|
|
error = getnewvnode("devfs", mp, &devfs_vnodeops, &vp);
|
|
if (error != 0) {
|
|
printf("devfs_allocv: failed to allocate new vnode\n");
|
|
return (error);
|
|
}
|
|
|
|
if (de->de_dirent->d_type == DT_CHR) {
|
|
vp->v_type = VCHR;
|
|
vp = addaliasu(vp, dev->si_udev);
|
|
vp->v_op = &devfs_specops;
|
|
} else if (de->de_dirent->d_type == DT_DIR) {
|
|
vp->v_type = VDIR;
|
|
} else if (de->de_dirent->d_type == DT_LNK) {
|
|
vp->v_type = VLNK;
|
|
} else {
|
|
vp->v_type = VBAD;
|
|
}
|
|
vp->v_data = de;
|
|
de->de_vnode = vp;
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
|
#ifdef MAC
|
|
mac_associate_vnode_devfs(mp, de, vp);
|
|
#endif
|
|
*vpp = vp;
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
devfs_access(ap)
|
|
struct vop_access_args /* {
|
|
struct vnode *a_vp;
|
|
int a_mode;
|
|
struct ucred *a_cred;
|
|
struct thread *a_td;
|
|
} */ *ap;
|
|
{
|
|
struct vnode *vp = ap->a_vp;
|
|
struct devfs_dirent *de;
|
|
int error;
|
|
|
|
de = vp->v_data;
|
|
if (vp->v_type == VDIR)
|
|
de = de->de_dir;
|
|
|
|
error = vaccess(vp->v_type, de->de_mode, de->de_uid, de->de_gid,
|
|
ap->a_mode, ap->a_cred, NULL);
|
|
if (!error)
|
|
return (error);
|
|
if (error != EACCES)
|
|
return (error);
|
|
/* We do, however, allow access to the controlling terminal */
|
|
if (!(ap->a_td->td_proc->p_flag & P_CONTROLT))
|
|
return (error);
|
|
if (ap->a_td->td_proc->p_session->s_ttyvp == de->de_vnode)
|
|
return (0);
|
|
return (error);
|
|
}
|
|
|
|
/*
|
|
* Special device advisory byte-level locks.
|
|
*/
|
|
/* ARGSUSED */
|
|
static int
|
|
devfs_advlock(ap)
|
|
struct vop_advlock_args /* {
|
|
struct vnode *a_vp;
|
|
caddr_t a_id;
|
|
int a_op;
|
|
struct flock *a_fl;
|
|
int a_flags;
|
|
} */ *ap;
|
|
{
|
|
|
|
return (ap->a_flags & F_FLOCK ? EOPNOTSUPP : EINVAL);
|
|
}
|
|
|
|
/*
|
|
* Device close routine
|
|
*/
|
|
/* ARGSUSED */
|
|
static int
|
|
devfs_close(ap)
|
|
struct vop_close_args /* {
|
|
struct vnode *a_vp;
|
|
int a_fflag;
|
|
struct ucred *a_cred;
|
|
struct thread *a_td;
|
|
} */ *ap;
|
|
{
|
|
struct vnode *vp = ap->a_vp, *oldvp;
|
|
struct thread *td = ap->a_td;
|
|
struct cdev *dev = vp->v_rdev;
|
|
struct cdevsw *dsw;
|
|
int error;
|
|
|
|
/*
|
|
* Hack: a tty device that is a controlling terminal
|
|
* has a reference from the session structure.
|
|
* We cannot easily tell that a character device is
|
|
* a controlling terminal, unless it is the closing
|
|
* process' controlling terminal. In that case,
|
|
* if the reference count is 2 (this last descriptor
|
|
* plus the session), release the reference from the session.
|
|
*/
|
|
|
|
/*
|
|
* This needs to be rewritten to take the vp interlock into
|
|
* consideration.
|
|
*/
|
|
|
|
oldvp = NULL;
|
|
sx_xlock(&proctree_lock);
|
|
if (td && vp == td->td_proc->p_session->s_ttyvp) {
|
|
SESS_LOCK(td->td_proc->p_session);
|
|
VI_LOCK(vp);
|
|
if (count_dev(dev) == 2 && (vp->v_iflag & VI_XLOCK) == 0) {
|
|
td->td_proc->p_session->s_ttyvp = NULL;
|
|
oldvp = vp;
|
|
}
|
|
VI_UNLOCK(vp);
|
|
SESS_UNLOCK(td->td_proc->p_session);
|
|
}
|
|
sx_xunlock(&proctree_lock);
|
|
if (oldvp != NULL)
|
|
vrele(oldvp);
|
|
/*
|
|
* We do not want to really close the device if it
|
|
* is still in use unless we are trying to close it
|
|
* forcibly. Since every use (buffer, vnode, swap, cmap)
|
|
* holds a reference to the vnode, and because we mark
|
|
* any other vnodes that alias this device, when the
|
|
* sum of the reference counts on all the aliased
|
|
* vnodes descends to one, we are on last close.
|
|
*/
|
|
dsw = dev_refthread(dev);
|
|
if (dsw == NULL)
|
|
return (ENXIO);
|
|
VI_LOCK(vp);
|
|
if (vp->v_iflag & VI_XLOCK) {
|
|
/* Forced close. */
|
|
} else if (dsw->d_flags & D_TRACKCLOSE) {
|
|
/* Keep device updated on status. */
|
|
} else if (count_dev(dev) > 1) {
|
|
VI_UNLOCK(vp);
|
|
dev_relthread(dev);
|
|
return (0);
|
|
}
|
|
VI_UNLOCK(vp);
|
|
KASSERT(dev->si_refcount > 0,
|
|
("devfs_close() on un-referenced struct cdev *(%s)", devtoname(dev)));
|
|
if (!(dsw->d_flags & D_NEEDGIANT)) {
|
|
DROP_GIANT();
|
|
error = dsw->d_close(dev, ap->a_fflag, S_IFCHR, td);
|
|
PICKUP_GIANT();
|
|
} else
|
|
error = dsw->d_close(dev, ap->a_fflag, S_IFCHR, td);
|
|
dev_relthread(dev);
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
devfs_close_f(struct file *fp, struct thread *td)
|
|
{
|
|
|
|
return (vnops.fo_close(fp, td));
|
|
}
|
|
|
|
/*
|
|
* Synch buffers associated with a block device
|
|
*/
|
|
/* ARGSUSED */
|
|
static int
|
|
devfs_fsync(ap)
|
|
struct vop_fsync_args /* {
|
|
struct vnode *a_vp;
|
|
struct ucred *a_cred;
|
|
int a_waitfor;
|
|
struct thread *a_td;
|
|
} */ *ap;
|
|
{
|
|
if (!vn_isdisk(ap->a_vp, NULL))
|
|
return (0);
|
|
|
|
return (vop_stdfsync(ap));
|
|
}
|
|
|
|
static int
|
|
devfs_getattr(ap)
|
|
struct vop_getattr_args /* {
|
|
struct vnode *a_vp;
|
|
struct vattr *a_vap;
|
|
struct ucred *a_cred;
|
|
struct thread *a_td;
|
|
} */ *ap;
|
|
{
|
|
struct vnode *vp = ap->a_vp;
|
|
struct vattr *vap = ap->a_vap;
|
|
int error = 0;
|
|
struct devfs_dirent *de;
|
|
struct cdev *dev;
|
|
|
|
de = vp->v_data;
|
|
if (vp->v_type == VDIR)
|
|
de = de->de_dir;
|
|
bzero((caddr_t) vap, sizeof(*vap));
|
|
vattr_null(vap);
|
|
vap->va_uid = de->de_uid;
|
|
vap->va_gid = de->de_gid;
|
|
vap->va_mode = de->de_mode;
|
|
if (vp->v_type == VLNK)
|
|
vap->va_size = strlen(de->de_symlink);
|
|
else if (vp->v_type == VDIR)
|
|
vap->va_size = vap->va_bytes = DEV_BSIZE;
|
|
else
|
|
vap->va_size = 0;
|
|
if (vp->v_type != VDIR)
|
|
vap->va_bytes = 0;
|
|
vap->va_blocksize = DEV_BSIZE;
|
|
vap->va_type = vp->v_type;
|
|
|
|
#define fix(aa) \
|
|
do { \
|
|
if ((aa).tv_sec == 0) { \
|
|
(aa).tv_sec = boottime.tv_sec; \
|
|
(aa).tv_nsec = boottime.tv_usec * 1000; \
|
|
} \
|
|
} while (0)
|
|
|
|
if (vp->v_type != VCHR) {
|
|
fix(de->de_atime);
|
|
vap->va_atime = de->de_atime;
|
|
fix(de->de_mtime);
|
|
vap->va_mtime = de->de_mtime;
|
|
fix(de->de_ctime);
|
|
vap->va_ctime = de->de_ctime;
|
|
} else {
|
|
dev = vp->v_rdev;
|
|
fix(dev->si_atime);
|
|
vap->va_atime = dev->si_atime;
|
|
fix(dev->si_mtime);
|
|
vap->va_mtime = dev->si_mtime;
|
|
fix(dev->si_ctime);
|
|
vap->va_ctime = dev->si_ctime;
|
|
vap->va_rdev = dev->si_udev;
|
|
}
|
|
vap->va_gen = 0;
|
|
vap->va_flags = 0;
|
|
vap->va_nlink = de->de_links;
|
|
vap->va_fileid = de->de_inode;
|
|
|
|
return (error);
|
|
}
|
|
|
|
/*
|
|
* Device ioctl operation.
|
|
*/
|
|
/* ARGSUSED */
|
|
static int
|
|
devfs_ioctl_f(struct file *fp, u_long com, void *data, struct ucred *cred, struct thread *td)
|
|
{
|
|
struct cdev *dev;
|
|
struct cdevsw *dsw;
|
|
struct vnode *vp;
|
|
struct vnode *vpold;
|
|
int error;
|
|
|
|
error = devfs_fp_check(fp, &dev, &dsw);
|
|
if (error)
|
|
return (error);
|
|
|
|
if (com == FIODTYPE) {
|
|
*(int *)data = dsw->d_flags & D_TYPEMASK;
|
|
dev_relthread(dev);
|
|
return (0);
|
|
}
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_lock(&Giant);
|
|
error = dsw->d_ioctl(dev, com, data, fp->f_flag, td);
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_unlock(&Giant);
|
|
dev_relthread(dev);
|
|
if (error == ENOIOCTL)
|
|
error = ENOTTY;
|
|
if (error == 0 && com == TIOCSCTTY) {
|
|
vp = fp->f_vnode;
|
|
|
|
/* Do nothing if reassigning same control tty */
|
|
sx_slock(&proctree_lock);
|
|
if (td->td_proc->p_session->s_ttyvp == vp) {
|
|
sx_sunlock(&proctree_lock);
|
|
return (0);
|
|
}
|
|
|
|
mtx_lock(&Giant);
|
|
|
|
vpold = td->td_proc->p_session->s_ttyvp;
|
|
VREF(vp);
|
|
SESS_LOCK(td->td_proc->p_session);
|
|
td->td_proc->p_session->s_ttyvp = vp;
|
|
SESS_UNLOCK(td->td_proc->p_session);
|
|
|
|
sx_sunlock(&proctree_lock);
|
|
|
|
/* Get rid of reference to old control tty */
|
|
if (vpold)
|
|
vrele(vpold);
|
|
mtx_unlock(&Giant);
|
|
}
|
|
return (error);
|
|
}
|
|
|
|
|
|
/* ARGSUSED */
|
|
static int
|
|
devfs_kqfilter_f(struct file *fp, struct knote *kn)
|
|
{
|
|
struct cdev *dev;
|
|
struct cdevsw *dsw;
|
|
int error;
|
|
|
|
error = devfs_fp_check(fp, &dev, &dsw);
|
|
if (error)
|
|
return (error);
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_lock(&Giant);
|
|
error = dsw->d_kqfilter(dev, kn);
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_unlock(&Giant);
|
|
dev_relthread(dev);
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
devfs_lookupx(ap)
|
|
struct vop_lookup_args /* {
|
|
struct vnode * a_dvp;
|
|
struct vnode ** a_vpp;
|
|
struct componentname * a_cnp;
|
|
} */ *ap;
|
|
{
|
|
struct componentname *cnp;
|
|
struct vnode *dvp, **vpp;
|
|
struct thread *td;
|
|
struct devfs_dirent *de, *dd;
|
|
struct devfs_dirent **dde;
|
|
struct devfs_mount *dmp;
|
|
struct cdev *cdev;
|
|
int error, flags, nameiop;
|
|
char specname[SPECNAMELEN + 1], *pname;
|
|
|
|
cnp = ap->a_cnp;
|
|
vpp = ap->a_vpp;
|
|
dvp = ap->a_dvp;
|
|
pname = cnp->cn_nameptr;
|
|
td = cnp->cn_thread;
|
|
flags = cnp->cn_flags;
|
|
nameiop = cnp->cn_nameiop;
|
|
dmp = VFSTODEVFS(dvp->v_mount);
|
|
dd = dvp->v_data;
|
|
|
|
*vpp = NULLVP;
|
|
cnp->cn_flags &= ~PDIRUNLOCK;
|
|
|
|
if ((flags & ISLASTCN) && nameiop == RENAME)
|
|
return (EOPNOTSUPP);
|
|
|
|
if (dvp->v_type != VDIR)
|
|
return (ENOTDIR);
|
|
|
|
if ((flags & ISDOTDOT) && (dvp->v_vflag & VV_ROOT))
|
|
return (EIO);
|
|
|
|
error = VOP_ACCESS(dvp, VEXEC, cnp->cn_cred, td);
|
|
if (error)
|
|
return (error);
|
|
|
|
if (cnp->cn_namelen == 1 && *pname == '.') {
|
|
if ((flags & ISLASTCN) && nameiop != LOOKUP)
|
|
return (EINVAL);
|
|
*vpp = dvp;
|
|
VREF(dvp);
|
|
return (0);
|
|
}
|
|
|
|
if (flags & ISDOTDOT) {
|
|
if ((flags & ISLASTCN) && nameiop != LOOKUP)
|
|
return (EINVAL);
|
|
VOP_UNLOCK(dvp, 0, td);
|
|
cnp->cn_flags |= PDIRUNLOCK;
|
|
de = TAILQ_FIRST(&dd->de_dlist); /* "." */
|
|
de = TAILQ_NEXT(de, de_list); /* ".." */
|
|
de = de->de_dir;
|
|
error = devfs_allocv(de, dvp->v_mount, vpp, td);
|
|
if (error || ((flags & LOCKPARENT) && (flags & ISLASTCN))) {
|
|
vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY, td);
|
|
cnp->cn_flags &= ~PDIRUNLOCK;
|
|
}
|
|
return (error);
|
|
}
|
|
|
|
devfs_populate(dmp);
|
|
dd = dvp->v_data;
|
|
TAILQ_FOREACH(de, &dd->de_dlist, de_list) {
|
|
if (cnp->cn_namelen != de->de_dirent->d_namlen)
|
|
continue;
|
|
if (bcmp(cnp->cn_nameptr, de->de_dirent->d_name,
|
|
de->de_dirent->d_namlen) != 0)
|
|
continue;
|
|
if (de->de_flags & DE_WHITEOUT)
|
|
goto notfound;
|
|
goto found;
|
|
}
|
|
|
|
if (nameiop == DELETE)
|
|
goto notfound;
|
|
|
|
/*
|
|
* OK, we didn't have an entry for the name we were asked for
|
|
* so we try to see if anybody can create it on demand.
|
|
*/
|
|
pname = devfs_fqpn(specname, dvp, cnp);
|
|
if (pname == NULL)
|
|
goto notfound;
|
|
|
|
cdev = NULL;
|
|
EVENTHANDLER_INVOKE(dev_clone, pname, strlen(pname), &cdev);
|
|
if (cdev == NULL)
|
|
goto notfound;
|
|
|
|
devfs_populate(dmp);
|
|
|
|
dde = devfs_itode(dmp, cdev->si_inode);
|
|
|
|
if (dde == NULL || *dde == NULL || *dde == DE_DELETED)
|
|
goto notfound;
|
|
|
|
if ((*dde)->de_flags & DE_WHITEOUT)
|
|
goto notfound;
|
|
|
|
de = *dde;
|
|
goto found;
|
|
|
|
notfound:
|
|
|
|
if ((nameiop == CREATE || nameiop == RENAME) &&
|
|
(flags & (LOCKPARENT | WANTPARENT)) && (flags & ISLASTCN)) {
|
|
cnp->cn_flags |= SAVENAME;
|
|
if (!(flags & LOCKPARENT)) {
|
|
VOP_UNLOCK(dvp, 0, td);
|
|
cnp->cn_flags |= PDIRUNLOCK;
|
|
}
|
|
return (EJUSTRETURN);
|
|
}
|
|
return (ENOENT);
|
|
|
|
|
|
found:
|
|
|
|
if ((cnp->cn_nameiop == DELETE) && (flags & ISLASTCN)) {
|
|
error = VOP_ACCESS(dvp, VWRITE, cnp->cn_cred, td);
|
|
if (error)
|
|
return (error);
|
|
if (*vpp == dvp) {
|
|
VREF(dvp);
|
|
*vpp = dvp;
|
|
return (0);
|
|
}
|
|
error = devfs_allocv(de, dvp->v_mount, vpp, td);
|
|
if (error)
|
|
return (error);
|
|
if (!(flags & LOCKPARENT)) {
|
|
VOP_UNLOCK(dvp, 0, td);
|
|
cnp->cn_flags |= PDIRUNLOCK;
|
|
}
|
|
return (0);
|
|
}
|
|
error = devfs_allocv(de, dvp->v_mount, vpp, td);
|
|
if (error)
|
|
return (error);
|
|
if (!(flags & LOCKPARENT) || !(flags & ISLASTCN)) {
|
|
VOP_UNLOCK(dvp, 0, td);
|
|
cnp->cn_flags |= PDIRUNLOCK;
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
devfs_lookup(struct vop_lookup_args *ap)
|
|
{
|
|
int j;
|
|
struct devfs_mount *dmp;
|
|
|
|
dmp = VFSTODEVFS(ap->a_dvp->v_mount);
|
|
lockmgr(&dmp->dm_lock, LK_SHARED, 0, curthread);
|
|
j = devfs_lookupx(ap);
|
|
lockmgr(&dmp->dm_lock, LK_RELEASE, 0, curthread);
|
|
return (j);
|
|
}
|
|
|
|
static int
|
|
devfs_mknod(struct vop_mknod_args *ap)
|
|
/*
|
|
struct vop_mknod_args {
|
|
struct vnodeop_desc *a_desc;
|
|
struct vnode *a_dvp;
|
|
struct vnode **a_vpp;
|
|
struct componentname *a_cnp;
|
|
struct vattr *a_vap;
|
|
}; */
|
|
{
|
|
struct componentname *cnp;
|
|
struct vnode *dvp, **vpp;
|
|
struct thread *td;
|
|
struct devfs_dirent *dd, *de;
|
|
struct devfs_mount *dmp;
|
|
int error;
|
|
|
|
dvp = ap->a_dvp;
|
|
dmp = VFSTODEVFS(dvp->v_mount);
|
|
lockmgr(&dmp->dm_lock, LK_EXCLUSIVE, 0, curthread);
|
|
|
|
cnp = ap->a_cnp;
|
|
vpp = ap->a_vpp;
|
|
td = cnp->cn_thread;
|
|
dd = dvp->v_data;
|
|
|
|
error = ENOENT;
|
|
TAILQ_FOREACH(de, &dd->de_dlist, de_list) {
|
|
if (cnp->cn_namelen != de->de_dirent->d_namlen)
|
|
continue;
|
|
if (bcmp(cnp->cn_nameptr, de->de_dirent->d_name,
|
|
de->de_dirent->d_namlen) != 0)
|
|
continue;
|
|
if (de->de_flags & DE_WHITEOUT)
|
|
break;
|
|
goto notfound;
|
|
}
|
|
if (de == NULL)
|
|
goto notfound;
|
|
de->de_flags &= ~DE_WHITEOUT;
|
|
error = devfs_allocv(de, dvp->v_mount, vpp, td);
|
|
notfound:
|
|
lockmgr(&dmp->dm_lock, LK_RELEASE, 0, curthread);
|
|
return (error);
|
|
}
|
|
|
|
/*
|
|
* Open a special file.
|
|
*/
|
|
/* ARGSUSED */
|
|
static int
|
|
devfs_open(ap)
|
|
struct vop_open_args /* {
|
|
struct vnode *a_vp;
|
|
int a_mode;
|
|
struct ucred *a_cred;
|
|
struct thread *a_td;
|
|
int a_fdidx;
|
|
} */ *ap;
|
|
{
|
|
struct thread *td = ap->a_td;
|
|
struct vnode *vp = ap->a_vp;
|
|
struct cdev *dev = vp->v_rdev;
|
|
struct file *fp;
|
|
int error;
|
|
struct cdevsw *dsw;
|
|
|
|
if (vp->v_type == VBLK)
|
|
return (ENXIO);
|
|
|
|
if (dev == NULL)
|
|
return (ENXIO);
|
|
|
|
/* Make this field valid before any I/O in d_open. */
|
|
if (dev->si_iosize_max == 0)
|
|
dev->si_iosize_max = DFLTPHYS;
|
|
|
|
if (vn_isdisk(vp, NULL) &&
|
|
ap->a_cred != FSCRED && (ap->a_mode & FWRITE)) {
|
|
/*
|
|
* When running in very secure mode, do not allow
|
|
* opens for writing of any disks.
|
|
* XXX: should be in geom_dev.c, but we lack the cred there.
|
|
*/
|
|
error = securelevel_ge(td->td_ucred, 2);
|
|
if (error)
|
|
return (error);
|
|
}
|
|
|
|
dsw = dev_refthread(dev);
|
|
if (dsw == NULL)
|
|
return (ENXIO);
|
|
|
|
/* XXX: Special casing of ttys for deadfs. Probably redundant. */
|
|
if (dsw->d_flags & D_TTY)
|
|
vp->v_vflag |= VV_ISTTY;
|
|
|
|
VOP_UNLOCK(vp, 0, td);
|
|
|
|
if(!(dsw->d_flags & D_NEEDGIANT)) {
|
|
DROP_GIANT();
|
|
if (dsw->d_fdopen != NULL)
|
|
error = dsw->d_fdopen(dev, ap->a_mode, td, ap->a_fdidx);
|
|
else
|
|
error = dsw->d_open(dev, ap->a_mode, S_IFCHR, td);
|
|
PICKUP_GIANT();
|
|
} else if (dsw->d_fdopen != NULL)
|
|
error = dsw->d_fdopen(dev, ap->a_mode, td, ap->a_fdidx);
|
|
else
|
|
error = dsw->d_open(dev, ap->a_mode, S_IFCHR, td);
|
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
|
|
|
dev_relthread(dev);
|
|
|
|
if (error)
|
|
return (error);
|
|
|
|
if (ap->a_fdidx >= 0) {
|
|
/*
|
|
* This is a pretty disgustingly long chain, but I am not
|
|
* sure there is any better way. Passing the fdidx into
|
|
* VOP_OPEN() offers us more information than just passing
|
|
* the file *.
|
|
*/
|
|
fp = ap->a_td->td_proc->p_fd->fd_ofiles[ap->a_fdidx];
|
|
if (fp->f_ops == &badfileops) {
|
|
#if 0
|
|
printf("devfs_open(%s)\n", devtoname(dev));
|
|
#endif
|
|
fp->f_ops = &devfs_ops_f;
|
|
fp->f_data = dev;
|
|
}
|
|
}
|
|
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
devfs_pathconf(ap)
|
|
struct vop_pathconf_args /* {
|
|
struct vnode *a_vp;
|
|
int a_name;
|
|
int *a_retval;
|
|
} */ *ap;
|
|
{
|
|
|
|
switch (ap->a_name) {
|
|
case _PC_NAME_MAX:
|
|
*ap->a_retval = NAME_MAX;
|
|
return (0);
|
|
case _PC_PATH_MAX:
|
|
*ap->a_retval = PATH_MAX;
|
|
return (0);
|
|
case _PC_MAC_PRESENT:
|
|
#ifdef MAC
|
|
/*
|
|
* If MAC is enabled, devfs automatically supports
|
|
* trivial non-persistant label storage.
|
|
*/
|
|
*ap->a_retval = 1;
|
|
#else
|
|
*ap->a_retval = 0;
|
|
#endif
|
|
return (0);
|
|
default:
|
|
return (vop_stdpathconf(ap));
|
|
}
|
|
/* NOTREACHED */
|
|
}
|
|
|
|
/* ARGSUSED */
|
|
static int
|
|
devfs_poll_f(struct file *fp, int events, struct ucred *cred, struct thread *td)
|
|
{
|
|
struct cdev *dev;
|
|
struct cdevsw *dsw;
|
|
int error;
|
|
|
|
error = devfs_fp_check(fp, &dev, &dsw);
|
|
if (error)
|
|
return (error);
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_lock(&Giant);
|
|
error = dsw->d_poll(dev, events, td);
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_unlock(&Giant);
|
|
dev_relthread(dev);
|
|
return(error);
|
|
}
|
|
|
|
/*
|
|
* Print out the contents of a special device vnode.
|
|
*/
|
|
static int
|
|
devfs_print(ap)
|
|
struct vop_print_args /* {
|
|
struct vnode *a_vp;
|
|
} */ *ap;
|
|
{
|
|
|
|
printf("\tdev %s\n", devtoname(ap->a_vp->v_rdev));
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* Vnode op for read
|
|
*/
|
|
/* ARGSUSED */
|
|
static int
|
|
devfs_read_f(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td)
|
|
{
|
|
struct cdev *dev;
|
|
int ioflag, error, resid;
|
|
struct cdevsw *dsw;
|
|
|
|
error = devfs_fp_check(fp, &dev, &dsw);
|
|
if (error)
|
|
return (error);
|
|
resid = uio->uio_resid;
|
|
ioflag = 0;
|
|
if (fp->f_flag & FNONBLOCK)
|
|
ioflag |= IO_NDELAY;
|
|
if (fp->f_flag & O_DIRECT)
|
|
ioflag |= IO_DIRECT;
|
|
|
|
if ((flags & FOF_OFFSET) == 0)
|
|
uio->uio_offset = fp->f_offset;
|
|
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_lock(&Giant);
|
|
error = dsw->d_read(dev, uio, ioflag);
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_unlock(&Giant);
|
|
dev_relthread(dev);
|
|
if (uio->uio_resid != resid || (error == 0 && resid != 0))
|
|
vfs_timestamp(&dev->si_atime);
|
|
|
|
if ((flags & FOF_OFFSET) == 0)
|
|
fp->f_offset = uio->uio_offset;
|
|
fp->f_nextoff = uio->uio_offset;
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
devfs_readdir(ap)
|
|
struct vop_readdir_args /* {
|
|
struct vnode *a_vp;
|
|
struct uio *a_uio;
|
|
struct ucred *a_cred;
|
|
int *a_eofflag;
|
|
int *a_ncookies;
|
|
u_long **a_cookies;
|
|
} */ *ap;
|
|
{
|
|
int error;
|
|
struct uio *uio;
|
|
struct dirent *dp;
|
|
struct devfs_dirent *dd;
|
|
struct devfs_dirent *de;
|
|
struct devfs_mount *dmp;
|
|
off_t off, oldoff;
|
|
int ncookies = 0;
|
|
u_long *cookiebuf, *cookiep;
|
|
struct dirent *dps, *dpe;
|
|
|
|
if (ap->a_vp->v_type != VDIR)
|
|
return (ENOTDIR);
|
|
|
|
uio = ap->a_uio;
|
|
if (uio->uio_offset < 0)
|
|
return (EINVAL);
|
|
|
|
dmp = VFSTODEVFS(ap->a_vp->v_mount);
|
|
lockmgr(&dmp->dm_lock, LK_SHARED, 0, curthread);
|
|
devfs_populate(dmp);
|
|
error = 0;
|
|
de = ap->a_vp->v_data;
|
|
off = 0;
|
|
oldoff = uio->uio_offset;
|
|
TAILQ_FOREACH(dd, &de->de_dlist, de_list) {
|
|
if (dd->de_flags & DE_WHITEOUT)
|
|
continue;
|
|
if (dd->de_dirent->d_type == DT_DIR)
|
|
de = dd->de_dir;
|
|
else
|
|
de = dd;
|
|
dp = dd->de_dirent;
|
|
if (dp->d_reclen > uio->uio_resid)
|
|
break;
|
|
dp->d_fileno = de->de_inode;
|
|
if (off >= uio->uio_offset) {
|
|
ncookies++;
|
|
error = uiomove(dp, dp->d_reclen, uio);
|
|
if (error)
|
|
break;
|
|
}
|
|
off += dp->d_reclen;
|
|
}
|
|
if( !error && ap->a_ncookies != NULL && ap->a_cookies != NULL ) {
|
|
MALLOC(cookiebuf, u_long *, ncookies * sizeof(u_long),
|
|
M_TEMP, M_WAITOK);
|
|
cookiep = cookiebuf;
|
|
dps = (struct dirent *)((char *)uio->uio_iov->iov_base -
|
|
(uio->uio_offset - oldoff));
|
|
dpe = (struct dirent *) uio->uio_iov->iov_base;
|
|
for( dp = dps;
|
|
dp < dpe;
|
|
dp = (struct dirent *)((caddr_t) dp + dp->d_reclen)) {
|
|
oldoff += dp->d_reclen;
|
|
*cookiep++ = (u_long) oldoff;
|
|
}
|
|
*ap->a_ncookies = ncookies;
|
|
*ap->a_cookies = cookiebuf;
|
|
}
|
|
lockmgr(&dmp->dm_lock, LK_RELEASE, 0, curthread);
|
|
uio->uio_offset = off;
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
devfs_readlink(ap)
|
|
struct vop_readlink_args /* {
|
|
struct vnode *a_vp;
|
|
struct uio *a_uio;
|
|
struct ucred *a_cead;
|
|
} */ *ap;
|
|
{
|
|
int error;
|
|
struct devfs_dirent *de;
|
|
|
|
de = ap->a_vp->v_data;
|
|
error = uiomove(de->de_symlink, strlen(de->de_symlink), ap->a_uio);
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
devfs_reclaim(ap)
|
|
struct vop_reclaim_args /* {
|
|
struct vnode *a_vp;
|
|
} */ *ap;
|
|
{
|
|
struct vnode *vp = ap->a_vp;
|
|
struct devfs_dirent *de;
|
|
int i;
|
|
|
|
de = vp->v_data;
|
|
if (de != NULL)
|
|
de->de_vnode = NULL;
|
|
vp->v_data = NULL;
|
|
if (vp->v_rdev != NULL) {
|
|
i = vcount(vp);
|
|
if ((vp->v_rdev->si_flags & SI_CHEAPCLONE) && i == 0 &&
|
|
(vp->v_rdev->si_flags & SI_NAMED))
|
|
destroy_dev(vp->v_rdev);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
devfs_remove(ap)
|
|
struct vop_remove_args /* {
|
|
struct vnode *a_dvp;
|
|
struct vnode *a_vp;
|
|
struct componentname *a_cnp;
|
|
} */ *ap;
|
|
{
|
|
struct vnode *vp = ap->a_vp;
|
|
struct devfs_dirent *dd;
|
|
struct devfs_dirent *de;
|
|
struct devfs_mount *dmp = VFSTODEVFS(vp->v_mount);
|
|
|
|
lockmgr(&dmp->dm_lock, LK_EXCLUSIVE, 0, curthread);
|
|
dd = ap->a_dvp->v_data;
|
|
de = vp->v_data;
|
|
if (de->de_dirent->d_type == DT_LNK) {
|
|
TAILQ_REMOVE(&dd->de_dlist, de, de_list);
|
|
if (de->de_vnode)
|
|
de->de_vnode->v_data = NULL;
|
|
#ifdef MAC
|
|
mac_destroy_devfsdirent(de);
|
|
#endif
|
|
FREE(de, M_DEVFS);
|
|
} else {
|
|
de->de_flags |= DE_WHITEOUT;
|
|
}
|
|
lockmgr(&dmp->dm_lock, LK_RELEASE, 0, curthread);
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* Revoke is called on a tty when a terminal session ends. The vnode
|
|
* is orphaned by setting v_op to deadfs so we need to let go of it
|
|
* as well so that we create a new one next time around.
|
|
*/
|
|
static int
|
|
devfs_revoke(ap)
|
|
struct vop_revoke_args /* {
|
|
struct vnode *a_vp;
|
|
int a_flags;
|
|
} */ *ap;
|
|
{
|
|
struct vnode *vp = ap->a_vp;
|
|
struct vnode *vq;
|
|
struct devfs_dirent *de;
|
|
struct cdev *dev;
|
|
|
|
KASSERT((ap->a_flags & REVOKEALL) != 0, ("devfs_revoke !REVOKEALL"));
|
|
de = vp->v_data;
|
|
de->de_vnode = NULL;
|
|
|
|
VI_LOCK(vp);
|
|
/*
|
|
* If a vgone (or vclean) is already in progress,
|
|
* wait until it is done and return.
|
|
*/
|
|
if (vp->v_iflag & VI_XLOCK) {
|
|
vp->v_iflag |= VI_XWANT;
|
|
msleep(vp, VI_MTX(vp), PINOD | PDROP, "vop_revokeall", 0);
|
|
return (0);
|
|
}
|
|
VI_UNLOCK(vp);
|
|
dev = vp->v_rdev;
|
|
for (;;) {
|
|
dev_lock();
|
|
vq = SLIST_FIRST(&dev->si_hlist);
|
|
dev_unlock();
|
|
if (vq == NULL)
|
|
break;
|
|
vgone(vq);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
devfs_rioctl(ap)
|
|
struct vop_ioctl_args /* {
|
|
struct vnode *a_vp;
|
|
u_long a_command;
|
|
caddr_t a_data;
|
|
int a_fflag;
|
|
struct ucred *a_cred;
|
|
struct thread *a_td;
|
|
} */ *ap;
|
|
{
|
|
int error;
|
|
struct devfs_mount *dmp;
|
|
|
|
dmp = VFSTODEVFS(ap->a_vp->v_mount);
|
|
lockmgr(&dmp->dm_lock, LK_SHARED, 0, curthread);
|
|
devfs_populate(dmp);
|
|
lockmgr(&dmp->dm_lock, LK_RELEASE, 0, curthread);
|
|
error = devfs_rules_ioctl(ap->a_vp->v_mount, ap->a_command, ap->a_data,
|
|
ap->a_td);
|
|
return (error);
|
|
}
|
|
|
|
static int
|
|
devfs_rread(ap)
|
|
struct vop_read_args /* {
|
|
struct vnode *a_vp;
|
|
struct uio *a_uio;
|
|
int a_ioflag;
|
|
struct ucred *a_cred;
|
|
} */ *ap;
|
|
{
|
|
|
|
if (ap->a_vp->v_type != VDIR)
|
|
return (EINVAL);
|
|
return (VOP_READDIR(ap->a_vp, ap->a_uio, ap->a_cred, NULL, NULL, NULL));
|
|
}
|
|
|
|
static int
|
|
devfs_setattr(ap)
|
|
struct vop_setattr_args /* {
|
|
struct vnode *a_vp;
|
|
struct vattr *a_vap;
|
|
struct ucred *a_cred;
|
|
struct proc *a_p;
|
|
} */ *ap;
|
|
{
|
|
struct devfs_dirent *de;
|
|
struct vattr *vap;
|
|
struct vnode *vp;
|
|
int c, error;
|
|
uid_t uid;
|
|
gid_t gid;
|
|
|
|
vap = ap->a_vap;
|
|
vp = ap->a_vp;
|
|
if ((vap->va_type != VNON) ||
|
|
(vap->va_nlink != VNOVAL) ||
|
|
(vap->va_fsid != VNOVAL) ||
|
|
(vap->va_fileid != VNOVAL) ||
|
|
(vap->va_blocksize != VNOVAL) ||
|
|
(vap->va_flags != VNOVAL && vap->va_flags != 0) ||
|
|
(vap->va_rdev != VNOVAL) ||
|
|
((int)vap->va_bytes != VNOVAL) ||
|
|
(vap->va_gen != VNOVAL)) {
|
|
return (EINVAL);
|
|
}
|
|
|
|
de = vp->v_data;
|
|
if (vp->v_type == VDIR)
|
|
de = de->de_dir;
|
|
|
|
error = c = 0;
|
|
if (vap->va_uid == (uid_t)VNOVAL)
|
|
uid = de->de_uid;
|
|
else
|
|
uid = vap->va_uid;
|
|
if (vap->va_gid == (gid_t)VNOVAL)
|
|
gid = de->de_gid;
|
|
else
|
|
gid = vap->va_gid;
|
|
if (uid != de->de_uid || gid != de->de_gid) {
|
|
if (((ap->a_cred->cr_uid != de->de_uid) || uid != de->de_uid ||
|
|
(gid != de->de_gid && !groupmember(gid, ap->a_cred))) &&
|
|
(error = suser_cred(ap->a_td->td_ucred, SUSER_ALLOWJAIL)) != 0)
|
|
return (error);
|
|
de->de_uid = uid;
|
|
de->de_gid = gid;
|
|
c = 1;
|
|
}
|
|
|
|
if (vap->va_mode != (mode_t)VNOVAL) {
|
|
if ((ap->a_cred->cr_uid != de->de_uid) &&
|
|
(error = suser_cred(ap->a_td->td_ucred, SUSER_ALLOWJAIL)))
|
|
return (error);
|
|
de->de_mode = vap->va_mode;
|
|
c = 1;
|
|
}
|
|
|
|
if (vap->va_atime.tv_sec != VNOVAL || vap->va_mtime.tv_sec != VNOVAL) {
|
|
/* See the comment in ufs_vnops::ufs_setattr(). */
|
|
if ((error = VOP_ACCESS(vp, VADMIN, ap->a_cred, ap->a_td)) &&
|
|
((vap->va_vaflags & VA_UTIMES_NULL) == 0 ||
|
|
(error = VOP_ACCESS(vp, VWRITE, ap->a_cred, ap->a_td))))
|
|
return (error);
|
|
if (vap->va_atime.tv_sec != VNOVAL) {
|
|
if (vp->v_type == VCHR)
|
|
vp->v_rdev->si_atime = vap->va_atime;
|
|
else
|
|
de->de_atime = vap->va_atime;
|
|
}
|
|
if (vap->va_mtime.tv_sec != VNOVAL) {
|
|
if (vp->v_type == VCHR)
|
|
vp->v_rdev->si_mtime = vap->va_mtime;
|
|
else
|
|
de->de_mtime = vap->va_mtime;
|
|
}
|
|
c = 1;
|
|
}
|
|
|
|
if (c) {
|
|
if (vp->v_type == VCHR)
|
|
vfs_timestamp(&vp->v_rdev->si_ctime);
|
|
else
|
|
vfs_timestamp(&de->de_mtime);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
#ifdef MAC
|
|
static int
|
|
devfs_setlabel(ap)
|
|
struct vop_setlabel_args /* {
|
|
struct vnode *a_vp;
|
|
struct mac *a_label;
|
|
struct ucred *a_cred;
|
|
struct thread *a_td;
|
|
} */ *ap;
|
|
{
|
|
struct vnode *vp;
|
|
struct devfs_dirent *de;
|
|
|
|
vp = ap->a_vp;
|
|
de = vp->v_data;
|
|
|
|
mac_relabel_vnode(ap->a_cred, vp, ap->a_label);
|
|
mac_update_devfsdirent(vp->v_mount, de, vp);
|
|
|
|
return (0);
|
|
}
|
|
#endif
|
|
|
|
static int
|
|
devfs_stat_f(struct file *fp, struct stat *sb, struct ucred *cred, struct thread *td)
|
|
{
|
|
|
|
return (vnops.fo_stat(fp, sb, cred, td));
|
|
}
|
|
|
|
static int
|
|
devfs_symlink(ap)
|
|
struct vop_symlink_args /* {
|
|
struct vnode *a_dvp;
|
|
struct vnode **a_vpp;
|
|
struct componentname *a_cnp;
|
|
struct vattr *a_vap;
|
|
char *a_target;
|
|
} */ *ap;
|
|
{
|
|
int i, error;
|
|
struct devfs_dirent *dd;
|
|
struct devfs_dirent *de;
|
|
struct devfs_mount *dmp;
|
|
struct thread *td;
|
|
|
|
td = ap->a_cnp->cn_thread;
|
|
KASSERT(td == curthread, ("devfs_symlink: td != curthread"));
|
|
error = suser(td);
|
|
if (error)
|
|
return(error);
|
|
dmp = VFSTODEVFS(ap->a_dvp->v_mount);
|
|
dd = ap->a_dvp->v_data;
|
|
de = devfs_newdirent(ap->a_cnp->cn_nameptr, ap->a_cnp->cn_namelen);
|
|
de->de_uid = 0;
|
|
de->de_gid = 0;
|
|
de->de_mode = 0755;
|
|
de->de_inode = dmp->dm_inode++;
|
|
de->de_dirent->d_type = DT_LNK;
|
|
i = strlen(ap->a_target) + 1;
|
|
MALLOC(de->de_symlink, char *, i, M_DEVFS, M_WAITOK);
|
|
bcopy(ap->a_target, de->de_symlink, i);
|
|
lockmgr(&dmp->dm_lock, LK_EXCLUSIVE, 0, td);
|
|
#ifdef MAC
|
|
mac_create_devfs_symlink(ap->a_cnp->cn_cred, dmp->dm_mount, dd, de);
|
|
#endif
|
|
TAILQ_INSERT_TAIL(&dd->de_dlist, de, de_list);
|
|
devfs_allocv(de, ap->a_dvp->v_mount, ap->a_vpp, td);
|
|
lockmgr(&dmp->dm_lock, LK_RELEASE, 0, td);
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* Vnode op for write
|
|
*/
|
|
/* ARGSUSED */
|
|
static int
|
|
devfs_write_f(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td)
|
|
{
|
|
struct cdev *dev;
|
|
struct vnode *vp;
|
|
int error, ioflag, resid;
|
|
struct cdevsw *dsw;
|
|
|
|
error = devfs_fp_check(fp, &dev, &dsw);
|
|
if (error)
|
|
return (error);
|
|
KASSERT(uio->uio_td == td, ("uio_td %p is not td %p", uio->uio_td, td));
|
|
vp = fp->f_vnode;
|
|
ioflag = IO_UNIT;
|
|
if (fp->f_flag & FNONBLOCK)
|
|
ioflag |= IO_NDELAY;
|
|
if (fp->f_flag & O_DIRECT)
|
|
ioflag |= IO_DIRECT;
|
|
if ((fp->f_flag & O_FSYNC) ||
|
|
(vp->v_mount && (vp->v_mount->mnt_flag & MNT_SYNCHRONOUS)))
|
|
ioflag |= IO_SYNC;
|
|
if ((flags & FOF_OFFSET) == 0)
|
|
uio->uio_offset = fp->f_offset;
|
|
|
|
resid = uio->uio_resid;
|
|
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_lock(&Giant);
|
|
error = dsw->d_write(dev, uio, ioflag);
|
|
if (dsw->d_flags & D_NEEDGIANT)
|
|
mtx_unlock(&Giant);
|
|
dev_relthread(dev);
|
|
if (uio->uio_resid != resid || (error == 0 && resid != 0)) {
|
|
vfs_timestamp(&dev->si_ctime);
|
|
dev->si_mtime = dev->si_ctime;
|
|
}
|
|
|
|
if ((flags & FOF_OFFSET) == 0)
|
|
fp->f_offset = uio->uio_offset;
|
|
fp->f_nextoff = uio->uio_offset;
|
|
return (error);
|
|
}
|
|
|
|
static struct vop_vector devfs_vnodeops = {
|
|
.vop_default = &default_vnodeops,
|
|
.vop_access = devfs_access,
|
|
.vop_getattr = devfs_getattr,
|
|
.vop_ioctl = devfs_rioctl,
|
|
.vop_lookup = devfs_lookup,
|
|
.vop_mknod = devfs_mknod,
|
|
.vop_pathconf = devfs_pathconf,
|
|
.vop_read = devfs_rread,
|
|
.vop_readdir = devfs_readdir,
|
|
.vop_readlink = devfs_readlink,
|
|
.vop_reclaim = devfs_reclaim,
|
|
.vop_remove = devfs_remove,
|
|
.vop_revoke = devfs_revoke,
|
|
.vop_setattr = devfs_setattr,
|
|
#ifdef MAC
|
|
.vop_setlabel = devfs_setlabel,
|
|
#endif
|
|
.vop_symlink = devfs_symlink,
|
|
};
|
|
|
|
struct vop_vector devfs_specops = {
|
|
.vop_default = &default_vnodeops,
|
|
.vop_access = devfs_access,
|
|
.vop_advlock = devfs_advlock,
|
|
.vop_bmap = VOP_PANIC,
|
|
.vop_close = devfs_close,
|
|
.vop_create = VOP_PANIC,
|
|
.vop_fsync = devfs_fsync,
|
|
.vop_getattr = devfs_getattr,
|
|
.vop_lease = VOP_NULL,
|
|
.vop_link = VOP_PANIC,
|
|
.vop_mkdir = VOP_PANIC,
|
|
.vop_mknod = VOP_PANIC,
|
|
.vop_open = devfs_open,
|
|
.vop_pathconf = devfs_pathconf,
|
|
.vop_print = devfs_print,
|
|
.vop_readdir = VOP_PANIC,
|
|
.vop_readlink = VOP_PANIC,
|
|
.vop_reallocblks = VOP_PANIC,
|
|
.vop_reclaim = devfs_reclaim,
|
|
.vop_remove = devfs_remove,
|
|
.vop_rename = VOP_PANIC,
|
|
.vop_revoke = devfs_revoke,
|
|
.vop_rmdir = VOP_PANIC,
|
|
.vop_setattr = devfs_setattr,
|
|
#ifdef MAC
|
|
.vop_setlabel = devfs_setlabel,
|
|
#endif
|
|
.vop_strategy = VOP_PANIC,
|
|
.vop_symlink = VOP_PANIC,
|
|
};
|