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