blob: 4083e249f2852907238b7ece94c52e2733edc465 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Allocating a pseudo-terminal, and making it the controlling tty.
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Ben Lindstrom6ed8c042001-03-05 03:53:02 +000015RCSID("$OpenBSD: sshpty.c,v 1.1 2001/03/04 01:46:30 djm Exp $");
Damien Miller95def091999-11-25 00:26:21 +110016
Damien Miller36b339a1999-12-14 10:54:47 +110017#ifdef HAVE_UTIL_H
18# include <util.h>
19#endif /* HAVE_UTIL_H */
20
Ben Lindstromd95c09c2001-02-18 19:13:33 +000021#include "sshpty.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000022#include "log.h"
Kevin Steves974fb9c2001-06-15 00:04:23 +000023#include "misc.h"
Damien Miller356a0b01999-11-08 15:30:59 +110024
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */
26#if defined(HAVE__GETPTY) || defined(HAVE_OPENPTY)
27#undef HAVE_DEV_PTMX
28#endif
29
Damien Millerfce16481999-12-08 08:53:52 +110030#ifdef HAVE_PTY_H
31# include <pty.h>
32#endif
33#if defined(HAVE_DEV_PTMX) && defined(HAVE_SYS_STROPTS_H)
34# include <sys/stropts.h>
35#endif
36
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037#ifndef O_NOCTTY
38#define O_NOCTTY 0
39#endif
40
Damien Miller5428f641999-11-25 11:54:57 +110041/*
42 * Allocates and opens a pty. Returns 0 if no pty could be allocated, or
43 * nonzero if a pty was successfully allocated. On success, open file
44 * descriptors for the pty and tty sides and the name of the tty side are
45 * returned (the buffer must be able to hold at least 64 characters).
46 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Miller4af51302000-04-16 11:18:38 +100048int
Damien Miller037a0dc1999-12-07 15:38:31 +110049pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050{
Damien Miller037a0dc1999-12-07 15:38:31 +110051#if defined(HAVE_OPENPTY) || defined(BSD4_4)
Damien Miller95def091999-11-25 00:26:21 +110052 /* openpty(3) exists in OSF/1 and some other os'es */
Damien Miller99e92432001-02-18 12:49:35 +110053 char *name;
Damien Miller95def091999-11-25 00:26:21 +110054 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055
Damien Miller99e92432001-02-18 12:49:35 +110056 i = openpty(ptyfd, ttyfd, NULL, NULL, NULL);
Damien Miller95def091999-11-25 00:26:21 +110057 if (i < 0) {
58 error("openpty: %.100s", strerror(errno));
59 return 0;
60 }
Damien Miller99e92432001-02-18 12:49:35 +110061 name = ttyname(*ttyfd);
62 if (!name)
63 fatal("openpty returns device for which ttyname fails.");
64
65 strlcpy(namebuf, name, namebuflen); /* possible truncation */
Damien Miller95def091999-11-25 00:26:21 +110066 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#else /* HAVE_OPENPTY */
68#ifdef HAVE__GETPTY
Damien Miller5428f641999-11-25 11:54:57 +110069 /*
70 * _getpty(3) exists in SGI Irix 4.x, 5.x & 6.x -- it generates more
71 * pty's automagically when needed
72 */
Damien Miller95def091999-11-25 00:26:21 +110073 char *slave;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller95def091999-11-25 00:26:21 +110075 slave = _getpty(ptyfd, O_RDWR, 0622, 0);
76 if (slave == NULL) {
77 error("_getpty: %.100s", strerror(errno));
78 return 0;
79 }
Damien Miller037a0dc1999-12-07 15:38:31 +110080 strlcpy(namebuf, slave, namebuflen);
Damien Miller95def091999-11-25 00:26:21 +110081 /* Open the slave side. */
82 *ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
83 if (*ttyfd < 0) {
84 error("%.200s: %.100s", namebuf, strerror(errno));
85 close(*ptyfd);
86 return 0;
87 }
88 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089#else /* HAVE__GETPTY */
Damien Miller76112de1999-12-21 11:18:08 +110090#if defined(HAVE_DEV_PTMX)
Damien Miller5428f641999-11-25 11:54:57 +110091 /*
92 * This code is used e.g. on Solaris 2.x. (Note that Solaris 2.3
93 * also has bsd-style ptys, but they simply do not work.)
94 */
Damien Miller95def091999-11-25 00:26:21 +110095 int ptm;
96 char *pts;
Kevin Steves974fb9c2001-06-15 00:04:23 +000097 mysig_t old_signal;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
Damien Miller95def091999-11-25 00:26:21 +110099 ptm = open("/dev/ptmx", O_RDWR | O_NOCTTY);
100 if (ptm < 0) {
101 error("/dev/ptmx: %.100s", strerror(errno));
102 return 0;
103 }
Kevin Steves974fb9c2001-06-15 00:04:23 +0000104 old_signal = mysignal(SIGCHLD, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100105 if (grantpt(ptm) < 0) {
106 error("grantpt: %.100s", strerror(errno));
107 return 0;
108 }
Kevin Steves974fb9c2001-06-15 00:04:23 +0000109 mysignal(SIGCHLD, old_signal);
Damien Miller95def091999-11-25 00:26:21 +1100110 if (unlockpt(ptm) < 0) {
111 error("unlockpt: %.100s", strerror(errno));
112 return 0;
113 }
114 pts = ptsname(ptm);
115 if (pts == NULL)
116 error("Slave pty side name could not be obtained.");
Damien Miller037a0dc1999-12-07 15:38:31 +1100117 strlcpy(namebuf, pts, namebuflen);
Damien Miller95def091999-11-25 00:26:21 +1100118 *ptyfd = ptm;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119
Damien Miller95def091999-11-25 00:26:21 +1100120 /* Open the slave side. */
121 *ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
122 if (*ttyfd < 0) {
123 error("%.100s: %.100s", namebuf, strerror(errno));
124 close(*ptyfd);
125 return 0;
126 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100127#ifndef HAVE_CYGWIN
Kevin Steves85b3db62000-11-05 15:31:36 +0000128 /*
129 * Push the appropriate streams modules, as described in Solaris pts(7).
130 * HP-UX pts(7) doesn't have ttcompat module.
131 */
Damien Miller95def091999-11-25 00:26:21 +1100132 if (ioctl(*ttyfd, I_PUSH, "ptem") < 0)
133 error("ioctl I_PUSH ptem: %.100s", strerror(errno));
134 if (ioctl(*ttyfd, I_PUSH, "ldterm") < 0)
135 error("ioctl I_PUSH ldterm: %.100s", strerror(errno));
Kevin Steves85b3db62000-11-05 15:31:36 +0000136#ifndef __hpux
Damien Miller95def091999-11-25 00:26:21 +1100137 if (ioctl(*ttyfd, I_PUSH, "ttcompat") < 0)
138 error("ioctl I_PUSH ttcompat: %.100s", strerror(errno));
Damien Millere37ac5a2000-03-17 23:58:59 +1100139#endif
Damien Millerbac2d8a2000-09-05 16:13:06 +1100140#endif
Damien Miller95def091999-11-25 00:26:21 +1100141 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142#else /* HAVE_DEV_PTMX */
143#ifdef HAVE_DEV_PTS_AND_PTC
Damien Miller95def091999-11-25 00:26:21 +1100144 /* AIX-style pty code. */
145 const char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146
Damien Miller95def091999-11-25 00:26:21 +1100147 *ptyfd = open("/dev/ptc", O_RDWR | O_NOCTTY);
148 if (*ptyfd < 0) {
149 error("Could not open /dev/ptc: %.100s", strerror(errno));
150 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151 }
Damien Miller95def091999-11-25 00:26:21 +1100152 name = ttyname(*ptyfd);
153 if (!name)
154 fatal("Open of /dev/ptc returns device for which ttyname fails.");
Damien Miller037a0dc1999-12-07 15:38:31 +1100155 strlcpy(namebuf, name, namebuflen);
Damien Miller95def091999-11-25 00:26:21 +1100156 *ttyfd = open(name, O_RDWR | O_NOCTTY);
157 if (*ttyfd < 0) {
158 error("Could not open pty slave side %.100s: %.100s",
159 name, strerror(errno));
160 close(*ptyfd);
161 return 0;
162 }
163 return 1;
164#else /* HAVE_DEV_PTS_AND_PTC */
165 /* BSD-style pty code. */
166 char buf[64];
167 int i;
Damien Miller5428f641999-11-25 11:54:57 +1100168 const char *ptymajors = "pqrstuvwxyzabcdefghijklmnoABCDEFGHIJKLMNOPQRSTUVWXYZ";
Damien Miller95def091999-11-25 00:26:21 +1100169 const char *ptyminors = "0123456789abcdef";
170 int num_minors = strlen(ptyminors);
171 int num_ptys = strlen(ptymajors) * num_minors;
172
173 for (i = 0; i < num_ptys; i++) {
174 snprintf(buf, sizeof buf, "/dev/pty%c%c", ptymajors[i / num_minors],
175 ptyminors[i % num_minors]);
Damien Millera34a28b1999-12-14 10:47:15 +1100176 snprintf(namebuf, namebuflen, "/dev/tty%c%c",
Damien Miller037a0dc1999-12-07 15:38:31 +1100177 ptymajors[i / num_minors], ptyminors[i % num_minors]);
Damien Miller95def091999-11-25 00:26:21 +1100178
Damien Miller6d8c11f2000-08-29 11:52:38 +1100179 *ptyfd = open(buf, O_RDWR | O_NOCTTY);
180 if (*ptyfd < 0) {
181 /* Try SCO style naming */
182 snprintf(buf, sizeof buf, "/dev/ptyp%d", i);
183 snprintf(namebuf, namebuflen, "/dev/ttyp%d", i);
184 *ptyfd = open(buf, O_RDWR | O_NOCTTY);
185 if (*ptyfd < 0)
186 continue;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000187 }
188
Damien Miller95def091999-11-25 00:26:21 +1100189 /* Open the slave side. */
190 *ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
191 if (*ttyfd < 0) {
192 error("%.100s: %.100s", namebuf, strerror(errno));
193 close(*ptyfd);
194 return 0;
195 }
196 return 1;
197 }
198 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199#endif /* HAVE_DEV_PTS_AND_PTC */
200#endif /* HAVE_DEV_PTMX */
201#endif /* HAVE__GETPTY */
202#endif /* HAVE_OPENPTY */
203}
204
Damien Miller95def091999-11-25 00:26:21 +1100205/* Releases the tty. Its ownership is returned to root, and permissions to 0666. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206
Damien Miller4af51302000-04-16 11:18:38 +1000207void
Damien Miller95def091999-11-25 00:26:21 +1100208pty_release(const char *ttyname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209{
Damien Miller204ad072000-03-02 23:56:12 +1100210 if (chown(ttyname, (uid_t) 0, (gid_t) 0) < 0)
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100211 error("chown %.100s 0 0 failed: %.100s", ttyname, strerror(errno));
Damien Miller204ad072000-03-02 23:56:12 +1100212 if (chmod(ttyname, (mode_t) 0666) < 0)
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100213 error("chmod %.100s 0666 failed: %.100s", ttyname, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214}
215
216/* Makes the tty the processes controlling tty and sets it to sane modes. */
217
Damien Miller4af51302000-04-16 11:18:38 +1000218void
Damien Miller95def091999-11-25 00:26:21 +1100219pty_make_controlling_tty(int *ttyfd, const char *ttyname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220{
Damien Miller95def091999-11-25 00:26:21 +1100221 int fd;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100222#ifdef USE_VHANGUP
Damien Millerd0cff3e2000-04-20 23:12:58 +1000223 void *old;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100224#endif /* USE_VHANGUP */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000225
Damien Miller95def091999-11-25 00:26:21 +1100226 /* First disconnect from the old controlling tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000228 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100229 if (fd >= 0) {
230 (void) ioctl(fd, TIOCNOTTY, NULL);
231 close(fd);
232 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233#endif /* TIOCNOTTY */
Damien Miller95def091999-11-25 00:26:21 +1100234 if (setsid() < 0)
235 error("setsid: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236
Damien Miller5428f641999-11-25 11:54:57 +1100237 /*
238 * Verify that we are successfully disconnected from the controlling
239 * tty.
240 */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000241 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100242 if (fd >= 0) {
243 error("Failed to disconnect from controlling tty.");
244 close(fd);
245 }
246 /* Make it our controlling tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247#ifdef TIOCSCTTY
Damien Miller95def091999-11-25 00:26:21 +1100248 debug("Setting controlling tty using TIOCSCTTY.");
Kevin Steves6c0d6272000-11-12 09:22:29 +0000249 if (ioctl(*ttyfd, TIOCSCTTY, NULL) < 0)
250 error("ioctl(TIOCSCTTY): %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251#endif /* TIOCSCTTY */
Ben Lindstromb5628642000-10-18 00:02:25 +0000252#ifdef HAVE_NEWS4
253 if (setpgrp(0,0) < 0)
254 error("SETPGRP %s",strerror(errno));
255#endif /* HAVE_NEWS4 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100256#ifdef USE_VHANGUP
Damien Millerd0cff3e2000-04-20 23:12:58 +1000257 old = signal(SIGHUP, SIG_IGN);
258 vhangup();
259 signal(SIGHUP, old);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100260#endif /* USE_VHANGUP */
Damien Miller95def091999-11-25 00:26:21 +1100261 fd = open(ttyname, O_RDWR);
Damien Millerd0cff3e2000-04-20 23:12:58 +1000262 if (fd < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100263 error("%.100s: %.100s", ttyname, strerror(errno));
Damien Millerd0cff3e2000-04-20 23:12:58 +1000264 } else {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100265#ifdef USE_VHANGUP
Damien Millerd0cff3e2000-04-20 23:12:58 +1000266 close(*ttyfd);
267 *ttyfd = fd;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100268#else /* USE_VHANGUP */
Damien Miller95def091999-11-25 00:26:21 +1100269 close(fd);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100270#endif /* USE_VHANGUP */
Damien Millerd0cff3e2000-04-20 23:12:58 +1000271 }
Damien Miller95def091999-11-25 00:26:21 +1100272 /* Verify that we now have a controlling tty. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000273 fd = open(_PATH_TTY, O_WRONLY);
Damien Miller95def091999-11-25 00:26:21 +1100274 if (fd < 0)
275 error("open /dev/tty failed - could not set controlling tty: %.100s",
276 strerror(errno));
277 else {
278 close(fd);
279 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280}
281
282/* Changes the window size associated with the pty. */
283
Damien Miller4af51302000-04-16 11:18:38 +1000284void
Damien Miller95def091999-11-25 00:26:21 +1100285pty_change_window_size(int ptyfd, int row, int col,
286 int xpixel, int ypixel)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287{
Damien Miller95def091999-11-25 00:26:21 +1100288 struct winsize w;
289 w.ws_row = row;
290 w.ws_col = col;
291 w.ws_xpixel = xpixel;
292 w.ws_ypixel = ypixel;
293 (void) ioctl(ptyfd, TIOCSWINSZ, &w);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294}
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100295
296void
297pty_setowner(struct passwd *pw, const char *ttyname)
298{
299 struct group *grp;
300 gid_t gid;
301 mode_t mode;
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000302 struct stat st;
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100303
304 /* Determine the group to make the owner of the tty. */
305 grp = getgrnam("tty");
306 if (grp) {
307 gid = grp->gr_gid;
308 mode = S_IRUSR | S_IWUSR | S_IWGRP;
309 } else {
310 gid = pw->pw_gid;
311 mode = S_IRUSR | S_IWUSR | S_IWGRP | S_IWOTH;
312 }
313
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000314 /*
315 * Change owner and mode of the tty as required.
316 * Warn but continue if filesystem is read-only and the uids match.
317 */
318 if (stat(ttyname, &st))
319 fatal("stat(%.100s) failed: %.100s", ttyname,
320 strerror(errno));
321
322 if (st.st_uid != pw->pw_uid || st.st_gid != gid) {
323 if (chown(ttyname, pw->pw_uid, gid) < 0) {
324 if (errno == EROFS && st.st_uid == pw->pw_uid)
325 error("chown(%.100s, %d, %d) failed: %.100s",
Kevin Stevesef4eea92001-02-05 12:42:17 +0000326 ttyname, pw->pw_uid, gid,
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000327 strerror(errno));
328 else
329 fatal("chown(%.100s, %d, %d) failed: %.100s",
Kevin Stevesef4eea92001-02-05 12:42:17 +0000330 ttyname, pw->pw_uid, gid,
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000331 strerror(errno));
332 }
333 }
334
335 if ((st.st_mode & (S_IRWXU|S_IRWXG|S_IRWXO)) != mode) {
336 if (chmod(ttyname, mode) < 0) {
337 if (errno == EROFS &&
338 (st.st_mode & (S_IRGRP | S_IROTH)) == 0)
339 error("chmod(%.100s, 0%o) failed: %.100s",
340 ttyname, mode, strerror(errno));
341 else
342 fatal("chmod(%.100s, 0%o) failed: %.100s",
343 ttyname, mode, strerror(errno));
344 }
345 }
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100346}