rsh.c revision 1.13 1 1.13 itojun /* $NetBSD: rsh.c,v 1.13 2000/01/31 14:19:34 itojun Exp $ */
2 1.4 tls
3 1.1 cgd /*-
4 1.5 mrg * Copyright (c) 1983, 1990, 1993, 1994
5 1.5 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.11 christos #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.11 christos __COPYRIGHT("@(#) Copyright (c) 1983, 1990, 1993, 1994\n\
39 1.11 christos The Regents of the University of California. All rights reserved.\n");
40 1.1 cgd #endif /* not lint */
41 1.1 cgd
42 1.1 cgd #ifndef lint
43 1.11 christos #if 0
44 1.11 christos static char sccsid[] = "@(#)rsh.c 8.4 (Berkeley) 4/29/95";
45 1.11 christos #else
46 1.13 itojun __RCSID("$NetBSD: rsh.c,v 1.13 2000/01/31 14:19:34 itojun Exp $");
47 1.11 christos #endif
48 1.1 cgd #endif /* not lint */
49 1.1 cgd
50 1.1 cgd #include <sys/types.h>
51 1.1 cgd #include <sys/socket.h>
52 1.1 cgd #include <sys/ioctl.h>
53 1.1 cgd #include <sys/file.h>
54 1.7 mrg #include <poll.h>
55 1.1 cgd
56 1.1 cgd #include <netinet/in.h>
57 1.1 cgd #include <netdb.h>
58 1.1 cgd
59 1.5 mrg #include <err.h>
60 1.5 mrg #include <errno.h>
61 1.1 cgd #include <pwd.h>
62 1.3 jtc #include <signal.h>
63 1.1 cgd #include <stdio.h>
64 1.5 mrg #include <stdlib.h>
65 1.1 cgd #include <string.h>
66 1.5 mrg #include <unistd.h>
67 1.10 christos #ifdef __STDC__
68 1.10 christos #include <stdarg.h>
69 1.10 christos #else
70 1.1 cgd #include <varargs.h>
71 1.10 christos #endif
72 1.5 mrg
73 1.1 cgd #include "pathnames.h"
74 1.1 cgd
75 1.1 cgd #ifdef KERBEROS
76 1.1 cgd #include <kerberosIV/des.h>
77 1.1 cgd #include <kerberosIV/krb.h>
78 1.1 cgd
79 1.1 cgd CREDENTIALS cred;
80 1.1 cgd Key_schedule schedule;
81 1.1 cgd int use_kerberos = 1, doencrypt;
82 1.1 cgd char dst_realm_buf[REALM_SZ], *dest_realm;
83 1.10 christos
84 1.10 christos void warning __P((const char *, ...));
85 1.1 cgd #endif
86 1.1 cgd
87 1.1 cgd /*
88 1.1 cgd * rsh - remote shell
89 1.1 cgd */
90 1.7 mrg extern char *__progname; /* XXX */
91 1.10 christos int remerr;
92 1.10 christos
93 1.10 christos static int sigs[] = { SIGINT, SIGTERM, SIGQUIT };
94 1.1 cgd
95 1.5 mrg char *copyargs __P((char **));
96 1.5 mrg void sendsig __P((int));
97 1.10 christos int checkfd __P((struct pollfd *, int));
98 1.10 christos void talk __P((int, sigset_t *, pid_t, int));
99 1.5 mrg void usage __P((void));
100 1.10 christos int main __P((int, char **));
101 1.12 christos #ifdef IN_RCMD
102 1.12 christos int orcmd __P((char **, int, const char *,
103 1.12 christos const char *, const char *, int *));
104 1.13 itojun int orcmd_af __P((char **, int, const char *,
105 1.13 itojun const char *, const char *, int *, int));
106 1.12 christos #endif
107 1.5 mrg
108 1.5 mrg int
109 1.1 cgd main(argc, argv)
110 1.1 cgd int argc;
111 1.1 cgd char **argv;
112 1.1 cgd {
113 1.1 cgd struct passwd *pw;
114 1.1 cgd struct servent *sp;
115 1.10 christos sigset_t oset, nset;
116 1.10 christos
117 1.7 mrg #ifdef IN_RCMD
118 1.7 mrg char *locuser = 0, *loop;
119 1.7 mrg #endif /* IN_RCMD */
120 1.10 christos int argoff, asrsh, ch, dflag, nflag, one, rem, i;
121 1.5 mrg pid_t pid;
122 1.5 mrg uid_t uid;
123 1.9 mrg char *args, *host, *p, *user, *name;
124 1.1 cgd
125 1.1 cgd argoff = asrsh = dflag = nflag = 0;
126 1.1 cgd one = 1;
127 1.1 cgd host = user = NULL;
128 1.1 cgd
129 1.8 mrg #ifndef IN_RCMD
130 1.7 mrg /*
131 1.8 mrg * If called as something other than "rsh" use it as the host name,
132 1.8 mrg * only for rsh.
133 1.7 mrg */
134 1.7 mrg p = __progname;
135 1.8 mrg if (strcmp(p, "rsh") == 0)
136 1.7 mrg asrsh = 1;
137 1.1 cgd else
138 1.1 cgd host = p;
139 1.8 mrg #endif /* IN_RCMD */
140 1.1 cgd
141 1.1 cgd /* handle "rsh host flags" */
142 1.1 cgd if (!host && argc > 2 && argv[1][0] != '-') {
143 1.1 cgd host = argv[1];
144 1.1 cgd argoff = 1;
145 1.1 cgd }
146 1.1 cgd
147 1.7 mrg #ifdef IN_RCMD
148 1.7 mrg if ((loop = getenv("RCMD_LOOP")) && strcmp(loop, "YES") == 0)
149 1.7 mrg warnx("rcmd appears to be looping!");
150 1.7 mrg
151 1.7 mrg putenv("RCMD_LOOP=YES");
152 1.7 mrg
153 1.7 mrg # ifdef KERBEROS
154 1.7 mrg # ifdef CRYPT
155 1.7 mrg # define OPTIONS "8KLdek:l:nu:wx"
156 1.7 mrg # else
157 1.7 mrg # define OPTIONS "8KLdek:l:nu:w"
158 1.7 mrg # endif
159 1.7 mrg # else
160 1.7 mrg # define OPTIONS "8KLdel:nu:w"
161 1.7 mrg # endif
162 1.7 mrg
163 1.7 mrg #else /* IN_RCMD */
164 1.7 mrg
165 1.7 mrg # ifdef KERBEROS
166 1.7 mrg # ifdef CRYPT
167 1.7 mrg # define OPTIONS "8KLdek:l:nwx"
168 1.7 mrg # else
169 1.7 mrg # define OPTIONS "8KLdek:l:nw"
170 1.7 mrg # endif
171 1.7 mrg # else
172 1.7 mrg # define OPTIONS "8KLdel:nw"
173 1.7 mrg # endif
174 1.7 mrg
175 1.7 mrg #endif /* IN_RCMD */
176 1.7 mrg
177 1.7 mrg if (!(pw = getpwuid(uid = getuid())))
178 1.7 mrg errx(1, "unknown user id");
179 1.7 mrg
180 1.9 mrg if ((name = strdup(pw->pw_name)) == NULL)
181 1.9 mrg err(1, "malloc");
182 1.10 christos while ((ch = getopt(argc - argoff, argv + argoff, OPTIONS)) != -1)
183 1.1 cgd switch(ch) {
184 1.1 cgd case 'K':
185 1.1 cgd #ifdef KERBEROS
186 1.1 cgd use_kerberos = 0;
187 1.1 cgd #endif
188 1.1 cgd break;
189 1.1 cgd case 'L': /* -8Lew are ignored to allow rlogin aliases */
190 1.1 cgd case 'e':
191 1.1 cgd case 'w':
192 1.1 cgd case '8':
193 1.1 cgd break;
194 1.1 cgd case 'd':
195 1.1 cgd dflag = 1;
196 1.1 cgd break;
197 1.1 cgd case 'l':
198 1.1 cgd user = optarg;
199 1.1 cgd break;
200 1.1 cgd #ifdef KERBEROS
201 1.1 cgd case 'k':
202 1.1 cgd dest_realm = dst_realm_buf;
203 1.1 cgd strncpy(dest_realm, optarg, REALM_SZ);
204 1.1 cgd break;
205 1.1 cgd #endif
206 1.1 cgd case 'n':
207 1.1 cgd nflag = 1;
208 1.1 cgd break;
209 1.7 mrg #ifdef IN_RCMD
210 1.7 mrg case 'u':
211 1.9 mrg if (getuid() != 0 && optarg && name &&
212 1.9 mrg strcmp(name, optarg) != 0)
213 1.7 mrg errx(1,"only super user can use the -u option");
214 1.7 mrg locuser = optarg;
215 1.7 mrg break;
216 1.7 mrg #endif /* IN_RCMD */
217 1.1 cgd #ifdef KERBEROS
218 1.1 cgd #ifdef CRYPT
219 1.1 cgd case 'x':
220 1.1 cgd doencrypt = 1;
221 1.10 christos des_set_key((des_cblock *) cred.session, schedule);
222 1.1 cgd break;
223 1.1 cgd #endif
224 1.1 cgd #endif
225 1.1 cgd case '?':
226 1.1 cgd default:
227 1.1 cgd usage();
228 1.1 cgd }
229 1.1 cgd optind += argoff;
230 1.1 cgd
231 1.1 cgd /* if haven't gotten a host yet, do so */
232 1.1 cgd if (!host && !(host = argv[optind++]))
233 1.1 cgd usage();
234 1.1 cgd
235 1.1 cgd /* if no further arguments, must have been called as rlogin. */
236 1.1 cgd if (!argv[optind]) {
237 1.7 mrg #ifdef IN_RCMD
238 1.7 mrg usage();
239 1.7 mrg #else
240 1.1 cgd if (asrsh)
241 1.1 cgd *argv = "rlogin";
242 1.1 cgd execv(_PATH_RLOGIN, argv);
243 1.5 mrg err(1, "can't exec %s", _PATH_RLOGIN);
244 1.7 mrg #endif
245 1.1 cgd }
246 1.1 cgd
247 1.1 cgd argc -= optind;
248 1.1 cgd argv += optind;
249 1.1 cgd
250 1.5 mrg /* Accept user1@host format, though "-l user2" overrides user1 */
251 1.5 mrg p = strchr(host, '@');
252 1.5 mrg if (p) {
253 1.5 mrg *p = '\0';
254 1.5 mrg if (!user && p > host)
255 1.5 mrg user = host;
256 1.5 mrg host = p + 1;
257 1.5 mrg if (*host == '\0')
258 1.5 mrg usage();
259 1.1 cgd }
260 1.1 cgd if (!user)
261 1.9 mrg user = name;
262 1.1 cgd
263 1.1 cgd #ifdef KERBEROS
264 1.1 cgd #ifdef CRYPT
265 1.1 cgd /* -x turns off -n */
266 1.1 cgd if (doencrypt)
267 1.1 cgd nflag = 0;
268 1.1 cgd #endif
269 1.1 cgd #endif
270 1.1 cgd
271 1.1 cgd args = copyargs(argv);
272 1.1 cgd
273 1.1 cgd sp = NULL;
274 1.1 cgd #ifdef KERBEROS
275 1.1 cgd if (use_kerberos) {
276 1.1 cgd sp = getservbyname((doencrypt ? "ekshell" : "kshell"), "tcp");
277 1.1 cgd if (sp == NULL) {
278 1.1 cgd use_kerberos = 0;
279 1.1 cgd warning("can't get entry for %s/tcp service",
280 1.1 cgd doencrypt ? "ekshell" : "kshell");
281 1.1 cgd }
282 1.1 cgd }
283 1.1 cgd #endif
284 1.1 cgd if (sp == NULL)
285 1.1 cgd sp = getservbyname("shell", "tcp");
286 1.5 mrg if (sp == NULL)
287 1.5 mrg errx(1, "shell/tcp: unknown service");
288 1.1 cgd
289 1.1 cgd #ifdef KERBEROS
290 1.1 cgd try_connect:
291 1.1 cgd if (use_kerberos) {
292 1.7 mrg #if 1
293 1.5 mrg struct hostent *hp;
294 1.5 mrg
295 1.5 mrg /* fully qualify hostname (needed for krb_realmofhost) */
296 1.5 mrg hp = gethostbyname(host);
297 1.5 mrg if (hp != NULL && !(host = strdup(hp->h_name)))
298 1.10 christos err(1, "strdup");
299 1.7 mrg #endif
300 1.5 mrg
301 1.1 cgd rem = KSUCCESS;
302 1.1 cgd errno = 0;
303 1.1 cgd if (dest_realm == NULL)
304 1.1 cgd dest_realm = krb_realmofhost(host);
305 1.1 cgd
306 1.1 cgd #ifdef CRYPT
307 1.1 cgd if (doencrypt)
308 1.1 cgd rem = krcmd_mutual(&host, sp->s_port, user, args,
309 1.10 christos &remerr, dest_realm, &cred, schedule);
310 1.1 cgd else
311 1.1 cgd #endif
312 1.10 christos rem = krcmd(&host, sp->s_port, user, args, &remerr,
313 1.1 cgd dest_realm);
314 1.1 cgd if (rem < 0) {
315 1.1 cgd use_kerberos = 0;
316 1.1 cgd sp = getservbyname("shell", "tcp");
317 1.5 mrg if (sp == NULL)
318 1.5 mrg errx(1, "shell/tcp: unknown service");
319 1.1 cgd if (errno == ECONNREFUSED)
320 1.1 cgd warning("remote host doesn't support Kerberos");
321 1.1 cgd if (errno == ENOENT)
322 1.1 cgd warning("can't provide Kerberos auth data");
323 1.1 cgd goto try_connect;
324 1.1 cgd }
325 1.1 cgd } else {
326 1.5 mrg if (doencrypt)
327 1.7 mrg errx(1, "the -x flag requires Kerberos authentication.");
328 1.7 mrg #ifdef IN_RCMD
329 1.13 itojun rem = orcmd_af(&host, sp->s_port, locuser ? locuser :
330 1.7 mrg #else
331 1.13 itojun rem = rcmd_af(&host, sp->s_port,
332 1.7 mrg #endif
333 1.9 mrg name,
334 1.13 itojun user, args, &remerr, PF_UNSPEC);
335 1.1 cgd }
336 1.7 mrg #else /* KERBEROS */
337 1.7 mrg
338 1.7 mrg #ifdef IN_RCMD
339 1.13 itojun rem = orcmd_af(&host, sp->s_port, locuser ? locuser :
340 1.1 cgd #else
341 1.13 itojun rem = rcmd_af(&host, sp->s_port,
342 1.1 cgd #endif
343 1.13 itojun name, user, args, &remerr, PF_UNSPEC);
344 1.7 mrg #endif /* KERBEROS */
345 1.9 mrg (void)free(name);
346 1.1 cgd
347 1.1 cgd if (rem < 0)
348 1.1 cgd exit(1);
349 1.1 cgd
350 1.10 christos if (remerr < 0)
351 1.5 mrg errx(1, "can't establish stderr");
352 1.1 cgd if (dflag) {
353 1.1 cgd if (setsockopt(rem, SOL_SOCKET, SO_DEBUG, &one,
354 1.1 cgd sizeof(one)) < 0)
355 1.7 mrg warn("setsockopt remote");
356 1.10 christos if (setsockopt(remerr, SOL_SOCKET, SO_DEBUG, &one,
357 1.1 cgd sizeof(one)) < 0)
358 1.7 mrg warn("setsockopt stderr");
359 1.1 cgd }
360 1.1 cgd
361 1.10 christos (void) setuid(uid);
362 1.10 christos
363 1.10 christos (void) sigemptyset(&nset);
364 1.10 christos for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++)
365 1.10 christos (void) sigaddset(&nset, sigs[i]);
366 1.10 christos
367 1.10 christos (void) sigprocmask(SIG_BLOCK, &nset, &oset);
368 1.10 christos
369 1.10 christos for (i = 0; i < sizeof(sigs) / sizeof(sigs[0]); i++) {
370 1.10 christos struct sigaction sa;
371 1.10 christos
372 1.10 christos if (sa.sa_handler != SIG_IGN) {
373 1.10 christos sa.sa_handler = sendsig;
374 1.10 christos (void) sigaction(sigs[i], &sa, NULL);
375 1.10 christos }
376 1.10 christos }
377 1.1 cgd
378 1.1 cgd if (!nflag) {
379 1.1 cgd pid = fork();
380 1.5 mrg if (pid < 0)
381 1.5 mrg err(1, "fork");
382 1.1 cgd }
383 1.10 christos else
384 1.10 christos pid = -1;
385 1.1 cgd
386 1.10 christos #if defined(KERBEROS) && defined(CRYPT)
387 1.1 cgd if (!doencrypt)
388 1.1 cgd #endif
389 1.1 cgd {
390 1.10 christos (void)ioctl(remerr, FIONBIO, &one);
391 1.1 cgd (void)ioctl(rem, FIONBIO, &one);
392 1.1 cgd }
393 1.1 cgd
394 1.10 christos talk(nflag, &oset, pid, rem);
395 1.1 cgd
396 1.1 cgd if (!nflag)
397 1.1 cgd (void)kill(pid, SIGKILL);
398 1.1 cgd exit(0);
399 1.1 cgd }
400 1.1 cgd
401 1.10 christos int
402 1.10 christos checkfd(fdp, outfd)
403 1.10 christos struct pollfd *fdp;
404 1.10 christos int outfd;
405 1.10 christos {
406 1.10 christos int nr, nw;
407 1.10 christos char buf[BUFSIZ];
408 1.10 christos
409 1.10 christos if (fdp->revents & (POLLNVAL|POLLERR|POLLHUP))
410 1.10 christos return -1;
411 1.10 christos
412 1.10 christos if ((fdp->revents & POLLIN) == 0)
413 1.10 christos return 0;
414 1.10 christos
415 1.10 christos errno = 0;
416 1.10 christos #if defined(KERBEROS) && defined(CRYPT)
417 1.10 christos if (doencrypt)
418 1.10 christos nr = des_read(fdp->fd, buf, sizeof buf);
419 1.10 christos else
420 1.10 christos #endif
421 1.10 christos nr = read(fdp->fd, buf, sizeof buf);
422 1.10 christos
423 1.10 christos if (nr <= 0) {
424 1.10 christos if (errno != EAGAIN)
425 1.10 christos return -1;
426 1.10 christos else
427 1.10 christos return 0;
428 1.10 christos }
429 1.10 christos else {
430 1.10 christos char *bc = buf;
431 1.10 christos while (nr) {
432 1.10 christos if ((nw = write(outfd, bc, nr)) <= 0)
433 1.10 christos return -1;
434 1.10 christos nr -= nw;
435 1.10 christos bc += nw;
436 1.10 christos }
437 1.10 christos return 0;
438 1.10 christos }
439 1.10 christos }
440 1.10 christos
441 1.5 mrg void
442 1.10 christos talk(nflag, oset, pid, rem)
443 1.5 mrg int nflag;
444 1.10 christos sigset_t *oset;
445 1.5 mrg pid_t pid;
446 1.5 mrg int rem;
447 1.1 cgd {
448 1.10 christos int nr, nw, nfds;
449 1.7 mrg struct pollfd fds[2], *fdp = &fds[0];
450 1.5 mrg char *bp, buf[BUFSIZ];
451 1.1 cgd
452 1.10 christos
453 1.1 cgd if (!nflag && pid == 0) {
454 1.10 christos (void)close(remerr);
455 1.1 cgd
456 1.10 christos fdp->events = POLLOUT|POLLNVAL|POLLERR|POLLHUP;
457 1.10 christos fdp->fd = rem;
458 1.10 christos nr = 0;
459 1.1 cgd bp = buf;
460 1.1 cgd
461 1.10 christos for (;;) {
462 1.10 christos errno = 0;
463 1.10 christos
464 1.10 christos if (nr == 0) {
465 1.10 christos if ((nr = read(0, buf, sizeof buf)) == 0)
466 1.10 christos goto done;
467 1.10 christos if (nr == -1) {
468 1.10 christos if (errno == EIO)
469 1.10 christos goto done;
470 1.10 christos if (errno == EINTR)
471 1.10 christos continue;
472 1.10 christos err(1, "read");
473 1.10 christos }
474 1.10 christos bp = buf;
475 1.10 christos }
476 1.10 christos
477 1.10 christos rewrite: if (poll(fdp, 1, INFTIM) == -1) {
478 1.10 christos if (errno != EINTR)
479 1.10 christos err(1, "poll");
480 1.10 christos goto rewrite;
481 1.10 christos }
482 1.10 christos
483 1.10 christos if (fdp->revents & (POLLNVAL|POLLERR|POLLHUP))
484 1.7 mrg err(1, "poll");
485 1.10 christos
486 1.10 christos if ((fdp->revents & POLLOUT) == 0)
487 1.10 christos goto rewrite;
488 1.10 christos
489 1.10 christos #if defined(KERBEROS) && defined(CRYPT)
490 1.10 christos if (doencrypt)
491 1.10 christos nw = des_write(rem, bp, nr);
492 1.10 christos else
493 1.1 cgd #endif
494 1.10 christos nw = write(rem, bp, nr);
495 1.10 christos
496 1.10 christos if (nw < 0) {
497 1.10 christos if (errno == EAGAIN)
498 1.10 christos continue;
499 1.10 christos err(1, "write");
500 1.10 christos }
501 1.10 christos bp += nw;
502 1.10 christos nr -= nw;
503 1.1 cgd }
504 1.1 cgd done:
505 1.1 cgd (void)shutdown(rem, 1);
506 1.1 cgd exit(0);
507 1.1 cgd }
508 1.1 cgd
509 1.10 christos (void) sigprocmask(SIG_SETMASK, oset, NULL);
510 1.10 christos fds[0].events = fds[1].events = POLLIN|POLLNVAL|POLLERR|POLLHUP;
511 1.10 christos fds[0].fd = remerr;
512 1.7 mrg fds[1].fd = rem;
513 1.7 mrg fdp = &fds[0];
514 1.7 mrg nfds = 2;
515 1.1 cgd do {
516 1.10 christos if (poll(fdp, nfds, INFTIM) == -1) {
517 1.5 mrg if (errno != EINTR)
518 1.7 mrg err(1, "poll");
519 1.1 cgd continue;
520 1.1 cgd }
521 1.10 christos if (fds[0].events != 0 && checkfd(&fds[0], 2) == -1) {
522 1.10 christos nfds--;
523 1.10 christos fds[0].events = 0;
524 1.10 christos fdp = &fds[1];
525 1.1 cgd }
526 1.10 christos if (fds[1].events != 0 && checkfd(&fds[1], 1) == -1) {
527 1.10 christos nfds--;
528 1.10 christos fds[1].events = 0;
529 1.1 cgd }
530 1.10 christos }
531 1.10 christos while (nfds);
532 1.1 cgd }
533 1.1 cgd
534 1.1 cgd void
535 1.5 mrg sendsig(sig)
536 1.5 mrg int sig;
537 1.5 mrg {
538 1.1 cgd char signo;
539 1.5 mrg
540 1.5 mrg signo = sig;
541 1.1 cgd #ifdef KERBEROS
542 1.1 cgd #ifdef CRYPT
543 1.1 cgd if (doencrypt)
544 1.10 christos (void)des_write(remerr, &signo, 1);
545 1.1 cgd else
546 1.1 cgd #endif
547 1.1 cgd #endif
548 1.10 christos (void)write(remerr, &signo, 1);
549 1.1 cgd }
550 1.1 cgd
551 1.1 cgd #ifdef KERBEROS
552 1.1 cgd /* VARARGS */
553 1.5 mrg void
554 1.10 christos #ifdef __STDC__
555 1.10 christos warning(const char *fmt, ...)
556 1.10 christos #else
557 1.1 cgd warning(va_alist)
558 1.10 christos va_dcl
559 1.10 christos #endif
560 1.1 cgd {
561 1.1 cgd va_list ap;
562 1.10 christos #ifndef __STDC__
563 1.10 christos const char *fmt;
564 1.1 cgd
565 1.1 cgd va_start(ap);
566 1.10 christos fmt = va_arg(ap, const char *);
567 1.10 christos #else
568 1.10 christos va_start(ap, fmt);
569 1.10 christos #endif
570 1.10 christos
571 1.10 christos (void) fprintf(stderr, "%s: warning, using standard rsh: ", __progname);
572 1.10 christos (void) vfprintf(stderr, fmt, ap);
573 1.1 cgd va_end(ap);
574 1.10 christos (void) fprintf(stderr, ".\n");
575 1.1 cgd }
576 1.1 cgd #endif
577 1.1 cgd
578 1.1 cgd char *
579 1.1 cgd copyargs(argv)
580 1.1 cgd char **argv;
581 1.1 cgd {
582 1.5 mrg int cc;
583 1.5 mrg char **ap, *args, *p;
584 1.1 cgd
585 1.1 cgd cc = 0;
586 1.1 cgd for (ap = argv; *ap; ++ap)
587 1.1 cgd cc += strlen(*ap) + 1;
588 1.5 mrg if (!(args = malloc((u_int)cc)))
589 1.10 christos err(1, "malloc");
590 1.7 mrg for (p = args, *p = '\0', ap = argv; *ap; ++ap) {
591 1.8 mrg (void)strcpy(p, *ap);
592 1.7 mrg p += strlen(p);
593 1.1 cgd if (ap[1])
594 1.1 cgd *p++ = ' ';
595 1.1 cgd }
596 1.7 mrg *p = '\0';
597 1.5 mrg return (args);
598 1.1 cgd }
599 1.1 cgd
600 1.5 mrg void
601 1.1 cgd usage()
602 1.1 cgd {
603 1.5 mrg
604 1.1 cgd (void)fprintf(stderr,
605 1.7 mrg "usage: %s [-nd%s]%s[-l login]%s [login@]host %s\n", __progname,
606 1.1 cgd #ifdef KERBEROS
607 1.1 cgd #ifdef CRYPT
608 1.7 mrg "x", " [-k realm] ",
609 1.7 mrg #else
610 1.7 mrg "", " [-k realm] ",
611 1.7 mrg #endif
612 1.1 cgd #else
613 1.7 mrg "", " ",
614 1.1 cgd #endif
615 1.7 mrg #ifdef IN_RCMD
616 1.7 mrg " [-u locuser]", "command"
617 1.1 cgd #else
618 1.7 mrg "", "[command]"
619 1.1 cgd #endif
620 1.7 mrg );
621 1.1 cgd exit(1);
622 1.1 cgd }
623