/*--------------------------------*-C-*---------------------------------* * File: ptytty.C *----------------------------------------------------------------------* * * All portions of code are copyright by their respective author/s. * Copyright (c) 1999-2001 Geoff Wing * Copyright (c) 2004-2006 Marc Lehmann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *---------------------------------------------------------------------*/ #include "../config.h" /* NECESSARY */ #include "rxvt.h" #include #include #include #include #include #include #ifdef HAVE_SYS_IOCTL_H # include #endif #if defined(PTYS_ARE_PTMX) && defined(HAVE_SYS_STROPTS_H) # include /* for I_PUSH */ #endif #ifdef HAVE_ISASTREAM # include #endif #if defined(HAVE_PTY_H) # include #elif defined(HAVE_LIBUTIL_H) # include #elif defined(HAVE_UTIL_H) # include #endif #include #include #include "rxvtutil.h" #include "fdpass.h" #include "ptytty.h" ///////////////////////////////////////////////////////////////////////////// /* ------------------------------------------------------------------------- * * GET PSEUDO TELETYPE - MASTER AND SLAVE * * ------------------------------------------------------------------------- */ /* * Returns pty file descriptor, or -1 on failure * If successful, ttydev is set to the name of the slave device. * fd_tty _may_ also be set to an open fd to the slave device */ static inline int get_pty_streams (int *fd_tty, char **ttydev) { #if defined(HAVE_GRANTPT) && defined(HAVE_UNLOCKPT) # if defined(PTYS_ARE_GETPT) || defined(PTYS_ARE_POSIX) || defined(PTYS_ARE_PTMX) int pfd; # if defined(PTYS_ARE_GETPT) pfd = getpt(); # elif defined(PTYS_ARE_POSIX) pfd = posix_openpt (O_RDWR); # else pfd = open ("/dev/ptmx", O_RDWR | O_NOCTTY, 0); # endif if (pfd >= 0) { if (grantpt (pfd) == 0 /* change slave permissions */ && unlockpt (pfd) == 0) { /* slave now unlocked */ *ttydev = strdup (ptsname (pfd)); /* get slave's name */ return pfd; } close (pfd); } # endif #endif return -1; } static inline int get_pty_openpty (int *fd_tty, char **ttydev) { #ifdef PTYS_ARE_OPENPTY int pfd; int res; char tty_name[sizeof "/dev/pts/????\0"]; res = openpty (&pfd, fd_tty, tty_name, NULL, NULL); if (res != -1) { *ttydev = strdup (tty_name); return pfd; } #endif return -1; } static inline int get_pty__getpty (int *fd_tty, char **ttydev) { #ifdef PTYS_ARE__GETPTY int pfd; *ttydev = _getpty (&pfd, O_RDWR | O_NONBLOCK | O_NOCTTY, 0622, 0); if (*ttydev != NULL) return pfd; #endif return -1; } static inline int get_pty_ptc (int *fd_tty, char **ttydev) { #ifdef PTYS_ARE_PTC int pfd; if ((pfd = open ("/dev/ptc", O_RDWR | O_NOCTTY, 0)) >= 0) { *ttydev = strdup (ttyname (pfd)); return pfd; } #endif return -1; } static inline int get_pty_clone (int *fd_tty, char **ttydev) { #ifdef PTYS_ARE_CLONE int pfd; if ((pfd = open ("/dev/ptym/clone", O_RDWR | O_NOCTTY, 0)) >= 0) { *ttydev = strdup (ptsname (pfd)); return pfd; } #endif return -1; } static inline int get_pty_numeric (int *fd_tty, char **ttydev) { #ifdef PTYS_ARE_NUMERIC int pfd; int idx; char *c1, *c2; char pty_name[] = "/dev/ptyp???"; char tty_name[] = "/dev/ttyp???"; c1 = &(pty_name[sizeof (pty_name) - 4]); c2 = &(tty_name[sizeof (tty_name) - 4]); for (idx = 0; idx < 256; idx++) { sprintf (c1, "%d", idx); sprintf (c2, "%d", idx); if (access (tty_name, F_OK) < 0) { idx = 256; break; } if ((pfd = open (pty_name, O_RDWR | O_NOCTTY, 0)) >= 0) { if (access (tty_name, R_OK | W_OK) == 0) { *ttydev = strdup (tty_name); return pfd; } close (pfd); } } #endif return -1; } static inline int get_pty_searched (int *fd_tty, char **ttydev) { #ifdef PTYS_ARE_SEARCHED # ifndef PTYCHAR1 # define PTYCHAR1 "pqrstuvwxyz" # endif # ifndef PTYCHAR2 # define PTYCHAR2 "0123456789abcdef" # endif int pfd; const char *c1, *c2; char pty_name[] = "/dev/pty??"; char tty_name[] = "/dev/tty??"; for (c1 = PTYCHAR1; *c1; c1++) { pty_name[ (sizeof (pty_name) - 3)] = tty_name[ (sizeof (pty_name) - 3)] = *c1; for (c2 = PTYCHAR2; *c2; c2++) { pty_name[ (sizeof (pty_name) - 2)] = tty_name[ (sizeof (pty_name) - 2)] = *c2; if ((pfd = open (pty_name, O_RDWR | O_NOCTTY, 0)) >= 0) { if (access (tty_name, R_OK | W_OK) == 0) { *ttydev = strdup (tty_name); return pfd; } close (pfd); } } } #endif return -1; } static int get_pty (int *fd_tty, char **ttydev) { int pfd; if ((pfd = get_pty_streams (fd_tty, ttydev)) != -1 || (pfd = get_pty_openpty (fd_tty, ttydev)) != -1 || (pfd = get_pty__getpty (fd_tty, ttydev)) != -1 || (pfd = get_pty_ptc (fd_tty, ttydev)) != -1 || (pfd = get_pty_clone (fd_tty, ttydev)) != -1 || (pfd = get_pty_numeric (fd_tty, ttydev)) != -1 || (pfd = get_pty_searched (fd_tty, ttydev)) != -1) return pfd; return -1; } /*----------------------------------------------------------------------*/ /* * Returns tty file descriptor, or -1 on failure */ static int get_tty (char *ttydev) { return open (ttydev, O_RDWR | O_NOCTTY, 0); } /*----------------------------------------------------------------------*/ /* * Make our tty a controlling tty so that /dev/tty points to us */ static int control_tty (int fd_tty) { setsid (); #if defined(PTYS_ARE_PTMX) && defined(I_PUSH) /* * Push STREAMS modules: * ptem: pseudo-terminal hardware emulation module. * ldterm: standard terminal line discipline. * ttcompat: V7, 4BSD and XENIX STREAMS compatibility module. * * After we push the STREAMS modules, the first open () on the slave side * (i.e. the next section between the dashes giving us "tty opened OK") * should make the "ptem" (or "ldterm" depending upon either which OS * version or which set of manual pages you have) module give us a * controlling terminal. We must already have close ()d the master side * fd in this child process before we push STREAMS modules on because the * documentation is really unclear about whether it is any close () on * the master side or the last close () - i.e. a proper STREAMS dismantling * close () - on the master side which causes a hang up to be sent * through - Geoff Wing */ # ifdef HAVE_ISASTREAM if (isastream (fd_tty) == 1) # endif { ioctl (fd_tty, I_PUSH, "ptem"); ioctl (fd_tty, I_PUSH, "ldterm"); ioctl (fd_tty, I_PUSH, "ttcompat"); } #endif ioctl (fd_tty, TIOCSCTTY, NULL); int fd = open ("/dev/tty", O_WRONLY); if (fd < 0) return -1; /* fatal */ close (fd); return 0; } void rxvt_ptytty::close_tty () { if (tty < 0) return; close (tty); tty = -1; } bool rxvt_ptytty::make_controlling_tty () { return control_tty (tty) >= 0; } void rxvt_ptytty::set_utf8_mode (bool on) { #ifdef IUTF8 if (pty < 0) return; struct termios tio; if (tcgetattr (pty, &tio) != -1) { tcflag_t new_cflag = tio.c_iflag; if (on) new_cflag |= IUTF8; else new_cflag &= ~IUTF8; if (new_cflag != tio.c_iflag) { tio.c_iflag = new_cflag; tcsetattr (pty, TCSANOW, &tio); } } #endif } static struct ttyconf { gid_t gid; mode_t mode; ttyconf () { #ifdef TTY_GID_SUPPORT struct group *gr = getgrnam ("tty"); if (gr) { /* change group ownership of tty to "tty" */ mode = S_IRUSR | S_IWUSR | S_IWGRP; gid = gr->gr_gid; } else #endif /* TTY_GID_SUPPORT */ { mode = S_IRUSR | S_IWUSR | S_IWGRP | S_IWOTH; gid = 0; } } } ttyconf; rxvt_ptytty_unix::rxvt_ptytty_unix () { pty = tty = -1; name = 0; #if UTMP_SUPPORT cmd_pid = 0; #endif } rxvt_ptytty_unix::~rxvt_ptytty_unix () { #if UTMP_SUPPORT logout (); #endif put (); } void rxvt_ptytty_unix::put () { chmod (name, RESTORE_TTY_MODE); chown (name, 0, ttyconf.gid); close_tty (); if (pty >= 0) close (pty); free (name); pty = tty = -1; name = 0; } bool rxvt_ptytty_unix::get () { /* get master (pty) */ if ((pty = get_pty (&tty, &name)) < 0) return false; fcntl (pty, F_SETFL, O_NONBLOCK); /* get slave (tty) */ if (tty < 0) { #ifndef NO_SETOWNER_TTYDEV chown (name, getuid (), ttyconf.gid); /* fail silently */ chmod (name, ttyconf.mode); # ifdef HAVE_REVOKE revoke (name); # endif #endif if ((tty = get_tty (name)) < 0) { put (); return false; } } return true; } #if PTYTTY_HELPER static int sock_fd; static int pid; struct command { enum { get, login, destroy } type; rxvt_ptytty *id; bool login_shell; int cmd_pid; char hostname[512]; // arbitrary, but should be plenty }; struct rxvt_ptytty_proxy : zero_initialized, rxvt_ptytty { rxvt_ptytty *id; ~rxvt_ptytty_proxy (); bool get (); void login (int cmd_pid, bool login_shell, const char *hostname); }; bool rxvt_ptytty_proxy::get () { command cmd; cmd.type = command::get; write (sock_fd, &cmd, sizeof (cmd)); if (read (sock_fd, &id, sizeof (id)) != sizeof (id)) rxvt_fatal ("protocol error while creating pty using helper process, aborting.\n"); if (!id) return false; if ((pty = rxvt_recv_fd (sock_fd)) < 0 || (tty = rxvt_recv_fd (sock_fd)) < 0) rxvt_fatal ("protocol error while reading pty/tty fds from helper process, aborting.\n"); return true; } void rxvt_ptytty_proxy::login (int cmd_pid, bool login_shell, const char *hostname) { command cmd; cmd.type = command::login; cmd.id = id; cmd.cmd_pid = cmd_pid; cmd.login_shell = login_shell; strncpy (cmd.hostname, hostname, sizeof (cmd.hostname)); write (sock_fd, &cmd, sizeof (cmd)); } rxvt_ptytty_proxy::~rxvt_ptytty_proxy () { command cmd; cmd.type = command::destroy; cmd.id = id; write (sock_fd, &cmd, sizeof (cmd)); } static void serve () { command cmd; vector ptys; while (read (sock_fd, &cmd, sizeof (command)) == sizeof (command)) { if (cmd.type == command::get) { // -> id ptyfd ttyfd cmd.id = new rxvt_ptytty_unix; if (cmd.id->get ()) { write (sock_fd, &cmd.id, sizeof (cmd.id)); ptys.push_back (cmd.id); rxvt_send_fd (sock_fd, cmd.id->pty); rxvt_send_fd (sock_fd, cmd.id->tty); } else { delete cmd.id; cmd.id = 0; write (sock_fd, &cmd.id, sizeof (cmd.id)); } } else if (cmd.type == command::login) { #if UTMP_SUPPORT if (find (ptys.begin (), ptys.end (), cmd.id)) { cmd.hostname[sizeof (cmd.hostname) - 1] = 0; cmd.id->login (cmd.cmd_pid, cmd.login_shell, cmd.hostname); } #endif } else if (cmd.type == command::destroy) { rxvt_ptytty **pty = find (ptys.begin (), ptys.end (), cmd.id); if (pty) { delete *pty; ptys.erase (pty); } } else break; } // destroy all ptys for (rxvt_ptytty **i = ptys.end (); i-- > ptys.begin (); ) delete *i; } void rxvt_ptytty_server () { int sv[2]; if (socketpair (AF_UNIX, SOCK_STREAM, 0, sv)) rxvt_fatal ("could not create socket to communicate with pty/sessiondb helper, aborting.\n"); pid = fork (); if (pid < 0) rxvt_fatal ("could not create pty/sessiondb helper process, aborting.\n"); if (pid) { // client, urxvt sock_fd = sv[0]; close (sv[1]); fcntl (sock_fd, F_SETFD, FD_CLOEXEC); } else { // server, pty-helper sock_fd = sv[1]; for (int fd = 0; fd < 1023; fd++) if (fd != sock_fd) close (fd); serve (); _exit (EXIT_SUCCESS); } } #endif // a "factory" *g* rxvt_ptytty * rxvt_new_ptytty () { #if PTYTTY_HELPER if (pid > 0) // use helper process return new rxvt_ptytty_proxy; else #endif return new rxvt_ptytty_unix; } /*----------------------- end-of-file (C source) -----------------------*/