1994-09-25 02:12:49 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1983, 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.
|
|
|
|
*/
|
|
|
|
|
1996-01-13 09:03:58 +00:00
|
|
|
/* Portions Copyright (c) 1993 Carlos Leandro and Rui Salgueiro
|
|
|
|
* Dep. Matematica Universidade de Coimbra, Portugal, Europe
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* from getnetent.c 1.1 (Coimbra) 93/06/02
|
|
|
|
*/
|
|
|
|
|
1994-09-25 02:12:49 +00:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
|
|
static char sccsid[] = "@(#)getnetent.c 8.1 (Berkeley) 6/4/93";
|
1997-06-27 08:22:03 +00:00
|
|
|
static char orig_rcsid[] = "From: Id: getnetent.c,v 8.4 1997/06/01 20:34:37 vixie Exp";
|
1994-09-25 02:12:49 +00:00
|
|
|
#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/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
1996-01-13 09:03:58 +00:00
|
|
|
#include <arpa/nameser.h>
|
1994-09-25 02:12:49 +00:00
|
|
|
#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>
|
|
|
|
#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-28 15:32:55 +00:00
|
|
|
#include "netdb_private.h"
|
1994-09-25 02:12:49 +00:00
|
|
|
|
|
|
|
void
|
2005-04-28 15:32:55 +00:00
|
|
|
_setnethtent(int f, struct netent_data *ned)
|
1994-09-25 02:12:49 +00:00
|
|
|
{
|
1996-01-13 09:03:58 +00:00
|
|
|
|
2005-04-28 15:32:55 +00:00
|
|
|
if (ned->netf == NULL)
|
|
|
|
ned->netf = fopen(_PATH_NETWORKS, "r");
|
1994-09-25 02:12:49 +00:00
|
|
|
else
|
2005-04-28 15:32:55 +00:00
|
|
|
rewind(ned->netf);
|
|
|
|
ned->stayopen |= f;
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-04-28 15:32:55 +00:00
|
|
|
_endnethtent(struct netent_data *ned)
|
1994-09-25 02:12:49 +00:00
|
|
|
{
|
1996-01-13 09:03:58 +00:00
|
|
|
|
2005-04-28 15:32:55 +00:00
|
|
|
if (ned->netf) {
|
|
|
|
fclose(ned->netf);
|
|
|
|
ned->netf = NULL;
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|
2005-04-28 15:32:55 +00:00
|
|
|
ned->stayopen = 0;
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|
|
|
|
|
2006-04-15 16:20:27 +00:00
|
|
|
static int
|
|
|
|
getnetent_p(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
|
|
|
int len;
|
|
|
|
char line[BUFSIZ + 1];
|
1994-09-25 02:12:49 +00:00
|
|
|
|
2005-04-28 15:32:55 +00:00
|
|
|
if (ned->netf == NULL &&
|
|
|
|
(ned->netf = fopen(_PATH_NETWORKS, "r")) == NULL)
|
2006-04-15 16:20:27 +00:00
|
|
|
return (-1);
|
1994-09-25 02:12:49 +00:00
|
|
|
again:
|
2005-04-28 15:32:55 +00:00
|
|
|
p = fgets(line, sizeof line, ned->netf);
|
1994-09-25 02:12:49 +00:00
|
|
|
if (p == NULL)
|
2006-04-15 16:20:27 +00:00
|
|
|
return (-1);
|
1994-09-25 02:12:49 +00:00
|
|
|
if (*p == '#')
|
|
|
|
goto again;
|
|
|
|
cp = strpbrk(p, "#\n");
|
2005-01-03 11:07:45 +00:00
|
|
|
if (cp != NULL)
|
|
|
|
*cp = '\0';
|
2005-04-28 15:32:55 +00:00
|
|
|
bp = ned->netbuf;
|
|
|
|
ep = ned->netbuf + sizeof ned->netbuf;
|
|
|
|
ne->n_name = bp;
|
1994-09-25 02:12:49 +00:00
|
|
|
cp = strpbrk(p, " \t");
|
|
|
|
if (cp == NULL)
|
|
|
|
goto again;
|
|
|
|
*cp++ = '\0';
|
2005-04-28 15:32:55 +00:00
|
|
|
len = strlen(p) + 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, p, ep - bp);
|
|
|
|
bp += len;
|
1994-09-25 02:12:49 +00:00
|
|
|
while (*cp == ' ' || *cp == '\t')
|
|
|
|
cp++;
|
|
|
|
p = strpbrk(cp, " \t");
|
|
|
|
if (p != NULL)
|
|
|
|
*p++ = '\0';
|
2005-04-28 15:32:55 +00:00
|
|
|
ne->n_net = inet_network(cp);
|
|
|
|
ne->n_addrtype = AF_INET;
|
|
|
|
q = ne->n_aliases = ned->net_aliases;
|
2005-04-24 18:22:39 +00:00
|
|
|
if (p != NULL) {
|
1994-09-25 02:12:49 +00:00
|
|
|
cp = p;
|
2005-04-24 18:22:39 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
getnetent_r(struct netent *nptr, char *buffer, size_t buflen,
|
|
|
|
struct netent **result, int *h_errnop)
|
|
|
|
{
|
|
|
|
struct netent_data *ned;
|
|
|
|
struct netent ne;
|
|
|
|
res_state statp;
|
|
|
|
|
|
|
|
statp = __res_state();
|
|
|
|
if ((ned = __netent_data_init()) == NULL) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (getnetent_p(&ne, ned) != 0)
|
|
|
|
return (-1);
|
|
|
|
if (__copy_netent(&ne, nptr, buffer, buflen) != 0)
|
|
|
|
return (-1);
|
|
|
|
*result = nptr;
|
|
|
|
return (0);
|
2005-04-28 15:32:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct netent *
|
|
|
|
getnetent(void)
|
|
|
|
{
|
|
|
|
struct netdata *nd;
|
2006-04-15 16:20:27 +00:00
|
|
|
struct netent *rval;
|
|
|
|
int ret_h_errno;
|
2005-04-28 15:32:55 +00:00
|
|
|
|
|
|
|
if ((nd = __netdata_init()) == NULL)
|
2006-04-15 16:20:27 +00:00
|
|
|
return (NULL);
|
|
|
|
if (getnetent_r(&nd->net, nd->data, sizeof(nd->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
|
|
|
|
_ht_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
|
|
|
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;
|
2002-03-21 18:49:23 +00:00
|
|
|
char **cp;
|
2006-04-15 16:20:27 +00:00
|
|
|
res_state statp;
|
2005-04-28 15:32:55 +00:00
|
|
|
int error;
|
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
|
|
|
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 *);
|
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 ((ned = __netent_data_init()) == NULL) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_UNAVAIL);
|
|
|
|
}
|
|
|
|
|
|
|
|
_setnethtent(ned->stayopen, ned);
|
|
|
|
while ((error = getnetent_p(&ne, ned)) == 0) {
|
|
|
|
if (strcasecmp(ne.n_name, name) == 0)
|
1994-09-25 02:12:49 +00:00
|
|
|
break;
|
2006-04-15 16:20:27 +00:00
|
|
|
for (cp = ne.n_aliases; *cp != 0; cp++)
|
1994-09-25 02:12:49 +00:00
|
|
|
if (strcasecmp(*cp, name) == 0)
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
found:
|
2005-04-28 15:32:55 +00:00
|
|
|
if (!ned->stayopen)
|
2006-04-15 16:20:27 +00:00
|
|
|
_endnethtent(ned);
|
|
|
|
if (error != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
if (__copy_netent(&ne, nptr, buffer, buflen) != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
*((struct netent **)rval) = nptr;
|
|
|
|
return (NS_SUCCESS);
|
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
|
|
|
|
_ht_getnetbyaddr(void *rval, void *cb_data, va_list ap)
|
1994-09-25 02:12:49 +00:00
|
|
|
{
|
2005-05-15 20:15:15 +00:00
|
|
|
uint32_t net;
|
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 type;
|
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;
|
2005-04-28 15:32:55 +00:00
|
|
|
int error;
|
1994-09-25 02:12:49 +00:00
|
|
|
|
2005-05-15 20:15:15 +00:00
|
|
|
net = 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
|
|
|
type = 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 *);
|
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 ((ned = __netent_data_init()) == NULL) {
|
|
|
|
RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_UNAVAIL);
|
|
|
|
}
|
|
|
|
|
|
|
|
_setnethtent(ned->stayopen, ned);
|
|
|
|
while ((error = getnetent_p(&ne, ned)) == 0)
|
|
|
|
if (ne.n_addrtype == type && ne.n_net == net)
|
1994-09-25 02:12:49 +00:00
|
|
|
break;
|
2005-04-28 15:32:55 +00:00
|
|
|
if (!ned->stayopen)
|
2006-04-15 16:20:27 +00:00
|
|
|
_endnethtent(ned);
|
|
|
|
if (error != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
if (__copy_netent(&ne, nptr, buffer, buflen) != 0) {
|
|
|
|
*h_errnop = statp->res_h_errno;
|
|
|
|
return (NS_NOTFOUND);
|
|
|
|
}
|
|
|
|
*((struct netent **)rval) = nptr;
|
|
|
|
return (NS_SUCCESS);
|
1994-09-25 02:12:49 +00:00
|
|
|
}
|