xref: /freebsd/lib/libc/net/rcmd.c (revision dc36d6f9bb1753f3808552f3afd30eda9a7b206a)
18a16b7a1SPedro F. Giffuni /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
458f0484fSRodney W. Grimes  * Copyright (c) 1983, 1993, 1994
558f0484fSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
658f0484fSRodney W. Grimes  *
758f0484fSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
858f0484fSRodney W. Grimes  * modification, are permitted provided that the following conditions
958f0484fSRodney W. Grimes  * are met:
1058f0484fSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1158f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1258f0484fSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1358f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1458f0484fSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
1658f0484fSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1758f0484fSRodney W. Grimes  *    without specific prior written permission.
1858f0484fSRodney W. Grimes  *
1958f0484fSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2058f0484fSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2158f0484fSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2258f0484fSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2358f0484fSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2458f0484fSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2558f0484fSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2658f0484fSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2758f0484fSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2858f0484fSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2958f0484fSRodney W. Grimes  * SUCH DAMAGE.
3058f0484fSRodney W. Grimes  */
3158f0484fSRodney W. Grimes 
32d201fe46SDaniel Eischen #include "namespace.h"
3358f0484fSRodney W. Grimes #include <sys/param.h>
3458f0484fSRodney W. Grimes #include <sys/socket.h>
3558f0484fSRodney W. Grimes #include <sys/stat.h>
3658f0484fSRodney W. Grimes 
3758f0484fSRodney W. Grimes #include <netinet/in.h>
3858f0484fSRodney W. Grimes #include <arpa/inet.h>
3958f0484fSRodney W. Grimes 
4058f0484fSRodney W. Grimes #include <signal.h>
4158f0484fSRodney W. Grimes #include <fcntl.h>
4258f0484fSRodney W. Grimes #include <netdb.h>
43d4567212SWarner Losh #include <stdlib.h>
4458f0484fSRodney W. Grimes #include <unistd.h>
4558f0484fSRodney W. Grimes #include <pwd.h>
4658f0484fSRodney W. Grimes #include <errno.h>
4758f0484fSRodney W. Grimes #include <stdio.h>
4858f0484fSRodney W. Grimes #include <ctype.h>
4958f0484fSRodney W. Grimes #include <string.h>
501e890b05SBill Paul #include <rpc/rpc.h>
516c58990dSBjoern A. Zeeb #ifdef YP
521e890b05SBill Paul #include <rpcsvc/yp_prot.h>
531e890b05SBill Paul #include <rpcsvc/ypclnt.h>
541e890b05SBill Paul #endif
55c98e299eSHajimu UMEMOTO #include <arpa/nameser.h>
56d201fe46SDaniel Eischen #include "un-namespace.h"
57bd6060a1SKonstantin Belousov #include "libc_private.h"
5858f0484fSRodney W. Grimes 
59c05ac53bSDavid E. O'Brien extern int innetgr( const char *, const char *, const char *, const char * );
6051295a4dSJordan K. Hubbard 
61d1f32ba5SGeoff Rehmet #define max(a, b)	((a > b) ? a : b)
62d1f32ba5SGeoff Rehmet 
63c05ac53bSDavid E. O'Brien int __ivaliduser(FILE *, u_int32_t, const char *, const char *);
641372519bSDavid E. O'Brien int __ivaliduser_af(FILE *,const void *, const char *, const char *, int, int);
651372519bSDavid E. O'Brien int __ivaliduser_sa(FILE *, const struct sockaddr *, socklen_t, const char *,
661372519bSDavid E. O'Brien     const char *);
671372519bSDavid E. O'Brien static int __icheckhost(const struct sockaddr *, socklen_t, const char *);
6842b4f28eSYoshinobu Inoue 
69eb74b996SHajimu UMEMOTO char paddr[NI_MAXHOST];
7058f0484fSRodney W. Grimes 
7158f0484fSRodney W. Grimes int
rcmd(char ** ahost,int rport,const char * locuser,const char * remuser,const char * cmd,int * fd2p)723ba5ea24SCraig Rodrigues rcmd(char **ahost, int rport, const char *locuser, const char *remuser,
733ba5ea24SCraig Rodrigues     const char *cmd, int *fd2p)
7458f0484fSRodney W. Grimes {
750cac72f4SYoshinobu Inoue 	return rcmd_af(ahost, rport, locuser, remuser, cmd, fd2p, AF_INET);
760cac72f4SYoshinobu Inoue }
770cac72f4SYoshinobu Inoue 
780cac72f4SYoshinobu Inoue int
rcmd_af(char ** ahost,int rport,const char * locuser,const char * remuser,const char * cmd,int * fd2p,int af)793ba5ea24SCraig Rodrigues rcmd_af(char **ahost, int rport, const char *locuser, const char *remuser,
803ba5ea24SCraig Rodrigues     const char *cmd, int *fd2p, int af)
810cac72f4SYoshinobu Inoue {
8242b4f28eSYoshinobu Inoue 	struct addrinfo hints, *res, *ai;
8342b4f28eSYoshinobu Inoue 	struct sockaddr_storage from;
8458f0484fSRodney W. Grimes 	fd_set reads;
85d201fe46SDaniel Eischen 	sigset_t oldmask, newmask;
8658f0484fSRodney W. Grimes 	pid_t pid;
8742b4f28eSYoshinobu Inoue 	int s, aport, lport, timo, error;
88d4567212SWarner Losh 	char c, *p;
89eb74b996SHajimu UMEMOTO 	int refused, nres;
90c98e299eSHajimu UMEMOTO 	char num[8];
91c98e299eSHajimu UMEMOTO 	static char canonnamebuf[MAXDNAME];	/* is it proper here? */
9258f0484fSRodney W. Grimes 
93d4567212SWarner Losh 	/* call rcmdsh() with specified remote shell if appropriate. */
94*68ca8363SMark Johnston 	if ((p = secure_getenv("RSH")) != NULL) {
95d4567212SWarner Losh 		struct servent *sp = getservbyname("shell", "tcp");
96d4567212SWarner Losh 
97d4567212SWarner Losh 		if (sp && sp->s_port == rport)
98d4567212SWarner Losh 			return (rcmdsh(ahost, rport, locuser, remuser,
99d4567212SWarner Losh 			    cmd, p));
100d4567212SWarner Losh 	}
101d4567212SWarner Losh 
102d4567212SWarner Losh 	/* use rsh(1) if non-root and remote port is shell. */
103d4567212SWarner Losh 	if (geteuid()) {
104d4567212SWarner Losh 		struct servent *sp = getservbyname("shell", "tcp");
105d4567212SWarner Losh 
106d4567212SWarner Losh 		if (sp && sp->s_port == rport)
107d4567212SWarner Losh 			return (rcmdsh(ahost, rport, locuser, remuser,
108d4567212SWarner Losh 			    cmd, NULL));
109d4567212SWarner Losh 	}
110d4567212SWarner Losh 
11158f0484fSRodney W. Grimes 	pid = getpid();
11242b4f28eSYoshinobu Inoue 
11342b4f28eSYoshinobu Inoue 	memset(&hints, 0, sizeof(hints));
11442b4f28eSYoshinobu Inoue 	hints.ai_flags = AI_CANONNAME;
1150cac72f4SYoshinobu Inoue 	hints.ai_family = af;
11642b4f28eSYoshinobu Inoue 	hints.ai_socktype = SOCK_STREAM;
11742b4f28eSYoshinobu Inoue 	hints.ai_protocol = 0;
11842b4f28eSYoshinobu Inoue 	(void)snprintf(num, sizeof(num), "%d", ntohs(rport));
11942b4f28eSYoshinobu Inoue 	error = getaddrinfo(*ahost, num, &hints, &res);
12042b4f28eSYoshinobu Inoue 	if (error) {
12142b4f28eSYoshinobu Inoue 		fprintf(stderr, "rcmd: getaddrinfo: %s\n",
12242b4f28eSYoshinobu Inoue 			gai_strerror(error));
12342b4f28eSYoshinobu Inoue 		if (error == EAI_SYSTEM)
12442b4f28eSYoshinobu Inoue 			fprintf(stderr, "rcmd: getaddrinfo: %s\n",
12542b4f28eSYoshinobu Inoue 				strerror(errno));
12658f0484fSRodney W. Grimes 		return (-1);
12758f0484fSRodney W. Grimes 	}
128c98e299eSHajimu UMEMOTO 
129c98e299eSHajimu UMEMOTO 	if (res->ai_canonname
130c98e299eSHajimu UMEMOTO 	 && strlen(res->ai_canonname) + 1 < sizeof(canonnamebuf)) {
131c98e299eSHajimu UMEMOTO 		strncpy(canonnamebuf, res->ai_canonname, sizeof(canonnamebuf));
132c98e299eSHajimu UMEMOTO 		*ahost = canonnamebuf;
133c98e299eSHajimu UMEMOTO 	}
134eb74b996SHajimu UMEMOTO 	nres = 0;
135eb74b996SHajimu UMEMOTO 	for (ai = res; ai; ai = ai->ai_next)
136eb74b996SHajimu UMEMOTO 		nres++;
13742b4f28eSYoshinobu Inoue 	ai = res;
138eb74b996SHajimu UMEMOTO 	refused = 0;
139d201fe46SDaniel Eischen 	sigemptyset(&newmask);
140d201fe46SDaniel Eischen 	sigaddset(&newmask, SIGURG);
141bd6060a1SKonstantin Belousov 	__libc_sigprocmask(SIG_BLOCK, (const sigset_t *)&newmask, &oldmask);
14258f0484fSRodney W. Grimes 	for (timo = 1, lport = IPPORT_RESERVED - 1;;) {
14342b4f28eSYoshinobu Inoue 		s = rresvport_af(&lport, ai->ai_family);
14458f0484fSRodney W. Grimes 		if (s < 0) {
145474ce1d1SYoshinobu Inoue 			if (errno != EAGAIN && ai->ai_next) {
146474ce1d1SYoshinobu Inoue 				ai = ai->ai_next;
147474ce1d1SYoshinobu Inoue 				continue;
148474ce1d1SYoshinobu Inoue 			}
14958f0484fSRodney W. Grimes 			if (errno == EAGAIN)
15058f0484fSRodney W. Grimes 				(void)fprintf(stderr,
15158f0484fSRodney W. Grimes 				    "rcmd: socket: All ports in use\n");
15258f0484fSRodney W. Grimes 			else
15358f0484fSRodney W. Grimes 				(void)fprintf(stderr, "rcmd: socket: %s\n",
15458f0484fSRodney W. Grimes 				    strerror(errno));
15542b4f28eSYoshinobu Inoue 			freeaddrinfo(res);
156bd6060a1SKonstantin Belousov 			__libc_sigprocmask(SIG_SETMASK, (const sigset_t *)&oldmask,
157d201fe46SDaniel Eischen 			    NULL);
15858f0484fSRodney W. Grimes 			return (-1);
15958f0484fSRodney W. Grimes 		}
1609233c4d9SJason Evans 		_fcntl(s, F_SETOWN, pid);
161d201fe46SDaniel Eischen 		if (_connect(s, ai->ai_addr, ai->ai_addrlen) >= 0)
16258f0484fSRodney W. Grimes 			break;
1639233c4d9SJason Evans 		(void)_close(s);
16458f0484fSRodney W. Grimes 		if (errno == EADDRINUSE) {
16558f0484fSRodney W. Grimes 			lport--;
16658f0484fSRodney W. Grimes 			continue;
16758f0484fSRodney W. Grimes 		}
168eb74b996SHajimu UMEMOTO 		if (errno == ECONNREFUSED)
169eb74b996SHajimu UMEMOTO 			refused = 1;
170eb74b996SHajimu UMEMOTO 		if (ai->ai_next == NULL && (!refused || timo > 16)) {
171eb74b996SHajimu UMEMOTO 			(void)fprintf(stderr, "%s: %s\n",
172eb74b996SHajimu UMEMOTO 				      *ahost, strerror(errno));
173eb74b996SHajimu UMEMOTO 			freeaddrinfo(res);
174bd6060a1SKonstantin Belousov 			__libc_sigprocmask(SIG_SETMASK, (const sigset_t *)&oldmask,
175d201fe46SDaniel Eischen 			    NULL);
176eb74b996SHajimu UMEMOTO 			return (-1);
1772368b03bSHajimu UMEMOTO 		}
178eb74b996SHajimu UMEMOTO 		if (nres > 1) {
17958f0484fSRodney W. Grimes 			int oerrno = errno;
18058f0484fSRodney W. Grimes 
1814f101318SHajimu UMEMOTO 			getnameinfo(ai->ai_addr, ai->ai_addrlen, paddr,
1824f101318SHajimu UMEMOTO 			    sizeof(paddr), NULL, 0, NI_NUMERICHOST);
18358f0484fSRodney W. Grimes 			(void)fprintf(stderr, "connect to address %s: ",
18442b4f28eSYoshinobu Inoue 				      paddr);
18558f0484fSRodney W. Grimes 			errno = oerrno;
18658f0484fSRodney W. Grimes 			perror(0);
187eb74b996SHajimu UMEMOTO 		}
188eb74b996SHajimu UMEMOTO 		if ((ai = ai->ai_next) == NULL) {
189eb74b996SHajimu UMEMOTO 			/* refused && timo <= 16 */
190eb74b996SHajimu UMEMOTO 			struct timespec time_to_sleep, time_remaining;
191eb74b996SHajimu UMEMOTO 
192eb74b996SHajimu UMEMOTO 			time_to_sleep.tv_sec = timo;
193eb74b996SHajimu UMEMOTO 			time_to_sleep.tv_nsec = 0;
194eb74b996SHajimu UMEMOTO 			(void)_nanosleep(&time_to_sleep, &time_remaining);
195eb74b996SHajimu UMEMOTO 			timo *= 2;
196eb74b996SHajimu UMEMOTO 			ai = res;
197eb74b996SHajimu UMEMOTO 			refused = 0;
198eb74b996SHajimu UMEMOTO 		}
199eb74b996SHajimu UMEMOTO 		if (nres > 1) {
2004f101318SHajimu UMEMOTO 			getnameinfo(ai->ai_addr, ai->ai_addrlen, paddr,
2014f101318SHajimu UMEMOTO 			    sizeof(paddr), NULL, 0, NI_NUMERICHOST);
20242b4f28eSYoshinobu Inoue 			fprintf(stderr, "Trying %s...\n", paddr);
20358f0484fSRodney W. Grimes 		}
20458f0484fSRodney W. Grimes 	}
20558f0484fSRodney W. Grimes 	lport--;
206513004a2SPedro F. Giffuni 	if (fd2p == NULL) {
2079233c4d9SJason Evans 		_write(s, "", 1);
20858f0484fSRodney W. Grimes 		lport = 0;
20958f0484fSRodney W. Grimes 	} else {
21042b4f28eSYoshinobu Inoue 		int s2 = rresvport_af(&lport, ai->ai_family), s3;
21110248e3aSStefan Farfeleder 		socklen_t len = ai->ai_addrlen;
212d1f32ba5SGeoff Rehmet 		int nfds;
21358f0484fSRodney W. Grimes 
21458f0484fSRodney W. Grimes 		if (s2 < 0)
21558f0484fSRodney W. Grimes 			goto bad;
216d201fe46SDaniel Eischen 		_listen(s2, 1);
21758f0484fSRodney W. Grimes 		(void)snprintf(num, sizeof(num), "%d", lport);
2189233c4d9SJason Evans 		if (_write(s, num, strlen(num)+1) != strlen(num)+1) {
21958f0484fSRodney W. Grimes 			(void)fprintf(stderr,
22058f0484fSRodney W. Grimes 			    "rcmd: write (setting up stderr): %s\n",
22158f0484fSRodney W. Grimes 			    strerror(errno));
2229233c4d9SJason Evans 			(void)_close(s2);
22358f0484fSRodney W. Grimes 			goto bad;
22458f0484fSRodney W. Grimes 		}
225d1f32ba5SGeoff Rehmet 		nfds = max(s, s2)+1;
226d1f32ba5SGeoff Rehmet 		if(nfds > FD_SETSIZE) {
227d1f32ba5SGeoff Rehmet 			fprintf(stderr, "rcmd: too many files\n");
2289233c4d9SJason Evans 			(void)_close(s2);
229d1f32ba5SGeoff Rehmet 			goto bad;
230d1f32ba5SGeoff Rehmet 		}
231ce70b6caSPeter Wemm again:
23258f0484fSRodney W. Grimes 		FD_ZERO(&reads);
23358f0484fSRodney W. Grimes 		FD_SET(s, &reads);
23458f0484fSRodney W. Grimes 		FD_SET(s2, &reads);
23558f0484fSRodney W. Grimes 		errno = 0;
236d201fe46SDaniel Eischen 		if (_select(nfds, &reads, 0, 0, 0) < 1 || !FD_ISSET(s2, &reads)){
23758f0484fSRodney W. Grimes 			if (errno != 0)
23858f0484fSRodney W. Grimes 				(void)fprintf(stderr,
23958f0484fSRodney W. Grimes 				    "rcmd: select (setting up stderr): %s\n",
24058f0484fSRodney W. Grimes 				    strerror(errno));
24158f0484fSRodney W. Grimes 			else
24258f0484fSRodney W. Grimes 				(void)fprintf(stderr,
24358f0484fSRodney W. Grimes 				"select: protocol failure in circuit setup\n");
2449233c4d9SJason Evans 			(void)_close(s2);
24558f0484fSRodney W. Grimes 			goto bad;
24658f0484fSRodney W. Grimes 		}
247d201fe46SDaniel Eischen 		s3 = _accept(s2, (struct sockaddr *)&from, &len);
24842b4f28eSYoshinobu Inoue 		switch (from.ss_family) {
24942b4f28eSYoshinobu Inoue 		case AF_INET:
25042b4f28eSYoshinobu Inoue 			aport = ntohs(((struct sockaddr_in *)&from)->sin_port);
25142b4f28eSYoshinobu Inoue 			break;
25242b4f28eSYoshinobu Inoue #ifdef INET6
25342b4f28eSYoshinobu Inoue 		case AF_INET6:
25442b4f28eSYoshinobu Inoue 			aport = ntohs(((struct sockaddr_in6 *)&from)->sin6_port);
25542b4f28eSYoshinobu Inoue 			break;
25642b4f28eSYoshinobu Inoue #endif
25742b4f28eSYoshinobu Inoue 		default:
25842b4f28eSYoshinobu Inoue 			aport = 0;	/* error */
25942b4f28eSYoshinobu Inoue 			break;
26042b4f28eSYoshinobu Inoue 		}
261ce70b6caSPeter Wemm 		/*
262ce70b6caSPeter Wemm 		 * XXX careful for ftp bounce attacks. If discovered, shut them
263ce70b6caSPeter Wemm 		 * down and check for the real auxiliary channel to connect.
264ce70b6caSPeter Wemm 		 */
26542b4f28eSYoshinobu Inoue 		if (aport == 20) {
2669233c4d9SJason Evans 			_close(s3);
267ce70b6caSPeter Wemm 			goto again;
268ce70b6caSPeter Wemm 		}
2699233c4d9SJason Evans 		(void)_close(s2);
27058f0484fSRodney W. Grimes 		if (s3 < 0) {
27158f0484fSRodney W. Grimes 			(void)fprintf(stderr,
27258f0484fSRodney W. Grimes 			    "rcmd: accept: %s\n", strerror(errno));
27358f0484fSRodney W. Grimes 			lport = 0;
27458f0484fSRodney W. Grimes 			goto bad;
27558f0484fSRodney W. Grimes 		}
27658f0484fSRodney W. Grimes 		*fd2p = s3;
27742b4f28eSYoshinobu Inoue 		if (aport >= IPPORT_RESERVED || aport < IPPORT_RESERVED / 2) {
27858f0484fSRodney W. Grimes 			(void)fprintf(stderr,
27958f0484fSRodney W. Grimes 			    "socket: protocol failure in circuit setup.\n");
28058f0484fSRodney W. Grimes 			goto bad2;
28158f0484fSRodney W. Grimes 		}
28258f0484fSRodney W. Grimes 	}
2839233c4d9SJason Evans 	(void)_write(s, locuser, strlen(locuser)+1);
2849233c4d9SJason Evans 	(void)_write(s, remuser, strlen(remuser)+1);
2859233c4d9SJason Evans 	(void)_write(s, cmd, strlen(cmd)+1);
2869233c4d9SJason Evans 	if (_read(s, &c, 1) != 1) {
28758f0484fSRodney W. Grimes 		(void)fprintf(stderr,
28858f0484fSRodney W. Grimes 		    "rcmd: %s: %s\n", *ahost, strerror(errno));
28958f0484fSRodney W. Grimes 		goto bad2;
29058f0484fSRodney W. Grimes 	}
29158f0484fSRodney W. Grimes 	if (c != 0) {
2929233c4d9SJason Evans 		while (_read(s, &c, 1) == 1) {
2939233c4d9SJason Evans 			(void)_write(STDERR_FILENO, &c, 1);
29458f0484fSRodney W. Grimes 			if (c == '\n')
29558f0484fSRodney W. Grimes 				break;
29658f0484fSRodney W. Grimes 		}
29758f0484fSRodney W. Grimes 		goto bad2;
29858f0484fSRodney W. Grimes 	}
299bd6060a1SKonstantin Belousov 	__libc_sigprocmask(SIG_SETMASK, (const sigset_t *)&oldmask, NULL);
30042b4f28eSYoshinobu Inoue 	freeaddrinfo(res);
30158f0484fSRodney W. Grimes 	return (s);
30258f0484fSRodney W. Grimes bad2:
30358f0484fSRodney W. Grimes 	if (lport)
3049233c4d9SJason Evans 		(void)_close(*fd2p);
30558f0484fSRodney W. Grimes bad:
3069233c4d9SJason Evans 	(void)_close(s);
307bd6060a1SKonstantin Belousov 	__libc_sigprocmask(SIG_SETMASK, (const sigset_t *)&oldmask, NULL);
30842b4f28eSYoshinobu Inoue 	freeaddrinfo(res);
30958f0484fSRodney W. Grimes 	return (-1);
31058f0484fSRodney W. Grimes }
31158f0484fSRodney W. Grimes 
31258f0484fSRodney W. Grimes int
rresvport(int * port)3133ba5ea24SCraig Rodrigues rresvport(int *port)
31458f0484fSRodney W. Grimes {
31542b4f28eSYoshinobu Inoue 	return rresvport_af(port, AF_INET);
31642b4f28eSYoshinobu Inoue }
31758f0484fSRodney W. Grimes 
31842b4f28eSYoshinobu Inoue int
rresvport_af(int * alport,int family)3193ba5ea24SCraig Rodrigues rresvport_af(int *alport, int family)
32042b4f28eSYoshinobu Inoue {
3216d7bd75aSJacques Vidrine 	int s;
32242b4f28eSYoshinobu Inoue 	struct sockaddr_storage ss;
32342b4f28eSYoshinobu Inoue 	u_short *sport;
32442b4f28eSYoshinobu Inoue 
32542b4f28eSYoshinobu Inoue 	memset(&ss, 0, sizeof(ss));
32642b4f28eSYoshinobu Inoue 	ss.ss_family = family;
32742b4f28eSYoshinobu Inoue 	switch (family) {
32842b4f28eSYoshinobu Inoue 	case AF_INET:
32942b4f28eSYoshinobu Inoue 		((struct sockaddr *)&ss)->sa_len = sizeof(struct sockaddr_in);
33042b4f28eSYoshinobu Inoue 		sport = &((struct sockaddr_in *)&ss)->sin_port;
33142b4f28eSYoshinobu Inoue 		((struct sockaddr_in *)&ss)->sin_addr.s_addr = INADDR_ANY;
33242b4f28eSYoshinobu Inoue 		break;
33342b4f28eSYoshinobu Inoue #ifdef INET6
33442b4f28eSYoshinobu Inoue 	case AF_INET6:
33542b4f28eSYoshinobu Inoue 		((struct sockaddr *)&ss)->sa_len = sizeof(struct sockaddr_in6);
33642b4f28eSYoshinobu Inoue 		sport = &((struct sockaddr_in6 *)&ss)->sin6_port;
33742b4f28eSYoshinobu Inoue 		((struct sockaddr_in6 *)&ss)->sin6_addr = in6addr_any;
33842b4f28eSYoshinobu Inoue 		break;
33942b4f28eSYoshinobu Inoue #endif
34042b4f28eSYoshinobu Inoue 	default:
34142b4f28eSYoshinobu Inoue 		errno = EAFNOSUPPORT;
34242b4f28eSYoshinobu Inoue 		return -1;
34342b4f28eSYoshinobu Inoue 	}
34442b4f28eSYoshinobu Inoue 
345d201fe46SDaniel Eischen 	s = _socket(ss.ss_family, SOCK_STREAM, 0);
34658f0484fSRodney W. Grimes 	if (s < 0)
34758f0484fSRodney W. Grimes 		return (-1);
348ce70b6caSPeter Wemm #if 0 /* compat_exact_traditional_rresvport_semantics */
349ce70b6caSPeter Wemm 	sin.sin_port = htons((u_short)*alport);
350d201fe46SDaniel Eischen 	if (_bind(s, (struct sockaddr *)&sin, sizeof(sin)) >= 0)
35158f0484fSRodney W. Grimes 		return (s);
352ce70b6caSPeter Wemm 	if (errno != EADDRINUSE) {
3539233c4d9SJason Evans 		(void)_close(s);
35458f0484fSRodney W. Grimes 		return (-1);
35558f0484fSRodney W. Grimes 	}
356ce70b6caSPeter Wemm #endif
35742b4f28eSYoshinobu Inoue 	*sport = 0;
358ae42b666SYoshinobu Inoue 	if (bindresvport_sa(s, (struct sockaddr *)&ss) == -1) {
3599233c4d9SJason Evans 		(void)_close(s);
360ce70b6caSPeter Wemm 		return (-1);
361ce70b6caSPeter Wemm 	}
36242b4f28eSYoshinobu Inoue 	*alport = (int)ntohs(*sport);
363ce70b6caSPeter Wemm 	return (s);
364ce70b6caSPeter Wemm }
36558f0484fSRodney W. Grimes 
36658f0484fSRodney W. Grimes int	__check_rhosts_file = 1;
36758f0484fSRodney W. Grimes char	*__rcmd_errstr;
36858f0484fSRodney W. Grimes 
36958f0484fSRodney W. Grimes int
ruserok(const char * rhost,int superuser,const char * ruser,const char * luser)3703ba5ea24SCraig Rodrigues ruserok(const char *rhost, int superuser, const char *ruser, const char *luser)
37158f0484fSRodney W. Grimes {
372e3be4d7bSYoshinobu Inoue 	struct addrinfo hints, *res, *r;
373e3be4d7bSYoshinobu Inoue 	int error;
37442b4f28eSYoshinobu Inoue 
375e3be4d7bSYoshinobu Inoue 	memset(&hints, 0, sizeof(hints));
376e3be4d7bSYoshinobu Inoue 	hints.ai_family = PF_UNSPEC;
377e3be4d7bSYoshinobu Inoue 	hints.ai_socktype = SOCK_DGRAM;	/*dummy*/
378e3be4d7bSYoshinobu Inoue 	error = getaddrinfo(rhost, "0", &hints, &res);
379e3be4d7bSYoshinobu Inoue 	if (error)
38058f0484fSRodney W. Grimes 		return (-1);
381e3be4d7bSYoshinobu Inoue 
382e3be4d7bSYoshinobu Inoue 	for (r = res; r; r = r->ai_next) {
383e3be4d7bSYoshinobu Inoue 		if (iruserok_sa(r->ai_addr, r->ai_addrlen, superuser, ruser,
384e3be4d7bSYoshinobu Inoue 		    luser) == 0) {
385e3be4d7bSYoshinobu Inoue 			freeaddrinfo(res);
386e3be4d7bSYoshinobu Inoue 			return (0);
38742b4f28eSYoshinobu Inoue 		}
38842b4f28eSYoshinobu Inoue 	}
389e3be4d7bSYoshinobu Inoue 	freeaddrinfo(res);
390e3be4d7bSYoshinobu Inoue 	return (-1);
39158f0484fSRodney W. Grimes }
39258f0484fSRodney W. Grimes 
39358f0484fSRodney W. Grimes /*
39458f0484fSRodney W. Grimes  * New .rhosts strategy: We are passed an ip address. We spin through
39558f0484fSRodney W. Grimes  * hosts.equiv and .rhosts looking for a match. When the .rhosts only
39658f0484fSRodney W. Grimes  * has ip addresses, we don't have to trust a nameserver.  When it
39758f0484fSRodney W. Grimes  * contains hostnames, we spin through the list of addresses the nameserver
39858f0484fSRodney W. Grimes  * gives us and look for a match.
39958f0484fSRodney W. Grimes  *
40058f0484fSRodney W. Grimes  * Returns 0 if ok, -1 if not ok.
40158f0484fSRodney W. Grimes  */
40258f0484fSRodney W. Grimes int
iruserok(unsigned long raddr,int superuser,const char * ruser,const char * luser)4033ba5ea24SCraig Rodrigues iruserok(unsigned long raddr, int superuser, const char *ruser, const char *luser)
40458f0484fSRodney W. Grimes {
405eb74b996SHajimu UMEMOTO 	struct sockaddr_in sin;
406eb74b996SHajimu UMEMOTO 
407eb74b996SHajimu UMEMOTO 	memset(&sin, 0, sizeof(sin));
408eb74b996SHajimu UMEMOTO 	sin.sin_family = AF_INET;
409eb74b996SHajimu UMEMOTO 	sin.sin_len = sizeof(struct sockaddr_in);
410eb74b996SHajimu UMEMOTO 	memcpy(&sin.sin_addr, &raddr, sizeof(sin.sin_addr));
411eb74b996SHajimu UMEMOTO 	return iruserok_sa((struct sockaddr *)&sin, sin.sin_len, superuser,
412eb74b996SHajimu UMEMOTO 		ruser, luser);
41342b4f28eSYoshinobu Inoue }
41442b4f28eSYoshinobu Inoue 
415eb74b996SHajimu UMEMOTO /*
416eb74b996SHajimu UMEMOTO  * AF independent extension of iruserok.
417eb74b996SHajimu UMEMOTO  *
418eb74b996SHajimu UMEMOTO  * Returns 0 if ok, -1 if not ok.
419eb74b996SHajimu UMEMOTO  */
420eb74b996SHajimu UMEMOTO int
iruserok_sa(const void * ra,int rlen,int superuser,const char * ruser,const char * luser)4213ba5ea24SCraig Rodrigues iruserok_sa(const void *ra, int rlen, int superuser, const char *ruser,
4223ba5ea24SCraig Rodrigues     const char *luser)
42342b4f28eSYoshinobu Inoue {
4248fb3f3f6SDavid E. O'Brien 	char *cp;
42558f0484fSRodney W. Grimes 	struct stat sbuf;
42658f0484fSRodney W. Grimes 	struct passwd *pwd;
42758f0484fSRodney W. Grimes 	FILE *hostf;
42858f0484fSRodney W. Grimes 	uid_t uid;
42958f0484fSRodney W. Grimes 	int first;
43058f0484fSRodney W. Grimes 	char pbuf[MAXPATHLEN];
431eb74b996SHajimu UMEMOTO 	const struct sockaddr *raddr;
432eb74b996SHajimu UMEMOTO 	struct sockaddr_storage ss;
43342b4f28eSYoshinobu Inoue 
434eb74b996SHajimu UMEMOTO 	/* avoid alignment issue */
43551d7f2edSMark Johnston 	if (rlen <= 0 || rlen > sizeof(ss))
436eb74b996SHajimu UMEMOTO 		return (-1);
437eb74b996SHajimu UMEMOTO 	memcpy(&ss, ra, rlen);
438eb74b996SHajimu UMEMOTO 	raddr = (struct sockaddr *)&ss;
43958f0484fSRodney W. Grimes 
44058f0484fSRodney W. Grimes 	first = 1;
441a93705b0SJilles Tjoelker 	hostf = superuser ? NULL : fopen(_PATH_HEQUIV, "re");
44258f0484fSRodney W. Grimes again:
44358f0484fSRodney W. Grimes 	if (hostf) {
444eb74b996SHajimu UMEMOTO 		if (__ivaliduser_sa(hostf, raddr, rlen, luser, ruser) == 0) {
44558f0484fSRodney W. Grimes 			(void)fclose(hostf);
44658f0484fSRodney W. Grimes 			return (0);
44758f0484fSRodney W. Grimes 		}
44858f0484fSRodney W. Grimes 		(void)fclose(hostf);
44958f0484fSRodney W. Grimes 	}
45058f0484fSRodney W. Grimes 	if (first == 1 && (__check_rhosts_file || superuser)) {
45158f0484fSRodney W. Grimes 		first = 0;
45258f0484fSRodney W. Grimes 		if ((pwd = getpwnam(luser)) == NULL)
45358f0484fSRodney W. Grimes 			return (-1);
45490ceddb1SWarner Losh 		(void)strlcpy(pbuf, pwd->pw_dir, sizeof(pbuf));
45590ceddb1SWarner Losh 		(void)strlcat(pbuf, "/.rhosts", sizeof(pbuf));
45658f0484fSRodney W. Grimes 
45758f0484fSRodney W. Grimes 		/*
45858f0484fSRodney W. Grimes 		 * Change effective uid while opening .rhosts.  If root and
45958f0484fSRodney W. Grimes 		 * reading an NFS mounted file system, can't read files that
46058f0484fSRodney W. Grimes 		 * are protected read/write owner only.
46158f0484fSRodney W. Grimes 		 */
46258f0484fSRodney W. Grimes 		uid = geteuid();
46358f0484fSRodney W. Grimes 		(void)seteuid(pwd->pw_uid);
464a93705b0SJilles Tjoelker 		hostf = fopen(pbuf, "re");
46558f0484fSRodney W. Grimes 		(void)seteuid(uid);
46658f0484fSRodney W. Grimes 
46758f0484fSRodney W. Grimes 		if (hostf == NULL)
46858f0484fSRodney W. Grimes 			return (-1);
46958f0484fSRodney W. Grimes 		/*
47058f0484fSRodney W. Grimes 		 * If not a regular file, or is owned by someone other than
47158f0484fSRodney W. Grimes 		 * user or root or if writeable by anyone but the owner, quit.
47258f0484fSRodney W. Grimes 		 */
47358f0484fSRodney W. Grimes 		cp = NULL;
47458f0484fSRodney W. Grimes 		if (lstat(pbuf, &sbuf) < 0)
47558f0484fSRodney W. Grimes 			cp = ".rhosts lstat failed";
47658f0484fSRodney W. Grimes 		else if (!S_ISREG(sbuf.st_mode))
47758f0484fSRodney W. Grimes 			cp = ".rhosts not regular file";
478d201fe46SDaniel Eischen 		else if (_fstat(fileno(hostf), &sbuf) < 0)
47958f0484fSRodney W. Grimes 			cp = ".rhosts fstat failed";
48058f0484fSRodney W. Grimes 		else if (sbuf.st_uid && sbuf.st_uid != pwd->pw_uid)
48158f0484fSRodney W. Grimes 			cp = "bad .rhosts owner";
48258f0484fSRodney W. Grimes 		else if (sbuf.st_mode & (S_IWGRP|S_IWOTH))
48358f0484fSRodney W. Grimes 			cp = ".rhosts writeable by other than owner";
48458f0484fSRodney W. Grimes 		/* If there were any problems, quit. */
48558f0484fSRodney W. Grimes 		if (cp) {
48658f0484fSRodney W. Grimes 			__rcmd_errstr = cp;
48758f0484fSRodney W. Grimes 			(void)fclose(hostf);
48858f0484fSRodney W. Grimes 			return (-1);
48958f0484fSRodney W. Grimes 		}
49058f0484fSRodney W. Grimes 		goto again;
49158f0484fSRodney W. Grimes 	}
49258f0484fSRodney W. Grimes 	return (-1);
49358f0484fSRodney W. Grimes }
49458f0484fSRodney W. Grimes 
49558f0484fSRodney W. Grimes /*
49658f0484fSRodney W. Grimes  * XXX
49758f0484fSRodney W. Grimes  * Don't make static, used by lpd(8).
49858f0484fSRodney W. Grimes  *
49958f0484fSRodney W. Grimes  * Returns 0 if ok, -1 if not ok.
50058f0484fSRodney W. Grimes  */
50158f0484fSRodney W. Grimes int
__ivaliduser(FILE * hostf,u_int32_t raddr,const char * luser,const char * ruser)5023ba5ea24SCraig Rodrigues __ivaliduser(FILE *hostf, u_int32_t raddr, const char *luser, const char *ruser)
50358f0484fSRodney W. Grimes {
504eb74b996SHajimu UMEMOTO 	struct sockaddr_in sin;
505eb74b996SHajimu UMEMOTO 
506eb74b996SHajimu UMEMOTO 	memset(&sin, 0, sizeof(sin));
507eb74b996SHajimu UMEMOTO 	sin.sin_family = AF_INET;
508eb74b996SHajimu UMEMOTO 	sin.sin_len = sizeof(struct sockaddr_in);
509eb74b996SHajimu UMEMOTO 	memcpy(&sin.sin_addr, &raddr, sizeof(sin.sin_addr));
510eb74b996SHajimu UMEMOTO 	return __ivaliduser_sa(hostf, (struct sockaddr *)&sin, sin.sin_len,
511eb74b996SHajimu UMEMOTO 		luser, ruser);
51242b4f28eSYoshinobu Inoue }
51342b4f28eSYoshinobu Inoue 
514eb74b996SHajimu UMEMOTO /*
515eb74b996SHajimu UMEMOTO  * Returns 0 if ok, -1 if not ok.
516eb74b996SHajimu UMEMOTO  *
517eb74b996SHajimu UMEMOTO  * XXX obsolete API.
518eb74b996SHajimu UMEMOTO  */
51942b4f28eSYoshinobu Inoue int
__ivaliduser_af(FILE * hostf,const void * raddr,const char * luser,const char * ruser,int af,int len)5203ba5ea24SCraig Rodrigues __ivaliduser_af(FILE *hostf, const void *raddr, const char *luser,
5213ba5ea24SCraig Rodrigues     const char *ruser, int af, int len)
52242b4f28eSYoshinobu Inoue {
523eb74b996SHajimu UMEMOTO 	struct sockaddr *sa = NULL;
524eb74b996SHajimu UMEMOTO 	struct sockaddr_in *sin = NULL;
525eb74b996SHajimu UMEMOTO #ifdef INET6
526eb74b996SHajimu UMEMOTO 	struct sockaddr_in6 *sin6 = NULL;
527eb74b996SHajimu UMEMOTO #endif
528eb74b996SHajimu UMEMOTO 	struct sockaddr_storage ss;
529eb74b996SHajimu UMEMOTO 
530eb74b996SHajimu UMEMOTO 	memset(&ss, 0, sizeof(ss));
531eb74b996SHajimu UMEMOTO 	switch (af) {
532eb74b996SHajimu UMEMOTO 	case AF_INET:
533eb74b996SHajimu UMEMOTO 		if (len != sizeof(sin->sin_addr))
534eb74b996SHajimu UMEMOTO 			return -1;
535eb74b996SHajimu UMEMOTO 		sin = (struct sockaddr_in *)&ss;
536eb74b996SHajimu UMEMOTO 		sin->sin_family = AF_INET;
537eb74b996SHajimu UMEMOTO 		sin->sin_len = sizeof(struct sockaddr_in);
538eb74b996SHajimu UMEMOTO 		memcpy(&sin->sin_addr, raddr, sizeof(sin->sin_addr));
539eb74b996SHajimu UMEMOTO 		break;
540eb74b996SHajimu UMEMOTO #ifdef INET6
541eb74b996SHajimu UMEMOTO 	case AF_INET6:
542eb74b996SHajimu UMEMOTO 		if (len != sizeof(sin6->sin6_addr))
543eb74b996SHajimu UMEMOTO 			return -1;
544eb74b996SHajimu UMEMOTO 		/* you will lose scope info */
545eb74b996SHajimu UMEMOTO 		sin6 = (struct sockaddr_in6 *)&ss;
546eb74b996SHajimu UMEMOTO 		sin6->sin6_family = AF_INET6;
547eb74b996SHajimu UMEMOTO 		sin6->sin6_len = sizeof(struct sockaddr_in6);
548eb74b996SHajimu UMEMOTO 		memcpy(&sin6->sin6_addr, raddr, sizeof(sin6->sin6_addr));
549eb74b996SHajimu UMEMOTO 		break;
550eb74b996SHajimu UMEMOTO #endif
551eb74b996SHajimu UMEMOTO 	default:
552eb74b996SHajimu UMEMOTO 		return -1;
553eb74b996SHajimu UMEMOTO 	}
554eb74b996SHajimu UMEMOTO 
555eb74b996SHajimu UMEMOTO 	sa = (struct sockaddr *)&ss;
556eb74b996SHajimu UMEMOTO 	return __ivaliduser_sa(hostf, sa, sa->sa_len, luser, ruser);
557eb74b996SHajimu UMEMOTO }
558eb74b996SHajimu UMEMOTO 
559eb74b996SHajimu UMEMOTO int
__ivaliduser_sa(FILE * hostf,const struct sockaddr * raddr,socklen_t salen,const char * luser,const char * ruser)5603ba5ea24SCraig Rodrigues __ivaliduser_sa(FILE *hostf, const struct sockaddr *raddr, socklen_t salen,
5613ba5ea24SCraig Rodrigues     const char *luser, const char *ruser)
562eb74b996SHajimu UMEMOTO {
5638fb3f3f6SDavid E. O'Brien 	char *user, *p;
56458f0484fSRodney W. Grimes 	int ch;
56558f0484fSRodney W. Grimes 	char buf[MAXHOSTNAMELEN + 128];		/* host + login */
56697cb5094SBill Paul 	char hname[MAXHOSTNAMELEN];
5678538335fSBill Paul 	/* Presumed guilty until proven innocent. */
5688538335fSBill Paul 	int userok = 0, hostok = 0;
5691e890b05SBill Paul #ifdef YP
5701e890b05SBill Paul 	char *ypdomain;
5718538335fSBill Paul 
5721e890b05SBill Paul 	if (yp_get_default_domain(&ypdomain))
5731e890b05SBill Paul 		ypdomain = NULL;
5741e890b05SBill Paul #else
5751e890b05SBill Paul #define	ypdomain NULL
5761e890b05SBill Paul #endif
5778538335fSBill Paul 	/* We need to get the damn hostname back for netgroup matching. */
578eb74b996SHajimu UMEMOTO 	if (getnameinfo(raddr, salen, hname, sizeof(hname), NULL, 0,
579eb74b996SHajimu UMEMOTO 			NI_NAMEREQD) != 0)
580c97c8f4aSJohn Polstra 		hname[0] = '\0';
58158f0484fSRodney W. Grimes 
58258f0484fSRodney W. Grimes 	while (fgets(buf, sizeof(buf), hostf)) {
58358f0484fSRodney W. Grimes 		p = buf;
58458f0484fSRodney W. Grimes 		/* Skip lines that are too long. */
585a9f9141cSBrian S. Dean 		if (strchr(p, '\n') == NULL) {
58658f0484fSRodney W. Grimes 			while ((ch = getc(hostf)) != '\n' && ch != EOF);
58758f0484fSRodney W. Grimes 			continue;
58858f0484fSRodney W. Grimes 		}
589acc7e87cSPeter Wemm 		if (*p == '\n' || *p == '#') {
590acc7e87cSPeter Wemm 			/* comment... */
591acc7e87cSPeter Wemm 			continue;
592acc7e87cSPeter Wemm 		}
59358f0484fSRodney W. Grimes 		while (*p != '\n' && *p != ' ' && *p != '\t' && *p != '\0') {
5943fb85bffSAndrey A. Chernov 			*p = isupper((unsigned char)*p) ? tolower((unsigned char)*p) : *p;
59558f0484fSRodney W. Grimes 			p++;
59658f0484fSRodney W. Grimes 		}
59758f0484fSRodney W. Grimes 		if (*p == ' ' || *p == '\t') {
59858f0484fSRodney W. Grimes 			*p++ = '\0';
59958f0484fSRodney W. Grimes 			while (*p == ' ' || *p == '\t')
60058f0484fSRodney W. Grimes 				p++;
60158f0484fSRodney W. Grimes 			user = p;
60258f0484fSRodney W. Grimes 			while (*p != '\n' && *p != ' ' &&
60358f0484fSRodney W. Grimes 			    *p != '\t' && *p != '\0')
60458f0484fSRodney W. Grimes 				p++;
60558f0484fSRodney W. Grimes 		} else
60658f0484fSRodney W. Grimes 			user = p;
60758f0484fSRodney W. Grimes 		*p = '\0';
6088538335fSBill Paul 		/*
6098538335fSBill Paul 		 * Do +/- and +@/-@ checking. This looks really nasty,
6108538335fSBill Paul 		 * but it matches SunOS's behavior so far as I can tell.
6118538335fSBill Paul 		 */
6128538335fSBill Paul 		switch(buf[0]) {
6138538335fSBill Paul 		case '+':
6148538335fSBill Paul 			if (!buf[1]) {     /* '+' matches all hosts */
6158538335fSBill Paul 				hostok = 1;
6168538335fSBill Paul 				break;
61758f0484fSRodney W. Grimes 			}
6188538335fSBill Paul 			if (buf[1] == '@')  /* match a host by netgroup */
619c97c8f4aSJohn Polstra 				hostok = hname[0] != '\0' &&
620c97c8f4aSJohn Polstra 				    innetgr(&buf[2], hname, NULL, ypdomain);
6218538335fSBill Paul 			else		/* match a host by addr */
622eb74b996SHajimu UMEMOTO 				hostok = __icheckhost(raddr, salen,
623eb74b996SHajimu UMEMOTO 						      (char *)&buf[1]);
6248538335fSBill Paul 			break;
6258538335fSBill Paul 		case '-':     /* reject '-' hosts and all their users */
6268538335fSBill Paul 			if (buf[1] == '@') {
627c97c8f4aSJohn Polstra 				if (hname[0] == '\0' ||
628c97c8f4aSJohn Polstra 				    innetgr(&buf[2], hname, NULL, ypdomain))
6298538335fSBill Paul 					return(-1);
6308538335fSBill Paul 			} else {
631eb74b996SHajimu UMEMOTO 				if (__icheckhost(raddr, salen,
632eb74b996SHajimu UMEMOTO 						 (char *)&buf[1]))
6338538335fSBill Paul 					return(-1);
6348538335fSBill Paul 			}
6358538335fSBill Paul 			break;
6368538335fSBill Paul 		default:  /* if no '+' or '-', do a simple match */
637eb74b996SHajimu UMEMOTO 			hostok = __icheckhost(raddr, salen, buf);
6388538335fSBill Paul 			break;
6398538335fSBill Paul 		}
6408538335fSBill Paul 		switch(*user) {
6418538335fSBill Paul 		case '+':
6428538335fSBill Paul 			if (!*(user+1)) {      /* '+' matches all users */
6438538335fSBill Paul 				userok = 1;
6448538335fSBill Paul 				break;
6458538335fSBill Paul 			}
6468538335fSBill Paul 			if (*(user+1) == '@')  /* match a user by netgroup */
6471e890b05SBill Paul 				userok = innetgr(user+2, NULL, ruser, ypdomain);
6488538335fSBill Paul 			else	   /* match a user by direct specification */
6498538335fSBill Paul 				userok = !(strcmp(ruser, user+1));
6508538335fSBill Paul 			break;
6518538335fSBill Paul 		case '-': 		/* if we matched a hostname, */
6528538335fSBill Paul 			if (hostok) {   /* check for user field rejections */
6538538335fSBill Paul 				if (!*(user+1))
6548538335fSBill Paul 					return(-1);
6558538335fSBill Paul 				if (*(user+1) == '@') {
6568538335fSBill Paul 					if (innetgr(user+2, NULL,
6571e890b05SBill Paul 							ruser, ypdomain))
6588538335fSBill Paul 						return(-1);
6598538335fSBill Paul 				} else {
6608538335fSBill Paul 					if (!strcmp(ruser, user+1))
6618538335fSBill Paul 						return(-1);
6628538335fSBill Paul 				}
6638538335fSBill Paul 			}
6648538335fSBill Paul 			break;
6658538335fSBill Paul 		default:	/* no rejections: try to match the user */
6668538335fSBill Paul 			if (hostok)
6678538335fSBill Paul 				userok = !(strcmp(ruser,*user ? user : luser));
6688538335fSBill Paul 			break;
6698538335fSBill Paul 		}
6708538335fSBill Paul 		if (hostok && userok)
6718538335fSBill Paul 			return(0);
67258f0484fSRodney W. Grimes 	}
67358f0484fSRodney W. Grimes 	return (-1);
67458f0484fSRodney W. Grimes }
67558f0484fSRodney W. Grimes 
67658f0484fSRodney W. Grimes /*
67758f0484fSRodney W. Grimes  * Returns "true" if match, 0 if no match.
67858f0484fSRodney W. Grimes  */
67958f0484fSRodney W. Grimes static int
__icheckhost(const struct sockaddr * raddr,socklen_t salen,const char * lhost)6803ba5ea24SCraig Rodrigues __icheckhost(const struct sockaddr *raddr, socklen_t salen, const char *lhost)
68158f0484fSRodney W. Grimes {
682eb74b996SHajimu UMEMOTO 	struct sockaddr_in sin;
683eb74b996SHajimu UMEMOTO 	struct sockaddr_in6 *sin6;
684eb74b996SHajimu UMEMOTO 	struct addrinfo hints, *res, *r;
685eb74b996SHajimu UMEMOTO 	int error;
686eb74b996SHajimu UMEMOTO 	char h1[NI_MAXHOST], h2[NI_MAXHOST];
68758f0484fSRodney W. Grimes 
688eb74b996SHajimu UMEMOTO 	if (raddr->sa_family == AF_INET6) {
689eb74b996SHajimu UMEMOTO 		sin6 = (struct sockaddr_in6 *)raddr;
690eb74b996SHajimu UMEMOTO 		if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) {
691eb74b996SHajimu UMEMOTO 			memset(&sin, 0, sizeof(sin));
692eb74b996SHajimu UMEMOTO 			sin.sin_family = AF_INET;
693eb74b996SHajimu UMEMOTO 			sin.sin_len = sizeof(struct sockaddr_in);
694eb74b996SHajimu UMEMOTO 			memcpy(&sin.sin_addr, &sin6->sin6_addr.s6_addr[12],
695eb74b996SHajimu UMEMOTO 			       sizeof(sin.sin_addr));
696eb74b996SHajimu UMEMOTO 			raddr = (struct sockaddr *)&sin;
697eb74b996SHajimu UMEMOTO 			salen = sin.sin_len;
698eb74b996SHajimu UMEMOTO 		}
699eb74b996SHajimu UMEMOTO 	}
700eb74b996SHajimu UMEMOTO 
701eb74b996SHajimu UMEMOTO 	h1[0] = '\0';
702eb74b996SHajimu UMEMOTO 	if (getnameinfo(raddr, salen, h1, sizeof(h1), NULL, 0,
7034f101318SHajimu UMEMOTO 			NI_NUMERICHOST) != 0)
704eb74b996SHajimu UMEMOTO 		return (0);
705eb74b996SHajimu UMEMOTO 
706eb74b996SHajimu UMEMOTO 	/* Resolve laddr into sockaddr */
707eb74b996SHajimu UMEMOTO 	memset(&hints, 0, sizeof(hints));
708eb74b996SHajimu UMEMOTO 	hints.ai_family = raddr->sa_family;
709eb74b996SHajimu UMEMOTO 	hints.ai_socktype = SOCK_DGRAM;	/*XXX dummy*/
710eb74b996SHajimu UMEMOTO 	res = NULL;
711eb74b996SHajimu UMEMOTO 	error = getaddrinfo(lhost, "0", &hints, &res);
712eb74b996SHajimu UMEMOTO 	if (error)
713eb74b996SHajimu UMEMOTO 		return (0);
714eb74b996SHajimu UMEMOTO 
715eb74b996SHajimu UMEMOTO 	for (r = res; r ; r = r->ai_next) {
716eb74b996SHajimu UMEMOTO 		h2[0] = '\0';
717eb74b996SHajimu UMEMOTO 		if (getnameinfo(r->ai_addr, r->ai_addrlen, h2, sizeof(h2),
7184f101318SHajimu UMEMOTO 				NULL, 0, NI_NUMERICHOST) != 0)
719eb74b996SHajimu UMEMOTO 			continue;
720eb74b996SHajimu UMEMOTO 		if (strcmp(h1, h2) == 0) {
721eb74b996SHajimu UMEMOTO 			freeaddrinfo(res);
72242b4f28eSYoshinobu Inoue 			return (1);
723eb74b996SHajimu UMEMOTO 		}
72442b4f28eSYoshinobu Inoue 	}
72558f0484fSRodney W. Grimes 
726eb74b996SHajimu UMEMOTO 	/* No match. */
727eb74b996SHajimu UMEMOTO 	freeaddrinfo(res);
72858f0484fSRodney W. Grimes 	return (0);
72958f0484fSRodney W. Grimes }
730