2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-10 07:03:55 +05:30
|
|
|
/*
|
|
|
|
* utils.c
|
|
|
|
*
|
2006-01-30 22:47:14 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2002-11-10 07:03:55 +05:30
|
|
|
*
|
|
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
* Changes:
|
|
|
|
*
|
|
|
|
* Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
|
|
|
|
*/
|
|
|
|
|
2006-06-03 02:23:38 +05:30
|
|
|
#include "libbb.h"
|
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
#include "utils.h"
|
2005-09-22 16:41:11 +05:30
|
|
|
#include "inet_common.h"
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
int get_integer(int *val, char *arg, int base)
|
|
|
|
{
|
|
|
|
long res;
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
if (!arg || !*arg)
|
|
|
|
return -1;
|
|
|
|
res = strtol(arg, &ptr, base);
|
|
|
|
if (!ptr || ptr == arg || *ptr || res > INT_MAX || res < INT_MIN)
|
|
|
|
return -1;
|
|
|
|
*val = res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_unsigned(unsigned *val, char *arg, int base)
|
|
|
|
{
|
|
|
|
unsigned long res;
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
if (!arg || !*arg)
|
|
|
|
return -1;
|
|
|
|
res = strtoul(arg, &ptr, base);
|
|
|
|
if (!ptr || ptr == arg || *ptr || res > UINT_MAX)
|
|
|
|
return -1;
|
|
|
|
*val = res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-01 00:27:37 +05:30
|
|
|
int get_u32(uint32_t * val, char *arg, int base)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
unsigned long res;
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
if (!arg || !*arg)
|
|
|
|
return -1;
|
|
|
|
res = strtoul(arg, &ptr, base);
|
|
|
|
if (!ptr || ptr == arg || *ptr || res > 0xFFFFFFFFUL)
|
|
|
|
return -1;
|
|
|
|
*val = res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-01 00:27:37 +05:30
|
|
|
int get_u16(uint16_t * val, char *arg, int base)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
unsigned long res;
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
if (!arg || !*arg)
|
|
|
|
return -1;
|
|
|
|
res = strtoul(arg, &ptr, base);
|
|
|
|
if (!ptr || ptr == arg || *ptr || res > 0xFFFF)
|
|
|
|
return -1;
|
|
|
|
*val = res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-01 00:27:37 +05:30
|
|
|
int get_u8(uint8_t * val, char *arg, int base)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
unsigned long res;
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
if (!arg || !*arg)
|
|
|
|
return -1;
|
|
|
|
res = strtoul(arg, &ptr, base);
|
|
|
|
if (!ptr || ptr == arg || *ptr || res > 0xFF)
|
|
|
|
return -1;
|
|
|
|
*val = res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-01 00:27:37 +05:30
|
|
|
int get_s16(int16_t * val, char *arg, int base)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
long res;
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
if (!arg || !*arg)
|
|
|
|
return -1;
|
|
|
|
res = strtol(arg, &ptr, base);
|
|
|
|
if (!ptr || ptr == arg || *ptr || res > 0x7FFF || res < -0x8000)
|
|
|
|
return -1;
|
|
|
|
*val = res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-01 00:27:37 +05:30
|
|
|
int get_s8(int8_t * val, char *arg, int base)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
long res;
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
if (!arg || !*arg)
|
|
|
|
return -1;
|
|
|
|
res = strtol(arg, &ptr, base);
|
|
|
|
if (!ptr || ptr == arg || *ptr || res > 0x7F || res < -0x80)
|
|
|
|
return -1;
|
|
|
|
*val = res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-11-18 12:56:42 +05:30
|
|
|
int get_addr_1(inet_prefix * addr, char *name, int family)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
char *cp;
|
2002-11-18 12:56:42 +05:30
|
|
|
unsigned char *ap = (unsigned char *) addr->data;
|
2002-11-10 07:03:55 +05:30
|
|
|
int i;
|
|
|
|
|
|
|
|
memset(addr, 0, sizeof(*addr));
|
|
|
|
|
2006-11-22 02:04:21 +05:30
|
|
|
if (strcmp(name, bb_str_default) == 0 ||
|
2002-11-18 12:56:42 +05:30
|
|
|
strcmp(name, "all") == 0 || strcmp(name, "any") == 0) {
|
2002-11-10 07:03:55 +05:30
|
|
|
addr->family = family;
|
|
|
|
addr->bytelen = (family == AF_INET6 ? 16 : 4);
|
|
|
|
addr->bitlen = -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strchr(name, ':')) {
|
|
|
|
addr->family = AF_INET6;
|
|
|
|
if (family != AF_UNSPEC && family != AF_INET6)
|
|
|
|
return -1;
|
|
|
|
if (inet_pton(AF_INET6, name, addr->data) <= 0)
|
|
|
|
return -1;
|
|
|
|
addr->bytelen = 16;
|
|
|
|
addr->bitlen = -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
addr->family = AF_INET;
|
|
|
|
if (family != AF_UNSPEC && family != AF_INET)
|
|
|
|
return -1;
|
|
|
|
addr->bytelen = 4;
|
|
|
|
addr->bitlen = -1;
|
2002-11-18 12:56:42 +05:30
|
|
|
for (cp = name, i = 0; *cp; cp++) {
|
2002-11-10 07:03:55 +05:30
|
|
|
if (*cp <= '9' && *cp >= '0') {
|
2002-11-18 12:56:42 +05:30
|
|
|
ap[i] = 10 * ap[i] + (*cp - '0');
|
2002-11-10 07:03:55 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (*cp == '.' && ++i <= 3)
|
|
|
|
continue;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-11-18 12:56:42 +05:30
|
|
|
int get_prefix_1(inet_prefix * dst, char *arg, int family)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
int err;
|
2006-01-30 23:30:02 +05:30
|
|
|
int plen;
|
2002-11-10 07:03:55 +05:30
|
|
|
char *slash;
|
|
|
|
|
|
|
|
memset(dst, 0, sizeof(*dst));
|
|
|
|
|
2006-11-22 02:04:21 +05:30
|
|
|
if (strcmp(arg, bb_str_default) == 0 || strcmp(arg, "any") == 0) {
|
2002-11-10 07:03:55 +05:30
|
|
|
dst->family = family;
|
|
|
|
dst->bytelen = 0;
|
|
|
|
dst->bitlen = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
slash = strchr(arg, '/');
|
|
|
|
if (slash)
|
2007-01-30 04:21:58 +05:30
|
|
|
*slash = '\0';
|
2002-11-10 07:03:55 +05:30
|
|
|
err = get_addr_1(dst, arg, family);
|
|
|
|
if (err == 0) {
|
2002-11-18 12:56:42 +05:30
|
|
|
switch (dst->family) {
|
|
|
|
case AF_INET6:
|
|
|
|
dst->bitlen = 128;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case AF_INET:
|
|
|
|
dst->bitlen = 32;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
if (slash) {
|
2002-11-18 12:56:42 +05:30
|
|
|
if (get_integer(&plen, slash + 1, 0) || plen > dst->bitlen) {
|
2002-11-10 07:03:55 +05:30
|
|
|
err = -1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
dst->bitlen = plen;
|
|
|
|
}
|
|
|
|
}
|
2007-04-07 06:44:45 +05:30
|
|
|
done:
|
2002-11-10 07:03:55 +05:30
|
|
|
if (slash)
|
|
|
|
*slash = '/';
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2002-11-18 12:56:42 +05:30
|
|
|
int get_addr(inet_prefix * dst, char *arg, int family)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
if (family == AF_PACKET) {
|
2006-10-20 18:58:22 +05:30
|
|
|
bb_error_msg_and_die("\"%s\" may be inet address, but it is not allowed in this context", arg);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
if (get_addr_1(dst, arg, family)) {
|
2006-10-20 18:58:22 +05:30
|
|
|
bb_error_msg_and_die("an inet address is expected rather than \"%s\"", arg);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-11-18 12:56:42 +05:30
|
|
|
int get_prefix(inet_prefix * dst, char *arg, int family)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
if (family == AF_PACKET) {
|
2006-10-20 18:58:22 +05:30
|
|
|
bb_error_msg_and_die("\"%s\" may be inet address, but it is not allowed in this context", arg);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
if (get_prefix_1(dst, arg, family)) {
|
2006-10-20 18:58:22 +05:30
|
|
|
bb_error_msg_and_die("an inet address is expected rather than \"%s\"", arg);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-01 00:27:37 +05:30
|
|
|
uint32_t get_addr32(char *name)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
inet_prefix addr;
|
2002-11-18 12:56:42 +05:30
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
if (get_addr_1(&addr, name, AF_INET)) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("an IP address is expected rather than \"%s\"", name);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
return addr.data[0];
|
|
|
|
}
|
|
|
|
|
2005-04-16 10:00:38 +05:30
|
|
|
void incomplete_command(void)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
2007-01-30 04:21:58 +05:30
|
|
|
bb_error_msg_and_die("command line is not complete, try option \"help\"");
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2007-01-30 04:21:58 +05:30
|
|
|
void invarg(const char *arg, const char *opt)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
2007-01-30 04:21:58 +05:30
|
|
|
bb_error_msg_and_die(bb_msg_invalid_arg, arg, opt);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2007-01-30 04:21:58 +05:30
|
|
|
void duparg(const char *key, const char *arg)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
2007-01-30 04:21:58 +05:30
|
|
|
bb_error_msg_and_die("duplicate \"%s\": \"%s\" is the second value", key, arg);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2007-01-30 04:21:58 +05:30
|
|
|
void duparg2(const char *key, const char *arg)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
2007-01-30 04:21:58 +05:30
|
|
|
bb_error_msg_and_die("either \"%s\" is duplicate, or \"%s\" is garbage", key, arg);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2007-01-30 04:21:25 +05:30
|
|
|
int matches(const char *cmd, const char *pattern)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
int len = strlen(cmd);
|
2002-11-18 12:56:42 +05:30
|
|
|
|
2006-11-05 23:35:09 +05:30
|
|
|
return strncmp(pattern, cmd, len);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2002-11-18 12:56:42 +05:30
|
|
|
int inet_addr_match(inet_prefix * a, inet_prefix * b, int bits)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
2007-01-01 00:27:37 +05:30
|
|
|
uint32_t *a1 = a->data;
|
|
|
|
uint32_t *a2 = b->data;
|
2002-11-10 07:03:55 +05:30
|
|
|
int words = bits >> 0x05;
|
|
|
|
|
|
|
|
bits &= 0x1f;
|
|
|
|
|
|
|
|
if (words)
|
|
|
|
if (memcmp(a1, a2, words << 2))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (bits) {
|
2007-01-01 00:27:37 +05:30
|
|
|
uint32_t w1, w2;
|
|
|
|
uint32_t mask;
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
w1 = a1[words];
|
|
|
|
w2 = a2[words];
|
|
|
|
|
|
|
|
mask = htonl((0xffffffff) << (0x20 - bits));
|
|
|
|
|
|
|
|
if ((w1 ^ w2) & mask)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-30 22:47:14 +05:30
|
|
|
const char *rt_addr_n2a(int af, int ATTRIBUTE_UNUSED len,
|
|
|
|
void *addr, char *buf, int buflen)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
switch (af) {
|
|
|
|
case AF_INET:
|
|
|
|
case AF_INET6:
|
|
|
|
return inet_ntop(af, addr, buf, buflen);
|
|
|
|
default:
|
|
|
|
return "???";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char *format_host(int af, int len, void *addr, char *buf, int buflen)
|
|
|
|
{
|
|
|
|
#ifdef RESOLVE_HOSTNAMES
|
|
|
|
if (resolve_hosts) {
|
|
|
|
struct hostent *h_ent;
|
2002-11-18 12:56:42 +05:30
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
if (len <= 0) {
|
|
|
|
switch (af) {
|
|
|
|
case AF_INET:
|
|
|
|
len = 4;
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
len = 16;
|
|
|
|
break;
|
2002-11-18 12:56:42 +05:30
|
|
|
default:;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
}
|
2002-11-18 12:56:42 +05:30
|
|
|
if (len > 0 && (h_ent = gethostbyaddr(addr, len, af)) != NULL) {
|
|
|
|
snprintf(buf, buflen - 1, "%s", h_ent->h_name);
|
2002-11-10 07:03:55 +05:30
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return rt_addr_n2a(af, len, addr, buf, buflen);
|
|
|
|
}
|