1994-05-24 10:09:53 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1982, 1986, 1991, 1993
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @(#)tty_tty.c 8.2 (Berkeley) 9/23/93
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Indirect driver for controlling tty.
|
|
|
|
*/
|
1998-01-24 02:54:56 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/param.h>
|
1997-09-14 02:40:46 +00:00
|
|
|
#include <sys/systm.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/conf.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/kernel.h>
|
1997-12-05 19:55:52 +00:00
|
|
|
#include <sys/lock.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/proc.h>
|
1997-11-18 12:59:09 +00:00
|
|
|
#include <sys/ttycom.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/vnode.h>
|
1995-12-08 11:19:42 +00:00
|
|
|
|
|
|
|
static d_open_t cttyopen;
|
|
|
|
static d_read_t cttyread;
|
|
|
|
static d_write_t cttywrite;
|
|
|
|
static d_ioctl_t cttyioctl;
|
1997-09-14 02:40:46 +00:00
|
|
|
static d_poll_t cttypoll;
|
1995-12-08 11:19:42 +00:00
|
|
|
|
1998-08-23 08:26:42 +00:00
|
|
|
#define CDEV_MAJOR 1
|
2001-05-14 08:22:56 +00:00
|
|
|
|
|
|
|
static struct cdevsw ctty_cdevsw = {
|
1999-05-30 16:53:49 +00:00
|
|
|
/* open */ cttyopen,
|
|
|
|
/* close */ nullclose,
|
|
|
|
/* read */ cttyread,
|
|
|
|
/* write */ cttywrite,
|
|
|
|
/* ioctl */ cttyioctl,
|
|
|
|
/* poll */ cttypoll,
|
|
|
|
/* mmap */ nommap,
|
|
|
|
/* strategy */ nostrategy,
|
|
|
|
/* name */ "ctty",
|
|
|
|
/* maj */ CDEV_MAJOR,
|
|
|
|
/* dump */ nodump,
|
|
|
|
/* psize */ nopsize,
|
|
|
|
/* flags */ D_TTY,
|
1998-08-23 08:26:42 +00:00
|
|
|
};
|
1995-11-29 10:49:16 +00:00
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
#define cttyvp(td) ((td)->td_proc->p_flag & P_CONTROLT ? (td)->td_proc->p_session->s_ttyvp : NULL)
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
cttyopen(dev, flag, mode, td)
|
1994-05-24 10:09:53 +00:00
|
|
|
dev_t dev;
|
|
|
|
int flag, mode;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
struct vnode *ttyvp = cttyvp(td);
|
1994-05-24 10:09:53 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if (ttyvp == NULL)
|
|
|
|
return (ENXIO);
|
2001-09-12 08:38:13 +00:00
|
|
|
vn_lock(ttyvp, LK_EXCLUSIVE | LK_RETRY, td);
|
|
|
|
error = VOP_OPEN(ttyvp, flag, NOCRED, td);
|
|
|
|
VOP_UNLOCK(ttyvp, 0, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
cttyread(dev, uio, flag)
|
|
|
|
dev_t dev;
|
|
|
|
struct uio *uio;
|
|
|
|
int flag;
|
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td = uio->uio_td;
|
|
|
|
register struct vnode *ttyvp = cttyvp(td);
|
1994-05-24 10:09:53 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if (ttyvp == NULL)
|
|
|
|
return (EIO);
|
2001-09-12 08:38:13 +00:00
|
|
|
vn_lock(ttyvp, LK_EXCLUSIVE | LK_RETRY, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
error = VOP_READ(ttyvp, uio, flag, NOCRED);
|
2001-09-12 08:38:13 +00:00
|
|
|
VOP_UNLOCK(ttyvp, 0, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
cttywrite(dev, uio, flag)
|
|
|
|
dev_t dev;
|
|
|
|
struct uio *uio;
|
|
|
|
int flag;
|
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td = uio->uio_td;
|
|
|
|
struct vnode *ttyvp = cttyvp(uio->uio_td);
|
2000-07-11 22:07:57 +00:00
|
|
|
struct mount *mp;
|
1994-05-24 10:09:53 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if (ttyvp == NULL)
|
|
|
|
return (EIO);
|
2000-07-11 22:07:57 +00:00
|
|
|
mp = NULL;
|
|
|
|
if (ttyvp->v_type != VCHR &&
|
|
|
|
(error = vn_start_write(ttyvp, &mp, V_WAIT | PCATCH)) != 0)
|
|
|
|
return (error);
|
2001-09-12 08:38:13 +00:00
|
|
|
vn_lock(ttyvp, LK_EXCLUSIVE | LK_RETRY, td);
|
1994-05-24 10:09:53 +00:00
|
|
|
error = VOP_WRITE(ttyvp, uio, flag, NOCRED);
|
2001-09-12 08:38:13 +00:00
|
|
|
VOP_UNLOCK(ttyvp, 0, td);
|
2000-07-11 22:07:57 +00:00
|
|
|
vn_finished_write(mp);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
cttyioctl(dev, cmd, addr, flag, td)
|
1994-05-24 10:09:53 +00:00
|
|
|
dev_t dev;
|
1998-06-07 17:13:14 +00:00
|
|
|
u_long cmd;
|
1994-05-24 10:09:53 +00:00
|
|
|
caddr_t addr;
|
|
|
|
int flag;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
struct vnode *ttyvp = cttyvp(td);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
if (ttyvp == NULL)
|
|
|
|
return (EIO);
|
1994-12-04 01:46:13 +00:00
|
|
|
if (cmd == TIOCSCTTY) /* don't allow controlling tty to be set */
|
|
|
|
return EINVAL; /* to controlling tty -- infinite recursion */
|
1994-05-24 10:09:53 +00:00
|
|
|
if (cmd == TIOCNOTTY) {
|
2001-09-12 08:38:13 +00:00
|
|
|
if (!SESS_LEADER(td->td_proc)) {
|
|
|
|
td->td_proc->p_flag &= ~P_CONTROLT;
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
} else
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
2001-09-12 08:38:13 +00:00
|
|
|
return (VOP_IOCTL(ttyvp, cmd, addr, flag, NOCRED, td));
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1995-12-08 11:19:42 +00:00
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
cttypoll(dev, events, td)
|
1994-05-24 10:09:53 +00:00
|
|
|
dev_t dev;
|
1997-09-14 02:40:46 +00:00
|
|
|
int events;
|
2001-09-12 08:38:13 +00:00
|
|
|
struct thread *td;
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
struct vnode *ttyvp = cttyvp(td);
|
1994-05-24 10:09:53 +00:00
|
|
|
|
|
|
|
if (ttyvp == NULL)
|
1997-09-14 02:40:46 +00:00
|
|
|
/* try operation to get EOF/failure */
|
2001-09-12 08:38:13 +00:00
|
|
|
return (seltrue(dev, events, td));
|
|
|
|
return (VOP_POLL(ttyvp, events, td->td_proc->p_ucred, td));
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
1995-11-29 10:49:16 +00:00
|
|
|
|
2001-05-14 08:22:56 +00:00
|
|
|
static void ctty_clone __P((void *arg, char *name, int namelen, dev_t *dev));
|
|
|
|
|
2001-05-15 18:12:38 +00:00
|
|
|
static dev_t ctty;
|
|
|
|
|
2001-05-14 08:22:56 +00:00
|
|
|
static void
|
|
|
|
ctty_clone(void *arg, char *name, int namelen, dev_t *dev)
|
|
|
|
{
|
|
|
|
struct vnode *vp;
|
|
|
|
|
|
|
|
if (*dev != NODEV)
|
|
|
|
return;
|
|
|
|
if (strcmp(name, "tty"))
|
|
|
|
return;
|
2001-09-12 08:38:13 +00:00
|
|
|
vp = cttyvp(curthread);
|
2001-05-15 18:12:38 +00:00
|
|
|
if (vp == NULL) {
|
|
|
|
if (ctty)
|
|
|
|
*dev = ctty;
|
|
|
|
} else
|
|
|
|
*dev = vp->v_rdev;
|
2001-05-14 08:22:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-09-16 11:44:05 +00:00
|
|
|
static void ctty_drvinit __P((void *unused));
|
1995-12-08 11:19:42 +00:00
|
|
|
static void
|
1997-09-16 11:44:05 +00:00
|
|
|
ctty_drvinit(unused)
|
|
|
|
void *unused;
|
1995-11-29 10:49:16 +00:00
|
|
|
{
|
|
|
|
|
2001-05-14 08:22:56 +00:00
|
|
|
if (devfs_present) {
|
|
|
|
EVENTHANDLER_REGISTER(dev_clone, ctty_clone, 0, 1000);
|
2001-05-15 18:12:38 +00:00
|
|
|
ctty = make_dev(&ctty_cdevsw, 0, 0, 0, 0666, "ctty");
|
2001-05-14 08:22:56 +00:00
|
|
|
} else {
|
|
|
|
make_dev(&ctty_cdevsw, 0, 0, 0, 0666, "tty");
|
|
|
|
}
|
1995-11-29 10:49:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SYSINIT(cttydev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,ctty_drvinit,NULL)
|