2010-01-24 22:56:26 +03:00
|
|
|
/* $NetBSD: tty_pty.c,v 1.121 2010/01/24 19:56:26 dholland Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-12 07:48:33 +04:00
|
|
|
* Copyright (c) 1982, 1986, 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* 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.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* 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.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)tty_pty.c 8.4 (Berkeley) 2/20/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pseudo-teletype Driver
|
|
|
|
* (Actually two drivers, requiring two entries in 'cdevsw')
|
|
|
|
*/
|
1998-06-26 03:40:33 +04:00
|
|
|
|
2001-11-12 18:25:01 +03:00
|
|
|
#include <sys/cdefs.h>
|
2010-01-24 22:56:26 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: tty_pty.c,v 1.121 2010/01/24 19:56:26 dholland Exp $");
|
2001-11-12 18:25:01 +03:00
|
|
|
|
2004-06-18 19:02:29 +04:00
|
|
|
#include "opt_ptm.h"
|
1998-06-26 03:40:33 +04:00
|
|
|
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/ioctl.h>
|
2008-11-15 08:58:33 +03:00
|
|
|
#include <sys/ioctl_compat.h>
|
1994-05-12 07:48:33 +04:00
|
|
|
#include <sys/proc.h>
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/tty.h>
|
2004-05-27 06:56:38 +04:00
|
|
|
#include <sys/stat.h>
|
1993-12-18 07:21:37 +03:00
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/vnode.h>
|
2004-05-27 06:56:38 +04:00
|
|
|
#include <sys/namei.h>
|
1996-02-04 05:15:01 +03:00
|
|
|
#include <sys/signalvar.h>
|
|
|
|
#include <sys/uio.h>
|
2004-05-27 06:56:38 +04:00
|
|
|
#include <sys/filedesc.h>
|
1996-03-31 01:24:38 +03:00
|
|
|
#include <sys/conf.h>
|
1996-09-07 16:40:22 +04:00
|
|
|
#include <sys/poll.h>
|
2004-11-10 20:29:54 +03:00
|
|
|
#include <sys/pty.h>
|
2006-05-15 01:15:11 +04:00
|
|
|
#include <sys/kauth.h>
|
1996-02-04 05:15:01 +03:00
|
|
|
|
2000-09-09 20:42:04 +04:00
|
|
|
#define DEFAULT_NPTYS 16 /* default number of initial ptys */
|
2002-02-02 10:18:55 +03:00
|
|
|
#define DEFAULT_MAXPTYS 992 /* default maximum number of ptys */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#define BUFSIZ 100 /* Chunk size iomoved to/from user */
|
|
|
|
|
1995-04-19 22:50:21 +04:00
|
|
|
struct pt_softc {
|
|
|
|
struct tty *pt_tty;
|
1993-03-21 12:45:37 +03:00
|
|
|
int pt_flags;
|
1994-05-12 07:48:33 +04:00
|
|
|
struct selinfo pt_selr, pt_selw;
|
1993-03-21 12:45:37 +03:00
|
|
|
u_char pt_send;
|
|
|
|
u_char pt_ucntl;
|
2000-09-09 20:42:04 +04:00
|
|
|
};
|
|
|
|
|
2000-09-10 21:26:45 +04:00
|
|
|
static struct pt_softc **pt_softc = NULL; /* pty array */
|
|
|
|
static int maxptys = DEFAULT_MAXPTYS; /* maximum number of ptys (sysctable) */
|
2007-03-13 00:33:07 +03:00
|
|
|
kmutex_t pt_softc_mutex;
|
2004-11-10 20:29:54 +03:00
|
|
|
int npty = 0; /* for pstat -t */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#define PF_PKT 0x08 /* packet mode */
|
|
|
|
#define PF_STOPPED 0x10 /* user told stopped */
|
|
|
|
#define PF_REMOTE 0x20 /* remote and flow controlled input */
|
|
|
|
#define PF_NOSTOP 0x40
|
|
|
|
#define PF_UCNTL 0x80 /* user control mode */
|
|
|
|
|
2004-03-23 16:22:03 +03:00
|
|
|
void ptyattach(int);
|
|
|
|
void ptcwakeup(struct tty *, int);
|
|
|
|
void ptsstart(struct tty *);
|
|
|
|
int pty_maxptys(int, int);
|
1993-06-27 10:06:47 +04:00
|
|
|
|
2004-03-23 16:22:03 +03:00
|
|
|
static struct pt_softc **ptyarralloc(int);
|
2004-05-27 06:56:38 +04:00
|
|
|
|
2002-09-06 17:18:43 +04:00
|
|
|
dev_type_open(ptcopen);
|
|
|
|
dev_type_close(ptcclose);
|
|
|
|
dev_type_read(ptcread);
|
|
|
|
dev_type_write(ptcwrite);
|
|
|
|
dev_type_poll(ptcpoll);
|
2002-10-23 13:10:23 +04:00
|
|
|
dev_type_kqfilter(ptckqfilter);
|
2002-09-06 17:18:43 +04:00
|
|
|
|
|
|
|
dev_type_open(ptsopen);
|
|
|
|
dev_type_close(ptsclose);
|
|
|
|
dev_type_read(ptsread);
|
|
|
|
dev_type_write(ptswrite);
|
|
|
|
dev_type_stop(ptsstop);
|
|
|
|
dev_type_poll(ptspoll);
|
|
|
|
|
|
|
|
dev_type_ioctl(ptyioctl);
|
|
|
|
dev_type_tty(ptytty);
|
|
|
|
|
|
|
|
const struct cdevsw ptc_cdevsw = {
|
|
|
|
ptcopen, ptcclose, ptcread, ptcwrite, ptyioctl,
|
2002-10-23 13:10:23 +04:00
|
|
|
nullstop, ptytty, ptcpoll, nommap, ptckqfilter, D_TTY
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
const struct cdevsw pts_cdevsw = {
|
|
|
|
ptsopen, ptsclose, ptsread, ptswrite, ptyioctl,
|
2002-10-23 13:10:23 +04:00
|
|
|
ptsstop, ptytty, ptspoll, nommap, ttykqfilter, D_TTY
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(pmax)
|
2010-01-24 22:56:26 +03:00
|
|
|
/*
|
|
|
|
* Used by arch/pmax/conf/majors.pmax, which needs a second copy as it
|
|
|
|
* needs to map this stuff to two pairs of majors.
|
|
|
|
*/
|
|
|
|
|
2002-09-06 17:18:43 +04:00
|
|
|
const struct cdevsw ptc_ultrix_cdevsw = {
|
|
|
|
ptcopen, ptcclose, ptcread, ptcwrite, ptyioctl,
|
2002-10-23 13:10:23 +04:00
|
|
|
nullstop, ptytty, ptcpoll, nommap, ptckqfilter, D_TTY
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
const struct cdevsw pts_ultrix_cdevsw = {
|
|
|
|
ptsopen, ptsclose, ptsread, ptswrite, ptyioctl,
|
2002-10-23 13:10:23 +04:00
|
|
|
ptsstop, ptytty, ptspoll, nommap, ttykqfilter, D_TTY
|
2002-09-06 17:18:43 +04:00
|
|
|
};
|
|
|
|
#endif /* defined(pmax) */
|
|
|
|
|
2004-11-10 20:29:54 +03:00
|
|
|
/*
|
|
|
|
* Check if a pty is free to use.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
pty_isfree(int minor, int lock)
|
|
|
|
{
|
|
|
|
struct pt_softc *pt = pt_softc[minor];
|
|
|
|
if (lock)
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_enter(&pt_softc_mutex);
|
2004-11-10 20:29:54 +03:00
|
|
|
minor = pt == NULL || pt->pt_tty == NULL ||
|
|
|
|
pt->pt_tty->t_oproc == NULL;
|
|
|
|
if (lock)
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_exit(&pt_softc_mutex);
|
2004-11-10 20:29:54 +03:00
|
|
|
return minor;
|
|
|
|
}
|
|
|
|
|
2000-09-09 20:42:04 +04:00
|
|
|
/*
|
2000-09-10 21:26:45 +04:00
|
|
|
* Allocate and zero array of nelem elements.
|
2000-09-09 20:42:04 +04:00
|
|
|
*/
|
|
|
|
static struct pt_softc **
|
2009-01-22 17:38:34 +03:00
|
|
|
ptyarralloc(int nelem)
|
2000-09-09 20:42:04 +04:00
|
|
|
{
|
|
|
|
struct pt_softc **pt;
|
|
|
|
nelem += 10;
|
2009-01-22 17:38:34 +03:00
|
|
|
pt = kmem_zalloc(nelem * sizeof(*pt), KM_SLEEP);
|
2000-09-09 20:42:04 +04:00
|
|
|
return pt;
|
|
|
|
}
|
|
|
|
|
2009-01-22 17:38:34 +03:00
|
|
|
static void
|
|
|
|
ptyarrfree(struct pt_softc **pt, int nelem)
|
|
|
|
{
|
|
|
|
|
|
|
|
nelem += 10;
|
|
|
|
kmem_free(pt, nelem * sizeof(*pt));
|
|
|
|
}
|
|
|
|
|
2000-09-09 20:42:04 +04:00
|
|
|
/*
|
|
|
|
* Check if the minor is correct and ensure necessary structures
|
|
|
|
* are properly allocated.
|
|
|
|
*/
|
2004-11-10 20:29:54 +03:00
|
|
|
int
|
|
|
|
pty_check(int ptn)
|
2000-09-09 20:42:04 +04:00
|
|
|
{
|
|
|
|
struct pt_softc *pti;
|
|
|
|
|
2003-07-23 17:10:28 +04:00
|
|
|
if (ptn >= npty) {
|
|
|
|
struct pt_softc **newpt, **oldpt;
|
2000-09-10 21:26:45 +04:00
|
|
|
int newnpty;
|
2009-01-22 17:38:34 +03:00
|
|
|
int oldnpty;
|
2000-09-09 20:42:04 +04:00
|
|
|
|
2000-09-10 21:26:45 +04:00
|
|
|
/* check if the requested pty can be granted */
|
2003-07-23 17:10:28 +04:00
|
|
|
if (ptn >= maxptys) {
|
2000-09-10 21:26:45 +04:00
|
|
|
limit_reached:
|
|
|
|
tablefull("pty", "increase kern.maxptys");
|
|
|
|
return (ENXIO);
|
|
|
|
}
|
2000-09-09 20:42:04 +04:00
|
|
|
|
2003-07-23 17:10:28 +04:00
|
|
|
/* Allocate a larger pty array */
|
|
|
|
for (newnpty = npty; newnpty <= ptn;)
|
|
|
|
newnpty *= 2;
|
|
|
|
if (newnpty > maxptys)
|
|
|
|
newnpty = maxptys;
|
|
|
|
newpt = ptyarralloc(newnpty);
|
|
|
|
|
2000-09-09 20:42:04 +04:00
|
|
|
/*
|
2000-09-10 21:26:45 +04:00
|
|
|
* Now grab the pty array mutex - we need to ensure
|
2000-09-09 20:42:04 +04:00
|
|
|
* that the pty array is consistent while copying it's
|
2000-09-10 21:26:45 +04:00
|
|
|
* content to newly allocated, larger space; we also
|
|
|
|
* need to be safe against pty_maxptys().
|
2000-09-09 20:42:04 +04:00
|
|
|
*/
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_enter(&pt_softc_mutex);
|
2000-09-10 21:26:45 +04:00
|
|
|
|
2003-07-23 17:10:28 +04:00
|
|
|
if (newnpty >= maxptys) {
|
|
|
|
/* limit cut away beneath us... */
|
2009-01-22 17:38:34 +03:00
|
|
|
if (ptn >= maxptys) {
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_exit(&pt_softc_mutex);
|
2009-01-22 17:38:34 +03:00
|
|
|
ptyarrfree(newpt, newnpty);
|
2000-09-10 21:26:45 +04:00
|
|
|
goto limit_reached;
|
|
|
|
}
|
2009-01-22 17:38:34 +03:00
|
|
|
newnpty = maxptys;
|
2003-07-23 17:10:28 +04:00
|
|
|
}
|
2000-09-09 20:42:04 +04:00
|
|
|
|
|
|
|
/*
|
2000-09-10 21:26:45 +04:00
|
|
|
* If the pty array was not enlarged while we were waiting
|
|
|
|
* for mutex, copy current contents of pt_softc[] to newly
|
|
|
|
* allocated array and start using the new bigger array.
|
2000-09-09 20:42:04 +04:00
|
|
|
*/
|
2003-07-23 17:10:28 +04:00
|
|
|
if (newnpty > npty) {
|
2000-09-09 20:42:04 +04:00
|
|
|
memcpy(newpt, pt_softc, npty*sizeof(struct pt_softc *));
|
2003-07-23 17:10:28 +04:00
|
|
|
oldpt = pt_softc;
|
2009-01-22 17:38:34 +03:00
|
|
|
oldnpty = npty;
|
2000-09-09 20:42:04 +04:00
|
|
|
pt_softc = newpt;
|
|
|
|
npty = newnpty;
|
|
|
|
} else {
|
2003-07-23 17:10:28 +04:00
|
|
|
/* was enlarged when waited for lock, free new space */
|
|
|
|
oldpt = newpt;
|
2009-01-22 17:38:34 +03:00
|
|
|
oldnpty = newnpty;
|
2000-09-09 20:42:04 +04:00
|
|
|
}
|
2000-09-10 21:26:45 +04:00
|
|
|
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_exit(&pt_softc_mutex);
|
2009-01-22 17:38:34 +03:00
|
|
|
ptyarrfree(oldpt, oldnpty);
|
2000-09-09 20:42:04 +04:00
|
|
|
}
|
2003-07-23 17:10:28 +04:00
|
|
|
|
2000-09-09 20:42:04 +04:00
|
|
|
/*
|
2000-09-10 21:26:45 +04:00
|
|
|
* If the entry is not yet allocated, allocate one. The mutex is
|
|
|
|
* needed so that the state of pt_softc[] array is consistant
|
2003-07-23 17:10:28 +04:00
|
|
|
* in case it has been lengthened above.
|
2000-09-09 20:42:04 +04:00
|
|
|
*/
|
2003-07-23 17:10:28 +04:00
|
|
|
if (!pt_softc[ptn]) {
|
2009-01-22 17:38:34 +03:00
|
|
|
pti = kmem_zalloc(sizeof(*pti), KM_SLEEP);
|
2000-09-10 21:26:45 +04:00
|
|
|
|
2008-03-01 17:16:49 +03:00
|
|
|
selinit(&pti->pt_selr);
|
|
|
|
selinit(&pti->pt_selw);
|
|
|
|
pti->pt_tty = ttymalloc();
|
2000-09-10 21:26:45 +04:00
|
|
|
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_enter(&pt_softc_mutex);
|
2000-09-09 20:42:04 +04:00
|
|
|
|
|
|
|
/*
|
2000-09-10 21:26:45 +04:00
|
|
|
* Check the entry again - it might have been
|
|
|
|
* added while we were waiting for mutex.
|
2000-09-09 20:42:04 +04:00
|
|
|
*/
|
2008-03-01 17:16:49 +03:00
|
|
|
if (pt_softc[ptn]) {
|
|
|
|
mutex_exit(&pt_softc_mutex);
|
2000-09-10 21:26:45 +04:00
|
|
|
ttyfree(pti->pt_tty);
|
2008-03-01 17:16:49 +03:00
|
|
|
seldestroy(&pti->pt_selr);
|
|
|
|
seldestroy(&pti->pt_selw);
|
2009-01-22 17:38:34 +03:00
|
|
|
kmem_free(pti, sizeof(*pti));
|
2008-03-01 17:16:49 +03:00
|
|
|
return (0);
|
2000-09-09 20:42:04 +04:00
|
|
|
}
|
2008-03-01 17:16:49 +03:00
|
|
|
tty_attach(pti->pt_tty);
|
|
|
|
pt_softc[ptn] = pti;
|
2000-09-09 20:42:04 +04:00
|
|
|
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_exit(&pt_softc_mutex);
|
2000-09-10 21:26:45 +04:00
|
|
|
}
|
2000-09-09 20:42:04 +04:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2000-09-10 21:26:45 +04:00
|
|
|
/*
|
|
|
|
* Set maxpty in thread-safe way. Returns 0 in case of error, otherwise
|
|
|
|
* new value of maxptys.
|
|
|
|
*/
|
|
|
|
int
|
2009-03-09 19:19:22 +03:00
|
|
|
pty_maxptys(int newmax, int set)
|
2000-09-10 21:26:45 +04:00
|
|
|
{
|
|
|
|
if (!set)
|
|
|
|
return (maxptys);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We have to grab the pt_softc lock, so that we would pick correct
|
2004-11-10 20:29:54 +03:00
|
|
|
* value of npty (might be modified in pty_check()).
|
2000-09-10 21:26:45 +04:00
|
|
|
*/
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_enter(&pt_softc_mutex);
|
2000-09-10 21:26:45 +04:00
|
|
|
|
2003-07-23 17:10:28 +04:00
|
|
|
/*
|
|
|
|
* The value cannot be set to value lower than the highest pty
|
|
|
|
* number ever allocated.
|
|
|
|
*/
|
|
|
|
if (newmax >= npty)
|
2000-09-10 21:26:45 +04:00
|
|
|
maxptys = newmax;
|
2003-07-23 17:10:28 +04:00
|
|
|
else
|
|
|
|
newmax = 0;
|
2000-09-10 21:26:45 +04:00
|
|
|
|
2007-03-13 00:33:07 +03:00
|
|
|
mutex_exit(&pt_softc_mutex);
|
2000-09-10 21:26:45 +04:00
|
|
|
|
2003-07-23 17:10:28 +04:00
|
|
|
return newmax;
|
2000-09-10 21:26:45 +04:00
|
|
|
}
|
|
|
|
|
1994-05-12 07:48:33 +04:00
|
|
|
/*
|
|
|
|
* Establish n (or default if n is 1) ptys in the system.
|
|
|
|
*/
|
1993-11-15 12:17:05 +03:00
|
|
|
void
|
2009-03-09 19:19:22 +03:00
|
|
|
ptyattach(int n)
|
1993-11-15 12:17:05 +03:00
|
|
|
{
|
2007-03-13 00:33:07 +03:00
|
|
|
|
|
|
|
mutex_init(&pt_softc_mutex, MUTEX_DEFAULT, IPL_NONE);
|
|
|
|
|
1994-05-12 07:48:33 +04:00
|
|
|
/* maybe should allow 0 => none? */
|
|
|
|
if (n <= 1)
|
2000-09-09 20:42:04 +04:00
|
|
|
n = DEFAULT_NPTYS;
|
|
|
|
pt_softc = ptyarralloc(n);
|
1994-05-12 07:48:33 +04:00
|
|
|
npty = n;
|
2004-06-18 19:02:29 +04:00
|
|
|
#ifndef NO_DEV_PTM
|
|
|
|
ptmattach(1);
|
|
|
|
#endif
|
1993-11-15 12:17:05 +03:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*ARGSUSED*/
|
1996-02-04 05:15:01 +03:00
|
|
|
int
|
2006-11-01 13:17:58 +03:00
|
|
|
ptsopen(dev_t dev, int flag, int devtype, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1995-04-19 22:50:21 +04:00
|
|
|
struct pt_softc *pti;
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp;
|
1993-03-21 12:45:37 +03:00
|
|
|
int error;
|
2003-07-23 17:10:28 +04:00
|
|
|
int ptn = minor(dev);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2004-11-10 20:29:54 +03:00
|
|
|
if ((error = pty_check(ptn)) != 0)
|
2000-09-09 20:42:04 +04:00
|
|
|
return (error);
|
|
|
|
|
2007-11-19 22:47:00 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
2003-07-23 17:10:28 +04:00
|
|
|
pti = pt_softc[ptn];
|
2000-09-09 20:42:04 +04:00
|
|
|
tp = pti->pt_tty;
|
1996-09-05 19:31:40 +04:00
|
|
|
if (!ISSET(tp->t_state, TS_ISOPEN)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
ttychars(tp); /* Set up default chars */
|
|
|
|
tp->t_iflag = TTYDEF_IFLAG;
|
|
|
|
tp->t_oflag = TTYDEF_OFLAG;
|
|
|
|
tp->t_lflag = TTYDEF_LFLAG;
|
|
|
|
tp->t_cflag = TTYDEF_CFLAG;
|
|
|
|
tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
|
|
|
|
ttsetwater(tp); /* would be done in xxparam() */
|
2006-12-23 00:56:19 +03:00
|
|
|
} else if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN,
|
2007-11-19 22:47:00 +03:00
|
|
|
tp) != 0) {
|
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EBUSY);
|
2007-11-19 22:47:00 +03:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
if (tp->t_oproc) /* Ctrlr still around. */
|
1996-09-05 19:31:40 +04:00
|
|
|
SET(tp->t_state, TS_CARR_ON);
|
2003-02-05 18:49:02 +03:00
|
|
|
if (!ISSET(flag, O_NONBLOCK)) {
|
1998-03-21 07:02:47 +03:00
|
|
|
while (!ISSET(tp->t_state, TS_CARR_ON)) {
|
|
|
|
tp->t_wopen++;
|
2008-05-25 23:22:21 +04:00
|
|
|
error = ttysleep(tp, &tp->t_rawcv, true, 0);
|
1998-03-21 07:02:47 +03:00
|
|
|
tp->t_wopen--;
|
2003-02-05 18:49:02 +03:00
|
|
|
if (error) {
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1998-03-21 07:02:47 +03:00
|
|
|
return (error);
|
2003-02-05 18:49:02 +03:00
|
|
|
}
|
1998-03-21 07:02:47 +03:00
|
|
|
}
|
2003-02-05 18:49:02 +03:00
|
|
|
}
|
2007-11-19 22:47:00 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2000-11-02 02:51:38 +03:00
|
|
|
error = (*tp->t_linesw->l_open)(dev, tp);
|
1993-03-21 12:45:37 +03:00
|
|
|
ptcwakeup(tp, FREAD|FWRITE);
|
1994-05-12 07:48:33 +04:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
int
|
2006-11-01 13:17:58 +03:00
|
|
|
ptsclose(dev_t dev, int flag, int mode, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp = pti->pt_tty;
|
1996-02-04 05:15:01 +03:00
|
|
|
int error;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-11-02 02:51:38 +03:00
|
|
|
error = (*tp->t_linesw->l_close)(tp, flag);
|
1996-02-04 05:15:01 +03:00
|
|
|
error |= ttyclose(tp);
|
1993-03-21 12:45:37 +03:00
|
|
|
ptcwakeup(tp, FREAD|FWRITE);
|
1996-02-04 05:15:01 +03:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
int
|
2009-03-09 19:19:22 +03:00
|
|
|
ptsread(dev_t dev, struct uio *uio, int flag)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
struct proc *p = curproc;
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp = pti->pt_tty;
|
1993-03-21 12:45:37 +03:00
|
|
|
int error = 0;
|
2007-11-19 22:47:00 +03:00
|
|
|
int cc, c;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
again:
|
|
|
|
if (pti->pt_flags & PF_REMOTE) {
|
2007-11-19 22:47:00 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
2007-02-10 00:55:00 +03:00
|
|
|
while (isbackground(p, tp)) { /* XXXSMP */
|
|
|
|
if (sigismasked(curlwp, SIGTTIN) ||
|
1993-03-21 12:45:37 +03:00
|
|
|
p->p_pgrp->pg_jobc == 0 ||
|
2008-06-16 14:15:57 +04:00
|
|
|
p->p_lflag & PL_PPWAIT) {
|
2007-11-19 22:47:00 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EIO);
|
2007-11-19 22:47:00 +03:00
|
|
|
}
|
2007-11-07 18:56:11 +03:00
|
|
|
ttysig(tp, TTYSIG_PG1, SIGTTIN);
|
|
|
|
error = ttysleep(tp, &lbolt, true, 0);
|
2007-11-19 22:47:00 +03:00
|
|
|
if (error) {
|
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
2007-11-19 22:47:00 +03:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-07-12 15:33:54 +04:00
|
|
|
if (tp->t_canq.c_cc == 0) {
|
2003-02-05 18:49:02 +03:00
|
|
|
if (flag & IO_NDELAY) {
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EWOULDBLOCK);
|
2003-02-05 18:49:02 +03:00
|
|
|
}
|
2008-05-25 23:22:21 +04:00
|
|
|
error = ttysleep(tp, &tp->t_cancv, true, 0);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1996-02-04 05:15:01 +03:00
|
|
|
if (error)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
goto again;
|
|
|
|
}
|
2003-02-05 18:49:02 +03:00
|
|
|
while(error == 0 && tp->t_canq.c_cc > 1 && uio->uio_resid > 0) {
|
2007-11-19 22:47:00 +03:00
|
|
|
c = getc(&tp->t_canq);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2007-11-19 22:47:00 +03:00
|
|
|
error = ureadc(c, uio);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
2003-02-05 18:49:02 +03:00
|
|
|
/* Re-check terminal state here? */
|
|
|
|
}
|
1993-07-12 15:33:54 +04:00
|
|
|
if (tp->t_canq.c_cc == 1)
|
|
|
|
(void) getc(&tp->t_canq);
|
2003-02-05 18:49:02 +03:00
|
|
|
cc = tp->t_canq.c_cc;
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2003-02-05 18:49:02 +03:00
|
|
|
if (cc)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
2007-11-19 22:47:00 +03:00
|
|
|
} else if (tp->t_oproc)
|
|
|
|
error = (*tp->t_linesw->l_read)(tp, uio, flag);
|
1993-03-21 12:45:37 +03:00
|
|
|
ptcwakeup(tp, FWRITE);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write to pseudo-tty.
|
|
|
|
* Wakeups of controlling tty will happen
|
|
|
|
* indirectly, when tty driver calls ptsstart.
|
|
|
|
*/
|
1996-02-04 05:15:01 +03:00
|
|
|
int
|
2009-03-09 19:19:22 +03:00
|
|
|
ptswrite(dev_t dev, struct uio *uio, int flag)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp = pti->pt_tty;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (tp->t_oproc == 0)
|
|
|
|
return (EIO);
|
2000-11-02 02:51:38 +03:00
|
|
|
return ((*tp->t_linesw->l_write)(tp, uio, flag));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2001-05-02 14:32:08 +04:00
|
|
|
/*
|
|
|
|
* Poll pseudo-tty.
|
|
|
|
*/
|
|
|
|
int
|
2009-03-09 19:19:22 +03:00
|
|
|
ptspoll(dev_t dev, int events, struct lwp *l)
|
2001-05-02 14:32:08 +04:00
|
|
|
{
|
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
|
|
|
struct tty *tp = pti->pt_tty;
|
|
|
|
|
|
|
|
if (tp->t_oproc == 0)
|
2005-06-21 18:01:11 +04:00
|
|
|
return (POLLHUP);
|
2005-02-27 00:34:55 +03:00
|
|
|
|
2005-12-11 15:16:03 +03:00
|
|
|
return ((*tp->t_linesw->l_poll)(tp, events, l));
|
2001-05-02 14:32:08 +04:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Start output on pseudo-tty.
|
1996-09-07 16:40:22 +04:00
|
|
|
* Wake up process polling or sleeping for input from controlling tty.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-08-29 17:46:31 +04:00
|
|
|
void
|
2009-03-09 19:19:22 +03:00
|
|
|
ptsstart(struct tty *tp)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(tp->t_dev)];
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2007-11-19 22:47:00 +03:00
|
|
|
KASSERT(mutex_owned(&tty_lock));
|
|
|
|
|
1996-09-05 19:31:40 +04:00
|
|
|
if (ISSET(tp->t_state, TS_TTSTOP))
|
1993-08-29 17:46:31 +04:00
|
|
|
return;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (pti->pt_flags & PF_STOPPED) {
|
|
|
|
pti->pt_flags &= ~PF_STOPPED;
|
|
|
|
pti->pt_send = TIOCPKT_START;
|
|
|
|
}
|
2003-02-05 18:49:02 +03:00
|
|
|
|
2008-03-01 17:16:49 +03:00
|
|
|
selnotify(&pti->pt_selr, 0, NOTE_SUBMIT);
|
2008-05-25 23:22:21 +04:00
|
|
|
cv_broadcast(&tp->t_outcvf);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2003-02-05 18:49:02 +03:00
|
|
|
/*
|
|
|
|
* Stop output.
|
|
|
|
*/
|
1996-09-02 10:43:16 +04:00
|
|
|
void
|
2009-03-09 19:19:22 +03:00
|
|
|
ptsstop(struct tty *tp, int flush)
|
1996-02-04 05:15:01 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(tp->t_dev)];
|
1996-02-04 05:15:01 +03:00
|
|
|
|
2007-11-19 22:47:00 +03:00
|
|
|
KASSERT(mutex_owned(&tty_lock));
|
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
/* note: FLUSHREAD and FLUSHWRITE already ok */
|
|
|
|
if (flush == 0) {
|
|
|
|
flush = TIOCPKT_STOP;
|
|
|
|
pti->pt_flags |= PF_STOPPED;
|
|
|
|
} else
|
|
|
|
pti->pt_flags &= ~PF_STOPPED;
|
|
|
|
pti->pt_send |= flush;
|
2003-02-05 18:49:02 +03:00
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
/* change of perspective */
|
2003-02-05 18:49:02 +03:00
|
|
|
if (flush & FREAD) {
|
2008-03-01 17:16:49 +03:00
|
|
|
selnotify(&pti->pt_selw, 0, NOTE_SUBMIT);
|
2008-05-25 23:22:21 +04:00
|
|
|
cv_broadcast(&tp->t_rawcvf);
|
2003-02-05 18:49:02 +03:00
|
|
|
}
|
|
|
|
if (flush & FWRITE) {
|
2008-03-01 17:16:49 +03:00
|
|
|
selnotify(&pti->pt_selr, 0, NOTE_SUBMIT);
|
2008-05-25 23:22:21 +04:00
|
|
|
cv_broadcast(&tp->t_outcvf);
|
2003-02-05 18:49:02 +03:00
|
|
|
}
|
1996-02-04 05:15:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-03-09 19:19:22 +03:00
|
|
|
ptcwakeup(struct tty *tp, int flag)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(tp->t_dev)];
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (flag & FREAD) {
|
2008-03-01 17:16:49 +03:00
|
|
|
selnotify(&pti->pt_selr, 0, NOTE_SUBMIT);
|
2008-05-25 23:22:21 +04:00
|
|
|
cv_broadcast(&tp->t_outcvf);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (flag & FWRITE) {
|
2008-03-01 17:16:49 +03:00
|
|
|
selnotify(&pti->pt_selw, 0, NOTE_SUBMIT);
|
2008-05-25 23:22:21 +04:00
|
|
|
cv_broadcast(&tp->t_rawcvf);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
1994-12-13 22:59:25 +03:00
|
|
|
int
|
2006-11-01 13:17:58 +03:00
|
|
|
ptcopen(dev_t dev, int flag, int devtype, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1995-04-19 22:50:21 +04:00
|
|
|
struct pt_softc *pti;
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp;
|
2000-09-09 20:42:04 +04:00
|
|
|
int error;
|
2003-07-23 17:10:28 +04:00
|
|
|
int ptn = minor(dev);
|
2000-09-09 20:42:04 +04:00
|
|
|
|
2004-11-10 20:29:54 +03:00
|
|
|
if ((error = pty_check(ptn)) != 0)
|
2000-09-09 20:42:04 +04:00
|
|
|
return (error);
|
|
|
|
|
2003-07-23 17:10:28 +04:00
|
|
|
pti = pt_softc[ptn];
|
2000-09-09 20:42:04 +04:00
|
|
|
tp = pti->pt_tty;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
2003-07-23 17:10:28 +04:00
|
|
|
if (tp->t_oproc) {
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EIO);
|
2003-07-23 17:10:28 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
tp->t_oproc = ptsstart;
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2000-11-02 02:51:38 +03:00
|
|
|
(void)(*tp->t_linesw->l_modem)(tp, 1);
|
1996-09-05 19:31:40 +04:00
|
|
|
CLR(tp->t_lflag, EXTPROC);
|
1994-05-12 07:48:33 +04:00
|
|
|
pti->pt_flags = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
pti->pt_send = 0;
|
|
|
|
pti->pt_ucntl = 0;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
/*ARGSUSED*/
|
1994-12-13 22:59:25 +03:00
|
|
|
int
|
2006-11-01 13:17:58 +03:00
|
|
|
ptcclose(dev_t dev, int flag, int devtype, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp = pti->pt_tty;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-11-02 02:51:38 +03:00
|
|
|
(void)(*tp->t_linesw->l_modem)(tp, 0);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
2007-11-19 22:47:00 +03:00
|
|
|
CLR(tp->t_state, TS_CARR_ON);
|
1993-03-21 12:45:37 +03:00
|
|
|
tp->t_oproc = 0; /* mark closed */
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 21:04:42 +03:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
int
|
2009-03-09 19:19:22 +03:00
|
|
|
ptcread(dev_t dev, struct uio *uio, int flag)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp = pti->pt_tty;
|
2005-05-30 02:24:14 +04:00
|
|
|
u_char bf[BUFSIZ];
|
1993-03-21 12:45:37 +03:00
|
|
|
int error = 0, cc;
|
2009-10-11 12:08:32 +04:00
|
|
|
int c;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2009-10-14 23:25:39 +04:00
|
|
|
if (uio->uio_resid <= 0)
|
|
|
|
return EINVAL;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* We want to block until the slave
|
|
|
|
* is open, and there's something to read;
|
|
|
|
* but if we lost the slave or we're NBIO,
|
|
|
|
* then return the appropriate error instead.
|
|
|
|
*/
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
for (;;) {
|
1996-09-05 19:31:40 +04:00
|
|
|
if (ISSET(tp->t_state, TS_ISOPEN)) {
|
2009-10-11 12:08:32 +04:00
|
|
|
if (pti->pt_flags & PF_PKT && (c = pti->pt_send)) {
|
|
|
|
pti->pt_send = 0;
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2009-10-11 12:08:32 +04:00
|
|
|
error = ureadc(c, uio);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (error)
|
|
|
|
return (error);
|
2003-02-05 18:49:02 +03:00
|
|
|
/*
|
|
|
|
* Since we don't have the tty locked, there's
|
|
|
|
* a risk of messing up `t_termios'. This is
|
|
|
|
* relevant only if the tty got closed and then
|
|
|
|
* opened again while we were out uiomoving.
|
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
if (pti->pt_send & TIOCPKT_IOCTL) {
|
1994-05-12 07:48:33 +04:00
|
|
|
cc = min(uio->uio_resid,
|
1993-03-21 12:45:37 +03:00
|
|
|
sizeof(tp->t_termios));
|
2007-03-04 08:59:00 +03:00
|
|
|
uiomove((void *) &tp->t_termios,
|
1996-02-04 05:15:01 +03:00
|
|
|
cc, uio);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
2009-10-11 12:08:32 +04:00
|
|
|
if (pti->pt_flags & PF_UCNTL && (c = pti->pt_ucntl)) {
|
|
|
|
pti->pt_ucntl = 0;
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2009-10-11 12:08:32 +04:00
|
|
|
error = ureadc(c, uio);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
return (0);
|
|
|
|
}
|
1996-09-05 19:31:40 +04:00
|
|
|
if (tp->t_outq.c_cc && !ISSET(tp->t_state, TS_TTSTOP))
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-02-05 18:49:02 +03:00
|
|
|
if (!ISSET(tp->t_state, TS_CARR_ON)) {
|
|
|
|
error = 0; /* EOF */
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (flag & IO_NDELAY) {
|
|
|
|
error = EWOULDBLOCK;
|
|
|
|
goto out;
|
|
|
|
}
|
2008-05-25 23:22:21 +04:00
|
|
|
error = cv_wait_sig(&tp->t_outcvf, &tty_lock);
|
1996-02-04 05:15:01 +03:00
|
|
|
if (error)
|
2003-02-05 18:49:02 +03:00
|
|
|
goto out;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2003-02-05 18:49:02 +03:00
|
|
|
|
|
|
|
if (pti->pt_flags & (PF_PKT|PF_UCNTL)) {
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
error = ureadc(0, uio);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
2003-02-05 18:49:02 +03:00
|
|
|
if (error == 0 && !ISSET(tp->t_state, TS_ISOPEN))
|
|
|
|
error = EIO;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
while (uio->uio_resid > 0 && error == 0) {
|
2005-05-30 02:24:14 +04:00
|
|
|
cc = q_to_b(&tp->t_outq, bf, min(uio->uio_resid, BUFSIZ));
|
1993-03-21 12:45:37 +03:00
|
|
|
if (cc <= 0)
|
|
|
|
break;
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2005-05-30 02:24:14 +04:00
|
|
|
error = uiomove(bf, cc, uio);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
2003-02-05 18:49:02 +03:00
|
|
|
if (error == 0 && !ISSET(tp->t_state, TS_ISOPEN))
|
|
|
|
error = EIO;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2007-11-19 21:51:36 +03:00
|
|
|
ttypull(tp);
|
2003-02-05 18:49:02 +03:00
|
|
|
out:
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
int
|
2009-03-09 19:19:22 +03:00
|
|
|
ptcwrite(dev_t dev, struct uio *uio, int flag)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp = pti->pt_tty;
|
|
|
|
u_char *cp = NULL;
|
|
|
|
int cc = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
u_char locbuf[BUFSIZ];
|
|
|
|
int cnt = 0;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
again:
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
1996-09-05 19:31:40 +04:00
|
|
|
if (!ISSET(tp->t_state, TS_ISOPEN))
|
1993-03-21 12:45:37 +03:00
|
|
|
goto block;
|
|
|
|
if (pti->pt_flags & PF_REMOTE) {
|
1993-07-12 15:33:54 +04:00
|
|
|
if (tp->t_canq.c_cc)
|
1993-03-21 12:45:37 +03:00
|
|
|
goto block;
|
1993-07-12 15:33:54 +04:00
|
|
|
while (uio->uio_resid > 0 && tp->t_canq.c_cc < TTYHOG - 1) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (cc == 0) {
|
|
|
|
cc = min(uio->uio_resid, BUFSIZ);
|
1993-07-12 15:33:54 +04:00
|
|
|
cc = min(cc, TTYHOG - 1 - tp->t_canq.c_cc);
|
1993-03-21 12:45:37 +03:00
|
|
|
cp = locbuf;
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2007-03-04 08:59:00 +03:00
|
|
|
error = uiomove((void *)cp, cc, uio);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (error)
|
|
|
|
return (error);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
/* check again for safety */
|
2003-02-05 18:49:02 +03:00
|
|
|
if (!ISSET(tp->t_state, TS_ISOPEN)) {
|
2006-08-04 02:06:55 +04:00
|
|
|
/*
|
|
|
|
* adjust for data copied in but not
|
|
|
|
* written
|
|
|
|
*/
|
|
|
|
uio->uio_resid += cc;
|
2003-02-05 18:49:02 +03:00
|
|
|
error = EIO;
|
|
|
|
goto out;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
if (cc)
|
2003-01-20 02:11:46 +03:00
|
|
|
(void) b_to_q(cp, cc, &tp->t_canq);
|
1993-03-21 12:45:37 +03:00
|
|
|
cc = 0;
|
|
|
|
}
|
1993-07-12 15:33:54 +04:00
|
|
|
(void) putc(0, &tp->t_canq);
|
1993-03-21 12:45:37 +03:00
|
|
|
ttwakeup(tp);
|
2008-05-25 23:22:21 +04:00
|
|
|
cv_broadcast(&tp->t_cancv);
|
2003-02-05 18:49:02 +03:00
|
|
|
error = 0;
|
|
|
|
goto out;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
while (uio->uio_resid > 0) {
|
|
|
|
if (cc == 0) {
|
|
|
|
cc = min(uio->uio_resid, BUFSIZ);
|
|
|
|
cp = locbuf;
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2007-03-04 08:59:00 +03:00
|
|
|
error = uiomove((void *)cp, cc, uio);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (error)
|
|
|
|
return (error);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
/* check again for safety */
|
2003-02-05 18:49:02 +03:00
|
|
|
if (!ISSET(tp->t_state, TS_ISOPEN)) {
|
2006-08-04 02:03:18 +04:00
|
|
|
/* adjust for data copied in but not written */
|
|
|
|
uio->uio_resid += cc;
|
2003-02-05 18:49:02 +03:00
|
|
|
error = EIO;
|
|
|
|
goto out;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
while (cc > 0) {
|
1993-07-12 15:33:54 +04:00
|
|
|
if ((tp->t_rawq.c_cc + tp->t_canq.c_cc) >= TTYHOG - 2 &&
|
2002-02-17 22:34:42 +03:00
|
|
|
(tp->t_canq.c_cc > 0 || !ISSET(tp->t_lflag, ICANON))) {
|
2008-05-25 23:22:21 +04:00
|
|
|
cv_broadcast(&tp->t_rawcv);
|
1993-03-21 12:45:37 +03:00
|
|
|
goto block;
|
|
|
|
}
|
2003-02-05 18:49:02 +03:00
|
|
|
/* XXX - should change l_rint to be called with lock
|
|
|
|
* see also tty.c:ttyinput_wlock()
|
|
|
|
*/
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2000-11-02 02:51:38 +03:00
|
|
|
(*tp->t_linesw->l_rint)(*cp++, tp);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
cnt++;
|
|
|
|
cc--;
|
|
|
|
}
|
|
|
|
cc = 0;
|
|
|
|
}
|
2003-02-05 18:49:02 +03:00
|
|
|
error = 0;
|
|
|
|
goto out;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
block:
|
|
|
|
/*
|
|
|
|
* Come here to wait for slave to open, for space
|
|
|
|
* in outq, or space in rawq.
|
|
|
|
*/
|
2003-02-05 18:49:02 +03:00
|
|
|
if (!ISSET(tp->t_state, TS_CARR_ON)) {
|
2006-08-04 02:03:18 +04:00
|
|
|
/* adjust for data copied in but not written */
|
|
|
|
uio->uio_resid += cc;
|
2003-02-05 18:49:02 +03:00
|
|
|
error = EIO;
|
|
|
|
goto out;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
if (flag & IO_NDELAY) {
|
|
|
|
/* adjust for data copied in but not written */
|
|
|
|
uio->uio_resid += cc;
|
2003-02-05 18:49:02 +03:00
|
|
|
error = cnt == 0 ? EWOULDBLOCK : 0;
|
|
|
|
goto out;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2009-06-12 13:26:50 +04:00
|
|
|
error = cv_wait_sig(&tp->t_rawcvf, &tty_lock);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1996-02-04 05:15:01 +03:00
|
|
|
if (error) {
|
1993-03-21 12:45:37 +03:00
|
|
|
/* adjust for data copied in but not written */
|
|
|
|
uio->uio_resid += cc;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
goto again;
|
2003-02-05 18:49:02 +03:00
|
|
|
|
|
|
|
out:
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2003-02-05 18:49:02 +03:00
|
|
|
return (error);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
int
|
2009-03-09 19:19:22 +03:00
|
|
|
ptcpoll(dev_t dev, int events, struct lwp *l)
|
1996-02-04 05:15:01 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp = pti->pt_tty;
|
1996-09-07 16:40:22 +04:00
|
|
|
int revents = 0;
|
2007-11-07 18:56:11 +03:00
|
|
|
|
|
|
|
mutex_spin_enter(&tty_lock);
|
1996-02-04 05:15:01 +03:00
|
|
|
|
1996-09-07 16:40:22 +04:00
|
|
|
if (events & (POLLIN | POLLRDNORM))
|
1996-09-05 19:31:40 +04:00
|
|
|
if (ISSET(tp->t_state, TS_ISOPEN) &&
|
1996-09-07 16:40:22 +04:00
|
|
|
((tp->t_outq.c_cc > 0 && !ISSET(tp->t_state, TS_TTSTOP)) ||
|
|
|
|
((pti->pt_flags & PF_PKT) && pti->pt_send) ||
|
|
|
|
((pti->pt_flags & PF_UCNTL) && pti->pt_ucntl)))
|
|
|
|
revents |= events & (POLLIN | POLLRDNORM);
|
1996-02-04 05:15:01 +03:00
|
|
|
|
1996-09-07 16:40:22 +04:00
|
|
|
if (events & (POLLOUT | POLLWRNORM))
|
1996-09-05 19:31:40 +04:00
|
|
|
if (ISSET(tp->t_state, TS_ISOPEN) &&
|
1996-09-07 16:40:22 +04:00
|
|
|
((pti->pt_flags & PF_REMOTE) ?
|
|
|
|
(tp->t_canq.c_cc == 0) :
|
|
|
|
((tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHOG-2) ||
|
2002-02-17 22:34:42 +03:00
|
|
|
(tp->t_canq.c_cc == 0 && ISSET(tp->t_lflag, ICANON)))))
|
1996-09-07 16:40:22 +04:00
|
|
|
revents |= events & (POLLOUT | POLLWRNORM);
|
1996-02-04 05:15:01 +03:00
|
|
|
|
1996-09-07 16:40:22 +04:00
|
|
|
if (events & POLLHUP)
|
|
|
|
if (!ISSET(tp->t_state, TS_CARR_ON))
|
|
|
|
revents |= POLLHUP;
|
1996-02-04 05:15:01 +03:00
|
|
|
|
1996-09-07 16:40:22 +04:00
|
|
|
if (revents == 0) {
|
|
|
|
if (events & (POLLIN | POLLHUP | POLLRDNORM))
|
2005-12-11 15:16:03 +03:00
|
|
|
selrecord(l, &pti->pt_selr);
|
1996-02-04 05:15:01 +03:00
|
|
|
|
1996-09-07 16:40:22 +04:00
|
|
|
if (events & (POLLOUT | POLLWRNORM))
|
2005-12-11 15:16:03 +03:00
|
|
|
selrecord(l, &pti->pt_selw);
|
1996-02-04 05:15:01 +03:00
|
|
|
}
|
1996-09-07 16:40:22 +04:00
|
|
|
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
|
|
|
|
1996-09-07 16:40:22 +04:00
|
|
|
return (revents);
|
1996-02-04 05:15:01 +03:00
|
|
|
}
|
|
|
|
|
2002-10-23 13:10:23 +04:00
|
|
|
static void
|
|
|
|
filt_ptcrdetach(struct knote *kn)
|
|
|
|
{
|
|
|
|
struct pt_softc *pti;
|
2007-11-07 18:56:11 +03:00
|
|
|
struct tty *tp;
|
2002-10-23 13:10:23 +04:00
|
|
|
|
|
|
|
pti = kn->kn_hook;
|
2007-11-07 18:56:11 +03:00
|
|
|
tp = pti->pt_tty;
|
|
|
|
|
|
|
|
mutex_spin_enter(&tty_lock);
|
2002-11-26 21:44:34 +03:00
|
|
|
SLIST_REMOVE(&pti->pt_selr.sel_klist, kn, knote, kn_selnext);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-11-01 13:17:58 +03:00
|
|
|
filt_ptcread(struct knote *kn, long hint)
|
2002-10-23 13:10:23 +04:00
|
|
|
{
|
|
|
|
struct pt_softc *pti;
|
|
|
|
struct tty *tp;
|
|
|
|
int canread;
|
|
|
|
|
|
|
|
pti = kn->kn_hook;
|
|
|
|
tp = pti->pt_tty;
|
|
|
|
|
2007-12-31 01:03:01 +03:00
|
|
|
if ((hint & NOTE_SUBMIT) == 0) {
|
|
|
|
mutex_spin_enter(&tty_lock);
|
|
|
|
}
|
2007-11-07 18:56:11 +03:00
|
|
|
|
2002-10-23 13:10:23 +04:00
|
|
|
canread = (ISSET(tp->t_state, TS_ISOPEN) &&
|
|
|
|
((tp->t_outq.c_cc > 0 && !ISSET(tp->t_state, TS_TTSTOP)) ||
|
|
|
|
((pti->pt_flags & PF_PKT) && pti->pt_send) ||
|
|
|
|
((pti->pt_flags & PF_UCNTL) && pti->pt_ucntl)));
|
|
|
|
|
|
|
|
if (canread) {
|
|
|
|
/*
|
|
|
|
* c_cc is number of characters after output post-processing;
|
2005-02-27 00:34:55 +03:00
|
|
|
* the amount of data actually read(2) depends on
|
2002-10-23 13:10:23 +04:00
|
|
|
* setting of input flags for the terminal.
|
|
|
|
*/
|
|
|
|
kn->kn_data = tp->t_outq.c_cc;
|
|
|
|
if (((pti->pt_flags & PF_PKT) && pti->pt_send) ||
|
|
|
|
((pti->pt_flags & PF_UCNTL) && pti->pt_ucntl))
|
|
|
|
kn->kn_data++;
|
|
|
|
}
|
|
|
|
|
2007-12-31 01:03:01 +03:00
|
|
|
if ((hint & NOTE_SUBMIT) == 0) {
|
|
|
|
mutex_spin_exit(&tty_lock);
|
|
|
|
}
|
2007-11-07 18:56:11 +03:00
|
|
|
|
2002-10-23 13:10:23 +04:00
|
|
|
return (canread);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
filt_ptcwdetach(struct knote *kn)
|
|
|
|
{
|
|
|
|
struct pt_softc *pti;
|
2007-11-07 18:56:11 +03:00
|
|
|
struct tty *tp;
|
2002-10-23 13:10:23 +04:00
|
|
|
|
|
|
|
pti = kn->kn_hook;
|
2007-11-07 18:56:11 +03:00
|
|
|
tp = pti->pt_tty;
|
|
|
|
|
|
|
|
mutex_spin_enter(&tty_lock);
|
2002-11-26 21:44:34 +03:00
|
|
|
SLIST_REMOVE(&pti->pt_selw.sel_klist, kn, knote, kn_selnext);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2006-11-01 13:17:58 +03:00
|
|
|
filt_ptcwrite(struct knote *kn, long hint)
|
2002-10-23 13:10:23 +04:00
|
|
|
{
|
|
|
|
struct pt_softc *pti;
|
|
|
|
struct tty *tp;
|
|
|
|
int canwrite;
|
|
|
|
int nwrite;
|
|
|
|
|
|
|
|
pti = kn->kn_hook;
|
|
|
|
tp = pti->pt_tty;
|
|
|
|
|
2007-12-31 01:03:01 +03:00
|
|
|
if ((hint & NOTE_SUBMIT) == 0) {
|
|
|
|
mutex_spin_enter(&tty_lock);
|
|
|
|
}
|
2007-11-07 18:56:11 +03:00
|
|
|
|
2002-10-23 13:10:23 +04:00
|
|
|
canwrite = (ISSET(tp->t_state, TS_ISOPEN) &&
|
|
|
|
((pti->pt_flags & PF_REMOTE) ?
|
|
|
|
(tp->t_canq.c_cc == 0) :
|
|
|
|
((tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHOG-2) ||
|
|
|
|
(tp->t_canq.c_cc == 0 && ISSET(tp->t_lflag, ICANON)))));
|
|
|
|
|
|
|
|
if (canwrite) {
|
|
|
|
if (pti->pt_flags & PF_REMOTE)
|
|
|
|
nwrite = tp->t_canq.c_cn;
|
|
|
|
else {
|
|
|
|
/* this is guaranteed to be > 0 due to above check */
|
|
|
|
nwrite = tp->t_canq.c_cn
|
|
|
|
- (tp->t_rawq.c_cc + tp->t_canq.c_cc);
|
|
|
|
}
|
|
|
|
kn->kn_data = nwrite;
|
|
|
|
}
|
|
|
|
|
2007-12-31 01:03:01 +03:00
|
|
|
if ((hint & NOTE_SUBMIT) == 0) {
|
|
|
|
mutex_spin_exit(&tty_lock);
|
|
|
|
}
|
2007-11-07 18:56:11 +03:00
|
|
|
|
2002-10-23 13:10:23 +04:00
|
|
|
return (canwrite);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct filterops ptcread_filtops =
|
|
|
|
{ 1, NULL, filt_ptcrdetach, filt_ptcread };
|
|
|
|
static const struct filterops ptcwrite_filtops =
|
|
|
|
{ 1, NULL, filt_ptcwdetach, filt_ptcwrite };
|
|
|
|
|
|
|
|
int
|
|
|
|
ptckqfilter(dev_t dev, struct knote *kn)
|
|
|
|
{
|
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
|
|
|
struct klist *klist;
|
|
|
|
|
|
|
|
switch (kn->kn_filter) {
|
|
|
|
case EVFILT_READ:
|
2002-11-26 21:44:34 +03:00
|
|
|
klist = &pti->pt_selr.sel_klist;
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_fop = &ptcread_filtops;
|
|
|
|
break;
|
|
|
|
case EVFILT_WRITE:
|
2002-11-26 21:44:34 +03:00
|
|
|
klist = &pti->pt_selw.sel_klist;
|
2002-10-23 13:10:23 +04:00
|
|
|
kn->kn_fop = &ptcwrite_filtops;
|
|
|
|
break;
|
|
|
|
default:
|
2007-12-05 20:19:46 +03:00
|
|
|
return (EINVAL);
|
2002-10-23 13:10:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
kn->kn_hook = pti;
|
|
|
|
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
2002-10-23 13:10:23 +04:00
|
|
|
SLIST_INSERT_HEAD(klist, kn, kn_selnext);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
2002-10-23 13:10:23 +04:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
1996-02-04 05:15:01 +03:00
|
|
|
|
1995-04-20 02:33:56 +04:00
|
|
|
struct tty *
|
2009-03-09 19:19:22 +03:00
|
|
|
ptytty(dev_t dev)
|
1995-04-20 02:33:56 +04:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp = pti->pt_tty;
|
1995-04-20 02:33:56 +04:00
|
|
|
|
|
|
|
return (tp);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*ARGSUSED*/
|
1996-02-04 05:15:01 +03:00
|
|
|
int
|
2009-03-09 19:19:22 +03:00
|
|
|
ptyioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2000-09-09 20:42:04 +04:00
|
|
|
struct pt_softc *pti = pt_softc[minor(dev)];
|
2000-03-30 13:27:11 +04:00
|
|
|
struct tty *tp = pti->pt_tty;
|
2002-09-06 17:18:43 +04:00
|
|
|
const struct cdevsw *cdev;
|
2000-03-30 13:27:11 +04:00
|
|
|
u_char *cc = tp->t_cc;
|
2000-07-14 16:10:58 +04:00
|
|
|
int stop, error, sig;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* IF CONTROLLER STTY THEN MUST FLUSH TO PREVENT A HANG.
|
|
|
|
* ttywflush(tp) will hang if there are characters in the outq.
|
|
|
|
*/
|
|
|
|
if (cmd == TIOCEXT) {
|
|
|
|
/*
|
|
|
|
* When the EXTPROC bit is being toggled, we need
|
|
|
|
* to send an TIOCPKT_IOCTL if the packet driver
|
|
|
|
* is turned on.
|
|
|
|
*/
|
|
|
|
if (*(int *)data) {
|
|
|
|
if (pti->pt_flags & PF_PKT) {
|
|
|
|
pti->pt_send |= TIOCPKT_IOCTL;
|
|
|
|
ptcwakeup(tp, FREAD);
|
|
|
|
}
|
1996-09-05 19:31:40 +04:00
|
|
|
SET(tp->t_lflag, EXTPROC);
|
1993-03-21 12:45:37 +03:00
|
|
|
} else {
|
1998-03-01 05:20:01 +03:00
|
|
|
if (ISSET(tp->t_lflag, EXTPROC) &&
|
1993-03-21 12:45:37 +03:00
|
|
|
(pti->pt_flags & PF_PKT)) {
|
|
|
|
pti->pt_send |= TIOCPKT_IOCTL;
|
|
|
|
ptcwakeup(tp, FREAD);
|
|
|
|
}
|
1996-09-05 19:31:40 +04:00
|
|
|
CLR(tp->t_lflag, EXTPROC);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
return(0);
|
2003-07-23 17:10:28 +04:00
|
|
|
}
|
|
|
|
|
2004-11-10 20:29:54 +03:00
|
|
|
#ifndef NO_DEV_PTM
|
|
|
|
/* Allow getting the name from either the master or the slave */
|
|
|
|
if (cmd == TIOCPTSNAME)
|
2006-04-13 21:44:24 +04:00
|
|
|
return pty_fill_ptmget(l, dev, -1, -1, data);
|
2004-11-10 20:29:54 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
cdev = cdevsw_lookup(dev);
|
2002-09-06 17:18:43 +04:00
|
|
|
if (cdev != NULL && cdev->d_open == ptcopen)
|
1993-03-21 12:45:37 +03:00
|
|
|
switch (cmd) {
|
2004-06-18 19:02:29 +04:00
|
|
|
#ifndef NO_DEV_PTM
|
2004-05-27 06:56:38 +04:00
|
|
|
case TIOCGRANTPT:
|
2005-12-11 15:16:03 +03:00
|
|
|
return pty_grant_slave(l, dev);
|
2004-05-27 06:56:38 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
case TIOCGPGRP:
|
1996-07-03 01:19:02 +04:00
|
|
|
/*
|
|
|
|
* We avoid calling ttioctl on the controller since,
|
1993-03-21 12:45:37 +03:00
|
|
|
* in that case, tp must be the controlling terminal.
|
|
|
|
*/
|
|
|
|
*(int *)data = tp->t_pgrp ? tp->t_pgrp->pg_id : 0;
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
case TIOCPKT:
|
|
|
|
if (*(int *)data) {
|
|
|
|
if (pti->pt_flags & PF_UCNTL)
|
|
|
|
return (EINVAL);
|
|
|
|
pti->pt_flags |= PF_PKT;
|
|
|
|
} else
|
|
|
|
pti->pt_flags &= ~PF_PKT;
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
case TIOCUCNTL:
|
|
|
|
if (*(int *)data) {
|
|
|
|
if (pti->pt_flags & PF_PKT)
|
|
|
|
return (EINVAL);
|
|
|
|
pti->pt_flags |= PF_UCNTL;
|
|
|
|
} else
|
|
|
|
pti->pt_flags &= ~PF_UCNTL;
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
case TIOCREMOTE:
|
|
|
|
if (*(int *)data)
|
|
|
|
pti->pt_flags |= PF_REMOTE;
|
|
|
|
else
|
|
|
|
pti->pt_flags &= ~PF_REMOTE;
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
ttyflush(tp, FREAD|FWRITE);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
|
1996-07-03 01:19:02 +04:00
|
|
|
case TIOCSETP:
|
1993-03-21 12:45:37 +03:00
|
|
|
case TIOCSETN:
|
|
|
|
case TIOCSETD:
|
|
|
|
case TIOCSETA:
|
|
|
|
case TIOCSETAW:
|
|
|
|
case TIOCSETAF:
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
1994-05-05 09:35:42 +04:00
|
|
|
ndflush(&tp->t_outq, tp->t_outq.c_cc);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_exit(&tty_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TIOCSIG:
|
2007-03-04 08:59:00 +03:00
|
|
|
sig = (int)(long)*(void **)data;
|
2000-07-14 16:10:58 +04:00
|
|
|
if (sig <= 0 || sig >= NSIG)
|
|
|
|
return (EINVAL);
|
2007-11-07 18:56:11 +03:00
|
|
|
mutex_spin_enter(&tty_lock);
|
1996-09-05 19:31:40 +04:00
|
|
|
if (!ISSET(tp->t_lflag, NOFLSH))
|
1993-03-21 12:45:37 +03:00
|
|
|
ttyflush(tp, FREAD|FWRITE);
|
2008-04-20 23:22:44 +04:00
|
|
|
tp->t_state |= TS_SIGINFO;
|
2007-11-07 18:56:11 +03:00
|
|
|
ttysig(tp, TTYSIG_PG1, sig);
|
|
|
|
mutex_spin_exit(&tty_lock);
|
2008-09-03 20:47:34 +04:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
case FIONREAD:
|
|
|
|
mutex_spin_enter(&tty_lock);
|
|
|
|
*(int *)data = tp->t_outq.c_cc;
|
|
|
|
mutex_spin_exit(&tty_lock);
|
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2003-07-23 17:10:28 +04:00
|
|
|
|
2005-12-11 15:16:03 +03:00
|
|
|
error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, l);
|
2002-03-17 22:40:26 +03:00
|
|
|
if (error == EPASSTHROUGH)
|
2005-12-11 15:16:03 +03:00
|
|
|
error = ttioctl(tp, cmd, data, flag, l);
|
2002-03-17 22:40:26 +03:00
|
|
|
if (error == EPASSTHROUGH) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (pti->pt_flags & PF_UCNTL &&
|
|
|
|
(cmd & ~0xff) == UIOCCMD(0)) {
|
|
|
|
if (cmd & 0xff) {
|
|
|
|
pti->pt_ucntl = (u_char)cmd;
|
|
|
|
ptcwakeup(tp, FREAD);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If external processing and packet mode send ioctl packet.
|
|
|
|
*/
|
1996-09-05 19:31:40 +04:00
|
|
|
if (ISSET(tp->t_lflag, EXTPROC) && (pti->pt_flags & PF_PKT)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
switch(cmd) {
|
|
|
|
case TIOCSETA:
|
|
|
|
case TIOCSETAW:
|
|
|
|
case TIOCSETAF:
|
|
|
|
case TIOCSETP:
|
|
|
|
case TIOCSETN:
|
|
|
|
case TIOCSETC:
|
|
|
|
case TIOCSLTC:
|
|
|
|
case TIOCLBIS:
|
|
|
|
case TIOCLBIC:
|
|
|
|
case TIOCLSET:
|
|
|
|
pti->pt_send |= TIOCPKT_IOCTL;
|
1994-05-12 07:48:33 +04:00
|
|
|
ptcwakeup(tp, FREAD);
|
1993-03-21 12:45:37 +03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1996-09-05 19:31:40 +04:00
|
|
|
stop = ISSET(tp->t_iflag, IXON) && CCEQ(cc[VSTOP], CTRL('s'))
|
1993-03-21 12:45:37 +03:00
|
|
|
&& CCEQ(cc[VSTART], CTRL('q'));
|
|
|
|
if (pti->pt_flags & PF_NOSTOP) {
|
|
|
|
if (stop) {
|
|
|
|
pti->pt_send &= ~TIOCPKT_NOSTOP;
|
|
|
|
pti->pt_send |= TIOCPKT_DOSTOP;
|
|
|
|
pti->pt_flags &= ~PF_NOSTOP;
|
|
|
|
ptcwakeup(tp, FREAD);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!stop) {
|
|
|
|
pti->pt_send &= ~TIOCPKT_DOSTOP;
|
|
|
|
pti->pt_send |= TIOCPKT_NOSTOP;
|
|
|
|
pti->pt_flags |= PF_NOSTOP;
|
|
|
|
ptcwakeup(tp, FREAD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|