2 * Copyright (c) 1983, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid
[] = "@(#)rcmd.c 8.3 (Berkeley) 3/26/94";
36 #endif /* LIBC_SCCS and not lint */
38 #include <sys/param.h>
40 #include <sys/socket.h>
43 #include <netinet/in.h>
44 #include <arpa/inet.h>
58 int __ivaliduser
__P ((FILE *, u_int32_t
, const char *, const char *));
59 static int __ivaliduser2
__P ((FILE *, u_int32_t
, const char *, const char *,
64 rcmd(ahost
, rport
, locuser
, remuser
, cmd
, fd2p
)
67 const char *locuser
, *remuser
, *cmd
;
70 struct hostent hostbuf
, *hp
;
73 struct sockaddr_in sin
, from
;
84 tmphstbuf
= __alloca (hstbuflen
);
85 while (__gethostbyname_r (*ahost
, &hostbuf
, tmphstbuf
, hstbuflen
,
87 if (herr
!= NETDB_INTERNAL
|| errno
!= ERANGE
)
95 /* Enlarge the buffer. */
97 tmphstbuf
= __alloca (hstbuflen
);
100 pfd
[0].events
= POLLIN
;
101 pfd
[1].events
= POLLIN
;
104 oldmask
= __sigblock(sigmask(SIGURG
));
105 for (timo
= 1, lport
= IPPORT_RESERVED
- 1;;) {
106 s
= rresvport(&lport
);
109 (void)fprintf(stderr
,
110 _("rcmd: socket: All ports in use\n"));
112 (void)fprintf(stderr
, "rcmd: socket: %m\n");
113 __sigsetmask(oldmask
);
116 __fcntl(s
, F_SETOWN
, pid
);
117 sin
.sin_family
= hp
->h_addrtype
;
118 bcopy(hp
->h_addr_list
[0], &sin
.sin_addr
,
119 MIN (sizeof (sin
.sin_addr
), hp
->h_length
));
120 sin
.sin_port
= rport
;
121 if (__connect(s
, (struct sockaddr
*)&sin
, sizeof(sin
)) >= 0)
124 if (errno
== EADDRINUSE
) {
128 if (errno
== ECONNREFUSED
&& timo
<= 16) {
133 if (hp
->h_addr_list
[1] != NULL
) {
136 (void)fprintf(stderr
, _("connect to address %s: "),
137 inet_ntoa(sin
.sin_addr
));
138 __set_errno (oerrno
);
141 bcopy(hp
->h_addr_list
[0], &sin
.sin_addr
,
142 MIN (sizeof (sin
.sin_addr
), hp
->h_length
));
143 (void)fprintf(stderr
, _("Trying %s...\n"),
144 inet_ntoa(sin
.sin_addr
));
147 (void)fprintf(stderr
, "%s: %m\n", hp
->h_name
);
148 __sigsetmask(oldmask
);
157 int s2
= rresvport(&lport
), s3
;
158 size_t len
= sizeof(from
);
163 (void)__snprintf(num
, sizeof(num
), "%d", lport
);
164 if (__write(s
, num
, strlen(num
)+1) != strlen(num
)+1) {
165 (void)fprintf(stderr
,
166 _("rcmd: write (setting up stderr): %m\n"));
173 if (__poll (pfd
, 2, -1) < 1 || (pfd
[1].revents
& POLLIN
) == 0){
175 (void)fprintf(stderr
,
176 _("rcmd: poll (setting up stderr): %m\n"));
178 (void)fprintf(stderr
,
179 _("poll: protocol failure in circuit setup\n"));
183 s3
= accept(s2
, (struct sockaddr
*)&from
, &len
);
186 (void)fprintf(stderr
,
187 "rcmd: accept: %m\n");
192 from
.sin_port
= ntohs((u_short
)from
.sin_port
);
193 if (from
.sin_family
!= AF_INET
||
194 from
.sin_port
>= IPPORT_RESERVED
||
195 from
.sin_port
< IPPORT_RESERVED
/ 2) {
196 (void)fprintf(stderr
,
197 _("socket: protocol failure in circuit setup\n"));
201 (void)__write(s
, locuser
, strlen(locuser
)+1);
202 (void)__write(s
, remuser
, strlen(remuser
)+1);
203 (void)__write(s
, cmd
, strlen(cmd
)+1);
204 if (__read(s
, &c
, 1) != 1) {
205 (void)fprintf(stderr
,
206 "rcmd: %s: %m\n", *ahost
);
210 while (__read(s
, &c
, 1) == 1) {
211 (void)__write(STDERR_FILENO
, &c
, 1);
217 __sigsetmask(oldmask
);
221 (void)__close(*fd2p
);
224 __sigsetmask(oldmask
);
232 struct sockaddr_in sin
;
235 sin
.sin_family
= AF_INET
;
236 sin
.sin_addr
.s_addr
= INADDR_ANY
;
237 s
= __socket(AF_INET
, SOCK_STREAM
, 0);
241 sin
.sin_port
= htons((u_short
)*alport
);
242 if (bind(s
, (struct sockaddr
*)&sin
, sizeof(sin
)) >= 0)
244 if (errno
!= EADDRINUSE
) {
249 if (*alport
== IPPORT_RESERVED
/2) {
251 __set_errno (EAGAIN
); /* close */
257 int __check_rhosts_file
= 1;
261 ruserok(rhost
, superuser
, ruser
, luser
)
262 const char *rhost
, *ruser
, *luser
;
265 struct hostent hostbuf
, *hp
;
273 buffer
= __alloca (buflen
);
275 while (__gethostbyname_r (rhost
, &hostbuf
, buffer
, buflen
, &hp
, &herr
)
277 if (herr
!= NETDB_INTERNAL
|| errno
!= ERANGE
)
281 /* Enlarge the buffer. */
283 buffer
= __alloca (buflen
);
286 for (ap
= hp
->h_addr_list
; *ap
; ++ap
) {
287 bcopy(*ap
, &addr
, sizeof(addr
));
288 if (iruserok(addr
, superuser
, ruser
, luser
, rhost
) == 0)
294 /* Extremely paranoid file open function. */
296 iruserfopen (char *file
, uid_t okuser
)
302 /* If not a regular file, if owned by someone other than user or
303 root, if writeable by anyone but the owner, or if hardlinked
306 if (__lxstat (_STAT_VER
, file
, &st
))
307 cp
= _("lstat failed");
308 else if (!S_ISREG (st
.st_mode
))
309 cp
= _("not regular file");
312 res
= fopen (file
, "r");
314 cp
= _("cannot open");
315 else if (__fxstat (_STAT_VER
, fileno (res
), &st
) < 0)
316 cp
= _("fstat failed");
317 else if (st
.st_uid
&& st
.st_uid
!= okuser
)
319 else if (st
.st_mode
& (S_IWGRP
|S_IWOTH
))
320 cp
= _("writeable by other than owner");
321 else if (st
.st_nlink
> 1)
322 cp
= _("hard linked somewhere");
325 /* If there were any problems, quit. */
338 * New .rhosts strategy: We are passed an ip address. We spin through
339 * hosts.equiv and .rhosts looking for a match. When the .rhosts only
340 * has ip addresses, we don't have to trust a nameserver. When it
341 * contains hostnames, we spin through the list of addresses the nameserver
342 * gives us and look for a match.
344 * Returns 0 if ok, -1 if not ok.
347 iruserok2 (raddr
, superuser
, ruser
, luser
, rhost
)
350 const char *ruser
, *luser
, *rhost
;
356 hostf
= iruserfopen (_PATH_HEQUIV
, 0);
360 isbad
= __ivaliduser2 (hostf
, raddr
, luser
, ruser
, rhost
);
367 if (__check_rhosts_file
|| superuser
)
370 struct passwd pwdbuf
, *pwd
;
372 size_t buflen
= __sysconf (_SC_GETPW_R_SIZE_MAX
);
373 char *buffer
= __alloca (buflen
);
376 if (__getpwnam_r (luser
, &pwdbuf
, buffer
, buflen
, &pwd
))
379 dirlen
= strlen (pwd
->pw_dir
);
380 pbuf
= alloca (dirlen
+ sizeof "/.rhosts");
381 __mempcpy (__mempcpy (pbuf
, pwd
->pw_dir
, dirlen
),
382 "/.rhosts", sizeof "/.rhosts");
384 /* Change effective uid while reading .rhosts. If root and
385 reading an NFS mounted file system, can't read files that
386 are protected read/write owner only. */
388 seteuid (pwd
->pw_uid
);
389 hostf
= iruserfopen (pbuf
, pwd
->pw_uid
);
393 isbad
= __ivaliduser2 (hostf
, raddr
, luser
, ruser
, rhost
);
403 /* This is the exported version. */
405 iruserok (raddr
, superuser
, ruser
, luser
)
408 const char *ruser
, *luser
;
410 return iruserok2 (raddr
, superuser
, ruser
, luser
, "-");
415 * Don't make static, used by lpd(8).
417 * This function is not used anymore. It is only present because lpd(8)
418 * calls it (!?!). We simply call __invaliduser2() with an illegal rhost
419 * argument. This means that netgroups won't work in .rhost/hosts.equiv
420 * files. If you want lpd to work with netgroups, fix lpd to use ruserok()
422 * Returns 0 if ok, -1 if not ok.
425 __ivaliduser(hostf
, raddr
, luser
, ruser
)
428 const char *luser
, *ruser
;
430 return __ivaliduser2(hostf
, raddr
, luser
, ruser
, "-");
434 /* Returns 1 on positive match, 0 on no match, -1 on negative match. */
437 __icheckhost (raddr
, lhost
, rhost
)
442 struct hostent hostbuf
, *hp
;
448 int negate
=1; /* Multiply return with this to get -1 instead of 1 */
451 /* Check nis netgroup. */
452 if (strncmp ("+@", lhost
, 2) == 0)
453 return innetgr (&lhost
[2], rhost
, NULL
, NULL
);
455 if (strncmp ("-@", lhost
, 2) == 0)
456 return -innetgr (&lhost
[2], rhost
, NULL
, NULL
);
459 if (strncmp ("-", lhost
,1) == 0) {
462 } else if (strcmp ("+",lhost
) == 0) {
463 return 1; /* asking for trouble, but ok.. */
466 /* Try for raw ip address first. */
467 if (isdigit (*lhost
) && (long) (laddr
= inet_addr (lhost
)) != -1)
468 return negate
* (! (raddr
^ laddr
));
470 /* Better be a hostname. */
472 buffer
= __alloca (buflen
);
474 while (__gethostbyname_r (lhost
, &hostbuf
, buffer
, buflen
, &hp
, &herr
)
476 if (herr
!= NETDB_INTERNAL
|| errno
!= ERANGE
)
479 /* Enlarge the buffer. */
481 buffer
= __alloca (buflen
);
484 __set_errno (save_errno
);
488 /* Spin through ip addresses. */
489 for (pp
= hp
->h_addr_list
; *pp
; ++pp
)
490 if (!memcmp (&raddr
, *pp
, sizeof (u_int32_t
)))
497 /* Returns 1 on positive match, 0 on no match, -1 on negative match. */
500 __icheckuser (luser
, ruser
)
501 const char *luser
, *ruser
;
504 luser is user entry from .rhosts/hosts.equiv file
505 ruser is user id on remote host
510 if (strncmp ("+@", luser
, 2) == 0)
511 return innetgr (&luser
[2], NULL
, ruser
, NULL
);
513 if (strncmp ("-@", luser
,2) == 0)
514 return -innetgr (&luser
[2], NULL
, ruser
, NULL
);
517 if (strncmp ("-", luser
, 1) == 0)
518 return -(strcmp (&luser
[1], ruser
) == 0);
521 if (strcmp ("+", luser
) == 0)
524 /* simple string match */
525 return strcmp (ruser
, luser
) == 0;
529 * Returns 1 for blank lines (or only comment lines) and 0 otherwise
535 while (*p
&& isspace (*p
)) {
539 return (*p
== '\0' || *p
== '#') ? 1 : 0 ;
543 * Returns 0 if positive match, -1 if _not_ ok.
546 __ivaliduser2(hostf
, raddr
, luser
, ruser
, rhost
)
549 const char *luser
, *ruser
, *rhost
;
551 register const char *user
;
557 while (__getline (&buf
, &bufsize
, hostf
) > 0) {
558 buf
[bufsize
- 1] = '\0'; /* Make sure it's terminated. */
561 /* Skip empty or comment lines */
566 /* Skip lines that are too long. */
567 if (strchr (p
, '\n') == NULL
) {
568 int ch
= getc (hostf
);
570 while (ch
!= '\n' && ch
!= EOF
)
575 for (;*p
&& !isspace(*p
); ++p
) {
579 /* Next we want to find the permitted name for the remote user. */
580 if (*p
== ' ' || *p
== '\t') {
581 /* <nul> terminate hostname and skip spaces */
582 for (*p
++='\0'; *p
&& isspace (*p
); ++p
);
584 user
= p
; /* this is the user's name */
585 while (*p
&& !isspace (*p
))
586 ++p
; /* find end of user's name */
590 *p
= '\0'; /* <nul> terminate username (+host?) */
592 /* buf -> host(?) ; user -> username(?) */
594 /* First check host part */
595 hcheck
= __icheckhost (raddr
, buf
, rhost
);
601 /* Then check user part */
605 ucheck
= __icheckuser (user
, ruser
);
607 /* Positive 'host user' match? */
611 /* Negative 'host -user' match? */
615 /* Neither, go on looking for match */