1 /* $OpenBSD: rcmdsh.c,v 1.8 2003/05/05 22:13:03 millert Exp $ */ 2 3 /* 4 * Copyright (c) 2001, MagniComp 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in 14 * the documentation and/or other materials provided with the distribution. 15 * 3. Neither the name of the MagniComp nor the names of its contributors may 16 * be used to endorse or promote products derived from this software 17 * without specific prior written permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR 23 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 26 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 27 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 28 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 */ 30 31 /* 32 * This is an rcmd() replacement originally by 33 * Chris Siebenmann <cks@utcc.utoronto.ca>. 34 */ 35 36 #if defined(LIBC_SCCS) && !defined(lint) 37 static char *rcsid = "$OpenBSD: rcmdsh.c,v 1.8 2003/05/05 22:13:03 millert Exp $"; 38 #endif /* LIBC_SCCS and not lint */ 39 40 #include <sys/types.h> 41 #include <sys/socket.h> 42 #include <sys/wait.h> 43 #include <signal.h> 44 #include <errno.h> 45 #include <netdb.h> 46 #include <stdio.h> 47 #include <stdlib.h> 48 #include <string.h> 49 #include <pwd.h> 50 #include <paths.h> 51 #include <unistd.h> 52 53 /* 54 * This is a replacement rcmd() function that uses the rsh(1) 55 * program in place of a direct rcmd(3) function call so as to 56 * avoid having to be root. Note that rport is ignored. 57 */ 58 /* ARGSUSED */ 59 int 60 rcmdsh(ahost, rport, locuser, remuser, cmd, rshprog) 61 char **ahost; 62 int rport; 63 const char *locuser, *remuser, *cmd; 64 char *rshprog; 65 { 66 struct hostent *hp; 67 int sp[2]; 68 pid_t cpid; 69 char *p; 70 struct passwd *pw; 71 72 /* What rsh/shell to use. */ 73 if (rshprog == NULL) 74 rshprog = _PATH_RSH; 75 76 /* locuser must exist on this host. */ 77 if ((pw = getpwnam(locuser)) == NULL) { 78 (void) fprintf(stderr, "rcmdsh: unknown user: %s\n", locuser); 79 return(-1); 80 } 81 82 /* Validate remote hostname. */ 83 if (strcmp(*ahost, "localhost") != 0) { 84 if ((hp = gethostbyname(*ahost)) == NULL) { 85 herror(*ahost); 86 return(-1); 87 } 88 *ahost = hp->h_name; 89 } 90 91 /* Get a socketpair we'll use for stdin and stdout. */ 92 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, sp) < 0) { 93 perror("rcmdsh: socketpair"); 94 return(-1); 95 } 96 97 cpid = fork(); 98 if (cpid < 0) { 99 perror("rcmdsh: fork failed"); 100 return(-1); 101 } else if (cpid == 0) { 102 /* 103 * Child. We use sp[1] to be stdin/stdout, and close sp[0]. 104 */ 105 (void) close(sp[0]); 106 if (dup2(sp[1], 0) < 0 || dup2(0, 1) < 0) { 107 perror("rcmdsh: dup2 failed"); 108 _exit(255); 109 } 110 /* Fork again to lose parent. */ 111 cpid = fork(); 112 if (cpid < 0) { 113 perror("rcmdsh: fork to lose parent failed"); 114 _exit(255); 115 } 116 if (cpid > 0) 117 _exit(0); 118 119 /* In grandchild here. Become local user for rshprog. */ 120 if (setuid(pw->pw_uid)) { 121 (void) fprintf(stderr, "rcmdsh: setuid(%u): %s\n", 122 pw->pw_uid, strerror(errno)); 123 _exit(255); 124 } 125 126 /* 127 * If remote host is "localhost" and local and remote user 128 * are the same, avoid running remote shell for efficiency. 129 */ 130 if (!strcmp(*ahost, "localhost") && !strcmp(locuser, remuser)) { 131 char *argv[4]; 132 if (pw->pw_shell[0] == '\0') 133 rshprog = _PATH_BSHELL; 134 else 135 rshprog = pw->pw_shell; 136 p = strrchr(rshprog, '/'); 137 argv[0] = p ? p + 1 : rshprog; 138 argv[1] = "-c"; 139 argv[2] = (char *)cmd; 140 argv[3] = NULL; 141 execvp(rshprog, argv); 142 } else if ((p = strchr(rshprog, ' ')) == NULL) { 143 /* simple case */ 144 char *argv[6]; 145 p = strrchr(rshprog, '/'); 146 argv[0] = p ? p + 1 : rshprog; 147 argv[1] = "-l"; 148 argv[2] = (char *)remuser; 149 argv[3] = *ahost; 150 argv[4] = (char *)cmd; 151 argv[5] = NULL; 152 execvp(rshprog, argv); 153 } else { 154 /* must pull args out of rshprog and dyn alloc argv */ 155 char **argv, **ap; 156 int n; 157 for (n = 7; (p = strchr(++p, ' ')) != NULL; n++) 158 continue; 159 rshprog = strdup(rshprog); 160 ap = argv = malloc(sizeof(char *) * n); 161 if (rshprog == NULL || argv == NULL) { 162 perror("rcmdsh"); 163 _exit(255); 164 } 165 while ((p = strsep(&rshprog, " ")) != NULL) { 166 if (*p == '\0') 167 continue; 168 *ap++ = p; 169 } 170 if (ap != argv) /* all spaces?!? */ 171 rshprog = argv[0]; 172 if ((p = strrchr(argv[0], '/')) != NULL) 173 argv[0] = p + 1; 174 *ap++ = "-l"; 175 *ap++ = (char *)remuser; 176 *ap++ = *ahost; 177 *ap++ = (char *)cmd; 178 *ap++ = NULL; 179 execvp(rshprog, argv); 180 } 181 (void) fprintf(stderr, "rcmdsh: execvp %s failed: %s\n", 182 rshprog, strerror(errno)); 183 _exit(255); 184 } else { 185 /* Parent. close sp[1], return sp[0]. */ 186 (void) close(sp[1]); 187 /* Reap child. */ 188 (void) wait(NULL); 189 return(sp[0]); 190 } 191 /* NOTREACHED */ 192 } 193