1994-05-24 10:09:53 +00:00
|
|
|
/*
|
1997-02-10 02:22:35 +00:00
|
|
|
* Copyright (c) 1990, 1993, 1995
|
1994-05-24 10:09:53 +00:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. 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.
|
|
|
|
*
|
1997-02-10 02:22:35 +00:00
|
|
|
* @(#)fifo_vnops.c 8.10 (Berkeley) 5/27/95
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/event.h>
|
|
|
|
#include <sys/filio.h>
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
#include <sys/file.h>
|
1997-02-12 16:26:37 +00:00
|
|
|
#include <sys/kernel.h>
|
1997-12-05 19:55:52 +00:00
|
|
|
#include <sys/lock.h>
|
2002-01-13 21:37:49 +00:00
|
|
|
#include <sys/mutex.h>
|
1997-10-12 20:26:33 +00:00
|
|
|
#include <sys/malloc.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/poll.h>
|
2001-09-12 08:38:13 +00:00
|
|
|
#include <sys/proc.h> /* XXXKSE */
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/signalvar.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/socketvar.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/sx.h>
|
|
|
|
#include <sys/systm.h>
|
1995-03-16 18:17:34 +00:00
|
|
|
#include <sys/un.h>
|
2002-04-30 01:54:54 +00:00
|
|
|
#include <sys/unistd.h>
|
|
|
|
#include <sys/vnode.h>
|
2001-05-23 09:42:29 +00:00
|
|
|
#include <fs/fifofs/fifo.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This structure is associated with the FIFO vnode and stores
|
|
|
|
* the state associated with the FIFO.
|
|
|
|
*/
|
|
|
|
struct fifoinfo {
|
|
|
|
struct socket *fi_readsock;
|
|
|
|
struct socket *fi_writesock;
|
|
|
|
long fi_readers;
|
|
|
|
long fi_writers;
|
|
|
|
};
|
|
|
|
|
2002-03-19 22:20:14 +00:00
|
|
|
static int fifo_print(struct vop_print_args *);
|
|
|
|
static int fifo_lookup(struct vop_lookup_args *);
|
|
|
|
static int fifo_open(struct vop_open_args *);
|
|
|
|
static int fifo_close(struct vop_close_args *);
|
|
|
|
static int fifo_read(struct vop_read_args *);
|
|
|
|
static int fifo_write(struct vop_write_args *);
|
|
|
|
static int fifo_ioctl(struct vop_ioctl_args *);
|
|
|
|
static int fifo_poll(struct vop_poll_args *);
|
|
|
|
static int fifo_kqfilter(struct vop_kqfilter_args *);
|
|
|
|
static int fifo_pathconf(struct vop_pathconf_args *);
|
|
|
|
static int fifo_advlock(struct vop_advlock_args *);
|
1997-10-15 13:24:07 +00:00
|
|
|
|
2000-04-16 18:53:38 +00:00
|
|
|
static void filt_fifordetach(struct knote *kn);
|
|
|
|
static int filt_fiforead(struct knote *kn, long hint);
|
|
|
|
static void filt_fifowdetach(struct knote *kn);
|
|
|
|
static int filt_fifowrite(struct knote *kn, long hint);
|
|
|
|
|
2001-02-15 16:34:11 +00:00
|
|
|
static struct filterops fiforead_filtops =
|
|
|
|
{ 1, NULL, filt_fifordetach, filt_fiforead };
|
|
|
|
static struct filterops fifowrite_filtops =
|
|
|
|
{ 1, NULL, filt_fifowdetach, filt_fifowrite };
|
1995-12-14 09:55:16 +00:00
|
|
|
|
1995-11-09 08:17:23 +00:00
|
|
|
vop_t **fifo_vnodeop_p;
|
1995-12-14 09:55:16 +00:00
|
|
|
static struct vnodeopv_entry_desc fifo_vnodeop_entries[] = {
|
1997-10-26 20:55:39 +00:00
|
|
|
{ &vop_default_desc, (vop_t *) vop_defaultop },
|
|
|
|
{ &vop_access_desc, (vop_t *) vop_ebadf },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_advlock_desc, (vop_t *) fifo_advlock },
|
|
|
|
{ &vop_close_desc, (vop_t *) fifo_close },
|
2002-05-02 19:13:44 +00:00
|
|
|
{ &vop_create_desc, (vop_t *) vop_panic },
|
1997-10-26 20:55:39 +00:00
|
|
|
{ &vop_getattr_desc, (vop_t *) vop_ebadf },
|
2000-08-18 10:01:02 +00:00
|
|
|
{ &vop_getwritemount_desc, (vop_t *) vop_stdgetwritemount },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_ioctl_desc, (vop_t *) fifo_ioctl },
|
2001-06-06 17:38:36 +00:00
|
|
|
{ &vop_kqfilter_desc, (vop_t *) fifo_kqfilter },
|
1997-10-26 20:55:39 +00:00
|
|
|
{ &vop_lease_desc, (vop_t *) vop_null },
|
2002-05-02 19:13:44 +00:00
|
|
|
{ &vop_link_desc, (vop_t *) vop_panic },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_lookup_desc, (vop_t *) fifo_lookup },
|
2002-05-02 19:13:44 +00:00
|
|
|
{ &vop_mkdir_desc, (vop_t *) vop_panic },
|
|
|
|
{ &vop_mknod_desc, (vop_t *) vop_panic },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_open_desc, (vop_t *) fifo_open },
|
1997-12-13 12:58:09 +00:00
|
|
|
{ &vop_pathconf_desc, (vop_t *) fifo_pathconf },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_poll_desc, (vop_t *) fifo_poll },
|
|
|
|
{ &vop_print_desc, (vop_t *) fifo_print },
|
|
|
|
{ &vop_read_desc, (vop_t *) fifo_read },
|
2002-05-02 19:13:44 +00:00
|
|
|
{ &vop_readdir_desc, (vop_t *) vop_panic },
|
|
|
|
{ &vop_readlink_desc, (vop_t *) vop_panic },
|
|
|
|
{ &vop_reallocblks_desc, (vop_t *) vop_panic },
|
1997-10-26 20:55:39 +00:00
|
|
|
{ &vop_reclaim_desc, (vop_t *) vop_null },
|
2002-05-02 19:13:44 +00:00
|
|
|
{ &vop_remove_desc, (vop_t *) vop_panic },
|
|
|
|
{ &vop_rename_desc, (vop_t *) vop_panic },
|
|
|
|
{ &vop_rmdir_desc, (vop_t *) vop_panic },
|
1997-10-26 20:55:39 +00:00
|
|
|
{ &vop_setattr_desc, (vop_t *) vop_ebadf },
|
2002-05-02 19:13:44 +00:00
|
|
|
{ &vop_symlink_desc, (vop_t *) vop_panic },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_write_desc, (vop_t *) fifo_write },
|
1995-11-09 08:17:23 +00:00
|
|
|
{ NULL, NULL }
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
1995-12-14 09:55:16 +00:00
|
|
|
static struct vnodeopv_desc fifo_vnodeop_opv_desc =
|
1994-05-24 10:09:53 +00:00
|
|
|
{ &fifo_vnodeop_p, fifo_vnodeop_entries };
|
|
|
|
|
1994-09-21 03:47:43 +00:00
|
|
|
VNODEOP_SET(fifo_vnodeop_opv_desc);
|
|
|
|
|
1997-10-15 13:24:07 +00:00
|
|
|
int
|
|
|
|
fifo_vnoperate(ap)
|
|
|
|
struct vop_generic_args /* {
|
|
|
|
struct vnodeop_desc *a_desc;
|
|
|
|
<other random data follows, presumably>
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
return (VOCALL(fifo_vnodeop_p, ap->a_desc->vdesc_offset, ap));
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Trivial lookup routine that always fails.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
fifo_lookup(ap)
|
|
|
|
struct vop_lookup_args /* {
|
|
|
|
struct vnode * a_dvp;
|
|
|
|
struct vnode ** a_vpp;
|
|
|
|
struct componentname * a_cnp;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
1995-05-30 08:16:23 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
*ap->a_vpp = NULL;
|
|
|
|
return (ENOTDIR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open called to set up a new instance of a fifo or
|
|
|
|
* to find an active instance of a fifo.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
fifo_open(ap)
|
|
|
|
struct vop_open_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_mode;
|
|
|
|
struct ucred *a_cred;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *a_td;
|
1994-05-24 10:09:53 +00:00
|
|
|
} */ *ap;
|
|
|
|
{
|
1997-02-10 02:22:35 +00:00
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
struct fifoinfo *fip;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td = ap->a_td;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct socket *rso, *wso;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((fip = vp->v_fifoinfo) == NULL) {
|
|
|
|
MALLOC(fip, struct fifoinfo *, sizeof(*fip), M_VNODE, M_WAITOK);
|
|
|
|
vp->v_fifoinfo = fip;
|
2001-12-31 17:45:16 +00:00
|
|
|
error = socreate(AF_LOCAL, &rso, SOCK_STREAM, 0,
|
2002-02-27 18:32:23 +00:00
|
|
|
ap->a_td->td_ucred, ap->a_td);
|
1994-10-02 17:48:58 +00:00
|
|
|
if (error) {
|
1994-05-24 10:09:53 +00:00
|
|
|
free(fip, M_VNODE);
|
|
|
|
vp->v_fifoinfo = NULL;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
fip->fi_readsock = rso;
|
2001-12-31 17:45:16 +00:00
|
|
|
error = socreate(AF_LOCAL, &wso, SOCK_STREAM, 0,
|
2002-02-27 18:32:23 +00:00
|
|
|
ap->a_td->td_ucred, ap->a_td);
|
1994-10-02 17:48:58 +00:00
|
|
|
if (error) {
|
1994-05-24 10:09:53 +00:00
|
|
|
(void)soclose(rso);
|
|
|
|
free(fip, M_VNODE);
|
|
|
|
vp->v_fifoinfo = NULL;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
fip->fi_writesock = wso;
|
1995-05-30 08:16:23 +00:00
|
|
|
error = unp_connect2(wso, rso);
|
1994-10-02 17:48:58 +00:00
|
|
|
if (error) {
|
1994-05-24 10:09:53 +00:00
|
|
|
(void)soclose(wso);
|
|
|
|
(void)soclose(rso);
|
|
|
|
free(fip, M_VNODE);
|
|
|
|
vp->v_fifoinfo = NULL;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
fip->fi_readers = fip->fi_writers = 0;
|
1997-12-19 18:58:14 +00:00
|
|
|
wso->so_snd.sb_lowat = PIPE_BUF;
|
2002-01-14 22:03:48 +00:00
|
|
|
rso->so_state |= SS_CANTRCVMORE;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
if (ap->a_mode & FREAD) {
|
|
|
|
fip->fi_readers++;
|
|
|
|
if (fip->fi_readers == 1) {
|
1995-08-06 16:14:21 +00:00
|
|
|
fip->fi_writesock->so_state &= ~SS_CANTSENDMORE;
|
2001-06-06 17:38:36 +00:00
|
|
|
if (fip->fi_writers > 0) {
|
1995-08-06 16:14:21 +00:00
|
|
|
wakeup((caddr_t)&fip->fi_writers);
|
2001-06-06 17:38:36 +00:00
|
|
|
sowwakeup(fip->fi_writesock);
|
|
|
|
}
|
1995-08-06 16:14:21 +00:00
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
}
|
|
|
|
if (ap->a_mode & FWRITE) {
|
|
|
|
fip->fi_writers++;
|
|
|
|
if (fip->fi_writers == 1) {
|
1995-08-06 16:14:21 +00:00
|
|
|
fip->fi_readsock->so_state &= ~SS_CANTRCVMORE;
|
2001-06-06 17:38:36 +00:00
|
|
|
if (fip->fi_readers > 0) {
|
1995-08-06 16:14:21 +00:00
|
|
|
wakeup((caddr_t)&fip->fi_readers);
|
2001-06-06 17:38:36 +00:00
|
|
|
sorwakeup(fip->fi_writesock);
|
|
|
|
}
|
1995-08-06 16:14:21 +00:00
|
|
|
}
|
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
if ((ap->a_mode & FREAD) && (ap->a_mode & O_NONBLOCK) == 0) {
|
|
|
|
while (fip->fi_writers == 0) {
|
2001-09-12 08:38:13 +00:00
|
|
|
VOP_UNLOCK(vp, 0, td);
|
1997-02-10 02:22:35 +00:00
|
|
|
error = tsleep((caddr_t)&fip->fi_readers,
|
1997-10-27 15:33:04 +00:00
|
|
|
PCATCH | PSOCK, "fifoor", 0);
|
2001-09-12 08:38:13 +00:00
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
1997-02-10 02:22:35 +00:00
|
|
|
if (error)
|
|
|
|
goto bad;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-08-06 16:14:21 +00:00
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
if (ap->a_mode & FWRITE) {
|
|
|
|
if (ap->a_mode & O_NONBLOCK) {
|
|
|
|
if (fip->fi_readers == 0) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto bad;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
} else {
|
1994-05-24 10:09:53 +00:00
|
|
|
while (fip->fi_readers == 0) {
|
2001-09-12 08:38:13 +00:00
|
|
|
VOP_UNLOCK(vp, 0, td);
|
2002-12-29 10:32:16 +00:00
|
|
|
/*
|
|
|
|
* XXX: Some race I havn't located is solved
|
|
|
|
* by timing out after a sec. Race seen when
|
|
|
|
* sendmail hangs here during boot /phk
|
|
|
|
*/
|
1994-05-24 10:09:53 +00:00
|
|
|
error = tsleep((caddr_t)&fip->fi_writers,
|
2002-12-29 10:32:16 +00:00
|
|
|
PCATCH | PSOCK, "fifoow", hz);
|
2001-09-12 08:38:13 +00:00
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
if (error)
|
1997-02-10 02:22:35 +00:00
|
|
|
goto bad;
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
return (0);
|
|
|
|
bad:
|
2001-09-12 08:38:13 +00:00
|
|
|
VOP_CLOSE(vp, ap->a_mode, ap->a_cred, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Vnode op for read
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
fifo_read(ap)
|
|
|
|
struct vop_read_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
int a_ioflag;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
1997-02-10 02:22:35 +00:00
|
|
|
struct uio *uio = ap->a_uio;
|
|
|
|
struct socket *rso = ap->a_vp->v_fifoinfo->fi_readsock;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td = uio->uio_td;
|
1994-05-24 10:09:53 +00:00
|
|
|
int error, startresid;
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (uio->uio_rw != UIO_READ)
|
|
|
|
panic("fifo_read mode");
|
|
|
|
#endif
|
|
|
|
if (uio->uio_resid == 0)
|
|
|
|
return (0);
|
2002-05-31 11:52:35 +00:00
|
|
|
if (ap->a_ioflag & IO_NDELAY)
|
1994-05-24 10:09:53 +00:00
|
|
|
rso->so_state |= SS_NBIO;
|
|
|
|
startresid = uio->uio_resid;
|
2001-09-12 08:38:13 +00:00
|
|
|
VOP_UNLOCK(ap->a_vp, 0, td);
|
1997-08-16 19:16:27 +00:00
|
|
|
error = soreceive(rso, (struct sockaddr **)0, uio, (struct mbuf **)0,
|
1997-02-10 02:22:35 +00:00
|
|
|
(struct mbuf **)0, (int *)0);
|
2001-09-12 08:38:13 +00:00
|
|
|
vn_lock(ap->a_vp, LK_EXCLUSIVE | LK_RETRY, td);
|
2002-05-31 11:52:35 +00:00
|
|
|
if (ap->a_ioflag & IO_NDELAY)
|
1994-05-24 10:09:53 +00:00
|
|
|
rso->so_state &= ~SS_NBIO;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Vnode op for write
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
fifo_write(ap)
|
|
|
|
struct vop_write_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
int a_ioflag;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
struct socket *wso = ap->a_vp->v_fifoinfo->fi_writesock;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td = ap->a_uio->uio_td;
|
1994-05-24 10:09:53 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (ap->a_uio->uio_rw != UIO_WRITE)
|
|
|
|
panic("fifo_write mode");
|
|
|
|
#endif
|
2002-05-31 11:52:35 +00:00
|
|
|
if (ap->a_ioflag & IO_NDELAY)
|
1994-05-24 10:09:53 +00:00
|
|
|
wso->so_state |= SS_NBIO;
|
2001-09-12 08:38:13 +00:00
|
|
|
VOP_UNLOCK(ap->a_vp, 0, td);
|
1997-08-16 19:16:27 +00:00
|
|
|
error = sosend(wso, (struct sockaddr *)0, ap->a_uio, 0,
|
2001-09-12 08:38:13 +00:00
|
|
|
(struct mbuf *)0, 0, td);
|
|
|
|
vn_lock(ap->a_vp, LK_EXCLUSIVE | LK_RETRY, td);
|
2002-05-31 11:52:35 +00:00
|
|
|
if (ap->a_ioflag & IO_NDELAY)
|
1994-05-24 10:09:53 +00:00
|
|
|
wso->so_state &= ~SS_NBIO;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Device ioctl operation.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
fifo_ioctl(ap)
|
|
|
|
struct vop_ioctl_args /* {
|
|
|
|
struct vnode *a_vp;
|
2002-10-16 08:04:11 +00:00
|
|
|
u_long a_command;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t a_data;
|
|
|
|
int a_fflag;
|
|
|
|
struct ucred *a_cred;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *a_td;
|
1994-05-24 10:09:53 +00:00
|
|
|
} */ *ap;
|
|
|
|
{
|
2002-04-18 14:47:34 +00:00
|
|
|
struct file filetmp; /* Local, so need not be locked. */
|
|
|
|
int error;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
if (ap->a_command == FIONBIO)
|
|
|
|
return (0);
|
1997-02-10 02:22:35 +00:00
|
|
|
if (ap->a_fflag & FREAD) {
|
1994-05-24 10:09:53 +00:00
|
|
|
filetmp.f_data = (caddr_t)ap->a_vp->v_fifoinfo->fi_readsock;
|
2002-08-17 02:36:16 +00:00
|
|
|
filetmp.f_cred = ap->a_cred;
|
|
|
|
error = soo_ioctl(&filetmp, ap->a_command, ap->a_data,
|
|
|
|
ap->a_td->td_ucred, ap->a_td);
|
1997-02-10 02:22:35 +00:00
|
|
|
if (error)
|
2002-04-18 14:47:34 +00:00
|
|
|
return (error);
|
1997-02-10 02:22:35 +00:00
|
|
|
}
|
|
|
|
if (ap->a_fflag & FWRITE) {
|
1994-05-24 10:09:53 +00:00
|
|
|
filetmp.f_data = (caddr_t)ap->a_vp->v_fifoinfo->fi_writesock;
|
2002-08-17 02:36:16 +00:00
|
|
|
filetmp.f_cred = ap->a_cred;
|
|
|
|
error = soo_ioctl(&filetmp, ap->a_command, ap->a_data,
|
|
|
|
ap->a_td->td_ucred, ap->a_td);
|
1997-02-10 02:22:35 +00:00
|
|
|
if (error)
|
2002-04-18 14:47:34 +00:00
|
|
|
return (error);
|
1997-02-10 02:22:35 +00:00
|
|
|
}
|
2002-04-18 14:47:34 +00:00
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
2001-02-15 16:34:11 +00:00
|
|
|
/* ARGSUSED */
|
2000-04-16 18:53:38 +00:00
|
|
|
static int
|
2001-02-15 16:34:11 +00:00
|
|
|
fifo_kqfilter(ap)
|
|
|
|
struct vop_kqfilter_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct knote *a_kn;
|
|
|
|
} */ *ap;
|
2000-04-16 18:53:38 +00:00
|
|
|
{
|
2001-06-06 17:38:36 +00:00
|
|
|
struct fifoinfo *fi = ap->a_vp->v_fifoinfo;
|
|
|
|
struct socket *so;
|
2001-02-15 16:34:11 +00:00
|
|
|
struct sockbuf *sb;
|
|
|
|
|
|
|
|
switch (ap->a_kn->kn_filter) {
|
|
|
|
case EVFILT_READ:
|
|
|
|
ap->a_kn->kn_fop = &fiforead_filtops;
|
2001-06-06 17:38:36 +00:00
|
|
|
so = fi->fi_readsock;
|
2001-02-15 16:34:11 +00:00
|
|
|
sb = &so->so_rcv;
|
|
|
|
break;
|
|
|
|
case EVFILT_WRITE:
|
|
|
|
ap->a_kn->kn_fop = &fifowrite_filtops;
|
2001-06-06 17:38:36 +00:00
|
|
|
so = fi->fi_writesock;
|
2001-02-15 16:34:11 +00:00
|
|
|
sb = &so->so_snd;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ap->a_kn->kn_hook = (caddr_t)so;
|
|
|
|
|
|
|
|
SLIST_INSERT_HEAD(&sb->sb_sel.si_note, ap->a_kn, kn_selnext);
|
|
|
|
sb->sb_flags |= SB_KNOTE;
|
2000-04-16 18:53:38 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
filt_fifordetach(struct knote *kn)
|
|
|
|
{
|
2001-02-15 16:34:11 +00:00
|
|
|
struct socket *so = (struct socket *)kn->kn_hook;
|
2000-04-16 18:53:38 +00:00
|
|
|
|
2000-05-26 02:09:24 +00:00
|
|
|
SLIST_REMOVE(&so->so_rcv.sb_sel.si_note, kn, knote, kn_selnext);
|
2000-04-16 18:53:38 +00:00
|
|
|
if (SLIST_EMPTY(&so->so_rcv.sb_sel.si_note))
|
|
|
|
so->so_rcv.sb_flags &= ~SB_KNOTE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
filt_fiforead(struct knote *kn, long hint)
|
|
|
|
{
|
2001-02-15 16:34:11 +00:00
|
|
|
struct socket *so = (struct socket *)kn->kn_hook;
|
2000-04-16 18:53:38 +00:00
|
|
|
|
|
|
|
kn->kn_data = so->so_rcv.sb_cc;
|
|
|
|
if (so->so_state & SS_CANTRCVMORE) {
|
|
|
|
kn->kn_flags |= EV_EOF;
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
kn->kn_flags &= ~EV_EOF;
|
|
|
|
return (kn->kn_data > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
filt_fifowdetach(struct knote *kn)
|
|
|
|
{
|
2001-02-15 16:34:11 +00:00
|
|
|
struct socket *so = (struct socket *)kn->kn_hook;
|
2000-04-16 18:53:38 +00:00
|
|
|
|
2000-05-26 02:09:24 +00:00
|
|
|
SLIST_REMOVE(&so->so_snd.sb_sel.si_note, kn, knote, kn_selnext);
|
2000-04-16 18:53:38 +00:00
|
|
|
if (SLIST_EMPTY(&so->so_snd.sb_sel.si_note))
|
|
|
|
so->so_snd.sb_flags &= ~SB_KNOTE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
filt_fifowrite(struct knote *kn, long hint)
|
|
|
|
{
|
2001-02-15 16:34:11 +00:00
|
|
|
struct socket *so = (struct socket *)kn->kn_hook;
|
2000-04-16 18:53:38 +00:00
|
|
|
|
|
|
|
kn->kn_data = sbspace(&so->so_snd);
|
|
|
|
if (so->so_state & SS_CANTSENDMORE) {
|
|
|
|
kn->kn_flags |= EV_EOF;
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
kn->kn_flags &= ~EV_EOF;
|
|
|
|
return (kn->kn_data >= so->so_snd.sb_lowat);
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1997-09-14 02:58:12 +00:00
|
|
|
fifo_poll(ap)
|
|
|
|
struct vop_poll_args /* {
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode *a_vp;
|
1997-09-14 02:58:12 +00:00
|
|
|
int a_events;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct ucred *a_cred;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *a_td;
|
1994-05-24 10:09:53 +00:00
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
struct file filetmp;
|
2002-01-14 22:03:48 +00:00
|
|
|
int events, revents = 0;
|
|
|
|
|
|
|
|
events = ap->a_events &
|
|
|
|
(POLLIN | POLLINIGNEOF | POLLPRI | POLLRDNORM | POLLRDBAND);
|
|
|
|
if (events) {
|
|
|
|
/*
|
2002-04-18 14:47:34 +00:00
|
|
|
* If POLLIN or POLLRDNORM is requested and POLLINIGNEOF is
|
|
|
|
* not, then convert the first two to the last one. This
|
|
|
|
* tells the socket poll function to ignore EOF so that we
|
|
|
|
* block if there is no writer (and no data). Callers can
|
|
|
|
* set POLLINIGNEOF to get non-blocking behavior.
|
2002-01-14 22:03:48 +00:00
|
|
|
*/
|
2002-04-18 14:47:34 +00:00
|
|
|
if (events & (POLLIN | POLLRDNORM) &&
|
|
|
|
!(events & POLLINIGNEOF)) {
|
2002-01-14 22:03:48 +00:00
|
|
|
events &= ~(POLLIN | POLLRDNORM);
|
|
|
|
events |= POLLINIGNEOF;
|
|
|
|
}
|
2002-04-18 14:47:34 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
filetmp.f_data = (caddr_t)ap->a_vp->v_fifoinfo->fi_readsock;
|
Make similar changes to fo_stat() and fo_poll() as made earlier to
fo_read() and fo_write(): explicitly use the cred argument to fo_poll()
as "active_cred" using the passed file descriptor's f_cred reference
to provide access to the file credential. Add an active_cred
argument to fo_stat() so that implementers have access to the active
credential as well as the file credential. Generally modify callers
of fo_stat() to pass in td->td_ucred rather than fp->f_cred, which
was redundantly provided via the fp argument. This set of modifications
also permits threads to perform these operations on behalf of another
thread without modifying their credential.
Trickle this change down into fo_stat/poll() implementations:
- badfo_poll(), badfo_stat(): modify/add arguments.
- kqueue_poll(), kqueue_stat(): modify arguments.
- pipe_poll(), pipe_stat(): modify/add arguments, pass active_cred to
MAC checks rather than td->td_ucred.
- soo_poll(), soo_stat(): modify/add arguments, pass fp->f_cred rather
than cred to pru_sopoll() to maintain current semantics.
- sopoll(): moidfy arguments.
- vn_poll(), vn_statfile(): modify/add arguments, pass new arguments
to vn_stat(). Pass active_cred to MAC and fp->f_cred to VOP_POLL()
to maintian current semantics.
- vn_close(): rename cred to file_cred to reflect reality while I'm here.
- vn_stat(): Add active_cred and file_cred arguments to vn_stat()
and consumers so that this distinction is maintained at the VFS
as well as 'struct file' layer. Pass active_cred instead of
td->td_ucred to MAC and to VOP_GETATTR() to maintain current semantics.
- fifofs: modify the creation of a "filetemp" so that the file
credential is properly initialized and can be used in the socket
code if desired. Pass ap->a_td->td_ucred as the active
credential to soo_poll(). If we teach the vnop interface about
the distinction between file and active credentials, we would use
the active credential here.
Note that current inconsistent passing of active_cred vs. file_cred to
VOP's is maintained. It's not clear why GETATTR would be authorized
using active_cred while POLL would be authorized using file_cred at
the file system level.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-16 12:52:03 +00:00
|
|
|
filetmp.f_cred = ap->a_cred;
|
1997-09-14 02:58:12 +00:00
|
|
|
if (filetmp.f_data)
|
Make similar changes to fo_stat() and fo_poll() as made earlier to
fo_read() and fo_write(): explicitly use the cred argument to fo_poll()
as "active_cred" using the passed file descriptor's f_cred reference
to provide access to the file credential. Add an active_cred
argument to fo_stat() so that implementers have access to the active
credential as well as the file credential. Generally modify callers
of fo_stat() to pass in td->td_ucred rather than fp->f_cred, which
was redundantly provided via the fp argument. This set of modifications
also permits threads to perform these operations on behalf of another
thread without modifying their credential.
Trickle this change down into fo_stat/poll() implementations:
- badfo_poll(), badfo_stat(): modify/add arguments.
- kqueue_poll(), kqueue_stat(): modify arguments.
- pipe_poll(), pipe_stat(): modify/add arguments, pass active_cred to
MAC checks rather than td->td_ucred.
- soo_poll(), soo_stat(): modify/add arguments, pass fp->f_cred rather
than cred to pru_sopoll() to maintain current semantics.
- sopoll(): moidfy arguments.
- vn_poll(), vn_statfile(): modify/add arguments, pass new arguments
to vn_stat(). Pass active_cred to MAC and fp->f_cred to VOP_POLL()
to maintian current semantics.
- vn_close(): rename cred to file_cred to reflect reality while I'm here.
- vn_stat(): Add active_cred and file_cred arguments to vn_stat()
and consumers so that this distinction is maintained at the VFS
as well as 'struct file' layer. Pass active_cred instead of
td->td_ucred to MAC and to VOP_GETATTR() to maintain current semantics.
- fifofs: modify the creation of a "filetemp" so that the file
credential is properly initialized and can be used in the socket
code if desired. Pass ap->a_td->td_ucred as the active
credential to soo_poll(). If we teach the vnop interface about
the distinction between file and active credentials, we would use
the active credential here.
Note that current inconsistent passing of active_cred vs. file_cred to
VOP's is maintained. It's not clear why GETATTR would be authorized
using active_cred while POLL would be authorized using file_cred at
the file system level.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-16 12:52:03 +00:00
|
|
|
revents |= soo_poll(&filetmp, events,
|
|
|
|
ap->a_td->td_ucred, ap->a_td);
|
2002-04-18 14:47:34 +00:00
|
|
|
|
|
|
|
/* Reverse the above conversion. */
|
|
|
|
if ((revents & POLLINIGNEOF) &&
|
|
|
|
!(ap->a_events & POLLINIGNEOF)) {
|
|
|
|
revents |= (ap->a_events & (POLLIN | POLLRDNORM));
|
2002-01-14 22:03:48 +00:00
|
|
|
revents &= ~POLLINIGNEOF;
|
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
}
|
2002-01-14 22:03:48 +00:00
|
|
|
events = ap->a_events & (POLLOUT | POLLWRNORM | POLLWRBAND);
|
|
|
|
if (events) {
|
1994-05-24 10:09:53 +00:00
|
|
|
filetmp.f_data = (caddr_t)ap->a_vp->v_fifoinfo->fi_writesock;
|
2002-08-20 02:17:59 +00:00
|
|
|
filetmp.f_cred = ap->a_cred;
|
1997-09-14 02:58:12 +00:00
|
|
|
if (filetmp.f_data)
|
2002-08-20 02:17:59 +00:00
|
|
|
revents |= soo_poll(&filetmp, events,
|
|
|
|
ap->a_td->td_ucred, ap->a_td);
|
1997-02-10 02:22:35 +00:00
|
|
|
}
|
1997-09-14 02:58:12 +00:00
|
|
|
return (revents);
|
1997-02-10 02:22:35 +00:00
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Device close routine
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
fifo_close(ap)
|
|
|
|
struct vop_close_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_fflag;
|
|
|
|
struct ucred *a_cred;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *a_td;
|
1994-05-24 10:09:53 +00:00
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
register struct vnode *vp = ap->a_vp;
|
|
|
|
register struct fifoinfo *fip = vp->v_fifoinfo;
|
|
|
|
int error1, error2;
|
|
|
|
|
1995-08-06 16:14:21 +00:00
|
|
|
if (ap->a_fflag & FREAD) {
|
1994-05-24 10:09:53 +00:00
|
|
|
fip->fi_readers--;
|
|
|
|
if (fip->fi_readers == 0)
|
|
|
|
socantsendmore(fip->fi_writesock);
|
|
|
|
}
|
1997-02-10 02:22:35 +00:00
|
|
|
if (ap->a_fflag & FWRITE) {
|
|
|
|
fip->fi_writers--;
|
|
|
|
if (fip->fi_writers == 0)
|
|
|
|
socantrcvmore(fip->fi_readsock);
|
|
|
|
}
|
2002-09-25 02:32:42 +00:00
|
|
|
if (vrefcnt(vp) > 1)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
error1 = soclose(fip->fi_readsock);
|
|
|
|
error2 = soclose(fip->fi_writesock);
|
|
|
|
FREE(fip, M_VNODE);
|
|
|
|
vp->v_fifoinfo = NULL;
|
|
|
|
if (error1)
|
|
|
|
return (error1);
|
|
|
|
return (error2);
|
|
|
|
}
|
|
|
|
|
1994-10-02 17:48:58 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
1994-10-02 17:48:58 +00:00
|
|
|
* Print out internal contents of a fifo vnode.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1994-10-02 17:48:58 +00:00
|
|
|
fifo_printinfo(vp)
|
|
|
|
struct vnode *vp;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1994-10-02 17:48:58 +00:00
|
|
|
register struct fifoinfo *fip = vp->v_fifoinfo;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1994-10-02 17:48:58 +00:00
|
|
|
printf(", fifo with %ld readers and %ld writers",
|
|
|
|
fip->fi_readers, fip->fi_writers);
|
1994-05-25 09:21:21 +00:00
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-10-02 17:48:58 +00:00
|
|
|
* Print out the contents of a fifo vnode.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
1995-12-14 09:55:16 +00:00
|
|
|
static int
|
1994-10-02 17:48:58 +00:00
|
|
|
fifo_print(ap)
|
|
|
|
struct vop_print_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
} */ *ap;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1994-10-02 17:48:58 +00:00
|
|
|
fifo_printinfo(ap->a_vp);
|
|
|
|
printf("\n");
|
1994-05-25 09:21:21 +00:00
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1997-12-13 12:58:09 +00:00
|
|
|
/*
|
|
|
|
* Return POSIX pathconf information applicable to fifo's.
|
|
|
|
*/
|
2002-09-28 17:15:38 +00:00
|
|
|
static int
|
1997-12-13 12:58:09 +00:00
|
|
|
fifo_pathconf(ap)
|
|
|
|
struct vop_pathconf_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_name;
|
|
|
|
int *a_retval;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (ap->a_name) {
|
|
|
|
case _PC_LINK_MAX:
|
|
|
|
*ap->a_retval = LINK_MAX;
|
|
|
|
return (0);
|
|
|
|
case _PC_PIPE_BUF:
|
|
|
|
*ap->a_retval = PIPE_BUF;
|
|
|
|
return (0);
|
|
|
|
case _PC_CHOWN_RESTRICTED:
|
|
|
|
*ap->a_retval = 1;
|
|
|
|
return (0);
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Fifo advisory byte-level locks.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
fifo_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;
|
|
|
|
{
|
|
|
|
|
1996-12-19 18:16:33 +00:00
|
|
|
return (ap->a_flags & F_FLOCK ? EOPNOTSUPP : EINVAL);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|