xref: /freebsd/sys/kern/tty_pts.c (revision 0957b409)
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 /* Add compatibility bits for FreeBSD. */
36 #define PTS_COMPAT
37 /* Add pty(4) compat bits. */
38 #define PTS_EXTERNAL
39 /* Add bits to make Linux binaries work. */
40 #define PTS_LINUX
41 
42 #include <sys/param.h>
43 #include <sys/lock.h>
44 #include <sys/condvar.h>
45 #include <sys/conf.h>
46 #include <sys/fcntl.h>
47 #include <sys/file.h>
48 #include <sys/filedesc.h>
49 #include <sys/filio.h>
50 #include <sys/kernel.h>
51 #include <sys/limits.h>
52 #include <sys/malloc.h>
53 #include <sys/poll.h>
54 #include <sys/proc.h>
55 #include <sys/racct.h>
56 #include <sys/resourcevar.h>
57 #include <sys/serial.h>
58 #include <sys/stat.h>
59 #include <sys/syscall.h>
60 #include <sys/syscallsubr.h>
61 #include <sys/sysctl.h>
62 #include <sys/sysent.h>
63 #include <sys/sysproto.h>
64 #include <sys/systm.h>
65 #include <sys/tty.h>
66 #include <sys/ttycom.h>
67 #include <sys/uio.h>
68 #include <sys/user.h>
69 
70 #include <machine/stdarg.h>
71 
72 /*
73  * Our utmp(5) format is limited to 8-byte TTY line names.  This means
74  * we can at most allocate 1000 pseudo-terminals ("pts/999").  Allow
75  * users to increase this number, assuming they have manually increased
76  * UT_LINESIZE.
77  */
78 static struct unrhdr *pts_pool;
79 
80 static MALLOC_DEFINE(M_PTS, "pts", "pseudo tty device");
81 
82 /*
83  * Per-PTS structure.
84  *
85  * List of locks
86  * (t)	locked by tty_lock()
87  * (c)	const until freeing
88  */
89 struct pts_softc {
90 	int		pts_unit;	/* (c) Device unit number. */
91 	unsigned int	pts_flags;	/* (t) Device flags. */
92 #define	PTS_PKT		0x1	/* Packet mode. */
93 #define	PTS_FINISHED	0x2	/* Return errors on read()/write(). */
94 	char		pts_pkt;	/* (t) Unread packet mode data. */
95 
96 	struct cv	pts_inwait;	/* (t) Blocking write() on master. */
97 	struct selinfo	pts_inpoll;	/* (t) Select queue for write(). */
98 	struct cv	pts_outwait;	/* (t) Blocking read() on master. */
99 	struct selinfo	pts_outpoll;	/* (t) Select queue for read(). */
100 
101 #ifdef PTS_EXTERNAL
102 	struct cdev	*pts_cdev;	/* (c) Master device node. */
103 #endif /* PTS_EXTERNAL */
104 
105 	struct ucred	*pts_cred;	/* (c) Resource limit. */
106 };
107 
108 /*
109  * Controller-side file operations.
110  */
111 
112 static int
113 ptsdev_read(struct file *fp, struct uio *uio, struct ucred *active_cred,
114     int flags, struct thread *td)
115 {
116 	struct tty *tp = fp->f_data;
117 	struct pts_softc *psc = tty_softc(tp);
118 	int error = 0;
119 	char pkt;
120 
121 	if (uio->uio_resid == 0)
122 		return (0);
123 
124 	tty_lock(tp);
125 
126 	for (;;) {
127 		/*
128 		 * Implement packet mode. When packet mode is turned on,
129 		 * the first byte contains a bitmask of events that
130 		 * occurred (start, stop, flush, window size, etc).
131 		 */
132 		if (psc->pts_flags & PTS_PKT && psc->pts_pkt) {
133 			pkt = psc->pts_pkt;
134 			psc->pts_pkt = 0;
135 			tty_unlock(tp);
136 
137 			error = ureadc(pkt, uio);
138 			return (error);
139 		}
140 
141 		/*
142 		 * Transmit regular data.
143 		 *
144 		 * XXX: We shouldn't use ttydisc_getc_poll()! Even
145 		 * though in this implementation, there is likely going
146 		 * to be data, we should just call ttydisc_getc_uio()
147 		 * and use its return value to sleep.
148 		 */
149 		if (ttydisc_getc_poll(tp)) {
150 			if (psc->pts_flags & PTS_PKT) {
151 				/*
152 				 * XXX: Small race. Fortunately PTY
153 				 * consumers aren't multithreaded.
154 				 */
155 
156 				tty_unlock(tp);
157 				error = ureadc(TIOCPKT_DATA, uio);
158 				if (error)
159 					return (error);
160 				tty_lock(tp);
161 			}
162 
163 			error = ttydisc_getc_uio(tp, uio);
164 			break;
165 		}
166 
167 		/* Maybe the device isn't used anyway. */
168 		if (psc->pts_flags & PTS_FINISHED)
169 			break;
170 
171 		/* Wait for more data. */
172 		if (fp->f_flag & O_NONBLOCK) {
173 			error = EWOULDBLOCK;
174 			break;
175 		}
176 		error = cv_wait_sig(&psc->pts_outwait, tp->t_mtx);
177 		if (error != 0)
178 			break;
179 	}
180 
181 	tty_unlock(tp);
182 
183 	return (error);
184 }
185 
186 static int
187 ptsdev_write(struct file *fp, struct uio *uio, struct ucred *active_cred,
188     int flags, struct thread *td)
189 {
190 	struct tty *tp = fp->f_data;
191 	struct pts_softc *psc = tty_softc(tp);
192 	char ib[256], *ibstart;
193 	size_t iblen, rintlen;
194 	int error = 0;
195 
196 	if (uio->uio_resid == 0)
197 		return (0);
198 
199 	for (;;) {
200 		ibstart = ib;
201 		iblen = MIN(uio->uio_resid, sizeof ib);
202 		error = uiomove(ib, iblen, uio);
203 
204 		tty_lock(tp);
205 		if (error != 0) {
206 			iblen = 0;
207 			goto done;
208 		}
209 
210 		/*
211 		 * When possible, avoid the slow path. rint_bypass()
212 		 * copies all input to the input queue at once.
213 		 */
214 		MPASS(iblen > 0);
215 		do {
216 			rintlen = ttydisc_rint_simple(tp, ibstart, iblen);
217 			ibstart += rintlen;
218 			iblen -= rintlen;
219 			if (iblen == 0) {
220 				/* All data written. */
221 				break;
222 			}
223 
224 			/* Maybe the device isn't used anyway. */
225 			if (psc->pts_flags & PTS_FINISHED) {
226 				error = EIO;
227 				goto done;
228 			}
229 
230 			/* Wait for more data. */
231 			if (fp->f_flag & O_NONBLOCK) {
232 				error = EWOULDBLOCK;
233 				goto done;
234 			}
235 
236 			/* Wake up users on the slave side. */
237 			ttydisc_rint_done(tp);
238 			error = cv_wait_sig(&psc->pts_inwait, tp->t_mtx);
239 			if (error != 0)
240 				goto done;
241 		} while (iblen > 0);
242 
243 		if (uio->uio_resid == 0)
244 			break;
245 		tty_unlock(tp);
246 	}
247 
248 done:	ttydisc_rint_done(tp);
249 	tty_unlock(tp);
250 
251 	/*
252 	 * Don't account for the part of the buffer that we couldn't
253 	 * pass to the TTY.
254 	 */
255 	uio->uio_resid += iblen;
256 	return (error);
257 }
258 
259 static int
260 ptsdev_ioctl(struct file *fp, u_long cmd, void *data,
261     struct ucred *active_cred, struct thread *td)
262 {
263 	struct tty *tp = fp->f_data;
264 	struct pts_softc *psc = tty_softc(tp);
265 	int error = 0, sig;
266 
267 	switch (cmd) {
268 	case FIODTYPE:
269 		*(int *)data = D_TTY;
270 		return (0);
271 	case FIONBIO:
272 		/* This device supports non-blocking operation. */
273 		return (0);
274 	case FIONREAD:
275 		tty_lock(tp);
276 		if (psc->pts_flags & PTS_FINISHED) {
277 			/* Force read() to be called. */
278 			*(int *)data = 1;
279 		} else {
280 			*(int *)data = ttydisc_getc_poll(tp);
281 		}
282 		tty_unlock(tp);
283 		return (0);
284 	case FIODGNAME:
285 #ifdef COMPAT_FREEBSD32
286 	case FIODGNAME_32:
287 #endif
288 	{
289 		struct fiodgname_arg *fgn;
290 		const char *p;
291 		int i;
292 
293 		/* Reverse device name lookups, for ptsname() and ttyname(). */
294 		fgn = data;
295 		p = tty_devname(tp);
296 		i = strlen(p) + 1;
297 		if (i > fgn->len)
298 			return (EINVAL);
299 		return (copyout(p, fiodgname_buf_get_ptr(fgn, cmd), i));
300 	}
301 
302 	/*
303 	 * We need to implement TIOCGPGRP and TIOCGSID here again. When
304 	 * called on the pseudo-terminal master, it should not check if
305 	 * the terminal is the foreground terminal of the calling
306 	 * process.
307 	 *
308 	 * TIOCGETA is also implemented here. Various Linux PTY routines
309 	 * often call isatty(), which is implemented by tcgetattr().
310 	 */
311 #ifdef PTS_LINUX
312 	case TIOCGETA:
313 		/* Obtain terminal flags through tcgetattr(). */
314 		tty_lock(tp);
315 		*(struct termios*)data = tp->t_termios;
316 		tty_unlock(tp);
317 		return (0);
318 #endif /* PTS_LINUX */
319 	case TIOCSETAF:
320 	case TIOCSETAW:
321 		/*
322 		 * We must make sure we turn tcsetattr() calls of TCSAFLUSH and
323 		 * TCSADRAIN into something different. If an application would
324 		 * call TCSAFLUSH or TCSADRAIN on the master descriptor, it may
325 		 * deadlock waiting for all data to be read.
326 		 */
327 		cmd = TIOCSETA;
328 		break;
329 #if defined(PTS_COMPAT) || defined(PTS_LINUX)
330 	case TIOCGPTN:
331 		/*
332 		 * Get the device unit number.
333 		 */
334 		if (psc->pts_unit < 0)
335 			return (ENOTTY);
336 		*(unsigned int *)data = psc->pts_unit;
337 		return (0);
338 #endif /* PTS_COMPAT || PTS_LINUX */
339 	case TIOCGPGRP:
340 		/* Get the foreground process group ID. */
341 		tty_lock(tp);
342 		if (tp->t_pgrp != NULL)
343 			*(int *)data = tp->t_pgrp->pg_id;
344 		else
345 			*(int *)data = NO_PID;
346 		tty_unlock(tp);
347 		return (0);
348 	case TIOCGSID:
349 		/* Get the session leader process ID. */
350 		tty_lock(tp);
351 		if (tp->t_session == NULL)
352 			error = ENOTTY;
353 		else
354 			*(int *)data = tp->t_session->s_sid;
355 		tty_unlock(tp);
356 		return (error);
357 	case TIOCPTMASTER:
358 		/* Yes, we are a pseudo-terminal master. */
359 		return (0);
360 	case TIOCSIG:
361 		/* Signal the foreground process group. */
362 		sig = *(int *)data;
363 		if (sig < 1 || sig >= NSIG)
364 			return (EINVAL);
365 
366 		tty_lock(tp);
367 		tty_signal_pgrp(tp, sig);
368 		tty_unlock(tp);
369 		return (0);
370 	case TIOCPKT:
371 		/* Enable/disable packet mode. */
372 		tty_lock(tp);
373 		if (*(int *)data)
374 			psc->pts_flags |= PTS_PKT;
375 		else
376 			psc->pts_flags &= ~PTS_PKT;
377 		tty_unlock(tp);
378 		return (0);
379 	}
380 
381 	/* Just redirect this ioctl to the slave device. */
382 	tty_lock(tp);
383 	error = tty_ioctl(tp, cmd, data, fp->f_flag, td);
384 	tty_unlock(tp);
385 	if (error == ENOIOCTL)
386 		error = ENOTTY;
387 
388 	return (error);
389 }
390 
391 static int
392 ptsdev_poll(struct file *fp, int events, struct ucred *active_cred,
393     struct thread *td)
394 {
395 	struct tty *tp = fp->f_data;
396 	struct pts_softc *psc = tty_softc(tp);
397 	int revents = 0;
398 
399 	tty_lock(tp);
400 
401 	if (psc->pts_flags & PTS_FINISHED) {
402 		/* Slave device is not opened. */
403 		tty_unlock(tp);
404 		return ((events & (POLLIN|POLLRDNORM)) | POLLHUP);
405 	}
406 
407 	if (events & (POLLIN|POLLRDNORM)) {
408 		/* See if we can getc something. */
409 		if (ttydisc_getc_poll(tp) ||
410 		    (psc->pts_flags & PTS_PKT && psc->pts_pkt))
411 			revents |= events & (POLLIN|POLLRDNORM);
412 	}
413 	if (events & (POLLOUT|POLLWRNORM)) {
414 		/* See if we can rint something. */
415 		if (ttydisc_rint_poll(tp))
416 			revents |= events & (POLLOUT|POLLWRNORM);
417 	}
418 
419 	/*
420 	 * No need to check for POLLHUP here. This device cannot be used
421 	 * as a callout device, which means we always have a carrier,
422 	 * because the master is.
423 	 */
424 
425 	if (revents == 0) {
426 		/*
427 		 * This code might look misleading, but the naming of
428 		 * poll events on this side is the opposite of the slave
429 		 * device.
430 		 */
431 		if (events & (POLLIN|POLLRDNORM))
432 			selrecord(td, &psc->pts_outpoll);
433 		if (events & (POLLOUT|POLLWRNORM))
434 			selrecord(td, &psc->pts_inpoll);
435 	}
436 
437 	tty_unlock(tp);
438 
439 	return (revents);
440 }
441 
442 /*
443  * kqueue support.
444  */
445 
446 static void
447 pts_kqops_read_detach(struct knote *kn)
448 {
449 	struct file *fp = kn->kn_fp;
450 	struct tty *tp = fp->f_data;
451 	struct pts_softc *psc = tty_softc(tp);
452 
453 	knlist_remove(&psc->pts_outpoll.si_note, kn, 0);
454 }
455 
456 static int
457 pts_kqops_read_event(struct knote *kn, long hint)
458 {
459 	struct file *fp = kn->kn_fp;
460 	struct tty *tp = fp->f_data;
461 	struct pts_softc *psc = tty_softc(tp);
462 
463 	if (psc->pts_flags & PTS_FINISHED) {
464 		kn->kn_flags |= EV_EOF;
465 		return (1);
466 	} else {
467 		kn->kn_data = ttydisc_getc_poll(tp);
468 		return (kn->kn_data > 0);
469 	}
470 }
471 
472 static void
473 pts_kqops_write_detach(struct knote *kn)
474 {
475 	struct file *fp = kn->kn_fp;
476 	struct tty *tp = fp->f_data;
477 	struct pts_softc *psc = tty_softc(tp);
478 
479 	knlist_remove(&psc->pts_inpoll.si_note, kn, 0);
480 }
481 
482 static int
483 pts_kqops_write_event(struct knote *kn, long hint)
484 {
485 	struct file *fp = kn->kn_fp;
486 	struct tty *tp = fp->f_data;
487 	struct pts_softc *psc = tty_softc(tp);
488 
489 	if (psc->pts_flags & PTS_FINISHED) {
490 		kn->kn_flags |= EV_EOF;
491 		return (1);
492 	} else {
493 		kn->kn_data = ttydisc_rint_poll(tp);
494 		return (kn->kn_data > 0);
495 	}
496 }
497 
498 static struct filterops pts_kqops_read = {
499 	.f_isfd = 1,
500 	.f_detach = pts_kqops_read_detach,
501 	.f_event = pts_kqops_read_event,
502 };
503 static struct filterops pts_kqops_write = {
504 	.f_isfd = 1,
505 	.f_detach = pts_kqops_write_detach,
506 	.f_event = pts_kqops_write_event,
507 };
508 
509 static int
510 ptsdev_kqfilter(struct file *fp, struct knote *kn)
511 {
512 	struct tty *tp = fp->f_data;
513 	struct pts_softc *psc = tty_softc(tp);
514 	int error = 0;
515 
516 	tty_lock(tp);
517 
518 	switch (kn->kn_filter) {
519 	case EVFILT_READ:
520 		kn->kn_fop = &pts_kqops_read;
521 		knlist_add(&psc->pts_outpoll.si_note, kn, 1);
522 		break;
523 	case EVFILT_WRITE:
524 		kn->kn_fop = &pts_kqops_write;
525 		knlist_add(&psc->pts_inpoll.si_note, kn, 1);
526 		break;
527 	default:
528 		error = EINVAL;
529 		break;
530 	}
531 
532 	tty_unlock(tp);
533 	return (error);
534 }
535 
536 static int
537 ptsdev_stat(struct file *fp, struct stat *sb, struct ucred *active_cred,
538     struct thread *td)
539 {
540 	struct tty *tp = fp->f_data;
541 #ifdef PTS_EXTERNAL
542 	struct pts_softc *psc = tty_softc(tp);
543 #endif /* PTS_EXTERNAL */
544 	struct cdev *dev = tp->t_dev;
545 
546 	/*
547 	 * According to POSIX, we must implement an fstat(). This also
548 	 * makes this implementation compatible with Linux binaries,
549 	 * because Linux calls fstat() on the pseudo-terminal master to
550 	 * obtain st_rdev.
551 	 *
552 	 * XXX: POSIX also mentions we must fill in st_dev, but how?
553 	 */
554 
555 	bzero(sb, sizeof *sb);
556 #ifdef PTS_EXTERNAL
557 	if (psc->pts_cdev != NULL)
558 		sb->st_ino = sb->st_rdev = dev2udev(psc->pts_cdev);
559 	else
560 #endif /* PTS_EXTERNAL */
561 		sb->st_ino = sb->st_rdev = tty_udev(tp);
562 
563 	sb->st_atim = dev->si_atime;
564 	sb->st_ctim = dev->si_ctime;
565 	sb->st_mtim = dev->si_mtime;
566 	sb->st_uid = dev->si_uid;
567 	sb->st_gid = dev->si_gid;
568 	sb->st_mode = dev->si_mode | S_IFCHR;
569 
570 	return (0);
571 }
572 
573 static int
574 ptsdev_close(struct file *fp, struct thread *td)
575 {
576 	struct tty *tp = fp->f_data;
577 
578 	/* Deallocate TTY device. */
579 	tty_lock(tp);
580 	tty_rel_gone(tp);
581 
582 	/*
583 	 * Open of /dev/ptmx or /dev/ptyXX changes the type of file
584 	 * from DTYPE_VNODE to DTYPE_PTS. vn_open() increases vnode
585 	 * use count, we need to decrement it, and possibly do other
586 	 * required cleanup.
587 	 */
588 	if (fp->f_vnode != NULL)
589 		return (vnops.fo_close(fp, td));
590 
591 	return (0);
592 }
593 
594 static int
595 ptsdev_fill_kinfo(struct file *fp, struct kinfo_file *kif, struct filedesc *fdp)
596 {
597 	struct tty *tp;
598 
599 	kif->kf_type = KF_TYPE_PTS;
600 	tp = fp->f_data;
601 	kif->kf_un.kf_pts.kf_pts_dev = tty_udev(tp);
602 	kif->kf_un.kf_pts.kf_pts_dev_freebsd11 =
603 	    kif->kf_un.kf_pts.kf_pts_dev; /* truncate */
604 	strlcpy(kif->kf_path, tty_devname(tp), sizeof(kif->kf_path));
605 	return (0);
606 }
607 
608 static struct fileops ptsdev_ops = {
609 	.fo_read	= ptsdev_read,
610 	.fo_write	= ptsdev_write,
611 	.fo_truncate	= invfo_truncate,
612 	.fo_ioctl	= ptsdev_ioctl,
613 	.fo_poll	= ptsdev_poll,
614 	.fo_kqfilter	= ptsdev_kqfilter,
615 	.fo_stat	= ptsdev_stat,
616 	.fo_close	= ptsdev_close,
617 	.fo_chmod	= invfo_chmod,
618 	.fo_chown	= invfo_chown,
619 	.fo_sendfile	= invfo_sendfile,
620 	.fo_fill_kinfo	= ptsdev_fill_kinfo,
621 	.fo_flags	= DFLAG_PASSABLE,
622 };
623 
624 /*
625  * Driver-side hooks.
626  */
627 
628 static void
629 ptsdrv_outwakeup(struct tty *tp)
630 {
631 	struct pts_softc *psc = tty_softc(tp);
632 
633 	cv_broadcast(&psc->pts_outwait);
634 	selwakeup(&psc->pts_outpoll);
635 	KNOTE_LOCKED(&psc->pts_outpoll.si_note, 0);
636 }
637 
638 static void
639 ptsdrv_inwakeup(struct tty *tp)
640 {
641 	struct pts_softc *psc = tty_softc(tp);
642 
643 	cv_broadcast(&psc->pts_inwait);
644 	selwakeup(&psc->pts_inpoll);
645 	KNOTE_LOCKED(&psc->pts_inpoll.si_note, 0);
646 }
647 
648 static int
649 ptsdrv_open(struct tty *tp)
650 {
651 	struct pts_softc *psc = tty_softc(tp);
652 
653 	psc->pts_flags &= ~PTS_FINISHED;
654 
655 	return (0);
656 }
657 
658 static void
659 ptsdrv_close(struct tty *tp)
660 {
661 	struct pts_softc *psc = tty_softc(tp);
662 
663 	/* Wake up any blocked readers/writers. */
664 	psc->pts_flags |= PTS_FINISHED;
665 	ptsdrv_outwakeup(tp);
666 	ptsdrv_inwakeup(tp);
667 }
668 
669 static void
670 ptsdrv_pktnotify(struct tty *tp, char event)
671 {
672 	struct pts_softc *psc = tty_softc(tp);
673 
674 	/*
675 	 * Clear conflicting flags.
676 	 */
677 
678 	switch (event) {
679 	case TIOCPKT_STOP:
680 		psc->pts_pkt &= ~TIOCPKT_START;
681 		break;
682 	case TIOCPKT_START:
683 		psc->pts_pkt &= ~TIOCPKT_STOP;
684 		break;
685 	case TIOCPKT_NOSTOP:
686 		psc->pts_pkt &= ~TIOCPKT_DOSTOP;
687 		break;
688 	case TIOCPKT_DOSTOP:
689 		psc->pts_pkt &= ~TIOCPKT_NOSTOP;
690 		break;
691 	}
692 
693 	psc->pts_pkt |= event;
694 	ptsdrv_outwakeup(tp);
695 }
696 
697 static void
698 ptsdrv_free(void *softc)
699 {
700 	struct pts_softc *psc = softc;
701 
702 	/* Make device number available again. */
703 	if (psc->pts_unit >= 0)
704 		free_unr(pts_pool, psc->pts_unit);
705 
706 	chgptscnt(psc->pts_cred->cr_ruidinfo, -1, 0);
707 	racct_sub_cred(psc->pts_cred, RACCT_NPTS, 1);
708 	crfree(psc->pts_cred);
709 
710 	seldrain(&psc->pts_inpoll);
711 	seldrain(&psc->pts_outpoll);
712 	knlist_destroy(&psc->pts_inpoll.si_note);
713 	knlist_destroy(&psc->pts_outpoll.si_note);
714 
715 #ifdef PTS_EXTERNAL
716 	/* Destroy master device as well. */
717 	if (psc->pts_cdev != NULL)
718 		destroy_dev_sched(psc->pts_cdev);
719 #endif /* PTS_EXTERNAL */
720 
721 	free(psc, M_PTS);
722 }
723 
724 static struct ttydevsw pts_class = {
725 	.tsw_flags	= TF_NOPREFIX,
726 	.tsw_outwakeup	= ptsdrv_outwakeup,
727 	.tsw_inwakeup	= ptsdrv_inwakeup,
728 	.tsw_open	= ptsdrv_open,
729 	.tsw_close	= ptsdrv_close,
730 	.tsw_pktnotify	= ptsdrv_pktnotify,
731 	.tsw_free	= ptsdrv_free,
732 };
733 
734 #ifndef PTS_EXTERNAL
735 static
736 #endif /* !PTS_EXTERNAL */
737 int
738 pts_alloc(int fflags, struct thread *td, struct file *fp)
739 {
740 	int unit, ok, error;
741 	struct tty *tp;
742 	struct pts_softc *psc;
743 	struct proc *p = td->td_proc;
744 	struct ucred *cred = td->td_ucred;
745 
746 	/* Resource limiting. */
747 	PROC_LOCK(p);
748 	error = racct_add(p, RACCT_NPTS, 1);
749 	if (error != 0) {
750 		PROC_UNLOCK(p);
751 		return (EAGAIN);
752 	}
753 	ok = chgptscnt(cred->cr_ruidinfo, 1, lim_cur(td, RLIMIT_NPTS));
754 	if (!ok) {
755 		racct_sub(p, RACCT_NPTS, 1);
756 		PROC_UNLOCK(p);
757 		return (EAGAIN);
758 	}
759 	PROC_UNLOCK(p);
760 
761 	/* Try to allocate a new pts unit number. */
762 	unit = alloc_unr(pts_pool);
763 	if (unit < 0) {
764 		racct_sub(p, RACCT_NPTS, 1);
765 		chgptscnt(cred->cr_ruidinfo, -1, 0);
766 		return (EAGAIN);
767 	}
768 
769 	/* Allocate TTY and softc. */
770 	psc = malloc(sizeof(struct pts_softc), M_PTS, M_WAITOK|M_ZERO);
771 	cv_init(&psc->pts_inwait, "ptsin");
772 	cv_init(&psc->pts_outwait, "ptsout");
773 
774 	psc->pts_unit = unit;
775 	psc->pts_cred = crhold(cred);
776 
777 	tp = tty_alloc(&pts_class, psc);
778 	knlist_init_mtx(&psc->pts_inpoll.si_note, tp->t_mtx);
779 	knlist_init_mtx(&psc->pts_outpoll.si_note, tp->t_mtx);
780 
781 	/* Expose the slave device as well. */
782 	tty_makedev(tp, td->td_ucred, "pts/%u", psc->pts_unit);
783 
784 	finit(fp, fflags, DTYPE_PTS, tp, &ptsdev_ops);
785 
786 	return (0);
787 }
788 
789 #ifdef PTS_EXTERNAL
790 int
791 pts_alloc_external(int fflags, struct thread *td, struct file *fp,
792     struct cdev *dev, const char *name)
793 {
794 	int ok, error;
795 	struct tty *tp;
796 	struct pts_softc *psc;
797 	struct proc *p = td->td_proc;
798 	struct ucred *cred = td->td_ucred;
799 
800 	/* Resource limiting. */
801 	PROC_LOCK(p);
802 	error = racct_add(p, RACCT_NPTS, 1);
803 	if (error != 0) {
804 		PROC_UNLOCK(p);
805 		return (EAGAIN);
806 	}
807 	ok = chgptscnt(cred->cr_ruidinfo, 1, lim_cur(td, RLIMIT_NPTS));
808 	if (!ok) {
809 		racct_sub(p, RACCT_NPTS, 1);
810 		PROC_UNLOCK(p);
811 		return (EAGAIN);
812 	}
813 	PROC_UNLOCK(p);
814 
815 	/* Allocate TTY and softc. */
816 	psc = malloc(sizeof(struct pts_softc), M_PTS, M_WAITOK|M_ZERO);
817 	cv_init(&psc->pts_inwait, "ptsin");
818 	cv_init(&psc->pts_outwait, "ptsout");
819 
820 	psc->pts_unit = -1;
821 	psc->pts_cdev = dev;
822 	psc->pts_cred = crhold(cred);
823 
824 	tp = tty_alloc(&pts_class, psc);
825 	knlist_init_mtx(&psc->pts_inpoll.si_note, tp->t_mtx);
826 	knlist_init_mtx(&psc->pts_outpoll.si_note, tp->t_mtx);
827 
828 	/* Expose the slave device as well. */
829 	tty_makedev(tp, td->td_ucred, "%s", name);
830 
831 	finit(fp, fflags, DTYPE_PTS, tp, &ptsdev_ops);
832 
833 	return (0);
834 }
835 #endif /* PTS_EXTERNAL */
836 
837 int
838 sys_posix_openpt(struct thread *td, struct posix_openpt_args *uap)
839 {
840 	int error, fd;
841 	struct file *fp;
842 
843 	/*
844 	 * POSIX states it's unspecified when other flags are passed. We
845 	 * don't allow this.
846 	 */
847 	if (uap->flags & ~(O_RDWR|O_NOCTTY|O_CLOEXEC))
848 		return (EINVAL);
849 
850 	error = falloc(td, &fp, &fd, uap->flags);
851 	if (error)
852 		return (error);
853 
854 	/* Allocate the actual pseudo-TTY. */
855 	error = pts_alloc(FFLAGS(uap->flags & O_ACCMODE), td, fp);
856 	if (error != 0) {
857 		fdclose(td, fp, fd);
858 		fdrop(fp, td);
859 		return (error);
860 	}
861 
862 	/* Pass it back to userspace. */
863 	td->td_retval[0] = fd;
864 	fdrop(fp, td);
865 
866 	return (0);
867 }
868 
869 static void
870 pts_init(void *unused)
871 {
872 
873 	pts_pool = new_unrhdr(0, INT_MAX, NULL);
874 }
875 
876 SYSINIT(pts, SI_SUB_DRIVERS, SI_ORDER_MIDDLE, pts_init, NULL);
877