2006-11-21 21:06:08 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2010-10-29 15:16:52 +05:30
|
|
|
* 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.
|
2006-11-21 21:06:08 +05:30
|
|
|
*
|
2010-10-29 15:16:52 +05:30
|
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
2006-11-21 21:06:08 +05:30
|
|
|
*
|
|
|
|
* Changes:
|
|
|
|
*
|
2010-10-29 15:16:52 +05:30
|
|
|
* Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
|
2008-09-25 17:43:34 +05:30
|
|
|
* initially integrated into busybox by Bernhard Reutner-Fischer
|
2006-11-21 21:06:08 +05:30
|
|
|
*/
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2017-06-13 22:36:09 +05:30
|
|
|
/* from <linux/fib_rules.h>: */
|
|
|
|
#define FRA_SUPPRESS_IFGROUP 13
|
|
|
|
#define FRA_SUPPRESS_PREFIXLEN 14
|
|
|
|
|
2007-06-01 04:12:12 +05:30
|
|
|
#include "ip_common.h" /* #include "libbb.h" is inside */
|
2006-11-21 21:06:08 +05:30
|
|
|
#include "rt_names.h"
|
|
|
|
#include "utils.h"
|
2007-06-01 04:12:12 +05:30
|
|
|
|
2017-10-19 03:35:11 +05:30
|
|
|
#include <linux/version.h>
|
|
|
|
/* RTA_TABLE is not a define, can't test with ifdef. */
|
|
|
|
/* As a proxy, test which kernels toolchain expects: */
|
|
|
|
#define HAVE_RTA_TABLE (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19))
|
|
|
|
|
2017-06-13 22:36:09 +05:30
|
|
|
/* If you add stuff here, update iprule_full_usage */
|
|
|
|
static const char keywords[] ALIGN1 =
|
|
|
|
"from\0""to\0""preference\0""order\0""priority\0"
|
|
|
|
"tos\0""fwmark\0""realms\0""table\0""lookup\0"
|
|
|
|
"suppress_prefixlength\0""suppress_ifgroup\0"
|
|
|
|
"dev\0""iif\0""nat\0""map-to\0""type\0""help\0"
|
|
|
|
;
|
|
|
|
#define keyword_preference (keywords + sizeof("from") + sizeof("to"))
|
|
|
|
#define keyword_fwmark (keyword_preference + sizeof("preference") + sizeof("order") + sizeof("priority") + sizeof("tos"))
|
|
|
|
#define keyword_realms (keyword_fwmark + sizeof("fwmark"))
|
|
|
|
#define keyword_suppress_prefixlength (keyword_realms + sizeof("realms") + sizeof("table") + sizeof("lookup"))
|
|
|
|
#define keyword_suppress_ifgroup (keyword_suppress_prefixlength + sizeof("suppress_prefixlength"))
|
|
|
|
enum {
|
|
|
|
ARG_from = 1, ARG_to, ARG_preference, ARG_order, ARG_priority,
|
|
|
|
ARG_tos, ARG_fwmark, ARG_realms, ARG_table, ARG_lookup,
|
|
|
|
ARG_suppress_prefixlength, ARG_suppress_ifgroup,
|
|
|
|
ARG_dev, ARG_iif, ARG_nat, ARG_map_to, ARG_type, ARG_help,
|
|
|
|
};
|
2007-06-01 04:12:12 +05:30
|
|
|
|
2009-06-05 15:36:05 +05:30
|
|
|
static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM,
|
2008-07-05 14:48:54 +05:30
|
|
|
struct nlmsghdr *n, void *arg UNUSED_PARAM)
|
2006-11-21 21:06:08 +05:30
|
|
|
{
|
|
|
|
struct rtmsg *r = NLMSG_DATA(n);
|
|
|
|
int len = n->nlmsg_len;
|
|
|
|
int host_len = -1;
|
|
|
|
struct rtattr * tb[RTA_MAX+1];
|
|
|
|
|
|
|
|
if (n->nlmsg_type != RTM_NEWRULE)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
len -= NLMSG_LENGTH(sizeof(*r));
|
|
|
|
if (len < 0)
|
|
|
|
return -1;
|
|
|
|
|
2018-02-08 13:12:37 +05:30
|
|
|
//memset(tb, 0, sizeof(tb)); - parse_rtattr does this
|
2006-11-21 21:06:08 +05:30
|
|
|
parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
|
|
|
|
|
|
|
|
if (r->rtm_family == AF_INET)
|
|
|
|
host_len = 32;
|
|
|
|
else if (r->rtm_family == AF_INET6)
|
|
|
|
host_len = 128;
|
|
|
|
/* else if (r->rtm_family == AF_DECnet)
|
|
|
|
host_len = 16;
|
|
|
|
else if (r->rtm_family == AF_IPX)
|
|
|
|
host_len = 80;
|
|
|
|
*/
|
2010-05-25 20:52:17 +05:30
|
|
|
printf("%u:\t", tb[RTA_PRIORITY] ?
|
|
|
|
*(unsigned*)RTA_DATA(tb[RTA_PRIORITY])
|
|
|
|
: 0);
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("from ");
|
2006-11-21 21:06:08 +05:30
|
|
|
if (tb[RTA_SRC]) {
|
|
|
|
if (r->rtm_src_len != host_len) {
|
2015-10-14 17:26:42 +05:30
|
|
|
printf("%s/%u",
|
|
|
|
rt_addr_n2a(r->rtm_family, RTA_DATA(tb[RTA_SRC])),
|
2006-11-21 21:06:08 +05:30
|
|
|
r->rtm_src_len
|
2013-01-14 20:27:44 +05:30
|
|
|
);
|
2006-11-21 21:06:08 +05:30
|
|
|
} else {
|
2007-09-30 21:52:36 +05:30
|
|
|
fputs(format_host(r->rtm_family,
|
2013-01-14 20:27:44 +05:30
|
|
|
RTA_PAYLOAD(tb[RTA_SRC]),
|
2015-10-14 17:26:42 +05:30
|
|
|
RTA_DATA(tb[RTA_SRC])),
|
2013-01-14 20:27:44 +05:30
|
|
|
stdout
|
|
|
|
);
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
|
|
|
} else if (r->rtm_src_len) {
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("0/%d", r->rtm_src_len);
|
2006-11-21 21:06:08 +05:30
|
|
|
} else {
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("all");
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
2008-06-05 10:30:24 +05:30
|
|
|
bb_putchar(' ');
|
2006-11-21 21:06:08 +05:30
|
|
|
|
|
|
|
if (tb[RTA_DST]) {
|
|
|
|
if (r->rtm_dst_len != host_len) {
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("to %s/%u ", rt_addr_n2a(r->rtm_family,
|
2015-10-14 17:26:42 +05:30
|
|
|
RTA_DATA(tb[RTA_DST])),
|
2006-11-21 21:06:08 +05:30
|
|
|
r->rtm_dst_len
|
|
|
|
);
|
|
|
|
} else {
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("to %s ", format_host(r->rtm_family,
|
2006-11-21 21:06:08 +05:30
|
|
|
RTA_PAYLOAD(tb[RTA_DST]),
|
2015-10-14 17:26:42 +05:30
|
|
|
RTA_DATA(tb[RTA_DST])));
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
|
|
|
} else if (r->rtm_dst_len) {
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("to 0/%d ", r->rtm_dst_len);
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (r->rtm_tos) {
|
2015-10-08 16:32:28 +05:30
|
|
|
printf("tos %s ", rtnl_dsfield_n2a(r->rtm_tos));
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
|
|
|
if (tb[RTA_PROTOINFO]) {
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("fwmark %#x ", *(uint32_t*)RTA_DATA(tb[RTA_PROTOINFO]));
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (tb[RTA_IIF]) {
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("iif %s ", (char*)RTA_DATA(tb[RTA_IIF]));
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
|
|
|
|
2017-10-19 03:35:11 +05:30
|
|
|
#if HAVE_RTA_TABLE
|
2016-12-13 18:28:31 +05:30
|
|
|
if (tb[RTA_TABLE])
|
|
|
|
printf("lookup %s ", rtnl_rttable_n2a(*(uint32_t*)RTA_DATA(tb[RTA_TABLE])));
|
2017-10-19 03:35:11 +05:30
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (r->rtm_table)
|
2015-10-08 16:32:28 +05:30
|
|
|
printf("lookup %s ", rtnl_rttable_n2a(r->rtm_table));
|
2006-11-21 21:06:08 +05:30
|
|
|
|
2017-06-13 22:36:09 +05:30
|
|
|
if (tb[FRA_SUPPRESS_PREFIXLEN]) {
|
|
|
|
int pl = *(uint32_t*)RTA_DATA(tb[FRA_SUPPRESS_PREFIXLEN]);
|
|
|
|
if (pl != -1)
|
|
|
|
printf("%s %d ", keyword_suppress_prefixlength, pl);
|
|
|
|
}
|
|
|
|
if (tb[FRA_SUPPRESS_IFGROUP]) {
|
|
|
|
int grp = *(uint32_t*)RTA_DATA(tb[FRA_SUPPRESS_IFGROUP]);
|
|
|
|
if (grp != -1)
|
|
|
|
printf("%s %d ", keyword_suppress_ifgroup, grp);
|
|
|
|
}
|
|
|
|
|
2006-11-21 21:06:08 +05:30
|
|
|
if (tb[RTA_FLOW]) {
|
2007-01-01 00:27:37 +05:30
|
|
|
uint32_t to = *(uint32_t*)RTA_DATA(tb[RTA_FLOW]);
|
|
|
|
uint32_t from = to>>16;
|
2006-11-21 21:06:08 +05:30
|
|
|
to &= 0xFFFF;
|
|
|
|
if (from) {
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("realms %s/",
|
2015-10-08 16:32:28 +05:30
|
|
|
rtnl_rtrealm_n2a(from));
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("%s ",
|
2015-10-08 16:32:28 +05:30
|
|
|
rtnl_rtrealm_n2a(to));
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (r->rtm_type == RTN_NAT) {
|
|
|
|
if (tb[RTA_GATEWAY]) {
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("map-to %s ",
|
2006-11-21 21:06:08 +05:30
|
|
|
format_host(r->rtm_family,
|
|
|
|
RTA_PAYLOAD(tb[RTA_GATEWAY]),
|
2015-10-14 17:26:42 +05:30
|
|
|
RTA_DATA(tb[RTA_GATEWAY]))
|
|
|
|
);
|
2006-11-21 21:06:08 +05:30
|
|
|
} else
|
2008-06-05 10:30:24 +05:30
|
|
|
printf("masquerade");
|
2006-11-21 21:06:08 +05:30
|
|
|
} else if (r->rtm_type != RTN_UNICAST)
|
2015-10-08 16:32:28 +05:30
|
|
|
fputs(rtnl_rtntype_n2a(r->rtm_type), stdout);
|
2006-11-21 21:06:08 +05:30
|
|
|
|
2008-06-05 10:30:24 +05:30
|
|
|
bb_putchar('\n');
|
2009-11-02 18:49:51 +05:30
|
|
|
/*fflush_all();*/
|
2006-11-21 21:06:08 +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 iprule_list(char **argv)
|
2006-11-21 21:06:08 +05:30
|
|
|
{
|
|
|
|
struct rtnl_handle rth;
|
|
|
|
int af = preferred_family;
|
|
|
|
|
|
|
|
if (af == AF_UNSPEC)
|
|
|
|
af = AF_INET;
|
|
|
|
|
2007-11-19 04:26:25 +05:30
|
|
|
if (*argv) {
|
2007-01-28 05:50:46 +05:30
|
|
|
//bb_error_msg("\"rule show\" needs no arguments");
|
2010-01-04 17:46:08 +05:30
|
|
|
bb_warn_ignoring_args(*argv);
|
2006-11-21 21:06:08 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-04-12 17:04:39 +05:30
|
|
|
xrtnl_open(&rth);
|
2006-11-21 21:06:08 +05:30
|
|
|
|
2007-04-12 17:04:39 +05:30
|
|
|
xrtnl_wilddump_request(&rth, af, RTM_GETRULE);
|
2008-06-05 10:30:24 +05:30
|
|
|
xrtnl_dump_filter(&rth, print_rule, NULL);
|
2006-11-21 21:06:08 +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 iprule_modify(int cmd, char **argv)
|
2006-11-21 21:06:08 +05:30
|
|
|
{
|
2007-06-20 20:23:49 +05:30
|
|
|
bool table_ok = 0;
|
2006-11-21 21:06:08 +05:30
|
|
|
struct rtnl_handle rth;
|
|
|
|
struct {
|
2010-10-29 15:16:52 +05:30
|
|
|
struct nlmsghdr n;
|
|
|
|
struct rtmsg r;
|
|
|
|
char buf[1024];
|
2006-11-21 21:06:08 +05:30
|
|
|
} req;
|
2007-06-20 20:23:49 +05:30
|
|
|
smalluint key;
|
2006-11-21 21:06:08 +05:30
|
|
|
|
|
|
|
memset(&req, 0, sizeof(req));
|
|
|
|
|
|
|
|
req.n.nlmsg_type = cmd;
|
|
|
|
req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
|
|
|
|
req.n.nlmsg_flags = NLM_F_REQUEST;
|
|
|
|
req.r.rtm_family = preferred_family;
|
|
|
|
req.r.rtm_protocol = RTPROT_BOOT;
|
2016-08-14 05:38:56 +05:30
|
|
|
if (RT_SCOPE_UNIVERSE != 0)
|
|
|
|
req.r.rtm_scope = RT_SCOPE_UNIVERSE;
|
|
|
|
/*req.r.rtm_table = 0; - already is */
|
|
|
|
if (RTN_UNSPEC != 0)
|
|
|
|
req.r.rtm_type = RTN_UNSPEC;
|
2006-11-21 21:06:08 +05:30
|
|
|
|
|
|
|
if (cmd == RTM_NEWRULE) {
|
|
|
|
req.n.nlmsg_flags |= NLM_F_CREATE|NLM_F_EXCL;
|
|
|
|
req.r.rtm_type = RTN_UNICAST;
|
|
|
|
}
|
|
|
|
|
2007-11-19 04:26:25 +05:30
|
|
|
while (*argv) {
|
2007-07-24 21:24:42 +05:30
|
|
|
key = index_in_substrings(keywords, *argv) + 1;
|
2007-06-20 20:23:49 +05:30
|
|
|
if (key == 0) /* no match found in keywords array, bail out. */
|
2015-10-14 16:51:01 +05:30
|
|
|
invarg_1_to_2(*argv, applet_name);
|
2007-06-20 20:23:49 +05:30
|
|
|
if (key == ARG_from) {
|
2006-11-21 21:06:08 +05:30
|
|
|
inet_prefix dst;
|
|
|
|
NEXT_ARG();
|
|
|
|
get_prefix(&dst, *argv, req.r.rtm_family);
|
|
|
|
req.r.rtm_src_len = dst.bitlen;
|
|
|
|
addattr_l(&req.n, sizeof(req), RTA_SRC, &dst.data, dst.bytelen);
|
2007-06-20 20:23:49 +05:30
|
|
|
} else if (key == ARG_to) {
|
2006-11-21 21:06:08 +05:30
|
|
|
inet_prefix dst;
|
|
|
|
NEXT_ARG();
|
|
|
|
get_prefix(&dst, *argv, req.r.rtm_family);
|
|
|
|
req.r.rtm_dst_len = dst.bitlen;
|
|
|
|
addattr_l(&req.n, sizeof(req), RTA_DST, &dst.data, dst.bytelen);
|
2007-06-20 20:23:49 +05:30
|
|
|
} else if (key == ARG_preference ||
|
|
|
|
key == ARG_order ||
|
2010-01-28 06:54:24 +05:30
|
|
|
key == ARG_priority
|
|
|
|
) {
|
2007-01-01 00:27:37 +05:30
|
|
|
uint32_t pref;
|
2006-11-21 21:06:08 +05:30
|
|
|
NEXT_ARG();
|
2017-06-13 22:36:09 +05:30
|
|
|
pref = get_u32(*argv, keyword_preference);
|
2006-11-21 21:06:08 +05:30
|
|
|
addattr32(&req.n, sizeof(req), RTA_PRIORITY, pref);
|
2007-06-20 20:23:49 +05:30
|
|
|
} else if (key == ARG_tos) {
|
2007-01-01 00:27:37 +05:30
|
|
|
uint32_t tos;
|
2006-11-21 21:06:08 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
if (rtnl_dsfield_a2n(&tos, *argv))
|
2015-10-14 16:51:01 +05:30
|
|
|
invarg_1_to_2(*argv, "TOS");
|
2006-11-21 21:06:08 +05:30
|
|
|
req.r.rtm_tos = tos;
|
2007-06-20 20:23:49 +05:30
|
|
|
} else if (key == ARG_fwmark) {
|
2007-01-01 00:27:37 +05:30
|
|
|
uint32_t fwmark;
|
2006-11-21 21:06:08 +05:30
|
|
|
NEXT_ARG();
|
2017-06-13 22:36:09 +05:30
|
|
|
fwmark = get_u32(*argv, keyword_fwmark);
|
2006-11-21 21:06:08 +05:30
|
|
|
addattr32(&req.n, sizeof(req), RTA_PROTOINFO, fwmark);
|
2007-06-20 20:23:49 +05:30
|
|
|
} else if (key == ARG_realms) {
|
2007-01-01 00:27:37 +05:30
|
|
|
uint32_t realm;
|
2006-11-21 21:06:08 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
if (get_rt_realms(&realm, *argv))
|
2017-06-13 22:36:09 +05:30
|
|
|
invarg_1_to_2(*argv, keyword_realms);
|
2006-11-21 21:06:08 +05:30
|
|
|
addattr32(&req.n, sizeof(req), RTA_FLOW, realm);
|
2007-06-20 20:23:49 +05:30
|
|
|
} else if (key == ARG_table ||
|
2010-01-28 06:54:24 +05:30
|
|
|
key == ARG_lookup
|
|
|
|
) {
|
2007-01-28 05:50:46 +05:30
|
|
|
uint32_t tid;
|
2006-11-21 21:06:08 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
if (rtnl_rttable_a2n(&tid, *argv))
|
2015-10-14 16:51:01 +05:30
|
|
|
invarg_1_to_2(*argv, "table ID");
|
2017-10-19 03:35:11 +05:30
|
|
|
|
|
|
|
#if HAVE_RTA_TABLE
|
|
|
|
if (tid > 255) {
|
2016-12-13 18:28:31 +05:30
|
|
|
req.r.rtm_table = RT_TABLE_UNSPEC;
|
|
|
|
addattr32(&req.n, sizeof(req), RTA_TABLE, tid);
|
2017-10-19 03:35:11 +05:30
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
req.r.rtm_table = tid;
|
|
|
|
|
2006-11-21 21:06:08 +05:30
|
|
|
table_ok = 1;
|
2017-06-13 22:36:09 +05:30
|
|
|
} else if (key == ARG_suppress_prefixlength) {
|
|
|
|
int prefix_length;
|
|
|
|
NEXT_ARG();
|
|
|
|
prefix_length = get_u32(*argv, keyword_suppress_prefixlength);
|
|
|
|
addattr32(&req.n, sizeof(req), FRA_SUPPRESS_PREFIXLEN, prefix_length);
|
|
|
|
} else if (key == ARG_suppress_ifgroup) {
|
|
|
|
int grp;
|
|
|
|
NEXT_ARG();
|
|
|
|
grp = get_u32(*argv, keyword_suppress_ifgroup);
|
|
|
|
addattr32(&req.n, sizeof(req), FRA_SUPPRESS_IFGROUP, grp);
|
2007-06-20 20:23:49 +05:30
|
|
|
} else if (key == ARG_dev ||
|
2010-01-28 06:54:24 +05:30
|
|
|
key == ARG_iif
|
|
|
|
) {
|
2006-11-21 21:06:08 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
addattr_l(&req.n, sizeof(req), RTA_IIF, *argv, strlen(*argv)+1);
|
2007-06-20 20:23:49 +05:30
|
|
|
} else if (key == ARG_nat ||
|
2010-01-28 06:54:24 +05:30
|
|
|
key == ARG_map_to
|
|
|
|
) {
|
2006-11-21 21:06:08 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
addattr32(&req.n, sizeof(req), RTA_GATEWAY, get_addr32(*argv));
|
|
|
|
req.r.rtm_type = RTN_NAT;
|
|
|
|
} else {
|
|
|
|
int type;
|
|
|
|
|
2007-06-20 20:23:49 +05:30
|
|
|
if (key == ARG_type) {
|
2006-11-21 21:06:08 +05:30
|
|
|
NEXT_ARG();
|
|
|
|
}
|
2007-06-20 20:23:49 +05:30
|
|
|
if (key == ARG_help)
|
2006-11-21 21:06:08 +05:30
|
|
|
bb_show_usage();
|
|
|
|
if (rtnl_rtntype_a2n(&type, *argv))
|
2015-10-14 16:51:01 +05:30
|
|
|
invarg_1_to_2(*argv, "type");
|
2006-11-21 21:06:08 +05:30
|
|
|
req.r.rtm_type = type;
|
|
|
|
}
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (req.r.rtm_family == AF_UNSPEC)
|
|
|
|
req.r.rtm_family = AF_INET;
|
|
|
|
|
|
|
|
if (!table_ok && cmd == RTM_NEWRULE)
|
|
|
|
req.r.rtm_table = RT_TABLE_MAIN;
|
|
|
|
|
2007-04-12 17:04:39 +05:30
|
|
|
xrtnl_open(&rth);
|
2006-11-21 21:06:08 +05:30
|
|
|
|
|
|
|
if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-04-07 06:44:45 +05:30
|
|
|
/* Return value becomes exitcode. It's okay to not return at all */
|
2010-07-25 02:57:38 +05:30
|
|
|
int FAST_FUNC do_iprule(char **argv)
|
2006-11-21 21:06:08 +05:30
|
|
|
{
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char ip_rule_commands[] ALIGN1 =
|
2007-07-24 21:24:42 +05:30
|
|
|
"add\0""delete\0""list\0""show\0";
|
2010-05-25 20:52:17 +05:30
|
|
|
if (*argv) {
|
2013-07-15 08:45:46 +05:30
|
|
|
int cmd = index_in_substrings(ip_rule_commands, *argv);
|
|
|
|
if (cmd < 0)
|
2015-10-14 16:51:01 +05:30
|
|
|
invarg_1_to_2(*argv, applet_name);
|
2010-05-25 20:52:17 +05:30
|
|
|
argv++;
|
|
|
|
if (cmd < 2)
|
|
|
|
return iprule_modify((cmd == 0) ? RTM_NEWRULE : RTM_DELRULE, argv);
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|
2010-05-25 20:52:17 +05:30
|
|
|
return iprule_list(argv);
|
2006-11-21 21:06:08 +05:30
|
|
|
}
|