xref: /freebsd/sys/kern/tty.c (revision 206b73d0)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2008 Ed Schouten <ed@FreeBSD.org>
5  * All rights reserved.
6  *
7  * Portions of this software were developed under sponsorship from Snow
8  * B.V., the Netherlands.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34 
35 #include "opt_capsicum.h"
36 #include "opt_printf.h"
37 
38 #include <sys/param.h>
39 #include <sys/capsicum.h>
40 #include <sys/conf.h>
41 #include <sys/cons.h>
42 #include <sys/fcntl.h>
43 #include <sys/file.h>
44 #include <sys/filedesc.h>
45 #include <sys/filio.h>
46 #ifdef COMPAT_43TTY
47 #include <sys/ioctl_compat.h>
48 #endif /* COMPAT_43TTY */
49 #include <sys/kernel.h>
50 #include <sys/limits.h>
51 #include <sys/malloc.h>
52 #include <sys/mount.h>
53 #include <sys/poll.h>
54 #include <sys/priv.h>
55 #include <sys/proc.h>
56 #include <sys/serial.h>
57 #include <sys/signal.h>
58 #include <sys/stat.h>
59 #include <sys/sx.h>
60 #include <sys/sysctl.h>
61 #include <sys/systm.h>
62 #include <sys/tty.h>
63 #include <sys/ttycom.h>
64 #define TTYDEFCHARS
65 #include <sys/ttydefaults.h>
66 #undef TTYDEFCHARS
67 #include <sys/ucred.h>
68 #include <sys/vnode.h>
69 
70 #include <machine/stdarg.h>
71 
72 static MALLOC_DEFINE(M_TTY, "tty", "tty device");
73 
74 static void tty_rel_free(struct tty *tp);
75 
76 static TAILQ_HEAD(, tty) tty_list = TAILQ_HEAD_INITIALIZER(tty_list);
77 static struct sx tty_list_sx;
78 SX_SYSINIT(tty_list, &tty_list_sx, "tty list");
79 static unsigned int tty_list_count = 0;
80 
81 /* Character device of /dev/console. */
82 static struct cdev	*dev_console;
83 static const char	*dev_console_filename;
84 
85 /*
86  * Flags that are supported and stored by this implementation.
87  */
88 #define TTYSUP_IFLAG	(IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK|ISTRIP|\
89 			INLCR|IGNCR|ICRNL|IXON|IXOFF|IXANY|IMAXBEL)
90 #define TTYSUP_OFLAG	(OPOST|ONLCR|TAB3|ONOEOT|OCRNL|ONOCR|ONLRET)
91 #define TTYSUP_LFLAG	(ECHOKE|ECHOE|ECHOK|ECHO|ECHONL|ECHOPRT|\
92 			ECHOCTL|ISIG|ICANON|ALTWERASE|IEXTEN|TOSTOP|\
93 			FLUSHO|NOKERNINFO|NOFLSH)
94 #define TTYSUP_CFLAG	(CIGNORE|CSIZE|CSTOPB|CREAD|PARENB|PARODD|\
95 			HUPCL|CLOCAL|CCTS_OFLOW|CRTS_IFLOW|CDTR_IFLOW|\
96 			CDSR_OFLOW|CCAR_OFLOW|CNO_RTSDTR)
97 
98 #define	TTY_CALLOUT(tp,d) (dev2unit(d) & TTYUNIT_CALLOUT)
99 
100 static int  tty_drainwait = 5 * 60;
101 SYSCTL_INT(_kern, OID_AUTO, tty_drainwait, CTLFLAG_RWTUN,
102     &tty_drainwait, 0, "Default output drain timeout in seconds");
103 
104 /*
105  * Set TTY buffer sizes.
106  */
107 
108 #define	TTYBUF_MAX	65536
109 
110 #ifdef PRINTF_BUFR_SIZE
111 #define	TTY_PRBUF_SIZE	PRINTF_BUFR_SIZE
112 #else
113 #define	TTY_PRBUF_SIZE	256
114 #endif
115 
116 /*
117  * Allocate buffer space if necessary, and set low watermarks, based on speed.
118  * Note that the ttyxxxq_setsize() functions may drop and then reacquire the tty
119  * lock during memory allocation.  They will return ENXIO if the tty disappears
120  * while unlocked.
121  */
122 static int
123 tty_watermarks(struct tty *tp)
124 {
125 	size_t bs = 0;
126 	int error;
127 
128 	/* Provide an input buffer for 2 seconds of data. */
129 	if (tp->t_termios.c_cflag & CREAD)
130 		bs = MIN(tp->t_termios.c_ispeed / 5, TTYBUF_MAX);
131 	error = ttyinq_setsize(&tp->t_inq, tp, bs);
132 	if (error != 0)
133 		return (error);
134 
135 	/* Set low watermark at 10% (when 90% is available). */
136 	tp->t_inlow = (ttyinq_getallocatedsize(&tp->t_inq) * 9) / 10;
137 
138 	/* Provide an output buffer for 2 seconds of data. */
139 	bs = MIN(tp->t_termios.c_ospeed / 5, TTYBUF_MAX);
140 	error = ttyoutq_setsize(&tp->t_outq, tp, bs);
141 	if (error != 0)
142 		return (error);
143 
144 	/* Set low watermark at 10% (when 90% is available). */
145 	tp->t_outlow = (ttyoutq_getallocatedsize(&tp->t_outq) * 9) / 10;
146 
147 	return (0);
148 }
149 
150 static int
151 tty_drain(struct tty *tp, int leaving)
152 {
153 	sbintime_t timeout_at;
154 	size_t bytes;
155 	int error;
156 
157 	if (ttyhook_hashook(tp, getc_inject))
158 		/* buffer is inaccessible */
159 		return (0);
160 
161 	/*
162 	 * For close(), use the recent historic timeout of "1 second without
163 	 * making progress".  For tcdrain(), use t_drainwait as the timeout,
164 	 * with zero meaning "no timeout" which gives POSIX behavior.
165 	 */
166 	if (leaving)
167 		timeout_at = getsbinuptime() + SBT_1S;
168 	else if (tp->t_drainwait != 0)
169 		timeout_at = getsbinuptime() + SBT_1S * tp->t_drainwait;
170 	else
171 		timeout_at = 0;
172 
173 	/*
174 	 * Poll the output buffer and the hardware for completion, at 10 Hz.
175 	 * Polling is required for devices which are not able to signal an
176 	 * interrupt when the transmitter becomes idle (most USB serial devs).
177 	 * The unusual structure of this loop ensures we check for busy one more
178 	 * time after tty_timedwait() returns EWOULDBLOCK, so that success has
179 	 * higher priority than timeout if the IO completed in the last 100mS.
180 	 */
181 	error = 0;
182 	bytes = ttyoutq_bytesused(&tp->t_outq);
183 	for (;;) {
184 		if (ttyoutq_bytesused(&tp->t_outq) == 0 && !ttydevsw_busy(tp))
185 			return (0);
186 		if (error != 0)
187 			return (error);
188 		ttydevsw_outwakeup(tp);
189 		error = tty_timedwait(tp, &tp->t_outwait, hz / 10);
190 		if (error != 0 && error != EWOULDBLOCK)
191 			return (error);
192 		else if (timeout_at == 0 || getsbinuptime() < timeout_at)
193 			error = 0;
194 		else if (leaving && ttyoutq_bytesused(&tp->t_outq) < bytes) {
195 			/* In close, making progress, grant an extra second. */
196 			error = 0;
197 			timeout_at += SBT_1S;
198 			bytes = ttyoutq_bytesused(&tp->t_outq);
199 		}
200 	}
201 }
202 
203 /*
204  * Though ttydev_enter() and ttydev_leave() seem to be related, they
205  * don't have to be used together. ttydev_enter() is used by the cdev
206  * operations to prevent an actual operation from being processed when
207  * the TTY has been abandoned. ttydev_leave() is used by ttydev_open()
208  * and ttydev_close() to determine whether per-TTY data should be
209  * deallocated.
210  */
211 
212 static __inline int
213 ttydev_enter(struct tty *tp)
214 {
215 
216 	tty_lock(tp);
217 
218 	if (tty_gone(tp) || !tty_opened(tp)) {
219 		/* Device is already gone. */
220 		tty_unlock(tp);
221 		return (ENXIO);
222 	}
223 
224 	return (0);
225 }
226 
227 static void
228 ttydev_leave(struct tty *tp)
229 {
230 
231 	tty_lock_assert(tp, MA_OWNED);
232 
233 	if (tty_opened(tp) || tp->t_flags & TF_OPENCLOSE) {
234 		/* Device is still opened somewhere. */
235 		tty_unlock(tp);
236 		return;
237 	}
238 
239 	tp->t_flags |= TF_OPENCLOSE;
240 
241 	/* Remove console TTY. */
242 	if (constty == tp)
243 		constty_clear();
244 
245 	/* Drain any output. */
246 	if (!tty_gone(tp))
247 		tty_drain(tp, 1);
248 
249 	ttydisc_close(tp);
250 
251 	/* Free i/o queues now since they might be large. */
252 	ttyinq_free(&tp->t_inq);
253 	tp->t_inlow = 0;
254 	ttyoutq_free(&tp->t_outq);
255 	tp->t_outlow = 0;
256 
257 	knlist_clear(&tp->t_inpoll.si_note, 1);
258 	knlist_clear(&tp->t_outpoll.si_note, 1);
259 
260 	if (!tty_gone(tp))
261 		ttydevsw_close(tp);
262 
263 	tp->t_flags &= ~TF_OPENCLOSE;
264 	cv_broadcast(&tp->t_dcdwait);
265 	tty_rel_free(tp);
266 }
267 
268 /*
269  * Operations that are exposed through the character device in /dev.
270  */
271 static int
272 ttydev_open(struct cdev *dev, int oflags, int devtype __unused,
273     struct thread *td)
274 {
275 	struct tty *tp;
276 	int error;
277 
278 	tp = dev->si_drv1;
279 	error = 0;
280 	tty_lock(tp);
281 	if (tty_gone(tp)) {
282 		/* Device is already gone. */
283 		tty_unlock(tp);
284 		return (ENXIO);
285 	}
286 
287 	/*
288 	 * Block when other processes are currently opening or closing
289 	 * the TTY.
290 	 */
291 	while (tp->t_flags & TF_OPENCLOSE) {
292 		error = tty_wait(tp, &tp->t_dcdwait);
293 		if (error != 0) {
294 			tty_unlock(tp);
295 			return (error);
296 		}
297 	}
298 	tp->t_flags |= TF_OPENCLOSE;
299 
300 	/*
301 	 * Make sure the "tty" and "cua" device cannot be opened at the
302 	 * same time.  The console is a "tty" device.
303 	 */
304 	if (TTY_CALLOUT(tp, dev)) {
305 		if (tp->t_flags & (TF_OPENED_CONS | TF_OPENED_IN)) {
306 			error = EBUSY;
307 			goto done;
308 		}
309 	} else {
310 		if (tp->t_flags & TF_OPENED_OUT) {
311 			error = EBUSY;
312 			goto done;
313 		}
314 	}
315 
316 	if (tp->t_flags & TF_EXCLUDE && priv_check(td, PRIV_TTY_EXCLUSIVE)) {
317 		error = EBUSY;
318 		goto done;
319 	}
320 
321 	if (!tty_opened(tp)) {
322 		/* Set proper termios flags. */
323 		if (TTY_CALLOUT(tp, dev))
324 			tp->t_termios = tp->t_termios_init_out;
325 		else
326 			tp->t_termios = tp->t_termios_init_in;
327 		ttydevsw_param(tp, &tp->t_termios);
328 		/* Prevent modem control on callout devices and /dev/console. */
329 		if (TTY_CALLOUT(tp, dev) || dev == dev_console)
330 			tp->t_termios.c_cflag |= CLOCAL;
331 
332 		if ((tp->t_termios.c_cflag & CNO_RTSDTR) == 0)
333 			ttydevsw_modem(tp, SER_DTR|SER_RTS, 0);
334 
335 		error = ttydevsw_open(tp);
336 		if (error != 0)
337 			goto done;
338 
339 		ttydisc_open(tp);
340 		error = tty_watermarks(tp);
341 		if (error != 0)
342 			goto done;
343 	}
344 
345 	/* Wait for Carrier Detect. */
346 	if ((oflags & O_NONBLOCK) == 0 &&
347 	    (tp->t_termios.c_cflag & CLOCAL) == 0) {
348 		while ((ttydevsw_modem(tp, 0, 0) & SER_DCD) == 0) {
349 			error = tty_wait(tp, &tp->t_dcdwait);
350 			if (error != 0)
351 				goto done;
352 		}
353 	}
354 
355 	if (dev == dev_console)
356 		tp->t_flags |= TF_OPENED_CONS;
357 	else if (TTY_CALLOUT(tp, dev))
358 		tp->t_flags |= TF_OPENED_OUT;
359 	else
360 		tp->t_flags |= TF_OPENED_IN;
361 	MPASS((tp->t_flags & (TF_OPENED_CONS | TF_OPENED_IN)) == 0 ||
362 	    (tp->t_flags & TF_OPENED_OUT) == 0);
363 
364 done:	tp->t_flags &= ~TF_OPENCLOSE;
365 	cv_broadcast(&tp->t_dcdwait);
366 	ttydev_leave(tp);
367 
368 	return (error);
369 }
370 
371 static int
372 ttydev_close(struct cdev *dev, int fflag, int devtype __unused,
373     struct thread *td __unused)
374 {
375 	struct tty *tp = dev->si_drv1;
376 
377 	tty_lock(tp);
378 
379 	/*
380 	 * Don't actually close the device if it is being used as the
381 	 * console.
382 	 */
383 	MPASS((tp->t_flags & (TF_OPENED_CONS | TF_OPENED_IN)) == 0 ||
384 	    (tp->t_flags & TF_OPENED_OUT) == 0);
385 	if (dev == dev_console)
386 		tp->t_flags &= ~TF_OPENED_CONS;
387 	else
388 		tp->t_flags &= ~(TF_OPENED_IN|TF_OPENED_OUT);
389 
390 	if (tp->t_flags & TF_OPENED) {
391 		tty_unlock(tp);
392 		return (0);
393 	}
394 
395 	/* If revoking, flush output now to avoid draining it later. */
396 	if (fflag & FREVOKE)
397 		tty_flush(tp, FWRITE);
398 
399 	tp->t_flags &= ~TF_EXCLUDE;
400 
401 	/* Properly wake up threads that are stuck - revoke(). */
402 	tp->t_revokecnt++;
403 	tty_wakeup(tp, FREAD|FWRITE);
404 	cv_broadcast(&tp->t_bgwait);
405 	cv_broadcast(&tp->t_dcdwait);
406 
407 	ttydev_leave(tp);
408 
409 	return (0);
410 }
411 
412 static __inline int
413 tty_is_ctty(struct tty *tp, struct proc *p)
414 {
415 
416 	tty_lock_assert(tp, MA_OWNED);
417 
418 	return (p->p_session == tp->t_session && p->p_flag & P_CONTROLT);
419 }
420 
421 int
422 tty_wait_background(struct tty *tp, struct thread *td, int sig)
423 {
424 	struct proc *p = td->td_proc;
425 	struct pgrp *pg;
426 	ksiginfo_t ksi;
427 	int error;
428 
429 	MPASS(sig == SIGTTIN || sig == SIGTTOU);
430 	tty_lock_assert(tp, MA_OWNED);
431 
432 	for (;;) {
433 		PROC_LOCK(p);
434 		/*
435 		 * The process should only sleep, when:
436 		 * - This terminal is the controlling terminal
437 		 * - Its process group is not the foreground process
438 		 *   group
439 		 * - The parent process isn't waiting for the child to
440 		 *   exit
441 		 * - the signal to send to the process isn't masked
442 		 */
443 		if (!tty_is_ctty(tp, p) || p->p_pgrp == tp->t_pgrp) {
444 			/* Allow the action to happen. */
445 			PROC_UNLOCK(p);
446 			return (0);
447 		}
448 
449 		if (SIGISMEMBER(p->p_sigacts->ps_sigignore, sig) ||
450 		    SIGISMEMBER(td->td_sigmask, sig)) {
451 			/* Only allow them in write()/ioctl(). */
452 			PROC_UNLOCK(p);
453 			return (sig == SIGTTOU ? 0 : EIO);
454 		}
455 
456 		pg = p->p_pgrp;
457 		if (p->p_flag & P_PPWAIT || pg->pg_jobc == 0) {
458 			/* Don't allow the action to happen. */
459 			PROC_UNLOCK(p);
460 			return (EIO);
461 		}
462 		PROC_UNLOCK(p);
463 
464 		/*
465 		 * Send the signal and sleep until we're the new
466 		 * foreground process group.
467 		 */
468 		if (sig != 0) {
469 			ksiginfo_init(&ksi);
470 			ksi.ksi_code = SI_KERNEL;
471 			ksi.ksi_signo = sig;
472 			sig = 0;
473 		}
474 		PGRP_LOCK(pg);
475 		pgsignal(pg, ksi.ksi_signo, 1, &ksi);
476 		PGRP_UNLOCK(pg);
477 
478 		error = tty_wait(tp, &tp->t_bgwait);
479 		if (error)
480 			return (error);
481 	}
482 }
483 
484 static int
485 ttydev_read(struct cdev *dev, struct uio *uio, int ioflag)
486 {
487 	struct tty *tp = dev->si_drv1;
488 	int error;
489 
490 	error = ttydev_enter(tp);
491 	if (error)
492 		goto done;
493 	error = ttydisc_read(tp, uio, ioflag);
494 	tty_unlock(tp);
495 
496 	/*
497 	 * The read() call should not throw an error when the device is
498 	 * being destroyed. Silently convert it to an EOF.
499 	 */
500 done:	if (error == ENXIO)
501 		error = 0;
502 	return (error);
503 }
504 
505 static int
506 ttydev_write(struct cdev *dev, struct uio *uio, int ioflag)
507 {
508 	struct tty *tp = dev->si_drv1;
509 	int error;
510 
511 	error = ttydev_enter(tp);
512 	if (error)
513 		return (error);
514 
515 	if (tp->t_termios.c_lflag & TOSTOP) {
516 		error = tty_wait_background(tp, curthread, SIGTTOU);
517 		if (error)
518 			goto done;
519 	}
520 
521 	if (ioflag & IO_NDELAY && tp->t_flags & TF_BUSY_OUT) {
522 		/* Allow non-blocking writes to bypass serialization. */
523 		error = ttydisc_write(tp, uio, ioflag);
524 	} else {
525 		/* Serialize write() calls. */
526 		while (tp->t_flags & TF_BUSY_OUT) {
527 			error = tty_wait(tp, &tp->t_outserwait);
528 			if (error)
529 				goto done;
530 		}
531 
532 		tp->t_flags |= TF_BUSY_OUT;
533 		error = ttydisc_write(tp, uio, ioflag);
534 		tp->t_flags &= ~TF_BUSY_OUT;
535 		cv_signal(&tp->t_outserwait);
536 	}
537 
538 done:	tty_unlock(tp);
539 	return (error);
540 }
541 
542 static int
543 ttydev_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag,
544     struct thread *td)
545 {
546 	struct tty *tp = dev->si_drv1;
547 	int error;
548 
549 	error = ttydev_enter(tp);
550 	if (error)
551 		return (error);
552 
553 	switch (cmd) {
554 	case TIOCCBRK:
555 	case TIOCCONS:
556 	case TIOCDRAIN:
557 	case TIOCEXCL:
558 	case TIOCFLUSH:
559 	case TIOCNXCL:
560 	case TIOCSBRK:
561 	case TIOCSCTTY:
562 	case TIOCSETA:
563 	case TIOCSETAF:
564 	case TIOCSETAW:
565 	case TIOCSPGRP:
566 	case TIOCSTART:
567 	case TIOCSTAT:
568 	case TIOCSTI:
569 	case TIOCSTOP:
570 	case TIOCSWINSZ:
571 #if 0
572 	case TIOCSDRAINWAIT:
573 	case TIOCSETD:
574 #endif
575 #ifdef COMPAT_43TTY
576 	case  TIOCLBIC:
577 	case  TIOCLBIS:
578 	case  TIOCLSET:
579 	case  TIOCSETC:
580 	case OTIOCSETD:
581 	case  TIOCSETN:
582 	case  TIOCSETP:
583 	case  TIOCSLTC:
584 #endif /* COMPAT_43TTY */
585 		/*
586 		 * If the ioctl() causes the TTY to be modified, let it
587 		 * wait in the background.
588 		 */
589 		error = tty_wait_background(tp, curthread, SIGTTOU);
590 		if (error)
591 			goto done;
592 	}
593 
594 	if (cmd == TIOCSETA || cmd == TIOCSETAW || cmd == TIOCSETAF) {
595 		struct termios *old = &tp->t_termios;
596 		struct termios *new = (struct termios *)data;
597 		struct termios *lock = TTY_CALLOUT(tp, dev) ?
598 		    &tp->t_termios_lock_out : &tp->t_termios_lock_in;
599 		int cc;
600 
601 		/*
602 		 * Lock state devices.  Just overwrite the values of the
603 		 * commands that are currently in use.
604 		 */
605 		new->c_iflag = (old->c_iflag & lock->c_iflag) |
606 		    (new->c_iflag & ~lock->c_iflag);
607 		new->c_oflag = (old->c_oflag & lock->c_oflag) |
608 		    (new->c_oflag & ~lock->c_oflag);
609 		new->c_cflag = (old->c_cflag & lock->c_cflag) |
610 		    (new->c_cflag & ~lock->c_cflag);
611 		new->c_lflag = (old->c_lflag & lock->c_lflag) |
612 		    (new->c_lflag & ~lock->c_lflag);
613 		for (cc = 0; cc < NCCS; ++cc)
614 			if (lock->c_cc[cc])
615 				new->c_cc[cc] = old->c_cc[cc];
616 		if (lock->c_ispeed)
617 			new->c_ispeed = old->c_ispeed;
618 		if (lock->c_ospeed)
619 			new->c_ospeed = old->c_ospeed;
620 	}
621 
622 	error = tty_ioctl(tp, cmd, data, fflag, td);
623 done:	tty_unlock(tp);
624 
625 	return (error);
626 }
627 
628 static int
629 ttydev_poll(struct cdev *dev, int events, struct thread *td)
630 {
631 	struct tty *tp = dev->si_drv1;
632 	int error, revents = 0;
633 
634 	error = ttydev_enter(tp);
635 	if (error)
636 		return ((events & (POLLIN|POLLRDNORM)) | POLLHUP);
637 
638 	if (events & (POLLIN|POLLRDNORM)) {
639 		/* See if we can read something. */
640 		if (ttydisc_read_poll(tp) > 0)
641 			revents |= events & (POLLIN|POLLRDNORM);
642 	}
643 
644 	if (tp->t_flags & TF_ZOMBIE) {
645 		/* Hangup flag on zombie state. */
646 		revents |= POLLHUP;
647 	} else if (events & (POLLOUT|POLLWRNORM)) {
648 		/* See if we can write something. */
649 		if (ttydisc_write_poll(tp) > 0)
650 			revents |= events & (POLLOUT|POLLWRNORM);
651 	}
652 
653 	if (revents == 0) {
654 		if (events & (POLLIN|POLLRDNORM))
655 			selrecord(td, &tp->t_inpoll);
656 		if (events & (POLLOUT|POLLWRNORM))
657 			selrecord(td, &tp->t_outpoll);
658 	}
659 
660 	tty_unlock(tp);
661 
662 	return (revents);
663 }
664 
665 static int
666 ttydev_mmap(struct cdev *dev, vm_ooffset_t offset, vm_paddr_t *paddr,
667     int nprot, vm_memattr_t *memattr)
668 {
669 	struct tty *tp = dev->si_drv1;
670 	int error;
671 
672 	/* Handle mmap() through the driver. */
673 
674 	error = ttydev_enter(tp);
675 	if (error)
676 		return (-1);
677 	error = ttydevsw_mmap(tp, offset, paddr, nprot, memattr);
678 	tty_unlock(tp);
679 
680 	return (error);
681 }
682 
683 /*
684  * kqueue support.
685  */
686 
687 static void
688 tty_kqops_read_detach(struct knote *kn)
689 {
690 	struct tty *tp = kn->kn_hook;
691 
692 	knlist_remove(&tp->t_inpoll.si_note, kn, 0);
693 }
694 
695 static int
696 tty_kqops_read_event(struct knote *kn, long hint __unused)
697 {
698 	struct tty *tp = kn->kn_hook;
699 
700 	tty_lock_assert(tp, MA_OWNED);
701 
702 	if (tty_gone(tp) || tp->t_flags & TF_ZOMBIE) {
703 		kn->kn_flags |= EV_EOF;
704 		return (1);
705 	} else {
706 		kn->kn_data = ttydisc_read_poll(tp);
707 		return (kn->kn_data > 0);
708 	}
709 }
710 
711 static void
712 tty_kqops_write_detach(struct knote *kn)
713 {
714 	struct tty *tp = kn->kn_hook;
715 
716 	knlist_remove(&tp->t_outpoll.si_note, kn, 0);
717 }
718 
719 static int
720 tty_kqops_write_event(struct knote *kn, long hint __unused)
721 {
722 	struct tty *tp = kn->kn_hook;
723 
724 	tty_lock_assert(tp, MA_OWNED);
725 
726 	if (tty_gone(tp)) {
727 		kn->kn_flags |= EV_EOF;
728 		return (1);
729 	} else {
730 		kn->kn_data = ttydisc_write_poll(tp);
731 		return (kn->kn_data > 0);
732 	}
733 }
734 
735 static struct filterops tty_kqops_read = {
736 	.f_isfd = 1,
737 	.f_detach = tty_kqops_read_detach,
738 	.f_event = tty_kqops_read_event,
739 };
740 
741 static struct filterops tty_kqops_write = {
742 	.f_isfd = 1,
743 	.f_detach = tty_kqops_write_detach,
744 	.f_event = tty_kqops_write_event,
745 };
746 
747 static int
748 ttydev_kqfilter(struct cdev *dev, struct knote *kn)
749 {
750 	struct tty *tp = dev->si_drv1;
751 	int error;
752 
753 	error = ttydev_enter(tp);
754 	if (error)
755 		return (error);
756 
757 	switch (kn->kn_filter) {
758 	case EVFILT_READ:
759 		kn->kn_hook = tp;
760 		kn->kn_fop = &tty_kqops_read;
761 		knlist_add(&tp->t_inpoll.si_note, kn, 1);
762 		break;
763 	case EVFILT_WRITE:
764 		kn->kn_hook = tp;
765 		kn->kn_fop = &tty_kqops_write;
766 		knlist_add(&tp->t_outpoll.si_note, kn, 1);
767 		break;
768 	default:
769 		error = EINVAL;
770 		break;
771 	}
772 
773 	tty_unlock(tp);
774 	return (error);
775 }
776 
777 static struct cdevsw ttydev_cdevsw = {
778 	.d_version	= D_VERSION,
779 	.d_open		= ttydev_open,
780 	.d_close	= ttydev_close,
781 	.d_read		= ttydev_read,
782 	.d_write	= ttydev_write,
783 	.d_ioctl	= ttydev_ioctl,
784 	.d_kqfilter	= ttydev_kqfilter,
785 	.d_poll		= ttydev_poll,
786 	.d_mmap		= ttydev_mmap,
787 	.d_name		= "ttydev",
788 	.d_flags	= D_TTY,
789 };
790 
791 /*
792  * Init/lock-state devices
793  */
794 
795 static int
796 ttyil_open(struct cdev *dev, int oflags __unused, int devtype __unused,
797     struct thread *td)
798 {
799 	struct tty *tp;
800 	int error;
801 
802 	tp = dev->si_drv1;
803 	error = 0;
804 	tty_lock(tp);
805 	if (tty_gone(tp))
806 		error = ENODEV;
807 	tty_unlock(tp);
808 
809 	return (error);
810 }
811 
812 static int
813 ttyil_close(struct cdev *dev __unused, int flag __unused, int mode __unused,
814     struct thread *td __unused)
815 {
816 
817 	return (0);
818 }
819 
820 static int
821 ttyil_rdwr(struct cdev *dev __unused, struct uio *uio __unused,
822     int ioflag __unused)
823 {
824 
825 	return (ENODEV);
826 }
827 
828 static int
829 ttyil_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag,
830     struct thread *td)
831 {
832 	struct tty *tp = dev->si_drv1;
833 	int error;
834 
835 	tty_lock(tp);
836 	if (tty_gone(tp)) {
837 		error = ENODEV;
838 		goto done;
839 	}
840 
841 	error = ttydevsw_cioctl(tp, dev2unit(dev), cmd, data, td);
842 	if (error != ENOIOCTL)
843 		goto done;
844 	error = 0;
845 
846 	switch (cmd) {
847 	case TIOCGETA:
848 		/* Obtain terminal flags through tcgetattr(). */
849 		*(struct termios*)data = *(struct termios*)dev->si_drv2;
850 		break;
851 	case TIOCSETA:
852 		/* Set terminal flags through tcsetattr(). */
853 		error = priv_check(td, PRIV_TTY_SETA);
854 		if (error)
855 			break;
856 		*(struct termios*)dev->si_drv2 = *(struct termios*)data;
857 		break;
858 	case TIOCGETD:
859 		*(int *)data = TTYDISC;
860 		break;
861 	case TIOCGWINSZ:
862 		bzero(data, sizeof(struct winsize));
863 		break;
864 	default:
865 		error = ENOTTY;
866 	}
867 
868 done:	tty_unlock(tp);
869 	return (error);
870 }
871 
872 static struct cdevsw ttyil_cdevsw = {
873 	.d_version	= D_VERSION,
874 	.d_open		= ttyil_open,
875 	.d_close	= ttyil_close,
876 	.d_read		= ttyil_rdwr,
877 	.d_write	= ttyil_rdwr,
878 	.d_ioctl	= ttyil_ioctl,
879 	.d_name		= "ttyil",
880 	.d_flags	= D_TTY,
881 };
882 
883 static void
884 tty_init_termios(struct tty *tp)
885 {
886 	struct termios *t = &tp->t_termios_init_in;
887 
888 	t->c_cflag = TTYDEF_CFLAG;
889 	t->c_iflag = TTYDEF_IFLAG;
890 	t->c_lflag = TTYDEF_LFLAG;
891 	t->c_oflag = TTYDEF_OFLAG;
892 	t->c_ispeed = TTYDEF_SPEED;
893 	t->c_ospeed = TTYDEF_SPEED;
894 	memcpy(&t->c_cc, ttydefchars, sizeof ttydefchars);
895 
896 	tp->t_termios_init_out = *t;
897 }
898 
899 void
900 tty_init_console(struct tty *tp, speed_t s)
901 {
902 	struct termios *ti = &tp->t_termios_init_in;
903 	struct termios *to = &tp->t_termios_init_out;
904 
905 	if (s != 0) {
906 		ti->c_ispeed = ti->c_ospeed = s;
907 		to->c_ispeed = to->c_ospeed = s;
908 	}
909 
910 	ti->c_cflag |= CLOCAL;
911 	to->c_cflag |= CLOCAL;
912 }
913 
914 /*
915  * Standard device routine implementations, mostly meant for
916  * pseudo-terminal device drivers. When a driver creates a new terminal
917  * device class, missing routines are patched.
918  */
919 
920 static int
921 ttydevsw_defopen(struct tty *tp __unused)
922 {
923 
924 	return (0);
925 }
926 
927 static void
928 ttydevsw_defclose(struct tty *tp __unused)
929 {
930 
931 }
932 
933 static void
934 ttydevsw_defoutwakeup(struct tty *tp __unused)
935 {
936 
937 	panic("Terminal device has output, while not implemented");
938 }
939 
940 static void
941 ttydevsw_definwakeup(struct tty *tp __unused)
942 {
943 
944 }
945 
946 static int
947 ttydevsw_defioctl(struct tty *tp __unused, u_long cmd __unused,
948     caddr_t data __unused, struct thread *td __unused)
949 {
950 
951 	return (ENOIOCTL);
952 }
953 
954 static int
955 ttydevsw_defcioctl(struct tty *tp __unused, int unit __unused,
956     u_long cmd __unused, caddr_t data __unused, struct thread *td __unused)
957 {
958 
959 	return (ENOIOCTL);
960 }
961 
962 static int
963 ttydevsw_defparam(struct tty *tp __unused, struct termios *t)
964 {
965 
966 	/*
967 	 * Allow the baud rate to be adjusted for pseudo-devices, but at
968 	 * least restrict it to 115200 to prevent excessive buffer
969 	 * usage.  Also disallow 0, to prevent foot shooting.
970 	 */
971 	if (t->c_ispeed < B50)
972 		t->c_ispeed = B50;
973 	else if (t->c_ispeed > B115200)
974 		t->c_ispeed = B115200;
975 	if (t->c_ospeed < B50)
976 		t->c_ospeed = B50;
977 	else if (t->c_ospeed > B115200)
978 		t->c_ospeed = B115200;
979 	t->c_cflag |= CREAD;
980 
981 	return (0);
982 }
983 
984 static int
985 ttydevsw_defmodem(struct tty *tp __unused, int sigon __unused,
986     int sigoff __unused)
987 {
988 
989 	/* Simulate a carrier to make the TTY layer happy. */
990 	return (SER_DCD);
991 }
992 
993 static int
994 ttydevsw_defmmap(struct tty *tp __unused, vm_ooffset_t offset __unused,
995     vm_paddr_t *paddr __unused, int nprot __unused,
996     vm_memattr_t *memattr __unused)
997 {
998 
999 	return (-1);
1000 }
1001 
1002 static void
1003 ttydevsw_defpktnotify(struct tty *tp __unused, char event __unused)
1004 {
1005 
1006 }
1007 
1008 static void
1009 ttydevsw_deffree(void *softc __unused)
1010 {
1011 
1012 	panic("Terminal device freed without a free-handler");
1013 }
1014 
1015 static bool
1016 ttydevsw_defbusy(struct tty *tp __unused)
1017 {
1018 
1019 	return (FALSE);
1020 }
1021 
1022 /*
1023  * TTY allocation and deallocation. TTY devices can be deallocated when
1024  * the driver doesn't use it anymore, when the TTY isn't a session's
1025  * controlling TTY and when the device node isn't opened through devfs.
1026  */
1027 
1028 struct tty *
1029 tty_alloc(struct ttydevsw *tsw, void *sc)
1030 {
1031 
1032 	return (tty_alloc_mutex(tsw, sc, NULL));
1033 }
1034 
1035 struct tty *
1036 tty_alloc_mutex(struct ttydevsw *tsw, void *sc, struct mtx *mutex)
1037 {
1038 	struct tty *tp;
1039 
1040 	/* Make sure the driver defines all routines. */
1041 #define PATCH_FUNC(x) do {				\
1042 	if (tsw->tsw_ ## x == NULL)			\
1043 		tsw->tsw_ ## x = ttydevsw_def ## x;	\
1044 } while (0)
1045 	PATCH_FUNC(open);
1046 	PATCH_FUNC(close);
1047 	PATCH_FUNC(outwakeup);
1048 	PATCH_FUNC(inwakeup);
1049 	PATCH_FUNC(ioctl);
1050 	PATCH_FUNC(cioctl);
1051 	PATCH_FUNC(param);
1052 	PATCH_FUNC(modem);
1053 	PATCH_FUNC(mmap);
1054 	PATCH_FUNC(pktnotify);
1055 	PATCH_FUNC(free);
1056 	PATCH_FUNC(busy);
1057 #undef PATCH_FUNC
1058 
1059 	tp = malloc(sizeof(struct tty) + TTY_PRBUF_SIZE, M_TTY,
1060 	    M_WAITOK | M_ZERO);
1061 	tp->t_prbufsz = TTY_PRBUF_SIZE;
1062 	tp->t_devsw = tsw;
1063 	tp->t_devswsoftc = sc;
1064 	tp->t_flags = tsw->tsw_flags;
1065 	tp->t_drainwait = tty_drainwait;
1066 
1067 	tty_init_termios(tp);
1068 
1069 	cv_init(&tp->t_inwait, "ttyin");
1070 	cv_init(&tp->t_outwait, "ttyout");
1071 	cv_init(&tp->t_outserwait, "ttyosr");
1072 	cv_init(&tp->t_bgwait, "ttybg");
1073 	cv_init(&tp->t_dcdwait, "ttydcd");
1074 
1075 	/* Allow drivers to use a custom mutex to lock the TTY. */
1076 	if (mutex != NULL) {
1077 		tp->t_mtx = mutex;
1078 	} else {
1079 		tp->t_mtx = &tp->t_mtxobj;
1080 		mtx_init(&tp->t_mtxobj, "ttymtx", NULL, MTX_DEF);
1081 	}
1082 
1083 	knlist_init_mtx(&tp->t_inpoll.si_note, tp->t_mtx);
1084 	knlist_init_mtx(&tp->t_outpoll.si_note, tp->t_mtx);
1085 
1086 	return (tp);
1087 }
1088 
1089 static void
1090 tty_dealloc(void *arg)
1091 {
1092 	struct tty *tp = arg;
1093 
1094 	/*
1095 	 * ttyydev_leave() usually frees the i/o queues earlier, but it is
1096 	 * not always called between queue allocation and here.  The queues
1097 	 * may be allocated by ioctls on a pty control device without the
1098 	 * corresponding pty slave device ever being open, or after it is
1099 	 * closed.
1100 	 */
1101 	ttyinq_free(&tp->t_inq);
1102 	ttyoutq_free(&tp->t_outq);
1103 	seldrain(&tp->t_inpoll);
1104 	seldrain(&tp->t_outpoll);
1105 	knlist_destroy(&tp->t_inpoll.si_note);
1106 	knlist_destroy(&tp->t_outpoll.si_note);
1107 
1108 	cv_destroy(&tp->t_inwait);
1109 	cv_destroy(&tp->t_outwait);
1110 	cv_destroy(&tp->t_bgwait);
1111 	cv_destroy(&tp->t_dcdwait);
1112 	cv_destroy(&tp->t_outserwait);
1113 
1114 	if (tp->t_mtx == &tp->t_mtxobj)
1115 		mtx_destroy(&tp->t_mtxobj);
1116 	ttydevsw_free(tp);
1117 	free(tp, M_TTY);
1118 }
1119 
1120 static void
1121 tty_rel_free(struct tty *tp)
1122 {
1123 	struct cdev *dev;
1124 
1125 	tty_lock_assert(tp, MA_OWNED);
1126 
1127 #define	TF_ACTIVITY	(TF_GONE|TF_OPENED|TF_HOOK|TF_OPENCLOSE)
1128 	if (tp->t_sessioncnt != 0 || (tp->t_flags & TF_ACTIVITY) != TF_GONE) {
1129 		/* TTY is still in use. */
1130 		tty_unlock(tp);
1131 		return;
1132 	}
1133 
1134 	/* Stop asynchronous I/O. */
1135 	funsetown(&tp->t_sigio);
1136 
1137 	/* TTY can be deallocated. */
1138 	dev = tp->t_dev;
1139 	tp->t_dev = NULL;
1140 	tty_unlock(tp);
1141 
1142 	if (dev != NULL) {
1143 		sx_xlock(&tty_list_sx);
1144 		TAILQ_REMOVE(&tty_list, tp, t_list);
1145 		tty_list_count--;
1146 		sx_xunlock(&tty_list_sx);
1147 		destroy_dev_sched_cb(dev, tty_dealloc, tp);
1148 	}
1149 }
1150 
1151 void
1152 tty_rel_pgrp(struct tty *tp, struct pgrp *pg)
1153 {
1154 
1155 	MPASS(tp->t_sessioncnt > 0);
1156 	tty_lock_assert(tp, MA_OWNED);
1157 
1158 	if (tp->t_pgrp == pg)
1159 		tp->t_pgrp = NULL;
1160 
1161 	tty_unlock(tp);
1162 }
1163 
1164 void
1165 tty_rel_sess(struct tty *tp, struct session *sess)
1166 {
1167 
1168 	MPASS(tp->t_sessioncnt > 0);
1169 
1170 	/* Current session has left. */
1171 	if (tp->t_session == sess) {
1172 		tp->t_session = NULL;
1173 		MPASS(tp->t_pgrp == NULL);
1174 	}
1175 	tp->t_sessioncnt--;
1176 	tty_rel_free(tp);
1177 }
1178 
1179 void
1180 tty_rel_gone(struct tty *tp)
1181 {
1182 
1183 	MPASS(!tty_gone(tp));
1184 
1185 	/* Simulate carrier removal. */
1186 	ttydisc_modem(tp, 0);
1187 
1188 	/* Wake up all blocked threads. */
1189 	tty_wakeup(tp, FREAD|FWRITE);
1190 	cv_broadcast(&tp->t_bgwait);
1191 	cv_broadcast(&tp->t_dcdwait);
1192 
1193 	tp->t_flags |= TF_GONE;
1194 	tty_rel_free(tp);
1195 }
1196 
1197 /*
1198  * Exposing information about current TTY's through sysctl
1199  */
1200 
1201 static void
1202 tty_to_xtty(struct tty *tp, struct xtty *xt)
1203 {
1204 
1205 	tty_lock_assert(tp, MA_OWNED);
1206 
1207 	xt->xt_size = sizeof(struct xtty);
1208 	xt->xt_insize = ttyinq_getsize(&tp->t_inq);
1209 	xt->xt_incc = ttyinq_bytescanonicalized(&tp->t_inq);
1210 	xt->xt_inlc = ttyinq_bytesline(&tp->t_inq);
1211 	xt->xt_inlow = tp->t_inlow;
1212 	xt->xt_outsize = ttyoutq_getsize(&tp->t_outq);
1213 	xt->xt_outcc = ttyoutq_bytesused(&tp->t_outq);
1214 	xt->xt_outlow = tp->t_outlow;
1215 	xt->xt_column = tp->t_column;
1216 	xt->xt_pgid = tp->t_pgrp ? tp->t_pgrp->pg_id : 0;
1217 	xt->xt_sid = tp->t_session ? tp->t_session->s_sid : 0;
1218 	xt->xt_flags = tp->t_flags;
1219 	xt->xt_dev = tp->t_dev ? dev2udev(tp->t_dev) : (uint32_t)NODEV;
1220 }
1221 
1222 static int
1223 sysctl_kern_ttys(SYSCTL_HANDLER_ARGS)
1224 {
1225 	unsigned long lsize;
1226 	struct xtty *xtlist, *xt;
1227 	struct tty *tp;
1228 	int error;
1229 
1230 	sx_slock(&tty_list_sx);
1231 	lsize = tty_list_count * sizeof(struct xtty);
1232 	if (lsize == 0) {
1233 		sx_sunlock(&tty_list_sx);
1234 		return (0);
1235 	}
1236 
1237 	xtlist = xt = malloc(lsize, M_TTY, M_WAITOK);
1238 
1239 	TAILQ_FOREACH(tp, &tty_list, t_list) {
1240 		tty_lock(tp);
1241 		tty_to_xtty(tp, xt);
1242 		tty_unlock(tp);
1243 		xt++;
1244 	}
1245 	sx_sunlock(&tty_list_sx);
1246 
1247 	error = SYSCTL_OUT(req, xtlist, lsize);
1248 	free(xtlist, M_TTY);
1249 	return (error);
1250 }
1251 
1252 SYSCTL_PROC(_kern, OID_AUTO, ttys, CTLTYPE_OPAQUE|CTLFLAG_RD|CTLFLAG_MPSAFE,
1253 	0, 0, sysctl_kern_ttys, "S,xtty", "List of TTYs");
1254 
1255 /*
1256  * Device node creation. Device has been set up, now we can expose it to
1257  * the user.
1258  */
1259 
1260 int
1261 tty_makedevf(struct tty *tp, struct ucred *cred, int flags,
1262     const char *fmt, ...)
1263 {
1264 	va_list ap;
1265 	struct make_dev_args args;
1266 	struct cdev *dev, *init, *lock, *cua, *cinit, *clock;
1267 	const char *prefix = "tty";
1268 	char name[SPECNAMELEN - 3]; /* for "tty" and "cua". */
1269 	uid_t uid;
1270 	gid_t gid;
1271 	mode_t mode;
1272 	int error;
1273 
1274 	/* Remove "tty" prefix from devices like PTY's. */
1275 	if (tp->t_flags & TF_NOPREFIX)
1276 		prefix = "";
1277 
1278 	va_start(ap, fmt);
1279 	vsnrprintf(name, sizeof name, 32, fmt, ap);
1280 	va_end(ap);
1281 
1282 	if (cred == NULL) {
1283 		/* System device. */
1284 		uid = UID_ROOT;
1285 		gid = GID_WHEEL;
1286 		mode = S_IRUSR|S_IWUSR;
1287 	} else {
1288 		/* User device. */
1289 		uid = cred->cr_ruid;
1290 		gid = GID_TTY;
1291 		mode = S_IRUSR|S_IWUSR|S_IWGRP;
1292 	}
1293 
1294 	flags = flags & TTYMK_CLONING ? MAKEDEV_REF : 0;
1295 	flags |= MAKEDEV_CHECKNAME;
1296 
1297 	/* Master call-in device. */
1298 	make_dev_args_init(&args);
1299 	args.mda_flags = flags;
1300 	args.mda_devsw = &ttydev_cdevsw;
1301 	args.mda_cr = cred;
1302 	args.mda_uid = uid;
1303 	args.mda_gid = gid;
1304 	args.mda_mode = mode;
1305 	args.mda_si_drv1 = tp;
1306 	error = make_dev_s(&args, &dev, "%s%s", prefix, name);
1307 	if (error != 0)
1308 		return (error);
1309 	tp->t_dev = dev;
1310 
1311 	init = lock = cua = cinit = clock = NULL;
1312 
1313 	/* Slave call-in devices. */
1314 	if (tp->t_flags & TF_INITLOCK) {
1315 		args.mda_devsw = &ttyil_cdevsw;
1316 		args.mda_unit = TTYUNIT_INIT;
1317 		args.mda_si_drv1 = tp;
1318 		args.mda_si_drv2 = &tp->t_termios_init_in;
1319 		error = make_dev_s(&args, &init, "%s%s.init", prefix, name);
1320 		if (error != 0)
1321 			goto fail;
1322 		dev_depends(dev, init);
1323 
1324 		args.mda_unit = TTYUNIT_LOCK;
1325 		args.mda_si_drv2 = &tp->t_termios_lock_in;
1326 		error = make_dev_s(&args, &lock, "%s%s.lock", prefix, name);
1327 		if (error != 0)
1328 			goto fail;
1329 		dev_depends(dev, lock);
1330 	}
1331 
1332 	/* Call-out devices. */
1333 	if (tp->t_flags & TF_CALLOUT) {
1334 		make_dev_args_init(&args);
1335 		args.mda_flags = flags;
1336 		args.mda_devsw = &ttydev_cdevsw;
1337 		args.mda_cr = cred;
1338 		args.mda_uid = UID_UUCP;
1339 		args.mda_gid = GID_DIALER;
1340 		args.mda_mode = 0660;
1341 		args.mda_unit = TTYUNIT_CALLOUT;
1342 		args.mda_si_drv1 = tp;
1343 		error = make_dev_s(&args, &cua, "cua%s", name);
1344 		if (error != 0)
1345 			goto fail;
1346 		dev_depends(dev, cua);
1347 
1348 		/* Slave call-out devices. */
1349 		if (tp->t_flags & TF_INITLOCK) {
1350 			args.mda_devsw = &ttyil_cdevsw;
1351 			args.mda_unit = TTYUNIT_CALLOUT | TTYUNIT_INIT;
1352 			args.mda_si_drv2 = &tp->t_termios_init_out;
1353 			error = make_dev_s(&args, &cinit, "cua%s.init", name);
1354 			if (error != 0)
1355 				goto fail;
1356 			dev_depends(dev, cinit);
1357 
1358 			args.mda_unit = TTYUNIT_CALLOUT | TTYUNIT_LOCK;
1359 			args.mda_si_drv2 = &tp->t_termios_lock_out;
1360 			error = make_dev_s(&args, &clock, "cua%s.lock", name);
1361 			if (error != 0)
1362 				goto fail;
1363 			dev_depends(dev, clock);
1364 		}
1365 	}
1366 
1367 	sx_xlock(&tty_list_sx);
1368 	TAILQ_INSERT_TAIL(&tty_list, tp, t_list);
1369 	tty_list_count++;
1370 	sx_xunlock(&tty_list_sx);
1371 
1372 	return (0);
1373 
1374 fail:
1375 	destroy_dev(dev);
1376 	if (init)
1377 		destroy_dev(init);
1378 	if (lock)
1379 		destroy_dev(lock);
1380 	if (cinit)
1381 		destroy_dev(cinit);
1382 	if (clock)
1383 		destroy_dev(clock);
1384 
1385 	return (error);
1386 }
1387 
1388 /*
1389  * Signalling processes.
1390  */
1391 
1392 void
1393 tty_signal_sessleader(struct tty *tp, int sig)
1394 {
1395 	struct proc *p;
1396 
1397 	tty_lock_assert(tp, MA_OWNED);
1398 	MPASS(sig >= 1 && sig < NSIG);
1399 
1400 	/* Make signals start output again. */
1401 	tp->t_flags &= ~TF_STOPPED;
1402 
1403 	if (tp->t_session != NULL && tp->t_session->s_leader != NULL) {
1404 		p = tp->t_session->s_leader;
1405 		PROC_LOCK(p);
1406 		kern_psignal(p, sig);
1407 		PROC_UNLOCK(p);
1408 	}
1409 }
1410 
1411 void
1412 tty_signal_pgrp(struct tty *tp, int sig)
1413 {
1414 	ksiginfo_t ksi;
1415 
1416 	tty_lock_assert(tp, MA_OWNED);
1417 	MPASS(sig >= 1 && sig < NSIG);
1418 
1419 	/* Make signals start output again. */
1420 	tp->t_flags &= ~TF_STOPPED;
1421 
1422 	if (sig == SIGINFO && !(tp->t_termios.c_lflag & NOKERNINFO))
1423 		tty_info(tp);
1424 	if (tp->t_pgrp != NULL) {
1425 		ksiginfo_init(&ksi);
1426 		ksi.ksi_signo = sig;
1427 		ksi.ksi_code = SI_KERNEL;
1428 		PGRP_LOCK(tp->t_pgrp);
1429 		pgsignal(tp->t_pgrp, sig, 1, &ksi);
1430 		PGRP_UNLOCK(tp->t_pgrp);
1431 	}
1432 }
1433 
1434 void
1435 tty_wakeup(struct tty *tp, int flags)
1436 {
1437 
1438 	if (tp->t_flags & TF_ASYNC && tp->t_sigio != NULL)
1439 		pgsigio(&tp->t_sigio, SIGIO, (tp->t_session != NULL));
1440 
1441 	if (flags & FWRITE) {
1442 		cv_broadcast(&tp->t_outwait);
1443 		selwakeup(&tp->t_outpoll);
1444 		KNOTE_LOCKED(&tp->t_outpoll.si_note, 0);
1445 	}
1446 	if (flags & FREAD) {
1447 		cv_broadcast(&tp->t_inwait);
1448 		selwakeup(&tp->t_inpoll);
1449 		KNOTE_LOCKED(&tp->t_inpoll.si_note, 0);
1450 	}
1451 }
1452 
1453 int
1454 tty_wait(struct tty *tp, struct cv *cv)
1455 {
1456 	int error;
1457 	int revokecnt = tp->t_revokecnt;
1458 
1459 	tty_lock_assert(tp, MA_OWNED|MA_NOTRECURSED);
1460 	MPASS(!tty_gone(tp));
1461 
1462 	error = cv_wait_sig(cv, tp->t_mtx);
1463 
1464 	/* Bail out when the device slipped away. */
1465 	if (tty_gone(tp))
1466 		return (ENXIO);
1467 
1468 	/* Restart the system call when we may have been revoked. */
1469 	if (tp->t_revokecnt != revokecnt)
1470 		return (ERESTART);
1471 
1472 	return (error);
1473 }
1474 
1475 int
1476 tty_timedwait(struct tty *tp, struct cv *cv, int hz)
1477 {
1478 	int error;
1479 	int revokecnt = tp->t_revokecnt;
1480 
1481 	tty_lock_assert(tp, MA_OWNED|MA_NOTRECURSED);
1482 	MPASS(!tty_gone(tp));
1483 
1484 	error = cv_timedwait_sig(cv, tp->t_mtx, hz);
1485 
1486 	/* Bail out when the device slipped away. */
1487 	if (tty_gone(tp))
1488 		return (ENXIO);
1489 
1490 	/* Restart the system call when we may have been revoked. */
1491 	if (tp->t_revokecnt != revokecnt)
1492 		return (ERESTART);
1493 
1494 	return (error);
1495 }
1496 
1497 void
1498 tty_flush(struct tty *tp, int flags)
1499 {
1500 
1501 	if (flags & FWRITE) {
1502 		tp->t_flags &= ~TF_HIWAT_OUT;
1503 		ttyoutq_flush(&tp->t_outq);
1504 		tty_wakeup(tp, FWRITE);
1505 		if (!tty_gone(tp)) {
1506 			ttydevsw_outwakeup(tp);
1507 			ttydevsw_pktnotify(tp, TIOCPKT_FLUSHWRITE);
1508 		}
1509 	}
1510 	if (flags & FREAD) {
1511 		tty_hiwat_in_unblock(tp);
1512 		ttyinq_flush(&tp->t_inq);
1513 		tty_wakeup(tp, FREAD);
1514 		if (!tty_gone(tp)) {
1515 			ttydevsw_inwakeup(tp);
1516 			ttydevsw_pktnotify(tp, TIOCPKT_FLUSHREAD);
1517 		}
1518 	}
1519 }
1520 
1521 void
1522 tty_set_winsize(struct tty *tp, const struct winsize *wsz)
1523 {
1524 
1525 	if (memcmp(&tp->t_winsize, wsz, sizeof(*wsz)) == 0)
1526 		return;
1527 	tp->t_winsize = *wsz;
1528 	tty_signal_pgrp(tp, SIGWINCH);
1529 }
1530 
1531 static int
1532 tty_generic_ioctl(struct tty *tp, u_long cmd, void *data, int fflag,
1533     struct thread *td)
1534 {
1535 	int error;
1536 
1537 	switch (cmd) {
1538 	/*
1539 	 * Modem commands.
1540 	 * The SER_* and TIOCM_* flags are the same, but one bit
1541 	 * shifted. I don't know why.
1542 	 */
1543 	case TIOCSDTR:
1544 		ttydevsw_modem(tp, SER_DTR, 0);
1545 		return (0);
1546 	case TIOCCDTR:
1547 		ttydevsw_modem(tp, 0, SER_DTR);
1548 		return (0);
1549 	case TIOCMSET: {
1550 		int bits = *(int *)data;
1551 		ttydevsw_modem(tp,
1552 		    (bits & (TIOCM_DTR | TIOCM_RTS)) >> 1,
1553 		    ((~bits) & (TIOCM_DTR | TIOCM_RTS)) >> 1);
1554 		return (0);
1555 	}
1556 	case TIOCMBIS: {
1557 		int bits = *(int *)data;
1558 		ttydevsw_modem(tp, (bits & (TIOCM_DTR | TIOCM_RTS)) >> 1, 0);
1559 		return (0);
1560 	}
1561 	case TIOCMBIC: {
1562 		int bits = *(int *)data;
1563 		ttydevsw_modem(tp, 0, (bits & (TIOCM_DTR | TIOCM_RTS)) >> 1);
1564 		return (0);
1565 	}
1566 	case TIOCMGET:
1567 		*(int *)data = TIOCM_LE + (ttydevsw_modem(tp, 0, 0) << 1);
1568 		return (0);
1569 
1570 	case FIOASYNC:
1571 		if (*(int *)data)
1572 			tp->t_flags |= TF_ASYNC;
1573 		else
1574 			tp->t_flags &= ~TF_ASYNC;
1575 		return (0);
1576 	case FIONBIO:
1577 		/* This device supports non-blocking operation. */
1578 		return (0);
1579 	case FIONREAD:
1580 		*(int *)data = ttyinq_bytescanonicalized(&tp->t_inq);
1581 		return (0);
1582 	case FIONWRITE:
1583 	case TIOCOUTQ:
1584 		*(int *)data = ttyoutq_bytesused(&tp->t_outq);
1585 		return (0);
1586 	case FIOSETOWN:
1587 		if (tp->t_session != NULL && !tty_is_ctty(tp, td->td_proc))
1588 			/* Not allowed to set ownership. */
1589 			return (ENOTTY);
1590 
1591 		/* Temporarily unlock the TTY to set ownership. */
1592 		tty_unlock(tp);
1593 		error = fsetown(*(int *)data, &tp->t_sigio);
1594 		tty_lock(tp);
1595 		return (error);
1596 	case FIOGETOWN:
1597 		if (tp->t_session != NULL && !tty_is_ctty(tp, td->td_proc))
1598 			/* Not allowed to set ownership. */
1599 			return (ENOTTY);
1600 
1601 		/* Get ownership. */
1602 		*(int *)data = fgetown(&tp->t_sigio);
1603 		return (0);
1604 	case TIOCGETA:
1605 		/* Obtain terminal flags through tcgetattr(). */
1606 		*(struct termios*)data = tp->t_termios;
1607 		return (0);
1608 	case TIOCSETA:
1609 	case TIOCSETAW:
1610 	case TIOCSETAF: {
1611 		struct termios *t = data;
1612 
1613 		/*
1614 		 * Who makes up these funny rules? According to POSIX,
1615 		 * input baud rate is set equal to the output baud rate
1616 		 * when zero.
1617 		 */
1618 		if (t->c_ispeed == 0)
1619 			t->c_ispeed = t->c_ospeed;
1620 
1621 		/* Discard any unsupported bits. */
1622 		t->c_iflag &= TTYSUP_IFLAG;
1623 		t->c_oflag &= TTYSUP_OFLAG;
1624 		t->c_lflag &= TTYSUP_LFLAG;
1625 		t->c_cflag &= TTYSUP_CFLAG;
1626 
1627 		/* Set terminal flags through tcsetattr(). */
1628 		if (cmd == TIOCSETAW || cmd == TIOCSETAF) {
1629 			error = tty_drain(tp, 0);
1630 			if (error)
1631 				return (error);
1632 			if (cmd == TIOCSETAF)
1633 				tty_flush(tp, FREAD);
1634 		}
1635 
1636 		/*
1637 		 * Only call param() when the flags really change.
1638 		 */
1639 		if ((t->c_cflag & CIGNORE) == 0 &&
1640 		    (tp->t_termios.c_cflag != t->c_cflag ||
1641 		    ((tp->t_termios.c_iflag ^ t->c_iflag) &
1642 		    (IXON|IXOFF|IXANY)) ||
1643 		    tp->t_termios.c_ispeed != t->c_ispeed ||
1644 		    tp->t_termios.c_ospeed != t->c_ospeed)) {
1645 			error = ttydevsw_param(tp, t);
1646 			if (error)
1647 				return (error);
1648 
1649 			/* XXX: CLOCAL? */
1650 
1651 			tp->t_termios.c_cflag = t->c_cflag & ~CIGNORE;
1652 			tp->t_termios.c_ispeed = t->c_ispeed;
1653 			tp->t_termios.c_ospeed = t->c_ospeed;
1654 
1655 			/* Baud rate has changed - update watermarks. */
1656 			error = tty_watermarks(tp);
1657 			if (error)
1658 				return (error);
1659 		}
1660 
1661 		/* Copy new non-device driver parameters. */
1662 		tp->t_termios.c_iflag = t->c_iflag;
1663 		tp->t_termios.c_oflag = t->c_oflag;
1664 		tp->t_termios.c_lflag = t->c_lflag;
1665 		memcpy(&tp->t_termios.c_cc, t->c_cc, sizeof t->c_cc);
1666 
1667 		ttydisc_optimize(tp);
1668 
1669 		if ((t->c_lflag & ICANON) == 0) {
1670 			/*
1671 			 * When in non-canonical mode, wake up all
1672 			 * readers. Canonicalize any partial input. VMIN
1673 			 * and VTIME could also be adjusted.
1674 			 */
1675 			ttyinq_canonicalize(&tp->t_inq);
1676 			tty_wakeup(tp, FREAD);
1677 		}
1678 
1679 		/*
1680 		 * For packet mode: notify the PTY consumer that VSTOP
1681 		 * and VSTART may have been changed.
1682 		 */
1683 		if (tp->t_termios.c_iflag & IXON &&
1684 		    tp->t_termios.c_cc[VSTOP] == CTRL('S') &&
1685 		    tp->t_termios.c_cc[VSTART] == CTRL('Q'))
1686 			ttydevsw_pktnotify(tp, TIOCPKT_DOSTOP);
1687 		else
1688 			ttydevsw_pktnotify(tp, TIOCPKT_NOSTOP);
1689 		return (0);
1690 	}
1691 	case TIOCGETD:
1692 		/* For compatibility - we only support TTYDISC. */
1693 		*(int *)data = TTYDISC;
1694 		return (0);
1695 	case TIOCGPGRP:
1696 		if (!tty_is_ctty(tp, td->td_proc))
1697 			return (ENOTTY);
1698 
1699 		if (tp->t_pgrp != NULL)
1700 			*(int *)data = tp->t_pgrp->pg_id;
1701 		else
1702 			*(int *)data = NO_PID;
1703 		return (0);
1704 	case TIOCGSID:
1705 		if (!tty_is_ctty(tp, td->td_proc))
1706 			return (ENOTTY);
1707 
1708 		MPASS(tp->t_session);
1709 		*(int *)data = tp->t_session->s_sid;
1710 		return (0);
1711 	case TIOCSCTTY: {
1712 		struct proc *p = td->td_proc;
1713 
1714 		/* XXX: This looks awful. */
1715 		tty_unlock(tp);
1716 		sx_xlock(&proctree_lock);
1717 		tty_lock(tp);
1718 
1719 		if (!SESS_LEADER(p)) {
1720 			/* Only the session leader may do this. */
1721 			sx_xunlock(&proctree_lock);
1722 			return (EPERM);
1723 		}
1724 
1725 		if (tp->t_session != NULL && tp->t_session == p->p_session) {
1726 			/* This is already our controlling TTY. */
1727 			sx_xunlock(&proctree_lock);
1728 			return (0);
1729 		}
1730 
1731 		if (p->p_session->s_ttyp != NULL ||
1732 		    (tp->t_session != NULL && tp->t_session->s_ttyvp != NULL &&
1733 		    tp->t_session->s_ttyvp->v_type != VBAD)) {
1734 			/*
1735 			 * There is already a relation between a TTY and
1736 			 * a session, or the caller is not the session
1737 			 * leader.
1738 			 *
1739 			 * Allow the TTY to be stolen when the vnode is
1740 			 * invalid, but the reference to the TTY is
1741 			 * still active.  This allows immediate reuse of
1742 			 * TTYs of which the session leader has been
1743 			 * killed or the TTY revoked.
1744 			 */
1745 			sx_xunlock(&proctree_lock);
1746 			return (EPERM);
1747 		}
1748 
1749 		/* Connect the session to the TTY. */
1750 		tp->t_session = p->p_session;
1751 		tp->t_session->s_ttyp = tp;
1752 		tp->t_sessioncnt++;
1753 		sx_xunlock(&proctree_lock);
1754 
1755 		/* Assign foreground process group. */
1756 		tp->t_pgrp = p->p_pgrp;
1757 		PROC_LOCK(p);
1758 		p->p_flag |= P_CONTROLT;
1759 		PROC_UNLOCK(p);
1760 
1761 		return (0);
1762 	}
1763 	case TIOCSPGRP: {
1764 		struct pgrp *pg;
1765 
1766 		/*
1767 		 * XXX: Temporarily unlock the TTY to locate the process
1768 		 * group. This code would be lot nicer if we would ever
1769 		 * decompose proctree_lock.
1770 		 */
1771 		tty_unlock(tp);
1772 		sx_slock(&proctree_lock);
1773 		pg = pgfind(*(int *)data);
1774 		if (pg != NULL)
1775 			PGRP_UNLOCK(pg);
1776 		if (pg == NULL || pg->pg_session != td->td_proc->p_session) {
1777 			sx_sunlock(&proctree_lock);
1778 			tty_lock(tp);
1779 			return (EPERM);
1780 		}
1781 		tty_lock(tp);
1782 
1783 		/*
1784 		 * Determine if this TTY is the controlling TTY after
1785 		 * relocking the TTY.
1786 		 */
1787 		if (!tty_is_ctty(tp, td->td_proc)) {
1788 			sx_sunlock(&proctree_lock);
1789 			return (ENOTTY);
1790 		}
1791 		tp->t_pgrp = pg;
1792 		sx_sunlock(&proctree_lock);
1793 
1794 		/* Wake up the background process groups. */
1795 		cv_broadcast(&tp->t_bgwait);
1796 		return (0);
1797 	}
1798 	case TIOCFLUSH: {
1799 		int flags = *(int *)data;
1800 
1801 		if (flags == 0)
1802 			flags = (FREAD|FWRITE);
1803 		else
1804 			flags &= (FREAD|FWRITE);
1805 		tty_flush(tp, flags);
1806 		return (0);
1807 	}
1808 	case TIOCDRAIN:
1809 		/* Drain TTY output. */
1810 		return tty_drain(tp, 0);
1811 	case TIOCGDRAINWAIT:
1812 		*(int *)data = tp->t_drainwait;
1813 		return (0);
1814 	case TIOCSDRAINWAIT:
1815 		error = priv_check(td, PRIV_TTY_DRAINWAIT);
1816 		if (error == 0)
1817 			tp->t_drainwait = *(int *)data;
1818 		return (error);
1819 	case TIOCCONS:
1820 		/* Set terminal as console TTY. */
1821 		if (*(int *)data) {
1822 			error = priv_check(td, PRIV_TTY_CONSOLE);
1823 			if (error)
1824 				return (error);
1825 
1826 			/*
1827 			 * XXX: constty should really need to be locked!
1828 			 * XXX: allow disconnected constty's to be stolen!
1829 			 */
1830 
1831 			if (constty == tp)
1832 				return (0);
1833 			if (constty != NULL)
1834 				return (EBUSY);
1835 
1836 			tty_unlock(tp);
1837 			constty_set(tp);
1838 			tty_lock(tp);
1839 		} else if (constty == tp) {
1840 			constty_clear();
1841 		}
1842 		return (0);
1843 	case TIOCGWINSZ:
1844 		/* Obtain window size. */
1845 		*(struct winsize*)data = tp->t_winsize;
1846 		return (0);
1847 	case TIOCSWINSZ:
1848 		/* Set window size. */
1849 		tty_set_winsize(tp, data);
1850 		return (0);
1851 	case TIOCEXCL:
1852 		tp->t_flags |= TF_EXCLUDE;
1853 		return (0);
1854 	case TIOCNXCL:
1855 		tp->t_flags &= ~TF_EXCLUDE;
1856 		return (0);
1857 	case TIOCSTOP:
1858 		tp->t_flags |= TF_STOPPED;
1859 		ttydevsw_pktnotify(tp, TIOCPKT_STOP);
1860 		return (0);
1861 	case TIOCSTART:
1862 		tp->t_flags &= ~TF_STOPPED;
1863 		ttydevsw_outwakeup(tp);
1864 		ttydevsw_pktnotify(tp, TIOCPKT_START);
1865 		return (0);
1866 	case TIOCSTAT:
1867 		tty_info(tp);
1868 		return (0);
1869 	case TIOCSTI:
1870 		if ((fflag & FREAD) == 0 && priv_check(td, PRIV_TTY_STI))
1871 			return (EPERM);
1872 		if (!tty_is_ctty(tp, td->td_proc) &&
1873 		    priv_check(td, PRIV_TTY_STI))
1874 			return (EACCES);
1875 		ttydisc_rint(tp, *(char *)data, 0);
1876 		ttydisc_rint_done(tp);
1877 		return (0);
1878 	}
1879 
1880 #ifdef COMPAT_43TTY
1881 	return tty_ioctl_compat(tp, cmd, data, fflag, td);
1882 #else /* !COMPAT_43TTY */
1883 	return (ENOIOCTL);
1884 #endif /* COMPAT_43TTY */
1885 }
1886 
1887 int
1888 tty_ioctl(struct tty *tp, u_long cmd, void *data, int fflag, struct thread *td)
1889 {
1890 	int error;
1891 
1892 	tty_lock_assert(tp, MA_OWNED);
1893 
1894 	if (tty_gone(tp))
1895 		return (ENXIO);
1896 
1897 	error = ttydevsw_ioctl(tp, cmd, data, td);
1898 	if (error == ENOIOCTL)
1899 		error = tty_generic_ioctl(tp, cmd, data, fflag, td);
1900 
1901 	return (error);
1902 }
1903 
1904 dev_t
1905 tty_udev(struct tty *tp)
1906 {
1907 
1908 	if (tp->t_dev)
1909 		return (dev2udev(tp->t_dev));
1910 	else
1911 		return (NODEV);
1912 }
1913 
1914 int
1915 tty_checkoutq(struct tty *tp)
1916 {
1917 
1918 	/* 256 bytes should be enough to print a log message. */
1919 	return (ttyoutq_bytesleft(&tp->t_outq) >= 256);
1920 }
1921 
1922 void
1923 tty_hiwat_in_block(struct tty *tp)
1924 {
1925 
1926 	if ((tp->t_flags & TF_HIWAT_IN) == 0 &&
1927 	    tp->t_termios.c_iflag & IXOFF &&
1928 	    tp->t_termios.c_cc[VSTOP] != _POSIX_VDISABLE) {
1929 		/*
1930 		 * Input flow control. Only enter the high watermark when we
1931 		 * can successfully store the VSTOP character.
1932 		 */
1933 		if (ttyoutq_write_nofrag(&tp->t_outq,
1934 		    &tp->t_termios.c_cc[VSTOP], 1) == 0)
1935 			tp->t_flags |= TF_HIWAT_IN;
1936 	} else {
1937 		/* No input flow control. */
1938 		tp->t_flags |= TF_HIWAT_IN;
1939 	}
1940 }
1941 
1942 void
1943 tty_hiwat_in_unblock(struct tty *tp)
1944 {
1945 
1946 	if (tp->t_flags & TF_HIWAT_IN &&
1947 	    tp->t_termios.c_iflag & IXOFF &&
1948 	    tp->t_termios.c_cc[VSTART] != _POSIX_VDISABLE) {
1949 		/*
1950 		 * Input flow control. Only leave the high watermark when we
1951 		 * can successfully store the VSTART character.
1952 		 */
1953 		if (ttyoutq_write_nofrag(&tp->t_outq,
1954 		    &tp->t_termios.c_cc[VSTART], 1) == 0)
1955 			tp->t_flags &= ~TF_HIWAT_IN;
1956 	} else {
1957 		/* No input flow control. */
1958 		tp->t_flags &= ~TF_HIWAT_IN;
1959 	}
1960 
1961 	if (!tty_gone(tp))
1962 		ttydevsw_inwakeup(tp);
1963 }
1964 
1965 /*
1966  * TTY hooks interface.
1967  */
1968 
1969 static int
1970 ttyhook_defrint(struct tty *tp, char c, int flags)
1971 {
1972 
1973 	if (ttyhook_rint_bypass(tp, &c, 1) != 1)
1974 		return (-1);
1975 
1976 	return (0);
1977 }
1978 
1979 int
1980 ttyhook_register(struct tty **rtp, struct proc *p, int fd, struct ttyhook *th,
1981     void *softc)
1982 {
1983 	struct tty *tp;
1984 	struct file *fp;
1985 	struct cdev *dev;
1986 	struct cdevsw *cdp;
1987 	struct filedesc *fdp;
1988 	cap_rights_t rights;
1989 	int error, ref;
1990 
1991 	/* Validate the file descriptor. */
1992 	fdp = p->p_fd;
1993 	error = fget_unlocked(fdp, fd, cap_rights_init(&rights, CAP_TTYHOOK),
1994 	    &fp, NULL);
1995 	if (error != 0)
1996 		return (error);
1997 	if (fp->f_ops == &badfileops) {
1998 		error = EBADF;
1999 		goto done1;
2000 	}
2001 
2002 	/*
2003 	 * Make sure the vnode is bound to a character device.
2004 	 * Unlocked check for the vnode type is ok there, because we
2005 	 * only shall prevent calling devvn_refthread on the file that
2006 	 * never has been opened over a character device.
2007 	 */
2008 	if (fp->f_type != DTYPE_VNODE || fp->f_vnode->v_type != VCHR) {
2009 		error = EINVAL;
2010 		goto done1;
2011 	}
2012 
2013 	/* Make sure it is a TTY. */
2014 	cdp = devvn_refthread(fp->f_vnode, &dev, &ref);
2015 	if (cdp == NULL) {
2016 		error = ENXIO;
2017 		goto done1;
2018 	}
2019 	if (dev != fp->f_data) {
2020 		error = ENXIO;
2021 		goto done2;
2022 	}
2023 	if (cdp != &ttydev_cdevsw) {
2024 		error = ENOTTY;
2025 		goto done2;
2026 	}
2027 	tp = dev->si_drv1;
2028 
2029 	/* Try to attach the hook to the TTY. */
2030 	error = EBUSY;
2031 	tty_lock(tp);
2032 	MPASS((tp->t_hook == NULL) == ((tp->t_flags & TF_HOOK) == 0));
2033 	if (tp->t_flags & TF_HOOK)
2034 		goto done3;
2035 
2036 	tp->t_flags |= TF_HOOK;
2037 	tp->t_hook = th;
2038 	tp->t_hooksoftc = softc;
2039 	*rtp = tp;
2040 	error = 0;
2041 
2042 	/* Maybe we can switch into bypass mode now. */
2043 	ttydisc_optimize(tp);
2044 
2045 	/* Silently convert rint() calls to rint_bypass() when possible. */
2046 	if (!ttyhook_hashook(tp, rint) && ttyhook_hashook(tp, rint_bypass))
2047 		th->th_rint = ttyhook_defrint;
2048 
2049 done3:	tty_unlock(tp);
2050 done2:	dev_relthread(dev, ref);
2051 done1:	fdrop(fp, curthread);
2052 	return (error);
2053 }
2054 
2055 void
2056 ttyhook_unregister(struct tty *tp)
2057 {
2058 
2059 	tty_lock_assert(tp, MA_OWNED);
2060 	MPASS(tp->t_flags & TF_HOOK);
2061 
2062 	/* Disconnect the hook. */
2063 	tp->t_flags &= ~TF_HOOK;
2064 	tp->t_hook = NULL;
2065 
2066 	/* Maybe we need to leave bypass mode. */
2067 	ttydisc_optimize(tp);
2068 
2069 	/* Maybe deallocate the TTY as well. */
2070 	tty_rel_free(tp);
2071 }
2072 
2073 /*
2074  * /dev/console handling.
2075  */
2076 
2077 static int
2078 ttyconsdev_open(struct cdev *dev, int oflags, int devtype, struct thread *td)
2079 {
2080 	struct tty *tp;
2081 
2082 	/* System has no console device. */
2083 	if (dev_console_filename == NULL)
2084 		return (ENXIO);
2085 
2086 	/* Look up corresponding TTY by device name. */
2087 	sx_slock(&tty_list_sx);
2088 	TAILQ_FOREACH(tp, &tty_list, t_list) {
2089 		if (strcmp(dev_console_filename, tty_devname(tp)) == 0) {
2090 			dev_console->si_drv1 = tp;
2091 			break;
2092 		}
2093 	}
2094 	sx_sunlock(&tty_list_sx);
2095 
2096 	/* System console has no TTY associated. */
2097 	if (dev_console->si_drv1 == NULL)
2098 		return (ENXIO);
2099 
2100 	return (ttydev_open(dev, oflags, devtype, td));
2101 }
2102 
2103 static int
2104 ttyconsdev_write(struct cdev *dev, struct uio *uio, int ioflag)
2105 {
2106 
2107 	log_console(uio);
2108 
2109 	return (ttydev_write(dev, uio, ioflag));
2110 }
2111 
2112 /*
2113  * /dev/console is a little different than normal TTY's.  When opened,
2114  * it determines which TTY to use.  When data gets written to it, it
2115  * will be logged in the kernel message buffer.
2116  */
2117 static struct cdevsw ttyconsdev_cdevsw = {
2118 	.d_version	= D_VERSION,
2119 	.d_open		= ttyconsdev_open,
2120 	.d_close	= ttydev_close,
2121 	.d_read		= ttydev_read,
2122 	.d_write	= ttyconsdev_write,
2123 	.d_ioctl	= ttydev_ioctl,
2124 	.d_kqfilter	= ttydev_kqfilter,
2125 	.d_poll		= ttydev_poll,
2126 	.d_mmap		= ttydev_mmap,
2127 	.d_name		= "ttyconsdev",
2128 	.d_flags	= D_TTY,
2129 };
2130 
2131 static void
2132 ttyconsdev_init(void *unused __unused)
2133 {
2134 
2135 	dev_console = make_dev_credf(MAKEDEV_ETERNAL, &ttyconsdev_cdevsw, 0,
2136 	    NULL, UID_ROOT, GID_WHEEL, 0600, "console");
2137 }
2138 
2139 SYSINIT(tty, SI_SUB_DRIVERS, SI_ORDER_FIRST, ttyconsdev_init, NULL);
2140 
2141 void
2142 ttyconsdev_select(const char *name)
2143 {
2144 
2145 	dev_console_filename = name;
2146 }
2147 
2148 /*
2149  * Debugging routines.
2150  */
2151 
2152 #include "opt_ddb.h"
2153 #ifdef DDB
2154 #include <ddb/ddb.h>
2155 #include <ddb/db_sym.h>
2156 
2157 static const struct {
2158 	int flag;
2159 	char val;
2160 } ttystates[] = {
2161 #if 0
2162 	{ TF_NOPREFIX,		'N' },
2163 #endif
2164 	{ TF_INITLOCK,		'I' },
2165 	{ TF_CALLOUT,		'C' },
2166 
2167 	/* Keep these together -> 'Oi' and 'Oo'. */
2168 	{ TF_OPENED,		'O' },
2169 	{ TF_OPENED_IN,		'i' },
2170 	{ TF_OPENED_OUT,	'o' },
2171 	{ TF_OPENED_CONS,	'c' },
2172 
2173 	{ TF_GONE,		'G' },
2174 	{ TF_OPENCLOSE,		'B' },
2175 	{ TF_ASYNC,		'Y' },
2176 	{ TF_LITERAL,		'L' },
2177 
2178 	/* Keep these together -> 'Hi' and 'Ho'. */
2179 	{ TF_HIWAT,		'H' },
2180 	{ TF_HIWAT_IN,		'i' },
2181 	{ TF_HIWAT_OUT,		'o' },
2182 
2183 	{ TF_STOPPED,		'S' },
2184 	{ TF_EXCLUDE,		'X' },
2185 	{ TF_BYPASS,		'l' },
2186 	{ TF_ZOMBIE,		'Z' },
2187 	{ TF_HOOK,		's' },
2188 
2189 	/* Keep these together -> 'bi' and 'bo'. */
2190 	{ TF_BUSY,		'b' },
2191 	{ TF_BUSY_IN,		'i' },
2192 	{ TF_BUSY_OUT,		'o' },
2193 
2194 	{ 0,			'\0'},
2195 };
2196 
2197 #define	TTY_FLAG_BITS \
2198 	"\20\1NOPREFIX\2INITLOCK\3CALLOUT\4OPENED_IN" \
2199 	"\5OPENED_OUT\6OPENED_CONS\7GONE\10OPENCLOSE" \
2200 	"\11ASYNC\12LITERAL\13HIWAT_IN\14HIWAT_OUT" \
2201 	"\15STOPPED\16EXCLUDE\17BYPASS\20ZOMBIE" \
2202 	"\21HOOK\22BUSY_IN\23BUSY_OUT"
2203 
2204 #define DB_PRINTSYM(name, addr) \
2205 	db_printf("%s  " #name ": ", sep); \
2206 	db_printsym((db_addr_t) addr, DB_STGY_ANY); \
2207 	db_printf("\n");
2208 
2209 static void
2210 _db_show_devsw(const char *sep, const struct ttydevsw *tsw)
2211 {
2212 
2213 	db_printf("%sdevsw: ", sep);
2214 	db_printsym((db_addr_t)tsw, DB_STGY_ANY);
2215 	db_printf(" (%p)\n", tsw);
2216 	DB_PRINTSYM(open, tsw->tsw_open);
2217 	DB_PRINTSYM(close, tsw->tsw_close);
2218 	DB_PRINTSYM(outwakeup, tsw->tsw_outwakeup);
2219 	DB_PRINTSYM(inwakeup, tsw->tsw_inwakeup);
2220 	DB_PRINTSYM(ioctl, tsw->tsw_ioctl);
2221 	DB_PRINTSYM(param, tsw->tsw_param);
2222 	DB_PRINTSYM(modem, tsw->tsw_modem);
2223 	DB_PRINTSYM(mmap, tsw->tsw_mmap);
2224 	DB_PRINTSYM(pktnotify, tsw->tsw_pktnotify);
2225 	DB_PRINTSYM(free, tsw->tsw_free);
2226 }
2227 
2228 static void
2229 _db_show_hooks(const char *sep, const struct ttyhook *th)
2230 {
2231 
2232 	db_printf("%shook: ", sep);
2233 	db_printsym((db_addr_t)th, DB_STGY_ANY);
2234 	db_printf(" (%p)\n", th);
2235 	if (th == NULL)
2236 		return;
2237 	DB_PRINTSYM(rint, th->th_rint);
2238 	DB_PRINTSYM(rint_bypass, th->th_rint_bypass);
2239 	DB_PRINTSYM(rint_done, th->th_rint_done);
2240 	DB_PRINTSYM(rint_poll, th->th_rint_poll);
2241 	DB_PRINTSYM(getc_inject, th->th_getc_inject);
2242 	DB_PRINTSYM(getc_capture, th->th_getc_capture);
2243 	DB_PRINTSYM(getc_poll, th->th_getc_poll);
2244 	DB_PRINTSYM(close, th->th_close);
2245 }
2246 
2247 static void
2248 _db_show_termios(const char *name, const struct termios *t)
2249 {
2250 
2251 	db_printf("%s: iflag 0x%x oflag 0x%x cflag 0x%x "
2252 	    "lflag 0x%x ispeed %u ospeed %u\n", name,
2253 	    t->c_iflag, t->c_oflag, t->c_cflag, t->c_lflag,
2254 	    t->c_ispeed, t->c_ospeed);
2255 }
2256 
2257 /* DDB command to show TTY statistics. */
2258 DB_SHOW_COMMAND(tty, db_show_tty)
2259 {
2260 	struct tty *tp;
2261 
2262 	if (!have_addr) {
2263 		db_printf("usage: show tty <addr>\n");
2264 		return;
2265 	}
2266 	tp = (struct tty *)addr;
2267 
2268 	db_printf("%p: %s\n", tp, tty_devname(tp));
2269 	db_printf("\tmtx: %p\n", tp->t_mtx);
2270 	db_printf("\tflags: 0x%b\n", tp->t_flags, TTY_FLAG_BITS);
2271 	db_printf("\trevokecnt: %u\n", tp->t_revokecnt);
2272 
2273 	/* Buffering mechanisms. */
2274 	db_printf("\tinq: %p begin %u linestart %u reprint %u end %u "
2275 	    "nblocks %u quota %u\n", &tp->t_inq, tp->t_inq.ti_begin,
2276 	    tp->t_inq.ti_linestart, tp->t_inq.ti_reprint, tp->t_inq.ti_end,
2277 	    tp->t_inq.ti_nblocks, tp->t_inq.ti_quota);
2278 	db_printf("\toutq: %p begin %u end %u nblocks %u quota %u\n",
2279 	    &tp->t_outq, tp->t_outq.to_begin, tp->t_outq.to_end,
2280 	    tp->t_outq.to_nblocks, tp->t_outq.to_quota);
2281 	db_printf("\tinlow: %zu\n", tp->t_inlow);
2282 	db_printf("\toutlow: %zu\n", tp->t_outlow);
2283 	_db_show_termios("\ttermios", &tp->t_termios);
2284 	db_printf("\twinsize: row %u col %u xpixel %u ypixel %u\n",
2285 	    tp->t_winsize.ws_row, tp->t_winsize.ws_col,
2286 	    tp->t_winsize.ws_xpixel, tp->t_winsize.ws_ypixel);
2287 	db_printf("\tcolumn: %u\n", tp->t_column);
2288 	db_printf("\twritepos: %u\n", tp->t_writepos);
2289 	db_printf("\tcompatflags: 0x%x\n", tp->t_compatflags);
2290 
2291 	/* Init/lock-state devices. */
2292 	_db_show_termios("\ttermios_init_in", &tp->t_termios_init_in);
2293 	_db_show_termios("\ttermios_init_out", &tp->t_termios_init_out);
2294 	_db_show_termios("\ttermios_lock_in", &tp->t_termios_lock_in);
2295 	_db_show_termios("\ttermios_lock_out", &tp->t_termios_lock_out);
2296 
2297 	/* Hooks */
2298 	_db_show_devsw("\t", tp->t_devsw);
2299 	_db_show_hooks("\t", tp->t_hook);
2300 
2301 	/* Process info. */
2302 	db_printf("\tpgrp: %p gid %d jobc %d\n", tp->t_pgrp,
2303 	    tp->t_pgrp ? tp->t_pgrp->pg_id : 0,
2304 	    tp->t_pgrp ? tp->t_pgrp->pg_jobc : 0);
2305 	db_printf("\tsession: %p", tp->t_session);
2306 	if (tp->t_session != NULL)
2307 	    db_printf(" count %u leader %p tty %p sid %d login %s",
2308 		tp->t_session->s_count, tp->t_session->s_leader,
2309 		tp->t_session->s_ttyp, tp->t_session->s_sid,
2310 		tp->t_session->s_login);
2311 	db_printf("\n");
2312 	db_printf("\tsessioncnt: %u\n", tp->t_sessioncnt);
2313 	db_printf("\tdevswsoftc: %p\n", tp->t_devswsoftc);
2314 	db_printf("\thooksoftc: %p\n", tp->t_hooksoftc);
2315 	db_printf("\tdev: %p\n", tp->t_dev);
2316 }
2317 
2318 /* DDB command to list TTYs. */
2319 DB_SHOW_ALL_COMMAND(ttys, db_show_all_ttys)
2320 {
2321 	struct tty *tp;
2322 	size_t isiz, osiz;
2323 	int i, j;
2324 
2325 	/* Make the output look like `pstat -t'. */
2326 	db_printf("PTR        ");
2327 #if defined(__LP64__)
2328 	db_printf("        ");
2329 #endif
2330 	db_printf("      LINE   INQ  CAN  LIN  LOW  OUTQ  USE  LOW   "
2331 	    "COL  SESS  PGID STATE\n");
2332 
2333 	TAILQ_FOREACH(tp, &tty_list, t_list) {
2334 		isiz = tp->t_inq.ti_nblocks * TTYINQ_DATASIZE;
2335 		osiz = tp->t_outq.to_nblocks * TTYOUTQ_DATASIZE;
2336 
2337 		db_printf("%p %10s %5zu %4u %4u %4zu %5zu %4u %4zu %5u %5d "
2338 		    "%5d ", tp, tty_devname(tp), isiz,
2339 		    tp->t_inq.ti_linestart - tp->t_inq.ti_begin,
2340 		    tp->t_inq.ti_end - tp->t_inq.ti_linestart,
2341 		    isiz - tp->t_inlow, osiz,
2342 		    tp->t_outq.to_end - tp->t_outq.to_begin,
2343 		    osiz - tp->t_outlow, MIN(tp->t_column, 99999),
2344 		    tp->t_session ? tp->t_session->s_sid : 0,
2345 		    tp->t_pgrp ? tp->t_pgrp->pg_id : 0);
2346 
2347 		/* Flag bits. */
2348 		for (i = j = 0; ttystates[i].flag; i++)
2349 			if (tp->t_flags & ttystates[i].flag) {
2350 				db_printf("%c", ttystates[i].val);
2351 				j++;
2352 			}
2353 		if (j == 0)
2354 			db_printf("-");
2355 		db_printf("\n");
2356 	}
2357 }
2358 #endif /* DDB */
2359