freebsd-dev/crypto/openssh/sshpty.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

233 lines
5.7 KiB
C
Raw Normal View History

2021-02-14 21:00:25 +00:00
/* $OpenBSD: sshpty.c,v 1.34 2019/07/04 16:20:10 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
* Allocating a pseudo-terminal, and making it the controlling tty.
*
* As far as I am concerned, the code I have written for this software
* can be used freely for any purpose. Any derived versions of this
* software must be clearly marked as such, and if the derived work is
* incompatible with the protocol description in the RFC file, it must be
* called by a name other than "ssh" or "Secure Shell".
*/
#include "includes.h"
2006-09-30 13:29:51 +00:00
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <signal.h>
#include <errno.h>
#include <fcntl.h>
#include <grp.h>
#ifdef HAVE_PATHS_H
# include <paths.h>
#endif
#include <pwd.h>
#include <stdarg.h>
2021-04-23 19:10:38 +00:00
#include <stdio.h>
2006-09-30 13:29:51 +00:00
#include <string.h>
#include <termios.h>
2002-06-27 22:31:32 +00:00
#ifdef HAVE_UTIL_H
# include <util.h>
2006-09-30 13:29:51 +00:00
#endif
#include <unistd.h>
2002-06-27 22:31:32 +00:00
#include "sshpty.h"
#include "log.h"
2002-06-27 22:31:32 +00:00
#include "misc.h"
2002-06-27 22:31:32 +00:00
#ifdef HAVE_PTY_H
# include <pty.h>
#endif
#ifndef O_NOCTTY
#define O_NOCTTY 0
#endif
2009-02-24 18:49:27 +00:00
#ifdef __APPLE__
# include <AvailabilityMacros.h>
# if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
# define __APPLE_PRIVPTY__
# endif
#endif
/*
* Allocates and opens a pty. Returns 0 if no pty could be allocated, or
* nonzero if a pty was successfully allocated. On success, open file
* descriptors for the pty and tty sides and the name of the tty side are
* returned (the buffer must be able to hold at least 64 characters).
*/
int
2006-09-30 13:29:51 +00:00
pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, size_t namebuflen)
{
/* openpty(3) exists in OSF/1 and some other os'es */
2002-06-27 22:31:32 +00:00
char *name;
int i;
2002-06-27 22:31:32 +00:00
i = openpty(ptyfd, ttyfd, NULL, NULL, NULL);
2021-02-14 21:00:25 +00:00
if (i == -1) {
error("openpty: %.100s", strerror(errno));
return 0;
}
2002-06-27 22:31:32 +00:00
name = ttyname(*ttyfd);
if (!name)
fatal("openpty returns device for which ttyname fails.");
strlcpy(namebuf, name, namebuflen); /* possible truncation */
return 1;
}
/* Releases the tty. Its ownership is returned to root, and permissions to 0666. */
void
2004-10-28 16:03:53 +00:00
pty_release(const char *tty)
{
2015-07-02 13:18:50 +00:00
#if !defined(__APPLE_PRIVPTY__) && !defined(HAVE_OPENPTY)
2021-02-14 21:00:25 +00:00
if (chown(tty, (uid_t) 0, (gid_t) 0) == -1)
2004-10-28 16:03:53 +00:00
error("chown %.100s 0 0 failed: %.100s", tty, strerror(errno));
2021-02-14 21:00:25 +00:00
if (chmod(tty, (mode_t) 0666) == -1)
2004-10-28 16:03:53 +00:00
error("chmod %.100s 0666 failed: %.100s", tty, strerror(errno));
2015-07-02 13:18:50 +00:00
#endif /* !__APPLE_PRIVPTY__ && !HAVE_OPENPTY */
}
2004-01-07 11:10:17 +00:00
/* Makes the tty the process's controlling tty and sets it to sane modes. */
void
2004-10-28 16:03:53 +00:00
pty_make_controlling_tty(int *ttyfd, const char *tty)
{
int fd;
2002-06-27 22:31:32 +00:00
/* First disconnect from the old controlling tty. */
#ifdef TIOCNOTTY
fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
if (fd >= 0) {
(void) ioctl(fd, TIOCNOTTY, NULL);
close(fd);
}
#endif /* TIOCNOTTY */
2021-02-14 21:00:25 +00:00
if (setsid() == -1)
error("setsid: %.100s", strerror(errno));
/*
* Verify that we are successfully disconnected from the controlling
* tty.
*/
fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
if (fd >= 0) {
error("Failed to disconnect from controlling tty.");
close(fd);
}
/* Make it our controlling tty. */
#ifdef TIOCSCTTY
debug("Setting controlling tty using TIOCSCTTY.");
if (ioctl(*ttyfd, TIOCSCTTY, NULL) < 0)
error("ioctl(TIOCSCTTY): %.100s", strerror(errno));
#endif /* TIOCSCTTY */
2005-09-03 06:59:33 +00:00
#ifdef NEED_SETPGRP
2002-06-27 22:31:32 +00:00
if (setpgrp(0,0) < 0)
error("SETPGRP %s",strerror(errno));
2005-09-03 06:59:33 +00:00
#endif /* NEED_SETPGRP */
2004-10-28 16:03:53 +00:00
fd = open(tty, O_RDWR);
2021-02-14 21:00:25 +00:00
if (fd == -1)
2004-10-28 16:03:53 +00:00
error("%.100s: %.100s", tty, strerror(errno));
2017-01-31 12:33:47 +00:00
else
close(fd);
2017-01-31 12:33:47 +00:00
/* Verify that we now have a controlling tty. */
fd = open(_PATH_TTY, O_WRONLY);
2021-02-14 21:00:25 +00:00
if (fd == -1)
error("open /dev/tty failed - could not set controlling tty: %.100s",
2002-03-18 09:55:03 +00:00
strerror(errno));
2004-02-26 10:38:49 +00:00
else
close(fd);
}
/* Changes the window size associated with the pty. */
void
2006-09-30 13:29:51 +00:00
pty_change_window_size(int ptyfd, u_int row, u_int col,
u_int xpixel, u_int ypixel)
{
struct winsize w;
2002-06-29 11:34:13 +00:00
2006-09-30 13:29:51 +00:00
/* may truncate u_int -> u_short */
w.ws_row = row;
w.ws_col = col;
w.ws_xpixel = xpixel;
w.ws_ypixel = ypixel;
(void) ioctl(ptyfd, TIOCSWINSZ, &w);
}
void
2004-10-28 16:03:53 +00:00
pty_setowner(struct passwd *pw, const char *tty)
{
struct group *grp;
gid_t gid;
mode_t mode;
struct stat st;
/* Determine the group to make the owner of the tty. */
grp = getgrnam("tty");
2021-02-14 21:00:25 +00:00
if (grp == NULL)
debug("%s: no tty group", __func__);
2015-07-02 13:15:34 +00:00
gid = (grp != NULL) ? grp->gr_gid : pw->pw_gid;
2015-08-26 09:25:17 +00:00
mode = (grp != NULL) ? 0620 : 0600;
/*
* Change owner and mode of the tty as required.
2002-03-18 09:55:03 +00:00
* Warn but continue if filesystem is read-only and the uids match/
* tty is owned by root.
*/
2021-02-14 21:00:25 +00:00
if (stat(tty, &st) == -1)
2004-10-28 16:03:53 +00:00
fatal("stat(%.100s) failed: %.100s", tty,
strerror(errno));
2006-09-30 13:29:51 +00:00
#ifdef WITH_SELINUX
ssh_selinux_setup_pty(pw->pw_name, tty);
#endif
if (st.st_uid != pw->pw_uid || st.st_gid != gid) {
2021-02-14 21:00:25 +00:00
if (chown(tty, pw->pw_uid, gid) == -1) {
2002-03-18 09:55:03 +00:00
if (errno == EROFS &&
2002-06-29 11:34:13 +00:00
(st.st_uid == pw->pw_uid || st.st_uid == 0))
debug("chown(%.100s, %u, %u) failed: %.100s",
2004-10-28 16:03:53 +00:00
tty, (u_int)pw->pw_uid, (u_int)gid,
2002-03-18 09:55:03 +00:00
strerror(errno));
else
2002-06-29 11:34:13 +00:00
fatal("chown(%.100s, %u, %u) failed: %.100s",
2004-10-28 16:03:53 +00:00
tty, (u_int)pw->pw_uid, (u_int)gid,
2002-03-18 09:55:03 +00:00
strerror(errno));
}
}
if ((st.st_mode & (S_IRWXU|S_IRWXG|S_IRWXO)) != mode) {
2021-02-14 21:00:25 +00:00
if (chmod(tty, mode) == -1) {
if (errno == EROFS &&
(st.st_mode & (S_IRGRP | S_IROTH)) == 0)
debug("chmod(%.100s, 0%o) failed: %.100s",
2004-10-28 16:03:53 +00:00
tty, (u_int)mode, strerror(errno));
else
fatal("chmod(%.100s, 0%o) failed: %.100s",
2004-10-28 16:03:53 +00:00
tty, (u_int)mode, strerror(errno));
}
}
}
2017-01-31 12:33:47 +00:00
/* Disconnect from the controlling tty. */
void
disconnect_controlling_tty(void)
{
#ifdef TIOCNOTTY
int fd;
if ((fd = open(_PATH_TTY, O_RDWR | O_NOCTTY)) >= 0) {
(void) ioctl(fd, TIOCNOTTY, NULL);
close(fd);
}
#endif /* TIOCNOTTY */
}