Home | History | Annotate | Line # | Download | only in kern
tty_pty.c revision 1.138
      1  1.138  christos /*	$NetBSD: tty_pty.c,v 1.138 2014/04/04 18:11:58 christos Exp $	*/
      2   1.23       cgd 
      3    1.1       cgd /*
      4   1.22       cgd  * Copyright (c) 1982, 1986, 1989, 1993
      5   1.22       cgd  *	The Regents of the University of California.  All rights reserved.
      6    1.1       cgd  *
      7    1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8    1.1       cgd  * modification, are permitted provided that the following conditions
      9    1.1       cgd  * are met:
     10    1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11    1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12    1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13    1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14    1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.72       agc  * 3. Neither the name of the University nor the names of its contributors
     16    1.1       cgd  *    may be used to endorse or promote products derived from this software
     17    1.1       cgd  *    without specific prior written permission.
     18    1.1       cgd  *
     19    1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20    1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21    1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22    1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23    1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24    1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25    1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26    1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27    1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28    1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29    1.1       cgd  * SUCH DAMAGE.
     30    1.1       cgd  *
     31   1.39      fvdl  *	@(#)tty_pty.c	8.4 (Berkeley) 2/20/95
     32    1.1       cgd  */
     33    1.1       cgd 
     34    1.1       cgd /*
     35    1.1       cgd  * Pseudo-teletype Driver
     36    1.1       cgd  * (Actually two drivers, requiring two entries in 'cdevsw')
     37    1.1       cgd  */
     38   1.57     lukem 
     39   1.57     lukem #include <sys/cdefs.h>
     40  1.138  christos __KERNEL_RCSID(0, "$NetBSD: tty_pty.c,v 1.138 2014/04/04 18:11:58 christos Exp $");
     41   1.41   thorpej 
     42   1.80  christos #include "opt_ptm.h"
     43   1.41   thorpej 
     44   1.16   mycroft #include <sys/param.h>
     45   1.16   mycroft #include <sys/systm.h>
     46   1.16   mycroft #include <sys/ioctl.h>
     47  1.114       mrg #include <sys/ioctl_compat.h>
     48   1.22       cgd #include <sys/proc.h>
     49   1.16   mycroft #include <sys/tty.h>
     50   1.77  christos #include <sys/stat.h>
     51   1.16   mycroft #include <sys/file.h>
     52   1.16   mycroft #include <sys/kernel.h>
     53   1.16   mycroft #include <sys/vnode.h>
     54   1.77  christos #include <sys/namei.h>
     55   1.31  christos #include <sys/signalvar.h>
     56   1.31  christos #include <sys/uio.h>
     57   1.77  christos #include <sys/filedesc.h>
     58   1.33  christos #include <sys/conf.h>
     59   1.38   mycroft #include <sys/poll.h>
     60   1.81  christos #include <sys/pty.h>
     61   1.89      elad #include <sys/kauth.h>
     62   1.31  christos 
     63   1.47  jdolecek #define	DEFAULT_NPTYS		16	/* default number of initial ptys */
     64   1.58       tls #define DEFAULT_MAXPTYS		992	/* default maximum number of ptys */
     65    1.1       cgd 
     66    1.1       cgd #define BUFSIZ 100		/* Chunk size iomoved to/from user */
     67    1.1       cgd 
     68   1.27   mycroft struct	pt_softc {
     69   1.27   mycroft 	struct	tty *pt_tty;
     70    1.1       cgd 	int	pt_flags;
     71   1.22       cgd 	struct	selinfo pt_selr, pt_selw;
     72    1.1       cgd 	u_char	pt_send;
     73    1.1       cgd 	u_char	pt_ucntl;
     74   1.47  jdolecek };
     75   1.47  jdolecek 
     76   1.48  jdolecek static struct pt_softc **pt_softc = NULL;	/* pty array */
     77   1.48  jdolecek static int maxptys = DEFAULT_MAXPTYS;	/* maximum number of ptys (sysctable) */
     78  1.100        ad kmutex_t pt_softc_mutex;
     79   1.81  christos int npty = 0;			/* for pstat -t */
     80    1.1       cgd 
     81    1.1       cgd #define	PF_PKT		0x08		/* packet mode */
     82    1.1       cgd #define	PF_STOPPED	0x10		/* user told stopped */
     83    1.1       cgd #define	PF_REMOTE	0x20		/* remote and flow controlled input */
     84    1.1       cgd #define	PF_NOSTOP	0x40
     85    1.1       cgd #define PF_UCNTL	0x80		/* user control mode */
     86    1.1       cgd 
     87   1.76  junyoung void	ptyattach(int);
     88   1.76  junyoung void	ptcwakeup(struct tty *, int);
     89   1.76  junyoung void	ptsstart(struct tty *);
     90   1.76  junyoung int	pty_maxptys(int, int);
     91   1.15   deraadt 
     92   1.76  junyoung static struct pt_softc **ptyarralloc(int);
     93   1.77  christos 
     94   1.63   gehenna dev_type_open(ptcopen);
     95   1.63   gehenna dev_type_close(ptcclose);
     96   1.63   gehenna dev_type_read(ptcread);
     97   1.63   gehenna dev_type_write(ptcwrite);
     98   1.63   gehenna dev_type_poll(ptcpoll);
     99   1.65  jdolecek dev_type_kqfilter(ptckqfilter);
    100   1.63   gehenna 
    101   1.63   gehenna dev_type_open(ptsopen);
    102   1.63   gehenna dev_type_close(ptsclose);
    103   1.63   gehenna dev_type_read(ptsread);
    104   1.63   gehenna dev_type_write(ptswrite);
    105   1.63   gehenna dev_type_stop(ptsstop);
    106   1.63   gehenna dev_type_poll(ptspoll);
    107   1.63   gehenna 
    108   1.63   gehenna dev_type_ioctl(ptyioctl);
    109   1.63   gehenna dev_type_tty(ptytty);
    110   1.63   gehenna 
    111   1.63   gehenna const struct cdevsw ptc_cdevsw = {
    112  1.135  dholland 	.d_open = ptcopen,
    113  1.135  dholland 	.d_close = ptcclose,
    114  1.135  dholland 	.d_read = ptcread,
    115  1.135  dholland 	.d_write = ptcwrite,
    116  1.135  dholland 	.d_ioctl = ptyioctl,
    117  1.135  dholland 	.d_stop = nullstop,
    118  1.135  dholland 	.d_tty = ptytty,
    119  1.135  dholland 	.d_poll = ptcpoll,
    120  1.135  dholland 	.d_mmap = nommap,
    121  1.135  dholland 	.d_kqfilter = ptckqfilter,
    122  1.135  dholland 	.d_flag = D_TTY
    123   1.63   gehenna };
    124   1.63   gehenna 
    125   1.63   gehenna const struct cdevsw pts_cdevsw = {
    126  1.135  dholland 	.d_open = ptsopen,
    127  1.135  dholland 	.d_close = ptsclose,
    128  1.135  dholland 	.d_read = ptsread,
    129  1.135  dholland 	.d_write = ptswrite,
    130  1.135  dholland 	.d_ioctl = ptyioctl,
    131  1.135  dholland 	.d_stop = ptsstop,
    132  1.135  dholland 	.d_tty = ptytty,
    133  1.135  dholland 	.d_poll = ptspoll,
    134  1.135  dholland 	.d_mmap = nommap,
    135  1.135  dholland 	.d_kqfilter = ttykqfilter,
    136  1.135  dholland 	.d_flag = D_TTY
    137   1.63   gehenna };
    138   1.63   gehenna 
    139   1.63   gehenna #if defined(pmax)
    140  1.121  dholland /*
    141  1.121  dholland  * Used by arch/pmax/conf/majors.pmax, which needs a second copy as it
    142  1.121  dholland  * needs to map this stuff to two pairs of majors.
    143  1.121  dholland  */
    144  1.121  dholland 
    145   1.63   gehenna const struct cdevsw ptc_ultrix_cdevsw = {
    146  1.135  dholland 	.d_open = ptcopen,
    147  1.135  dholland 	.d_close = ptcclose,
    148  1.135  dholland 	.d_read = ptcread,
    149  1.135  dholland 	.d_write = ptcwrite,
    150  1.135  dholland 	.d_ioctl = ptyioctl,
    151  1.135  dholland 	.d_stop = nullstop,
    152  1.135  dholland 	.d_tty = ptytty,
    153  1.135  dholland 	.d_poll = ptcpoll,
    154  1.135  dholland 	.d_mmap = nommap,
    155  1.135  dholland 	.d_kqfilter = ptckqfilter,
    156  1.135  dholland 	.d_flag = D_TTY
    157   1.63   gehenna };
    158   1.63   gehenna 
    159   1.63   gehenna const struct cdevsw pts_ultrix_cdevsw = {
    160  1.135  dholland 	.d_open = ptsopen,
    161  1.135  dholland 	.d_close = ptsclose,
    162  1.135  dholland 	.d_read = ptsread,
    163  1.135  dholland 	.d_write = ptswrite,
    164  1.135  dholland 	.d_ioctl = ptyioctl,
    165  1.135  dholland 	.d_stop = ptsstop,
    166  1.135  dholland 	.d_tty = ptytty,
    167  1.135  dholland 	.d_poll = ptspoll,
    168  1.135  dholland 	.d_mmap = nommap,
    169  1.135  dholland 	.d_kqfilter = ttykqfilter,
    170  1.135  dholland 	.d_flag = D_TTY
    171   1.63   gehenna };
    172   1.63   gehenna #endif /* defined(pmax) */
    173   1.63   gehenna 
    174   1.47  jdolecek /*
    175   1.81  christos  * Check if a pty is free to use.
    176   1.81  christos  */
    177   1.81  christos int
    178   1.81  christos pty_isfree(int minor, int lock)
    179   1.81  christos {
    180   1.81  christos 	struct pt_softc *pt = pt_softc[minor];
    181   1.81  christos 	if (lock)
    182  1.100        ad 		mutex_enter(&pt_softc_mutex);
    183   1.81  christos 	minor = pt == NULL || pt->pt_tty == NULL ||
    184   1.81  christos 	    pt->pt_tty->t_oproc == NULL;
    185   1.81  christos 	if (lock)
    186  1.100        ad 		mutex_exit(&pt_softc_mutex);
    187   1.81  christos 	return minor;
    188   1.81  christos }
    189   1.81  christos 
    190   1.81  christos /*
    191   1.48  jdolecek  * Allocate and zero array of nelem elements.
    192   1.47  jdolecek  */
    193   1.47  jdolecek static struct pt_softc **
    194  1.115      yamt ptyarralloc(int nelem)
    195   1.47  jdolecek {
    196   1.47  jdolecek 	struct pt_softc **pt;
    197   1.47  jdolecek 	nelem += 10;
    198  1.115      yamt 	pt = kmem_zalloc(nelem * sizeof(*pt), KM_SLEEP);
    199   1.47  jdolecek 	return pt;
    200   1.47  jdolecek }
    201   1.47  jdolecek 
    202  1.115      yamt static void
    203  1.115      yamt ptyarrfree(struct pt_softc **pt, int nelem)
    204  1.115      yamt {
    205  1.115      yamt 
    206  1.115      yamt 	nelem += 10;
    207  1.115      yamt 	kmem_free(pt, nelem * sizeof(*pt));
    208  1.115      yamt }
    209  1.115      yamt 
    210   1.47  jdolecek /*
    211   1.47  jdolecek  * Check if the minor is correct and ensure necessary structures
    212   1.47  jdolecek  * are properly allocated.
    213   1.47  jdolecek  */
    214   1.81  christos int
    215   1.81  christos pty_check(int ptn)
    216   1.47  jdolecek {
    217   1.47  jdolecek 	struct pt_softc *pti;
    218   1.47  jdolecek 
    219   1.71       dsl 	if (ptn >= npty) {
    220   1.71       dsl 		struct pt_softc **newpt, **oldpt;
    221   1.48  jdolecek 		int newnpty;
    222  1.115      yamt 		int oldnpty;
    223   1.47  jdolecek 
    224   1.48  jdolecek 		/* check if the requested pty can be granted */
    225   1.71       dsl 		if (ptn >= maxptys) {
    226   1.48  jdolecek 	    limit_reached:
    227   1.48  jdolecek 			tablefull("pty", "increase kern.maxptys");
    228  1.123    dyoung 			return ENXIO;
    229   1.48  jdolecek 		}
    230   1.47  jdolecek 
    231   1.71       dsl 		/* Allocate a larger pty array */
    232   1.71       dsl 		for (newnpty = npty; newnpty <= ptn;)
    233   1.71       dsl 			newnpty *= 2;
    234   1.71       dsl 		if (newnpty > maxptys)
    235   1.71       dsl 			newnpty = maxptys;
    236   1.71       dsl 		newpt = ptyarralloc(newnpty);
    237   1.71       dsl 
    238   1.47  jdolecek 		/*
    239   1.48  jdolecek 		 * Now grab the pty array mutex - we need to ensure
    240   1.47  jdolecek 		 * that the pty array is consistent while copying it's
    241   1.48  jdolecek 		 * content to newly allocated, larger space; we also
    242   1.48  jdolecek 		 * need to be safe against pty_maxptys().
    243   1.47  jdolecek 		 */
    244  1.100        ad 		mutex_enter(&pt_softc_mutex);
    245   1.48  jdolecek 
    246   1.71       dsl 		if (newnpty >= maxptys) {
    247   1.71       dsl 			/* limit cut away beneath us... */
    248  1.115      yamt 			if (ptn >= maxptys) {
    249  1.100        ad 				mutex_exit(&pt_softc_mutex);
    250  1.115      yamt 				ptyarrfree(newpt, newnpty);
    251   1.48  jdolecek 				goto limit_reached;
    252   1.48  jdolecek 			}
    253  1.115      yamt 			newnpty = maxptys;
    254   1.71       dsl 		}
    255   1.47  jdolecek 
    256   1.47  jdolecek 		/*
    257   1.48  jdolecek 		 * If the pty array was not enlarged while we were waiting
    258   1.48  jdolecek 		 * for mutex, copy current contents of pt_softc[] to newly
    259   1.48  jdolecek 		 * allocated array and start using the new bigger array.
    260   1.47  jdolecek 		 */
    261   1.71       dsl 		if (newnpty > npty) {
    262   1.47  jdolecek 			memcpy(newpt, pt_softc, npty*sizeof(struct pt_softc *));
    263   1.71       dsl 			oldpt = pt_softc;
    264  1.115      yamt 			oldnpty = npty;
    265   1.47  jdolecek 			pt_softc = newpt;
    266   1.47  jdolecek 			npty = newnpty;
    267   1.47  jdolecek 		} else {
    268   1.71       dsl 			/* was enlarged when waited for lock, free new space */
    269   1.71       dsl 			oldpt = newpt;
    270  1.115      yamt 			oldnpty = newnpty;
    271   1.47  jdolecek 		}
    272   1.48  jdolecek 
    273  1.100        ad 		mutex_exit(&pt_softc_mutex);
    274  1.115      yamt 		ptyarrfree(oldpt, oldnpty);
    275   1.47  jdolecek 	}
    276   1.71       dsl 
    277   1.47  jdolecek 	/*
    278   1.48  jdolecek 	 * If the entry is not yet allocated, allocate one. The mutex is
    279   1.48  jdolecek 	 * needed so that the state of pt_softc[] array is consistant
    280   1.71       dsl 	 * in case it has been lengthened above.
    281   1.47  jdolecek 	 */
    282   1.71       dsl 	if (!pt_softc[ptn]) {
    283  1.115      yamt 		pti = kmem_zalloc(sizeof(*pti), KM_SLEEP);
    284   1.48  jdolecek 
    285  1.108     rmind 		selinit(&pti->pt_selr);
    286  1.108     rmind 		selinit(&pti->pt_selw);
    287  1.128     rmind 		pti->pt_tty = tty_alloc();
    288   1.48  jdolecek 
    289  1.100        ad 		mutex_enter(&pt_softc_mutex);
    290   1.47  jdolecek 
    291   1.47  jdolecek 		/*
    292   1.48  jdolecek 		 * Check the entry again - it might have been
    293   1.48  jdolecek 		 * added while we were waiting for mutex.
    294   1.47  jdolecek 		 */
    295  1.108     rmind 		if (pt_softc[ptn]) {
    296  1.108     rmind 			mutex_exit(&pt_softc_mutex);
    297  1.128     rmind 			tty_free(pti->pt_tty);
    298  1.108     rmind 			seldestroy(&pti->pt_selr);
    299  1.108     rmind 			seldestroy(&pti->pt_selw);
    300  1.115      yamt 			kmem_free(pti, sizeof(*pti));
    301  1.123    dyoung 			return 0;
    302   1.47  jdolecek 		}
    303  1.108     rmind 		tty_attach(pti->pt_tty);
    304  1.108     rmind 		pt_softc[ptn] = pti;
    305   1.48  jdolecek 
    306  1.100        ad 		mutex_exit(&pt_softc_mutex);
    307   1.48  jdolecek 	}
    308   1.48  jdolecek 
    309  1.123    dyoung 	return 0;
    310   1.48  jdolecek }
    311   1.48  jdolecek 
    312   1.48  jdolecek /*
    313   1.48  jdolecek  * Set maxpty in thread-safe way. Returns 0 in case of error, otherwise
    314   1.48  jdolecek  * new value of maxptys.
    315   1.48  jdolecek  */
    316   1.48  jdolecek int
    317  1.116  uebayasi pty_maxptys(int newmax, int set)
    318   1.48  jdolecek {
    319   1.48  jdolecek 	if (!set)
    320  1.123    dyoung 		return maxptys;
    321   1.48  jdolecek 
    322   1.48  jdolecek 	/*
    323   1.48  jdolecek 	 * We have to grab the pt_softc lock, so that we would pick correct
    324   1.81  christos 	 * value of npty (might be modified in pty_check()).
    325   1.48  jdolecek 	 */
    326  1.100        ad 	mutex_enter(&pt_softc_mutex);
    327   1.48  jdolecek 
    328   1.71       dsl 	/*
    329   1.71       dsl 	 * The value cannot be set to value lower than the highest pty
    330   1.71       dsl 	 * number ever allocated.
    331   1.71       dsl 	 */
    332   1.71       dsl 	if (newmax >= npty)
    333   1.48  jdolecek 		maxptys = newmax;
    334   1.71       dsl 	else
    335   1.71       dsl 		newmax = 0;
    336   1.47  jdolecek 
    337  1.100        ad 	mutex_exit(&pt_softc_mutex);
    338   1.48  jdolecek 
    339   1.71       dsl 	return newmax;
    340   1.47  jdolecek }
    341   1.47  jdolecek 
    342   1.22       cgd /*
    343   1.22       cgd  * Establish n (or default if n is 1) ptys in the system.
    344   1.22       cgd  */
    345   1.15   deraadt void
    346  1.116  uebayasi ptyattach(int n)
    347   1.15   deraadt {
    348  1.100        ad 
    349  1.100        ad 	mutex_init(&pt_softc_mutex, MUTEX_DEFAULT, IPL_NONE);
    350  1.100        ad 
    351   1.22       cgd 	/* maybe should allow 0 => none? */
    352   1.22       cgd 	if (n <= 1)
    353   1.47  jdolecek 		n = DEFAULT_NPTYS;
    354   1.47  jdolecek 	pt_softc = ptyarralloc(n);
    355   1.22       cgd 	npty = n;
    356   1.80  christos #ifndef NO_DEV_PTM
    357   1.80  christos 	ptmattach(1);
    358   1.80  christos #endif
    359   1.15   deraadt }
    360    1.7    andrew 
    361    1.1       cgd /*ARGSUSED*/
    362   1.31  christos int
    363   1.96      yamt ptsopen(dev_t dev, int flag, int devtype, struct lwp *l)
    364    1.1       cgd {
    365   1.27   mycroft 	struct pt_softc *pti;
    366   1.43  augustss 	struct tty *tp;
    367    1.1       cgd 	int error;
    368   1.71       dsl 	int ptn = minor(dev);
    369    1.1       cgd 
    370   1.81  christos 	if ((error = pty_check(ptn)) != 0)
    371  1.123    dyoung 		return error;
    372   1.47  jdolecek 
    373  1.104        ad 	mutex_spin_enter(&tty_lock);
    374   1.71       dsl 	pti = pt_softc[ptn];
    375   1.47  jdolecek 	tp = pti->pt_tty;
    376   1.37   mycroft 	if (!ISSET(tp->t_state, TS_ISOPEN)) {
    377  1.132       apb 		tp->t_dev = dev;
    378    1.1       cgd 		ttychars(tp);		/* Set up default chars */
    379    1.1       cgd 		tp->t_iflag = TTYDEF_IFLAG;
    380    1.1       cgd 		tp->t_oflag = TTYDEF_OFLAG;
    381    1.1       cgd 		tp->t_lflag = TTYDEF_LFLAG;
    382    1.1       cgd 		tp->t_cflag = TTYDEF_CFLAG;
    383    1.1       cgd 		tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
    384    1.1       cgd 		ttsetwater(tp);		/* would be done in xxparam() */
    385   1.97      elad 	} else if (kauth_authorize_device_tty(l->l_cred, KAUTH_DEVICE_TTY_OPEN,
    386  1.104        ad 	    tp) != 0) {
    387  1.104        ad 		mutex_spin_exit(&tty_lock);
    388  1.123    dyoung 		return EBUSY;
    389  1.104        ad 	}
    390    1.1       cgd 	if (tp->t_oproc)			/* Ctrlr still around. */
    391   1.37   mycroft 		SET(tp->t_state, TS_CARR_ON);
    392   1.68        pk 	if (!ISSET(flag, O_NONBLOCK)) {
    393   1.40   mycroft 		while (!ISSET(tp->t_state, TS_CARR_ON)) {
    394   1.40   mycroft 			tp->t_wopen++;
    395  1.110        ad 			error = ttysleep(tp, &tp->t_rawcv, true, 0);
    396   1.40   mycroft 			tp->t_wopen--;
    397  1.123    dyoung 			if (error != 0) {
    398  1.102        ad 				mutex_spin_exit(&tty_lock);
    399  1.123    dyoung 				return error;
    400   1.68        pk 			}
    401   1.40   mycroft 		}
    402   1.68        pk 	}
    403  1.104        ad 	mutex_spin_exit(&tty_lock);
    404   1.50       eeh 	error = (*tp->t_linesw->l_open)(dev, tp);
    405    1.1       cgd 	ptcwakeup(tp, FREAD|FWRITE);
    406  1.123    dyoung 	return error;
    407    1.1       cgd }
    408    1.1       cgd 
    409   1.31  christos int
    410   1.96      yamt ptsclose(dev_t dev, int flag, int mode, struct lwp *l)
    411    1.1       cgd {
    412   1.47  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
    413   1.43  augustss 	struct tty *tp = pti->pt_tty;
    414   1.31  christos 	int error;
    415    1.1       cgd 
    416   1.50       eeh 	error = (*tp->t_linesw->l_close)(tp, flag);
    417   1.31  christos 	error |= ttyclose(tp);
    418    1.1       cgd 	ptcwakeup(tp, FREAD|FWRITE);
    419  1.123    dyoung 	return error;
    420    1.1       cgd }
    421    1.1       cgd 
    422   1.31  christos int
    423  1.116  uebayasi ptsread(dev_t dev, struct uio *uio, int flag)
    424    1.1       cgd {
    425    1.1       cgd 	struct proc *p = curproc;
    426   1.47  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
    427   1.43  augustss 	struct tty *tp = pti->pt_tty;
    428    1.1       cgd 	int error = 0;
    429  1.104        ad 	int cc, c;
    430    1.1       cgd 
    431    1.1       cgd again:
    432    1.1       cgd 	if (pti->pt_flags & PF_REMOTE) {
    433  1.104        ad 		mutex_spin_enter(&tty_lock);
    434   1.98        ad 		while (isbackground(p, tp)) {	/* XXXSMP */
    435   1.98        ad 			if (sigismasked(curlwp, SIGTTIN) ||
    436    1.1       cgd 			    p->p_pgrp->pg_jobc == 0 ||
    437  1.111        ad 			    p->p_lflag & PL_PPWAIT) {
    438  1.104        ad 				mutex_spin_exit(&tty_lock);
    439  1.123    dyoung 				return EIO;
    440  1.104        ad 			}
    441  1.102        ad 			ttysig(tp, TTYSIG_PG1, SIGTTIN);
    442  1.129      yamt 			error = ttypause(tp, hz);
    443  1.123    dyoung 			if (error != 0) {
    444  1.104        ad 				mutex_spin_exit(&tty_lock);
    445  1.123    dyoung 				return error;
    446  1.104        ad 			}
    447    1.1       cgd 		}
    448    1.8   mycroft 		if (tp->t_canq.c_cc == 0) {
    449   1.68        pk 			if (flag & IO_NDELAY) {
    450  1.102        ad 				mutex_spin_exit(&tty_lock);
    451  1.123    dyoung 				return EWOULDBLOCK;
    452   1.68        pk 			}
    453  1.110        ad 			error = ttysleep(tp, &tp->t_cancv, true, 0);
    454  1.102        ad 			mutex_spin_exit(&tty_lock);
    455  1.123    dyoung 			if (error != 0)
    456  1.123    dyoung 				return error;
    457    1.1       cgd 			goto again;
    458    1.1       cgd 		}
    459   1.68        pk 		while(error == 0 && tp->t_canq.c_cc > 1 && uio->uio_resid > 0) {
    460  1.104        ad 			c = getc(&tp->t_canq);
    461  1.102        ad 			mutex_spin_exit(&tty_lock);
    462  1.104        ad 			error = ureadc(c, uio);
    463  1.102        ad 			mutex_spin_enter(&tty_lock);
    464   1.68        pk 			/* Re-check terminal state here? */
    465   1.68        pk 		}
    466    1.8   mycroft 		if (tp->t_canq.c_cc == 1)
    467    1.8   mycroft 			(void) getc(&tp->t_canq);
    468   1.68        pk 		cc = tp->t_canq.c_cc;
    469  1.102        ad 		mutex_spin_exit(&tty_lock);
    470   1.68        pk 		if (cc)
    471  1.123    dyoung 			return error;
    472  1.104        ad 	} else if (tp->t_oproc)
    473  1.104        ad 		error = (*tp->t_linesw->l_read)(tp, uio, flag);
    474    1.1       cgd 	ptcwakeup(tp, FWRITE);
    475  1.123    dyoung 	return error;
    476    1.1       cgd }
    477    1.1       cgd 
    478    1.1       cgd /*
    479    1.1       cgd  * Write to pseudo-tty.
    480    1.1       cgd  * Wakeups of controlling tty will happen
    481    1.1       cgd  * indirectly, when tty driver calls ptsstart.
    482    1.1       cgd  */
    483   1.31  christos int
    484  1.116  uebayasi ptswrite(dev_t dev, struct uio *uio, int flag)
    485    1.1       cgd {
    486   1.47  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
    487   1.43  augustss 	struct tty *tp = pti->pt_tty;
    488    1.1       cgd 
    489  1.122      yamt 	if (tp->t_oproc == NULL)
    490  1.123    dyoung 		return EIO;
    491  1.123    dyoung 	return (*tp->t_linesw->l_write)(tp, uio, flag);
    492   1.56       scw }
    493   1.56       scw 
    494   1.56       scw /*
    495   1.56       scw  * Poll pseudo-tty.
    496   1.56       scw  */
    497   1.56       scw int
    498  1.116  uebayasi ptspoll(dev_t dev, int events, struct lwp *l)
    499   1.56       scw {
    500   1.56       scw 	struct pt_softc *pti = pt_softc[minor(dev)];
    501   1.56       scw 	struct tty *tp = pti->pt_tty;
    502   1.56       scw 
    503  1.122      yamt 	if (tp->t_oproc == NULL)
    504  1.123    dyoung 		return POLLHUP;
    505   1.83     perry 
    506  1.123    dyoung 	return (*tp->t_linesw->l_poll)(tp, events, l);
    507    1.1       cgd }
    508    1.1       cgd 
    509    1.1       cgd /*
    510    1.1       cgd  * Start output on pseudo-tty.
    511   1.38   mycroft  * Wake up process polling or sleeping for input from controlling tty.
    512    1.1       cgd  */
    513   1.12   deraadt void
    514  1.116  uebayasi ptsstart(struct tty *tp)
    515    1.1       cgd {
    516  1.127    martin 	struct pt_softc *pti;
    517  1.127    martin 
    518  1.127    martin 	KASSERT(tp->t_dev != NODEV);
    519  1.127    martin 	pti = pt_softc[minor(tp->t_dev)];
    520    1.1       cgd 
    521  1.104        ad 	KASSERT(mutex_owned(&tty_lock));
    522  1.104        ad 
    523   1.37   mycroft 	if (ISSET(tp->t_state, TS_TTSTOP))
    524   1.12   deraadt 		return;
    525    1.1       cgd 	if (pti->pt_flags & PF_STOPPED) {
    526    1.1       cgd 		pti->pt_flags &= ~PF_STOPPED;
    527    1.1       cgd 		pti->pt_send = TIOCPKT_START;
    528    1.1       cgd 	}
    529   1.68        pk 
    530  1.108     rmind 	selnotify(&pti->pt_selr, 0, NOTE_SUBMIT);
    531  1.110        ad 	cv_broadcast(&tp->t_outcvf);
    532    1.1       cgd }
    533    1.1       cgd 
    534   1.68        pk /*
    535   1.68        pk  * Stop output.
    536   1.68        pk  */
    537   1.36   mycroft void
    538  1.116  uebayasi ptsstop(struct tty *tp, int flush)
    539   1.31  christos {
    540  1.127    martin 	struct pt_softc *pti;
    541  1.127    martin 
    542  1.127    martin 	KASSERT(tp->t_dev != NODEV);
    543  1.127    martin 	pti = pt_softc[minor(tp->t_dev)];
    544   1.31  christos 
    545  1.104        ad 	KASSERT(mutex_owned(&tty_lock));
    546  1.104        ad 
    547   1.31  christos 	/* note: FLUSHREAD and FLUSHWRITE already ok */
    548  1.134      yamt 	CTASSERT(TIOCPKT_FLUSHREAD == FREAD);
    549  1.134      yamt 	CTASSERT(TIOCPKT_FLUSHWRITE == FWRITE);
    550   1.31  christos 	if (flush == 0) {
    551   1.31  christos 		flush = TIOCPKT_STOP;
    552   1.31  christos 		pti->pt_flags |= PF_STOPPED;
    553   1.31  christos 	} else
    554   1.31  christos 		pti->pt_flags &= ~PF_STOPPED;
    555   1.31  christos 	pti->pt_send |= flush;
    556   1.68        pk 
    557   1.31  christos 	/* change of perspective */
    558   1.68        pk 	if (flush & FREAD) {
    559  1.108     rmind 		selnotify(&pti->pt_selw, 0, NOTE_SUBMIT);
    560  1.110        ad 		cv_broadcast(&tp->t_rawcvf);
    561   1.68        pk 	}
    562   1.68        pk 	if (flush & FWRITE) {
    563  1.108     rmind 		selnotify(&pti->pt_selr, 0, NOTE_SUBMIT);
    564  1.110        ad 		cv_broadcast(&tp->t_outcvf);
    565   1.68        pk 	}
    566   1.31  christos }
    567   1.31  christos 
    568   1.31  christos void
    569  1.116  uebayasi ptcwakeup(struct tty *tp, int flag)
    570    1.1       cgd {
    571  1.126    martin 	struct pt_softc *pti;
    572  1.125    martin 
    573  1.126    martin 	if (tp->t_dev == NODEV)
    574  1.126    martin 		return;	/* client side not open yet */
    575  1.125    martin 
    576  1.125    martin 	pti = pt_softc[minor(tp->t_dev)];
    577  1.126    martin 	KASSERT(pti != NULL);
    578    1.1       cgd 
    579  1.102        ad 	mutex_spin_enter(&tty_lock);
    580    1.1       cgd 	if (flag & FREAD) {
    581  1.108     rmind 		selnotify(&pti->pt_selr, 0, NOTE_SUBMIT);
    582  1.110        ad 		cv_broadcast(&tp->t_outcvf);
    583    1.1       cgd 	}
    584    1.1       cgd 	if (flag & FWRITE) {
    585  1.108     rmind 		selnotify(&pti->pt_selw, 0, NOTE_SUBMIT);
    586  1.110        ad 		cv_broadcast(&tp->t_rawcvf);
    587    1.1       cgd 	}
    588  1.102        ad 	mutex_spin_exit(&tty_lock);
    589    1.1       cgd }
    590    1.1       cgd 
    591    1.1       cgd /*ARGSUSED*/
    592   1.25   mycroft int
    593   1.96      yamt ptcopen(dev_t dev, int flag, int devtype, struct lwp *l)
    594    1.1       cgd {
    595   1.27   mycroft 	struct pt_softc *pti;
    596   1.43  augustss 	struct tty *tp;
    597   1.47  jdolecek 	int error;
    598   1.71       dsl 	int ptn = minor(dev);
    599   1.47  jdolecek 
    600   1.81  christos 	if ((error = pty_check(ptn)) != 0)
    601  1.123    dyoung 		return error;
    602   1.47  jdolecek 
    603   1.71       dsl 	pti = pt_softc[ptn];
    604   1.47  jdolecek 	tp = pti->pt_tty;
    605    1.1       cgd 
    606  1.102        ad 	mutex_spin_enter(&tty_lock);
    607   1.71       dsl 	if (tp->t_oproc) {
    608  1.102        ad 		mutex_spin_exit(&tty_lock);
    609  1.123    dyoung 		return EIO;
    610   1.71       dsl 	}
    611  1.132       apb 	tp->t_dev = dev;
    612    1.1       cgd 	tp->t_oproc = ptsstart;
    613  1.102        ad 	mutex_spin_exit(&tty_lock);
    614   1.50       eeh 	(void)(*tp->t_linesw->l_modem)(tp, 1);
    615   1.37   mycroft 	CLR(tp->t_lflag, EXTPROC);
    616   1.22       cgd 	pti->pt_flags = 0;
    617    1.1       cgd 	pti->pt_send = 0;
    618    1.1       cgd 	pti->pt_ucntl = 0;
    619  1.123    dyoung 	return 0;
    620    1.1       cgd }
    621    1.1       cgd 
    622   1.31  christos /*ARGSUSED*/
    623   1.25   mycroft int
    624   1.96      yamt ptcclose(dev_t dev, int flag, int devtype, struct lwp *l)
    625    1.1       cgd {
    626   1.47  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
    627   1.43  augustss 	struct tty *tp = pti->pt_tty;
    628    1.1       cgd 
    629   1.50       eeh 	(void)(*tp->t_linesw->l_modem)(tp, 0);
    630  1.104        ad 	mutex_spin_enter(&tty_lock);
    631   1.37   mycroft 	CLR(tp->t_state, TS_CARR_ON);
    632  1.122      yamt 	tp->t_oproc = NULL;		/* mark closed */
    633  1.102        ad 	mutex_spin_exit(&tty_lock);
    634  1.123    dyoung 	return 0;
    635    1.1       cgd }
    636    1.1       cgd 
    637   1.31  christos int
    638  1.116  uebayasi ptcread(dev_t dev, struct uio *uio, int flag)
    639    1.1       cgd {
    640   1.47  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
    641   1.43  augustss 	struct tty *tp = pti->pt_tty;
    642   1.84  christos 	u_char bf[BUFSIZ];
    643    1.1       cgd 	int error = 0, cc;
    644  1.118       dsl 	int c;
    645    1.1       cgd 
    646  1.119       dsl 	if (uio->uio_resid <= 0)
    647  1.119       dsl 		return EINVAL;
    648  1.119       dsl 
    649    1.1       cgd 	/*
    650    1.1       cgd 	 * We want to block until the slave
    651    1.1       cgd 	 * is open, and there's something to read;
    652    1.1       cgd 	 * but if we lost the slave or we're NBIO,
    653    1.1       cgd 	 * then return the appropriate error instead.
    654    1.1       cgd 	 */
    655  1.102        ad 	mutex_spin_enter(&tty_lock);
    656    1.1       cgd 	for (;;) {
    657   1.37   mycroft 		if (ISSET(tp->t_state, TS_ISOPEN)) {
    658  1.118       dsl 			if (pti->pt_flags & PF_PKT && (c = pti->pt_send)) {
    659  1.118       dsl 				pti->pt_send = 0;
    660  1.102        ad 				mutex_spin_exit(&tty_lock);
    661  1.118       dsl 				error = ureadc(c, uio);
    662  1.123    dyoung 				if (error != 0)
    663  1.123    dyoung 					return error;
    664   1.68        pk 				/*
    665   1.68        pk 				 * Since we don't have the tty locked, there's
    666   1.68        pk 				 * a risk of messing up `t_termios'. This is
    667   1.68        pk 				 * relevant only if the tty got closed and then
    668   1.68        pk 				 * opened again while we were out uiomoving.
    669   1.68        pk 				 */
    670  1.124    dyoung 				if (c & TIOCPKT_IOCTL) {
    671   1.22       cgd 					cc = min(uio->uio_resid,
    672    1.1       cgd 						sizeof(tp->t_termios));
    673   1.99  christos 					uiomove((void *) &tp->t_termios,
    674   1.31  christos 						cc, uio);
    675    1.1       cgd 				}
    676  1.123    dyoung 				return 0;
    677    1.1       cgd 			}
    678  1.118       dsl 			if (pti->pt_flags & PF_UCNTL && (c = pti->pt_ucntl)) {
    679  1.118       dsl 				pti->pt_ucntl = 0;
    680  1.102        ad 				mutex_spin_exit(&tty_lock);
    681  1.118       dsl 				error = ureadc(c, uio);
    682  1.123    dyoung 				if (error != 0)
    683  1.123    dyoung 					return error;
    684  1.123    dyoung 				return 0;
    685    1.1       cgd 			}
    686   1.37   mycroft 			if (tp->t_outq.c_cc && !ISSET(tp->t_state, TS_TTSTOP))
    687    1.1       cgd 				break;
    688    1.1       cgd 		}
    689   1.68        pk 		if (!ISSET(tp->t_state, TS_CARR_ON)) {
    690   1.68        pk 			error = 0;	/* EOF */
    691   1.68        pk 			goto out;
    692   1.68        pk 		}
    693   1.68        pk 		if (flag & IO_NDELAY) {
    694   1.68        pk 			error = EWOULDBLOCK;
    695   1.68        pk 			goto out;
    696   1.68        pk 		}
    697  1.110        ad 		error = cv_wait_sig(&tp->t_outcvf, &tty_lock);
    698  1.123    dyoung 		if (error != 0)
    699   1.68        pk 			goto out;
    700    1.1       cgd 	}
    701   1.68        pk 
    702   1.68        pk 	if (pti->pt_flags & (PF_PKT|PF_UCNTL)) {
    703  1.102        ad 		mutex_spin_exit(&tty_lock);
    704    1.1       cgd 		error = ureadc(0, uio);
    705  1.102        ad 		mutex_spin_enter(&tty_lock);
    706   1.68        pk 		if (error == 0 && !ISSET(tp->t_state, TS_ISOPEN))
    707   1.68        pk 			error = EIO;
    708   1.68        pk 	}
    709    1.1       cgd 	while (uio->uio_resid > 0 && error == 0) {
    710   1.84  christos 		cc = q_to_b(&tp->t_outq, bf, min(uio->uio_resid, BUFSIZ));
    711    1.1       cgd 		if (cc <= 0)
    712    1.1       cgd 			break;
    713  1.102        ad 		mutex_spin_exit(&tty_lock);
    714   1.84  christos 		error = uiomove(bf, cc, uio);
    715  1.102        ad 		mutex_spin_enter(&tty_lock);
    716   1.68        pk 		if (error == 0 && !ISSET(tp->t_state, TS_ISOPEN))
    717   1.68        pk 			error = EIO;
    718    1.1       cgd 	}
    719  1.103        ad 	ttypull(tp);
    720   1.68        pk out:
    721  1.102        ad 	mutex_spin_exit(&tty_lock);
    722  1.123    dyoung 	return error;
    723    1.1       cgd }
    724    1.1       cgd 
    725    1.1       cgd 
    726   1.31  christos int
    727  1.116  uebayasi ptcwrite(dev_t dev, struct uio *uio, int flag)
    728    1.1       cgd {
    729   1.47  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
    730   1.43  augustss 	struct tty *tp = pti->pt_tty;
    731   1.43  augustss 	u_char *cp = NULL;
    732   1.43  augustss 	int cc = 0;
    733    1.1       cgd 	u_char locbuf[BUFSIZ];
    734    1.1       cgd 	int cnt = 0;
    735    1.1       cgd 	int error = 0;
    736    1.1       cgd 
    737    1.1       cgd again:
    738  1.102        ad 	mutex_spin_enter(&tty_lock);
    739   1.37   mycroft 	if (!ISSET(tp->t_state, TS_ISOPEN))
    740    1.1       cgd 		goto block;
    741    1.1       cgd 	if (pti->pt_flags & PF_REMOTE) {
    742    1.8   mycroft 		if (tp->t_canq.c_cc)
    743    1.1       cgd 			goto block;
    744  1.130  christos 		while (uio->uio_resid > 0 && tp->t_canq.c_cc < TTYHOG) {
    745  1.131  christos 			if (cc == 0) {
    746  1.131  christos 				cc = min(uio->uio_resid, BUFSIZ);
    747  1.131  christos 				cc = min(cc, TTYHOG - tp->t_canq.c_cc);
    748  1.131  christos 				cp = locbuf;
    749  1.131  christos 				mutex_spin_exit(&tty_lock);
    750  1.131  christos 				error = uiomove(cp, cc, uio);
    751  1.131  christos 				if (error != 0)
    752  1.131  christos 					return error;
    753  1.131  christos 				mutex_spin_enter(&tty_lock);
    754  1.131  christos 				/* check again for safety */
    755  1.131  christos 				if (!ISSET(tp->t_state, TS_ISOPEN)) {
    756  1.131  christos 					/*
    757  1.131  christos 					 * adjust for data copied in but not
    758  1.131  christos 					 * written
    759  1.131  christos 					 */
    760  1.131  christos 					uio->uio_resid += cc;
    761  1.131  christos 					error = EIO;
    762  1.131  christos 					goto out;
    763  1.131  christos 				}
    764   1.68        pk 			}
    765  1.130  christos 			if (cc) {
    766  1.130  christos 				cc = b_to_q(cp, cc, &tp->t_outq);
    767  1.130  christos 				if (cc > 0)
    768  1.130  christos 					goto block;
    769  1.130  christos 			}
    770  1.130  christos 		}
    771  1.130  christos 		(void) putc(0, &tp->t_canq);
    772  1.130  christos 		ttwakeup(tp);
    773  1.130  christos 		cv_broadcast(&tp->t_cancv);
    774  1.130  christos 		error = 0;
    775  1.130  christos 		goto out;
    776  1.130  christos 	}
    777  1.130  christos 	while (uio->uio_resid > 0) {
    778  1.131  christos 		if (cc == 0) {
    779  1.131  christos 			cc = min(uio->uio_resid, BUFSIZ);
    780  1.131  christos 			cp = locbuf;
    781  1.131  christos 			mutex_spin_exit(&tty_lock);
    782  1.131  christos 			error = uiomove(cp, cc, uio);
    783  1.131  christos 			if (error != 0)
    784  1.131  christos 				return error;
    785  1.131  christos 			mutex_spin_enter(&tty_lock);
    786  1.131  christos 			/* check again for safety */
    787  1.131  christos 			if (!ISSET(tp->t_state, TS_ISOPEN)) {
    788  1.131  christos 				/* adjust for data copied in but not written */
    789  1.131  christos 				uio->uio_resid += cc;
    790  1.131  christos 				error = EIO;
    791  1.131  christos 				goto out;
    792  1.131  christos 			}
    793    1.1       cgd 		}
    794    1.1       cgd 		while (cc > 0) {
    795  1.130  christos 			int used = tp->t_rawq.c_cc + tp->t_canq.c_cc;
    796  1.130  christos 			int canon = ISSET(tp->t_lflag, ICANON) ? 1 : 0;
    797  1.130  christos 			/*
    798  1.130  christos 			 * We need space for 2 characters if canonical
    799  1.130  christos 			 * because we might need to print ^C
    800  1.130  christos 			 */
    801  1.130  christos 			if (used >= (TTYHOG - canon) &&
    802  1.130  christos 			   (tp->t_canq.c_cc > 0 || !canon)) {
    803  1.110        ad 				cv_broadcast(&tp->t_rawcv);
    804    1.1       cgd 				goto block;
    805    1.1       cgd 			}
    806  1.130  christos 			/*
    807  1.130  christos 			 * XXX - should change l_rint to be called with lock
    808   1.68        pk 			 *	 see also tty.c:ttyinput_wlock()
    809   1.68        pk 			 */
    810  1.102        ad 			mutex_spin_exit(&tty_lock);
    811   1.50       eeh 			(*tp->t_linesw->l_rint)(*cp++, tp);
    812  1.102        ad 			mutex_spin_enter(&tty_lock);
    813    1.1       cgd 			cnt++;
    814    1.1       cgd 			cc--;
    815    1.1       cgd 		}
    816    1.1       cgd 	}
    817   1.68        pk 	error = 0;
    818   1.68        pk 	goto out;
    819   1.68        pk 
    820    1.1       cgd block:
    821    1.1       cgd 	/*
    822    1.1       cgd 	 * Come here to wait for slave to open, for space
    823    1.1       cgd 	 * in outq, or space in rawq.
    824    1.1       cgd 	 */
    825   1.68        pk 	if (!ISSET(tp->t_state, TS_CARR_ON)) {
    826   1.92  christos 		/* adjust for data copied in but not written */
    827   1.92  christos 		uio->uio_resid += cc;
    828   1.68        pk 		error = EIO;
    829   1.68        pk 		goto out;
    830   1.68        pk 	}
    831    1.1       cgd 	if (flag & IO_NDELAY) {
    832    1.1       cgd 		/* adjust for data copied in but not written */
    833    1.1       cgd 		uio->uio_resid += cc;
    834   1.68        pk 		error = cnt == 0 ? EWOULDBLOCK : 0;
    835   1.68        pk 		goto out;
    836    1.1       cgd 	}
    837  1.117    plunky 	error = cv_wait_sig(&tp->t_rawcvf, &tty_lock);
    838  1.102        ad 	mutex_spin_exit(&tty_lock);
    839  1.123    dyoung 	if (error != 0) {
    840    1.1       cgd 		/* adjust for data copied in but not written */
    841    1.1       cgd 		uio->uio_resid += cc;
    842  1.123    dyoung 		return error;
    843    1.1       cgd 	}
    844    1.1       cgd 	goto again;
    845   1.68        pk 
    846   1.68        pk out:
    847  1.102        ad 	mutex_spin_exit(&tty_lock);
    848  1.123    dyoung 	return error;
    849   1.29   mycroft }
    850   1.29   mycroft 
    851   1.31  christos int
    852  1.116  uebayasi ptcpoll(dev_t dev, int events, struct lwp *l)
    853   1.31  christos {
    854   1.47  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
    855   1.43  augustss 	struct tty *tp = pti->pt_tty;
    856   1.38   mycroft 	int revents = 0;
    857  1.102        ad 
    858  1.102        ad 	mutex_spin_enter(&tty_lock);
    859   1.31  christos 
    860   1.38   mycroft 	if (events & (POLLIN | POLLRDNORM))
    861   1.37   mycroft 		if (ISSET(tp->t_state, TS_ISOPEN) &&
    862   1.38   mycroft 		    ((tp->t_outq.c_cc > 0 && !ISSET(tp->t_state, TS_TTSTOP)) ||
    863   1.38   mycroft 		     ((pti->pt_flags & PF_PKT) && pti->pt_send) ||
    864   1.38   mycroft 		     ((pti->pt_flags & PF_UCNTL) && pti->pt_ucntl)))
    865   1.38   mycroft 			revents |= events & (POLLIN | POLLRDNORM);
    866   1.31  christos 
    867   1.38   mycroft 	if (events & (POLLOUT | POLLWRNORM))
    868   1.37   mycroft 		if (ISSET(tp->t_state, TS_ISOPEN) &&
    869   1.38   mycroft 		    ((pti->pt_flags & PF_REMOTE) ?
    870   1.38   mycroft 		     (tp->t_canq.c_cc == 0) :
    871   1.38   mycroft 		     ((tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHOG-2) ||
    872   1.59  christos 		      (tp->t_canq.c_cc == 0 && ISSET(tp->t_lflag, ICANON)))))
    873   1.38   mycroft 			revents |= events & (POLLOUT | POLLWRNORM);
    874   1.31  christos 
    875   1.38   mycroft 	if (events & POLLHUP)
    876   1.38   mycroft 		if (!ISSET(tp->t_state, TS_CARR_ON))
    877   1.38   mycroft 			revents |= POLLHUP;
    878   1.31  christos 
    879   1.38   mycroft 	if (revents == 0) {
    880   1.38   mycroft 		if (events & (POLLIN | POLLHUP | POLLRDNORM))
    881   1.86  christos 			selrecord(l, &pti->pt_selr);
    882   1.31  christos 
    883   1.38   mycroft 		if (events & (POLLOUT | POLLWRNORM))
    884   1.86  christos 			selrecord(l, &pti->pt_selw);
    885   1.31  christos 	}
    886   1.38   mycroft 
    887  1.102        ad 	mutex_spin_exit(&tty_lock);
    888  1.102        ad 
    889  1.123    dyoung 	return revents;
    890   1.31  christos }
    891   1.31  christos 
    892   1.65  jdolecek static void
    893   1.65  jdolecek filt_ptcrdetach(struct knote *kn)
    894   1.65  jdolecek {
    895   1.65  jdolecek 	struct pt_softc *pti;
    896   1.65  jdolecek 
    897   1.65  jdolecek 	pti = kn->kn_hook;
    898  1.102        ad 
    899  1.102        ad 	mutex_spin_enter(&tty_lock);
    900   1.66  christos 	SLIST_REMOVE(&pti->pt_selr.sel_klist, kn, knote, kn_selnext);
    901  1.102        ad 	mutex_spin_exit(&tty_lock);
    902   1.65  jdolecek }
    903   1.65  jdolecek 
    904   1.65  jdolecek static int
    905   1.96      yamt filt_ptcread(struct knote *kn, long hint)
    906   1.65  jdolecek {
    907   1.65  jdolecek 	struct pt_softc *pti;
    908   1.65  jdolecek 	struct tty	*tp;
    909   1.65  jdolecek 	int canread;
    910   1.65  jdolecek 
    911   1.65  jdolecek 	pti = kn->kn_hook;
    912   1.65  jdolecek 	tp = pti->pt_tty;
    913   1.65  jdolecek 
    914  1.107        ad 	if ((hint & NOTE_SUBMIT) == 0) {
    915  1.107        ad 		mutex_spin_enter(&tty_lock);
    916  1.107        ad 	}
    917  1.102        ad 
    918   1.65  jdolecek 	canread = (ISSET(tp->t_state, TS_ISOPEN) &&
    919   1.65  jdolecek 		    ((tp->t_outq.c_cc > 0 && !ISSET(tp->t_state, TS_TTSTOP)) ||
    920   1.65  jdolecek 		     ((pti->pt_flags & PF_PKT) && pti->pt_send) ||
    921   1.65  jdolecek 		     ((pti->pt_flags & PF_UCNTL) && pti->pt_ucntl)));
    922   1.65  jdolecek 
    923   1.65  jdolecek 	if (canread) {
    924   1.65  jdolecek 		/*
    925   1.65  jdolecek 		 * c_cc is number of characters after output post-processing;
    926   1.83     perry 		 * the amount of data actually read(2) depends on
    927   1.65  jdolecek 		 * setting of input flags for the terminal.
    928   1.65  jdolecek 		 */
    929   1.65  jdolecek 		kn->kn_data = tp->t_outq.c_cc;
    930   1.65  jdolecek 		if (((pti->pt_flags & PF_PKT) && pti->pt_send) ||
    931   1.65  jdolecek 		    ((pti->pt_flags & PF_UCNTL) && pti->pt_ucntl))
    932   1.65  jdolecek 			kn->kn_data++;
    933   1.65  jdolecek 	}
    934   1.65  jdolecek 
    935  1.107        ad 	if ((hint & NOTE_SUBMIT) == 0) {
    936  1.107        ad 		mutex_spin_exit(&tty_lock);
    937  1.107        ad 	}
    938  1.102        ad 
    939  1.123    dyoung 	return canread;
    940   1.65  jdolecek }
    941   1.65  jdolecek 
    942   1.65  jdolecek static void
    943   1.65  jdolecek filt_ptcwdetach(struct knote *kn)
    944   1.65  jdolecek {
    945   1.65  jdolecek 	struct pt_softc *pti;
    946   1.65  jdolecek 
    947   1.65  jdolecek 	pti = kn->kn_hook;
    948  1.102        ad 
    949  1.102        ad 	mutex_spin_enter(&tty_lock);
    950   1.66  christos 	SLIST_REMOVE(&pti->pt_selw.sel_klist, kn, knote, kn_selnext);
    951  1.102        ad 	mutex_spin_exit(&tty_lock);
    952   1.65  jdolecek }
    953   1.65  jdolecek 
    954   1.65  jdolecek static int
    955   1.96      yamt filt_ptcwrite(struct knote *kn, long hint)
    956   1.65  jdolecek {
    957   1.65  jdolecek 	struct pt_softc *pti;
    958   1.65  jdolecek 	struct tty	*tp;
    959   1.65  jdolecek 	int canwrite;
    960   1.65  jdolecek 	int nwrite;
    961   1.65  jdolecek 
    962   1.65  jdolecek 	pti = kn->kn_hook;
    963   1.65  jdolecek 	tp = pti->pt_tty;
    964   1.65  jdolecek 
    965  1.107        ad 	if ((hint & NOTE_SUBMIT) == 0) {
    966  1.107        ad 		mutex_spin_enter(&tty_lock);
    967  1.107        ad 	}
    968  1.102        ad 
    969   1.65  jdolecek 	canwrite = (ISSET(tp->t_state, TS_ISOPEN) &&
    970   1.65  jdolecek 		    ((pti->pt_flags & PF_REMOTE) ?
    971   1.65  jdolecek 		     (tp->t_canq.c_cc == 0) :
    972   1.65  jdolecek 		     ((tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHOG-2) ||
    973   1.65  jdolecek 		      (tp->t_canq.c_cc == 0 && ISSET(tp->t_lflag, ICANON)))));
    974   1.65  jdolecek 
    975   1.65  jdolecek 	if (canwrite) {
    976   1.65  jdolecek 		if (pti->pt_flags & PF_REMOTE)
    977   1.65  jdolecek 			nwrite = tp->t_canq.c_cn;
    978   1.65  jdolecek 		else {
    979   1.65  jdolecek 			/* this is guaranteed to be > 0 due to above check */
    980   1.65  jdolecek 			nwrite = tp->t_canq.c_cn
    981   1.65  jdolecek 				- (tp->t_rawq.c_cc + tp->t_canq.c_cc);
    982   1.65  jdolecek 		}
    983   1.65  jdolecek 		kn->kn_data = nwrite;
    984   1.65  jdolecek 	}
    985   1.65  jdolecek 
    986  1.107        ad 	if ((hint & NOTE_SUBMIT) == 0) {
    987  1.107        ad 		mutex_spin_exit(&tty_lock);
    988  1.107        ad 	}
    989  1.102        ad 
    990  1.123    dyoung 	return canwrite;
    991   1.65  jdolecek }
    992   1.65  jdolecek 
    993   1.65  jdolecek static const struct filterops ptcread_filtops =
    994   1.65  jdolecek 	{ 1, NULL, filt_ptcrdetach, filt_ptcread };
    995   1.65  jdolecek static const struct filterops ptcwrite_filtops =
    996   1.65  jdolecek 	{ 1, NULL, filt_ptcwdetach, filt_ptcwrite };
    997   1.65  jdolecek 
    998   1.65  jdolecek int
    999   1.65  jdolecek ptckqfilter(dev_t dev, struct knote *kn)
   1000   1.65  jdolecek {
   1001   1.65  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
   1002   1.65  jdolecek 	struct klist	*klist;
   1003   1.65  jdolecek 
   1004   1.65  jdolecek 	switch (kn->kn_filter) {
   1005   1.65  jdolecek 	case EVFILT_READ:
   1006   1.66  christos 		klist = &pti->pt_selr.sel_klist;
   1007   1.65  jdolecek 		kn->kn_fop = &ptcread_filtops;
   1008   1.65  jdolecek 		break;
   1009   1.65  jdolecek 	case EVFILT_WRITE:
   1010   1.66  christos 		klist = &pti->pt_selw.sel_klist;
   1011   1.65  jdolecek 		kn->kn_fop = &ptcwrite_filtops;
   1012   1.65  jdolecek 		break;
   1013   1.65  jdolecek 	default:
   1014  1.123    dyoung 		return EINVAL;
   1015   1.65  jdolecek 	}
   1016   1.65  jdolecek 
   1017   1.65  jdolecek 	kn->kn_hook = pti;
   1018   1.65  jdolecek 
   1019  1.102        ad 	mutex_spin_enter(&tty_lock);
   1020   1.65  jdolecek 	SLIST_INSERT_HEAD(klist, kn, kn_selnext);
   1021  1.102        ad 	mutex_spin_exit(&tty_lock);
   1022   1.65  jdolecek 
   1023  1.123    dyoung 	return 0;
   1024   1.65  jdolecek }
   1025   1.31  christos 
   1026   1.29   mycroft struct tty *
   1027  1.116  uebayasi ptytty(dev_t dev)
   1028   1.29   mycroft {
   1029   1.47  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
   1030   1.43  augustss 	struct tty *tp = pti->pt_tty;
   1031   1.29   mycroft 
   1032  1.123    dyoung 	return tp;
   1033    1.1       cgd }
   1034    1.1       cgd 
   1035    1.1       cgd /*ARGSUSED*/
   1036   1.31  christos int
   1037  1.116  uebayasi ptyioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
   1038    1.1       cgd {
   1039   1.47  jdolecek 	struct pt_softc *pti = pt_softc[minor(dev)];
   1040   1.43  augustss 	struct tty *tp = pti->pt_tty;
   1041   1.63   gehenna 	const struct cdevsw *cdev;
   1042   1.43  augustss 	u_char *cc = tp->t_cc;
   1043   1.44      fvdl 	int stop, error, sig;
   1044  1.137     ozaki #ifndef NO_DEV_PTM
   1045  1.136  christos 	struct mount *mp;
   1046  1.137     ozaki #endif
   1047    1.1       cgd 
   1048    1.1       cgd 	/*
   1049    1.1       cgd 	 * IF CONTROLLER STTY THEN MUST FLUSH TO PREVENT A HANG.
   1050    1.1       cgd 	 * ttywflush(tp) will hang if there are characters in the outq.
   1051    1.1       cgd 	 */
   1052    1.1       cgd 	if (cmd == TIOCEXT) {
   1053    1.1       cgd 		/*
   1054    1.1       cgd 		 * When the EXTPROC bit is being toggled, we need
   1055    1.1       cgd 		 * to send an TIOCPKT_IOCTL if the packet driver
   1056    1.1       cgd 		 * is turned on.
   1057    1.1       cgd 		 */
   1058    1.1       cgd 		if (*(int *)data) {
   1059    1.1       cgd 			if (pti->pt_flags & PF_PKT) {
   1060    1.1       cgd 				pti->pt_send |= TIOCPKT_IOCTL;
   1061    1.1       cgd 				ptcwakeup(tp, FREAD);
   1062    1.1       cgd 			}
   1063   1.37   mycroft 			SET(tp->t_lflag, EXTPROC);
   1064    1.1       cgd 		} else {
   1065   1.39      fvdl 			if (ISSET(tp->t_lflag, EXTPROC) &&
   1066    1.1       cgd 			    (pti->pt_flags & PF_PKT)) {
   1067    1.1       cgd 				pti->pt_send |= TIOCPKT_IOCTL;
   1068    1.1       cgd 				ptcwakeup(tp, FREAD);
   1069    1.1       cgd 			}
   1070   1.37   mycroft 			CLR(tp->t_lflag, EXTPROC);
   1071    1.1       cgd 		}
   1072    1.1       cgd 		return(0);
   1073   1.71       dsl 	}
   1074   1.71       dsl 
   1075   1.81  christos #ifndef NO_DEV_PTM
   1076   1.81  christos 	/* Allow getting the name from either the master or the slave */
   1077  1.136  christos 	if (cmd == TIOCPTSNAME) {
   1078  1.138  christos 		if ((error = pty_getmp(l, &mp)) != 0)
   1079  1.136  christos 			return error;
   1080  1.136  christos 		return pty_fill_ptmget(l, dev, -1, -1, data, mp);
   1081  1.136  christos 	}
   1082   1.81  christos #endif
   1083   1.81  christos 
   1084   1.81  christos 	cdev = cdevsw_lookup(dev);
   1085   1.63   gehenna 	if (cdev != NULL && cdev->d_open == ptcopen)
   1086    1.1       cgd 		switch (cmd) {
   1087   1.80  christos #ifndef NO_DEV_PTM
   1088   1.77  christos 		case TIOCGRANTPT:
   1089  1.138  christos 			if ((error = pty_getmp(l, &mp)) != 0)
   1090  1.136  christos 				return error;
   1091  1.136  christos 			return pty_grant_slave(l, dev, mp);
   1092   1.77  christos #endif
   1093    1.1       cgd 
   1094    1.1       cgd 		case TIOCGPGRP:
   1095   1.35        pk 			/*
   1096   1.35        pk 			 * We avoid calling ttioctl on the controller since,
   1097    1.1       cgd 			 * in that case, tp must be the controlling terminal.
   1098    1.1       cgd 			 */
   1099    1.1       cgd 			*(int *)data = tp->t_pgrp ? tp->t_pgrp->pg_id : 0;
   1100  1.123    dyoung 			return 0;
   1101    1.1       cgd 
   1102    1.1       cgd 		case TIOCPKT:
   1103    1.1       cgd 			if (*(int *)data) {
   1104    1.1       cgd 				if (pti->pt_flags & PF_UCNTL)
   1105  1.123    dyoung 					return EINVAL;
   1106    1.1       cgd 				pti->pt_flags |= PF_PKT;
   1107    1.1       cgd 			} else
   1108    1.1       cgd 				pti->pt_flags &= ~PF_PKT;
   1109  1.123    dyoung 			return 0;
   1110    1.1       cgd 
   1111    1.1       cgd 		case TIOCUCNTL:
   1112    1.1       cgd 			if (*(int *)data) {
   1113    1.1       cgd 				if (pti->pt_flags & PF_PKT)
   1114  1.123    dyoung 					return EINVAL;
   1115    1.1       cgd 				pti->pt_flags |= PF_UCNTL;
   1116    1.1       cgd 			} else
   1117    1.1       cgd 				pti->pt_flags &= ~PF_UCNTL;
   1118  1.123    dyoung 			return 0;
   1119    1.1       cgd 
   1120    1.1       cgd 		case TIOCREMOTE:
   1121    1.1       cgd 			if (*(int *)data)
   1122    1.1       cgd 				pti->pt_flags |= PF_REMOTE;
   1123    1.1       cgd 			else
   1124    1.1       cgd 				pti->pt_flags &= ~PF_REMOTE;
   1125  1.102        ad 			mutex_spin_enter(&tty_lock);
   1126    1.1       cgd 			ttyflush(tp, FREAD|FWRITE);
   1127  1.102        ad 			mutex_spin_exit(&tty_lock);
   1128  1.123    dyoung 			return 0;
   1129    1.1       cgd 
   1130   1.35        pk 		case TIOCSETP:
   1131    1.1       cgd 		case TIOCSETN:
   1132    1.1       cgd 		case TIOCSETD:
   1133    1.1       cgd 		case TIOCSETA:
   1134    1.1       cgd 		case TIOCSETAW:
   1135    1.1       cgd 		case TIOCSETAF:
   1136  1.102        ad 			mutex_spin_enter(&tty_lock);
   1137   1.21       cgd 			ndflush(&tp->t_outq, tp->t_outq.c_cc);
   1138  1.102        ad 			mutex_spin_exit(&tty_lock);
   1139    1.1       cgd 			break;
   1140    1.1       cgd 
   1141    1.1       cgd 		case TIOCSIG:
   1142   1.99  christos 			sig = (int)(long)*(void **)data;
   1143   1.44      fvdl 			if (sig <= 0 || sig >= NSIG)
   1144  1.123    dyoung 				return EINVAL;
   1145  1.102        ad 			mutex_spin_enter(&tty_lock);
   1146   1.37   mycroft 			if (!ISSET(tp->t_lflag, NOFLSH))
   1147    1.1       cgd 				ttyflush(tp, FREAD|FWRITE);
   1148  1.109        ad 			tp->t_state |= TS_SIGINFO;
   1149  1.102        ad 			ttysig(tp, TTYSIG_PG1, sig);
   1150  1.102        ad 			mutex_spin_exit(&tty_lock);
   1151  1.123    dyoung 			return 0;
   1152  1.112  drochner 
   1153  1.112  drochner 		case FIONREAD:
   1154  1.112  drochner 			mutex_spin_enter(&tty_lock);
   1155  1.112  drochner 			*(int *)data = tp->t_outq.c_cc;
   1156  1.112  drochner 			mutex_spin_exit(&tty_lock);
   1157  1.123    dyoung 			return 0;
   1158    1.1       cgd 		}
   1159   1.71       dsl 
   1160   1.86  christos 	error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, l);
   1161   1.61    atatat 	if (error == EPASSTHROUGH)
   1162   1.86  christos 		 error = ttioctl(tp, cmd, data, flag, l);
   1163   1.61    atatat 	if (error == EPASSTHROUGH) {
   1164    1.1       cgd 		if (pti->pt_flags & PF_UCNTL &&
   1165    1.1       cgd 		    (cmd & ~0xff) == UIOCCMD(0)) {
   1166    1.1       cgd 			if (cmd & 0xff) {
   1167    1.1       cgd 				pti->pt_ucntl = (u_char)cmd;
   1168    1.1       cgd 				ptcwakeup(tp, FREAD);
   1169    1.1       cgd 			}
   1170  1.123    dyoung 			return 0;
   1171    1.1       cgd 		}
   1172    1.1       cgd 	}
   1173    1.1       cgd 	/*
   1174    1.1       cgd 	 * If external processing and packet mode send ioctl packet.
   1175    1.1       cgd 	 */
   1176   1.37   mycroft 	if (ISSET(tp->t_lflag, EXTPROC) && (pti->pt_flags & PF_PKT)) {
   1177    1.1       cgd 		switch(cmd) {
   1178    1.1       cgd 		case TIOCSETA:
   1179    1.1       cgd 		case TIOCSETAW:
   1180    1.1       cgd 		case TIOCSETAF:
   1181    1.1       cgd 		case TIOCSETP:
   1182    1.1       cgd 		case TIOCSETN:
   1183    1.1       cgd 		case TIOCSETC:
   1184    1.1       cgd 		case TIOCSLTC:
   1185    1.1       cgd 		case TIOCLBIS:
   1186    1.1       cgd 		case TIOCLBIC:
   1187    1.1       cgd 		case TIOCLSET:
   1188    1.1       cgd 			pti->pt_send |= TIOCPKT_IOCTL;
   1189   1.22       cgd 			ptcwakeup(tp, FREAD);
   1190    1.1       cgd 		default:
   1191    1.1       cgd 			break;
   1192    1.1       cgd 		}
   1193    1.1       cgd 	}
   1194   1.37   mycroft 	stop = ISSET(tp->t_iflag, IXON) && CCEQ(cc[VSTOP], CTRL('s'))
   1195    1.1       cgd 		&& CCEQ(cc[VSTART], CTRL('q'));
   1196    1.1       cgd 	if (pti->pt_flags & PF_NOSTOP) {
   1197    1.1       cgd 		if (stop) {
   1198    1.1       cgd 			pti->pt_send &= ~TIOCPKT_NOSTOP;
   1199    1.1       cgd 			pti->pt_send |= TIOCPKT_DOSTOP;
   1200    1.1       cgd 			pti->pt_flags &= ~PF_NOSTOP;
   1201    1.1       cgd 			ptcwakeup(tp, FREAD);
   1202    1.1       cgd 		}
   1203    1.1       cgd 	} else {
   1204    1.1       cgd 		if (!stop) {
   1205    1.1       cgd 			pti->pt_send &= ~TIOCPKT_DOSTOP;
   1206    1.1       cgd 			pti->pt_send |= TIOCPKT_NOSTOP;
   1207    1.1       cgd 			pti->pt_flags |= PF_NOSTOP;
   1208    1.1       cgd 			ptcwakeup(tp, FREAD);
   1209    1.1       cgd 		}
   1210    1.1       cgd 	}
   1211  1.123    dyoung 	return error;
   1212    1.1       cgd }
   1213