xref: /netbsd/lib/libutil/pty.c (revision bf9ec67e)
1 /*	$NetBSD: pty.c,v 1.19 2002/03/09 20:09:28 atatat Exp $	*/
2 
3 /*-
4  * Copyright (c) 1990, 1993, 1994
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *	This product includes software developed by the University of
18  *	California, Berkeley and its contributors.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 
36 #include <sys/cdefs.h>
37 #if defined(LIBC_SCCS) && !defined(lint)
38 #if 0
39 static char sccsid[] = "@(#)pty.c	8.3 (Berkeley) 5/16/94";
40 #else
41 __RCSID("$NetBSD: pty.c,v 1.19 2002/03/09 20:09:28 atatat Exp $");
42 #endif
43 #endif /* LIBC_SCCS and not lint */
44 
45 #include <sys/types.h>
46 #include <sys/ioctl.h>
47 #include <sys/stat.h>
48 
49 #include <assert.h>
50 #include <errno.h>
51 #include <fcntl.h>
52 #include <grp.h>
53 #include <stdio.h>
54 #include <string.h>
55 #include <termios.h>
56 #include <unistd.h>
57 #include <util.h>
58 
59 /*
60  * XXX: `v' removed until no ports are using console devices which use ttyv0
61  */
62 #define TTY_LETTERS	"pqrstuwxyzPQRST"
63 #define TTY_OLD_SUFFIX	"0123456789abcdef"
64 #define TTY_NEW_SUFFIX	"ghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
65 
66 int
67 openpty(int *amaster, int *aslave, char *name, struct termios *termp,
68 	struct winsize *winp)
69 {
70 	static char line[] = "/dev/XtyXX";
71 	const char *cp1, *cp2, *cp;
72 	int master, slave, tries = 0;
73 	gid_t ttygid;
74 	struct group *gr;
75 
76 	_DIAGASSERT(amaster != NULL);
77 	_DIAGASSERT(aslave != NULL);
78 	/* name may be NULL */
79 	/* termp may be NULL */
80 	/* winp may be NULL */
81 
82 	if ((gr = getgrnam("tty")) != NULL)
83 		ttygid = gr->gr_gid;
84 	else
85 		ttygid = (gid_t) -1;
86 
87 	for (cp1 = TTY_LETTERS; *cp1; cp1++) {
88 		tries = 0;
89 		line[8] = *cp1;
90 		for (cp = cp2 = TTY_OLD_SUFFIX TTY_NEW_SUFFIX; *cp2; cp2++) {
91 			line[5] = 'p';
92 			line[9] = *cp2;
93 			if ((master = open(line, O_RDWR, 0)) == -1) {
94 				if (errno == ENOENT) {
95 					if (cp2 - cp + 1 < sizeof(TTY_OLD_SUFFIX))
96 						return (-1); /* out of ptys */
97 					else
98 						break;
99 				}
100 			} else {
101 				line[5] = 't';
102 				(void) chown(line, getuid(), ttygid);
103 				(void) chmod(line, S_IRUSR|S_IWUSR|S_IWGRP);
104 				(void) revoke(line);
105 				if ((slave = open(line, O_RDWR, 0)) != -1) {
106 					*amaster = master;
107 					*aslave = slave;
108 					if (name)
109 						strcpy(name, line);
110 					if (termp)
111 						(void) tcsetattr(slave,
112 							TCSAFLUSH, termp);
113 					if (winp)
114 						(void) ioctl(slave, TIOCSWINSZ,
115 						    winp);
116 					return (0);
117 				}
118 				(void) close(master);
119 			}
120 		}
121 	}
122 	errno = ENOENT;	/* out of ptys */
123 	return (-1);
124 }
125 
126 pid_t
127 forkpty(int *amaster, char *name, struct termios *termp, struct winsize *winp)
128 {
129 	int master, slave;
130 	pid_t pid;
131 
132 	_DIAGASSERT(amaster != NULL);
133 	/* name may be NULL */
134 	/* termp may be NULL */
135 	/* winp may be NULL */
136 
137 	if (openpty(&master, &slave, name, termp, winp) == -1)
138 		return (-1);
139 	switch (pid = fork()) {
140 	case -1:
141 		return (-1);
142 	case 0:
143 		/*
144 		 * child
145 		 */
146 		(void) close(master);
147 		login_tty(slave);
148 		return (0);
149 	}
150 	/*
151 	 * parent
152 	 */
153 	*amaster = master;
154 	(void) close(slave);
155 	return (pid);
156 }
157