2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-10 07:03:55 +05:30
|
|
|
/*
|
|
|
|
* rtm_map.c
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-06-01 04:12:12 +05:30
|
|
|
#include "libbb.h"
|
2002-11-10 07:03:55 +05:30
|
|
|
#include "rt_names.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2007-01-30 05:13:52 +05:30
|
|
|
const char *rtnl_rtntype_n2a(int id, char *buf, int len)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
switch (id) {
|
|
|
|
case RTN_UNSPEC:
|
|
|
|
return "none";
|
|
|
|
case RTN_UNICAST:
|
|
|
|
return "unicast";
|
|
|
|
case RTN_LOCAL:
|
|
|
|
return "local";
|
|
|
|
case RTN_BROADCAST:
|
|
|
|
return "broadcast";
|
|
|
|
case RTN_ANYCAST:
|
|
|
|
return "anycast";
|
|
|
|
case RTN_MULTICAST:
|
|
|
|
return "multicast";
|
|
|
|
case RTN_BLACKHOLE:
|
|
|
|
return "blackhole";
|
|
|
|
case RTN_UNREACHABLE:
|
|
|
|
return "unreachable";
|
|
|
|
case RTN_PROHIBIT:
|
|
|
|
return "prohibit";
|
|
|
|
case RTN_THROW:
|
|
|
|
return "throw";
|
|
|
|
case RTN_NAT:
|
|
|
|
return "nat";
|
|
|
|
case RTN_XRESOLVE:
|
|
|
|
return "xresolve";
|
|
|
|
default:
|
|
|
|
snprintf(buf, len, "%d", id);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int rtnl_rtntype_a2n(int *id, char *arg)
|
|
|
|
{
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char keywords[] ALIGN1 =
|
2007-07-24 21:24:42 +05:30
|
|
|
"local\0""nat\0""broadcast\0""brd\0""anycast\0"
|
|
|
|
"multicast\0""prohibit\0""unreachable\0""blackhole\0"
|
|
|
|
"xresolve\0""unicast\0""throw\0";
|
|
|
|
enum {
|
|
|
|
ARG_local = 1, ARG_nat, ARG_broadcast, ARG_brd, ARG_anycast,
|
2007-06-21 15:50:13 +05:30
|
|
|
ARG_multicast, ARG_prohibit, ARG_unreachable, ARG_blackhole,
|
|
|
|
ARG_xresolve, ARG_unicast, ARG_throw
|
|
|
|
};
|
2007-07-24 21:24:42 +05:30
|
|
|
const smalluint key = index_in_substrings(keywords, arg) + 1;
|
2002-11-10 07:03:55 +05:30
|
|
|
char *end;
|
|
|
|
unsigned long res;
|
|
|
|
|
2007-06-21 15:50:13 +05:30
|
|
|
if (key == ARG_local)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_LOCAL;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_nat)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_NAT;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_broadcast || key == ARG_brd)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_BROADCAST;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_anycast)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_ANYCAST;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_multicast)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_MULTICAST;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_prohibit)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_PROHIBIT;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_unreachable)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_UNREACHABLE;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_blackhole)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_BLACKHOLE;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_xresolve)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_XRESOLVE;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_unicast)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_UNICAST;
|
2007-06-21 15:50:13 +05:30
|
|
|
else if (key == ARG_throw)
|
2002-11-10 07:03:55 +05:30
|
|
|
res = RTN_THROW;
|
|
|
|
else {
|
|
|
|
res = strtoul(arg, &end, 0);
|
|
|
|
if (!end || end == arg || *end || res > 255)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
*id = res;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-01 00:27:37 +05:30
|
|
|
int get_rt_realms(uint32_t *realms, char *arg)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
2007-01-01 00:27:37 +05:30
|
|
|
uint32_t realm = 0;
|
2002-11-10 07:03:55 +05:30
|
|
|
char *p = strchr(arg, '/');
|
|
|
|
|
|
|
|
*realms = 0;
|
|
|
|
if (p) {
|
|
|
|
*p = 0;
|
|
|
|
if (rtnl_rtrealm_a2n(realms, arg)) {
|
|
|
|
*p = '/';
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
*realms <<= 16;
|
|
|
|
*p = '/';
|
|
|
|
arg = p+1;
|
|
|
|
}
|
|
|
|
if (*arg && rtnl_rtrealm_a2n(&realm, arg))
|
|
|
|
return -1;
|
|
|
|
*realms |= realm;
|
|
|
|
return 0;
|
|
|
|
}
|