1994-09-25 02:12:49 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1985, 1988, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND 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.
|
|
|
|
* -
|
|
|
|
* Portions Copyright (c) 1993 by Digital Equipment Corporation.
|
1995-05-30 05:51:47 +00:00
|
|
|
*
|
1994-09-25 02:12:49 +00:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies, and that
|
|
|
|
* the name of Digital Equipment Corporation not be used in advertising or
|
|
|
|
* publicity pertaining to distribution of the document or software without
|
|
|
|
* specific, written prior permission.
|
1995-05-30 05:51:47 +00:00
|
|
|
*
|
1994-09-25 02:12:49 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
|
|
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
|
|
|
|
* CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
|
|
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
* SOFTWARE.
|
|
|
|
* -
|
|
|
|
* --Copyright--
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
|
|
static char sccsid[] = "@(#)gethostnamadr.c 8.1 (Berkeley) 6/4/93";
|
|
|
|
#endif /* LIBC_SCCS and not lint */
|
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>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
2010-08-13 06:39:54 +00:00
|
|
|
#include <errno.h>
|
1994-09-25 02:12:49 +00:00
|
|
|
#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-08-29 20:08:19 +00:00
|
|
|
#include <arpa/nameser.h> /* XXX */
|
|
|
|
#include <resolv.h> /* XXX */
|
2005-04-27 19:12:57 +00:00
|
|
|
#include "netdb_private.h"
|
1994-09-25 02:12:49 +00:00
|
|
|
|
|
|
|
void
|
2005-04-28 18:03:43 +00:00
|
|
|
_sethosthtent(int f, struct hostent_data *hed)
|
1994-09-25 02:12:49 +00:00
|
|
|
{
|
2005-04-28 18:03:43 +00:00
|
|
|
if (!hed->hostf)
|
|
|
|
hed->hostf = fopen(_PATH_HOSTS, "r");
|
1994-09-25 02:12:49 +00:00
|
|
|
else
|
2005-04-28 18:03:43 +00:00
|
|
|
rewind(hed->hostf);
|
|
|
|
hed->stayopen = f;
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-04-28 18:03:43 +00:00
|
|
|
_endhosthtent(struct hostent_data *hed)
|
1994-09-25 02:12:49 +00:00
|
|
|
{
|
2005-04-28 18:03:43 +00:00
|
|
|
if (hed->hostf && !hed->stayopen) {
|
|
|
|
(void) fclose(hed->hostf);
|
|
|
|
hed->hostf = NULL;
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-30 17:01:18 +00:00
|
|
|
static int
|
2006-04-15 16:20:27 +00:00
|
|
|
gethostent_p(struct hostent *he, struct hostent_data *hed, int mapped,
|
|
|
|
res_state statp)
|
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;
|
1996-08-29 20:08:19 +00:00
|
|
|
int af, len;
|
2005-04-28 18:03:43 +00:00
|
|
|
char hostbuf[BUFSIZ + 1];
|
1994-09-25 02:12:49 +00:00
|
|
|
|
2005-04-28 18:03:43 +00:00
|
|
|
if (!hed->hostf && !(hed->hostf = fopen(_PATH_HOSTS, "r"))) {
|
2006-04-15 16:20:27 +00:00
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
return (-1);
|
1996-01-13 09:03:58 +00:00
|
|
|
}
|
1996-08-29 20:08:19 +00:00
|
|
|
again:
|
2005-04-28 18:03:43 +00:00
|
|
|
if (!(p = fgets(hostbuf, sizeof hostbuf, hed->hostf))) {
|
2006-04-15 16:20:27 +00:00
|
|
|
RES_SET_H_ERRNO(statp, HOST_NOT_FOUND);
|
|
|
|
return (-1);
|
1996-01-13 09:03:58 +00:00
|
|
|
}
|
1994-09-25 02:12:49 +00:00
|
|
|
if (*p == '#')
|
|
|
|
goto again;
|
2005-01-03 11:07:45 +00:00
|
|
|
cp = strpbrk(p, "#\n");
|
|
|
|
if (cp != NULL)
|
|
|
|
*cp = '\0';
|
1996-01-13 09:03:58 +00:00
|
|
|
if (!(cp = strpbrk(p, " \t")))
|
1994-09-25 02:12:49 +00:00
|
|
|
goto again;
|
|
|
|
*cp++ = '\0';
|
2005-04-28 18:03:43 +00:00
|
|
|
if (inet_pton(AF_INET6, p, hed->host_addr) > 0) {
|
1996-08-29 20:08:19 +00:00
|
|
|
af = AF_INET6;
|
|
|
|
len = IN6ADDRSZ;
|
2005-04-28 18:03:43 +00:00
|
|
|
} else if (inet_pton(AF_INET, p, hed->host_addr) > 0) {
|
2005-04-30 17:01:18 +00:00
|
|
|
if (mapped) {
|
2005-04-28 18:03:43 +00:00
|
|
|
_map_v4v6_address((char *)hed->host_addr,
|
|
|
|
(char *)hed->host_addr);
|
1996-08-29 20:08:19 +00:00
|
|
|
af = AF_INET6;
|
|
|
|
len = IN6ADDRSZ;
|
|
|
|
} else {
|
|
|
|
af = AF_INET;
|
|
|
|
len = INADDRSZ;
|
|
|
|
}
|
|
|
|
} else {
|
1996-01-13 09:03:58 +00:00
|
|
|
goto again;
|
1996-08-29 20:08:19 +00:00
|
|
|
}
|
2005-04-28 18:03:43 +00:00
|
|
|
hed->h_addr_ptrs[0] = (char *)hed->host_addr;
|
|
|
|
hed->h_addr_ptrs[1] = NULL;
|
|
|
|
he->h_addr_list = hed->h_addr_ptrs;
|
|
|
|
he->h_length = len;
|
|
|
|
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;
|
|
|
|
if ((p = strpbrk(cp, " \t")) != NULL)
|
|
|
|
*p++ = '\0';
|
|
|
|
len = strlen(cp) + 1;
|
|
|
|
if (ep - bp < len) {
|
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 += len;
|
|
|
|
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;
|
|
|
|
if ((p = strpbrk(cp, " \t")) != 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
|
|
|
RES_SET_H_ERRNO(statp, NETDB_SUCCESS);
|
|
|
|
return (0);
|
2005-04-28 18:03:43 +00:00
|
|
|
}
|
|
|
|
|
2005-04-30 17:01:18 +00:00
|
|
|
int
|
2006-04-15 16:20:27 +00:00
|
|
|
gethostent_r(struct hostent *hptr, char *buffer, size_t buflen,
|
|
|
|
struct hostent **result, int *h_errnop)
|
2005-04-30 17:01:18 +00:00
|
|
|
{
|
2006-04-15 16:20:27 +00:00
|
|
|
struct hostent_data *hed;
|
|
|
|
struct hostent he;
|
|
|
|
res_state statp;
|
|
|
|
|
|
|
|
statp = __res_state();
|
|
|
|
if ((statp->options & RES_INIT) == 0 && res_ninit(statp) == -1) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((hed = __hostent_data_init()) == NULL) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (-1);
|
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
|
|
|
}
|
2006-04-15 16:20:27 +00:00
|
|
|
if (gethostent_p(&he, hed, statp->options & RES_USE_INET6, statp) != 0)
|
|
|
|
return (-1);
|
2010-08-13 06:39:54 +00:00
|
|
|
if (__copy_hostent(&he, hptr, buffer, buflen) != 0) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return ((errno != 0) ? errno : -1);
|
|
|
|
}
|
2006-04-15 16:20:27 +00:00
|
|
|
*result = hptr;
|
|
|
|
return (0);
|
2005-04-30 17:01:18 +00:00
|
|
|
}
|
|
|
|
|
2005-04-28 18:03:43 +00:00
|
|
|
struct hostent *
|
|
|
|
gethostent(void)
|
|
|
|
{
|
|
|
|
struct hostdata *hd;
|
2006-04-15 16:20:27 +00:00
|
|
|
struct hostent *rval;
|
|
|
|
int ret_h_errno;
|
2005-04-28 18:03:43 +00:00
|
|
|
|
|
|
|
if ((hd = __hostdata_init()) == NULL)
|
2006-04-15 16:20:27 +00:00
|
|
|
return (NULL);
|
|
|
|
if (gethostent_r(&hd->host, hd->data, sizeof(hd->data), &rval,
|
|
|
|
&ret_h_errno) != 0)
|
|
|
|
return (NULL);
|
|
|
|
return (rval);
|
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
|
2005-04-30 17:01:18 +00:00
|
|
|
_ht_gethostbyname(void *rval, void *cb_data, va_list ap)
|
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-30 00:26:49 +00:00
|
|
|
const char *name;
|
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;
|
2002-03-21 18:49:23 +00:00
|
|
|
char **cp;
|
2006-04-15 16:20:27 +00:00
|
|
|
res_state statp;
|
2005-04-28 18:03:43 +00:00
|
|
|
int error;
|
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 *);
|
|
|
|
|
|
|
|
*((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);
|
|
|
|
}
|
2005-04-28 18:03:43 +00:00
|
|
|
|
2006-04-15 16:20:27 +00:00
|
|
|
_sethosthtent(0, hed);
|
|
|
|
while ((error = gethostent_p(&he, hed, 0, statp)) == 0) {
|
|
|
|
if (he.h_addrtype != af)
|
1996-08-29 20:08:19 +00:00
|
|
|
continue;
|
2006-04-15 16:20:27 +00:00
|
|
|
if (he.h_addrtype == AF_INET &&
|
|
|
|
statp->options & RES_USE_INET6) {
|
|
|
|
_map_v4v6_address(he.h_addr, he.h_addr);
|
|
|
|
he.h_length = IN6ADDRSZ;
|
|
|
|
he.h_addrtype = AF_INET6;
|
2005-04-30 17:01:18 +00:00
|
|
|
}
|
2006-04-15 16:20:27 +00:00
|
|
|
if (strcasecmp(he.h_name, name) == 0)
|
1994-09-25 02:12:49 +00:00
|
|
|
break;
|
2006-04-15 16:20:27 +00:00
|
|
|
for (cp = he.h_aliases; *cp != 0; cp++)
|
1994-09-25 02:12:49 +00:00
|
|
|
if (strcasecmp(*cp, name) == 0)
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
found:
|
2006-04-15 16:20:27 +00:00
|
|
|
_endhosthtent(hed);
|
2005-04-28 18:03:43 +00:00
|
|
|
|
2006-04-15 16:20:27 +00:00
|
|
|
if (error != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
if (__copy_hostent(&he, hptr, 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 hostent **)rval) = hptr;
|
|
|
|
return (NS_SUCCESS);
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|
|
|
|
|
2005-04-30 17:01:18 +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
|
|
|
_ht_gethostbyaddr(void *rval, void *cb_data, va_list ap)
|
|
|
|
{
|
2006-05-12 15:37:23 +00:00
|
|
|
const void *addr;
|
|
|
|
socklen_t len;
|
|
|
|
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;
|
2005-04-28 18:03:43 +00:00
|
|
|
int error;
|
1994-09-25 02:12:49 +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 *);
|
|
|
|
|
|
|
|
*((struct hostent **)rval) = 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
|
|
|
|
2006-04-15 16:20:27 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
_sethosthtent(0, hed);
|
|
|
|
while ((error = gethostent_p(&he, hed, 0, statp)) == 0)
|
|
|
|
if (he.h_addrtype == af && !bcmp(he.h_addr, addr, len)) {
|
|
|
|
if (he.h_addrtype == AF_INET &&
|
|
|
|
statp->options & RES_USE_INET6) {
|
|
|
|
_map_v4v6_address(he.h_addr, he.h_addr);
|
|
|
|
he.h_length = IN6ADDRSZ;
|
|
|
|
he.h_addrtype = AF_INET6;
|
2005-04-30 20:07:01 +00:00
|
|
|
}
|
1994-09-25 02:12:49 +00:00
|
|
|
break;
|
2005-04-30 20:07:01 +00:00
|
|
|
}
|
2006-04-15 16:20:27 +00:00
|
|
|
_endhosthtent(hed);
|
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
|
|
|
if (error != 0)
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
if (__copy_hostent(&he, hptr, 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 hostent **)rval) = hptr;
|
|
|
|
return (NS_SUCCESS);
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|