blob: 7cfcf91f6c4df62e6620e83b974ee7df9ce9583e [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"
Damien Millerf17883e2006-03-15 11:45:54 +110015RCSID("$OpenBSD: sshpty.c,v 1.16 2006/02/20 17:19:54 stevesk Exp $");
Damien Miller17e91c02006-03-15 11:28:34 +110016
17#include <sys/ioctl.h>
Damien Millerf17883e2006-03-15 11:45:54 +110018#include <sys/types.h>
19#include <sys/stat.h>
Damien Miller95def091999-11-25 00:26:21 +110020
Damien Miller03e20032006-03-15 11:16:59 +110021#ifdef HAVE_PATHS_H
Damien Millera9263d02006-03-15 11:18:26 +110022# include <paths.h>
Damien Miller03e20032006-03-15 11:16:59 +110023#endif
24#include <termios.h>
Damien Miller36b339a1999-12-14 10:54:47 +110025#ifdef HAVE_UTIL_H
26# include <util.h>
27#endif /* HAVE_UTIL_H */
28
Ben Lindstromd95c09c2001-02-18 19:13:33 +000029#include "sshpty.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "log.h"
Kevin Steves974fb9c2001-06-15 00:04:23 +000031#include "misc.h"
Damien Miller356a0b01999-11-08 15:30:59 +110032
Damien Millerfce16481999-12-08 08:53:52 +110033#ifdef HAVE_PTY_H
34# include <pty.h>
35#endif
Damien Millerfce16481999-12-08 08:53:52 +110036
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 Miller95def091999-11-25 00:26:21 +110051 /* openpty(3) exists in OSF/1 and some other os'es */
Damien Miller99e92432001-02-18 12:49:35 +110052 char *name;
Damien Miller95def091999-11-25 00:26:21 +110053 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054
Damien Miller99e92432001-02-18 12:49:35 +110055 i = openpty(ptyfd, ttyfd, NULL, NULL, NULL);
Damien Miller95def091999-11-25 00:26:21 +110056 if (i < 0) {
57 error("openpty: %.100s", strerror(errno));
58 return 0;
59 }
Damien Miller99e92432001-02-18 12:49:35 +110060 name = ttyname(*ttyfd);
61 if (!name)
62 fatal("openpty returns device for which ttyname fails.");
63
64 strlcpy(namebuf, name, namebuflen); /* possible truncation */
Damien Miller95def091999-11-25 00:26:21 +110065 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066}
67
Damien Miller95def091999-11-25 00:26:21 +110068/* Releases the tty. Its ownership is returned to root, and permissions to 0666. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Miller4af51302000-04-16 11:18:38 +100070void
Darren Tucker3f9fdc72004-06-22 12:56:01 +100071pty_release(const char *tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100072{
Darren Tucker3f9fdc72004-06-22 12:56:01 +100073 if (chown(tty, (uid_t) 0, (gid_t) 0) < 0)
74 error("chown %.100s 0 0 failed: %.100s", tty, strerror(errno));
75 if (chmod(tty, (mode_t) 0666) < 0)
76 error("chmod %.100s 0666 failed: %.100s", tty, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077}
78
Damien Miller469954d2003-06-18 20:25:33 +100079/* Makes the tty the process's controlling tty and sets it to sane modes. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Miller4af51302000-04-16 11:18:38 +100081void
Darren Tucker3f9fdc72004-06-22 12:56:01 +100082pty_make_controlling_tty(int *ttyfd, const char *tty)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083{
Ben Lindstrom6db66ff2001-08-06 23:29:16 +000084 int fd;
Damien Miller4a820ea2001-10-12 19:15:48 +100085#ifdef USE_VHANGUP
86 void *old;
87#endif /* USE_VHANGUP */
Ben Lindstrom6db66ff2001-08-06 23:29:16 +000088
Tim Rice81ed5182002-09-25 17:38:46 -070089#ifdef _UNICOS
Kevin Stevesf744b512001-08-14 20:31:49 +000090 if (setsid() < 0)
91 error("setsid: %.100s", strerror(errno));
Ben Lindstrom6db66ff2001-08-06 23:29:16 +000092
Darren Tucker3f9fdc72004-06-22 12:56:01 +100093 fd = open(tty, O_RDWR|O_NOCTTY);
Kevin Stevesf744b512001-08-14 20:31:49 +000094 if (fd != -1) {
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +000095 signal(SIGHUP, SIG_IGN);
Kevin Stevesf744b512001-08-14 20:31:49 +000096 ioctl(fd, TCVHUP, (char *)NULL);
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +000097 signal(SIGHUP, SIG_DFL);
Kevin Stevesf744b512001-08-14 20:31:49 +000098 setpgid(0, 0);
99 close(fd);
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000100 } else {
Kevin Stevesf744b512001-08-14 20:31:49 +0000101 error("Failed to disconnect from controlling tty.");
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000102 }
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000103
Kevin Stevesf744b512001-08-14 20:31:49 +0000104 debug("Setting controlling tty using TCSETCTTY.");
105 ioctl(*ttyfd, TCSETCTTY, NULL);
106 fd = open("/dev/tty", O_RDWR);
107 if (fd < 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000108 error("%.100s: %.100s", tty, strerror(errno));
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000109 close(*ttyfd);
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000110 *ttyfd = fd;
Tim Rice81ed5182002-09-25 17:38:46 -0700111#else /* _UNICOS */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112
Damien Miller95def091999-11-25 00:26:21 +1100113 /* First disconnect from the old controlling tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000115 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100116 if (fd >= 0) {
117 (void) ioctl(fd, TIOCNOTTY, NULL);
118 close(fd);
119 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120#endif /* TIOCNOTTY */
Damien Miller95def091999-11-25 00:26:21 +1100121 if (setsid() < 0)
122 error("setsid: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123
Damien Miller5428f641999-11-25 11:54:57 +1100124 /*
125 * Verify that we are successfully disconnected from the controlling
126 * tty.
127 */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000128 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100129 if (fd >= 0) {
130 error("Failed to disconnect from controlling tty.");
131 close(fd);
132 }
133 /* Make it our controlling tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134#ifdef TIOCSCTTY
Damien Miller95def091999-11-25 00:26:21 +1100135 debug("Setting controlling tty using TIOCSCTTY.");
Kevin Steves6c0d6272000-11-12 09:22:29 +0000136 if (ioctl(*ttyfd, TIOCSCTTY, NULL) < 0)
137 error("ioctl(TIOCSCTTY): %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138#endif /* TIOCSCTTY */
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000139#ifdef NEED_SETPGRP
Ben Lindstromb5628642000-10-18 00:02:25 +0000140 if (setpgrp(0,0) < 0)
141 error("SETPGRP %s",strerror(errno));
Darren Tucker2be1cbb2005-05-27 21:13:40 +1000142#endif /* NEED_SETPGRP */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100143#ifdef USE_VHANGUP
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +0000144 old = signal(SIGHUP, SIG_IGN);
Damien Millerd0cff3e2000-04-20 23:12:58 +1000145 vhangup();
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +0000146 signal(SIGHUP, old);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100147#endif /* USE_VHANGUP */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000148 fd = open(tty, O_RDWR);
Damien Millerd0cff3e2000-04-20 23:12:58 +1000149 if (fd < 0) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000150 error("%.100s: %.100s", tty, strerror(errno));
Damien Millerd0cff3e2000-04-20 23:12:58 +1000151 } else {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100152#ifdef USE_VHANGUP
Damien Millerd0cff3e2000-04-20 23:12:58 +1000153 close(*ttyfd);
154 *ttyfd = fd;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100155#else /* USE_VHANGUP */
Damien Miller95def091999-11-25 00:26:21 +1100156 close(fd);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100157#endif /* USE_VHANGUP */
Damien Millerd0cff3e2000-04-20 23:12:58 +1000158 }
Damien Miller95def091999-11-25 00:26:21 +1100159 /* Verify that we now have a controlling tty. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000160 fd = open(_PATH_TTY, O_WRONLY);
Damien Miller95def091999-11-25 00:26:21 +1100161 if (fd < 0)
162 error("open /dev/tty failed - could not set controlling tty: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100163 strerror(errno));
Damien Millera8e06ce2003-11-21 23:48:55 +1100164 else
Damien Miller95def091999-11-25 00:26:21 +1100165 close(fd);
Tim Rice81ed5182002-09-25 17:38:46 -0700166#endif /* _UNICOS */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000167}
168
169/* Changes the window size associated with the pty. */
170
Damien Miller4af51302000-04-16 11:18:38 +1000171void
Damien Miller95def091999-11-25 00:26:21 +1100172pty_change_window_size(int ptyfd, int row, int col,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100173 int xpixel, int ypixel)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174{
Damien Miller95def091999-11-25 00:26:21 +1100175 struct winsize w;
Ben Lindstrom8ada5d02002-06-23 21:42:50 +0000176
Damien Miller95def091999-11-25 00:26:21 +1100177 w.ws_row = row;
178 w.ws_col = col;
179 w.ws_xpixel = xpixel;
180 w.ws_ypixel = ypixel;
181 (void) ioctl(ptyfd, TIOCSWINSZ, &w);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182}
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100183
184void
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000185pty_setowner(struct passwd *pw, const char *tty)
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100186{
187 struct group *grp;
188 gid_t gid;
189 mode_t mode;
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000190 struct stat st;
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100191
192 /* Determine the group to make the owner of the tty. */
193 grp = getgrnam("tty");
194 if (grp) {
195 gid = grp->gr_gid;
196 mode = S_IRUSR | S_IWUSR | S_IWGRP;
197 } else {
198 gid = pw->pw_gid;
199 mode = S_IRUSR | S_IWUSR | S_IWGRP | S_IWOTH;
200 }
201
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000202 /*
203 * Change owner and mode of the tty as required.
Ben Lindstromc88785e2001-08-06 20:47:23 +0000204 * Warn but continue if filesystem is read-only and the uids match/
205 * tty is owned by root.
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000206 */
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000207 if (stat(tty, &st))
208 fatal("stat(%.100s) failed: %.100s", tty,
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000209 strerror(errno));
210
211 if (st.st_uid != pw->pw_uid || st.st_gid != gid) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000212 if (chown(tty, pw->pw_uid, gid) < 0) {
Damien Miller9f0f5c62001-12-21 14:45:46 +1100213 if (errno == EROFS &&
Ben Lindstrom8ada5d02002-06-23 21:42:50 +0000214 (st.st_uid == pw->pw_uid || st.st_uid == 0))
Damien Millere8cea9e2003-02-24 11:54:10 +1100215 debug("chown(%.100s, %u, %u) failed: %.100s",
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000216 tty, (u_int)pw->pw_uid, (u_int)gid,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100217 strerror(errno));
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000218 else
Ben Lindstrom5c385522002-06-23 21:23:20 +0000219 fatal("chown(%.100s, %u, %u) failed: %.100s",
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000220 tty, (u_int)pw->pw_uid, (u_int)gid,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100221 strerror(errno));
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000222 }
223 }
224
225 if ((st.st_mode & (S_IRWXU|S_IRWXG|S_IRWXO)) != mode) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000226 if (chmod(tty, mode) < 0) {
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000227 if (errno == EROFS &&
228 (st.st_mode & (S_IRGRP | S_IROTH)) == 0)
Damien Millere8cea9e2003-02-24 11:54:10 +1100229 debug("chmod(%.100s, 0%o) failed: %.100s",
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000230 tty, (u_int)mode, strerror(errno));
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000231 else
232 fatal("chmod(%.100s, 0%o) failed: %.100s",
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000233 tty, (u_int)mode, strerror(errno));
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000234 }
235 }
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100236}