17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5facf4a8dSllai1 * Common Development and Distribution License (the "License"). 6facf4a8dSllai1 * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22*d9e728a2Sgjelinek * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate /* 297c478bd9Sstevel@tonic-gate * zlogin provides three types of login which allow users in the global 307c478bd9Sstevel@tonic-gate * zone to access non-global zones. 317c478bd9Sstevel@tonic-gate * 327c478bd9Sstevel@tonic-gate * - "interactive login" is similar to rlogin(1); for example, the user could 337c478bd9Sstevel@tonic-gate * issue 'zlogin my-zone' or 'zlogin -e ^ -l me my-zone'. The user is 347c478bd9Sstevel@tonic-gate * granted a new pty (which is then shoved into the zone), and an I/O 357c478bd9Sstevel@tonic-gate * loop between parent and child processes takes care of the interactive 367c478bd9Sstevel@tonic-gate * session. In this mode, login(1) (and its -c option, which means 377c478bd9Sstevel@tonic-gate * "already authenticated") is employed to take care of the initialization 387c478bd9Sstevel@tonic-gate * of the user's session. 397c478bd9Sstevel@tonic-gate * 407c478bd9Sstevel@tonic-gate * - "non-interactive login" is similar to su(1M); the user could issue 417c478bd9Sstevel@tonic-gate * 'zlogin my-zone ls -l' and the command would be run as specified. 427c478bd9Sstevel@tonic-gate * In this mode, zlogin sets up pipes as the communication channel, and 437c478bd9Sstevel@tonic-gate * 'su' is used to do the login setup work. 447c478bd9Sstevel@tonic-gate * 457c478bd9Sstevel@tonic-gate * - "console login" is the equivalent to accessing the tip line for a 467c478bd9Sstevel@tonic-gate * zone. For example, the user can issue 'zlogin -C my-zone'. 477c478bd9Sstevel@tonic-gate * In this mode, zlogin contacts the zoneadmd process via unix domain 487c478bd9Sstevel@tonic-gate * socket. If zoneadmd is not running, it starts it. This allows the 497c478bd9Sstevel@tonic-gate * console to be available anytime the zone is installed, regardless of 507c478bd9Sstevel@tonic-gate * whether it is running. 517c478bd9Sstevel@tonic-gate */ 527c478bd9Sstevel@tonic-gate 537c478bd9Sstevel@tonic-gate #include <sys/socket.h> 547c478bd9Sstevel@tonic-gate #include <sys/termios.h> 557c478bd9Sstevel@tonic-gate #include <sys/utsname.h> 567c478bd9Sstevel@tonic-gate #include <sys/stat.h> 577c478bd9Sstevel@tonic-gate #include <sys/types.h> 587c478bd9Sstevel@tonic-gate #include <sys/contract/process.h> 597c478bd9Sstevel@tonic-gate #include <sys/ctfs.h> 609acbbeafSnn35248 #include <sys/brand.h> 617c478bd9Sstevel@tonic-gate 627c478bd9Sstevel@tonic-gate #include <alloca.h> 637c478bd9Sstevel@tonic-gate #include <assert.h> 647c478bd9Sstevel@tonic-gate #include <ctype.h> 657c478bd9Sstevel@tonic-gate #include <door.h> 667c478bd9Sstevel@tonic-gate #include <errno.h> 677c478bd9Sstevel@tonic-gate #include <poll.h> 687c478bd9Sstevel@tonic-gate #include <priv.h> 697c478bd9Sstevel@tonic-gate #include <pwd.h> 707c478bd9Sstevel@tonic-gate #include <unistd.h> 717c478bd9Sstevel@tonic-gate #include <utmpx.h> 727c478bd9Sstevel@tonic-gate #include <sac.h> 737c478bd9Sstevel@tonic-gate #include <signal.h> 747c478bd9Sstevel@tonic-gate #include <stdarg.h> 757c478bd9Sstevel@tonic-gate #include <stdio.h> 767c478bd9Sstevel@tonic-gate #include <stdlib.h> 777c478bd9Sstevel@tonic-gate #include <string.h> 787c478bd9Sstevel@tonic-gate #include <strings.h> 797c478bd9Sstevel@tonic-gate #include <stropts.h> 807c478bd9Sstevel@tonic-gate #include <wait.h> 817c478bd9Sstevel@tonic-gate #include <zone.h> 827c478bd9Sstevel@tonic-gate #include <fcntl.h> 837c478bd9Sstevel@tonic-gate #include <libdevinfo.h> 847c478bd9Sstevel@tonic-gate #include <libintl.h> 857c478bd9Sstevel@tonic-gate #include <locale.h> 867c478bd9Sstevel@tonic-gate #include <libzonecfg.h> 877c478bd9Sstevel@tonic-gate #include <libcontract.h> 889acbbeafSnn35248 #include <libbrand.h> 897c478bd9Sstevel@tonic-gate 907c478bd9Sstevel@tonic-gate static int masterfd; 917c478bd9Sstevel@tonic-gate static struct termios save_termios; 927c478bd9Sstevel@tonic-gate static struct termios effective_termios; 937c478bd9Sstevel@tonic-gate static int save_fd; 947c478bd9Sstevel@tonic-gate static struct winsize winsize; 957c478bd9Sstevel@tonic-gate static volatile int dead; 967c478bd9Sstevel@tonic-gate static volatile pid_t child_pid = -1; 977c478bd9Sstevel@tonic-gate static int interactive = 0; 987c478bd9Sstevel@tonic-gate static priv_set_t *dropprivs; 997c478bd9Sstevel@tonic-gate 1007c478bd9Sstevel@tonic-gate static int nocmdchar = 0; 1017c478bd9Sstevel@tonic-gate static int failsafe = 0; 1027c478bd9Sstevel@tonic-gate static char cmdchar = '~'; 1037c478bd9Sstevel@tonic-gate 1047c478bd9Sstevel@tonic-gate static int pollerr = 0; 1057c478bd9Sstevel@tonic-gate 1067c478bd9Sstevel@tonic-gate static const char *pname; 1077c478bd9Sstevel@tonic-gate 1087c478bd9Sstevel@tonic-gate #if !defined(TEXT_DOMAIN) /* should be defined by cc -D */ 1097c478bd9Sstevel@tonic-gate #define TEXT_DOMAIN "SYS_TEST" /* Use this only if it wasn't */ 1107c478bd9Sstevel@tonic-gate #endif 1117c478bd9Sstevel@tonic-gate 1127c478bd9Sstevel@tonic-gate #define SUPATH "/usr/bin/su" 1137c478bd9Sstevel@tonic-gate #define FAILSAFESHELL "/sbin/sh" 1147c478bd9Sstevel@tonic-gate #define DEFAULTSHELL "/sbin/sh" 1157c478bd9Sstevel@tonic-gate #define DEF_PATH "/usr/sbin:/usr/bin" 1167c478bd9Sstevel@tonic-gate 117e6e67599Sdp #define ZLOGIN_BUFSIZ 8192 118e6e67599Sdp 1197c478bd9Sstevel@tonic-gate /* 1207c478bd9Sstevel@tonic-gate * See canonify() below. CANONIFY_LEN is the maximum length that a 1217c478bd9Sstevel@tonic-gate * "canonical" sequence will expand to (backslash, three octal digits, NUL). 1227c478bd9Sstevel@tonic-gate */ 1237c478bd9Sstevel@tonic-gate #define CANONIFY_LEN 5 1247c478bd9Sstevel@tonic-gate 1257c478bd9Sstevel@tonic-gate static void 1267c478bd9Sstevel@tonic-gate usage(void) 1277c478bd9Sstevel@tonic-gate { 1287c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("usage: %s [ -CES ] [ -e cmdchar ] " 1297c478bd9Sstevel@tonic-gate "[-l user] zonename [command [args ...] ]\n"), pname); 1307c478bd9Sstevel@tonic-gate exit(2); 1317c478bd9Sstevel@tonic-gate } 1327c478bd9Sstevel@tonic-gate 1337c478bd9Sstevel@tonic-gate static const char * 1347c478bd9Sstevel@tonic-gate getpname(const char *arg0) 1357c478bd9Sstevel@tonic-gate { 1367c478bd9Sstevel@tonic-gate const char *p = strrchr(arg0, '/'); 1377c478bd9Sstevel@tonic-gate 1387c478bd9Sstevel@tonic-gate if (p == NULL) 1397c478bd9Sstevel@tonic-gate p = arg0; 1407c478bd9Sstevel@tonic-gate else 1417c478bd9Sstevel@tonic-gate p++; 1427c478bd9Sstevel@tonic-gate 1437c478bd9Sstevel@tonic-gate pname = p; 1447c478bd9Sstevel@tonic-gate return (p); 1457c478bd9Sstevel@tonic-gate } 1467c478bd9Sstevel@tonic-gate 1477c478bd9Sstevel@tonic-gate static void 1487c478bd9Sstevel@tonic-gate zerror(const char *fmt, ...) 1497c478bd9Sstevel@tonic-gate { 1507c478bd9Sstevel@tonic-gate va_list alist; 1517c478bd9Sstevel@tonic-gate 1527c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: ", pname); 1537c478bd9Sstevel@tonic-gate va_start(alist, fmt); 1547c478bd9Sstevel@tonic-gate (void) vfprintf(stderr, fmt, alist); 1557c478bd9Sstevel@tonic-gate va_end(alist); 1567c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "\n"); 1577c478bd9Sstevel@tonic-gate } 1587c478bd9Sstevel@tonic-gate 1597c478bd9Sstevel@tonic-gate static void 1607c478bd9Sstevel@tonic-gate zperror(const char *str) 1617c478bd9Sstevel@tonic-gate { 1627c478bd9Sstevel@tonic-gate const char *estr; 1637c478bd9Sstevel@tonic-gate 1647c478bd9Sstevel@tonic-gate if ((estr = strerror(errno)) != NULL) 1657c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: %s: %s\n", pname, str, estr); 1667c478bd9Sstevel@tonic-gate else 1677c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: %s: errno %d\n", pname, str, errno); 1687c478bd9Sstevel@tonic-gate } 1697c478bd9Sstevel@tonic-gate 1707c478bd9Sstevel@tonic-gate /* 1717c478bd9Sstevel@tonic-gate * The first part of our privilege dropping scheme needs to be called before 1727c478bd9Sstevel@tonic-gate * fork(), since we must have it for security; we don't want to be surprised 1737c478bd9Sstevel@tonic-gate * later that we couldn't allocate the privset. 1747c478bd9Sstevel@tonic-gate */ 1757c478bd9Sstevel@tonic-gate static int 1767c478bd9Sstevel@tonic-gate prefork_dropprivs() 1777c478bd9Sstevel@tonic-gate { 1787c478bd9Sstevel@tonic-gate if ((dropprivs = priv_allocset()) == NULL) 1797c478bd9Sstevel@tonic-gate return (1); 1807c478bd9Sstevel@tonic-gate priv_emptyset(dropprivs); 1817c478bd9Sstevel@tonic-gate 1827c478bd9Sstevel@tonic-gate /* 1837c478bd9Sstevel@tonic-gate * We need these privileges in order to query session information and 1847c478bd9Sstevel@tonic-gate * send signals. 1857c478bd9Sstevel@tonic-gate */ 1867c478bd9Sstevel@tonic-gate if (interactive == 0) { 1877c478bd9Sstevel@tonic-gate if (priv_addset(dropprivs, "proc_session") == -1) 1887c478bd9Sstevel@tonic-gate return (1); 1897c478bd9Sstevel@tonic-gate if (priv_addset(dropprivs, "proc_zone") == -1) 1907c478bd9Sstevel@tonic-gate return (1); 1917c478bd9Sstevel@tonic-gate if (priv_addset(dropprivs, "proc_owner") == -1) 1927c478bd9Sstevel@tonic-gate return (1); 1937c478bd9Sstevel@tonic-gate } 1947c478bd9Sstevel@tonic-gate 1957c478bd9Sstevel@tonic-gate return (0); 1967c478bd9Sstevel@tonic-gate } 1977c478bd9Sstevel@tonic-gate 1987c478bd9Sstevel@tonic-gate /* 1997c478bd9Sstevel@tonic-gate * The second part of the privilege drop. We are paranoid about being attacked 2007c478bd9Sstevel@tonic-gate * by the zone, so we drop all privileges. This should prevent a compromise 2017c478bd9Sstevel@tonic-gate * which gets us to fork(), exec(), symlink(), etc. 2027c478bd9Sstevel@tonic-gate */ 2037c478bd9Sstevel@tonic-gate static void 2047c478bd9Sstevel@tonic-gate postfork_dropprivs() 2057c478bd9Sstevel@tonic-gate { 2067c478bd9Sstevel@tonic-gate if ((setppriv(PRIV_SET, PRIV_PERMITTED, dropprivs)) == -1) { 2077c478bd9Sstevel@tonic-gate zperror(gettext("Warning: could not set permitted privileges")); 2087c478bd9Sstevel@tonic-gate } 2097c478bd9Sstevel@tonic-gate if ((setppriv(PRIV_SET, PRIV_LIMIT, dropprivs)) == -1) { 2107c478bd9Sstevel@tonic-gate zperror(gettext("Warning: could not set limit privileges")); 2117c478bd9Sstevel@tonic-gate } 2127c478bd9Sstevel@tonic-gate if ((setppriv(PRIV_SET, PRIV_INHERITABLE, dropprivs)) == -1) { 2137c478bd9Sstevel@tonic-gate zperror(gettext("Warning: could not set inheritable " 2147c478bd9Sstevel@tonic-gate "privileges")); 2157c478bd9Sstevel@tonic-gate } 2167c478bd9Sstevel@tonic-gate } 2177c478bd9Sstevel@tonic-gate 2187c478bd9Sstevel@tonic-gate /* 2197c478bd9Sstevel@tonic-gate * Create the unix domain socket and call the zoneadmd server; handshake 2207c478bd9Sstevel@tonic-gate * with it to determine whether it will allow us to connect. 2217c478bd9Sstevel@tonic-gate */ 2227c478bd9Sstevel@tonic-gate static int 2237c478bd9Sstevel@tonic-gate get_console_master(const char *zname) 2247c478bd9Sstevel@tonic-gate { 2257c478bd9Sstevel@tonic-gate int sockfd = -1; 2267c478bd9Sstevel@tonic-gate struct sockaddr_un servaddr; 2277c478bd9Sstevel@tonic-gate char clientid[MAXPATHLEN]; 2287c478bd9Sstevel@tonic-gate char handshake[MAXPATHLEN], c; 2297c478bd9Sstevel@tonic-gate int msglen; 2307c478bd9Sstevel@tonic-gate int i = 0, err = 0; 2317c478bd9Sstevel@tonic-gate 2327c478bd9Sstevel@tonic-gate if ((sockfd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) { 2337c478bd9Sstevel@tonic-gate zperror(gettext("could not create socket")); 2347c478bd9Sstevel@tonic-gate return (-1); 2357c478bd9Sstevel@tonic-gate } 2367c478bd9Sstevel@tonic-gate 2377c478bd9Sstevel@tonic-gate bzero(&servaddr, sizeof (servaddr)); 2387c478bd9Sstevel@tonic-gate servaddr.sun_family = AF_UNIX; 2397c478bd9Sstevel@tonic-gate (void) snprintf(servaddr.sun_path, sizeof (servaddr.sun_path), 2407c478bd9Sstevel@tonic-gate "%s/%s.console_sock", ZONES_TMPDIR, zname); 2417c478bd9Sstevel@tonic-gate 2427c478bd9Sstevel@tonic-gate if (connect(sockfd, (struct sockaddr *)&servaddr, 2437c478bd9Sstevel@tonic-gate sizeof (servaddr)) == -1) { 2447c478bd9Sstevel@tonic-gate zperror(gettext("Could not connect to zone console")); 2457c478bd9Sstevel@tonic-gate goto bad; 2467c478bd9Sstevel@tonic-gate } 2477c478bd9Sstevel@tonic-gate masterfd = sockfd; 2487c478bd9Sstevel@tonic-gate 2497c478bd9Sstevel@tonic-gate msglen = snprintf(clientid, sizeof (clientid), "IDENT %lu %s\n", 2507c478bd9Sstevel@tonic-gate getpid(), setlocale(LC_MESSAGES, NULL)); 2517c478bd9Sstevel@tonic-gate 2527c478bd9Sstevel@tonic-gate if (msglen >= sizeof (clientid) || msglen < 0) { 2537c478bd9Sstevel@tonic-gate zerror("protocol error"); 2547c478bd9Sstevel@tonic-gate goto bad; 2557c478bd9Sstevel@tonic-gate } 2567c478bd9Sstevel@tonic-gate 2577c478bd9Sstevel@tonic-gate if (write(masterfd, clientid, msglen) != msglen) { 2587c478bd9Sstevel@tonic-gate zerror("protocol error"); 2597c478bd9Sstevel@tonic-gate goto bad; 2607c478bd9Sstevel@tonic-gate } 2617c478bd9Sstevel@tonic-gate 2627c478bd9Sstevel@tonic-gate bzero(handshake, sizeof (handshake)); 2637c478bd9Sstevel@tonic-gate 2647c478bd9Sstevel@tonic-gate /* 2657c478bd9Sstevel@tonic-gate * Take care not to accumulate more than our fill, and leave room for 2667c478bd9Sstevel@tonic-gate * the NUL at the end. 2677c478bd9Sstevel@tonic-gate */ 2687c478bd9Sstevel@tonic-gate while ((err = read(masterfd, &c, 1)) == 1) { 2697c478bd9Sstevel@tonic-gate if (i >= (sizeof (handshake) - 1)) 2707c478bd9Sstevel@tonic-gate break; 2717c478bd9Sstevel@tonic-gate if (c == '\n') 2727c478bd9Sstevel@tonic-gate break; 2737c478bd9Sstevel@tonic-gate handshake[i] = c; 2747c478bd9Sstevel@tonic-gate i++; 2757c478bd9Sstevel@tonic-gate } 2767c478bd9Sstevel@tonic-gate 2777c478bd9Sstevel@tonic-gate /* 2787c478bd9Sstevel@tonic-gate * If something went wrong during the handshake we bail; perhaps 2797c478bd9Sstevel@tonic-gate * the server died off. 2807c478bd9Sstevel@tonic-gate */ 2817c478bd9Sstevel@tonic-gate if (err == -1) { 2827c478bd9Sstevel@tonic-gate zperror(gettext("Could not connect to zone console")); 2837c478bd9Sstevel@tonic-gate goto bad; 2847c478bd9Sstevel@tonic-gate } 2857c478bd9Sstevel@tonic-gate 2867c478bd9Sstevel@tonic-gate if (strncmp(handshake, "OK", sizeof (handshake)) == 0) 2877c478bd9Sstevel@tonic-gate return (0); 2887c478bd9Sstevel@tonic-gate 2897c478bd9Sstevel@tonic-gate zerror(gettext("Console is already in use by process ID %s."), 2907c478bd9Sstevel@tonic-gate handshake); 2917c478bd9Sstevel@tonic-gate bad: 2927c478bd9Sstevel@tonic-gate (void) close(sockfd); 2937c478bd9Sstevel@tonic-gate masterfd = -1; 2947c478bd9Sstevel@tonic-gate return (-1); 2957c478bd9Sstevel@tonic-gate } 2967c478bd9Sstevel@tonic-gate 2977c478bd9Sstevel@tonic-gate 2987c478bd9Sstevel@tonic-gate /* 2997c478bd9Sstevel@tonic-gate * Routines to handle pty creation upon zone entry and to shuttle I/O back 3007c478bd9Sstevel@tonic-gate * and forth between the two terminals. We also compute and store the 3017c478bd9Sstevel@tonic-gate * name of the slave terminal associated with the master side. 3027c478bd9Sstevel@tonic-gate */ 3037c478bd9Sstevel@tonic-gate static int 3047c478bd9Sstevel@tonic-gate get_master_pty() 3057c478bd9Sstevel@tonic-gate { 3067c478bd9Sstevel@tonic-gate if ((masterfd = open("/dev/ptmx", O_RDWR|O_NONBLOCK)) < 0) { 3077c478bd9Sstevel@tonic-gate zperror(gettext("failed to obtain a pseudo-tty")); 3087c478bd9Sstevel@tonic-gate return (-1); 3097c478bd9Sstevel@tonic-gate } 3107c478bd9Sstevel@tonic-gate if (tcgetattr(STDIN_FILENO, &save_termios) == -1) { 3117c478bd9Sstevel@tonic-gate zperror(gettext("failed to get terminal settings from stdin")); 3127c478bd9Sstevel@tonic-gate return (-1); 3137c478bd9Sstevel@tonic-gate } 3147c478bd9Sstevel@tonic-gate (void) ioctl(STDIN_FILENO, TIOCGWINSZ, (char *)&winsize); 3157c478bd9Sstevel@tonic-gate 3167c478bd9Sstevel@tonic-gate return (0); 3177c478bd9Sstevel@tonic-gate } 3187c478bd9Sstevel@tonic-gate 3197c478bd9Sstevel@tonic-gate /* 3207c478bd9Sstevel@tonic-gate * This is a bit tricky; normally a pts device will belong to the zone it 3217c478bd9Sstevel@tonic-gate * is granted to. But in the case of "entering" a zone, we need to establish 3227c478bd9Sstevel@tonic-gate * the pty before entering the zone so that we can vector I/O to and from it 3237c478bd9Sstevel@tonic-gate * from the global zone. 3247c478bd9Sstevel@tonic-gate * 3257c478bd9Sstevel@tonic-gate * We use the zonept() call to let the ptm driver know what we are up to; 3267c478bd9Sstevel@tonic-gate * the only other hairy bit is the setting of zoneslavename (which happens 3277c478bd9Sstevel@tonic-gate * above, in get_master_pty()). 3287c478bd9Sstevel@tonic-gate */ 3297c478bd9Sstevel@tonic-gate static int 330facf4a8dSllai1 init_slave_pty(zoneid_t zoneid, char *devroot) 3317c478bd9Sstevel@tonic-gate { 3327c478bd9Sstevel@tonic-gate int slavefd = -1; 3337c478bd9Sstevel@tonic-gate char *slavename, zoneslavename[MAXPATHLEN]; 3347c478bd9Sstevel@tonic-gate 3357c478bd9Sstevel@tonic-gate /* 3367c478bd9Sstevel@tonic-gate * Set slave permissions, zone the pts, then unlock it. 3377c478bd9Sstevel@tonic-gate */ 3387c478bd9Sstevel@tonic-gate if (grantpt(masterfd) != 0) { 3397c478bd9Sstevel@tonic-gate zperror(gettext("grantpt failed")); 3407c478bd9Sstevel@tonic-gate return (-1); 3417c478bd9Sstevel@tonic-gate } 3427c478bd9Sstevel@tonic-gate 3437c478bd9Sstevel@tonic-gate if (unlockpt(masterfd) != 0) { 3447c478bd9Sstevel@tonic-gate zperror(gettext("unlockpt failed")); 3457c478bd9Sstevel@tonic-gate return (-1); 3467c478bd9Sstevel@tonic-gate } 3477c478bd9Sstevel@tonic-gate 3487c478bd9Sstevel@tonic-gate /* 3497c478bd9Sstevel@tonic-gate * We must open the slave side before zoning this pty; otherwise 3507c478bd9Sstevel@tonic-gate * the kernel would refuse us the open-- zoning a pty makes it 351facf4a8dSllai1 * inaccessible to the global zone. Note we are trying to open 352facf4a8dSllai1 * the device node via the $ZONEROOT/dev path for this pty. 3537c478bd9Sstevel@tonic-gate * 3547c478bd9Sstevel@tonic-gate * Later we'll close the slave out when once we've opened it again 3557c478bd9Sstevel@tonic-gate * from within the target zone. Blarg. 3567c478bd9Sstevel@tonic-gate */ 3577c478bd9Sstevel@tonic-gate if ((slavename = ptsname(masterfd)) == NULL) { 3587c478bd9Sstevel@tonic-gate zperror(gettext("failed to get name for pseudo-tty")); 3597c478bd9Sstevel@tonic-gate return (-1); 3607c478bd9Sstevel@tonic-gate } 3617c478bd9Sstevel@tonic-gate 3627c478bd9Sstevel@tonic-gate (void) snprintf(zoneslavename, sizeof (zoneslavename), "%s%s", 363facf4a8dSllai1 devroot, slavename); 3647c478bd9Sstevel@tonic-gate 3657c478bd9Sstevel@tonic-gate if ((slavefd = open(zoneslavename, O_RDWR)) < 0) { 3667c478bd9Sstevel@tonic-gate zerror(gettext("failed to open %s: %s"), zoneslavename, 3677c478bd9Sstevel@tonic-gate strerror(errno)); 3687c478bd9Sstevel@tonic-gate return (-1); 3697c478bd9Sstevel@tonic-gate } 3707c478bd9Sstevel@tonic-gate 3717c478bd9Sstevel@tonic-gate /* 3727c478bd9Sstevel@tonic-gate * Push hardware emulation (ptem), line discipline (ldterm), 3737c478bd9Sstevel@tonic-gate * and V7/4BSD/Xenix compatibility (ttcompat) modules. 3747c478bd9Sstevel@tonic-gate */ 3757c478bd9Sstevel@tonic-gate if (ioctl(slavefd, I_PUSH, "ptem") == -1) { 3767c478bd9Sstevel@tonic-gate zperror(gettext("failed to push ptem module")); 3777c478bd9Sstevel@tonic-gate if (!failsafe) 3787c478bd9Sstevel@tonic-gate goto bad; 3797c478bd9Sstevel@tonic-gate } 3807c478bd9Sstevel@tonic-gate 3817c478bd9Sstevel@tonic-gate /* 3827c478bd9Sstevel@tonic-gate * Anchor the stream to prevent malicious I_POPs; we prefer to do 3837c478bd9Sstevel@tonic-gate * this prior to entering the zone so that we can detect any errors 3847c478bd9Sstevel@tonic-gate * early, and so that we can set the anchor from the global zone. 3857c478bd9Sstevel@tonic-gate */ 3867c478bd9Sstevel@tonic-gate if (ioctl(slavefd, I_ANCHOR) == -1) { 3877c478bd9Sstevel@tonic-gate zperror(gettext("failed to set stream anchor")); 3887c478bd9Sstevel@tonic-gate if (!failsafe) 3897c478bd9Sstevel@tonic-gate goto bad; 3907c478bd9Sstevel@tonic-gate } 3917c478bd9Sstevel@tonic-gate 3927c478bd9Sstevel@tonic-gate if (ioctl(slavefd, I_PUSH, "ldterm") == -1) { 3937c478bd9Sstevel@tonic-gate zperror(gettext("failed to push ldterm module")); 3947c478bd9Sstevel@tonic-gate if (!failsafe) 3957c478bd9Sstevel@tonic-gate goto bad; 3967c478bd9Sstevel@tonic-gate } 3977c478bd9Sstevel@tonic-gate if (ioctl(slavefd, I_PUSH, "ttcompat") == -1) { 3987c478bd9Sstevel@tonic-gate zperror(gettext("failed to push ttcompat module")); 3997c478bd9Sstevel@tonic-gate if (!failsafe) 4007c478bd9Sstevel@tonic-gate goto bad; 4017c478bd9Sstevel@tonic-gate } 4027c478bd9Sstevel@tonic-gate 4037c478bd9Sstevel@tonic-gate /* 4047c478bd9Sstevel@tonic-gate * Propagate terminal settings from the external term to the new one. 4057c478bd9Sstevel@tonic-gate */ 4067c478bd9Sstevel@tonic-gate if (tcsetattr(slavefd, TCSAFLUSH, &save_termios) == -1) { 4077c478bd9Sstevel@tonic-gate zperror(gettext("failed to set terminal settings")); 4087c478bd9Sstevel@tonic-gate if (!failsafe) 4097c478bd9Sstevel@tonic-gate goto bad; 4107c478bd9Sstevel@tonic-gate } 4117c478bd9Sstevel@tonic-gate (void) ioctl(slavefd, TIOCSWINSZ, (char *)&winsize); 4127c478bd9Sstevel@tonic-gate 4137c478bd9Sstevel@tonic-gate if (zonept(masterfd, zoneid) != 0) { 4147c478bd9Sstevel@tonic-gate zperror(gettext("could not set zoneid of pty")); 4157c478bd9Sstevel@tonic-gate goto bad; 4167c478bd9Sstevel@tonic-gate } 4177c478bd9Sstevel@tonic-gate 4187c478bd9Sstevel@tonic-gate return (slavefd); 4197c478bd9Sstevel@tonic-gate 4207c478bd9Sstevel@tonic-gate bad: 4217c478bd9Sstevel@tonic-gate (void) close(slavefd); 4227c478bd9Sstevel@tonic-gate return (-1); 4237c478bd9Sstevel@tonic-gate } 4247c478bd9Sstevel@tonic-gate 4257c478bd9Sstevel@tonic-gate /* 4267c478bd9Sstevel@tonic-gate * Place terminal into raw mode. 4277c478bd9Sstevel@tonic-gate */ 4287c478bd9Sstevel@tonic-gate static int 4297c478bd9Sstevel@tonic-gate set_tty_rawmode(int fd) 4307c478bd9Sstevel@tonic-gate { 4317c478bd9Sstevel@tonic-gate struct termios term; 4327c478bd9Sstevel@tonic-gate if (tcgetattr(fd, &term) < 0) { 4337c478bd9Sstevel@tonic-gate zperror(gettext("failed to get user terminal settings")); 4347c478bd9Sstevel@tonic-gate return (-1); 4357c478bd9Sstevel@tonic-gate } 4367c478bd9Sstevel@tonic-gate 4377c478bd9Sstevel@tonic-gate /* Stash for later, so we can revert back to previous mode */ 4387c478bd9Sstevel@tonic-gate save_termios = term; 4397c478bd9Sstevel@tonic-gate save_fd = fd; 4407c478bd9Sstevel@tonic-gate 4417c478bd9Sstevel@tonic-gate /* disable 8->7 bit strip, start/stop, enable any char to restart */ 4427c478bd9Sstevel@tonic-gate term.c_iflag &= ~(ISTRIP|IXON|IXANY); 4437c478bd9Sstevel@tonic-gate /* disable NL->CR, CR->NL, ignore CR, UPPER->lower */ 4447c478bd9Sstevel@tonic-gate term.c_iflag &= ~(INLCR|ICRNL|IGNCR|IUCLC); 4457c478bd9Sstevel@tonic-gate /* disable output post-processing */ 4467c478bd9Sstevel@tonic-gate term.c_oflag &= ~OPOST; 4477c478bd9Sstevel@tonic-gate /* disable canonical mode, signal chars, echo & extended functions */ 4487c478bd9Sstevel@tonic-gate term.c_lflag &= ~(ICANON|ISIG|ECHO|IEXTEN); 4497c478bd9Sstevel@tonic-gate 4507c478bd9Sstevel@tonic-gate term.c_cc[VMIN] = 1; /* byte-at-a-time */ 4517c478bd9Sstevel@tonic-gate term.c_cc[VTIME] = 0; 4527c478bd9Sstevel@tonic-gate 4537c478bd9Sstevel@tonic-gate if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &term)) { 4547c478bd9Sstevel@tonic-gate zperror(gettext("failed to set user terminal to raw mode")); 4557c478bd9Sstevel@tonic-gate return (-1); 4567c478bd9Sstevel@tonic-gate } 4577c478bd9Sstevel@tonic-gate 4587c478bd9Sstevel@tonic-gate /* 4597c478bd9Sstevel@tonic-gate * We need to know the value of VEOF so that we can properly process for 4607c478bd9Sstevel@tonic-gate * client-side ~<EOF>. But we have obliterated VEOF in term, 4617c478bd9Sstevel@tonic-gate * because VMIN overloads the same array slot in non-canonical mode. 4627c478bd9Sstevel@tonic-gate * Stupid @&^%! 4637c478bd9Sstevel@tonic-gate * 4647c478bd9Sstevel@tonic-gate * So here we construct the "effective" termios from the current 4657c478bd9Sstevel@tonic-gate * terminal settings, and the corrected VEOF and VEOL settings. 4667c478bd9Sstevel@tonic-gate */ 4677c478bd9Sstevel@tonic-gate if (tcgetattr(STDIN_FILENO, &effective_termios) < 0) { 4687c478bd9Sstevel@tonic-gate zperror(gettext("failed to get user terminal settings")); 4697c478bd9Sstevel@tonic-gate return (-1); 4707c478bd9Sstevel@tonic-gate } 4717c478bd9Sstevel@tonic-gate effective_termios.c_cc[VEOF] = save_termios.c_cc[VEOF]; 4727c478bd9Sstevel@tonic-gate effective_termios.c_cc[VEOL] = save_termios.c_cc[VEOL]; 4737c478bd9Sstevel@tonic-gate 4747c478bd9Sstevel@tonic-gate return (0); 4757c478bd9Sstevel@tonic-gate } 4767c478bd9Sstevel@tonic-gate 4777c478bd9Sstevel@tonic-gate /* 4787c478bd9Sstevel@tonic-gate * Copy terminal window size from our terminal to the pts. 4797c478bd9Sstevel@tonic-gate */ 4807c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 4817c478bd9Sstevel@tonic-gate static void 4827c478bd9Sstevel@tonic-gate sigwinch(int s) 4837c478bd9Sstevel@tonic-gate { 4847c478bd9Sstevel@tonic-gate struct winsize ws; 4857c478bd9Sstevel@tonic-gate 4867c478bd9Sstevel@tonic-gate if (ioctl(0, TIOCGWINSZ, &ws) == 0) 4877c478bd9Sstevel@tonic-gate (void) ioctl(masterfd, TIOCSWINSZ, &ws); 4887c478bd9Sstevel@tonic-gate } 4897c478bd9Sstevel@tonic-gate 4907c478bd9Sstevel@tonic-gate static void 4917c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 4927c478bd9Sstevel@tonic-gate sigcld(int s) 4937c478bd9Sstevel@tonic-gate { 4947c478bd9Sstevel@tonic-gate int status; 4957c478bd9Sstevel@tonic-gate pid_t pid; 4967c478bd9Sstevel@tonic-gate 4977c478bd9Sstevel@tonic-gate /* 4987c478bd9Sstevel@tonic-gate * Peek at the exit status. If this isn't the process we cared 4997c478bd9Sstevel@tonic-gate * about, then just reap it. 5007c478bd9Sstevel@tonic-gate */ 5017c478bd9Sstevel@tonic-gate if ((pid = waitpid(child_pid, &status, WNOHANG|WNOWAIT)) != -1) { 5027c478bd9Sstevel@tonic-gate if (pid == child_pid && 5037c478bd9Sstevel@tonic-gate (WIFEXITED(status) || WIFSIGNALED(status))) 5047c478bd9Sstevel@tonic-gate dead = 1; 5057c478bd9Sstevel@tonic-gate else 5067c478bd9Sstevel@tonic-gate (void) waitpid(pid, &status, WNOHANG); 5077c478bd9Sstevel@tonic-gate } 5087c478bd9Sstevel@tonic-gate } 5097c478bd9Sstevel@tonic-gate 5107c478bd9Sstevel@tonic-gate /* 5117c478bd9Sstevel@tonic-gate * Some signals (currently, SIGINT) must be forwarded on to the process 5127c478bd9Sstevel@tonic-gate * group of the child process. 5137c478bd9Sstevel@tonic-gate */ 5147c478bd9Sstevel@tonic-gate static void 5157c478bd9Sstevel@tonic-gate sig_forward(int s) 5167c478bd9Sstevel@tonic-gate { 5177c478bd9Sstevel@tonic-gate if (child_pid != -1) { 5187c478bd9Sstevel@tonic-gate pid_t pgid = getpgid(child_pid); 5197c478bd9Sstevel@tonic-gate if (pgid != -1) 5207c478bd9Sstevel@tonic-gate (void) sigsend(P_PGID, pgid, s); 5217c478bd9Sstevel@tonic-gate } 5227c478bd9Sstevel@tonic-gate } 5237c478bd9Sstevel@tonic-gate 5247c478bd9Sstevel@tonic-gate /* 5257c478bd9Sstevel@tonic-gate * reset terminal settings for global environment 5267c478bd9Sstevel@tonic-gate */ 5277c478bd9Sstevel@tonic-gate static void 5287c478bd9Sstevel@tonic-gate reset_tty() 5297c478bd9Sstevel@tonic-gate { 5307c478bd9Sstevel@tonic-gate (void) tcsetattr(save_fd, TCSADRAIN, &save_termios); 5317c478bd9Sstevel@tonic-gate } 5327c478bd9Sstevel@tonic-gate 5337c478bd9Sstevel@tonic-gate /* 5347c478bd9Sstevel@tonic-gate * Convert character to printable representation, for display with locally 5357c478bd9Sstevel@tonic-gate * echoed command characters (like when we need to display ~^D) 5367c478bd9Sstevel@tonic-gate */ 5377c478bd9Sstevel@tonic-gate static void 5387c478bd9Sstevel@tonic-gate canonify(char c, char *cc) 5397c478bd9Sstevel@tonic-gate { 5407c478bd9Sstevel@tonic-gate if (isprint(c)) { 5417c478bd9Sstevel@tonic-gate cc[0] = c; 5427c478bd9Sstevel@tonic-gate cc[1] = '\0'; 5437c478bd9Sstevel@tonic-gate } else if (c >= 0 && c <= 31) { /* ^@ through ^_ */ 5447c478bd9Sstevel@tonic-gate cc[0] = '^'; 5457c478bd9Sstevel@tonic-gate cc[1] = c + '@'; 5467c478bd9Sstevel@tonic-gate cc[2] = '\0'; 5477c478bd9Sstevel@tonic-gate } else { 5487c478bd9Sstevel@tonic-gate cc[0] = '\\'; 5497c478bd9Sstevel@tonic-gate cc[1] = ((c >> 6) & 7) + '0'; 5507c478bd9Sstevel@tonic-gate cc[2] = ((c >> 3) & 7) + '0'; 5517c478bd9Sstevel@tonic-gate cc[3] = (c & 7) + '0'; 5527c478bd9Sstevel@tonic-gate cc[4] = '\0'; 5537c478bd9Sstevel@tonic-gate } 5547c478bd9Sstevel@tonic-gate } 5557c478bd9Sstevel@tonic-gate 5567c478bd9Sstevel@tonic-gate /* 5577c478bd9Sstevel@tonic-gate * process_user_input watches the input stream for the escape sequence for 5587c478bd9Sstevel@tonic-gate * 'quit' (by default, tilde-period). Because we might be fed just one 5597c478bd9Sstevel@tonic-gate * keystroke at a time, state associated with the user input (are we at the 5607c478bd9Sstevel@tonic-gate * beginning of the line? are we locally echoing the next character?) is 5617c478bd9Sstevel@tonic-gate * maintained by beginning_of_line and local_echo across calls to the routine. 562*d9e728a2Sgjelinek * If the write to outfd fails, we'll try to read from infd in an attempt 563*d9e728a2Sgjelinek * to prevent deadlock between the two processes. 5647c478bd9Sstevel@tonic-gate * 5657c478bd9Sstevel@tonic-gate * This routine returns -1 when the 'quit' escape sequence has been issued, 5667c478bd9Sstevel@tonic-gate * and 0 otherwise. 5677c478bd9Sstevel@tonic-gate */ 5687c478bd9Sstevel@tonic-gate static int 569*d9e728a2Sgjelinek process_user_input(int outfd, int infd, char *buf, size_t nbytes) 5707c478bd9Sstevel@tonic-gate { 5717c478bd9Sstevel@tonic-gate static boolean_t beginning_of_line = B_TRUE; 5727c478bd9Sstevel@tonic-gate static boolean_t local_echo = B_FALSE; 5737c478bd9Sstevel@tonic-gate 5747c478bd9Sstevel@tonic-gate char c = *buf; 5757c478bd9Sstevel@tonic-gate for (c = *buf; nbytes > 0; c = *buf, --nbytes) { 5767c478bd9Sstevel@tonic-gate buf++; 5777c478bd9Sstevel@tonic-gate if (beginning_of_line && !nocmdchar) { 5787c478bd9Sstevel@tonic-gate beginning_of_line = B_FALSE; 5797c478bd9Sstevel@tonic-gate if (c == cmdchar) { 5807c478bd9Sstevel@tonic-gate local_echo = B_TRUE; 5817c478bd9Sstevel@tonic-gate continue; 5827c478bd9Sstevel@tonic-gate } 5837c478bd9Sstevel@tonic-gate } else if (local_echo) { 5847c478bd9Sstevel@tonic-gate local_echo = B_FALSE; 5857c478bd9Sstevel@tonic-gate if (c == '.' || c == effective_termios.c_cc[VEOF]) { 5867c478bd9Sstevel@tonic-gate char cc[CANONIFY_LEN]; 587*d9e728a2Sgjelinek 5887c478bd9Sstevel@tonic-gate canonify(c, cc); 5897c478bd9Sstevel@tonic-gate (void) write(STDOUT_FILENO, &cmdchar, 1); 5907c478bd9Sstevel@tonic-gate (void) write(STDOUT_FILENO, cc, strlen(cc)); 5917c478bd9Sstevel@tonic-gate return (-1); 5927c478bd9Sstevel@tonic-gate } 5937c478bd9Sstevel@tonic-gate } 594*d9e728a2Sgjelinek retry: 595*d9e728a2Sgjelinek if (write(outfd, &c, 1) <= 0) { 596*d9e728a2Sgjelinek /* 597*d9e728a2Sgjelinek * Since the fd we are writing to is opened with 598*d9e728a2Sgjelinek * O_NONBLOCK it is possible to get EAGAIN if the 599*d9e728a2Sgjelinek * pipe is full. One way this could happen is if we 600*d9e728a2Sgjelinek * are writing a lot of data into the pipe in this loop 601*d9e728a2Sgjelinek * and the application on the other end is echoing that 602*d9e728a2Sgjelinek * data back out to its stdout. The output pipe can 603*d9e728a2Sgjelinek * fill up since we are stuck here in this loop and not 604*d9e728a2Sgjelinek * draining the other pipe. We can try to read some of 605*d9e728a2Sgjelinek * the data to see if we can drain the pipe so that the 606*d9e728a2Sgjelinek * application can continue to make progress. The read 607*d9e728a2Sgjelinek * is non-blocking so we won't hang here. We also wait 608*d9e728a2Sgjelinek * a bit before retrying since there could be other 609*d9e728a2Sgjelinek * reasons why the pipe is full and we don't want to 610*d9e728a2Sgjelinek * continuously retry. 611*d9e728a2Sgjelinek */ 612*d9e728a2Sgjelinek if (errno == EAGAIN) { 613*d9e728a2Sgjelinek struct timespec rqtp; 614*d9e728a2Sgjelinek int ln; 615*d9e728a2Sgjelinek char ibuf[ZLOGIN_BUFSIZ]; 616*d9e728a2Sgjelinek 617*d9e728a2Sgjelinek if ((ln = read(infd, ibuf, ZLOGIN_BUFSIZ)) > 0) 618*d9e728a2Sgjelinek (void) write(STDOUT_FILENO, ibuf, ln); 619*d9e728a2Sgjelinek 620*d9e728a2Sgjelinek /* sleep for 10 milliseconds */ 621*d9e728a2Sgjelinek rqtp.tv_sec = 0; 622*d9e728a2Sgjelinek rqtp.tv_nsec = 10 * (NANOSEC / MILLISEC); 623*d9e728a2Sgjelinek (void) nanosleep(&rqtp, NULL); 624*d9e728a2Sgjelinek if (!dead) 625*d9e728a2Sgjelinek goto retry; 626*d9e728a2Sgjelinek } 627*d9e728a2Sgjelinek 6287c478bd9Sstevel@tonic-gate return (-1); 629*d9e728a2Sgjelinek } 6307c478bd9Sstevel@tonic-gate beginning_of_line = (c == '\r' || c == '\n' || 6317c478bd9Sstevel@tonic-gate c == effective_termios.c_cc[VKILL] || 6327c478bd9Sstevel@tonic-gate c == effective_termios.c_cc[VEOL] || 6337c478bd9Sstevel@tonic-gate c == effective_termios.c_cc[VSUSP] || 6347c478bd9Sstevel@tonic-gate c == effective_termios.c_cc[VINTR]); 6357c478bd9Sstevel@tonic-gate } 6367c478bd9Sstevel@tonic-gate return (0); 6377c478bd9Sstevel@tonic-gate } 6387c478bd9Sstevel@tonic-gate 6397c478bd9Sstevel@tonic-gate /* 6407c478bd9Sstevel@tonic-gate * This is the main I/O loop, and is shared across all zlogin modes. 6417c478bd9Sstevel@tonic-gate * Parameters: 6427c478bd9Sstevel@tonic-gate * stdin_fd: The fd representing 'stdin' for the slave side; input to 6437c478bd9Sstevel@tonic-gate * the zone will be written here. 6447c478bd9Sstevel@tonic-gate * 6457c478bd9Sstevel@tonic-gate * stdout_fd: The fd representing 'stdout' for the slave side; output 6467c478bd9Sstevel@tonic-gate * from the zone will arrive here. 6477c478bd9Sstevel@tonic-gate * 6487c478bd9Sstevel@tonic-gate * stderr_fd: The fd representing 'stderr' for the slave side; output 6497c478bd9Sstevel@tonic-gate * from the zone will arrive here. 6507c478bd9Sstevel@tonic-gate * 6517c478bd9Sstevel@tonic-gate * raw_mode: If TRUE, then no processing (for example, for '~.') will 6527c478bd9Sstevel@tonic-gate * be performed on the input coming from STDIN. 6537c478bd9Sstevel@tonic-gate * 6547c478bd9Sstevel@tonic-gate * stderr_fd may be specified as -1 if there is no stderr (only non-interactive 6557c478bd9Sstevel@tonic-gate * mode supplies a stderr). 6567c478bd9Sstevel@tonic-gate * 6577c478bd9Sstevel@tonic-gate */ 6587c478bd9Sstevel@tonic-gate static void 6597c478bd9Sstevel@tonic-gate doio(int stdin_fd, int stdout_fd, int stderr_fd, boolean_t raw_mode) 6607c478bd9Sstevel@tonic-gate { 6617c478bd9Sstevel@tonic-gate struct pollfd pollfds[3]; 662e6e67599Sdp char ibuf[ZLOGIN_BUFSIZ]; 6637c478bd9Sstevel@tonic-gate int cc, ret; 6647c478bd9Sstevel@tonic-gate 6657c478bd9Sstevel@tonic-gate /* read from stdout of zone and write to stdout of global zone */ 6667c478bd9Sstevel@tonic-gate pollfds[0].fd = stdout_fd; 6677c478bd9Sstevel@tonic-gate pollfds[0].events = POLLIN | POLLRDNORM | POLLRDBAND | POLLPRI; 6687c478bd9Sstevel@tonic-gate 6697c478bd9Sstevel@tonic-gate /* read from stderr of zone and write to stderr of global zone */ 6707c478bd9Sstevel@tonic-gate pollfds[1].fd = stderr_fd; 6717c478bd9Sstevel@tonic-gate pollfds[1].events = pollfds[0].events; 6727c478bd9Sstevel@tonic-gate 6737c478bd9Sstevel@tonic-gate /* read from stdin of global zone and write to stdin of zone */ 6747c478bd9Sstevel@tonic-gate pollfds[2].fd = STDIN_FILENO; 6757c478bd9Sstevel@tonic-gate pollfds[2].events = pollfds[0].events; 6767c478bd9Sstevel@tonic-gate 6777c478bd9Sstevel@tonic-gate for (;;) { 6787c478bd9Sstevel@tonic-gate pollfds[0].revents = pollfds[1].revents = 6797c478bd9Sstevel@tonic-gate pollfds[2].revents = 0; 6807c478bd9Sstevel@tonic-gate 6817c478bd9Sstevel@tonic-gate if (dead) 6827c478bd9Sstevel@tonic-gate break; 6837c478bd9Sstevel@tonic-gate 6847c478bd9Sstevel@tonic-gate ret = poll(pollfds, 6857c478bd9Sstevel@tonic-gate sizeof (pollfds) / sizeof (struct pollfd), -1); 6867c478bd9Sstevel@tonic-gate if (ret == -1 && errno != EINTR) { 6877c478bd9Sstevel@tonic-gate perror("poll failed"); 6887c478bd9Sstevel@tonic-gate break; 6897c478bd9Sstevel@tonic-gate } 6907c478bd9Sstevel@tonic-gate 6917c478bd9Sstevel@tonic-gate if (errno == EINTR && dead) { 6927c478bd9Sstevel@tonic-gate break; 6937c478bd9Sstevel@tonic-gate } 6947c478bd9Sstevel@tonic-gate 6957c478bd9Sstevel@tonic-gate /* event from master side stdout */ 6967c478bd9Sstevel@tonic-gate if (pollfds[0].revents) { 6977c478bd9Sstevel@tonic-gate if (pollfds[0].revents & 6987c478bd9Sstevel@tonic-gate (POLLIN | POLLRDNORM | POLLRDBAND | POLLPRI)) { 699e6e67599Sdp cc = read(stdout_fd, ibuf, ZLOGIN_BUFSIZ); 7007c478bd9Sstevel@tonic-gate if (cc == -1 && (errno != EINTR || dead)) 7017c478bd9Sstevel@tonic-gate break; 7027c478bd9Sstevel@tonic-gate if (cc == 0) /* EOF */ 7037c478bd9Sstevel@tonic-gate break; 7047c478bd9Sstevel@tonic-gate (void) write(STDOUT_FILENO, ibuf, cc); 7057c478bd9Sstevel@tonic-gate } else { 7067c478bd9Sstevel@tonic-gate pollerr = pollfds[0].revents; 7077c478bd9Sstevel@tonic-gate break; 7087c478bd9Sstevel@tonic-gate } 7097c478bd9Sstevel@tonic-gate } 7107c478bd9Sstevel@tonic-gate 7117c478bd9Sstevel@tonic-gate /* event from master side stderr */ 7127c478bd9Sstevel@tonic-gate if (pollfds[1].revents) { 7137c478bd9Sstevel@tonic-gate if (pollfds[1].revents & 7147c478bd9Sstevel@tonic-gate (POLLIN | POLLRDNORM | POLLRDBAND | POLLPRI)) { 715e6e67599Sdp cc = read(stderr_fd, ibuf, ZLOGIN_BUFSIZ); 7167c478bd9Sstevel@tonic-gate if (cc == -1 && (errno != EINTR || dead)) 7177c478bd9Sstevel@tonic-gate break; 7187c478bd9Sstevel@tonic-gate if (cc == 0) /* EOF */ 7197c478bd9Sstevel@tonic-gate break; 7207c478bd9Sstevel@tonic-gate (void) write(STDERR_FILENO, ibuf, cc); 7217c478bd9Sstevel@tonic-gate } else { 7227c478bd9Sstevel@tonic-gate pollerr = pollfds[1].revents; 7237c478bd9Sstevel@tonic-gate break; 7247c478bd9Sstevel@tonic-gate } 7257c478bd9Sstevel@tonic-gate } 7267c478bd9Sstevel@tonic-gate 7277c478bd9Sstevel@tonic-gate /* event from user STDIN side */ 7287c478bd9Sstevel@tonic-gate if (pollfds[2].revents) { 7297c478bd9Sstevel@tonic-gate if (pollfds[2].revents & 7307c478bd9Sstevel@tonic-gate (POLLIN | POLLRDNORM | POLLRDBAND | POLLPRI)) { 731e6e67599Sdp cc = read(STDIN_FILENO, ibuf, ZLOGIN_BUFSIZ); 7327c478bd9Sstevel@tonic-gate if (cc == -1 && (errno != EINTR || dead)) 7337c478bd9Sstevel@tonic-gate break; 7347c478bd9Sstevel@tonic-gate 7357c478bd9Sstevel@tonic-gate /* 7367c478bd9Sstevel@tonic-gate * stdin fd is stdin of the target; so, 7377c478bd9Sstevel@tonic-gate * the thing we'll write the user data *to*. 7387c478bd9Sstevel@tonic-gate * 7397c478bd9Sstevel@tonic-gate * Also, unlike on the output side, we 7407c478bd9Sstevel@tonic-gate * propagate zero-length messages to the 7417c478bd9Sstevel@tonic-gate * other side. 7427c478bd9Sstevel@tonic-gate */ 7437c478bd9Sstevel@tonic-gate if (raw_mode == B_TRUE) { 7447c478bd9Sstevel@tonic-gate if (write(stdin_fd, ibuf, cc) == -1) 7457c478bd9Sstevel@tonic-gate break; 7467c478bd9Sstevel@tonic-gate } else { 747*d9e728a2Sgjelinek if (process_user_input(stdin_fd, 748*d9e728a2Sgjelinek stdout_fd, ibuf, cc) == -1) 7497c478bd9Sstevel@tonic-gate break; 7507c478bd9Sstevel@tonic-gate } 7517c478bd9Sstevel@tonic-gate } else if (raw_mode == B_TRUE && 7527c478bd9Sstevel@tonic-gate pollfds[2].revents & POLLHUP) { 7537c478bd9Sstevel@tonic-gate /* 7547c478bd9Sstevel@tonic-gate * It's OK to get a POLLHUP on STDIN-- it 7557c478bd9Sstevel@tonic-gate * always happens if you do: 7567c478bd9Sstevel@tonic-gate * 7577c478bd9Sstevel@tonic-gate * echo foo | zlogin <zone> <command> 7587c478bd9Sstevel@tonic-gate * 7597c478bd9Sstevel@tonic-gate * We reset fd to -1 in this case to clear 7607c478bd9Sstevel@tonic-gate * the condition and write an EOF to the 7617c478bd9Sstevel@tonic-gate * other side in order to wrap things up. 7627c478bd9Sstevel@tonic-gate */ 7637c478bd9Sstevel@tonic-gate pollfds[2].fd = -1; 7647c478bd9Sstevel@tonic-gate (void) write(stdin_fd, ibuf, 0); 7657c478bd9Sstevel@tonic-gate } else { 7667c478bd9Sstevel@tonic-gate pollerr = pollfds[2].revents; 7677c478bd9Sstevel@tonic-gate break; 7687c478bd9Sstevel@tonic-gate } 7697c478bd9Sstevel@tonic-gate } 7707c478bd9Sstevel@tonic-gate } 7717c478bd9Sstevel@tonic-gate 7727c478bd9Sstevel@tonic-gate /* 7737c478bd9Sstevel@tonic-gate * We are in the midst of dying, but try to poll with a short 7747c478bd9Sstevel@tonic-gate * timeout to see if we can catch the last bit of I/O from the 7757c478bd9Sstevel@tonic-gate * children. 7767c478bd9Sstevel@tonic-gate */ 7777c478bd9Sstevel@tonic-gate pollfds[0].revents = pollfds[1].revents = pollfds[2].revents = 0; 7787c478bd9Sstevel@tonic-gate (void) poll(pollfds, 7797c478bd9Sstevel@tonic-gate sizeof (pollfds) / sizeof (struct pollfd), 100); 7807c478bd9Sstevel@tonic-gate if (pollfds[0].revents & 7817c478bd9Sstevel@tonic-gate (POLLIN | POLLRDNORM | POLLRDBAND | POLLPRI)) { 782e6e67599Sdp if ((cc = read(stdout_fd, ibuf, ZLOGIN_BUFSIZ)) > 0) 7837c478bd9Sstevel@tonic-gate (void) write(STDOUT_FILENO, ibuf, cc); 7847c478bd9Sstevel@tonic-gate } 7857c478bd9Sstevel@tonic-gate if (pollfds[1].revents & 7867c478bd9Sstevel@tonic-gate (POLLIN | POLLRDNORM | POLLRDBAND | POLLPRI)) { 787e6e67599Sdp if ((cc = read(stderr_fd, ibuf, ZLOGIN_BUFSIZ)) > 0) 7887c478bd9Sstevel@tonic-gate (void) write(STDERR_FILENO, ibuf, cc); 7897c478bd9Sstevel@tonic-gate } 7907c478bd9Sstevel@tonic-gate } 7917c478bd9Sstevel@tonic-gate 7929acbbeafSnn35248 static char ** 793123807fbSedp zone_login_cmd(brand_handle_t bh, const char *login) 7949acbbeafSnn35248 { 7959acbbeafSnn35248 static char result_buf[ARG_MAX]; 7969acbbeafSnn35248 char **new_argv, *ptr, *lasts; 7979acbbeafSnn35248 int n, a; 7989acbbeafSnn35248 7999acbbeafSnn35248 /* Get the login command for the target zone. */ 8009acbbeafSnn35248 bzero(result_buf, sizeof (result_buf)); 801123807fbSedp if (brand_get_login_cmd(bh, login, 8029acbbeafSnn35248 result_buf, sizeof (result_buf)) != 0) 8039acbbeafSnn35248 return (NULL); 8049acbbeafSnn35248 8059acbbeafSnn35248 /* 8069acbbeafSnn35248 * We got back a string that we'd like to execute. But since 8079acbbeafSnn35248 * we're not doing the execution via a shell we'll need to convert 8089acbbeafSnn35248 * the exec string to an array of strings. We'll do that here 8099acbbeafSnn35248 * but we're going to be very simplistic about it and break stuff 8109acbbeafSnn35248 * up based on spaces. We're not even going to support any kind 8119acbbeafSnn35248 * of quoting or escape characters. It's truly amazing that 8129acbbeafSnn35248 * there is no library function in OpenSolaris to do this for us. 8139acbbeafSnn35248 */ 8149acbbeafSnn35248 8159acbbeafSnn35248 /* 8169acbbeafSnn35248 * Be paranoid. Since we're deliniating based on spaces make 8179acbbeafSnn35248 * sure there are no adjacent spaces. 8189acbbeafSnn35248 */ 8199acbbeafSnn35248 if (strstr(result_buf, " ") != NULL) 8209acbbeafSnn35248 return (NULL); 8219acbbeafSnn35248 8229acbbeafSnn35248 /* Remove any trailing whitespace. */ 8239acbbeafSnn35248 n = strlen(result_buf); 8249acbbeafSnn35248 if (result_buf[n - 1] == ' ') 8259acbbeafSnn35248 result_buf[n - 1] = '\0'; 8269acbbeafSnn35248 8279acbbeafSnn35248 /* Count how many elements there are in the exec string. */ 8289acbbeafSnn35248 ptr = result_buf; 8299acbbeafSnn35248 for (n = 2; ((ptr = strchr(ptr + 1, (int)' ')) != NULL); n++) 8309acbbeafSnn35248 ; 8319acbbeafSnn35248 8329acbbeafSnn35248 /* Allocate the argv array that we're going to return. */ 8339acbbeafSnn35248 if ((new_argv = malloc(sizeof (char *) * n)) == NULL) 8349acbbeafSnn35248 return (NULL); 8359acbbeafSnn35248 8369acbbeafSnn35248 /* Tokenize the exec string and return. */ 8379acbbeafSnn35248 a = 0; 8389acbbeafSnn35248 new_argv[a++] = result_buf; 8399acbbeafSnn35248 if (n > 2) { 8409acbbeafSnn35248 (void) strtok_r(result_buf, " ", &lasts); 8419acbbeafSnn35248 while ((new_argv[a++] = strtok_r(NULL, " ", &lasts)) != NULL) 8429acbbeafSnn35248 ; 8439acbbeafSnn35248 } else { 8449acbbeafSnn35248 new_argv[a++] = NULL; 8459acbbeafSnn35248 } 8469acbbeafSnn35248 assert(n == a); 8479acbbeafSnn35248 return (new_argv); 8489acbbeafSnn35248 } 8499acbbeafSnn35248 8507c478bd9Sstevel@tonic-gate /* 8517c478bd9Sstevel@tonic-gate * Prepare argv array for exec'd process; if we're passing commands to the 8527c478bd9Sstevel@tonic-gate * new process, then use su(1M) to do the invocation. Otherwise, use 8537c478bd9Sstevel@tonic-gate * 'login -z <from_zonename> -f' (-z is an undocumented option which tells 8547c478bd9Sstevel@tonic-gate * login that we're coming from another zone, and to disregard its CONSOLE 8557c478bd9Sstevel@tonic-gate * checks). 8567c478bd9Sstevel@tonic-gate */ 8577c478bd9Sstevel@tonic-gate static char ** 858123807fbSedp prep_args(brand_handle_t bh, const char *login, char **argv) 8597c478bd9Sstevel@tonic-gate { 8607c478bd9Sstevel@tonic-gate int argc = 0, a = 0, i, n = -1; 8617c478bd9Sstevel@tonic-gate char **new_argv; 8627c478bd9Sstevel@tonic-gate 8637c478bd9Sstevel@tonic-gate if (argv != NULL) { 8647c478bd9Sstevel@tonic-gate size_t subshell_len = 1; 8657c478bd9Sstevel@tonic-gate char *subshell; 8667c478bd9Sstevel@tonic-gate 8677c478bd9Sstevel@tonic-gate while (argv[argc] != NULL) 8687c478bd9Sstevel@tonic-gate argc++; 8697c478bd9Sstevel@tonic-gate 8707c478bd9Sstevel@tonic-gate for (i = 0; i < argc; i++) { 8717c478bd9Sstevel@tonic-gate subshell_len += strlen(argv[i]) + 1; 8727c478bd9Sstevel@tonic-gate } 8737c478bd9Sstevel@tonic-gate if ((subshell = calloc(1, subshell_len)) == NULL) 8747c478bd9Sstevel@tonic-gate return (NULL); 8757c478bd9Sstevel@tonic-gate 8767c478bd9Sstevel@tonic-gate for (i = 0; i < argc; i++) { 8777c478bd9Sstevel@tonic-gate (void) strcat(subshell, argv[i]); 8787c478bd9Sstevel@tonic-gate (void) strcat(subshell, " "); 8797c478bd9Sstevel@tonic-gate } 8807c478bd9Sstevel@tonic-gate 8817c478bd9Sstevel@tonic-gate if (failsafe) { 8827c478bd9Sstevel@tonic-gate n = 4; 8837c478bd9Sstevel@tonic-gate if ((new_argv = malloc(sizeof (char *) * n)) == NULL) 8847c478bd9Sstevel@tonic-gate return (NULL); 8857c478bd9Sstevel@tonic-gate 8867c478bd9Sstevel@tonic-gate new_argv[a++] = FAILSAFESHELL; 8877c478bd9Sstevel@tonic-gate } else { 8887c478bd9Sstevel@tonic-gate n = 5; 8897c478bd9Sstevel@tonic-gate if ((new_argv = malloc(sizeof (char *) * n)) == NULL) 8907c478bd9Sstevel@tonic-gate return (NULL); 8917c478bd9Sstevel@tonic-gate 8927c478bd9Sstevel@tonic-gate new_argv[a++] = SUPATH; 8939acbbeafSnn35248 new_argv[a++] = (char *)login; 8947c478bd9Sstevel@tonic-gate } 8957c478bd9Sstevel@tonic-gate new_argv[a++] = "-c"; 8967c478bd9Sstevel@tonic-gate new_argv[a++] = subshell; 8977c478bd9Sstevel@tonic-gate new_argv[a++] = NULL; 8987c478bd9Sstevel@tonic-gate assert(a == n); 8997c478bd9Sstevel@tonic-gate } else { 9007c478bd9Sstevel@tonic-gate if (failsafe) { 9017c478bd9Sstevel@tonic-gate n = 2; 9027c478bd9Sstevel@tonic-gate if ((new_argv = malloc(sizeof (char *) * n)) == NULL) 9037c478bd9Sstevel@tonic-gate return (NULL); 9047c478bd9Sstevel@tonic-gate new_argv[a++] = FAILSAFESHELL; 9057c478bd9Sstevel@tonic-gate new_argv[a++] = NULL; 9067c478bd9Sstevel@tonic-gate assert(n == a); 9079acbbeafSnn35248 } else { 908123807fbSedp new_argv = zone_login_cmd(bh, login); 9099acbbeafSnn35248 } 9109acbbeafSnn35248 } 9119acbbeafSnn35248 9127c478bd9Sstevel@tonic-gate return (new_argv); 9137c478bd9Sstevel@tonic-gate } 9147c478bd9Sstevel@tonic-gate 9157c478bd9Sstevel@tonic-gate /* 9167c478bd9Sstevel@tonic-gate * Helper routine for prep_env below. 9177c478bd9Sstevel@tonic-gate */ 9187c478bd9Sstevel@tonic-gate static char * 9197c478bd9Sstevel@tonic-gate add_env(char *name, char *value) 9207c478bd9Sstevel@tonic-gate { 9217c478bd9Sstevel@tonic-gate size_t sz = strlen(name) + strlen(value) + 2; /* name, =, value, NUL */ 9227c478bd9Sstevel@tonic-gate char *str; 9237c478bd9Sstevel@tonic-gate 9247c478bd9Sstevel@tonic-gate if ((str = malloc(sz)) == NULL) 9257c478bd9Sstevel@tonic-gate return (NULL); 9267c478bd9Sstevel@tonic-gate 9277c478bd9Sstevel@tonic-gate (void) snprintf(str, sz, "%s=%s", name, value); 9287c478bd9Sstevel@tonic-gate return (str); 9297c478bd9Sstevel@tonic-gate } 9307c478bd9Sstevel@tonic-gate 9317c478bd9Sstevel@tonic-gate /* 9327c478bd9Sstevel@tonic-gate * Prepare envp array for exec'd process. 9337c478bd9Sstevel@tonic-gate */ 9347c478bd9Sstevel@tonic-gate static char ** 9357c478bd9Sstevel@tonic-gate prep_env() 9367c478bd9Sstevel@tonic-gate { 9377c478bd9Sstevel@tonic-gate int e = 0, size = 1; 9387c478bd9Sstevel@tonic-gate char **new_env, *estr; 9397c478bd9Sstevel@tonic-gate char *term = getenv("TERM"); 9407c478bd9Sstevel@tonic-gate 9417c478bd9Sstevel@tonic-gate size++; /* for $PATH */ 9427c478bd9Sstevel@tonic-gate if (term != NULL) 9437c478bd9Sstevel@tonic-gate size++; 9447c478bd9Sstevel@tonic-gate 9457c478bd9Sstevel@tonic-gate /* 9467c478bd9Sstevel@tonic-gate * In failsafe mode we set $HOME, since '-l' isn't valid in this mode. 9477c478bd9Sstevel@tonic-gate * We also set $SHELL, since neither login nor su will be around to do 9487c478bd9Sstevel@tonic-gate * it. 9497c478bd9Sstevel@tonic-gate */ 9507c478bd9Sstevel@tonic-gate if (failsafe) 9517c478bd9Sstevel@tonic-gate size += 2; 9527c478bd9Sstevel@tonic-gate 9537c478bd9Sstevel@tonic-gate if ((new_env = malloc(sizeof (char *) * size)) == NULL) 9547c478bd9Sstevel@tonic-gate return (NULL); 9557c478bd9Sstevel@tonic-gate 9567c478bd9Sstevel@tonic-gate if ((estr = add_env("PATH", DEF_PATH)) == NULL) 9577c478bd9Sstevel@tonic-gate return (NULL); 9587c478bd9Sstevel@tonic-gate new_env[e++] = estr; 9597c478bd9Sstevel@tonic-gate 9607c478bd9Sstevel@tonic-gate if (term != NULL) { 9617c478bd9Sstevel@tonic-gate if ((estr = add_env("TERM", term)) == NULL) 9627c478bd9Sstevel@tonic-gate return (NULL); 9637c478bd9Sstevel@tonic-gate new_env[e++] = estr; 9647c478bd9Sstevel@tonic-gate } 9657c478bd9Sstevel@tonic-gate 9667c478bd9Sstevel@tonic-gate if (failsafe) { 9677c478bd9Sstevel@tonic-gate if ((estr = add_env("HOME", "/")) == NULL) 9687c478bd9Sstevel@tonic-gate return (NULL); 9697c478bd9Sstevel@tonic-gate new_env[e++] = estr; 9707c478bd9Sstevel@tonic-gate 9717c478bd9Sstevel@tonic-gate if ((estr = add_env("SHELL", FAILSAFESHELL)) == NULL) 9727c478bd9Sstevel@tonic-gate return (NULL); 9737c478bd9Sstevel@tonic-gate new_env[e++] = estr; 9747c478bd9Sstevel@tonic-gate } 9757c478bd9Sstevel@tonic-gate 9767c478bd9Sstevel@tonic-gate new_env[e++] = NULL; 9777c478bd9Sstevel@tonic-gate 9787c478bd9Sstevel@tonic-gate assert(e == size); 9797c478bd9Sstevel@tonic-gate 9807c478bd9Sstevel@tonic-gate return (new_env); 9817c478bd9Sstevel@tonic-gate } 9827c478bd9Sstevel@tonic-gate 9837c478bd9Sstevel@tonic-gate /* 9847c478bd9Sstevel@tonic-gate * Finish the preparation of the envp array for exec'd non-interactive 9857c478bd9Sstevel@tonic-gate * zlogins. This is called in the child process *after* we zone_enter(), since 9867c478bd9Sstevel@tonic-gate * it derives things we can only know within the zone, such as $HOME, $SHELL, 9877c478bd9Sstevel@tonic-gate * etc. We need only do this in the non-interactive, mode, since otherwise 9887c478bd9Sstevel@tonic-gate * login(1) will do it. We don't do this in failsafe mode, since it presents 9897c478bd9Sstevel@tonic-gate * additional ways in which the command could fail, and we'd prefer to avoid 9907c478bd9Sstevel@tonic-gate * that. 9917c478bd9Sstevel@tonic-gate */ 9927c478bd9Sstevel@tonic-gate static char ** 9937c478bd9Sstevel@tonic-gate prep_env_noninteractive(char *login, char **env) 9947c478bd9Sstevel@tonic-gate { 9957c478bd9Sstevel@tonic-gate size_t size; 9967c478bd9Sstevel@tonic-gate struct passwd *pw; 9977c478bd9Sstevel@tonic-gate char **new_env; 9987c478bd9Sstevel@tonic-gate int e, i; 9997c478bd9Sstevel@tonic-gate char *estr; 10007c478bd9Sstevel@tonic-gate char varmail[LOGNAME_MAX + 11]; /* strlen(/var/mail/) = 10, NUL */ 10017c478bd9Sstevel@tonic-gate 10027c478bd9Sstevel@tonic-gate assert(env != NULL); 10037c478bd9Sstevel@tonic-gate assert(failsafe == 0); 10047c478bd9Sstevel@tonic-gate 10057c478bd9Sstevel@tonic-gate /* 10067c478bd9Sstevel@tonic-gate * Get existing envp size. 10077c478bd9Sstevel@tonic-gate */ 10087c478bd9Sstevel@tonic-gate for (size = 0; env[size] != NULL; size++) 10097c478bd9Sstevel@tonic-gate ; 10107c478bd9Sstevel@tonic-gate e = size; 10117c478bd9Sstevel@tonic-gate 10127c478bd9Sstevel@tonic-gate /* 10137c478bd9Sstevel@tonic-gate * Finish filling out the environment; we duplicate the environment 10147c478bd9Sstevel@tonic-gate * setup described in login(1), for lack of a better precedent. 10157c478bd9Sstevel@tonic-gate */ 10167c478bd9Sstevel@tonic-gate if ((pw = getpwnam(login)) != NULL) { 10177c478bd9Sstevel@tonic-gate size += 3; /* LOGNAME, HOME, MAIL */ 10187c478bd9Sstevel@tonic-gate } 10197c478bd9Sstevel@tonic-gate size++; /* always fill in SHELL */ 10207c478bd9Sstevel@tonic-gate size++; /* terminating NULL */ 10217c478bd9Sstevel@tonic-gate 10227c478bd9Sstevel@tonic-gate if ((new_env = malloc(sizeof (char *) * size)) == NULL) 10237c478bd9Sstevel@tonic-gate goto malloc_fail; 10247c478bd9Sstevel@tonic-gate 10257c478bd9Sstevel@tonic-gate /* 10267c478bd9Sstevel@tonic-gate * Copy existing elements of env into new_env. 10277c478bd9Sstevel@tonic-gate */ 10287c478bd9Sstevel@tonic-gate for (i = 0; env[i] != NULL; i++) { 10297c478bd9Sstevel@tonic-gate if ((new_env[i] = strdup(env[i])) == NULL) 10307c478bd9Sstevel@tonic-gate goto malloc_fail; 10317c478bd9Sstevel@tonic-gate } 10327c478bd9Sstevel@tonic-gate assert(e == i); 10337c478bd9Sstevel@tonic-gate 10347c478bd9Sstevel@tonic-gate if (pw != NULL) { 10357c478bd9Sstevel@tonic-gate if ((estr = add_env("LOGNAME", pw->pw_name)) == NULL) 10367c478bd9Sstevel@tonic-gate goto malloc_fail; 10377c478bd9Sstevel@tonic-gate new_env[e++] = estr; 10387c478bd9Sstevel@tonic-gate 10397c478bd9Sstevel@tonic-gate if ((estr = add_env("HOME", pw->pw_dir)) == NULL) 10407c478bd9Sstevel@tonic-gate goto malloc_fail; 10417c478bd9Sstevel@tonic-gate new_env[e++] = estr; 10427c478bd9Sstevel@tonic-gate 10437c478bd9Sstevel@tonic-gate if (chdir(pw->pw_dir) != 0) 10447c478bd9Sstevel@tonic-gate zerror(gettext("Could not chdir to home directory " 10457c478bd9Sstevel@tonic-gate "%s: %s"), pw->pw_dir, strerror(errno)); 10467c478bd9Sstevel@tonic-gate 10477c478bd9Sstevel@tonic-gate (void) snprintf(varmail, sizeof (varmail), "/var/mail/%s", 10487c478bd9Sstevel@tonic-gate pw->pw_name); 10497c478bd9Sstevel@tonic-gate if ((estr = add_env("MAIL", varmail)) == NULL) 10507c478bd9Sstevel@tonic-gate goto malloc_fail; 10517c478bd9Sstevel@tonic-gate new_env[e++] = estr; 10527c478bd9Sstevel@tonic-gate } 10537c478bd9Sstevel@tonic-gate 10547c478bd9Sstevel@tonic-gate if (pw != NULL && strlen(pw->pw_shell) > 0) { 10557c478bd9Sstevel@tonic-gate if ((estr = add_env("SHELL", pw->pw_shell)) == NULL) 10567c478bd9Sstevel@tonic-gate goto malloc_fail; 10577c478bd9Sstevel@tonic-gate new_env[e++] = estr; 10587c478bd9Sstevel@tonic-gate } else { 10597c478bd9Sstevel@tonic-gate if ((estr = add_env("SHELL", DEFAULTSHELL)) == NULL) 10607c478bd9Sstevel@tonic-gate goto malloc_fail; 10617c478bd9Sstevel@tonic-gate new_env[e++] = estr; 10627c478bd9Sstevel@tonic-gate } 10637c478bd9Sstevel@tonic-gate 10647c478bd9Sstevel@tonic-gate new_env[e++] = NULL; /* add terminating NULL */ 10657c478bd9Sstevel@tonic-gate 10667c478bd9Sstevel@tonic-gate assert(e == size); 10677c478bd9Sstevel@tonic-gate return (new_env); 10687c478bd9Sstevel@tonic-gate 10697c478bd9Sstevel@tonic-gate malloc_fail: 10707c478bd9Sstevel@tonic-gate zperror(gettext("failed to allocate memory for process environment")); 10717c478bd9Sstevel@tonic-gate return (NULL); 10727c478bd9Sstevel@tonic-gate } 10737c478bd9Sstevel@tonic-gate 10747c478bd9Sstevel@tonic-gate static int 10757c478bd9Sstevel@tonic-gate close_func(void *slavefd, int fd) 10767c478bd9Sstevel@tonic-gate { 10777c478bd9Sstevel@tonic-gate if (fd != *(int *)slavefd) 10787c478bd9Sstevel@tonic-gate (void) close(fd); 10797c478bd9Sstevel@tonic-gate return (0); 10807c478bd9Sstevel@tonic-gate } 10817c478bd9Sstevel@tonic-gate 10827c478bd9Sstevel@tonic-gate static void 10837c478bd9Sstevel@tonic-gate set_cmdchar(char *cmdcharstr) 10847c478bd9Sstevel@tonic-gate { 10857c478bd9Sstevel@tonic-gate char c; 10867c478bd9Sstevel@tonic-gate long lc; 10877c478bd9Sstevel@tonic-gate 10887c478bd9Sstevel@tonic-gate if ((c = *cmdcharstr) != '\\') { 10897c478bd9Sstevel@tonic-gate cmdchar = c; 10907c478bd9Sstevel@tonic-gate return; 10917c478bd9Sstevel@tonic-gate } 10927c478bd9Sstevel@tonic-gate 10937c478bd9Sstevel@tonic-gate c = cmdcharstr[1]; 10947c478bd9Sstevel@tonic-gate if (c == '\0' || c == '\\') { 10957c478bd9Sstevel@tonic-gate cmdchar = '\\'; 10967c478bd9Sstevel@tonic-gate return; 10977c478bd9Sstevel@tonic-gate } 10987c478bd9Sstevel@tonic-gate 10997c478bd9Sstevel@tonic-gate if (c < '0' || c > '7') { 11007c478bd9Sstevel@tonic-gate zerror(gettext("Unrecognized escape character option %s"), 11017c478bd9Sstevel@tonic-gate cmdcharstr); 11027c478bd9Sstevel@tonic-gate usage(); 11037c478bd9Sstevel@tonic-gate } 11047c478bd9Sstevel@tonic-gate 11057c478bd9Sstevel@tonic-gate lc = strtol(cmdcharstr + 1, NULL, 8); 11067c478bd9Sstevel@tonic-gate if (lc < 0 || lc > 255) { 11077c478bd9Sstevel@tonic-gate zerror(gettext("Octal escape character '%s' too large"), 11087c478bd9Sstevel@tonic-gate cmdcharstr); 11097c478bd9Sstevel@tonic-gate usage(); 11107c478bd9Sstevel@tonic-gate } 11117c478bd9Sstevel@tonic-gate cmdchar = (char)lc; 11127c478bd9Sstevel@tonic-gate } 11137c478bd9Sstevel@tonic-gate 11147c478bd9Sstevel@tonic-gate static int 11157c478bd9Sstevel@tonic-gate setup_utmpx(char *slavename) 11167c478bd9Sstevel@tonic-gate { 11177c478bd9Sstevel@tonic-gate struct utmpx ut; 11187c478bd9Sstevel@tonic-gate 11197c478bd9Sstevel@tonic-gate bzero(&ut, sizeof (ut)); 11207c478bd9Sstevel@tonic-gate (void) strncpy(ut.ut_user, ".zlogin", sizeof (ut.ut_user)); 11217c478bd9Sstevel@tonic-gate (void) strncpy(ut.ut_line, slavename, sizeof (ut.ut_line)); 11227c478bd9Sstevel@tonic-gate ut.ut_pid = getpid(); 11237c478bd9Sstevel@tonic-gate ut.ut_id[0] = 'z'; 11247c478bd9Sstevel@tonic-gate ut.ut_id[1] = ut.ut_id[2] = ut.ut_id[3] = (char)SC_WILDC; 11257c478bd9Sstevel@tonic-gate ut.ut_type = LOGIN_PROCESS; 11267c478bd9Sstevel@tonic-gate (void) time(&ut.ut_tv.tv_sec); 11277c478bd9Sstevel@tonic-gate 11287c478bd9Sstevel@tonic-gate if (makeutx(&ut) == NULL) { 11297c478bd9Sstevel@tonic-gate zerror(gettext("makeutx failed")); 11307c478bd9Sstevel@tonic-gate return (-1); 11317c478bd9Sstevel@tonic-gate } 11327c478bd9Sstevel@tonic-gate return (0); 11337c478bd9Sstevel@tonic-gate } 11347c478bd9Sstevel@tonic-gate 11357c478bd9Sstevel@tonic-gate static void 11367c478bd9Sstevel@tonic-gate release_lock_file(int lockfd) 11377c478bd9Sstevel@tonic-gate { 11387c478bd9Sstevel@tonic-gate (void) close(lockfd); 11397c478bd9Sstevel@tonic-gate } 11407c478bd9Sstevel@tonic-gate 11417c478bd9Sstevel@tonic-gate static int 11427c478bd9Sstevel@tonic-gate grab_lock_file(const char *zone_name, int *lockfd) 11437c478bd9Sstevel@tonic-gate { 11447c478bd9Sstevel@tonic-gate char pathbuf[PATH_MAX]; 11457c478bd9Sstevel@tonic-gate struct flock flock; 11467c478bd9Sstevel@tonic-gate 11477c478bd9Sstevel@tonic-gate if (mkdir(ZONES_TMPDIR, S_IRWXU) < 0 && errno != EEXIST) { 11487c478bd9Sstevel@tonic-gate zerror(gettext("could not mkdir %s: %s"), ZONES_TMPDIR, 11497c478bd9Sstevel@tonic-gate strerror(errno)); 11507c478bd9Sstevel@tonic-gate return (-1); 11517c478bd9Sstevel@tonic-gate } 11527c478bd9Sstevel@tonic-gate (void) chmod(ZONES_TMPDIR, S_IRWXU); 11537c478bd9Sstevel@tonic-gate (void) snprintf(pathbuf, sizeof (pathbuf), "%s/%s.zoneadm.lock", 11547c478bd9Sstevel@tonic-gate ZONES_TMPDIR, zone_name); 11557c478bd9Sstevel@tonic-gate 11567c478bd9Sstevel@tonic-gate if ((*lockfd = open(pathbuf, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR)) < 0) { 11577c478bd9Sstevel@tonic-gate zerror(gettext("could not open %s: %s"), pathbuf, 11587c478bd9Sstevel@tonic-gate strerror(errno)); 11597c478bd9Sstevel@tonic-gate return (-1); 11607c478bd9Sstevel@tonic-gate } 11617c478bd9Sstevel@tonic-gate /* 11627c478bd9Sstevel@tonic-gate * Lock the file to synchronize with other zoneadmds 11637c478bd9Sstevel@tonic-gate */ 11647c478bd9Sstevel@tonic-gate flock.l_type = F_WRLCK; 11657c478bd9Sstevel@tonic-gate flock.l_whence = SEEK_SET; 11667c478bd9Sstevel@tonic-gate flock.l_start = (off_t)0; 11677c478bd9Sstevel@tonic-gate flock.l_len = (off_t)0; 11687c478bd9Sstevel@tonic-gate if (fcntl(*lockfd, F_SETLKW, &flock) < 0) { 11697c478bd9Sstevel@tonic-gate zerror(gettext("unable to lock %s: %s"), pathbuf, 11707c478bd9Sstevel@tonic-gate strerror(errno)); 11717c478bd9Sstevel@tonic-gate release_lock_file(*lockfd); 11727c478bd9Sstevel@tonic-gate return (-1); 11737c478bd9Sstevel@tonic-gate } 11747c478bd9Sstevel@tonic-gate return (Z_OK); 11757c478bd9Sstevel@tonic-gate } 11767c478bd9Sstevel@tonic-gate 11777c478bd9Sstevel@tonic-gate static int 11787c478bd9Sstevel@tonic-gate start_zoneadmd(const char *zone_name) 11797c478bd9Sstevel@tonic-gate { 11807c478bd9Sstevel@tonic-gate pid_t retval; 11817c478bd9Sstevel@tonic-gate int pstatus = 0, error = -1, lockfd, doorfd; 11827c478bd9Sstevel@tonic-gate struct door_info info; 11837c478bd9Sstevel@tonic-gate char doorpath[MAXPATHLEN]; 11847c478bd9Sstevel@tonic-gate 11857c478bd9Sstevel@tonic-gate (void) snprintf(doorpath, sizeof (doorpath), ZONE_DOOR_PATH, zone_name); 11867c478bd9Sstevel@tonic-gate 11877c478bd9Sstevel@tonic-gate if (grab_lock_file(zone_name, &lockfd) != Z_OK) 11887c478bd9Sstevel@tonic-gate return (-1); 11897c478bd9Sstevel@tonic-gate /* 11907c478bd9Sstevel@tonic-gate * We must do the door check with the lock held. Otherwise, we 11917c478bd9Sstevel@tonic-gate * might race against another zoneadm/zlogin process and wind 11927c478bd9Sstevel@tonic-gate * up with two processes trying to start zoneadmd at the same 11937c478bd9Sstevel@tonic-gate * time. zoneadmd will detect this, and fail, but we prefer this 11947c478bd9Sstevel@tonic-gate * to be as seamless as is practical, from a user perspective. 11957c478bd9Sstevel@tonic-gate */ 11967c478bd9Sstevel@tonic-gate if ((doorfd = open(doorpath, O_RDONLY)) < 0) { 11977c478bd9Sstevel@tonic-gate if (errno != ENOENT) { 11987c478bd9Sstevel@tonic-gate zerror("failed to open %s: %s", doorpath, 11997c478bd9Sstevel@tonic-gate strerror(errno)); 12007c478bd9Sstevel@tonic-gate goto out; 12017c478bd9Sstevel@tonic-gate } 12027c478bd9Sstevel@tonic-gate } else { 12037c478bd9Sstevel@tonic-gate /* 12047c478bd9Sstevel@tonic-gate * Seems to be working ok. 12057c478bd9Sstevel@tonic-gate */ 12067c478bd9Sstevel@tonic-gate if (door_info(doorfd, &info) == 0 && 12077c478bd9Sstevel@tonic-gate ((info.di_attributes & DOOR_REVOKED) == 0)) { 12087c478bd9Sstevel@tonic-gate error = 0; 12097c478bd9Sstevel@tonic-gate goto out; 12107c478bd9Sstevel@tonic-gate } 12117c478bd9Sstevel@tonic-gate } 12127c478bd9Sstevel@tonic-gate 12137c478bd9Sstevel@tonic-gate if ((child_pid = fork()) == -1) { 12147c478bd9Sstevel@tonic-gate zperror(gettext("could not fork")); 12157c478bd9Sstevel@tonic-gate goto out; 12167c478bd9Sstevel@tonic-gate } else if (child_pid == 0) { 12177c478bd9Sstevel@tonic-gate /* child process */ 12187c478bd9Sstevel@tonic-gate (void) execl("/usr/lib/zones/zoneadmd", "zoneadmd", "-z", 12197c478bd9Sstevel@tonic-gate zone_name, NULL); 12207c478bd9Sstevel@tonic-gate zperror(gettext("could not exec zoneadmd")); 12217c478bd9Sstevel@tonic-gate _exit(1); 12227c478bd9Sstevel@tonic-gate } 12237c478bd9Sstevel@tonic-gate 12247c478bd9Sstevel@tonic-gate /* parent process */ 12257c478bd9Sstevel@tonic-gate do { 12267c478bd9Sstevel@tonic-gate retval = waitpid(child_pid, &pstatus, 0); 12277c478bd9Sstevel@tonic-gate } while (retval != child_pid); 12287c478bd9Sstevel@tonic-gate if (WIFSIGNALED(pstatus) || 12297c478bd9Sstevel@tonic-gate (WIFEXITED(pstatus) && WEXITSTATUS(pstatus) != 0)) { 12307c478bd9Sstevel@tonic-gate zerror(gettext("could not start %s"), "zoneadmd"); 12317c478bd9Sstevel@tonic-gate goto out; 12327c478bd9Sstevel@tonic-gate } 12337c478bd9Sstevel@tonic-gate error = 0; 12347c478bd9Sstevel@tonic-gate out: 12357c478bd9Sstevel@tonic-gate release_lock_file(lockfd); 12367c478bd9Sstevel@tonic-gate (void) close(doorfd); 12377c478bd9Sstevel@tonic-gate return (error); 12387c478bd9Sstevel@tonic-gate } 12397c478bd9Sstevel@tonic-gate 12407c478bd9Sstevel@tonic-gate static int 12417c478bd9Sstevel@tonic-gate init_template(void) 12427c478bd9Sstevel@tonic-gate { 12437c478bd9Sstevel@tonic-gate int fd; 12447c478bd9Sstevel@tonic-gate int err = 0; 12457c478bd9Sstevel@tonic-gate 12467c478bd9Sstevel@tonic-gate fd = open64(CTFS_ROOT "/process/template", O_RDWR); 12477c478bd9Sstevel@tonic-gate if (fd == -1) 12487c478bd9Sstevel@tonic-gate return (-1); 12497c478bd9Sstevel@tonic-gate 12507c478bd9Sstevel@tonic-gate /* 12517c478bd9Sstevel@tonic-gate * zlogin doesn't do anything with the contract. 12527c478bd9Sstevel@tonic-gate * Deliver no events, don't inherit, and allow it to be orphaned. 12537c478bd9Sstevel@tonic-gate */ 12547c478bd9Sstevel@tonic-gate err |= ct_tmpl_set_critical(fd, 0); 12557c478bd9Sstevel@tonic-gate err |= ct_tmpl_set_informative(fd, 0); 12567c478bd9Sstevel@tonic-gate err |= ct_pr_tmpl_set_fatal(fd, CT_PR_EV_HWERR); 12577c478bd9Sstevel@tonic-gate err |= ct_pr_tmpl_set_param(fd, CT_PR_PGRPONLY | CT_PR_REGENT); 12587c478bd9Sstevel@tonic-gate if (err || ct_tmpl_activate(fd)) { 12597c478bd9Sstevel@tonic-gate (void) close(fd); 12607c478bd9Sstevel@tonic-gate return (-1); 12617c478bd9Sstevel@tonic-gate } 12627c478bd9Sstevel@tonic-gate 12637c478bd9Sstevel@tonic-gate return (fd); 12647c478bd9Sstevel@tonic-gate } 12657c478bd9Sstevel@tonic-gate 12667c478bd9Sstevel@tonic-gate static int 12677c478bd9Sstevel@tonic-gate noninteractive_login(char *zonename, zoneid_t zoneid, char *login, 12687c478bd9Sstevel@tonic-gate char **new_args, char **new_env) 12697c478bd9Sstevel@tonic-gate { 12707c478bd9Sstevel@tonic-gate pid_t retval; 12717c478bd9Sstevel@tonic-gate int stdin_pipe[2], stdout_pipe[2], stderr_pipe[2]; 12727c478bd9Sstevel@tonic-gate int child_status; 12737c478bd9Sstevel@tonic-gate int tmpl_fd; 12747c478bd9Sstevel@tonic-gate sigset_t block_cld; 12757c478bd9Sstevel@tonic-gate 12767c478bd9Sstevel@tonic-gate if ((tmpl_fd = init_template()) == -1) { 12777c478bd9Sstevel@tonic-gate reset_tty(); 12787c478bd9Sstevel@tonic-gate zperror(gettext("could not create contract")); 12797c478bd9Sstevel@tonic-gate return (1); 12807c478bd9Sstevel@tonic-gate } 12817c478bd9Sstevel@tonic-gate 12827c478bd9Sstevel@tonic-gate if (pipe(stdin_pipe) != 0) { 12837c478bd9Sstevel@tonic-gate zperror(gettext("could not create STDIN pipe")); 12847c478bd9Sstevel@tonic-gate return (1); 12857c478bd9Sstevel@tonic-gate } 12867c478bd9Sstevel@tonic-gate /* 12877c478bd9Sstevel@tonic-gate * When the user types ^D, we get a zero length message on STDIN. 12887c478bd9Sstevel@tonic-gate * We need to echo that down the pipe to send it to the other side; 12897c478bd9Sstevel@tonic-gate * but by default, pipes don't propagate zero-length messages. We 12907c478bd9Sstevel@tonic-gate * toggle that behavior off using I_SWROPT. See streamio(7i). 12917c478bd9Sstevel@tonic-gate */ 12927c478bd9Sstevel@tonic-gate if (ioctl(stdin_pipe[0], I_SWROPT, SNDZERO) != 0) { 12937c478bd9Sstevel@tonic-gate zperror(gettext("could not configure STDIN pipe")); 12947c478bd9Sstevel@tonic-gate return (1); 12957c478bd9Sstevel@tonic-gate 12967c478bd9Sstevel@tonic-gate } 12977c478bd9Sstevel@tonic-gate if (pipe(stdout_pipe) != 0) { 12987c478bd9Sstevel@tonic-gate zperror(gettext("could not create STDOUT pipe")); 12997c478bd9Sstevel@tonic-gate return (1); 13007c478bd9Sstevel@tonic-gate } 13017c478bd9Sstevel@tonic-gate if (pipe(stderr_pipe) != 0) { 13027c478bd9Sstevel@tonic-gate zperror(gettext("could not create STDERR pipe")); 13037c478bd9Sstevel@tonic-gate return (1); 13047c478bd9Sstevel@tonic-gate } 13057c478bd9Sstevel@tonic-gate 13067c478bd9Sstevel@tonic-gate /* 13077c478bd9Sstevel@tonic-gate * If any of the pipe FD's winds up being less than STDERR, then we 13087c478bd9Sstevel@tonic-gate * have a mess on our hands-- and we are lacking some of the I/O 13097c478bd9Sstevel@tonic-gate * streams we would expect anyway. So we bail. 13107c478bd9Sstevel@tonic-gate */ 13117c478bd9Sstevel@tonic-gate if (stdin_pipe[0] <= STDERR_FILENO || 13127c478bd9Sstevel@tonic-gate stdin_pipe[1] <= STDERR_FILENO || 13137c478bd9Sstevel@tonic-gate stdout_pipe[0] <= STDERR_FILENO || 13147c478bd9Sstevel@tonic-gate stdout_pipe[1] <= STDERR_FILENO || 13157c478bd9Sstevel@tonic-gate stderr_pipe[0] <= STDERR_FILENO || 13167c478bd9Sstevel@tonic-gate stderr_pipe[1] <= STDERR_FILENO) { 13177c478bd9Sstevel@tonic-gate zperror(gettext("process lacks valid STDIN, STDOUT, STDERR")); 13187c478bd9Sstevel@tonic-gate return (1); 13197c478bd9Sstevel@tonic-gate } 13207c478bd9Sstevel@tonic-gate 13217c478bd9Sstevel@tonic-gate if (prefork_dropprivs() != 0) { 13227c478bd9Sstevel@tonic-gate zperror(gettext("could not allocate privilege set")); 13237c478bd9Sstevel@tonic-gate return (1); 13247c478bd9Sstevel@tonic-gate } 13257c478bd9Sstevel@tonic-gate 13267c478bd9Sstevel@tonic-gate (void) sigset(SIGCLD, sigcld); 13277c478bd9Sstevel@tonic-gate (void) sigemptyset(&block_cld); 13287c478bd9Sstevel@tonic-gate (void) sigaddset(&block_cld, SIGCLD); 13297c478bd9Sstevel@tonic-gate (void) sigprocmask(SIG_BLOCK, &block_cld, NULL); 13307c478bd9Sstevel@tonic-gate 13317c478bd9Sstevel@tonic-gate if ((child_pid = fork()) == -1) { 13327c478bd9Sstevel@tonic-gate (void) ct_tmpl_clear(tmpl_fd); 13337c478bd9Sstevel@tonic-gate (void) close(tmpl_fd); 13347c478bd9Sstevel@tonic-gate zperror(gettext("could not fork")); 13357c478bd9Sstevel@tonic-gate return (1); 13367c478bd9Sstevel@tonic-gate } else if (child_pid == 0) { /* child process */ 13377c478bd9Sstevel@tonic-gate (void) ct_tmpl_clear(tmpl_fd); 13387c478bd9Sstevel@tonic-gate 13397c478bd9Sstevel@tonic-gate /* 13407c478bd9Sstevel@tonic-gate * Do a dance to get the pipes hooked up as FD's 0, 1 and 2. 13417c478bd9Sstevel@tonic-gate */ 13427c478bd9Sstevel@tonic-gate (void) close(STDIN_FILENO); 13437c478bd9Sstevel@tonic-gate (void) close(STDOUT_FILENO); 13447c478bd9Sstevel@tonic-gate (void) close(STDERR_FILENO); 13457c478bd9Sstevel@tonic-gate (void) dup2(stdin_pipe[1], STDIN_FILENO); 13467c478bd9Sstevel@tonic-gate (void) dup2(stdout_pipe[1], STDOUT_FILENO); 13477c478bd9Sstevel@tonic-gate (void) dup2(stderr_pipe[1], STDERR_FILENO); 13487c478bd9Sstevel@tonic-gate (void) closefrom(STDERR_FILENO + 1); 13497c478bd9Sstevel@tonic-gate 13507c478bd9Sstevel@tonic-gate (void) sigset(SIGCLD, SIG_DFL); 13517c478bd9Sstevel@tonic-gate (void) sigprocmask(SIG_UNBLOCK, &block_cld, NULL); 13527c478bd9Sstevel@tonic-gate /* 13537c478bd9Sstevel@tonic-gate * In case any of stdin, stdout or stderr are streams, 13547c478bd9Sstevel@tonic-gate * anchor them to prevent malicious I_POPs. 13557c478bd9Sstevel@tonic-gate */ 13567c478bd9Sstevel@tonic-gate (void) ioctl(STDIN_FILENO, I_ANCHOR); 13577c478bd9Sstevel@tonic-gate (void) ioctl(STDOUT_FILENO, I_ANCHOR); 13587c478bd9Sstevel@tonic-gate (void) ioctl(STDERR_FILENO, I_ANCHOR); 13597c478bd9Sstevel@tonic-gate 13607c478bd9Sstevel@tonic-gate if (zone_enter(zoneid) == -1) { 13617c478bd9Sstevel@tonic-gate zerror(gettext("could not enter zone %s: %s"), 13627c478bd9Sstevel@tonic-gate zonename, strerror(errno)); 13637c478bd9Sstevel@tonic-gate _exit(1); 13647c478bd9Sstevel@tonic-gate } 13657c478bd9Sstevel@tonic-gate 13667c478bd9Sstevel@tonic-gate if (!failsafe) 13677c478bd9Sstevel@tonic-gate new_env = prep_env_noninteractive(login, new_env); 13687c478bd9Sstevel@tonic-gate 13697c478bd9Sstevel@tonic-gate if (new_env == NULL) { 13707c478bd9Sstevel@tonic-gate _exit(1); 13717c478bd9Sstevel@tonic-gate } 13727c478bd9Sstevel@tonic-gate 13737c478bd9Sstevel@tonic-gate /* 13747c478bd9Sstevel@tonic-gate * Move into a new process group; the zone_enter will have 13757c478bd9Sstevel@tonic-gate * placed us into zsched's session, and we want to be in 13767c478bd9Sstevel@tonic-gate * a unique process group. 13777c478bd9Sstevel@tonic-gate */ 13787c478bd9Sstevel@tonic-gate (void) setpgid(getpid(), getpid()); 13797c478bd9Sstevel@tonic-gate 13807c478bd9Sstevel@tonic-gate (void) execve(new_args[0], new_args, new_env); 13817c478bd9Sstevel@tonic-gate zperror(gettext("exec failure")); 13827c478bd9Sstevel@tonic-gate _exit(1); 13837c478bd9Sstevel@tonic-gate } 13847c478bd9Sstevel@tonic-gate /* parent */ 13857c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, sig_forward); 13867c478bd9Sstevel@tonic-gate 13877c478bd9Sstevel@tonic-gate postfork_dropprivs(); 13887c478bd9Sstevel@tonic-gate 13897c478bd9Sstevel@tonic-gate (void) ct_tmpl_clear(tmpl_fd); 13907c478bd9Sstevel@tonic-gate (void) close(tmpl_fd); 13917c478bd9Sstevel@tonic-gate 13927c478bd9Sstevel@tonic-gate (void) sigprocmask(SIG_UNBLOCK, &block_cld, NULL); 13937c478bd9Sstevel@tonic-gate doio(stdin_pipe[0], stdout_pipe[0], stderr_pipe[0], B_TRUE); 13947c478bd9Sstevel@tonic-gate do { 13957c478bd9Sstevel@tonic-gate retval = waitpid(child_pid, &child_status, 0); 13967c478bd9Sstevel@tonic-gate if (retval == -1) { 13977c478bd9Sstevel@tonic-gate child_status = 0; 13987c478bd9Sstevel@tonic-gate } 13997c478bd9Sstevel@tonic-gate } while (retval != child_pid && errno != ECHILD); 14007c478bd9Sstevel@tonic-gate 14017c478bd9Sstevel@tonic-gate return (WEXITSTATUS(child_status)); 14027c478bd9Sstevel@tonic-gate } 14037c478bd9Sstevel@tonic-gate 14047c478bd9Sstevel@tonic-gate int 14057c478bd9Sstevel@tonic-gate main(int argc, char **argv) 14067c478bd9Sstevel@tonic-gate { 14077c478bd9Sstevel@tonic-gate int arg, console = 0; 14087c478bd9Sstevel@tonic-gate zoneid_t zoneid; 14097c478bd9Sstevel@tonic-gate zone_state_t st; 14107c478bd9Sstevel@tonic-gate char *login = "root"; 14117c478bd9Sstevel@tonic-gate int lflag = 0; 14127c478bd9Sstevel@tonic-gate char *zonename = NULL; 14137c478bd9Sstevel@tonic-gate char **proc_args = NULL; 14147c478bd9Sstevel@tonic-gate char **new_args, **new_env; 14157c478bd9Sstevel@tonic-gate sigset_t block_cld; 1416facf4a8dSllai1 char devroot[MAXPATHLEN]; 14177c478bd9Sstevel@tonic-gate char *slavename, slaveshortname[MAXPATHLEN]; 14187c478bd9Sstevel@tonic-gate priv_set_t *privset; 14197c478bd9Sstevel@tonic-gate int tmpl_fd; 14209acbbeafSnn35248 char zonebrand[MAXNAMELEN]; 1421108322fbScarlsonj struct stat sb; 1422108322fbScarlsonj char kernzone[ZONENAME_MAX]; 1423123807fbSedp brand_handle_t bh; 14247c478bd9Sstevel@tonic-gate 14257c478bd9Sstevel@tonic-gate (void) setlocale(LC_ALL, ""); 14267c478bd9Sstevel@tonic-gate (void) textdomain(TEXT_DOMAIN); 14277c478bd9Sstevel@tonic-gate 14287c478bd9Sstevel@tonic-gate (void) getpname(argv[0]); 14297c478bd9Sstevel@tonic-gate 1430108322fbScarlsonj while ((arg = getopt(argc, argv, "ECR:Se:l:")) != EOF) { 14317c478bd9Sstevel@tonic-gate switch (arg) { 14327c478bd9Sstevel@tonic-gate case 'C': 14337c478bd9Sstevel@tonic-gate console = 1; 14347c478bd9Sstevel@tonic-gate break; 14357c478bd9Sstevel@tonic-gate case 'E': 14367c478bd9Sstevel@tonic-gate nocmdchar = 1; 14377c478bd9Sstevel@tonic-gate break; 1438108322fbScarlsonj case 'R': /* undocumented */ 1439108322fbScarlsonj if (*optarg != '/') { 1440108322fbScarlsonj zerror(gettext("root path must be absolute.")); 1441108322fbScarlsonj exit(2); 1442108322fbScarlsonj } 1443108322fbScarlsonj if (stat(optarg, &sb) == -1 || !S_ISDIR(sb.st_mode)) { 1444108322fbScarlsonj zerror( 1445108322fbScarlsonj gettext("root path must be a directory.")); 1446108322fbScarlsonj exit(2); 1447108322fbScarlsonj } 1448108322fbScarlsonj zonecfg_set_root(optarg); 1449108322fbScarlsonj break; 14507c478bd9Sstevel@tonic-gate case 'S': 14517c478bd9Sstevel@tonic-gate failsafe = 1; 14527c478bd9Sstevel@tonic-gate break; 14537c478bd9Sstevel@tonic-gate case 'e': 14547c478bd9Sstevel@tonic-gate set_cmdchar(optarg); 14557c478bd9Sstevel@tonic-gate break; 14567c478bd9Sstevel@tonic-gate case 'l': 14577c478bd9Sstevel@tonic-gate login = optarg; 14587c478bd9Sstevel@tonic-gate lflag = 1; 14597c478bd9Sstevel@tonic-gate break; 14607c478bd9Sstevel@tonic-gate default: 14617c478bd9Sstevel@tonic-gate usage(); 14627c478bd9Sstevel@tonic-gate } 14637c478bd9Sstevel@tonic-gate } 14647c478bd9Sstevel@tonic-gate 14657c478bd9Sstevel@tonic-gate if (console != 0 && lflag != 0) { 14667c478bd9Sstevel@tonic-gate zerror(gettext("-l may not be specified for console login")); 14677c478bd9Sstevel@tonic-gate usage(); 14687c478bd9Sstevel@tonic-gate } 14697c478bd9Sstevel@tonic-gate 14707c478bd9Sstevel@tonic-gate if (console != 0 && failsafe != 0) { 14717c478bd9Sstevel@tonic-gate zerror(gettext("-S may not be specified for console login")); 14727c478bd9Sstevel@tonic-gate usage(); 14737c478bd9Sstevel@tonic-gate } 14747c478bd9Sstevel@tonic-gate 1475108322fbScarlsonj if (console != 0 && zonecfg_in_alt_root()) { 1476108322fbScarlsonj zerror(gettext("-R may not be specified for console login")); 1477108322fbScarlsonj exit(2); 1478108322fbScarlsonj } 1479108322fbScarlsonj 14807c478bd9Sstevel@tonic-gate if (failsafe != 0 && lflag != 0) { 14817c478bd9Sstevel@tonic-gate zerror(gettext("-l may not be specified for failsafe login")); 14827c478bd9Sstevel@tonic-gate usage(); 14837c478bd9Sstevel@tonic-gate } 14847c478bd9Sstevel@tonic-gate 14857c478bd9Sstevel@tonic-gate if (optind == (argc - 1)) { 14867c478bd9Sstevel@tonic-gate /* 14877c478bd9Sstevel@tonic-gate * zone name, no process name; this should be an interactive 14887c478bd9Sstevel@tonic-gate * as long as STDIN is really a tty. 14897c478bd9Sstevel@tonic-gate */ 14907c478bd9Sstevel@tonic-gate if (isatty(STDIN_FILENO)) 14917c478bd9Sstevel@tonic-gate interactive = 1; 14927c478bd9Sstevel@tonic-gate zonename = argv[optind]; 14937c478bd9Sstevel@tonic-gate } else if (optind < (argc - 1)) { 14947c478bd9Sstevel@tonic-gate if (console) { 14957c478bd9Sstevel@tonic-gate zerror(gettext("Commands may not be specified for " 14967c478bd9Sstevel@tonic-gate "console login.")); 14977c478bd9Sstevel@tonic-gate usage(); 14987c478bd9Sstevel@tonic-gate } 14997c478bd9Sstevel@tonic-gate /* zone name and process name, and possibly some args */ 15007c478bd9Sstevel@tonic-gate zonename = argv[optind]; 15017c478bd9Sstevel@tonic-gate proc_args = &argv[optind + 1]; 15027c478bd9Sstevel@tonic-gate interactive = 0; 15037c478bd9Sstevel@tonic-gate } else { 15047c478bd9Sstevel@tonic-gate usage(); 15057c478bd9Sstevel@tonic-gate } 15067c478bd9Sstevel@tonic-gate 15077c478bd9Sstevel@tonic-gate if (getzoneid() != GLOBAL_ZONEID) { 15087c478bd9Sstevel@tonic-gate zerror(gettext("'%s' may only be used from the global zone"), 15097c478bd9Sstevel@tonic-gate pname); 15107c478bd9Sstevel@tonic-gate return (1); 15117c478bd9Sstevel@tonic-gate } 15127c478bd9Sstevel@tonic-gate 15137c478bd9Sstevel@tonic-gate if (strcmp(zonename, GLOBAL_ZONENAME) == 0) { 15147c478bd9Sstevel@tonic-gate zerror(gettext("'%s' not applicable to the global zone"), 15157c478bd9Sstevel@tonic-gate pname); 15167c478bd9Sstevel@tonic-gate return (1); 15177c478bd9Sstevel@tonic-gate } 15187c478bd9Sstevel@tonic-gate 15197c478bd9Sstevel@tonic-gate if (zone_get_state(zonename, &st) != Z_OK) { 15207c478bd9Sstevel@tonic-gate zerror(gettext("zone '%s' unknown"), zonename); 15217c478bd9Sstevel@tonic-gate return (1); 15227c478bd9Sstevel@tonic-gate } 15237c478bd9Sstevel@tonic-gate 15247c478bd9Sstevel@tonic-gate if (st < ZONE_STATE_INSTALLED) { 15257c478bd9Sstevel@tonic-gate zerror(gettext("cannot login to a zone which is '%s'"), 15267c478bd9Sstevel@tonic-gate zone_state_str(st)); 15277c478bd9Sstevel@tonic-gate return (1); 15287c478bd9Sstevel@tonic-gate } 15297c478bd9Sstevel@tonic-gate 15307c478bd9Sstevel@tonic-gate /* 15317c478bd9Sstevel@tonic-gate * In both console and non-console cases, we require all privs. 15327c478bd9Sstevel@tonic-gate * In the console case, because we may need to startup zoneadmd. 15337c478bd9Sstevel@tonic-gate * In the non-console case in order to do zone_enter(2), zonept() 15347c478bd9Sstevel@tonic-gate * and other tasks. 15357c478bd9Sstevel@tonic-gate * 15367c478bd9Sstevel@tonic-gate * Future work: this solution is temporary. Ultimately, we need to 15377c478bd9Sstevel@tonic-gate * move to a flexible system which allows the global admin to 15387c478bd9Sstevel@tonic-gate * designate that a particular user can zlogin (and probably zlogin 15397c478bd9Sstevel@tonic-gate * -C) to a particular zone. This all-root business we have now is 15407c478bd9Sstevel@tonic-gate * quite sketchy. 15417c478bd9Sstevel@tonic-gate */ 15427c478bd9Sstevel@tonic-gate if ((privset = priv_allocset()) == NULL) { 15437c478bd9Sstevel@tonic-gate zperror(gettext("priv_allocset failed")); 15447c478bd9Sstevel@tonic-gate return (1); 15457c478bd9Sstevel@tonic-gate } 15467c478bd9Sstevel@tonic-gate 15477c478bd9Sstevel@tonic-gate if (getppriv(PRIV_EFFECTIVE, privset) != 0) { 15487c478bd9Sstevel@tonic-gate zperror(gettext("getppriv failed")); 15497c478bd9Sstevel@tonic-gate priv_freeset(privset); 15507c478bd9Sstevel@tonic-gate return (1); 15517c478bd9Sstevel@tonic-gate } 15527c478bd9Sstevel@tonic-gate 15537c478bd9Sstevel@tonic-gate if (priv_isfullset(privset) == B_FALSE) { 15547c478bd9Sstevel@tonic-gate zerror(gettext("You lack sufficient privilege to run " 15557c478bd9Sstevel@tonic-gate "this command (all privs required)")); 15567c478bd9Sstevel@tonic-gate priv_freeset(privset); 15577c478bd9Sstevel@tonic-gate return (1); 15587c478bd9Sstevel@tonic-gate } 15597c478bd9Sstevel@tonic-gate priv_freeset(privset); 15607c478bd9Sstevel@tonic-gate 15617c478bd9Sstevel@tonic-gate /* 15627c478bd9Sstevel@tonic-gate * The console is a separate case from the rest of the code; handle 15637c478bd9Sstevel@tonic-gate * it first. 15647c478bd9Sstevel@tonic-gate */ 15657c478bd9Sstevel@tonic-gate if (console) { 15667c478bd9Sstevel@tonic-gate 15677c478bd9Sstevel@tonic-gate /* 15687c478bd9Sstevel@tonic-gate * Ensure that zoneadmd for this zone is running. 15697c478bd9Sstevel@tonic-gate */ 15707c478bd9Sstevel@tonic-gate if (start_zoneadmd(zonename) == -1) 15717c478bd9Sstevel@tonic-gate return (1); 15727c478bd9Sstevel@tonic-gate 15737c478bd9Sstevel@tonic-gate /* 15747c478bd9Sstevel@tonic-gate * Make contact with zoneadmd. 15757c478bd9Sstevel@tonic-gate */ 15767c478bd9Sstevel@tonic-gate if (get_console_master(zonename) == -1) 15777c478bd9Sstevel@tonic-gate return (1); 15787c478bd9Sstevel@tonic-gate 15797c478bd9Sstevel@tonic-gate (void) printf(gettext("[Connected to zone '%s' console]\n"), 15807c478bd9Sstevel@tonic-gate zonename); 15817c478bd9Sstevel@tonic-gate 15827c478bd9Sstevel@tonic-gate if (set_tty_rawmode(STDIN_FILENO) == -1) { 15837c478bd9Sstevel@tonic-gate reset_tty(); 15847c478bd9Sstevel@tonic-gate zperror(gettext("failed to set stdin pty to raw mode")); 15857c478bd9Sstevel@tonic-gate return (1); 15867c478bd9Sstevel@tonic-gate } 15877c478bd9Sstevel@tonic-gate 15887c478bd9Sstevel@tonic-gate (void) sigset(SIGWINCH, sigwinch); 15897c478bd9Sstevel@tonic-gate (void) sigwinch(0); 15907c478bd9Sstevel@tonic-gate 15917c478bd9Sstevel@tonic-gate /* 15927c478bd9Sstevel@tonic-gate * Run the I/O loop until we get disconnected. 15937c478bd9Sstevel@tonic-gate */ 15947c478bd9Sstevel@tonic-gate doio(masterfd, masterfd, -1, B_FALSE); 15957c478bd9Sstevel@tonic-gate reset_tty(); 15967c478bd9Sstevel@tonic-gate (void) printf(gettext("\n[Connection to zone '%s' console " 15977c478bd9Sstevel@tonic-gate "closed]\n"), zonename); 15987c478bd9Sstevel@tonic-gate 15997c478bd9Sstevel@tonic-gate return (0); 16007c478bd9Sstevel@tonic-gate } 16017c478bd9Sstevel@tonic-gate 1602108322fbScarlsonj if (st != ZONE_STATE_RUNNING && st != ZONE_STATE_MOUNTED) { 16037c478bd9Sstevel@tonic-gate zerror(gettext("login allowed only to running zones " 16047c478bd9Sstevel@tonic-gate "(%s is '%s')."), zonename, zone_state_str(st)); 16057c478bd9Sstevel@tonic-gate return (1); 16067c478bd9Sstevel@tonic-gate } 16077c478bd9Sstevel@tonic-gate 1608108322fbScarlsonj (void) strlcpy(kernzone, zonename, sizeof (kernzone)); 1609108322fbScarlsonj if (zonecfg_in_alt_root()) { 1610108322fbScarlsonj FILE *fp = zonecfg_open_scratch("", B_FALSE); 1611108322fbScarlsonj 1612108322fbScarlsonj if (fp == NULL || zonecfg_find_scratch(fp, zonename, 1613108322fbScarlsonj zonecfg_get_root(), kernzone, sizeof (kernzone)) == -1) { 1614108322fbScarlsonj zerror(gettext("cannot find scratch zone %s"), 1615108322fbScarlsonj zonename); 1616108322fbScarlsonj if (fp != NULL) 1617108322fbScarlsonj zonecfg_close_scratch(fp); 1618108322fbScarlsonj return (1); 1619108322fbScarlsonj } 1620108322fbScarlsonj zonecfg_close_scratch(fp); 1621108322fbScarlsonj } 1622108322fbScarlsonj 1623108322fbScarlsonj if ((zoneid = getzoneidbyname(kernzone)) == -1) { 16247c478bd9Sstevel@tonic-gate zerror(gettext("failed to get zoneid for zone '%s'"), 16257c478bd9Sstevel@tonic-gate zonename); 16267c478bd9Sstevel@tonic-gate return (1); 16277c478bd9Sstevel@tonic-gate } 16287c478bd9Sstevel@tonic-gate 1629108322fbScarlsonj /* 1630facf4a8dSllai1 * We need the zone root path only if we are setting up a pty. 1631108322fbScarlsonj */ 1632facf4a8dSllai1 if (zone_get_devroot(zonename, devroot, sizeof (devroot)) == -1) { 1633facf4a8dSllai1 zerror(gettext("could not get dev path for zone %s"), 16347c478bd9Sstevel@tonic-gate zonename); 16357c478bd9Sstevel@tonic-gate return (1); 16367c478bd9Sstevel@tonic-gate } 16377c478bd9Sstevel@tonic-gate 16389acbbeafSnn35248 /* Get a handle to the brand info for this zone */ 16399acbbeafSnn35248 if ((zone_get_brand(zonename, zonebrand, sizeof (zonebrand)) != Z_OK) || 1640123807fbSedp ((bh = brand_open(zonebrand)) == NULL)) { 16419acbbeafSnn35248 zerror(gettext("could not get brand for zone %s"), zonename); 16427c478bd9Sstevel@tonic-gate return (1); 16437c478bd9Sstevel@tonic-gate } 1644123807fbSedp if ((new_args = prep_args(bh, login, proc_args)) == NULL) { 16459acbbeafSnn35248 zperror(gettext("could not assemble new arguments")); 1646123807fbSedp brand_close(bh); 16479acbbeafSnn35248 return (1); 16489acbbeafSnn35248 } 1649123807fbSedp brand_close(bh); 16507c478bd9Sstevel@tonic-gate 16517c478bd9Sstevel@tonic-gate if ((new_env = prep_env()) == NULL) { 16527c478bd9Sstevel@tonic-gate zperror(gettext("could not assemble new environment")); 16537c478bd9Sstevel@tonic-gate return (1); 16547c478bd9Sstevel@tonic-gate } 16557c478bd9Sstevel@tonic-gate 16567c478bd9Sstevel@tonic-gate if (!interactive) 16577c478bd9Sstevel@tonic-gate return (noninteractive_login(zonename, zoneid, login, new_args, 16587c478bd9Sstevel@tonic-gate new_env)); 16597c478bd9Sstevel@tonic-gate 1660108322fbScarlsonj if (zonecfg_in_alt_root()) { 1661108322fbScarlsonj zerror(gettext("cannot use interactive login with scratch " 1662108322fbScarlsonj "zone")); 1663108322fbScarlsonj return (1); 1664108322fbScarlsonj } 1665108322fbScarlsonj 16667c478bd9Sstevel@tonic-gate /* 16677c478bd9Sstevel@tonic-gate * Things are more complex in interactive mode; we get the 16687c478bd9Sstevel@tonic-gate * master side of the pty, then place the user's terminal into 16697c478bd9Sstevel@tonic-gate * raw mode. 16707c478bd9Sstevel@tonic-gate */ 16717c478bd9Sstevel@tonic-gate if (get_master_pty() == -1) { 16727c478bd9Sstevel@tonic-gate zerror(gettext("could not setup master pty device")); 16737c478bd9Sstevel@tonic-gate return (1); 16747c478bd9Sstevel@tonic-gate } 16757c478bd9Sstevel@tonic-gate 16767c478bd9Sstevel@tonic-gate /* 16777c478bd9Sstevel@tonic-gate * Compute the "short name" of the pts. /dev/pts/2 --> pts/2 16787c478bd9Sstevel@tonic-gate */ 16797c478bd9Sstevel@tonic-gate if ((slavename = ptsname(masterfd)) == NULL) { 16807c478bd9Sstevel@tonic-gate zperror(gettext("failed to get name for pseudo-tty")); 16817c478bd9Sstevel@tonic-gate return (1); 16827c478bd9Sstevel@tonic-gate } 16837c478bd9Sstevel@tonic-gate if (strncmp(slavename, "/dev/", strlen("/dev/")) == 0) 16847c478bd9Sstevel@tonic-gate (void) strlcpy(slaveshortname, slavename + strlen("/dev/"), 16857c478bd9Sstevel@tonic-gate sizeof (slaveshortname)); 16867c478bd9Sstevel@tonic-gate else 16877c478bd9Sstevel@tonic-gate (void) strlcpy(slaveshortname, slavename, 16887c478bd9Sstevel@tonic-gate sizeof (slaveshortname)); 16897c478bd9Sstevel@tonic-gate 16907c478bd9Sstevel@tonic-gate (void) printf(gettext("[Connected to zone '%s' %s]\n"), zonename, 16917c478bd9Sstevel@tonic-gate slaveshortname); 16927c478bd9Sstevel@tonic-gate 16937c478bd9Sstevel@tonic-gate if (set_tty_rawmode(STDIN_FILENO) == -1) { 16947c478bd9Sstevel@tonic-gate reset_tty(); 16957c478bd9Sstevel@tonic-gate zperror(gettext("failed to set stdin pty to raw mode")); 16967c478bd9Sstevel@tonic-gate return (1); 16977c478bd9Sstevel@tonic-gate } 16987c478bd9Sstevel@tonic-gate 16997c478bd9Sstevel@tonic-gate if (prefork_dropprivs() != 0) { 17007c478bd9Sstevel@tonic-gate reset_tty(); 17017c478bd9Sstevel@tonic-gate zperror(gettext("could not allocate privilege set")); 17027c478bd9Sstevel@tonic-gate return (1); 17037c478bd9Sstevel@tonic-gate } 17047c478bd9Sstevel@tonic-gate 17057c478bd9Sstevel@tonic-gate /* 17067c478bd9Sstevel@tonic-gate * We must mask SIGCLD until after we have coped with the fork 17077c478bd9Sstevel@tonic-gate * sufficiently to deal with it; otherwise we can race and receive the 17087c478bd9Sstevel@tonic-gate * signal before child_pid has been initialized (yes, this really 17097c478bd9Sstevel@tonic-gate * happens). 17107c478bd9Sstevel@tonic-gate */ 17117c478bd9Sstevel@tonic-gate (void) sigset(SIGCLD, sigcld); 17127c478bd9Sstevel@tonic-gate (void) sigemptyset(&block_cld); 17137c478bd9Sstevel@tonic-gate (void) sigaddset(&block_cld, SIGCLD); 17147c478bd9Sstevel@tonic-gate (void) sigprocmask(SIG_BLOCK, &block_cld, NULL); 17157c478bd9Sstevel@tonic-gate 17167c478bd9Sstevel@tonic-gate /* 17177c478bd9Sstevel@tonic-gate * We activate the contract template at the last minute to 17187c478bd9Sstevel@tonic-gate * avoid intermediate functions that could be using fork(2) 17197c478bd9Sstevel@tonic-gate * internally. 17207c478bd9Sstevel@tonic-gate */ 17217c478bd9Sstevel@tonic-gate if ((tmpl_fd = init_template()) == -1) { 17227c478bd9Sstevel@tonic-gate reset_tty(); 17237c478bd9Sstevel@tonic-gate zperror(gettext("could not create contract")); 17247c478bd9Sstevel@tonic-gate return (1); 17257c478bd9Sstevel@tonic-gate } 17267c478bd9Sstevel@tonic-gate 17277c478bd9Sstevel@tonic-gate if ((child_pid = fork()) == -1) { 17287c478bd9Sstevel@tonic-gate (void) ct_tmpl_clear(tmpl_fd); 17297c478bd9Sstevel@tonic-gate reset_tty(); 17307c478bd9Sstevel@tonic-gate zperror(gettext("could not fork")); 17317c478bd9Sstevel@tonic-gate return (1); 17327c478bd9Sstevel@tonic-gate } else if (child_pid == 0) { /* child process */ 17337c478bd9Sstevel@tonic-gate int slavefd, newslave; 17347c478bd9Sstevel@tonic-gate 17357c478bd9Sstevel@tonic-gate (void) ct_tmpl_clear(tmpl_fd); 17367c478bd9Sstevel@tonic-gate (void) close(tmpl_fd); 17377c478bd9Sstevel@tonic-gate 17387c478bd9Sstevel@tonic-gate (void) sigprocmask(SIG_UNBLOCK, &block_cld, NULL); 17397c478bd9Sstevel@tonic-gate 1740facf4a8dSllai1 if ((slavefd = init_slave_pty(zoneid, devroot)) == -1) 17417c478bd9Sstevel@tonic-gate return (1); 17427c478bd9Sstevel@tonic-gate 17437c478bd9Sstevel@tonic-gate /* 17447c478bd9Sstevel@tonic-gate * Close all fds except for the slave pty. 17457c478bd9Sstevel@tonic-gate */ 17467c478bd9Sstevel@tonic-gate (void) fdwalk(close_func, &slavefd); 17477c478bd9Sstevel@tonic-gate 17487c478bd9Sstevel@tonic-gate /* 17497c478bd9Sstevel@tonic-gate * Temporarily dup slavefd to stderr; that way if we have 17507c478bd9Sstevel@tonic-gate * to print out that zone_enter failed, the output will 17517c478bd9Sstevel@tonic-gate * have somewhere to go. 17527c478bd9Sstevel@tonic-gate */ 17537c478bd9Sstevel@tonic-gate if (slavefd != STDERR_FILENO) 17547c478bd9Sstevel@tonic-gate (void) dup2(slavefd, STDERR_FILENO); 17557c478bd9Sstevel@tonic-gate 17567c478bd9Sstevel@tonic-gate if (zone_enter(zoneid) == -1) { 17577c478bd9Sstevel@tonic-gate zerror(gettext("could not enter zone %s: %s"), 17587c478bd9Sstevel@tonic-gate zonename, strerror(errno)); 17597c478bd9Sstevel@tonic-gate return (1); 17607c478bd9Sstevel@tonic-gate } 17617c478bd9Sstevel@tonic-gate 17627c478bd9Sstevel@tonic-gate if (slavefd != STDERR_FILENO) 17637c478bd9Sstevel@tonic-gate (void) close(STDERR_FILENO); 17647c478bd9Sstevel@tonic-gate 17657c478bd9Sstevel@tonic-gate /* 17667c478bd9Sstevel@tonic-gate * We take pains to get this process into a new process 17677c478bd9Sstevel@tonic-gate * group, and subsequently a new session. In this way, 17687c478bd9Sstevel@tonic-gate * we'll have a session which doesn't yet have a controlling 17697c478bd9Sstevel@tonic-gate * terminal. When we open the slave, it will become the 17707c478bd9Sstevel@tonic-gate * controlling terminal; no PIDs concerning pgrps or sids 17717c478bd9Sstevel@tonic-gate * will leak inappropriately into the zone. 17727c478bd9Sstevel@tonic-gate */ 17737c478bd9Sstevel@tonic-gate (void) setpgrp(); 17747c478bd9Sstevel@tonic-gate 17757c478bd9Sstevel@tonic-gate /* 17767c478bd9Sstevel@tonic-gate * We need the slave pty to be referenced from the zone's 17777c478bd9Sstevel@tonic-gate * /dev in order to ensure that the devt's, etc are all 17787c478bd9Sstevel@tonic-gate * correct. Otherwise we break ttyname and the like. 17797c478bd9Sstevel@tonic-gate */ 17807c478bd9Sstevel@tonic-gate if ((newslave = open(slavename, O_RDWR)) == -1) { 17817c478bd9Sstevel@tonic-gate (void) close(slavefd); 17827c478bd9Sstevel@tonic-gate return (1); 17837c478bd9Sstevel@tonic-gate } 17847c478bd9Sstevel@tonic-gate (void) close(slavefd); 17857c478bd9Sstevel@tonic-gate slavefd = newslave; 17867c478bd9Sstevel@tonic-gate 17877c478bd9Sstevel@tonic-gate /* 17887c478bd9Sstevel@tonic-gate * dup the slave to the various FDs, so that when the 17897c478bd9Sstevel@tonic-gate * spawned process does a write/read it maps to the slave 17907c478bd9Sstevel@tonic-gate * pty. 17917c478bd9Sstevel@tonic-gate */ 17927c478bd9Sstevel@tonic-gate (void) dup2(slavefd, STDIN_FILENO); 17937c478bd9Sstevel@tonic-gate (void) dup2(slavefd, STDOUT_FILENO); 17947c478bd9Sstevel@tonic-gate (void) dup2(slavefd, STDERR_FILENO); 17957c478bd9Sstevel@tonic-gate if (slavefd != STDIN_FILENO && slavefd != STDOUT_FILENO && 17967c478bd9Sstevel@tonic-gate slavefd != STDERR_FILENO) { 17977c478bd9Sstevel@tonic-gate (void) close(slavefd); 17987c478bd9Sstevel@tonic-gate } 17997c478bd9Sstevel@tonic-gate 18007c478bd9Sstevel@tonic-gate /* 18017c478bd9Sstevel@tonic-gate * In failsafe mode, we don't use login(1), so don't try 18027c478bd9Sstevel@tonic-gate * setting up a utmpx entry. 18039acbbeafSnn35248 * 18049acbbeafSnn35248 * A branded zone may have very different utmpx semantics. 18059acbbeafSnn35248 * At the moment, we only have two brand types: 18069acbbeafSnn35248 * Solaris-like (native, sn1) and Linux. In the Solaris 18079acbbeafSnn35248 * case, we know exactly how to do the necessary utmpx 18089acbbeafSnn35248 * setup. Fortunately for us, the Linux /bin/login is 18099acbbeafSnn35248 * prepared to deal with a non-initialized utmpx entry, so 18109acbbeafSnn35248 * we can simply skip it. If future brands don't fall into 18119acbbeafSnn35248 * either category, we'll have to add a per-brand utmpx 18129acbbeafSnn35248 * setup hook. 18137c478bd9Sstevel@tonic-gate */ 18149acbbeafSnn35248 if (!failsafe && (strcmp(zonebrand, "lx") != 0)) 18157c478bd9Sstevel@tonic-gate if (setup_utmpx(slaveshortname) == -1) 18167c478bd9Sstevel@tonic-gate return (1); 18177c478bd9Sstevel@tonic-gate 18187c478bd9Sstevel@tonic-gate (void) execve(new_args[0], new_args, new_env); 18197c478bd9Sstevel@tonic-gate zperror(gettext("exec failure")); 18207c478bd9Sstevel@tonic-gate return (1); 18217c478bd9Sstevel@tonic-gate } 18227c478bd9Sstevel@tonic-gate (void) ct_tmpl_clear(tmpl_fd); 18237c478bd9Sstevel@tonic-gate (void) close(tmpl_fd); 18247c478bd9Sstevel@tonic-gate 18257c478bd9Sstevel@tonic-gate /* 18267c478bd9Sstevel@tonic-gate * The rest is only for the parent process. 18277c478bd9Sstevel@tonic-gate */ 18287c478bd9Sstevel@tonic-gate (void) sigset(SIGWINCH, sigwinch); 18297c478bd9Sstevel@tonic-gate 18307c478bd9Sstevel@tonic-gate postfork_dropprivs(); 18317c478bd9Sstevel@tonic-gate 18327c478bd9Sstevel@tonic-gate (void) sigprocmask(SIG_UNBLOCK, &block_cld, NULL); 18337c478bd9Sstevel@tonic-gate doio(masterfd, masterfd, -1, B_FALSE); 18347c478bd9Sstevel@tonic-gate 18357c478bd9Sstevel@tonic-gate reset_tty(); 18367c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 18377c478bd9Sstevel@tonic-gate gettext("\n[Connection to zone '%s' %s closed]\n"), zonename, 18387c478bd9Sstevel@tonic-gate slaveshortname); 18397c478bd9Sstevel@tonic-gate 18407c478bd9Sstevel@tonic-gate if (pollerr != 0) { 18417c478bd9Sstevel@tonic-gate (void) fprintf(stderr, gettext("Error: connection closed due " 18427c478bd9Sstevel@tonic-gate "to unexpected pollevents=0x%x.\n"), pollerr); 18437c478bd9Sstevel@tonic-gate return (1); 18447c478bd9Sstevel@tonic-gate } 18457c478bd9Sstevel@tonic-gate 18467c478bd9Sstevel@tonic-gate return (0); 18477c478bd9Sstevel@tonic-gate } 1848