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>
|
|
|
|
#include <netdb.h>
|
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
|
|
|
#include <resolv.h>
|
1994-09-25 02:12:49 +00:00
|
|
|
#include <stdio.h>
|
1995-10-22 14:39:06 +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>
|
1996-03-23 22:16:22 +00:00
|
|
|
#include <arpa/nameser.h>
|
|
|
|
#ifdef YP
|
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#include <rpcsvc/yp_prot.h>
|
|
|
|
#include <rpcsvc/ypclnt.h>
|
|
|
|
#endif
|
2005-04-28 15:32:55 +00:00
|
|
|
#include "netdb_private.h"
|
1994-09-25 02:12:49 +00:00
|
|
|
|
|
|
|
#ifdef YP
|
2005-04-28 15:32:55 +00:00
|
|
|
static int
|
|
|
|
_getnetbynis(const char *name, char *map, int af, struct netent *ne,
|
|
|
|
struct netent_data *ned)
|
1994-09-25 02:12:49 +00:00
|
|
|
{
|
2005-04-28 15:32:55 +00:00
|
|
|
char *p, *bp, *ep;
|
2002-03-21 18:49:23 +00:00
|
|
|
char *cp, **q;
|
2005-04-28 15:32:55 +00:00
|
|
|
char *result;
|
|
|
|
int resultlen, len;
|
|
|
|
char ypbuf[YPMAXRECORD + 2];
|
1994-09-25 02:12:49 +00:00
|
|
|
|
1996-08-29 20:08:19 +00:00
|
|
|
switch(af) {
|
|
|
|
case AF_INET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case AF_INET6:
|
|
|
|
errno = EAFNOSUPPORT;
|
2006-04-15 16:20:27 +00:00
|
|
|
return (-1);
|
1996-08-29 20:08:19 +00:00
|
|
|
}
|
|
|
|
|
2005-04-28 15:32:55 +00:00
|
|
|
if (ned->yp_domain == (char *)NULL)
|
|
|
|
if (yp_get_default_domain (&ned->yp_domain))
|
2006-04-15 16:20:27 +00:00
|
|
|
return (-1);
|
1994-09-25 02:12:49 +00:00
|
|
|
|
2005-04-28 15:32:55 +00:00
|
|
|
if (yp_match(ned->yp_domain, map, name, strlen(name), &result,
|
|
|
|
&resultlen))
|
2006-04-15 16:20:27 +00:00
|
|
|
return (-1);
|
1994-09-25 02:12:49 +00:00
|
|
|
|
1996-03-23 22:16:22 +00:00
|
|
|
bcopy((char *)result, (char *)&ypbuf, resultlen);
|
1996-12-27 18:21:07 +00:00
|
|
|
ypbuf[resultlen] = '\0';
|
1996-03-23 22:16:22 +00:00
|
|
|
free(result);
|
|
|
|
result = (char *)&ypbuf;
|
|
|
|
|
2012-01-03 18:51:58 +00:00
|
|
|
if ((cp = strchr(result, '\n')))
|
1994-09-25 02:12:49 +00:00
|
|
|
*cp = '\0';
|
|
|
|
|
|
|
|
cp = strpbrk(result, " \t");
|
|
|
|
*cp++ = '\0';
|
2005-04-28 15:32:55 +00:00
|
|
|
bp = ned->netbuf;
|
|
|
|
ep = ned->netbuf + sizeof ned->netbuf;
|
|
|
|
len = strlen(result) + 1;
|
|
|
|
if (ep - bp < len) {
|
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(__res_state(), NO_RECOVERY);
|
2006-04-15 16:20:27 +00:00
|
|
|
return (-1);
|
2005-04-28 15:32:55 +00:00
|
|
|
}
|
|
|
|
strlcpy(bp, result, ep - bp);
|
|
|
|
ne->n_name = bp;
|
|
|
|
bp += len;
|
1994-09-26 02:50:43 +00:00
|
|
|
|
1994-09-25 02:12:49 +00:00
|
|
|
while (*cp == ' ' || *cp == '\t')
|
|
|
|
cp++;
|
1994-09-26 02:50:43 +00:00
|
|
|
|
2005-04-28 15:32:55 +00:00
|
|
|
ne->n_net = inet_network(cp);
|
|
|
|
ne->n_addrtype = AF_INET;
|
1994-09-26 02:50:43 +00:00
|
|
|
|
2005-04-28 15:32:55 +00:00
|
|
|
q = ne->n_aliases = ned->net_aliases;
|
1994-09-25 02:12:49 +00:00
|
|
|
cp = strpbrk(cp, " \t");
|
|
|
|
if (cp != NULL)
|
|
|
|
*cp++ = '\0';
|
|
|
|
while (cp && *cp) {
|
|
|
|
if (*cp == ' ' || *cp == '\t') {
|
|
|
|
cp++;
|
|
|
|
continue;
|
|
|
|
}
|
2005-04-28 15:32:55 +00:00
|
|
|
if (q > &ned->net_aliases[_MAXALIASES - 1])
|
|
|
|
break;
|
|
|
|
p = strpbrk(cp, " \t");
|
|
|
|
if (p != NULL)
|
|
|
|
*p++ = '\0';
|
|
|
|
len = strlen(cp) + 1;
|
|
|
|
if (ep - bp < len)
|
|
|
|
break;
|
|
|
|
strlcpy(bp, cp, ep - bp);
|
|
|
|
*q++ = bp;
|
|
|
|
bp += len;
|
|
|
|
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
|
|
|
}
|
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
|
|
|
|
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
|
|
|
int
|
|
|
|
_nis_getnetbyname(void *rval, void *cb_data, va_list ap)
|
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
|
|
|
|
const char *name;
|
2006-04-15 16:20:27 +00:00
|
|
|
char *buffer;
|
|
|
|
size_t buflen;
|
|
|
|
int *errnop, *h_errnop;
|
|
|
|
struct netent *nptr, ne;
|
2005-04-28 15:32:55 +00:00
|
|
|
struct netent_data *ned;
|
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 *);
|
2006-04-15 16:20:27 +00:00
|
|
|
nptr = va_arg(ap, struct netent *);
|
|
|
|
buffer = va_arg(ap, char *);
|
|
|
|
buflen = va_arg(ap, size_t);
|
|
|
|
errnop = va_arg(ap, int *);
|
|
|
|
h_errnop = va_arg(ap, int *);
|
|
|
|
|
|
|
|
statp = __res_state();
|
|
|
|
if ((ned = __netent_data_init()) == NULL) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_UNAVAIL);
|
|
|
|
}
|
2005-04-28 15:32:55 +00:00
|
|
|
|
2006-04-15 16:20:27 +00:00
|
|
|
if (_getnetbynis(name, "networks.byname", AF_INET, &ne, ned) != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
if (__copy_netent(&ne, nptr, buffer, buflen) != 0) {
|
2010-08-13 06:39:54 +00:00
|
|
|
*errnop = errno;
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
2006-04-15 16:20:27 +00:00
|
|
|
*h_errnop = statp->res_h_errno;
|
2010-08-13 06:39:54 +00:00
|
|
|
return (NS_RETURN);
|
2006-04-15 16:20:27 +00:00
|
|
|
}
|
|
|
|
*((struct netent **)rval) = nptr;
|
|
|
|
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
|
|
|
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
|
|
|
}
|
|
|
|
|
2005-05-15 20:15:15 +00:00
|
|
|
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
|
|
|
_nis_getnetbyaddr(void *rval, void *cb_data, va_list ap)
|
|
|
|
{
|
|
|
|
#ifdef YP
|
2005-05-15 20:15:15 +00:00
|
|
|
uint32_t addr;
|
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 netent *nptr, ne;
|
2005-04-28 15:32:55 +00:00
|
|
|
struct netent_data *ned;
|
1994-09-26 02:50:43 +00:00
|
|
|
char *str, *cp;
|
2005-05-15 20:15:15 +00:00
|
|
|
uint32_t net2;
|
1996-03-23 22:16:22 +00:00
|
|
|
int nn;
|
|
|
|
unsigned int netbr[4];
|
|
|
|
char buf[MAXDNAME];
|
2006-04-15 16:20:27 +00:00
|
|
|
res_state statp;
|
1994-09-25 02:12:49 +00:00
|
|
|
|
2005-05-15 20:15:15 +00:00
|
|
|
addr = va_arg(ap, uint32_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
|
|
|
nptr = va_arg(ap, struct netent *);
|
|
|
|
buffer = va_arg(ap, char *);
|
|
|
|
buflen = va_arg(ap, size_t);
|
|
|
|
errnop = va_arg(ap, int *);
|
|
|
|
h_errnop = va_arg(ap, int *);
|
|
|
|
|
|
|
|
statp = __res_state();
|
|
|
|
if ((ned = __netent_data_init()) == NULL) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
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
|
|
|
|
1996-08-29 20:08:19 +00:00
|
|
|
if (af != AF_INET) {
|
2006-04-15 16:20:27 +00:00
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
1996-08-29 20:08:19 +00:00
|
|
|
errno = EAFNOSUPPORT;
|
2006-04-15 16:20:27 +00:00
|
|
|
return (NS_UNAVAIL);
|
1996-08-29 20:08:19 +00:00
|
|
|
}
|
1994-09-25 02:12:49 +00:00
|
|
|
|
1996-03-23 22:16:22 +00:00
|
|
|
for (nn = 4, net2 = addr; net2; net2 >>= 8) {
|
|
|
|
netbr[--nn] = net2 & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (nn) {
|
|
|
|
case 3: /* Class A */
|
|
|
|
sprintf(buf, "%u", netbr[3]);
|
|
|
|
break;
|
|
|
|
case 2: /* Class B */
|
|
|
|
sprintf(buf, "%u.%u", netbr[2], netbr[3]);
|
|
|
|
break;
|
|
|
|
case 1: /* Class C */
|
|
|
|
sprintf(buf, "%u.%u.%u", netbr[1], netbr[2], netbr[3]);
|
|
|
|
break;
|
|
|
|
case 0: /* Class D - E */
|
|
|
|
sprintf(buf, "%u.%u.%u.%u", netbr[0], netbr[1],
|
|
|
|
netbr[2], netbr[3]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
str = (char *)&buf;
|
|
|
|
cp = str + (strlen(str) - 2);
|
|
|
|
|
1994-09-26 02:50:43 +00:00
|
|
|
while(!strcmp(cp, ".0")) {
|
|
|
|
*cp = '\0';
|
1996-03-23 22:16:22 +00:00
|
|
|
cp = str + (strlen(str) - 2);
|
1994-09-26 02:50:43 +00:00
|
|
|
}
|
1995-05-30 05:51:47 +00:00
|
|
|
|
2006-04-15 16:20:27 +00:00
|
|
|
if (_getnetbynis(str, "networks.byaddr", af, &ne, ned) != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
if (__copy_netent(&ne, nptr, buffer, buflen) != 0) {
|
2010-08-13 06:39:54 +00:00
|
|
|
*errnop = errno;
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
2006-04-15 16:20:27 +00:00
|
|
|
*h_errnop = statp->res_h_errno;
|
2010-08-13 06:39:54 +00:00
|
|
|
return (NS_RETURN);
|
2006-04-15 16:20:27 +00:00
|
|
|
}
|
|
|
|
*((struct netent **)rval) = nptr;
|
|
|
|
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
|
|
|
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 /* YP */
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|