2000-04-26 20:08:38 +04:00
|
|
|
/* $NetBSD: getnameinfo.c,v 1.16 2000/04/26 16:08:38 itojun Exp $ */
|
|
|
|
/* $KAME: getnameinfo.c,v 1.38 2000/04/26 15:58:50 itojun Exp $ */
|
1999-07-04 04:43:43 +04:00
|
|
|
|
1999-07-01 22:23:53 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
|
|
|
|
* 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.
|
|
|
|
* 3. Neither the name of the project 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 PROJECT 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 PROJECT 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Issues to be discussed:
|
|
|
|
* - Thread safe-ness must be checked
|
1999-12-13 17:18:31 +03:00
|
|
|
* - Return values. There seems to be no standard for return value (RFC2553)
|
1999-07-01 22:23:53 +04:00
|
|
|
* but INRIA implementation returns EAI_xxx defined for getaddrinfo().
|
1999-12-13 17:18:31 +03:00
|
|
|
* - RFC2553 says that we should raise error on short buffer. X/Open says
|
|
|
|
* we need to truncate the result. We obey RFC2553 (and X/Open should be
|
|
|
|
* modified).
|
2000-04-26 20:08:38 +04:00
|
|
|
* - What is "local" in NI_FQDN?
|
|
|
|
* - NI_NAMEREQD and NI_NUMERICHOST conflict with each other.
|
|
|
|
* - (KAME extension) NI_WITHSCOPEID when called with global address,
|
|
|
|
* and sin6_scope_id filled
|
1999-07-01 22:23:53 +04:00
|
|
|
*/
|
|
|
|
|
2000-04-24 14:40:24 +04:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
2000-04-26 20:08:38 +04:00
|
|
|
__RCSID("$NetBSD: getnameinfo.c,v 1.16 2000/04/26 16:08:38 itojun Exp $");
|
2000-04-24 14:40:24 +04:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
2000-04-24 13:27:30 +04:00
|
|
|
#include "namespace.h"
|
1999-07-01 22:23:53 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
1999-12-13 17:18:31 +03:00
|
|
|
#include <net/if.h>
|
1999-07-01 22:23:53 +04:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <arpa/nameser.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <resolv.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2000-04-24 13:27:30 +04:00
|
|
|
#ifdef __weak_alias
|
|
|
|
__weak_alias(getnameinfo,_getnameinfo)
|
|
|
|
#endif
|
|
|
|
|
1999-07-01 22:23:53 +04:00
|
|
|
#define SUCCESS 0
|
|
|
|
#define ANY 0
|
|
|
|
#define YES 1
|
|
|
|
#define NO 0
|
|
|
|
|
|
|
|
static struct afd {
|
|
|
|
int a_af;
|
|
|
|
int a_addrlen;
|
|
|
|
int a_socklen;
|
|
|
|
int a_off;
|
|
|
|
} afdl [] = {
|
|
|
|
#ifdef INET6
|
|
|
|
{PF_INET6, sizeof(struct in6_addr), sizeof(struct sockaddr_in6),
|
|
|
|
offsetof(struct sockaddr_in6, sin6_addr)},
|
|
|
|
#endif
|
|
|
|
{PF_INET, sizeof(struct in_addr), sizeof(struct sockaddr_in),
|
|
|
|
offsetof(struct sockaddr_in, sin_addr)},
|
|
|
|
{0, 0, 0},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sockinet {
|
|
|
|
u_char si_len;
|
|
|
|
u_char si_family;
|
|
|
|
u_short si_port;
|
|
|
|
};
|
|
|
|
|
2000-02-09 15:25:06 +03:00
|
|
|
#ifdef INET6
|
2000-04-26 20:08:38 +04:00
|
|
|
static int ip6_parsenumeric __P((const struct sockaddr *, const char *, char *,
|
|
|
|
size_t, int));
|
|
|
|
static int ip6_sa2str __P((const struct sockaddr_in6 *, char *, size_t, int));
|
2000-02-09 15:25:06 +03:00
|
|
|
#endif
|
|
|
|
|
1999-07-01 22:23:53 +04:00
|
|
|
#define ENI_NOSOCKET 0
|
|
|
|
#define ENI_NOSERVNAME 1
|
|
|
|
#define ENI_NOHOSTNAME 2
|
|
|
|
#define ENI_MEMORY 3
|
|
|
|
#define ENI_SYSTEM 4
|
|
|
|
#define ENI_FAMILY 5
|
|
|
|
#define ENI_SALEN 6
|
|
|
|
|
|
|
|
int
|
|
|
|
getnameinfo(sa, salen, host, hostlen, serv, servlen, flags)
|
|
|
|
const struct sockaddr *sa;
|
|
|
|
size_t salen;
|
|
|
|
char *host;
|
|
|
|
size_t hostlen;
|
|
|
|
char *serv;
|
|
|
|
size_t servlen;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
struct afd *afd;
|
|
|
|
struct servent *sp;
|
|
|
|
struct hostent *hp;
|
|
|
|
u_short port;
|
1999-12-13 17:18:31 +03:00
|
|
|
int family, i;
|
2000-04-26 20:08:38 +04:00
|
|
|
const char *addr;
|
1999-12-13 17:18:31 +03:00
|
|
|
u_int32_t v4a;
|
1999-07-01 22:23:53 +04:00
|
|
|
int h_error;
|
|
|
|
char numserv[512];
|
|
|
|
char numaddr[512];
|
|
|
|
|
|
|
|
if (sa == NULL)
|
|
|
|
return ENI_NOSOCKET;
|
|
|
|
|
2000-03-17 09:11:55 +03:00
|
|
|
#ifdef BSD4_4
|
1999-12-13 17:18:31 +03:00
|
|
|
if (sa->sa_len != salen)
|
|
|
|
return ENI_SALEN;
|
2000-03-17 09:11:55 +03:00
|
|
|
#endif
|
1999-07-01 22:23:53 +04:00
|
|
|
|
|
|
|
family = sa->sa_family;
|
|
|
|
for (i = 0; afdl[i].a_af; i++)
|
|
|
|
if (afdl[i].a_af == family) {
|
|
|
|
afd = &afdl[i];
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
return ENI_FAMILY;
|
|
|
|
|
|
|
|
found:
|
1999-12-13 17:18:31 +03:00
|
|
|
if (salen != afd->a_socklen)
|
|
|
|
return ENI_SALEN;
|
1999-07-01 22:23:53 +04:00
|
|
|
|
2000-04-26 20:08:38 +04:00
|
|
|
/* network byte order */
|
|
|
|
port = ((const struct sockinet *)sa)->si_port;
|
|
|
|
addr = (const char *)sa + afd->a_off;
|
1999-07-01 22:23:53 +04:00
|
|
|
|
|
|
|
if (serv == NULL || servlen == 0) {
|
1999-12-13 17:18:31 +03:00
|
|
|
/*
|
|
|
|
* do nothing in this case.
|
|
|
|
* in case you are wondering if "&&" is more correct than
|
|
|
|
* "||" here: RFC2553 says that serv == NULL OR servlen == 0
|
|
|
|
* means that the caller does not want the result.
|
|
|
|
*/
|
1999-07-01 22:23:53 +04:00
|
|
|
} else {
|
1999-12-13 17:18:31 +03:00
|
|
|
if (flags & NI_NUMERICSERV)
|
|
|
|
sp = NULL;
|
|
|
|
else {
|
|
|
|
sp = getservbyport(port,
|
|
|
|
(flags & NI_DGRAM) ? "udp" : "tcp");
|
|
|
|
}
|
1999-07-01 22:23:53 +04:00
|
|
|
if (sp) {
|
|
|
|
if (strlen(sp->s_name) > servlen)
|
|
|
|
return ENI_MEMORY;
|
|
|
|
strcpy(serv, sp->s_name);
|
1999-12-13 17:18:31 +03:00
|
|
|
} else {
|
|
|
|
snprintf(numserv, sizeof(numserv), "%d", ntohs(port));
|
|
|
|
if (strlen(numserv) > servlen)
|
|
|
|
return ENI_MEMORY;
|
|
|
|
strcpy(serv, numserv);
|
|
|
|
}
|
1999-07-01 22:23:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (sa->sa_family) {
|
|
|
|
case AF_INET:
|
1999-12-13 17:18:31 +03:00
|
|
|
v4a = (u_int32_t)
|
2000-04-26 20:08:38 +04:00
|
|
|
ntohl(((const struct sockaddr_in *)sa)->sin_addr.s_addr);
|
1999-07-01 22:23:53 +04:00
|
|
|
if (IN_MULTICAST(v4a) || IN_EXPERIMENTAL(v4a))
|
|
|
|
flags |= NI_NUMERICHOST;
|
|
|
|
v4a >>= IN_CLASSA_NSHIFT;
|
2000-01-05 07:54:54 +03:00
|
|
|
if (v4a == 0)
|
1999-07-01 22:23:53 +04:00
|
|
|
flags |= NI_NUMERICHOST;
|
|
|
|
break;
|
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
1999-08-01 10:45:28 +04:00
|
|
|
{
|
2000-04-26 20:08:38 +04:00
|
|
|
const struct sockaddr_in6 *sin6;
|
|
|
|
sin6 = (const struct sockaddr_in6 *)sa;
|
1999-12-13 17:18:31 +03:00
|
|
|
switch (sin6->sin6_addr.s6_addr[0]) {
|
1999-08-01 10:45:28 +04:00
|
|
|
case 0x00:
|
|
|
|
if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr))
|
|
|
|
;
|
|
|
|
else if (IN6_IS_ADDR_LOOPBACK(&sin6->sin6_addr))
|
|
|
|
;
|
|
|
|
else
|
|
|
|
flags |= NI_NUMERICHOST;
|
|
|
|
break;
|
|
|
|
default:
|
1999-12-13 17:18:31 +03:00
|
|
|
if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr)) {
|
1999-08-01 10:45:28 +04:00
|
|
|
flags |= NI_NUMERICHOST;
|
1999-12-13 17:18:31 +03:00
|
|
|
}
|
1999-08-01 10:45:28 +04:00
|
|
|
else if (IN6_IS_ADDR_MULTICAST(&sin6->sin6_addr))
|
|
|
|
flags |= NI_NUMERICHOST;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-07-01 22:23:53 +04:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (host == NULL || hostlen == 0) {
|
1999-12-13 17:18:31 +03:00
|
|
|
/*
|
|
|
|
* do nothing in this case.
|
|
|
|
* in case you are wondering if "&&" is more correct than
|
|
|
|
* "||" here: RFC2553 says that host == NULL OR hostlen == 0
|
|
|
|
* means that the caller does not want the result.
|
|
|
|
*/
|
1999-07-01 22:23:53 +04:00
|
|
|
} else if (flags & NI_NUMERICHOST) {
|
2000-02-09 15:25:06 +03:00
|
|
|
int numaddrlen;
|
|
|
|
|
1999-08-01 10:45:28 +04:00
|
|
|
/* NUMERICHOST and NAMEREQD conflicts with each other */
|
|
|
|
if (flags & NI_NAMEREQD)
|
|
|
|
return ENI_NOHOSTNAME;
|
2000-02-09 15:25:06 +03:00
|
|
|
|
2000-04-26 20:08:38 +04:00
|
|
|
switch(afd->a_af) {
|
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
{
|
|
|
|
int error;
|
2000-02-09 15:25:06 +03:00
|
|
|
|
2000-04-26 20:08:38 +04:00
|
|
|
if ((error = ip6_parsenumeric(sa, addr, host,
|
|
|
|
hostlen, flags)) != 0)
|
|
|
|
return(error);
|
|
|
|
break;
|
|
|
|
}
|
2000-02-16 07:50:23 +03:00
|
|
|
#endif
|
2000-04-26 20:08:38 +04:00
|
|
|
default:
|
|
|
|
if (inet_ntop(afd->a_af, addr, numaddr, sizeof(numaddr))
|
|
|
|
== NULL)
|
|
|
|
return ENI_SYSTEM;
|
|
|
|
numaddrlen = strlen(numaddr);
|
|
|
|
if (numaddrlen + 1 > hostlen) /* don't forget terminator */
|
|
|
|
return ENI_MEMORY;
|
|
|
|
strcpy(host, numaddr);
|
|
|
|
break;
|
1999-12-13 17:18:31 +03:00
|
|
|
}
|
1999-07-01 22:23:53 +04:00
|
|
|
} else {
|
|
|
|
hp = gethostbyaddr(addr, afd->a_addrlen, afd->a_af);
|
2000-02-09 15:25:06 +03:00
|
|
|
h_error = h_errno;
|
1999-07-01 22:23:53 +04:00
|
|
|
|
|
|
|
if (hp) {
|
2000-04-26 20:08:38 +04:00
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* commented out, since "for local host" is not
|
|
|
|
* implemented here - see RFC2553 p30
|
|
|
|
*/
|
1999-07-01 22:23:53 +04:00
|
|
|
if (flags & NI_NOFQDN) {
|
2000-04-26 20:08:38 +04:00
|
|
|
char *p;
|
1999-07-01 22:23:53 +04:00
|
|
|
p = strchr(hp->h_name, '.');
|
2000-04-26 20:08:38 +04:00
|
|
|
if (p)
|
|
|
|
*p = '\0';
|
1999-07-01 22:23:53 +04:00
|
|
|
}
|
2000-04-26 20:08:38 +04:00
|
|
|
#endif
|
1999-07-01 22:23:53 +04:00
|
|
|
if (strlen(hp->h_name) > hostlen) {
|
|
|
|
return ENI_MEMORY;
|
|
|
|
}
|
|
|
|
strcpy(host, hp->h_name);
|
|
|
|
} else {
|
|
|
|
if (flags & NI_NAMEREQD)
|
|
|
|
return ENI_NOHOSTNAME;
|
2000-04-26 20:08:38 +04:00
|
|
|
switch(afd->a_af) {
|
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((error = ip6_parsenumeric(sa, addr, host,
|
|
|
|
hostlen,
|
|
|
|
flags)) != 0)
|
|
|
|
return(error);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
if (inet_ntop(afd->a_af, addr, host,
|
|
|
|
hostlen) == NULL)
|
|
|
|
return ENI_SYSTEM;
|
|
|
|
break;
|
|
|
|
}
|
1999-07-01 22:23:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
2000-02-09 15:25:06 +03:00
|
|
|
|
|
|
|
#ifdef INET6
|
2000-04-26 20:08:38 +04:00
|
|
|
static int
|
|
|
|
ip6_parsenumeric(sa, addr, host, hostlen, flags)
|
|
|
|
const struct sockaddr *sa;
|
|
|
|
const char *addr;
|
|
|
|
char *host;
|
|
|
|
size_t hostlen;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
int numaddrlen;
|
|
|
|
char numaddr[512];
|
|
|
|
|
|
|
|
if (inet_ntop(AF_INET6, addr, numaddr, sizeof(numaddr))
|
|
|
|
== NULL)
|
|
|
|
return ENI_SYSTEM;
|
|
|
|
|
|
|
|
numaddrlen = strlen(numaddr);
|
|
|
|
if (numaddrlen + 1 > hostlen) /* don't forget terminator */
|
|
|
|
return ENI_MEMORY;
|
|
|
|
strcpy(host, numaddr);
|
|
|
|
|
|
|
|
#ifdef NI_WITHSCOPEID
|
|
|
|
if (((const struct sockaddr_in6 *)sa)->sin6_scope_id) {
|
|
|
|
if (flags & NI_WITHSCOPEID)
|
|
|
|
{
|
|
|
|
char scopebuf[MAXHOSTNAMELEN];
|
|
|
|
int scopelen;
|
|
|
|
|
|
|
|
/* ip6_sa2str never fails */
|
|
|
|
scopelen = ip6_sa2str((const struct sockaddr_in6 *)sa,
|
|
|
|
scopebuf, sizeof(scopebuf),
|
|
|
|
0);
|
|
|
|
if (scopelen + 1 + numaddrlen + 1 > hostlen)
|
|
|
|
return ENI_MEMORY;
|
|
|
|
/*
|
|
|
|
* construct <numeric-addr><delim><scopeid>
|
|
|
|
*/
|
|
|
|
memcpy(host + numaddrlen + 1, scopebuf,
|
|
|
|
scopelen);
|
|
|
|
host[numaddrlen] = SCOPE_DELIMITER;
|
|
|
|
host[numaddrlen + 1 + scopelen] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* NI_WITHSCOPEID */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-02-09 15:25:06 +03:00
|
|
|
/* ARGSUSED */
|
2000-04-26 20:08:38 +04:00
|
|
|
static int
|
|
|
|
ip6_sa2str(sa6, buf, bufsiz, flags)
|
|
|
|
const struct sockaddr_in6 *sa6;
|
2000-02-09 15:25:06 +03:00
|
|
|
char *buf;
|
2000-04-26 20:08:38 +04:00
|
|
|
size_t bufsiz;
|
2000-02-09 15:25:06 +03:00
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
unsigned int ifindex = (unsigned int)sa6->sin6_scope_id;
|
2000-04-26 20:08:38 +04:00
|
|
|
const struct in6_addr *a6 = &sa6->sin6_addr;
|
2000-02-09 15:25:06 +03:00
|
|
|
|
|
|
|
#ifdef notyet
|
|
|
|
if (flags & NI_NUMERICSCOPE) {
|
2000-04-26 20:08:38 +04:00
|
|
|
return(snprintf(buf, bufsiz, "%d", sa6->sin6_scope_id));
|
2000-02-09 15:25:06 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-04-26 20:08:38 +04:00
|
|
|
/* if_indextoname() does not take buffer size. not a good api... */
|
|
|
|
if ((IN6_IS_ADDR_LINKLOCAL(a6) || IN6_IS_ADDR_MC_LINKLOCAL(a6)) &&
|
|
|
|
bufsiz >= IF_NAMESIZE) {
|
|
|
|
char *p = if_indextoname(ifindex, buf);
|
|
|
|
if (p) {
|
|
|
|
return(strlen(p));
|
|
|
|
}
|
|
|
|
}
|
2000-02-09 15:25:06 +03:00
|
|
|
|
2000-04-26 20:08:38 +04:00
|
|
|
/* last resort */
|
|
|
|
return(snprintf(buf, bufsiz, "%u", sa6->sin6_scope_id));
|
2000-02-09 15:25:06 +03:00
|
|
|
}
|
2000-04-26 20:08:38 +04:00
|
|
|
#endif /* INET6 */
|