2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-11-10 17:48:42 +05:30
|
|
|
/*
|
|
|
|
* stolen from net-tools-1.59 and stripped down for busybox by
|
2003-07-15 02:51:08 +05:30
|
|
|
* Erik Andersen <andersen@codepoet.org>
|
2001-11-10 17:48:42 +05:30
|
|
|
*
|
|
|
|
* Heavily modified by Manuel Novoa III Mar 12, 2001
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-06-19 01:50:07 +05:30
|
|
|
#include "libbb.h"
|
2001-11-10 17:48:42 +05:30
|
|
|
#include "inet_common.h"
|
2002-06-06 17:41:55 +05:30
|
|
|
|
2001-11-10 17:48:42 +05:30
|
|
|
int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst)
|
|
|
|
{
|
2002-11-28 15:22:23 +05:30
|
|
|
struct hostent *hp;
|
|
|
|
struct netent *np;
|
|
|
|
|
|
|
|
/* Grmpf. -FvK */
|
|
|
|
s_in->sin_family = AF_INET;
|
|
|
|
s_in->sin_port = 0;
|
|
|
|
|
|
|
|
/* Default is special, meaning 0.0.0.0. */
|
2006-11-22 02:04:21 +05:30
|
|
|
if (!strcmp(name, bb_str_default)) {
|
2002-11-28 15:22:23 +05:30
|
|
|
s_in->sin_addr.s_addr = INADDR_ANY;
|
2006-11-22 02:04:21 +05:30
|
|
|
return 1;
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
|
|
|
/* 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 */
|
2001-11-10 17:48:42 +05:30
|
|
|
#ifdef DEBUG
|
2002-11-28 15:22:23 +05:30
|
|
|
if (hostfirst) {
|
2007-01-22 19:42:08 +05:30
|
|
|
bb_error_msg("gethostbyname(%s)", name);
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
2001-11-10 17:48:42 +05:30
|
|
|
#endif
|
2007-01-22 19:42:08 +05:30
|
|
|
if (hostfirst) {
|
|
|
|
hp = gethostbyname(name);
|
|
|
|
if (hp != NULL) {
|
|
|
|
memcpy(&s_in->sin_addr, hp->h_addr_list[0],
|
|
|
|
sizeof(struct in_addr));
|
|
|
|
return 0;
|
|
|
|
}
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
|
|
|
/* Try the NETWORKS database to see if this is a known network. */
|
2001-11-10 17:48:42 +05:30
|
|
|
#ifdef DEBUG
|
2007-01-22 19:42:08 +05:30
|
|
|
bb_error_msg("getnetbyname(%s)", name);
|
2001-11-10 17:48:42 +05:30
|
|
|
#endif
|
2007-01-22 19:42:08 +05:30
|
|
|
np = getnetbyname(name);
|
|
|
|
if (np != NULL) {
|
2002-11-28 15:22:23 +05:30
|
|
|
s_in->sin_addr.s_addr = htonl(np->n_net);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (hostfirst) {
|
|
|
|
/* Don't try again */
|
|
|
|
return -1;
|
|
|
|
}
|
2001-11-10 17:48:42 +05:30
|
|
|
#ifdef DEBUG
|
2002-11-28 15:22:23 +05:30
|
|
|
res_init();
|
|
|
|
_res.options |= RES_DEBUG;
|
2001-11-10 17:48:42 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2007-01-22 19:42:08 +05:30
|
|
|
bb_error_msg("gethostbyname(%s)", name);
|
2001-11-10 17:48:42 +05:30
|
|
|
#endif
|
2007-01-22 19:42:08 +05:30
|
|
|
hp = gethostbyname(name);
|
|
|
|
if (hp == NULL) {
|
2002-11-28 15:22:23 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2007-01-22 19:42:08 +05:30
|
|
|
memcpy(&s_in->sin_addr, hp->h_addr_list[0], sizeof(struct in_addr));
|
2002-11-28 15:22:23 +05:30
|
|
|
return 0;
|
2001-11-10 17:48:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* cache */
|
|
|
|
struct addr {
|
2002-11-28 15:22:23 +05:30
|
|
|
struct sockaddr_in addr;
|
|
|
|
char *name;
|
|
|
|
int host;
|
|
|
|
struct addr *next;
|
2001-11-10 17:48:42 +05:30
|
|
|
};
|
|
|
|
|
2007-01-22 19:42:08 +05:30
|
|
|
static struct addr *INET_nn = NULL; /* addr-to-name cache */
|
2001-11-10 17:48:42 +05:30
|
|
|
|
|
|
|
/* numeric: & 0x8000: default instead of *,
|
|
|
|
* & 0x4000: host instead of net,
|
|
|
|
* & 0x0fff: don't resolve
|
|
|
|
*/
|
|
|
|
int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in,
|
2002-11-28 15:22:23 +05:30
|
|
|
int numeric, unsigned int netmask)
|
2001-11-10 17:48:42 +05:30
|
|
|
{
|
2002-11-28 15:22:23 +05:30
|
|
|
struct hostent *ent;
|
|
|
|
struct netent *np;
|
|
|
|
struct addr *pn;
|
2007-01-22 19:42:08 +05:30
|
|
|
uint32_t ad, host_ad;
|
2002-11-28 15:22:23 +05:30
|
|
|
int host = 0;
|
|
|
|
|
|
|
|
/* Grmpf. -FvK */
|
|
|
|
if (s_in->sin_family != AF_INET) {
|
2001-11-10 17:48:42 +05:30
|
|
|
#ifdef DEBUG
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg("rresolve: unsupport address family %d !",
|
2002-11-28 15:22:23 +05:30
|
|
|
s_in->sin_family);
|
2001-11-10 17:48:42 +05:30
|
|
|
#endif
|
2002-11-28 15:22:23 +05:30
|
|
|
errno = EAFNOSUPPORT;
|
2006-11-22 02:04:21 +05:30
|
|
|
return -1;
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
2007-01-22 19:42:08 +05:30
|
|
|
ad = s_in->sin_addr.s_addr;
|
2001-11-10 17:48:42 +05:30
|
|
|
#ifdef DEBUG
|
2007-01-22 19:42:08 +05:30
|
|
|
bb_error_msg("rresolve: %08x, mask %08x, num %08x", (unsigned)ad, netmask, numeric);
|
2001-11-10 17:48:42 +05:30
|
|
|
#endif
|
2002-11-28 15:22:23 +05:30
|
|
|
if (ad == INADDR_ANY) {
|
|
|
|
if ((numeric & 0x0FFF) == 0) {
|
|
|
|
if (numeric & 0x8000)
|
2006-11-22 02:04:21 +05:30
|
|
|
safe_strncpy(name, bb_str_default, len);
|
2002-11-28 15:22:23 +05:30
|
|
|
else
|
|
|
|
safe_strncpy(name, "*", len);
|
2006-11-22 02:04:21 +05:30
|
|
|
return 0;
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
if (numeric & 0x0FFF) {
|
|
|
|
safe_strncpy(name, inet_ntoa(s_in->sin_addr), len);
|
2006-11-22 02:04:21 +05:30
|
|
|
return 0;
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
2001-11-10 17:48:42 +05:30
|
|
|
|
2002-11-28 15:22:23 +05:30
|
|
|
if ((ad & (~netmask)) != 0 || (numeric & 0x4000))
|
|
|
|
host = 1;
|
|
|
|
pn = INET_nn;
|
|
|
|
while (pn != NULL) {
|
|
|
|
if (pn->addr.sin_addr.s_addr == ad && pn->host == host) {
|
|
|
|
safe_strncpy(name, pn->name, len);
|
2001-11-10 17:48:42 +05:30
|
|
|
#ifdef DEBUG
|
2007-01-22 19:42:08 +05:30
|
|
|
bb_error_msg("rresolve: found %s %08x in cache",
|
|
|
|
(host ? "host" : "net"), (unsigned)ad);
|
2001-11-10 17:48:42 +05:30
|
|
|
#endif
|
2006-11-22 02:04:21 +05:30
|
|
|
return 0;
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
|
|
|
pn = pn->next;
|
2001-11-10 17:48:42 +05:30
|
|
|
}
|
|
|
|
|
2002-11-28 15:22:23 +05:30
|
|
|
host_ad = ntohl(ad);
|
|
|
|
np = NULL;
|
|
|
|
ent = NULL;
|
|
|
|
if (host) {
|
2001-11-10 17:48:42 +05:30
|
|
|
#ifdef DEBUG
|
2007-01-22 19:42:08 +05:30
|
|
|
bb_error_msg("gethostbyaddr (%08x)", (unsigned)ad);
|
2001-11-10 17:48:42 +05:30
|
|
|
#endif
|
2002-11-28 15:22:23 +05:30
|
|
|
ent = gethostbyaddr((char *) &ad, 4, AF_INET);
|
|
|
|
if (ent != NULL) {
|
|
|
|
safe_strncpy(name, ent->h_name, len);
|
|
|
|
}
|
|
|
|
} else {
|
2001-11-10 17:48:42 +05:30
|
|
|
#ifdef DEBUG
|
2007-01-22 19:42:08 +05:30
|
|
|
bb_error_msg("getnetbyaddr (%08x)", (unsigned)host_ad);
|
2001-11-10 17:48:42 +05:30
|
|
|
#endif
|
2002-11-28 15:22:23 +05:30
|
|
|
np = getnetbyaddr(host_ad, AF_INET);
|
|
|
|
if (np != NULL) {
|
|
|
|
safe_strncpy(name, np->n_name, len);
|
|
|
|
}
|
|
|
|
}
|
2007-01-22 19:42:08 +05:30
|
|
|
if (!ent && !np) {
|
2002-11-28 15:22:23 +05:30
|
|
|
safe_strncpy(name, inet_ntoa(s_in->sin_addr), len);
|
|
|
|
}
|
2006-12-20 05:06:04 +05:30
|
|
|
pn = xmalloc(sizeof(struct addr));
|
2002-11-28 15:22:23 +05:30
|
|
|
pn->addr = *s_in;
|
|
|
|
pn->next = INET_nn;
|
|
|
|
pn->host = host;
|
2006-08-03 21:11:12 +05:30
|
|
|
pn->name = xstrdup(name);
|
2002-11-28 15:22:23 +05:30
|
|
|
INET_nn = pn;
|
2006-11-22 02:04:21 +05:30
|
|
|
return 0;
|
2001-11-10 17:48:42 +05:30
|
|
|
}
|
2002-07-03 17:16:38 +05:30
|
|
|
|
2002-11-26 08:10:56 +05:30
|
|
|
#ifdef CONFIG_FEATURE_IPV6
|
2002-07-03 17:16:38 +05:30
|
|
|
|
2004-03-10 13:12:38 +05:30
|
|
|
int INET6_resolve(const char *name, struct sockaddr_in6 *sin6)
|
2002-07-03 17:16:38 +05:30
|
|
|
{
|
2002-11-28 15:22:23 +05:30
|
|
|
struct addrinfo req, *ai;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
memset(&req, '\0', sizeof req);
|
|
|
|
req.ai_family = AF_INET6;
|
2006-11-22 02:04:21 +05:30
|
|
|
s = getaddrinfo(name, NULL, &req, &ai);
|
|
|
|
if (s) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg("getaddrinfo: %s: %d", name, s);
|
2002-11-28 15:22:23 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
memcpy(sin6, ai->ai_addr, sizeof(struct sockaddr_in6));
|
|
|
|
freeaddrinfo(ai);
|
2006-11-22 02:04:21 +05:30
|
|
|
return 0;
|
2002-07-03 17:16:38 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef IN6_IS_ADDR_UNSPECIFIED
|
2002-11-26 08:10:56 +05:30
|
|
|
# define IN6_IS_ADDR_UNSPECIFIED(a) \
|
2006-05-19 18:14:16 +05:30
|
|
|
(((uint32_t *) (a))[0] == 0 && ((uint32_t *) (a))[1] == 0 && \
|
|
|
|
((uint32_t *) (a))[2] == 0 && ((uint32_t *) (a))[3] == 0)
|
2002-07-03 17:16:38 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-11-28 15:22:23 +05:30
|
|
|
int INET6_rresolve(char *name, size_t len, struct sockaddr_in6 *sin6,
|
|
|
|
int numeric)
|
2002-07-03 17:16:38 +05:30
|
|
|
{
|
2002-11-28 15:22:23 +05:30
|
|
|
int s;
|
2002-07-03 17:16:38 +05:30
|
|
|
|
2002-11-28 15:22:23 +05:30
|
|
|
/* Grmpf. -FvK */
|
|
|
|
if (sin6->sin6_family != AF_INET6) {
|
2002-07-03 17:16:38 +05:30
|
|
|
#ifdef DEBUG
|
2006-11-22 02:04:21 +05:30
|
|
|
bb_error_msg("rresolve: unsupport address family %d!",
|
2002-11-28 15:22:23 +05:30
|
|
|
sin6->sin6_family);
|
2002-07-03 17:16:38 +05:30
|
|
|
#endif
|
2002-11-28 15:22:23 +05:30
|
|
|
errno = EAFNOSUPPORT;
|
2006-11-22 02:04:21 +05:30
|
|
|
return -1;
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
|
|
|
if (numeric & 0x7FFF) {
|
|
|
|
inet_ntop(AF_INET6, &sin6->sin6_addr, name, len);
|
2006-11-22 02:04:21 +05:30
|
|
|
return 0;
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
|
|
|
if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
|
|
|
|
if (numeric & 0x8000) {
|
2006-11-22 02:04:21 +05:30
|
|
|
strcpy(name, bb_str_default);
|
2002-11-28 15:22:23 +05:30
|
|
|
} else {
|
2006-11-22 02:04:21 +05:30
|
|
|
name[0] = '*';
|
|
|
|
name[1] = '\0';
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
2006-11-22 02:04:21 +05:30
|
|
|
return 0;
|
2002-11-28 15:22:23 +05:30
|
|
|
}
|
|
|
|
|
2007-01-22 19:42:08 +05:30
|
|
|
s = getnameinfo((struct sockaddr *) sin6, sizeof(struct sockaddr_in6),
|
|
|
|
name, len, NULL, 0, 0);
|
2002-11-28 15:22:23 +05:30
|
|
|
if (s) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg("getnameinfo failed");
|
2002-11-28 15:22:23 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2006-11-22 02:04:21 +05:30
|
|
|
return 0;
|
2002-07-03 17:16:38 +05:30
|
|
|
}
|
|
|
|
|
2002-11-28 15:22:23 +05:30
|
|
|
#endif /* CONFIG_FEATURE_IPV6 */
|