2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * Allocating a pseudo-terminal, and making it the controlling tty.
7 * 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".
15 RCSID("$OpenBSD: sshpty.c,v 1.12 2004/06/21 17:36:31 avsm Exp $");
19 #endif /* HAVE_UTIL_H */
34 * Allocates and opens a pty. Returns 0 if no pty could be allocated, or
35 * nonzero if a pty was successfully allocated. On success, open file
36 * descriptors for the pty and tty sides and the name of the tty side are
37 * returned (the buffer must be able to hold at least 64 characters).
41 pty_allocate(int *ptyfd
, int *ttyfd
, char *namebuf
, int namebuflen
)
43 /* openpty(3) exists in OSF/1 and some other os'es */
47 i
= openpty(ptyfd
, ttyfd
, NULL
, NULL
, NULL
);
49 error("openpty: %.100s", strerror(errno
));
52 name
= ttyname(*ttyfd
);
54 fatal("openpty returns device for which ttyname fails.");
56 strlcpy(namebuf
, name
, namebuflen
); /* possible truncation */
60 /* Releases the tty. Its ownership is returned to root, and permissions to 0666. */
63 pty_release(const char *tty
)
65 if (chown(tty
, (uid_t
) 0, (gid_t
) 0) < 0)
66 error("chown %.100s 0 0 failed: %.100s", tty
, strerror(errno
));
67 if (chmod(tty
, (mode_t
) 0666) < 0)
68 error("chmod %.100s 0666 failed: %.100s", tty
, strerror(errno
));
71 /* Makes the tty the process's controlling tty and sets it to sane modes. */
74 pty_make_controlling_tty(int *ttyfd
, const char *tty
)
79 #endif /* USE_VHANGUP */
83 error("setsid: %.100s", strerror(errno
));
85 fd
= open(tty
, O_RDWR
|O_NOCTTY
);
87 signal(SIGHUP
, SIG_IGN
);
88 ioctl(fd
, TCVHUP
, (char *)NULL
);
89 signal(SIGHUP
, SIG_DFL
);
93 error("Failed to disconnect from controlling tty.");
96 debug("Setting controlling tty using TCSETCTTY.");
97 ioctl(*ttyfd
, TCSETCTTY
, NULL
);
98 fd
= open("/dev/tty", O_RDWR
);
100 error("%.100s: %.100s", tty
, strerror(errno
));
105 /* First disconnect from the old controlling tty. */
107 fd
= open(_PATH_TTY
, O_RDWR
| O_NOCTTY
);
109 (void) ioctl(fd
, TIOCNOTTY
, NULL
);
112 #endif /* TIOCNOTTY */
114 error("setsid: %.100s", strerror(errno
));
117 * Verify that we are successfully disconnected from the controlling
120 fd
= open(_PATH_TTY
, O_RDWR
| O_NOCTTY
);
122 error("Failed to disconnect from controlling tty.");
125 /* Make it our controlling tty. */
127 debug("Setting controlling tty using TIOCSCTTY.");
128 if (ioctl(*ttyfd
, TIOCSCTTY
, NULL
) < 0)
129 error("ioctl(TIOCSCTTY): %.100s", strerror(errno
));
130 #endif /* TIOCSCTTY */
132 if (setpgrp(0,0) < 0)
133 error("SETPGRP %s",strerror(errno
));
134 #endif /* NEED_SETPGRP */
136 old
= signal(SIGHUP
, SIG_IGN
);
139 #endif /* USE_VHANGUP */
140 fd
= open(tty
, O_RDWR
);
142 error("%.100s: %.100s", tty
, strerror(errno
));
147 #else /* USE_VHANGUP */
149 #endif /* USE_VHANGUP */
151 /* Verify that we now have a controlling tty. */
152 fd
= open(_PATH_TTY
, O_WRONLY
);
154 error("open /dev/tty failed - could not set controlling tty: %.100s",
161 /* Changes the window size associated with the pty. */
164 pty_change_window_size(int ptyfd
, int row
, int col
,
165 int xpixel
, int ypixel
)
171 w
.ws_xpixel
= xpixel
;
172 w
.ws_ypixel
= ypixel
;
173 (void) ioctl(ptyfd
, TIOCSWINSZ
, &w
);
177 pty_setowner(struct passwd
*pw
, const char *tty
)
184 /* Determine the group to make the owner of the tty. */
185 grp
= getgrnam("tty");
188 mode
= S_IRUSR
| S_IWUSR
| S_IWGRP
;
191 mode
= S_IRUSR
| S_IWUSR
| S_IWGRP
| S_IWOTH
;
195 * Change owner and mode of the tty as required.
196 * Warn but continue if filesystem is read-only and the uids match/
197 * tty is owned by root.
200 fatal("stat(%.100s) failed: %.100s", tty
,
203 if (st
.st_uid
!= pw
->pw_uid
|| st
.st_gid
!= gid
) {
204 if (chown(tty
, pw
->pw_uid
, gid
) < 0) {
205 if (errno
== EROFS
&&
206 (st
.st_uid
== pw
->pw_uid
|| st
.st_uid
== 0))
207 debug("chown(%.100s, %u, %u) failed: %.100s",
208 tty
, (u_int
)pw
->pw_uid
, (u_int
)gid
,
211 fatal("chown(%.100s, %u, %u) failed: %.100s",
212 tty
, (u_int
)pw
->pw_uid
, (u_int
)gid
,
217 if ((st
.st_mode
& (S_IRWXU
|S_IRWXG
|S_IRWXO
)) != mode
) {
218 if (chmod(tty
, mode
) < 0) {
219 if (errno
== EROFS
&&
220 (st
.st_mode
& (S_IRGRP
| S_IROTH
)) == 0)
221 debug("chmod(%.100s, 0%o) failed: %.100s",
222 tty
, (u_int
)mode
, strerror(errno
));
224 fatal("chmod(%.100s, 0%o) failed: %.100s",
225 tty
, (u_int
)mode
, strerror(errno
));