1994-09-25 02:12:49 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1994, Garrett Wollman
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2002-03-22 21:53:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-09-25 02:12:49 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
1999-01-25 03:26:45 +00:00
|
|
|
#include <arpa/nameser.h>
|
1994-09-25 02:12:49 +00:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <stdio.h>
|
1996-07-12 18:57:58 +00:00
|
|
|
#include <stdlib.h>
|
1994-09-25 02:12:49 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <nsswitch.h>
|
2005-04-30 18:37:35 +00:00
|
|
|
#include <resolv.h> /* XXX */
|
1996-03-16 21:25:59 +00:00
|
|
|
#ifdef YP
|
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#include <rpcsvc/yp_prot.h>
|
|
|
|
#include <rpcsvc/ypclnt.h>
|
|
|
|
#endif
|
2005-04-28 18:03:43 +00:00
|
|
|
#include "netdb_private.h"
|
1994-09-25 02:12:49 +00:00
|
|
|
|
|
|
|
#ifdef YP
|
2005-04-28 18:03:43 +00:00
|
|
|
static int
|
|
|
|
_gethostbynis(const char *name, char *map, int af, struct hostent *he,
|
2005-04-30 20:07:01 +00:00
|
|
|
struct hostent_data *hed)
|
1994-09-25 02:12:49 +00:00
|
|
|
{
|
2005-04-28 18:03:43 +00:00
|
|
|
char *p, *bp, *ep;
|
2002-03-21 18:49:23 +00:00
|
|
|
char *cp, **q;
|
1994-09-25 02:12:49 +00:00
|
|
|
char *result;
|
2005-04-26 14:55:47 +00:00
|
|
|
int resultlen, size, addrok = 0;
|
2005-04-28 18:03:43 +00:00
|
|
|
char ypbuf[YPMAXRECORD + 2];
|
2006-04-15 16:20:27 +00:00
|
|
|
res_state statp;
|
1994-09-25 02:12:49 +00:00
|
|
|
|
2006-04-15 16:20:27 +00:00
|
|
|
statp = __res_state();
|
1996-08-29 20:08:19 +00:00
|
|
|
switch(af) {
|
|
|
|
case AF_INET:
|
1999-01-25 03:26:45 +00:00
|
|
|
size = NS_INADDRSZ;
|
1996-08-29 20:08:19 +00:00
|
|
|
break;
|
|
|
|
case AF_INET6:
|
1999-01-25 03:26:45 +00:00
|
|
|
size = NS_IN6ADDRSZ;
|
2005-04-26 14:55:47 +00:00
|
|
|
break;
|
|
|
|
default:
|
1996-08-29 20:08:19 +00:00
|
|
|
errno = EAFNOSUPPORT;
|
2006-04-15 16:20:27 +00:00
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
return (-1);
|
1996-08-29 20:08:19 +00:00
|
|
|
}
|
|
|
|
|
2005-04-28 18:03:43 +00:00
|
|
|
if (hed->yp_domain == (char *)NULL)
|
|
|
|
if (yp_get_default_domain (&hed->yp_domain)) {
|
2006-04-15 16:20:27 +00:00
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
return (-1);
|
2000-09-10 19:06:05 +00:00
|
|
|
}
|
1994-09-25 02:12:49 +00:00
|
|
|
|
2005-04-28 18:03:43 +00:00
|
|
|
if (yp_match(hed->yp_domain, map, name, strlen(name), &result,
|
|
|
|
&resultlen)) {
|
2006-04-15 16:20:27 +00:00
|
|
|
RES_SET_H_ERRNO(statp, HOST_NOT_FOUND);
|
|
|
|
return (-1);
|
2000-09-10 19:06:05 +00:00
|
|
|
}
|
1994-09-25 02:12:49 +00:00
|
|
|
|
1996-03-16 21:25:59 +00:00
|
|
|
/* avoid potential memory leak */
|
|
|
|
bcopy((char *)result, (char *)&ypbuf, resultlen);
|
1996-12-24 17:01:49 +00:00
|
|
|
ypbuf[resultlen] = '\0';
|
1996-03-16 21:25:59 +00:00
|
|
|
free(result);
|
|
|
|
result = (char *)&ypbuf;
|
|
|
|
|
1994-09-25 02:12:49 +00:00
|
|
|
if ((cp = index(result, '\n')))
|
|
|
|
*cp = '\0';
|
|
|
|
|
|
|
|
cp = strpbrk(result, " \t");
|
|
|
|
*cp++ = '\0';
|
2005-04-28 18:03:43 +00:00
|
|
|
he->h_addr_list = hed->h_addr_ptrs;
|
|
|
|
he->h_addr = (char *)hed->host_addr;
|
2005-04-26 14:55:47 +00:00
|
|
|
switch (af) {
|
|
|
|
case AF_INET:
|
2005-04-28 18:03:43 +00:00
|
|
|
addrok = inet_aton(result, (struct in_addr *)hed->host_addr);
|
2005-04-30 18:37:35 +00:00
|
|
|
if (addrok != 1)
|
|
|
|
break;
|
2006-04-15 16:20:27 +00:00
|
|
|
if (statp->options & RES_USE_INET6) {
|
2005-04-30 18:37:35 +00:00
|
|
|
_map_v4v6_address((char *)hed->host_addr,
|
|
|
|
(char *)hed->host_addr);
|
|
|
|
af = AF_INET6;
|
|
|
|
size = NS_IN6ADDRSZ;
|
|
|
|
}
|
2005-04-26 14:55:47 +00:00
|
|
|
break;
|
|
|
|
case AF_INET6:
|
2005-04-28 18:03:43 +00:00
|
|
|
addrok = inet_pton(af, result, hed->host_addr);
|
2005-04-26 14:55:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (addrok != 1) {
|
2006-04-15 16:20:27 +00:00
|
|
|
RES_SET_H_ERRNO(statp, HOST_NOT_FOUND);
|
|
|
|
return (-1);
|
2005-04-26 14:55:47 +00:00
|
|
|
}
|
2005-04-28 18:03:43 +00:00
|
|
|
he->h_addr_list[1] = NULL;
|
|
|
|
he->h_length = size;
|
|
|
|
he->h_addrtype = af;
|
1994-09-25 02:12:49 +00:00
|
|
|
while (*cp == ' ' || *cp == '\t')
|
|
|
|
cp++;
|
2005-04-28 18:03:43 +00:00
|
|
|
bp = hed->hostbuf;
|
|
|
|
ep = hed->hostbuf + sizeof hed->hostbuf;
|
|
|
|
he->h_name = bp;
|
|
|
|
q = he->h_aliases = hed->host_aliases;
|
|
|
|
p = strpbrk(cp, " \t");
|
|
|
|
if (p != NULL)
|
|
|
|
*p++ = '\0';
|
|
|
|
size = strlen(cp) + 1;
|
|
|
|
if (ep - bp < size) {
|
2006-04-15 16:20:27 +00:00
|
|
|
RES_SET_H_ERRNO(statp, NO_RECOVERY);
|
|
|
|
return (-1);
|
2005-04-28 18:03:43 +00:00
|
|
|
}
|
|
|
|
strlcpy(bp, cp, ep - bp);
|
|
|
|
bp += size;
|
|
|
|
cp = p;
|
1994-09-25 02:12:49 +00:00
|
|
|
while (cp && *cp) {
|
|
|
|
if (*cp == ' ' || *cp == '\t') {
|
|
|
|
cp++;
|
|
|
|
continue;
|
|
|
|
}
|
2005-04-28 18:03:43 +00:00
|
|
|
if (q >= &hed->host_aliases[_MAXALIASES - 1])
|
|
|
|
break;
|
|
|
|
p = strpbrk(cp, " \t");
|
|
|
|
if (p != NULL)
|
|
|
|
*p++ = '\0';
|
|
|
|
size = strlen(cp) + 1;
|
|
|
|
if (ep - bp < size)
|
|
|
|
break;
|
|
|
|
strlcpy(bp, cp, ep - bp);
|
|
|
|
*q++ = bp;
|
|
|
|
bp += size;
|
|
|
|
cp = p;
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|
|
|
|
*q = NULL;
|
2006-04-15 16:20:27 +00:00
|
|
|
return (0);
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|
2005-04-26 14:55:47 +00:00
|
|
|
|
2005-04-28 18:03:43 +00:00
|
|
|
static int
|
|
|
|
_gethostbynisname_r(const char *name, int af, struct hostent *he,
|
|
|
|
struct hostent_data *hed)
|
2005-04-26 14:55:47 +00:00
|
|
|
{
|
|
|
|
char *map;
|
|
|
|
|
|
|
|
switch (af) {
|
|
|
|
case AF_INET:
|
|
|
|
map = "hosts.byname";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
map = "ipnodes.byname";
|
|
|
|
break;
|
|
|
|
}
|
2006-04-15 16:20:27 +00:00
|
|
|
return (_gethostbynis(name, map, af, he, hed));
|
2005-04-26 14:55:47 +00:00
|
|
|
}
|
|
|
|
|
2005-04-28 18:03:43 +00:00
|
|
|
static int
|
2006-05-12 15:37:23 +00:00
|
|
|
_gethostbynisaddr_r(const void *addr, socklen_t len, int af,
|
|
|
|
struct hostent *he, struct hostent_data *hed)
|
2005-04-26 14:55:47 +00:00
|
|
|
{
|
|
|
|
char *map;
|
2005-04-29 12:01:36 +00:00
|
|
|
char numaddr[46];
|
2005-04-26 14:55:47 +00:00
|
|
|
|
|
|
|
switch (af) {
|
|
|
|
case AF_INET:
|
|
|
|
map = "hosts.byaddr";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
map = "ipnodes.byaddr";
|
|
|
|
break;
|
|
|
|
}
|
2005-04-29 12:01:36 +00:00
|
|
|
if (inet_ntop(af, addr, numaddr, sizeof(numaddr)) == NULL)
|
2006-04-15 16:20:27 +00:00
|
|
|
return (-1);
|
|
|
|
return (_gethostbynis(numaddr, map, af, he, hed));
|
2005-04-26 14:55:47 +00:00
|
|
|
}
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#endif /* YP */
|
1994-09-25 02:12:49 +00:00
|
|
|
|
2005-04-26 14:55:47 +00:00
|
|
|
/* XXX _gethostbynisname/_gethostbynisaddr only used by getipnodeby*() */
|
1994-09-25 02:12:49 +00:00
|
|
|
struct hostent *
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
_gethostbynisname(const char *name, int af)
|
1994-09-25 02:12:49 +00:00
|
|
|
{
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#ifdef YP
|
2006-04-15 16:20:27 +00:00
|
|
|
struct hostent *he;
|
|
|
|
struct hostent_data *hed;
|
2005-05-01 07:39:45 +00:00
|
|
|
u_long oresopt;
|
|
|
|
int error;
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
res_state statp;
|
2005-04-28 18:03:43 +00:00
|
|
|
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
statp = __res_state();
|
2006-04-15 16:20:27 +00:00
|
|
|
if ((he = __hostent_init()) == NULL ||
|
|
|
|
(hed = __hostent_data_init()) == NULL) {
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
2006-04-15 16:20:27 +00:00
|
|
|
return (NULL);
|
2005-04-28 18:03:43 +00:00
|
|
|
}
|
2006-04-15 16:20:27 +00:00
|
|
|
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
oresopt = statp->options;
|
|
|
|
statp->options &= ~RES_USE_INET6;
|
2006-04-15 16:20:27 +00:00
|
|
|
error = _gethostbynisname_r(name, af, he, hed);
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
statp->options = oresopt;
|
2006-04-15 16:20:27 +00:00
|
|
|
return (error == 0) ? he : NULL;
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#else
|
2006-04-15 16:20:27 +00:00
|
|
|
return (NULL);
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#endif
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct hostent *
|
2006-05-12 15:37:23 +00:00
|
|
|
_gethostbynisaddr(const void *addr, socklen_t len, int af)
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
{
|
|
|
|
#ifdef YP
|
2006-04-15 16:20:27 +00:00
|
|
|
struct hostent *he;
|
|
|
|
struct hostent_data *hed;
|
2005-05-01 07:39:45 +00:00
|
|
|
u_long oresopt;
|
|
|
|
int error;
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
res_state statp;
|
2005-04-28 18:03:43 +00:00
|
|
|
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
statp = __res_state();
|
2006-04-15 16:20:27 +00:00
|
|
|
if ((he = __hostent_init()) == NULL ||
|
|
|
|
(hed = __hostent_data_init()) == NULL) {
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
2006-04-15 16:20:27 +00:00
|
|
|
return (NULL);
|
2005-04-28 18:03:43 +00:00
|
|
|
}
|
2006-04-15 16:20:27 +00:00
|
|
|
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
oresopt = statp->options;
|
|
|
|
statp->options &= ~RES_USE_INET6;
|
2006-04-15 16:20:27 +00:00
|
|
|
error = _gethostbynisaddr_r(addr, len, af, he, hed);
|
Update the resolver in libc to BIND9's one.
Since, res_sendsigned(3) and the friends use MD5 functions, it is
hard to include them without having MD5 functions in libc. So,
res_sendsigned(3) is not merged into libc.
Since, res_update(3) in BIND9 is not binary compatible with our
res_update(3), res_update(3) is leaved as is, except some
necessary modifications.
The res_update(3) and the friends are not essential part of the
resolver. They are not defined in resolv.h but defined in
res_update.h separately in BIND9. Further, they are not called from
our tree. So, I hide them from our resolv.h, but leave them only
for binary backward compatibility (perhaps, no one calls them).
Since, struct __res_state_ext is not exposed in BIND9, I hide it
from our resolv.h. And, global variable _res_ext is removed. It
breaks binary backward compatibility. But, since it is not used from
outside of our libc, I think it is safe.
Reviewed by: arch@ (no objection)
2006-03-21 16:11:11 +00:00
|
|
|
statp->options = oresopt;
|
2006-04-15 16:20:27 +00:00
|
|
|
return (error == 0) ? he : NULL;
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#else
|
2006-04-15 16:20:27 +00:00
|
|
|
return (NULL);
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_nis_gethostbyname(void *rval, void *cb_data, va_list ap)
|
|
|
|
{
|
|
|
|
#ifdef YP
|
|
|
|
const char *name;
|
|
|
|
int af;
|
2006-04-15 16:20:27 +00:00
|
|
|
char *buffer;
|
|
|
|
size_t buflen;
|
|
|
|
int *errnop, *h_errnop;
|
|
|
|
struct hostent *hptr, he;
|
2005-04-28 18:03:43 +00:00
|
|
|
struct hostent_data *hed;
|
2006-04-15 16:20:27 +00:00
|
|
|
res_state statp;
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
|
|
|
|
name = va_arg(ap, const char *);
|
|
|
|
af = va_arg(ap, int);
|
2006-04-15 16:20:27 +00:00
|
|
|
hptr = va_arg(ap, struct hostent *);
|
|
|
|
buffer = va_arg(ap, char *);
|
|
|
|
buflen = va_arg(ap, size_t);
|
|
|
|
errnop = va_arg(ap, int *);
|
|
|
|
h_errnop = va_arg(ap, int *);
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
|
2006-04-15 16:20:27 +00:00
|
|
|
*((struct hostent **)rval) = NULL;
|
|
|
|
|
|
|
|
statp = __res_state();
|
|
|
|
if ((hed = __hostent_data_init()) == NULL) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_gethostbynisname_r(name, af, &he, hed) != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
if (__copy_hostent(&he, hptr, buffer, buflen) != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
*((struct hostent **)rval) = hptr;
|
|
|
|
return (NS_SUCCESS);
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#else
|
2006-04-15 16:20:27 +00:00
|
|
|
*((struct hostent **)rval) = NULL;
|
|
|
|
return (NS_UNAVAIL);
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_nis_gethostbyaddr(void *rval, void *cb_data, va_list ap)
|
|
|
|
{
|
|
|
|
#ifdef YP
|
2006-05-12 15:37:23 +00:00
|
|
|
const void *addr;
|
|
|
|
socklen_t len;
|
1996-08-29 20:08:19 +00:00
|
|
|
int af;
|
2006-04-15 16:20:27 +00:00
|
|
|
char *buffer;
|
|
|
|
size_t buflen;
|
|
|
|
int *errnop, *h_errnop;
|
|
|
|
struct hostent *hptr, he;
|
2005-04-28 18:03:43 +00:00
|
|
|
struct hostent_data *hed;
|
2006-04-15 16:20:27 +00:00
|
|
|
res_state statp;
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
|
2006-05-12 15:37:23 +00:00
|
|
|
addr = va_arg(ap, const void *);
|
|
|
|
len = va_arg(ap, socklen_t);
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
af = va_arg(ap, int);
|
2006-04-15 16:20:27 +00:00
|
|
|
hptr = va_arg(ap, struct hostent *);
|
|
|
|
buffer = va_arg(ap, char *);
|
|
|
|
buflen = va_arg(ap, size_t);
|
|
|
|
errnop = va_arg(ap, int *);
|
|
|
|
h_errnop = va_arg(ap, int *);
|
2005-04-26 14:55:47 +00:00
|
|
|
|
2006-04-15 16:20:27 +00:00
|
|
|
*((struct hostent **)rval) = NULL;
|
|
|
|
|
|
|
|
statp = __res_state();
|
|
|
|
if ((hed = __hostent_data_init()) == NULL) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_gethostbynisaddr_r(addr, len, af, &he, hed) != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
if (__copy_hostent(&he, hptr, buffer, buflen) != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
*((struct hostent **)rval) = hptr;
|
|
|
|
return (NS_SUCCESS);
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#else
|
2006-04-15 16:20:27 +00:00
|
|
|
*((struct hostent **)rval) = NULL;
|
|
|
|
return (NS_UNAVAIL);
|
Add nsswitch support. By creating an /etc/nsswitch.conf file, you can
configure FreeBSD so that various databases such as passwd and group can be
looked up using flat files, NIS, or Hesiod.
= Hesiod has been added to libc (see hesiod(3)).
= A library routine for parsing nsswitch.conf and invoking callback
functions as specified has been added to libc (see nsdispatch(3)).
= The following C library functions have been modified to use nsdispatch:
. getgrent, getgrnam, getgrgid
. getpwent, getpwnam, getpwuid
. getusershell
. getaddrinfo
. gethostbyname, gethostbyname2, gethostbyaddr
. getnetbyname, getnetbyaddr
. getipnodebyname, getipnodebyaddr, getnodebyname, getnodebyaddr
= host.conf has been removed from src/etc. rc.network has been modified
to warn that host.conf is no longer used at boot time. In addition, if
there is a host.conf but no nsswitch.conf, the latter is created at boot
time from the former.
Obtained from: NetBSD
2000-09-06 18:16:48 +00:00
|
|
|
#endif
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|