1 /* $OpenBSD: sshpty.c,v 1.28 2007/09/11 23:49:09 stevesk Exp $ */
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * Allocating a pseudo-terminal, and making it the controlling tty.
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
17 #include <sys/types.h>
18 #include <sys/ioctl.h>
50 * Allocates and opens a pty. Returns 0 if no pty could be allocated, or
51 * nonzero if a pty was successfully allocated. On success, open file
52 * descriptors for the pty and tty sides and the name of the tty side are
53 * returned (the buffer must be able to hold at least 64 characters).
57 pty_allocate(int *ptyfd
, int *ttyfd
, char *namebuf
, size_t namebuflen
)
59 /* openpty(3) exists in OSF/1 and some other os'es */
63 i
= openpty(ptyfd
, ttyfd
, NULL
, NULL
, NULL
);
65 error("openpty: %.100s", strerror(errno
));
68 name
= ttyname(*ttyfd
);
70 fatal("openpty returns device for which ttyname fails.");
72 strlcpy(namebuf
, name
, namebuflen
); /* possible truncation */
76 /* Releases the tty. Its ownership is returned to root, and permissions to 0666. */
79 pty_release(const char *tty
)
81 if (chown(tty
, (uid_t
) 0, (gid_t
) 0) < 0)
82 error("chown %.100s 0 0 failed: %.100s", tty
, strerror(errno
));
83 if (chmod(tty
, (mode_t
) 0666) < 0)
84 error("chmod %.100s 0666 failed: %.100s", tty
, strerror(errno
));
87 /* Makes the tty the process's controlling tty and sets it to sane modes. */
90 pty_make_controlling_tty(int *ttyfd
, const char *tty
)
95 #endif /* USE_VHANGUP */
99 error("setsid: %.100s", strerror(errno
));
101 fd
= open(tty
, O_RDWR
|O_NOCTTY
);
103 signal(SIGHUP
, SIG_IGN
);
104 ioctl(fd
, TCVHUP
, (char *)NULL
);
105 signal(SIGHUP
, SIG_DFL
);
109 error("Failed to disconnect from controlling tty.");
112 debug("Setting controlling tty using TCSETCTTY.");
113 ioctl(*ttyfd
, TCSETCTTY
, NULL
);
114 fd
= open("/dev/tty", O_RDWR
);
116 error("%.100s: %.100s", tty
, strerror(errno
));
121 /* First disconnect from the old controlling tty. */
123 fd
= open(_PATH_TTY
, O_RDWR
| O_NOCTTY
);
125 (void) ioctl(fd
, TIOCNOTTY
, NULL
);
128 #endif /* TIOCNOTTY */
130 error("setsid: %.100s", strerror(errno
));
133 * Verify that we are successfully disconnected from the controlling
136 fd
= open(_PATH_TTY
, O_RDWR
| O_NOCTTY
);
138 error("Failed to disconnect from controlling tty.");
141 /* Make it our controlling tty. */
143 debug("Setting controlling tty using TIOCSCTTY.");
144 if (ioctl(*ttyfd
, TIOCSCTTY
, NULL
) < 0)
145 error("ioctl(TIOCSCTTY): %.100s", strerror(errno
));
146 #endif /* TIOCSCTTY */
148 if (setpgrp(0,0) < 0)
149 error("SETPGRP %s",strerror(errno
));
150 #endif /* NEED_SETPGRP */
152 old
= signal(SIGHUP
, SIG_IGN
);
155 #endif /* USE_VHANGUP */
156 fd
= open(tty
, O_RDWR
);
158 error("%.100s: %.100s", tty
, strerror(errno
));
163 #else /* USE_VHANGUP */
165 #endif /* USE_VHANGUP */
167 /* Verify that we now have a controlling tty. */
168 fd
= open(_PATH_TTY
, O_WRONLY
);
170 error("open /dev/tty failed - could not set controlling tty: %.100s",
177 /* Changes the window size associated with the pty. */
180 pty_change_window_size(int ptyfd
, u_int row
, u_int col
,
181 u_int xpixel
, u_int ypixel
)
185 /* may truncate u_int -> u_short */
188 w
.ws_xpixel
= xpixel
;
189 w
.ws_ypixel
= ypixel
;
190 (void) ioctl(ptyfd
, TIOCSWINSZ
, &w
);
194 pty_setowner(struct passwd
*pw
, const char *tty
)
201 /* Determine the group to make the owner of the tty. */
202 grp
= getgrnam("tty");
205 mode
= S_IRUSR
| S_IWUSR
| S_IWGRP
;
208 mode
= S_IRUSR
| S_IWUSR
| S_IWGRP
| S_IWOTH
;
212 * Change owner and mode of the tty as required.
213 * Warn but continue if filesystem is read-only and the uids match/
214 * tty is owned by root.
217 fatal("stat(%.100s) failed: %.100s", tty
,
221 ssh_selinux_setup_pty(pw
->pw_name
, tty
);
224 if (st
.st_uid
!= pw
->pw_uid
|| st
.st_gid
!= gid
) {
225 if (chown(tty
, pw
->pw_uid
, gid
) < 0) {
226 if (errno
== EROFS
&&
227 (st
.st_uid
== pw
->pw_uid
|| st
.st_uid
== 0))
228 debug("chown(%.100s, %u, %u) failed: %.100s",
229 tty
, (u_int
)pw
->pw_uid
, (u_int
)gid
,
232 fatal("chown(%.100s, %u, %u) failed: %.100s",
233 tty
, (u_int
)pw
->pw_uid
, (u_int
)gid
,
238 if ((st
.st_mode
& (S_IRWXU
|S_IRWXG
|S_IRWXO
)) != mode
) {
239 if (chmod(tty
, mode
) < 0) {
240 if (errno
== EROFS
&&
241 (st
.st_mode
& (S_IRGRP
| S_IROTH
)) == 0)
242 debug("chmod(%.100s, 0%o) failed: %.100s",
243 tty
, (u_int
)mode
, strerror(errno
));
245 fatal("chmod(%.100s, 0%o) failed: %.100s",
246 tty
, (u_int
)mode
, strerror(errno
));