2006-01-12 17:38:46 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-10 07:03:55 +05:30
|
|
|
/*
|
|
|
|
* iproute.c "ip route".
|
|
|
|
*
|
2005-10-26 16:17:26 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
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
|
|
|
|
* Kunihiro Ishiguro <kunihiro@zebra.org> 001102: rtnh_ifindex was not initialized
|
|
|
|
*/
|
|
|
|
|
2007-06-01 04:12:12 +05:30
|
|
|
#include "ip_common.h" /* #include "libbb.h" is inside */
|
2002-11-10 07:03:55 +05:30
|
|
|
#include "rt_names.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
#ifndef RTAX_RTTVAR
|
|
|
|
#define RTAX_RTTVAR RTAX_HOPS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2007-04-07 06:44:45 +05:30
|
|
|
typedef struct filter_t {
|
2002-11-10 07:03:55 +05:30
|
|
|
int tb;
|
2008-05-31 13:03:18 +05:30
|
|
|
smallint flushed;
|
2003-02-15 17:20:33 +05:30
|
|
|
char *flushb;
|
2002-11-10 07:03:55 +05:30
|
|
|
int flushp;
|
|
|
|
int flushe;
|
|
|
|
struct rtnl_handle *rth;
|
|
|
|
int protocol, protocolmask;
|
|
|
|
int scope, scopemask;
|
|
|
|
int type, typemask;
|
|
|
|
int tos, tosmask;
|
|
|
|
int iif, iifmask;
|
|
|
|
int oif, oifmask;
|
|
|
|
int realm, realmmask;
|
|
|
|
inet_prefix rprefsrc;
|
|
|
|
inet_prefix rvia;
|
|
|
|
inet_prefix rdst;
|
|
|
|
inet_prefix mdst;
|
|
|
|
inet_prefix rsrc;
|
|
|
|
inet_prefix msrc;
|
2007-04-07 06:44:45 +05:30
|
|
|
} filter_t;
|
|
|
|
|
|
|
|
#define filter (*(filter_t*)&bb_common_bufsiz1)
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2003-02-15 17:20:33 +05:30
|
|
|
static int flush_update(void)
|
|
|
|
{
|
|
|
|
if (rtnl_send(filter.rth, filter.flushb, filter.flushp) < 0) {
|
2007-04-07 06:44:45 +05:30
|
|
|
bb_perror_msg("failed to send flush request");
|
2003-02-15 17:20:33 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
filter.flushp = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-01 00:37:23 +05:30
|
|
|
static unsigned get_hz(void)
|
2007-01-01 00:28:32 +05:30
|
|
|
{
|
2007-01-01 00:37:23 +05:30
|
|
|
static unsigned hz_internal;
|
2007-01-01 00:28:32 +05:30
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
if (hz_internal)
|
|
|
|
return hz_internal;
|
|
|
|
|
2008-07-22 04:35:26 +05:30
|
|
|
fp = fopen_for_read("/proc/net/psched");
|
2007-01-01 00:28:32 +05:30
|
|
|
if (fp) {
|
|
|
|
unsigned nom, denom;
|
|
|
|
|
|
|
|
if (fscanf(fp, "%*08x%*08x%08x%08x", &nom, &denom) == 2)
|
|
|
|
if (nom == 1000000)
|
|
|
|
hz_internal = denom;
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
if (!hz_internal)
|
|
|
|
hz_internal = sysconf(_SC_CLK_TCK);
|
|
|
|
return hz_internal;
|
|
|
|
}
|
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static int print_route(const struct sockaddr_nl *who UNUSED_PARAM,
|
|
|
|
struct nlmsghdr *n, void *arg UNUSED_PARAM)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
struct rtmsg *r = NLMSG_DATA(n);
|
|
|
|
int len = n->nlmsg_len;
|
|
|
|
struct rtattr * tb[RTA_MAX+1];
|
|
|
|
char abuf[256];
|
2003-04-26 07:52:19 +05:30
|
|
|
inet_prefix dst;
|
|
|
|
inet_prefix src;
|
2002-11-10 07:03:55 +05:30
|
|
|
int host_len = -1;
|
|
|
|
SPRINT_BUF(b1);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
if (n->nlmsg_type != RTM_NEWROUTE && n->nlmsg_type != RTM_DELROUTE) {
|
|
|
|
fprintf(stderr, "Not a route: %08x %08x %08x\n",
|
|
|
|
n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
|
|
|
|
return 0;
|
|
|
|
}
|
2003-02-15 17:20:33 +05:30
|
|
|
if (filter.flushb && n->nlmsg_type != RTM_NEWROUTE)
|
|
|
|
return 0;
|
2002-11-10 07:03:55 +05:30
|
|
|
len -= NLMSG_LENGTH(sizeof(*r));
|
2007-04-12 17:04:39 +05:30
|
|
|
if (len < 0)
|
|
|
|
bb_error_msg_and_die("wrong nlmsg len %d", len);
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
if (r->rtm_family == AF_INET6)
|
|
|
|
host_len = 128;
|
|
|
|
else if (r->rtm_family == AF_INET)
|
|
|
|
host_len = 32;
|
|
|
|
|
|
|
|
if (r->rtm_family == AF_INET6) {
|
|
|
|
if (filter.tb) {
|
|
|
|
if (filter.tb < 0) {
|
2007-11-26 23:59:52 +05:30
|
|
|
if (!(r->rtm_flags & RTM_F_CLONED)) {
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
} else {
|
2007-11-26 23:59:52 +05:30
|
|
|
if (r->rtm_flags & RTM_F_CLONED) {
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
if (filter.tb == RT_TABLE_LOCAL) {
|
2002-11-28 16:47:19 +05:30
|
|
|
if (r->rtm_type != RTN_LOCAL) {
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
} else if (filter.tb == RT_TABLE_MAIN) {
|
2002-11-28 16:47:19 +05:30
|
|
|
if (r->rtm_type == RTN_LOCAL) {
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2002-11-28 16:47:19 +05:30
|
|
|
if (filter.tb > 0 && filter.tb != r->rtm_table) {
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
if (filter.rdst.family &&
|
2002-11-28 16:47:19 +05:30
|
|
|
(r->rtm_family != filter.rdst.family || filter.rdst.bitlen > r->rtm_dst_len)) {
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
if (filter.mdst.family &&
|
|
|
|
(r->rtm_family != filter.mdst.family ||
|
2002-11-28 16:47:19 +05:30
|
|
|
(filter.mdst.bitlen >= 0 && filter.mdst.bitlen < r->rtm_dst_len))) {
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
if (filter.rsrc.family &&
|
2002-11-28 16:47:19 +05:30
|
|
|
(r->rtm_family != filter.rsrc.family || filter.rsrc.bitlen > r->rtm_src_len)) {
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
if (filter.msrc.family &&
|
|
|
|
(r->rtm_family != filter.msrc.family ||
|
2002-11-28 16:47:19 +05:30
|
|
|
(filter.msrc.bitlen >= 0 && filter.msrc.bitlen < r->rtm_src_len))) {
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
memset(tb, 0, sizeof(tb));
|
|
|
|
parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
|
|
|
|
|
2003-04-26 07:52:19 +05:30
|
|
|
if (filter.rdst.family && inet_addr_match(&dst, &filter.rdst, filter.rdst.bitlen))
|
|
|
|
return 0;
|
|
|
|
if (filter.mdst.family && filter.mdst.bitlen >= 0 &&
|
|
|
|
inet_addr_match(&dst, &filter.mdst, r->rtm_dst_len))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (filter.rsrc.family && inet_addr_match(&src, &filter.rsrc, filter.rsrc.bitlen))
|
|
|
|
return 0;
|
|
|
|
if (filter.msrc.family && filter.msrc.bitlen >= 0 &&
|
|
|
|
inet_addr_match(&src, &filter.msrc, r->rtm_src_len))
|
|
|
|
return 0;
|
|
|
|
|
2003-02-15 17:20:33 +05:30
|
|
|
if (filter.flushb &&
|
|
|
|
r->rtm_family == AF_INET6 &&
|
|
|
|
r->rtm_dst_len == 0 &&
|
|
|
|
r->rtm_type == RTN_UNREACHABLE &&
|
|
|
|
tb[RTA_PRIORITY] &&
|
|
|
|
*(int*)RTA_DATA(tb[RTA_PRIORITY]) == -1)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (filter.flushb) {
|
|
|
|
struct nlmsghdr *fn;
|
|
|
|
if (NLMSG_ALIGN(filter.flushp) + n->nlmsg_len > filter.flushe) {
|
|
|
|
if (flush_update())
|
2007-04-12 17:04:39 +05:30
|
|
|
bb_error_msg_and_die("flush");
|
2003-02-15 17:20:33 +05:30
|
|
|
}
|
|
|
|
fn = (struct nlmsghdr*)(filter.flushb + NLMSG_ALIGN(filter.flushp));
|
|
|
|
memcpy(fn, n, n->nlmsg_len);
|
|
|
|
fn->nlmsg_type = RTM_DELROUTE;
|
|
|
|
fn->nlmsg_flags = NLM_F_REQUEST;
|
|
|
|
fn->nlmsg_seq = ++filter.rth->seq;
|
|
|
|
filter.flushp = (((char*)fn) + n->nlmsg_len) - filter.flushb;
|
2008-05-31 13:03:18 +05:30
|
|
|
filter.flushed = 1;
|
2003-02-15 17:20:33 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-11-28 16:47:19 +05:30
|
|
|
if (n->nlmsg_type == RTM_DELROUTE) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("Deleted ");
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
|
|
|
if (r->rtm_type != RTN_UNICAST && !filter.type) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("%s ", rtnl_rtntype_n2a(r->rtm_type, b1, sizeof(b1)));
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
if (tb[RTA_DST]) {
|
|
|
|
if (r->rtm_dst_len != host_len) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("%s/%u ", rt_addr_n2a(r->rtm_family,
|
|
|
|
RTA_DATA(tb[RTA_DST]),
|
|
|
|
abuf, sizeof(abuf)),
|
|
|
|
r->rtm_dst_len
|
|
|
|
);
|
2002-11-10 07:03:55 +05:30
|
|
|
} else {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("%s ", format_host(r->rtm_family,
|
|
|
|
RTA_PAYLOAD(tb[RTA_DST]),
|
|
|
|
RTA_DATA(tb[RTA_DST]),
|
|
|
|
abuf, sizeof(abuf))
|
|
|
|
);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
} else if (r->rtm_dst_len) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("0/%d ", r->rtm_dst_len);
|
2002-11-10 07:03:55 +05:30
|
|
|
} else {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("default ");
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
if (tb[RTA_SRC]) {
|
|
|
|
if (r->rtm_src_len != host_len) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("from %s/%u ", rt_addr_n2a(r->rtm_family,
|
|
|
|
RTA_DATA(tb[RTA_SRC]),
|
|
|
|
abuf, sizeof(abuf)),
|
|
|
|
r->rtm_src_len
|
|
|
|
);
|
2002-11-10 07:03:55 +05:30
|
|
|
} else {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("from %s ", format_host(r->rtm_family,
|
|
|
|
RTA_PAYLOAD(tb[RTA_SRC]),
|
|
|
|
RTA_DATA(tb[RTA_SRC]),
|
|
|
|
abuf, sizeof(abuf))
|
|
|
|
);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
} else if (r->rtm_src_len) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("from 0/%u ", r->rtm_src_len);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
if (tb[RTA_GATEWAY] && filter.rvia.bitlen != host_len) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("via %s ", format_host(r->rtm_family,
|
|
|
|
RTA_PAYLOAD(tb[RTA_GATEWAY]),
|
|
|
|
RTA_DATA(tb[RTA_GATEWAY]),
|
|
|
|
abuf, sizeof(abuf)));
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
2002-11-28 16:47:19 +05:30
|
|
|
if (tb[RTA_OIF] && filter.oifmask != -1) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("dev %s ", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_OIF])));
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
if (tb[RTA_PREFSRC] && filter.rprefsrc.bitlen != host_len) {
|
|
|
|
/* Do not use format_host(). It is our local addr
|
|
|
|
and symbolic name will not be useful.
|
|
|
|
*/
|
2008-06-29 11:52:40 +05:30
|
|
|
printf(" src %s ", rt_addr_n2a(r->rtm_family,
|
|
|
|
RTA_DATA(tb[RTA_PREFSRC]),
|
|
|
|
abuf, sizeof(abuf)));
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
2002-11-28 16:47:19 +05:30
|
|
|
if (tb[RTA_PRIORITY]) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf(" metric %d ", *(uint32_t*)RTA_DATA(tb[RTA_PRIORITY]));
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
if (r->rtm_family == AF_INET6) {
|
|
|
|
struct rta_cacheinfo *ci = NULL;
|
2002-11-28 16:47:19 +05:30
|
|
|
if (tb[RTA_CACHEINFO]) {
|
2002-11-10 07:03:55 +05:30
|
|
|
ci = RTA_DATA(tb[RTA_CACHEINFO]);
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
if ((r->rtm_flags & RTM_F_CLONED) || (ci && ci->rta_expires)) {
|
2002-11-28 16:47:19 +05:30
|
|
|
if (r->rtm_flags & RTM_F_CLONED) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf("%c cache ", _SL_);
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
|
|
|
if (ci->rta_expires) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf(" expires %dsec", ci->rta_expires / get_hz());
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
|
|
|
if (ci->rta_error != 0) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf(" error %d", ci->rta_error);
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
} else if (ci) {
|
|
|
|
if (ci->rta_error != 0)
|
2008-06-29 11:52:40 +05:30
|
|
|
printf(" error %d", ci->rta_error);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tb[RTA_IIF] && filter.iifmask != -1) {
|
2008-06-29 11:52:40 +05:30
|
|
|
printf(" iif %s", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_IIF])));
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
2008-06-29 11:52:40 +05:30
|
|
|
bb_putchar('\n');
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-04-07 06:44:45 +05:30
|
|
|
/* Return value becomes exitcode. It's okay to not return at all */
|
2007-11-19 04:26:25 +05:30
|
|
|
static int iproute_modify(int cmd, unsigned flags, char **argv)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char keywords[] ALIGN1 =
|
2007-07-24 21:24:42 +05:30
|
|
|
"src\0""via\0""mtu\0""lock\0""protocol\0"USE_FEATURE_IP_RULE("table\0")
|
2008-10-07 22:30:58 +05:30
|
|
|
"dev\0""oif\0""to\0""metric\0";
|
2007-07-24 21:24:42 +05:30
|
|
|
enum {
|
|
|
|
ARG_src,
|
|
|
|
ARG_via,
|
|
|
|
ARG_mtu, PARM_lock,
|
|
|
|
ARG_protocol,
|
|
|
|
USE_FEATURE_IP_RULE(ARG_table,)
|
|
|
|
ARG_dev,
|
|
|
|
ARG_oif,
|
2008-10-07 22:30:58 +05:30
|
|
|
ARG_to,
|
|
|
|
ARG_metric,
|
2007-07-24 21:24:42 +05:30
|
|
|
};
|
|
|
|
enum {
|
|
|
|
gw_ok = 1 << 0,
|
|
|
|
dst_ok = 1 << 1,
|
|
|
|
proto_ok = 1 << 2,
|
|
|
|
type_ok = 1 << 3
|
|
|
|
};
|
2002-11-10 07:03:55 +05:30
|
|
|
struct rtnl_handle rth;
|
|
|
|
struct {
|
2006-01-25 05:38:53 +05:30
|
|
|
struct nlmsghdr n;
|
|
|
|
struct rtmsg r;
|
|
|
|
char buf[1024];
|
2002-11-10 07:03:55 +05:30
|
|
|
} req;
|
2007-04-07 06:44:45 +05:30
|
|
|
char mxbuf[256];
|
2002-11-10 07:03:55 +05:30
|
|
|
struct rtattr * mxrta = (void*)mxbuf;
|
|
|
|
unsigned mxlock = 0;
|
2007-04-07 06:44:45 +05:30
|
|
|
char *d = NULL;
|
2007-04-12 17:06:56 +05:30
|
|
|
smalluint ok = 0;
|
|
|
|
int arg;
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
memset(&req, 0, sizeof(req));
|
|
|
|
|
|
|
|
req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
|
2008-06-29 11:52:40 +05:30
|
|
|
req.n.nlmsg_flags = NLM_F_REQUEST | flags;
|
2002-11-10 07:03:55 +05:30
|
|
|
req.n.nlmsg_type = cmd;
|
|
|
|
req.r.rtm_family = preferred_family;
|
2008-06-29 11:52:40 +05:30
|
|
|
if (RT_TABLE_MAIN) /* if it is zero, memset already did it */
|
|
|
|
req.r.rtm_table = RT_TABLE_MAIN;
|
|
|
|
if (RT_SCOPE_NOWHERE)
|
|
|
|
req.r.rtm_scope = RT_SCOPE_NOWHERE;
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
if (cmd != RTM_DELROUTE) {
|
|
|
|
req.r.rtm_protocol = RTPROT_BOOT;
|
|
|
|
req.r.rtm_scope = RT_SCOPE_UNIVERSE;
|
|
|
|
req.r.rtm_type = RTN_UNICAST;
|
|
|
|
}
|
|
|
|
|
|
|
|
mxrta->rta_type = RTA_METRICS;
|
|
|
|
mxrta->rta_len = RTA_LENGTH(0);
|
|
|
|
|
2007-11-19 04:26:25 +05:30
|
|
|
while (*argv) {
|
2007-07-24 21:24:42 +05:30
|
|
|
arg = index_in_substrings(keywords, *argv);
|
2007-04-12 17:06:56 +05:30
|
|
|
if (arg == ARG_src) {
|
2002-11-10 07:03:55 +05:30
|
|
|
inet_prefix addr;
|
|
|
|
NEXT_ARG();
|
|
|
|
get_addr(&addr, *argv, req.r.rtm_family);
|
2007-04-12 17:06:56 +05:30
|
|
|
if (req.r.rtm_family == AF_UNSPEC)
|
2002-11-10 07:03:55 +05:30
|
|
|
req.r.rtm_family = addr.family;
|
|
|
|
addattr_l(&req.n, sizeof(req), RTA_PREFSRC, &addr.data, addr.bytelen);
|
2007-04-12 17:06:56 +05:30
|
|
|
} else if (arg == ARG_via) {
|
2002-11-10 07:03:55 +05:30
|
|
|
inet_prefix addr;
|
2007-04-12 17:06:56 +05:30
|
|
|
ok |= gw_ok;
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
get_addr(&addr, *argv, req.r.rtm_family);
|
2002-11-28 16:47:19 +05:30
|
|
|
if (req.r.rtm_family == AF_UNSPEC) {
|
2002-11-10 07:03:55 +05:30
|
|
|
req.r.rtm_family = addr.family;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
addattr_l(&req.n, sizeof(req), RTA_GATEWAY, &addr.data, addr.bytelen);
|
2007-04-12 17:06:56 +05:30
|
|
|
} else if (arg == ARG_mtu) {
|
2002-11-10 07:03:55 +05:30
|
|
|
unsigned mtu;
|
|
|
|
NEXT_ARG();
|
2007-07-24 21:24:42 +05:30
|
|
|
if (index_in_strings(keywords, *argv) == PARM_lock) {
|
2007-11-26 23:59:52 +05:30
|
|
|
mxlock |= (1 << RTAX_MTU);
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
}
|
2009-03-05 14:51:57 +05:30
|
|
|
mtu = get_unsigned(*argv, "mtu");
|
2002-11-10 07:03:55 +05:30
|
|
|
rta_addattr32(mxrta, sizeof(mxbuf), RTAX_MTU, mtu);
|
2007-04-12 17:06:56 +05:30
|
|
|
} else if (arg == ARG_protocol) {
|
2006-01-30 23:30:02 +05:30
|
|
|
uint32_t prot;
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
if (rtnl_rtprot_a2n(&prot, *argv))
|
2006-06-08 01:47:41 +05:30
|
|
|
invarg(*argv, "protocol");
|
2002-11-10 07:03:55 +05:30
|
|
|
req.r.rtm_protocol = prot;
|
2007-04-12 17:06:56 +05:30
|
|
|
ok |= proto_ok;
|
2007-04-16 20:26:01 +05:30
|
|
|
#if ENABLE_FEATURE_IP_RULE
|
2007-04-12 17:06:56 +05:30
|
|
|
} else if (arg == ARG_table) {
|
2006-12-15 06:29:35 +05:30
|
|
|
uint32_t tid;
|
|
|
|
NEXT_ARG();
|
|
|
|
if (rtnl_rttable_a2n(&tid, *argv))
|
|
|
|
invarg(*argv, "table");
|
|
|
|
req.r.rtm_table = tid;
|
2007-04-16 20:26:01 +05:30
|
|
|
#endif
|
2007-04-12 17:06:56 +05:30
|
|
|
} else if (arg == ARG_dev || arg == ARG_oif) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
d = *argv;
|
2008-10-07 22:30:58 +05:30
|
|
|
} else if (arg == ARG_metric) {
|
|
|
|
uint32_t metric;
|
|
|
|
NEXT_ARG();
|
2009-03-05 14:51:57 +05:30
|
|
|
metric = get_u32(*argv, "metric");
|
2008-10-07 22:30:58 +05:30
|
|
|
addattr32(&req.n, sizeof(req), RTA_PRIORITY, metric);
|
2002-11-10 07:03:55 +05:30
|
|
|
} else {
|
|
|
|
int type;
|
|
|
|
inet_prefix dst;
|
|
|
|
|
2007-04-12 17:06:56 +05:30
|
|
|
if (arg == ARG_to) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
}
|
2007-04-07 06:44:45 +05:30
|
|
|
if ((**argv < '0' || **argv > '9')
|
2007-11-26 23:59:52 +05:30
|
|
|
&& rtnl_rtntype_a2n(&type, *argv) == 0) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
req.r.rtm_type = type;
|
2007-04-12 17:06:56 +05:30
|
|
|
ok |= type_ok;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2007-04-12 17:06:56 +05:30
|
|
|
if (ok & dst_ok) {
|
2002-11-10 07:03:55 +05:30
|
|
|
duparg2("to", *argv);
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
get_prefix(&dst, *argv, req.r.rtm_family);
|
2002-11-28 16:47:19 +05:30
|
|
|
if (req.r.rtm_family == AF_UNSPEC) {
|
2002-11-10 07:03:55 +05:30
|
|
|
req.r.rtm_family = dst.family;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
req.r.rtm_dst_len = dst.bitlen;
|
2007-04-12 17:06:56 +05:30
|
|
|
ok |= dst_ok;
|
2002-11-28 16:47:19 +05:30
|
|
|
if (dst.bytelen) {
|
2002-11-10 07:03:55 +05:30
|
|
|
addattr_l(&req.n, sizeof(req), RTA_DST, &dst.data, dst.bytelen);
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
2007-11-19 04:26:25 +05:30
|
|
|
argv++;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2007-04-12 17:04:39 +05:30
|
|
|
xrtnl_open(&rth);
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2002-11-15 14:42:47 +05:30
|
|
|
if (d) {
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
ll_init_map(&rth);
|
|
|
|
|
|
|
|
if (d) {
|
2007-04-12 17:04:39 +05:30
|
|
|
idx = xll_name_to_index(d);
|
2002-11-15 14:42:47 +05:30
|
|
|
addattr32(&req.n, sizeof(req), RTA_OIF, idx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
if (mxrta->rta_len > RTA_LENGTH(0)) {
|
2002-11-28 16:47:19 +05:30
|
|
|
if (mxlock) {
|
2002-11-10 07:03:55 +05:30
|
|
|
rta_addattr32(mxrta, sizeof(mxbuf), RTAX_LOCK, mxlock);
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
addattr_l(&req.n, sizeof(req), RTA_METRICS, RTA_DATA(mxrta), RTA_PAYLOAD(mxrta));
|
|
|
|
}
|
2007-04-12 17:06:56 +05:30
|
|
|
|
2007-04-11 21:53:57 +05:30
|
|
|
if (req.r.rtm_type == RTN_LOCAL || req.r.rtm_type == RTN_NAT)
|
|
|
|
req.r.rtm_scope = RT_SCOPE_HOST;
|
|
|
|
else if (req.r.rtm_type == RTN_BROADCAST ||
|
|
|
|
req.r.rtm_type == RTN_MULTICAST ||
|
|
|
|
req.r.rtm_type == RTN_ANYCAST)
|
|
|
|
req.r.rtm_scope = RT_SCOPE_LINK;
|
|
|
|
else if (req.r.rtm_type == RTN_UNICAST || req.r.rtm_type == RTN_UNSPEC) {
|
|
|
|
if (cmd == RTM_DELROUTE)
|
|
|
|
req.r.rtm_scope = RT_SCOPE_NOWHERE;
|
2007-04-12 17:06:56 +05:30
|
|
|
else if (!(ok & gw_ok))
|
2007-04-11 21:53:57 +05:30
|
|
|
req.r.rtm_scope = RT_SCOPE_LINK;
|
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2002-11-28 16:47:19 +05:30
|
|
|
if (req.r.rtm_family == AF_UNSPEC) {
|
2002-11-10 07:03:55 +05:30
|
|
|
req.r.rtm_family = AF_INET;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2002-11-28 16:47:19 +05:30
|
|
|
if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0) {
|
2007-04-07 06:44:45 +05:30
|
|
|
return 2;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtnl_rtcache_request(struct rtnl_handle *rth, int family)
|
|
|
|
{
|
|
|
|
struct {
|
|
|
|
struct nlmsghdr nlh;
|
|
|
|
struct rtmsg rtm;
|
|
|
|
} req;
|
|
|
|
struct sockaddr_nl nladdr;
|
|
|
|
|
|
|
|
memset(&nladdr, 0, sizeof(nladdr));
|
|
|
|
memset(&req, 0, sizeof(req));
|
|
|
|
nladdr.nl_family = AF_NETLINK;
|
|
|
|
|
|
|
|
req.nlh.nlmsg_len = sizeof(req);
|
2008-06-29 11:52:40 +05:30
|
|
|
if (RTM_GETROUTE)
|
|
|
|
req.nlh.nlmsg_type = RTM_GETROUTE;
|
|
|
|
if (NLM_F_ROOT | NLM_F_REQUEST)
|
|
|
|
req.nlh.nlmsg_flags = NLM_F_ROOT | NLM_F_REQUEST;
|
|
|
|
/*req.nlh.nlmsg_pid = 0; - memset did it already */
|
2002-11-10 07:03:55 +05:30
|
|
|
req.nlh.nlmsg_seq = rth->dump = ++rth->seq;
|
|
|
|
req.rtm.rtm_family = family;
|
2008-06-29 11:52:40 +05:30
|
|
|
if (RTM_F_CLONED)
|
|
|
|
req.rtm.rtm_flags = RTM_F_CLONED;
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2007-04-12 17:04:39 +05:30
|
|
|
return xsendto(rth->fd, (void*)&req, sizeof(req), (struct sockaddr*)&nladdr, sizeof(nladdr));
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2007-04-07 06:44:45 +05:30
|
|
|
static void iproute_flush_cache(void)
|
2003-02-15 17:20:33 +05:30
|
|
|
{
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char fn[] ALIGN1 = "/proc/sys/net/ipv4/route/flush";
|
2007-04-12 04:50:53 +05:30
|
|
|
int flush_fd = open_or_warn(fn, O_WRONLY);
|
2007-04-07 06:44:45 +05:30
|
|
|
|
2003-02-15 17:20:33 +05:30
|
|
|
if (flush_fd < 0) {
|
2007-04-07 06:44:45 +05:30
|
|
|
return;
|
2003-02-15 17:20:33 +05:30
|
|
|
}
|
|
|
|
|
2007-01-30 05:13:18 +05:30
|
|
|
if (write(flush_fd, "-1", 2) < 2) {
|
|
|
|
bb_perror_msg("cannot flush routing cache");
|
2007-04-07 06:44:45 +05:30
|
|
|
return;
|
2003-02-15 17:20:33 +05:30
|
|
|
}
|
|
|
|
close(flush_fd);
|
|
|
|
}
|
|
|
|
|
2002-12-02 06:05:23 +05:30
|
|
|
static void iproute_reset_filter(void)
|
|
|
|
{
|
|
|
|
memset(&filter, 0, sizeof(filter));
|
|
|
|
filter.mdst.bitlen = -1;
|
|
|
|
filter.msrc.bitlen = -1;
|
|
|
|
}
|
|
|
|
|
2007-04-07 06:44:45 +05:30
|
|
|
/* Return value becomes exitcode. It's okay to not return at all */
|
2007-11-19 04:26:25 +05:30
|
|
|
static int iproute_list_or_flush(char **argv, int flush)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
int do_ipv6 = preferred_family;
|
|
|
|
struct rtnl_handle rth;
|
|
|
|
char *id = NULL;
|
|
|
|
char *od = NULL;
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char keywords[] ALIGN1 =
|
2007-11-26 23:59:52 +05:30
|
|
|
/* "ip route list/flush" parameters: */
|
|
|
|
"protocol\0" "dev\0" "oif\0" "iif\0"
|
|
|
|
"via\0" "table\0" "cache\0"
|
|
|
|
"from\0" "to\0"
|
|
|
|
/* and possible further keywords */
|
|
|
|
"all\0"
|
|
|
|
"root\0"
|
|
|
|
"match\0"
|
|
|
|
"exact\0"
|
|
|
|
"main\0"
|
|
|
|
;
|
2007-04-12 17:06:56 +05:30
|
|
|
enum {
|
2007-11-26 23:59:52 +05:30
|
|
|
KW_proto, KW_dev, KW_oif, KW_iif,
|
|
|
|
KW_via, KW_table, KW_cache,
|
|
|
|
KW_from, KW_to,
|
|
|
|
/* */
|
|
|
|
KW_all,
|
|
|
|
KW_root,
|
|
|
|
KW_match,
|
|
|
|
KW_exact,
|
|
|
|
KW_main,
|
2007-04-12 17:06:56 +05:30
|
|
|
};
|
|
|
|
int arg, parm;
|
2007-11-26 23:59:52 +05:30
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
iproute_reset_filter();
|
|
|
|
filter.tb = RT_TABLE_MAIN;
|
|
|
|
|
2007-11-19 04:26:25 +05:30
|
|
|
if (flush && !*argv)
|
2007-04-07 06:44:45 +05:30
|
|
|
bb_error_msg_and_die(bb_msg_requires_arg, "\"ip route flush\"");
|
2003-02-15 17:20:33 +05:30
|
|
|
|
2007-11-19 04:26:25 +05:30
|
|
|
while (*argv) {
|
2007-07-24 21:24:42 +05:30
|
|
|
arg = index_in_substrings(keywords, *argv);
|
2007-11-26 23:59:52 +05:30
|
|
|
if (arg == KW_proto) {
|
2006-01-30 23:30:02 +05:30
|
|
|
uint32_t prot = 0;
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
filter.protocolmask = -1;
|
|
|
|
if (rtnl_rtprot_a2n(&prot, *argv)) {
|
2007-11-26 23:59:52 +05:30
|
|
|
if (index_in_strings(keywords, *argv) != KW_all)
|
2006-06-08 01:47:41 +05:30
|
|
|
invarg(*argv, "protocol");
|
2002-11-10 07:03:55 +05:30
|
|
|
prot = 0;
|
|
|
|
filter.protocolmask = 0;
|
|
|
|
}
|
|
|
|
filter.protocol = prot;
|
2007-11-26 23:59:52 +05:30
|
|
|
} else if (arg == KW_dev || arg == KW_oif) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
od = *argv;
|
2007-11-26 23:59:52 +05:30
|
|
|
} else if (arg == KW_iif) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
id = *argv;
|
2007-11-26 23:59:52 +05:30
|
|
|
} else if (arg == KW_via) {
|
2007-04-12 17:06:56 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
get_prefix(&filter.rvia, *argv, do_ipv6);
|
2007-11-26 23:59:52 +05:30
|
|
|
} else if (arg == KW_table) { /* table all/cache/main */
|
2007-04-12 17:06:56 +05:30
|
|
|
NEXT_ARG();
|
2007-07-24 21:24:42 +05:30
|
|
|
parm = index_in_substrings(keywords, *argv);
|
2007-11-26 23:59:52 +05:30
|
|
|
if (parm == KW_cache)
|
2007-04-12 17:06:56 +05:30
|
|
|
filter.tb = -1;
|
2007-11-26 23:59:52 +05:30
|
|
|
else if (parm == KW_all)
|
2007-04-12 17:06:56 +05:30
|
|
|
filter.tb = 0;
|
2008-06-08 05:55:55 +05:30
|
|
|
else if (parm != KW_main) {
|
|
|
|
#if ENABLE_FEATURE_IP_RULE
|
|
|
|
uint32_t tid;
|
|
|
|
if (rtnl_rttable_a2n(&tid, *argv))
|
|
|
|
invarg(*argv, "table");
|
|
|
|
filter.tb = tid;
|
2008-06-25 15:23:17 +05:30
|
|
|
#else
|
2007-04-12 17:06:56 +05:30
|
|
|
invarg(*argv, "table");
|
2008-06-08 05:55:55 +05:30
|
|
|
#endif
|
|
|
|
}
|
2007-11-27 15:12:33 +05:30
|
|
|
} else if (arg == KW_cache) {
|
|
|
|
/* The command 'ip route flush cache' is used by OpenSWAN.
|
|
|
|
* Assuming it's a synonym for 'ip route flush table cache' */
|
2007-11-26 23:59:52 +05:30
|
|
|
filter.tb = -1;
|
|
|
|
} else if (arg == KW_from) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
2007-07-24 21:24:42 +05:30
|
|
|
parm = index_in_substrings(keywords, *argv);
|
2007-11-26 23:59:52 +05:30
|
|
|
if (parm == KW_root) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
get_prefix(&filter.rsrc, *argv, do_ipv6);
|
2007-11-26 23:59:52 +05:30
|
|
|
} else if (parm == KW_match) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
get_prefix(&filter.msrc, *argv, do_ipv6);
|
|
|
|
} else {
|
2007-11-26 23:59:52 +05:30
|
|
|
if (parm == KW_exact)
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
get_prefix(&filter.msrc, *argv, do_ipv6);
|
|
|
|
filter.rsrc = filter.msrc;
|
|
|
|
}
|
2007-11-26 23:59:52 +05:30
|
|
|
} else { /* "to" is the default parameter */
|
|
|
|
if (arg == KW_to) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
2007-07-24 21:24:42 +05:30
|
|
|
arg = index_in_substrings(keywords, *argv);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
2007-11-26 23:59:52 +05:30
|
|
|
/* parm = arg; - would be more plausible, but we reuse 'arg' here */
|
|
|
|
if (arg == KW_root) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
get_prefix(&filter.rdst, *argv, do_ipv6);
|
2007-11-26 23:59:52 +05:30
|
|
|
} else if (arg == KW_match) {
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
get_prefix(&filter.mdst, *argv, do_ipv6);
|
2007-11-26 23:59:52 +05:30
|
|
|
} else { /* "to exact" is the default */
|
|
|
|
if (arg == KW_exact)
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
get_prefix(&filter.mdst, *argv, do_ipv6);
|
|
|
|
filter.rdst = filter.mdst;
|
|
|
|
}
|
|
|
|
}
|
2007-04-07 06:44:45 +05:30
|
|
|
argv++;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2002-11-28 16:47:19 +05:30
|
|
|
if (do_ipv6 == AF_UNSPEC && filter.tb) {
|
2002-11-10 07:03:55 +05:30
|
|
|
do_ipv6 = AF_INET;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2007-04-12 17:04:39 +05:30
|
|
|
xrtnl_open(&rth);
|
2002-11-10 07:03:55 +05:30
|
|
|
ll_init_map(&rth);
|
|
|
|
|
|
|
|
if (id || od) {
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
if (id) {
|
2007-04-12 17:04:39 +05:30
|
|
|
idx = xll_name_to_index(id);
|
2002-11-10 07:03:55 +05:30
|
|
|
filter.iif = idx;
|
|
|
|
filter.iifmask = -1;
|
|
|
|
}
|
|
|
|
if (od) {
|
2007-04-12 17:04:39 +05:30
|
|
|
idx = xll_name_to_index(od);
|
2002-11-10 07:03:55 +05:30
|
|
|
filter.oif = idx;
|
|
|
|
filter.oifmask = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-15 17:20:33 +05:30
|
|
|
if (flush) {
|
|
|
|
char flushb[4096-512];
|
|
|
|
|
2007-11-26 23:59:52 +05:30
|
|
|
if (filter.tb == -1) { /* "flush table cache" */
|
2003-02-15 17:20:33 +05:30
|
|
|
if (do_ipv6 != AF_INET6)
|
|
|
|
iproute_flush_cache();
|
|
|
|
if (do_ipv6 == AF_INET)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
filter.flushb = flushb;
|
|
|
|
filter.flushp = 0;
|
|
|
|
filter.flushe = sizeof(flushb);
|
|
|
|
filter.rth = &rth;
|
|
|
|
|
|
|
|
for (;;) {
|
2007-04-12 17:04:39 +05:30
|
|
|
xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
|
2003-02-15 17:20:33 +05:30
|
|
|
filter.flushed = 0;
|
2008-06-29 11:52:40 +05:30
|
|
|
xrtnl_dump_filter(&rth, print_route, NULL);
|
2007-07-24 21:24:42 +05:30
|
|
|
if (filter.flushed == 0)
|
2003-02-15 17:20:33 +05:30
|
|
|
return 0;
|
2007-04-07 06:44:45 +05:30
|
|
|
if (flush_update())
|
|
|
|
return 1;
|
2003-02-15 17:20:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
if (filter.tb != -1) {
|
2007-04-12 17:04:39 +05:30
|
|
|
xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
|
2007-07-24 21:24:42 +05:30
|
|
|
} else if (rtnl_rtcache_request(&rth, do_ipv6) < 0) {
|
|
|
|
bb_perror_msg_and_die("cannot send dump request");
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
2008-06-29 11:52:40 +05:30
|
|
|
xrtnl_dump_filter(&rth, print_route, NULL);
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2007-04-07 06:44:45 +05:30
|
|
|
return 0;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-07 06:44:45 +05:30
|
|
|
/* Return value becomes exitcode. It's okay to not return at all */
|
2007-11-19 04:26:25 +05:30
|
|
|
static int iproute_get(char **argv)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
|
|
|
struct rtnl_handle rth;
|
|
|
|
struct {
|
2007-07-24 21:24:42 +05:30
|
|
|
struct nlmsghdr n;
|
|
|
|
struct rtmsg r;
|
|
|
|
char buf[1024];
|
2002-11-10 07:03:55 +05:30
|
|
|
} req;
|
2007-07-24 21:24:42 +05:30
|
|
|
char *idev = NULL;
|
|
|
|
char *odev = NULL;
|
2007-04-12 17:06:56 +05:30
|
|
|
bool connected = 0;
|
|
|
|
bool from_ok = 0;
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char options[] ALIGN1 =
|
2007-07-24 21:24:42 +05:30
|
|
|
"from\0""iif\0""oif\0""dev\0""notify\0""connected\0""to\0";
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
memset(&req, 0, sizeof(req));
|
|
|
|
|
|
|
|
iproute_reset_filter();
|
|
|
|
|
|
|
|
req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
|
2008-06-29 11:52:40 +05:30
|
|
|
if (NLM_F_REQUEST)
|
|
|
|
req.n.nlmsg_flags = NLM_F_REQUEST;
|
|
|
|
if (RTM_GETROUTE)
|
|
|
|
req.n.nlmsg_type = RTM_GETROUTE;
|
2002-11-10 07:03:55 +05:30
|
|
|
req.r.rtm_family = preferred_family;
|
2008-06-29 11:52:40 +05:30
|
|
|
/*req.r.rtm_table = 0; - memset did this already */
|
|
|
|
/*req.r.rtm_protocol = 0;*/
|
|
|
|
/*req.r.rtm_scope = 0;*/
|
|
|
|
/*req.r.rtm_type = 0;*/
|
|
|
|
/*req.r.rtm_src_len = 0;*/
|
|
|
|
/*req.r.rtm_dst_len = 0;*/
|
|
|
|
/*req.r.rtm_tos = 0;*/
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2007-11-19 04:26:25 +05:30
|
|
|
while (*argv) {
|
2007-07-24 21:24:42 +05:30
|
|
|
switch (index_in_strings(options, *argv)) {
|
2002-12-02 06:24:10 +05:30
|
|
|
case 0: /* from */
|
|
|
|
{
|
|
|
|
inet_prefix addr;
|
|
|
|
NEXT_ARG();
|
|
|
|
from_ok = 1;
|
|
|
|
get_prefix(&addr, *argv, req.r.rtm_family);
|
|
|
|
if (req.r.rtm_family == AF_UNSPEC) {
|
|
|
|
req.r.rtm_family = addr.family;
|
|
|
|
}
|
|
|
|
if (addr.bytelen) {
|
|
|
|
addattr_l(&req.n, sizeof(req), RTA_SRC, &addr.data, addr.bytelen);
|
|
|
|
}
|
|
|
|
req.r.rtm_src_len = addr.bitlen;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 1: /* iif */
|
|
|
|
NEXT_ARG();
|
|
|
|
idev = *argv;
|
|
|
|
break;
|
|
|
|
case 2: /* oif */
|
|
|
|
case 3: /* dev */
|
|
|
|
NEXT_ARG();
|
|
|
|
odev = *argv;
|
|
|
|
break;
|
|
|
|
case 4: /* notify */
|
|
|
|
req.r.rtm_flags |= RTM_F_NOTIFY;
|
|
|
|
break;
|
|
|
|
case 5: /* connected */
|
|
|
|
connected = 1;
|
|
|
|
break;
|
|
|
|
case 6: /* to */
|
2002-11-10 07:03:55 +05:30
|
|
|
NEXT_ARG();
|
2002-12-02 06:24:10 +05:30
|
|
|
default:
|
|
|
|
{
|
|
|
|
inet_prefix addr;
|
|
|
|
get_prefix(&addr, *argv, req.r.rtm_family);
|
|
|
|
if (req.r.rtm_family == AF_UNSPEC) {
|
|
|
|
req.r.rtm_family = addr.family;
|
|
|
|
}
|
|
|
|
if (addr.bytelen) {
|
|
|
|
addattr_l(&req.n, sizeof(req), RTA_DST, &addr.data, addr.bytelen);
|
|
|
|
}
|
|
|
|
req.r.rtm_dst_len = addr.bitlen;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
2007-11-19 04:26:25 +05:30
|
|
|
argv++;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (req.r.rtm_dst_len == 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("need at least destination address");
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2007-04-12 17:04:39 +05:30
|
|
|
xrtnl_open(&rth);
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
ll_init_map(&rth);
|
|
|
|
|
|
|
|
if (idev || odev) {
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
if (idev) {
|
2007-04-12 17:04:39 +05:30
|
|
|
idx = xll_name_to_index(idev);
|
2002-11-10 07:03:55 +05:30
|
|
|
addattr32(&req.n, sizeof(req), RTA_IIF, idx);
|
|
|
|
}
|
|
|
|
if (odev) {
|
2007-04-12 17:04:39 +05:30
|
|
|
idx = xll_name_to_index(odev);
|
2002-11-10 07:03:55 +05:30
|
|
|
addattr32(&req.n, sizeof(req), RTA_OIF, idx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-28 16:47:19 +05:30
|
|
|
if (req.r.rtm_family == AF_UNSPEC) {
|
2002-11-10 07:03:55 +05:30
|
|
|
req.r.rtm_family = AF_INET;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2002-11-28 16:47:19 +05:30
|
|
|
if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
|
2007-04-07 06:44:45 +05:30
|
|
|
return 2;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
if (connected && !from_ok) {
|
|
|
|
struct rtmsg *r = NLMSG_DATA(&req.n);
|
|
|
|
int len = req.n.nlmsg_len;
|
|
|
|
struct rtattr * tb[RTA_MAX+1];
|
|
|
|
|
2008-06-29 11:52:40 +05:30
|
|
|
print_route(NULL, &req.n, NULL);
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
if (req.n.nlmsg_type != RTM_NEWROUTE) {
|
2007-04-07 06:44:45 +05:30
|
|
|
bb_error_msg_and_die("not a route?");
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
len -= NLMSG_LENGTH(sizeof(*r));
|
|
|
|
if (len < 0) {
|
2007-04-07 06:44:45 +05:30
|
|
|
bb_error_msg_and_die("wrong len %d", len);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
memset(tb, 0, sizeof(tb));
|
|
|
|
parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
|
|
|
|
|
|
|
|
if (tb[RTA_PREFSRC]) {
|
|
|
|
tb[RTA_PREFSRC]->rta_type = RTA_SRC;
|
|
|
|
r->rtm_src_len = 8*RTA_PAYLOAD(tb[RTA_PREFSRC]);
|
|
|
|
} else if (!tb[RTA_SRC]) {
|
2007-04-07 06:44:45 +05:30
|
|
|
bb_error_msg_and_die("failed to connect the route");
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
2002-11-28 16:47:19 +05:30
|
|
|
if (!odev && tb[RTA_OIF]) {
|
2002-11-10 07:03:55 +05:30
|
|
|
tb[RTA_OIF]->rta_type = 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
|
|
|
if (tb[RTA_GATEWAY]) {
|
2002-11-10 07:03:55 +05:30
|
|
|
tb[RTA_GATEWAY]->rta_type = 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
|
|
|
if (!idev && tb[RTA_IIF]) {
|
2002-11-10 07:03:55 +05:30
|
|
|
tb[RTA_IIF]->rta_type = 0;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
req.n.nlmsg_flags = NLM_F_REQUEST;
|
|
|
|
req.n.nlmsg_type = RTM_GETROUTE;
|
|
|
|
|
2002-11-28 16:47:19 +05:30
|
|
|
if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
|
2007-04-07 06:44:45 +05:30
|
|
|
return 2;
|
2002-11-28 16:47:19 +05:30
|
|
|
}
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
2008-06-29 11:52:40 +05:30
|
|
|
print_route(NULL, &req.n, NULL);
|
2007-04-07 06:44:45 +05:30
|
|
|
return 0;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
2007-04-07 06:44:45 +05:30
|
|
|
/* Return value becomes exitcode. It's okay to not return at all */
|
2007-11-19 04:26:25 +05:30
|
|
|
int do_iproute(char **argv)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char ip_route_commands[] ALIGN1 =
|
2007-07-24 21:24:42 +05:30
|
|
|
/*0-3*/ "add\0""append\0""change\0""chg\0"
|
|
|
|
/*4-7*/ "delete\0""get\0""list\0""show\0"
|
|
|
|
/*8..*/ "prepend\0""replace\0""test\0""flush\0";
|
2008-01-04 20:58:28 +05:30
|
|
|
int command_num;
|
2007-07-24 21:24:42 +05:30
|
|
|
unsigned flags = 0;
|
2002-12-02 06:05:23 +05:30
|
|
|
int cmd = RTM_NEWROUTE;
|
|
|
|
|
2008-01-04 20:58:28 +05:30
|
|
|
if (!*argv)
|
|
|
|
return iproute_list_or_flush(argv, 0);
|
|
|
|
|
2006-11-05 23:35:09 +05:30
|
|
|
/* "Standard" 'ip r a' treats 'a' as 'add', not 'append' */
|
|
|
|
/* It probably means that it is using "first match" rule */
|
2008-01-04 20:58:28 +05:30
|
|
|
command_num = index_in_substrings(ip_route_commands, *argv);
|
|
|
|
|
2006-09-28 01:21:06 +05:30
|
|
|
switch (command_num) {
|
2007-01-27 18:43:45 +05:30
|
|
|
case 0: /* add */
|
2002-12-02 06:05:23 +05:30
|
|
|
flags = NLM_F_CREATE|NLM_F_EXCL;
|
|
|
|
break;
|
|
|
|
case 1: /* append */
|
|
|
|
flags = NLM_F_CREATE|NLM_F_APPEND;
|
|
|
|
break;
|
|
|
|
case 2: /* change */
|
|
|
|
case 3: /* chg */
|
|
|
|
flags = NLM_F_REPLACE;
|
|
|
|
break;
|
|
|
|
case 4: /* delete */
|
|
|
|
cmd = RTM_DELROUTE;
|
|
|
|
break;
|
2007-01-27 18:43:45 +05:30
|
|
|
case 5: /* get */
|
2007-11-19 04:26:25 +05:30
|
|
|
return iproute_get(argv+1);
|
2007-01-27 18:43:45 +05:30
|
|
|
case 6: /* list */
|
|
|
|
case 7: /* show */
|
2007-11-19 04:26:25 +05:30
|
|
|
return iproute_list_or_flush(argv+1, 0);
|
2007-01-27 18:43:45 +05:30
|
|
|
case 8: /* prepend */
|
2002-12-02 06:05:23 +05:30
|
|
|
flags = NLM_F_CREATE;
|
2007-09-30 21:34:21 +05:30
|
|
|
break;
|
2007-01-27 18:43:45 +05:30
|
|
|
case 9: /* replace */
|
2002-12-02 06:05:23 +05:30
|
|
|
flags = NLM_F_CREATE|NLM_F_REPLACE;
|
2007-09-30 21:34:21 +05:30
|
|
|
break;
|
2007-01-27 18:43:45 +05:30
|
|
|
case 10: /* test */
|
2002-12-02 06:05:23 +05:30
|
|
|
flags = NLM_F_EXCL;
|
2007-09-30 21:34:21 +05:30
|
|
|
break;
|
2007-01-27 18:43:45 +05:30
|
|
|
case 11: /* flush */
|
2007-11-19 04:26:25 +05:30
|
|
|
return iproute_list_or_flush(argv+1, 1);
|
2002-12-02 06:05:23 +05:30
|
|
|
default:
|
2006-10-26 06:07:00 +05:30
|
|
|
bb_error_msg_and_die("unknown command %s", *argv);
|
2002-12-02 06:05:23 +05:30
|
|
|
}
|
|
|
|
|
2007-11-19 04:26:25 +05:30
|
|
|
return iproute_modify(cmd, flags, argv+1);
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|