2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-11-10 12:18:42 +00:00
|
|
|
/*
|
|
|
|
* stolen from net-tools-1.59 and stripped down for busybox by
|
2003-07-14 21:21:08 +00:00
|
|
|
* Erik Andersen <andersen@codepoet.org>
|
2001-11-10 12:18:42 +00:00
|
|
|
*
|
|
|
|
* Heavily modified by Manuel Novoa III Mar 12, 2001
|
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2001-11-10 12:18:42 +00:00
|
|
|
*/
|
|
|
|
|
2006-06-18 20:20:07 +00:00
|
|
|
#include "libbb.h"
|
2001-11-10 12:18:42 +00:00
|
|
|
#include "inet_common.h"
|
2002-06-06 12:11:55 +00:00
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
int FAST_FUNC INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst)
|
2001-11-10 12:18:42 +00:00
|
|
|
{
|
2002-11-28 09:52:23 +00:00
|
|
|
struct hostent *hp;
|
2007-06-19 11:24:47 +00:00
|
|
|
#if ENABLE_FEATURE_ETC_NETWORKS
|
2002-11-28 09:52:23 +00:00
|
|
|
struct netent *np;
|
2007-06-19 11:24:47 +00:00
|
|
|
#endif
|
2002-11-28 09:52:23 +00:00
|
|
|
|
|
|
|
/* Grmpf. -FvK */
|
|
|
|
s_in->sin_family = AF_INET;
|
|
|
|
s_in->sin_port = 0;
|
|
|
|
|
|
|
|
/* Default is special, meaning 0.0.0.0. */
|
2010-09-01 10:01:17 +00:00
|
|
|
if (strcmp(name, "default") == 0) {
|
2002-11-28 09:52:23 +00:00
|
|
|
s_in->sin_addr.s_addr = INADDR_ANY;
|
2006-11-21 20:34:21 +00:00
|
|
|
return 1;
|
2002-11-28 09:52:23 +00:00
|
|
|
}
|
|
|
|
/* Look to see if it's a dotted quad. */
|
|
|
|
if (inet_aton(name, &s_in->sin_addr)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* If we expect this to be a hostname, try hostname database first */
|
|
|
|
if (hostfirst) {
|
2015-02-03 11:07:40 +00:00
|
|
|
#ifdef DEBUG
|
2007-01-22 14:12:08 +00:00
|
|
|
bb_error_msg("gethostbyname(%s)", name);
|
2001-11-10 12:18:42 +00:00
|
|
|
#endif
|
2007-01-22 14:12:08 +00:00
|
|
|
hp = gethostbyname(name);
|
2015-02-03 11:07:40 +00:00
|
|
|
if (hp) {
|
2007-01-22 14:12:08 +00:00
|
|
|
memcpy(&s_in->sin_addr, hp->h_addr_list[0],
|
|
|
|
sizeof(struct in_addr));
|
|
|
|
return 0;
|
|
|
|
}
|
2002-11-28 09:52:23 +00:00
|
|
|
}
|
2007-06-19 11:24:47 +00:00
|
|
|
#if ENABLE_FEATURE_ETC_NETWORKS
|
2002-11-28 09:52:23 +00:00
|
|
|
/* Try the NETWORKS database to see if this is a known network. */
|
2001-11-10 12:18:42 +00:00
|
|
|
#ifdef DEBUG
|
2007-01-22 14:12:08 +00:00
|
|
|
bb_error_msg("getnetbyname(%s)", name);
|
2001-11-10 12:18:42 +00:00
|
|
|
#endif
|
2007-01-22 14:12:08 +00:00
|
|
|
np = getnetbyname(name);
|
2015-02-03 11:07:40 +00:00
|
|
|
if (np) {
|
2002-11-28 09:52:23 +00:00
|
|
|
s_in->sin_addr.s_addr = htonl(np->n_net);
|
|
|
|
return 1;
|
|
|
|
}
|
2007-06-19 11:24:47 +00:00
|
|
|
#endif
|
2002-11-28 09:52:23 +00:00
|
|
|
if (hostfirst) {
|
|
|
|
/* Don't try again */
|
|
|
|
return -1;
|
|
|
|
}
|
2001-11-10 12:18:42 +00:00
|
|
|
#ifdef DEBUG
|
2002-11-28 09:52:23 +00:00
|
|
|
res_init();
|
|
|
|
_res.options |= RES_DEBUG;
|
2007-01-22 14:12:08 +00:00
|
|
|
bb_error_msg("gethostbyname(%s)", name);
|
2001-11-10 12:18:42 +00:00
|
|
|
#endif
|
2007-01-22 14:12:08 +00:00
|
|
|
hp = gethostbyname(name);
|
2015-02-03 11:07:40 +00:00
|
|
|
if (!hp) {
|
2002-11-28 09:52:23 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2007-01-22 14:12:08 +00:00
|
|
|
memcpy(&s_in->sin_addr, hp->h_addr_list[0], sizeof(struct in_addr));
|
2002-11-28 09:52:23 +00:00
|
|
|
return 0;
|
2001-11-10 12:18:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-03 11:07:40 +00:00
|
|
|
/* numeric: & 0x8000: "default" instead of "*",
|
2001-11-10 12:18:42 +00:00
|
|
|
* & 0x4000: host instead of net,
|
|
|
|
* & 0x0fff: don't resolve
|
|
|
|
*/
|
2008-06-27 02:52:20 +00:00
|
|
|
char* FAST_FUNC INET_rresolve(struct sockaddr_in *s_in, int numeric, uint32_t netmask)
|
2001-11-10 12:18:42 +00:00
|
|
|
{
|
2007-06-19 11:12:46 +00:00
|
|
|
/* addr-to-name cache */
|
|
|
|
struct addr {
|
|
|
|
struct addr *next;
|
2015-02-03 11:07:40 +00:00
|
|
|
uint32_t nip;
|
|
|
|
smallint is_host;
|
2007-06-19 11:12:46 +00:00
|
|
|
char name[1];
|
|
|
|
};
|
|
|
|
static struct addr *cache = NULL;
|
|
|
|
|
2002-11-28 09:52:23 +00:00
|
|
|
struct addr *pn;
|
2007-06-19 11:12:46 +00:00
|
|
|
char *name;
|
2015-02-03 11:07:40 +00:00
|
|
|
uint32_t nip;
|
|
|
|
smallint is_host;
|
2002-11-28 09:52:23 +00:00
|
|
|
|
|
|
|
if (s_in->sin_family != AF_INET) {
|
2001-11-10 12:18:42 +00:00
|
|
|
#ifdef DEBUG
|
2007-06-19 11:10:02 +00:00
|
|
|
bb_error_msg("rresolve: unsupported address family %d!",
|
2013-01-14 14:57:44 +00:00
|
|
|
s_in->sin_family);
|
2001-11-10 12:18:42 +00:00
|
|
|
#endif
|
2002-11-28 09:52:23 +00:00
|
|
|
errno = EAFNOSUPPORT;
|
2007-06-19 11:12:46 +00:00
|
|
|
return NULL;
|
2002-11-28 09:52:23 +00:00
|
|
|
}
|
2015-02-03 11:07:40 +00:00
|
|
|
nip = s_in->sin_addr.s_addr;
|
2001-11-10 12:18:42 +00:00
|
|
|
#ifdef DEBUG
|
2015-02-03 11:07:40 +00:00
|
|
|
bb_error_msg("rresolve: %08x mask:%08x num:%08x", (unsigned)nip, netmask, numeric);
|
2001-11-10 12:18:42 +00:00
|
|
|
#endif
|
2007-06-19 11:12:46 +00:00
|
|
|
if (numeric & 0x0FFF)
|
2015-02-03 11:07:40 +00:00
|
|
|
return xmalloc_sockaddr2dotted_noport((void*)s_in);
|
|
|
|
if (nip == INADDR_ANY) {
|
|
|
|
if (numeric & 0x8000)
|
|
|
|
return xstrdup("default");
|
|
|
|
return xstrdup("*");
|
|
|
|
}
|
|
|
|
|
|
|
|
is_host = ((nip & (~netmask)) != 0 || (numeric & 0x4000));
|
2001-11-10 12:18:42 +00:00
|
|
|
|
2007-06-19 11:12:46 +00:00
|
|
|
pn = cache;
|
|
|
|
while (pn) {
|
2015-02-03 11:07:40 +00:00
|
|
|
if (pn->nip == nip && pn->is_host == is_host) {
|
2001-11-10 12:18:42 +00:00
|
|
|
#ifdef DEBUG
|
2007-01-22 14:12:08 +00:00
|
|
|
bb_error_msg("rresolve: found %s %08x in cache",
|
2015-02-03 11:07:40 +00:00
|
|
|
(is_host ? "host" : "net"), (unsigned)nip);
|
2001-11-10 12:18:42 +00:00
|
|
|
#endif
|
2007-06-19 11:12:46 +00:00
|
|
|
return xstrdup(pn->name);
|
2002-11-28 09:52:23 +00:00
|
|
|
}
|
|
|
|
pn = pn->next;
|
2001-11-10 12:18:42 +00:00
|
|
|
}
|
|
|
|
|
2007-06-19 11:12:46 +00:00
|
|
|
name = NULL;
|
2015-02-03 11:07:40 +00:00
|
|
|
if (is_host) {
|
2001-11-10 12:18:42 +00:00
|
|
|
#ifdef DEBUG
|
2015-02-03 11:07:40 +00:00
|
|
|
bb_error_msg("sockaddr2host_noport(%08x)", (unsigned)nip);
|
2001-11-10 12:18:42 +00:00
|
|
|
#endif
|
2015-02-03 11:07:40 +00:00
|
|
|
name = xmalloc_sockaddr2host_noport((void*)s_in);
|
2007-06-19 11:24:47 +00:00
|
|
|
} else if (ENABLE_FEATURE_ETC_NETWORKS) {
|
2007-06-19 11:12:46 +00:00
|
|
|
struct netent *np;
|
2001-11-10 12:18:42 +00:00
|
|
|
#ifdef DEBUG
|
2015-02-03 11:07:40 +00:00
|
|
|
bb_error_msg("getnetbyaddr(%08x)", (unsigned)ntohl(nip));
|
2001-11-10 12:18:42 +00:00
|
|
|
#endif
|
2015-02-03 11:07:40 +00:00
|
|
|
np = getnetbyaddr(ntohl(nip), AF_INET);
|
2007-06-19 11:12:46 +00:00
|
|
|
if (np)
|
|
|
|
name = xstrdup(np->n_name);
|
2002-11-28 09:52:23 +00:00
|
|
|
}
|
2007-06-19 11:12:46 +00:00
|
|
|
if (!name)
|
2015-02-03 11:07:40 +00:00
|
|
|
name = xmalloc_sockaddr2dotted_noport((void*)s_in);
|
|
|
|
|
2007-06-19 11:12:46 +00:00
|
|
|
pn = xmalloc(sizeof(*pn) + strlen(name)); /* no '+ 1', it's already accounted for */
|
|
|
|
pn->next = cache;
|
2015-02-03 11:07:40 +00:00
|
|
|
pn->nip = nip;
|
|
|
|
pn->is_host = is_host;
|
2007-06-19 11:12:46 +00:00
|
|
|
strcpy(pn->name, name);
|
|
|
|
cache = pn;
|
2015-02-03 11:07:40 +00:00
|
|
|
|
2007-06-19 11:12:46 +00:00
|
|
|
return name;
|
2001-11-10 12:18:42 +00:00
|
|
|
}
|
2002-07-03 11:46:38 +00:00
|
|
|
|
2007-08-13 10:36:25 +00:00
|
|
|
#if ENABLE_FEATURE_IPV6
|
2002-07-03 11:46:38 +00:00
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
int FAST_FUNC INET6_resolve(const char *name, struct sockaddr_in6 *sin6)
|
2002-07-03 11:46:38 +00:00
|
|
|
{
|
2011-03-22 19:14:26 +00:00
|
|
|
struct addrinfo req, *ai = NULL;
|
2002-11-28 09:52:23 +00:00
|
|
|
int s;
|
|
|
|
|
2011-03-22 19:14:26 +00:00
|
|
|
memset(&req, 0, sizeof(req));
|
2002-11-28 09:52:23 +00:00
|
|
|
req.ai_family = AF_INET6;
|
2006-11-21 20:34:21 +00:00
|
|
|
s = getaddrinfo(name, NULL, &req, &ai);
|
2011-03-22 19:14:26 +00:00
|
|
|
if (s != 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg("getaddrinfo: %s: %d", name, s);
|
2002-11-28 09:52:23 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2011-03-22 19:14:26 +00:00
|
|
|
memcpy(sin6, ai->ai_addr, sizeof(*sin6));
|
2013-11-29 15:39:28 +00:00
|
|
|
freeaddrinfo(ai);
|
2006-11-21 20:34:21 +00:00
|
|
|
return 0;
|
2002-07-03 11:46:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef IN6_IS_ADDR_UNSPECIFIED
|
2002-11-26 02:40:56 +00:00
|
|
|
# define IN6_IS_ADDR_UNSPECIFIED(a) \
|
2006-05-19 12:44:16 +00:00
|
|
|
(((uint32_t *) (a))[0] == 0 && ((uint32_t *) (a))[1] == 0 && \
|
|
|
|
((uint32_t *) (a))[2] == 0 && ((uint32_t *) (a))[3] == 0)
|
2002-07-03 11:46:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
char* FAST_FUNC INET6_rresolve(struct sockaddr_in6 *sin6, int numeric)
|
2002-07-03 11:46:38 +00:00
|
|
|
{
|
2002-11-28 09:52:23 +00:00
|
|
|
if (sin6->sin6_family != AF_INET6) {
|
2002-07-03 11:46:38 +00:00
|
|
|
#ifdef DEBUG
|
2009-06-18 11:23:58 +00:00
|
|
|
bb_error_msg("rresolve: unsupported address family %d!",
|
2013-01-14 14:57:44 +00:00
|
|
|
sin6->sin6_family);
|
2002-07-03 11:46:38 +00:00
|
|
|
#endif
|
2002-11-28 09:52:23 +00:00
|
|
|
errno = EAFNOSUPPORT;
|
2007-06-19 11:12:46 +00:00
|
|
|
return NULL;
|
2002-11-28 09:52:23 +00:00
|
|
|
}
|
|
|
|
if (numeric & 0x7FFF) {
|
2015-02-03 11:07:40 +00:00
|
|
|
return xmalloc_sockaddr2dotted_noport((void*)sin6);
|
2002-11-28 09:52:23 +00:00
|
|
|
}
|
|
|
|
if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
|
2007-06-19 11:12:46 +00:00
|
|
|
if (numeric & 0x8000)
|
2010-09-01 10:01:17 +00:00
|
|
|
return xstrdup("default");
|
2007-06-19 11:12:46 +00:00
|
|
|
return xstrdup("*");
|
2002-11-28 09:52:23 +00:00
|
|
|
}
|
|
|
|
|
2015-02-03 11:07:40 +00:00
|
|
|
return xmalloc_sockaddr2host_noport((void*)sin6);
|
2002-07-03 11:46:38 +00:00
|
|
|
}
|
|
|
|
|
2010-10-28 16:57:19 +00:00
|
|
|
#endif /* CONFIG_FEATURE_IPV6 */
|