pty.c revision 1.12 1 /* $NetBSD: pty.c,v 1.12 1999/07/02 15:49:12 simonb 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.12 1999/07/02 15:49:12 simonb 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 <errno.h>
50 #include <fcntl.h>
51 #include <grp.h>
52 #include <stdio.h>
53 #include <string.h>
54 #include <termios.h>
55 #include <unistd.h>
56 #include <util.h>
57
58 #ifdef i386
59 /* PCVT conflicts with ttyv*. */
60 #define TTY_LETTERS "pqrstuwxyzPQRST"
61 #else
62 #define TTY_LETTERS "pqrstuvwxyzPQRST"
63 #endif
64
65 int
66 openpty(amaster, aslave, name, termp, winp)
67 int *amaster, *aslave;
68 char *name;
69 struct termios *termp;
70 struct winsize *winp;
71 {
72 static char line[] = "/dev/XtyXX";
73 const char *cp1, *cp2;
74 int master, slave;
75 gid_t ttygid;
76 struct group *gr;
77
78 if ((gr = getgrnam("tty")) != NULL)
79 ttygid = gr->gr_gid;
80 else
81 ttygid = (gid_t) -1;
82
83 for (cp1 = TTY_LETTERS; *cp1; cp1++) {
84 line[8] = *cp1;
85 for (cp2 = "0123456789abcdef"; *cp2; cp2++) {
86 line[5] = 'p';
87 line[9] = *cp2;
88 if ((master = open(line, O_RDWR, 0)) == -1) {
89 if (errno == ENOENT)
90 return (-1); /* out of ptys */
91 } else {
92 line[5] = 't';
93 (void) chown(line, getuid(), ttygid);
94 (void) chmod(line, S_IRUSR|S_IWUSR|S_IWGRP);
95 (void) revoke(line);
96 if ((slave = open(line, O_RDWR, 0)) != -1) {
97 *amaster = master;
98 *aslave = slave;
99 if (name)
100 strcpy(name, line);
101 if (termp)
102 (void) tcsetattr(slave,
103 TCSAFLUSH, termp);
104 if (winp)
105 (void) ioctl(slave, TIOCSWINSZ,
106 winp);
107 return (0);
108 }
109 (void) close(master);
110 }
111 }
112 }
113 errno = ENOENT; /* out of ptys */
114 return (-1);
115 }
116
117 pid_t
118 forkpty(amaster, name, termp, winp)
119 int *amaster;
120 char *name;
121 struct termios *termp;
122 struct winsize *winp;
123 {
124 int master, slave;
125 pid_t pid;
126
127 if (openpty(&master, &slave, name, termp, winp) == -1)
128 return (-1);
129 switch (pid = fork()) {
130 case -1:
131 return (-1);
132 case 0:
133 /*
134 * child
135 */
136 (void) close(master);
137 login_tty(slave);
138 return (0);
139 }
140 /*
141 * parent
142 */
143 *amaster = master;
144 (void) close(slave);
145 return (pid);
146 }
147