rexecd.c revision 1.6 1 1.6 mycroft /* $NetBSD: rexecd.c,v 1.6 1998/07/26 19:49:03 mycroft Exp $ */
2 1.4 mrg
3 1.1 cgd /*
4 1.4 mrg * Copyright (c) 1983, 1993
5 1.4 mrg * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.4 mrg #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.4 mrg __COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\
39 1.4 mrg The Regents of the University of California. All rights reserved.\n");
40 1.4 mrg #if 0
41 1.4 mrg static char sccsid[] = "from: @(#)rexecd.c 8.1 (Berkeley) 6/4/93";
42 1.4 mrg #else
43 1.6 mycroft __RCSID("$NetBSD: rexecd.c,v 1.6 1998/07/26 19:49:03 mycroft Exp $");
44 1.4 mrg #endif
45 1.1 cgd #endif /* not lint */
46 1.1 cgd
47 1.1 cgd #include <sys/param.h>
48 1.1 cgd #include <sys/ioctl.h>
49 1.5 mrg #include <sys/poll.h>
50 1.1 cgd #include <sys/socket.h>
51 1.5 mrg #include <sys/syslog.h>
52 1.1 cgd #include <sys/time.h>
53 1.4 mrg
54 1.1 cgd #include <netinet/in.h>
55 1.4 mrg
56 1.5 mrg #include <err.h>
57 1.4 mrg #include <errno.h>
58 1.1 cgd #include <netdb.h>
59 1.4 mrg #include <paths.h>
60 1.1 cgd #include <pwd.h>
61 1.4 mrg #include <signal.h>
62 1.1 cgd #include <stdio.h>
63 1.1 cgd #include <stdlib.h>
64 1.1 cgd #include <string.h>
65 1.4 mrg #include <unistd.h>
66 1.1 cgd
67 1.4 mrg void error __P((const char *, ...));
68 1.4 mrg int main __P((int, char **));
69 1.4 mrg void doit __P((int, struct sockaddr_in *));
70 1.4 mrg void getstr __P((char *, int, char *));
71 1.1 cgd
72 1.5 mrg char username[32 + 1] = "USER=";
73 1.5 mrg char homedir[PATH_MAX + 1] = "HOME=";
74 1.5 mrg char shell[PATH_MAX + 1] = "SHELL=";
75 1.5 mrg char path[sizeof(_PATH_DEFPATH) + sizeof("PATH=")] = "PATH=";
76 1.5 mrg char *envinit[] = { homedir, shell, path, username, 0 };
77 1.5 mrg char **environ;
78 1.5 mrg int log;
79 1.5 mrg struct sockaddr_in asin = { AF_INET };
80 1.5 mrg
81 1.1 cgd /*
82 1.1 cgd * remote execute server:
83 1.1 cgd * username\0
84 1.1 cgd * password\0
85 1.1 cgd * command\0
86 1.1 cgd * data
87 1.1 cgd */
88 1.4 mrg int
89 1.1 cgd main(argc, argv)
90 1.1 cgd int argc;
91 1.1 cgd char **argv;
92 1.1 cgd {
93 1.1 cgd struct sockaddr_in from;
94 1.5 mrg int fromlen, ch;
95 1.5 mrg
96 1.5 mrg while ((ch = getopt(argc, argv, "l")) != -1)
97 1.5 mrg switch (ch) {
98 1.5 mrg case 'l':
99 1.5 mrg log = 1;
100 1.5 mrg openlog("rexecd", LOG_PID, LOG_DAEMON);
101 1.5 mrg break;
102 1.5 mrg default:
103 1.5 mrg exit(1);
104 1.5 mrg }
105 1.1 cgd
106 1.1 cgd fromlen = sizeof (from);
107 1.5 mrg if (getpeername(0, (struct sockaddr *)&from, &fromlen) < 0)
108 1.5 mrg err(1, "getpeername");
109 1.5 mrg
110 1.1 cgd doit(0, &from);
111 1.4 mrg exit(0);
112 1.1 cgd }
113 1.1 cgd
114 1.4 mrg void
115 1.1 cgd doit(f, fromp)
116 1.1 cgd int f;
117 1.1 cgd struct sockaddr_in *fromp;
118 1.1 cgd {
119 1.5 mrg struct pollfd fds[2];
120 1.6 mycroft char cmdbuf[NCARGS+1], *namep;
121 1.6 mycroft const char *cp;
122 1.1 cgd char user[16], pass[16];
123 1.5 mrg char buf[BUFSIZ], sig;
124 1.1 cgd struct passwd *pwd;
125 1.4 mrg int s = -1; /* XXX gcc */
126 1.5 mrg int pv[2], pid, cc;
127 1.1 cgd int one = 1;
128 1.5 mrg in_port_t port;
129 1.1 cgd
130 1.5 mrg (void)signal(SIGINT, SIG_DFL);
131 1.5 mrg (void)signal(SIGQUIT, SIG_DFL);
132 1.5 mrg (void)signal(SIGTERM, SIG_DFL);
133 1.1 cgd dup2(f, 0);
134 1.1 cgd dup2(f, 1);
135 1.1 cgd dup2(f, 2);
136 1.5 mrg (void)alarm(60);
137 1.1 cgd port = 0;
138 1.1 cgd for (;;) {
139 1.1 cgd char c;
140 1.5 mrg if (read(f, &c, 1) != 1) {
141 1.5 mrg if (log)
142 1.5 mrg syslog(LOG_ERR,
143 1.5 mrg "initial read failed");
144 1.1 cgd exit(1);
145 1.5 mrg }
146 1.1 cgd if (c == 0)
147 1.1 cgd break;
148 1.1 cgd port = port * 10 + c - '0';
149 1.1 cgd }
150 1.5 mrg (void)alarm(0);
151 1.1 cgd if (port != 0) {
152 1.1 cgd s = socket(AF_INET, SOCK_STREAM, 0);
153 1.5 mrg if (s < 0) {
154 1.5 mrg if (log)
155 1.5 mrg syslog(LOG_ERR, "socket: %m");
156 1.1 cgd exit(1);
157 1.5 mrg }
158 1.5 mrg if (bind(s, (struct sockaddr *)&asin, sizeof (asin)) < 0) {
159 1.5 mrg if (log)
160 1.5 mrg syslog(LOG_ERR, "bind: %m");
161 1.1 cgd exit(1);
162 1.5 mrg }
163 1.5 mrg (void)alarm(60);
164 1.1 cgd fromp->sin_port = htons(port);
165 1.5 mrg if (connect(s, (struct sockaddr *)fromp, sizeof (*fromp)) < 0) {
166 1.5 mrg if (log)
167 1.5 mrg syslog(LOG_ERR, "connect: %m");
168 1.1 cgd exit(1);
169 1.5 mrg }
170 1.5 mrg (void)alarm(0);
171 1.1 cgd }
172 1.1 cgd getstr(user, sizeof(user), "username");
173 1.1 cgd getstr(pass, sizeof(pass), "password");
174 1.1 cgd getstr(cmdbuf, sizeof(cmdbuf), "command");
175 1.1 cgd setpwent();
176 1.1 cgd pwd = getpwnam(user);
177 1.1 cgd if (pwd == NULL) {
178 1.1 cgd error("Login incorrect.\n");
179 1.5 mrg if (log)
180 1.5 mrg syslog(LOG_ERR, "no such user %s", user);
181 1.1 cgd exit(1);
182 1.1 cgd }
183 1.1 cgd endpwent();
184 1.1 cgd if (*pwd->pw_passwd != '\0') {
185 1.1 cgd namep = crypt(pass, pwd->pw_passwd);
186 1.1 cgd if (strcmp(namep, pwd->pw_passwd)) {
187 1.5 mrg error("Password incorrect.\n"); /* XXX: wrong! */
188 1.5 mrg if (log)
189 1.5 mrg syslog(LOG_ERR, "incorrect password for %s",
190 1.5 mrg user);
191 1.1 cgd exit(1);
192 1.1 cgd }
193 1.5 mrg } else
194 1.5 mrg (void)crypt("dummy password", "PA"); /* must always crypt */
195 1.1 cgd if (chdir(pwd->pw_dir) < 0) {
196 1.1 cgd error("No remote directory.\n");
197 1.5 mrg if (log)
198 1.5 mrg syslog(LOG_ERR, "%s does not exist for %s", pwd->pw_dir,
199 1.5 mrg user);
200 1.1 cgd exit(1);
201 1.1 cgd }
202 1.5 mrg (void)write(2, "\0", 1);
203 1.1 cgd if (port) {
204 1.5 mrg if (pipe(pv) < 0 || (pid = fork()) == -1) {
205 1.1 cgd error("Try again.\n");
206 1.5 mrg if (log)
207 1.5 mrg syslog(LOG_ERR,"pipe or fork failed for %s: %m",
208 1.5 mrg user);
209 1.1 cgd exit(1);
210 1.1 cgd }
211 1.1 cgd if (pid) {
212 1.5 mrg (void)close(0);
213 1.5 mrg (void)close(1);
214 1.5 mrg (void)close(2);
215 1.5 mrg (void)close(f);
216 1.5 mrg (void)close(pv[1]);
217 1.5 mrg fds[0].fd = s;
218 1.5 mrg fds[1].fd = pv[0];
219 1.5 mrg fds[0].events = fds[1].events = POLLIN;
220 1.5 mrg if (ioctl(pv[1], FIONBIO, (char *)&one) < 0)
221 1.5 mrg _exit(-1);
222 1.1 cgd /* should set s nbio! */
223 1.1 cgd do {
224 1.5 mrg if (poll(fds, 2, 0) < 0) {
225 1.5 mrg close(s);
226 1.5 mrg close(pv[0]);
227 1.5 mrg _exit(-1);
228 1.5 mrg }
229 1.5 mrg if (fds[0].revents & POLLIN) {
230 1.1 cgd if (read(s, &sig, 1) <= 0)
231 1.5 mrg fds[0].events = 0;
232 1.1 cgd else
233 1.1 cgd killpg(pid, sig);
234 1.1 cgd }
235 1.5 mrg if (fds[1].revents & POLLIN) {
236 1.1 cgd cc = read(pv[0], buf, sizeof (buf));
237 1.1 cgd if (cc <= 0) {
238 1.1 cgd shutdown(s, 1+1);
239 1.5 mrg fds[1].events = 0;
240 1.1 cgd } else
241 1.5 mrg (void)write(s, buf, cc);
242 1.1 cgd }
243 1.5 mrg } while ((fds[0].events | fds[1].events) & POLLIN);
244 1.5 mrg _exit(0);
245 1.5 mrg }
246 1.5 mrg (void)setpgrp(0, getpid());
247 1.5 mrg (void)close(s);
248 1.5 mrg (void)close(pv[0]);
249 1.5 mrg if (dup2(pv[1], 2) < 0) {
250 1.5 mrg error("Try again.\n");
251 1.5 mrg if (log)
252 1.5 mrg syslog(LOG_ERR, "dup2 failed for %s", user);
253 1.5 mrg exit(1);
254 1.1 cgd }
255 1.1 cgd }
256 1.1 cgd if (*pwd->pw_shell == '\0')
257 1.1 cgd pwd->pw_shell = _PATH_BSHELL;
258 1.1 cgd if (f > 2)
259 1.5 mrg (void)close(f);
260 1.5 mrg if (setlogin(pwd->pw_name) < 0 ||
261 1.5 mrg initgroups(pwd->pw_name, pwd->pw_gid) < 0 ||
262 1.5 mrg setgid((gid_t)pwd->pw_gid) < 0 ||
263 1.5 mrg setuid((uid_t)pwd->pw_uid) < 0) {
264 1.5 mrg error("Try again.\n");
265 1.5 mrg if (log)
266 1.5 mrg syslog(LOG_ERR, "could not set permissions for %s: %m",
267 1.5 mrg user);
268 1.5 mrg exit(1);
269 1.5 mrg }
270 1.1 cgd (void)strcat(path, _PATH_DEFPATH);
271 1.1 cgd environ = envinit;
272 1.5 mrg strncat(homedir, pwd->pw_dir, sizeof(homedir) - 6);
273 1.5 mrg strncat(shell, pwd->pw_shell, sizeof(shell) - 7);
274 1.5 mrg strncat(username, pwd->pw_name, sizeof(username) - 6);
275 1.4 mrg cp = strrchr(pwd->pw_shell, '/');
276 1.1 cgd if (cp)
277 1.1 cgd cp++;
278 1.1 cgd else
279 1.1 cgd cp = pwd->pw_shell;
280 1.5 mrg if (log)
281 1.5 mrg syslog(LOG_INFO, "running command for %s: %s", user, cmdbuf);
282 1.1 cgd execl(pwd->pw_shell, cp, "-c", cmdbuf, 0);
283 1.1 cgd perror(pwd->pw_shell);
284 1.5 mrg if (log)
285 1.5 mrg syslog(LOG_ERR, "execl failed for %s: %m", user);
286 1.1 cgd exit(1);
287 1.1 cgd }
288 1.1 cgd
289 1.4 mrg #ifdef __STDC__
290 1.4 mrg #include <stdarg.h>
291 1.4 mrg #else
292 1.4 mrg #include <varargs.h>
293 1.4 mrg #endif
294 1.4 mrg
295 1.4 mrg void
296 1.4 mrg #ifdef __STDC__
297 1.4 mrg error(const char *fmt, ...)
298 1.4 mrg #else
299 1.4 mrg error(fmt, va_alist)
300 1.1 cgd char *fmt;
301 1.4 mrg va_dcl
302 1.4 mrg #endif
303 1.1 cgd {
304 1.1 cgd char buf[BUFSIZ];
305 1.4 mrg va_list ap;
306 1.4 mrg
307 1.4 mrg #ifdef __STDC__
308 1.4 mrg va_start(ap, fmt);
309 1.4 mrg #else
310 1.4 mrg va_start(ap);
311 1.4 mrg #endif
312 1.1 cgd
313 1.1 cgd buf[0] = 1;
314 1.5 mrg (void)vsnprintf(buf+1, sizeof(buf) - 1, fmt, ap);
315 1.4 mrg (void)write(2, buf, strlen(buf));
316 1.1 cgd }
317 1.1 cgd
318 1.4 mrg void
319 1.1 cgd getstr(buf, cnt, err)
320 1.1 cgd char *buf;
321 1.1 cgd int cnt;
322 1.1 cgd char *err;
323 1.1 cgd {
324 1.1 cgd char c;
325 1.1 cgd
326 1.1 cgd do {
327 1.1 cgd if (read(0, &c, 1) != 1)
328 1.1 cgd exit(1);
329 1.1 cgd *buf++ = c;
330 1.1 cgd if (--cnt == 0) {
331 1.1 cgd error("%s too long\n", err);
332 1.1 cgd exit(1);
333 1.1 cgd }
334 1.1 cgd } while (c != 0);
335 1.1 cgd }
336