blob: 5a972f8b2b782692a2e494b3a7e1696cdb525fde [file] [log] [blame]
Bernhard Reutner-Fischerd1d23a62006-01-12 12:08:46 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00002/*
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00004 *
Denys Vlasenkofb132e42010-10-29 11:46:52 +02005 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00006 *
7 * Changes:
8 *
Denys Vlasenkofb132e42010-10-29 11:46:52 +02009 * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000010 * Kunihiro Ishiguro <kunihiro@zebra.org> 001102: rtnh_ifindex was not initialized
11 */
Denys Vlasenkofb132e42010-10-29 11:46:52 +020012#include "ip_common.h" /* #include "libbb.h" is inside */
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020013#include "common_bufsiz.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000014#include "rt_names.h"
15#include "utils.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000016
Eugene Rudoyecce3a12017-10-19 00:05:11 +020017#include <linux/version.h>
18/* RTA_TABLE is not a define, can't test with ifdef. */
19/* As a proxy, test which kernels toolchain expects: */
20#define HAVE_RTA_TABLE (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19))
21
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000022#ifndef RTAX_RTTVAR
23#define RTAX_RTTVAR RTAX_HOPS
24#endif
25
26
Denys Vlasenko36659fd2010-02-05 14:40:23 +010027struct filter_t {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000028 int tb;
Denys Vlasenko028c5aa2019-05-22 13:54:46 +020029 /* Misnomer. Does not mean "flushed something" */
30 /* More like "flush commands were constructed by print_route()" */
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000031 smallint flushed;
Denys Vlasenko028c5aa2019-05-22 13:54:46 +020032 /* Flush cmd buf. If !NULL, print_route() constructs flush commands in it */
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000033 char *flushb;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000034 int flushp;
35 int flushe;
36 struct rtnl_handle *rth;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010037 //int protocol, protocolmask; - write-only fields?!
André Draszik2f24d302017-06-13 19:59:59 +020038 int scope, scopemask;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010039 //int type; - read-only
40 //int typemask; - unused
41 //int tos, tosmask; - unused
Denys Vlasenkof1334712011-02-09 04:39:09 +010042 int iif;
43 int oif;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010044 //int realm, realmmask; - unused
45 //inet_prefix rprefsrc; - read-only
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000046 inet_prefix rvia;
47 inet_prefix rdst;
48 inet_prefix mdst;
49 inet_prefix rsrc;
50 inet_prefix msrc;
Denys Vlasenko36659fd2010-02-05 14:40:23 +010051} FIX_ALIASING;
52typedef struct filter_t filter_t;
Denis Vlasenko540a2a12007-04-07 01:14:45 +000053
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020054#define G_filter (*(filter_t*)bb_common_bufsiz1)
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +020055#define INIT_G() do { setup_common_bufsiz(); } while (0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000056
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000057static int flush_update(void)
58{
Denys Vlasenko028c5aa2019-05-22 13:54:46 +020059 if (rtnl_send_check(G_filter.rth, G_filter.flushb, G_filter.flushp) < 0) {
James Byrne69374872019-07-02 11:35:03 +020060 bb_simple_perror_msg("can't send flush request");
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000061 return -1;
62 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010063 G_filter.flushp = 0;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000064 return 0;
65}
66
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020067static int FAST_FUNC print_route(const struct sockaddr_nl *who UNUSED_PARAM,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000068 struct nlmsghdr *n, void *arg UNUSED_PARAM)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000069{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000070 struct rtmsg *r = NLMSG_DATA(n);
71 int len = n->nlmsg_len;
Denys Vlasenko3bb235c2011-02-23 01:20:44 +010072 struct rtattr *tb[RTA_MAX+1];
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +000073 inet_prefix dst;
74 inet_prefix src;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000075 int host_len = -1;
Lukasz Nowakb42107f2016-12-13 12:58:31 +000076 uint32_t tid;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000077
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000078 if (n->nlmsg_type != RTM_NEWROUTE && n->nlmsg_type != RTM_DELROUTE) {
79 fprintf(stderr, "Not a route: %08x %08x %08x\n",
80 n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
81 return 0;
82 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010083 if (G_filter.flushb && n->nlmsg_type != RTM_NEWROUTE)
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000084 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000085 len -= NLMSG_LENGTH(sizeof(*r));
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000086 if (len < 0)
87 bb_error_msg_and_die("wrong nlmsg len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000088
Denys Vlasenko68ae5422018-02-08 08:42:37 +010089 //memset(tb, 0, sizeof(tb)); - parse_rtattr does this
Lukasz Nowakb42107f2016-12-13 12:58:31 +000090 parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
91
Eugene Rudoyecce3a12017-10-19 00:05:11 +020092#if HAVE_RTA_TABLE
Lukasz Nowakb42107f2016-12-13 12:58:31 +000093 if (tb[RTA_TABLE])
94 tid = *(uint32_t *)RTA_DATA(tb[RTA_TABLE]);
95 else
Eugene Rudoyecce3a12017-10-19 00:05:11 +020096#endif
Lukasz Nowakb42107f2016-12-13 12:58:31 +000097 tid = r->rtm_table;
98
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000099 if (r->rtm_family == AF_INET6)
100 host_len = 128;
101 else if (r->rtm_family == AF_INET)
102 host_len = 32;
103
104 if (r->rtm_family == AF_INET6) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100105 if (G_filter.tb) {
106 if (G_filter.tb < 0) {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000107 if (!(r->rtm_flags & RTM_F_CLONED)) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000108 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000109 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000110 } else {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000111 if (r->rtm_flags & RTM_F_CLONED) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000112 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000113 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100114 if (G_filter.tb == RT_TABLE_LOCAL) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000115 if (r->rtm_type != RTN_LOCAL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000116 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000117 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100118 } else if (G_filter.tb == RT_TABLE_MAIN) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000119 if (r->rtm_type == RTN_LOCAL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000120 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000121 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000122 } else {
123 return 0;
124 }
125 }
126 }
127 } else {
Lukasz Nowakb42107f2016-12-13 12:58:31 +0000128 if (G_filter.tb > 0 && G_filter.tb != tid) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000129 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000130 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000131 }
André Draszik2f24d302017-06-13 19:59:59 +0200132 if ((G_filter.scope ^ r->rtm_scope) & G_filter.scopemask)
133 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100134 if (G_filter.rdst.family
135 && (r->rtm_family != G_filter.rdst.family || G_filter.rdst.bitlen > r->rtm_dst_len)
136 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000137 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000138 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100139 if (G_filter.mdst.family
140 && (r->rtm_family != G_filter.mdst.family
141 || (G_filter.mdst.bitlen >= 0 && G_filter.mdst.bitlen < r->rtm_dst_len)
142 )
143 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000144 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000145 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100146 if (G_filter.rsrc.family
147 && (r->rtm_family != G_filter.rsrc.family || G_filter.rsrc.bitlen > r->rtm_src_len)
148 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000149 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000150 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100151 if (G_filter.msrc.family
152 && (r->rtm_family != G_filter.msrc.family
153 || (G_filter.msrc.bitlen >= 0 && G_filter.msrc.bitlen < r->rtm_src_len)
154 )
155 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000156 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000157 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000158
Denys Vlasenko3bb235c2011-02-23 01:20:44 +0100159 memset(&src, 0, sizeof(src));
160 memset(&dst, 0, sizeof(dst));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000161
Denys Vlasenko3bb235c2011-02-23 01:20:44 +0100162 if (tb[RTA_SRC]) {
163 src.bitlen = r->rtm_src_len;
164 src.bytelen = (r->rtm_family == AF_INET6 ? 16 : 4);
165 memcpy(src.data, RTA_DATA(tb[RTA_SRC]), src.bytelen);
166 }
167 if (tb[RTA_DST]) {
168 dst.bitlen = r->rtm_dst_len;
169 dst.bytelen = (r->rtm_family == AF_INET6 ? 16 : 4);
170 memcpy(dst.data, RTA_DATA(tb[RTA_DST]), dst.bytelen);
171 }
172
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100173 if (G_filter.rdst.family
174 && inet_addr_match(&dst, &G_filter.rdst, G_filter.rdst.bitlen)
175 ) {
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +0000176 return 0;
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100177 }
178 if (G_filter.mdst.family
179 && G_filter.mdst.bitlen >= 0
180 && inet_addr_match(&dst, &G_filter.mdst, r->rtm_dst_len)
181 ) {
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +0000182 return 0;
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100183 }
184 if (G_filter.rsrc.family
185 && inet_addr_match(&src, &G_filter.rsrc, G_filter.rsrc.bitlen)
186 ) {
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +0000187 return 0;
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100188 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100189 if (G_filter.msrc.family && G_filter.msrc.bitlen >= 0
190 && inet_addr_match(&src, &G_filter.msrc, r->rtm_src_len)
191 ) {
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +0000192 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100193 }
Denys Vlasenkof1334712011-02-09 04:39:09 +0100194 if (G_filter.oif != 0) {
195 if (!tb[RTA_OIF])
196 return 0;
197 if (G_filter.oif != *(int*)RTA_DATA(tb[RTA_OIF]))
198 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100199 }
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000200
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100201 if (G_filter.flushb) {
Denys Vlasenkoe3ece782011-02-10 09:50:07 +0100202 struct nlmsghdr *fn;
203
Denys Vlasenkof1334712011-02-09 04:39:09 +0100204 /* We are creating route flush commands */
205
206 if (r->rtm_family == AF_INET6
207 && r->rtm_dst_len == 0
208 && r->rtm_type == RTN_UNREACHABLE
209 && tb[RTA_PRIORITY]
210 && *(int*)RTA_DATA(tb[RTA_PRIORITY]) == -1
211 ) {
212 return 0;
213 }
214
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100215 if (NLMSG_ALIGN(G_filter.flushp) + n->nlmsg_len > G_filter.flushe) {
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000216 if (flush_update())
Curt Brune69934702015-10-14 12:53:47 +0200217 xfunc_die();
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000218 }
Denys Vlasenkoe3ece782011-02-10 09:50:07 +0100219 fn = (void*)(G_filter.flushb + NLMSG_ALIGN(G_filter.flushp));
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000220 memcpy(fn, n, n->nlmsg_len);
221 fn->nlmsg_type = RTM_DELROUTE;
222 fn->nlmsg_flags = NLM_F_REQUEST;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100223 fn->nlmsg_seq = ++G_filter.rth->seq;
224 G_filter.flushp = (((char*)fn) + n->nlmsg_len) - G_filter.flushb;
225 G_filter.flushed = 1;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000226 return 0;
227 }
228
Denys Vlasenkof1334712011-02-09 04:39:09 +0100229 /* We are printing routes */
230
Glenn L McGrath16528552002-11-28 11:17:19 +0000231 if (n->nlmsg_type == RTM_DELROUTE) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000232 printf("Deleted ");
Glenn L McGrath16528552002-11-28 11:17:19 +0000233 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100234 if (r->rtm_type != RTN_UNICAST /* && !G_filter.type - always 0 */) {
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200235 printf("%s ", rtnl_rtntype_n2a(r->rtm_type));
Glenn L McGrath16528552002-11-28 11:17:19 +0000236 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000237
238 if (tb[RTA_DST]) {
239 if (r->rtm_dst_len != host_len) {
Denys Vlasenko926d8012015-10-14 13:56:42 +0200240 printf("%s/%u ",
241 rt_addr_n2a(r->rtm_family, RTA_DATA(tb[RTA_DST])),
242 r->rtm_dst_len
243 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000244 } else {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000245 printf("%s ", format_host(r->rtm_family,
246 RTA_PAYLOAD(tb[RTA_DST]),
Denys Vlasenko926d8012015-10-14 13:56:42 +0200247 RTA_DATA(tb[RTA_DST]))
248 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000249 }
250 } else if (r->rtm_dst_len) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000251 printf("0/%d ", r->rtm_dst_len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000252 } else {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000253 printf("default ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000254 }
255 if (tb[RTA_SRC]) {
256 if (r->rtm_src_len != host_len) {
Denys Vlasenko926d8012015-10-14 13:56:42 +0200257 printf("from %s/%u ",
258 rt_addr_n2a(r->rtm_family, RTA_DATA(tb[RTA_SRC])),
259 r->rtm_src_len
260 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000261 } else {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000262 printf("from %s ", format_host(r->rtm_family,
263 RTA_PAYLOAD(tb[RTA_SRC]),
Denys Vlasenko926d8012015-10-14 13:56:42 +0200264 RTA_DATA(tb[RTA_SRC]))
265 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000266 }
267 } else if (r->rtm_src_len) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000268 printf("from 0/%u ", r->rtm_src_len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000269 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100270 if (tb[RTA_GATEWAY] && G_filter.rvia.bitlen != host_len) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000271 printf("via %s ", format_host(r->rtm_family,
272 RTA_PAYLOAD(tb[RTA_GATEWAY]),
Denys Vlasenko926d8012015-10-14 13:56:42 +0200273 RTA_DATA(tb[RTA_GATEWAY]))
274 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000275 }
Denys Vlasenkof1334712011-02-09 04:39:09 +0100276 if (tb[RTA_OIF]) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000277 printf("dev %s ", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_OIF])));
Glenn L McGrath16528552002-11-28 11:17:19 +0000278 }
Lukasz Nowakb42107f2016-12-13 12:58:31 +0000279#if ENABLE_FEATURE_IP_RULE
280 if (tid && tid != RT_TABLE_MAIN && !G_filter.tb)
281 printf("table %s ", rtnl_rttable_n2a(tid));
282#endif
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000283
André Draszik2f24d302017-06-13 19:59:59 +0200284 /* Todo: parse & show "proto kernel" here */
285 if (!(r->rtm_flags & RTM_F_CLONED)) {
286 if ((r->rtm_scope != RT_SCOPE_UNIVERSE) && G_filter.scopemask != -1)
287 printf("scope %s ", rtnl_rtscope_n2a(r->rtm_scope));
288 }
Denys Vlasenkof1334712011-02-09 04:39:09 +0100289
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100290 if (tb[RTA_PREFSRC] && /*G_filter.rprefsrc.bitlen - always 0*/ 0 != host_len) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000291 /* Do not use format_host(). It is our local addr
292 and symbolic name will not be useful.
293 */
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000294 printf(" src %s ", rt_addr_n2a(r->rtm_family,
Denys Vlasenko926d8012015-10-14 13:56:42 +0200295 RTA_DATA(tb[RTA_PREFSRC])));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000296 }
Glenn L McGrath16528552002-11-28 11:17:19 +0000297 if (tb[RTA_PRIORITY]) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000298 printf(" metric %d ", *(uint32_t*)RTA_DATA(tb[RTA_PRIORITY]));
Glenn L McGrath16528552002-11-28 11:17:19 +0000299 }
Michael Tokarev1a114392014-07-28 10:05:41 +0400300 if (r->rtm_flags & RTNH_F_DEAD) {
301 printf("dead ");
302 }
303 if (r->rtm_flags & RTNH_F_ONLINK) {
304 printf("onlink ");
305 }
306 if (r->rtm_flags & RTNH_F_PERVASIVE) {
307 printf("pervasive ");
308 }
309 if (r->rtm_flags & RTM_F_NOTIFY) {
310 printf("notify ");
311 }
312
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000313 if (r->rtm_family == AF_INET6) {
314 struct rta_cacheinfo *ci = NULL;
Glenn L McGrath16528552002-11-28 11:17:19 +0000315 if (tb[RTA_CACHEINFO]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000316 ci = RTA_DATA(tb[RTA_CACHEINFO]);
Glenn L McGrath16528552002-11-28 11:17:19 +0000317 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000318 if ((r->rtm_flags & RTM_F_CLONED) || (ci && ci->rta_expires)) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000319 if (r->rtm_flags & RTM_F_CLONED) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000320 printf("%c cache ", _SL_);
Glenn L McGrath16528552002-11-28 11:17:19 +0000321 }
322 if (ci->rta_expires) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000323 printf(" expires %dsec", ci->rta_expires / get_hz());
Glenn L McGrath16528552002-11-28 11:17:19 +0000324 }
325 if (ci->rta_error != 0) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000326 printf(" error %d", ci->rta_error);
Glenn L McGrath16528552002-11-28 11:17:19 +0000327 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000328 } else if (ci) {
329 if (ci->rta_error != 0)
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000330 printf(" error %d", ci->rta_error);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000331 }
332 }
Denys Vlasenkof1334712011-02-09 04:39:09 +0100333 if (tb[RTA_IIF] && G_filter.iif == 0) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000334 printf(" iif %s", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_IIF])));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000335 }
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000336 bb_putchar('\n');
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000337 return 0;
338}
339
Denys Vlasenkod5342a12017-04-07 17:00:53 +0200340static int str_is_lock(const char *str)
341{
342 return strcmp(str, "lock") == 0;
343}
344
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000345/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000346static int iproute_modify(int cmd, unsigned flags, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000347{
Denys Vlasenko1140bf32017-04-06 17:54:38 +0200348 /* If you add stuff here, update iproute_full_usage */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000349 static const char keywords[] ALIGN1 =
Denys Vlasenkod5342a12017-04-07 17:00:53 +0200350 "src\0""via\0"
351 "mtu\0""advmss\0"
352 "scope\0""protocol\0"IF_FEATURE_IP_RULE("table\0")
Michael Tokarev1a114392014-07-28 10:05:41 +0400353 "dev\0""oif\0""to\0""metric\0""onlink\0";
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +0200354#define keyword_via (keywords + sizeof("src"))
355#define keyword_mtu (keyword_via + sizeof("via"))
356#define keyword_advmss (keyword_mtu + sizeof("mtu"))
357#define keyword_scope (keyword_advmss + sizeof("advmss"))
358#define keyword_proto (keyword_scope + sizeof("scope"))
359#define keyword_table (keyword_proto + sizeof("protocol"))
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000360 enum {
361 ARG_src,
362 ARG_via,
Denys Vlasenko1140bf32017-04-06 17:54:38 +0200363 ARG_mtu,
Denys Vlasenkod5342a12017-04-07 17:00:53 +0200364 ARG_advmss,
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100365 ARG_scope,
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000366 ARG_protocol,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000367IF_FEATURE_IP_RULE(ARG_table,)
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000368 ARG_dev,
369 ARG_oif,
Bernhard Reutner-Fischer578de862008-10-07 17:00:58 +0000370 ARG_to,
371 ARG_metric,
Michael Tokarev1a114392014-07-28 10:05:41 +0400372 ARG_onlink,
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000373 };
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000374 enum {
375 gw_ok = 1 << 0,
376 dst_ok = 1 << 1,
377 proto_ok = 1 << 2,
378 type_ok = 1 << 3
379 };
380 struct rtnl_handle rth;
381 struct {
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200382 struct nlmsghdr n;
383 struct rtmsg r;
384 char buf[1024];
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000385 } req;
386 char mxbuf[256];
387 struct rtattr * mxrta = (void*)mxbuf;
388 unsigned mxlock = 0;
389 char *d = NULL;
390 smalluint ok = 0;
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100391 smalluint scope_ok = 0;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000392 int arg;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000393
394 memset(&req, 0, sizeof(req));
395
396 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000397 req.n.nlmsg_flags = NLM_F_REQUEST | flags;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000398 req.n.nlmsg_type = cmd;
399 req.r.rtm_family = preferred_family;
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100400 if (RT_TABLE_MAIN != 0) /* if it is zero, memset already did it */
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000401 req.r.rtm_table = RT_TABLE_MAIN;
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100402 if (RT_SCOPE_NOWHERE != 0)
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000403 req.r.rtm_scope = RT_SCOPE_NOWHERE;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000404
405 if (cmd != RTM_DELROUTE) {
Denys Vlasenko34ecc3b2016-08-14 01:30:34 +0200406 req.r.rtm_scope = RT_SCOPE_UNIVERSE;
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100407 if (RTPROT_BOOT != 0)
408 req.r.rtm_protocol = RTPROT_BOOT;
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100409 if (RTN_UNICAST != 0)
410 req.r.rtm_type = RTN_UNICAST;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000411 }
412
413 mxrta->rta_type = RTA_METRICS;
414 mxrta->rta_len = RTA_LENGTH(0);
415
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000416 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000417 arg = index_in_substrings(keywords, *argv);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000418 if (arg == ARG_src) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000419 inet_prefix addr;
420 NEXT_ARG();
421 get_addr(&addr, *argv, req.r.rtm_family);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000422 if (req.r.rtm_family == AF_UNSPEC)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000423 req.r.rtm_family = addr.family;
424 addattr_l(&req.n, sizeof(req), RTA_PREFSRC, &addr.data, addr.bytelen);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000425 } else if (arg == ARG_via) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000426 inet_prefix addr;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000427 ok |= gw_ok;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000428 NEXT_ARG();
429 get_addr(&addr, *argv, req.r.rtm_family);
Glenn L McGrath16528552002-11-28 11:17:19 +0000430 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000431 req.r.rtm_family = addr.family;
Glenn L McGrath16528552002-11-28 11:17:19 +0000432 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000433 addattr_l(&req.n, sizeof(req), RTA_GATEWAY, &addr.data, addr.bytelen);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000434 } else if (arg == ARG_mtu) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000435 unsigned mtu;
436 NEXT_ARG();
Denys Vlasenkod5342a12017-04-07 17:00:53 +0200437 if (str_is_lock(*argv)) {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000438 mxlock |= (1 << RTAX_MTU);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000439 NEXT_ARG();
440 }
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +0200441 mtu = get_unsigned(*argv, keyword_mtu);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000442 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_MTU, mtu);
Denys Vlasenkod5342a12017-04-07 17:00:53 +0200443 } else if (arg == ARG_advmss) {
444 unsigned mss;
445 NEXT_ARG();
446 if (str_is_lock(*argv)) {
447 mxlock |= (1 << RTAX_ADVMSS);
448 NEXT_ARG();
449 }
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +0200450 mss = get_unsigned(*argv, keyword_advmss);
Denys Vlasenkod5342a12017-04-07 17:00:53 +0200451 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_ADVMSS, mss);
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100452 } else if (arg == ARG_scope) {
453 uint32_t scope;
454 NEXT_ARG();
455 if (rtnl_rtscope_a2n(&scope, *argv))
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +0200456 invarg_1_to_2(*argv, keyword_scope);
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100457 req.r.rtm_scope = scope;
458 scope_ok = 1;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000459 } else if (arg == ARG_protocol) {
Eric Andersend78aea82006-01-30 18:00:02 +0000460 uint32_t prot;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000461 NEXT_ARG();
462 if (rtnl_rtprot_a2n(&prot, *argv))
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +0200463 invarg_1_to_2(*argv, keyword_proto);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000464 req.r.rtm_protocol = prot;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000465 ok |= proto_ok;
Bernhard Reutner-Fischerab51bf42007-04-16 14:56:01 +0000466#if ENABLE_FEATURE_IP_RULE
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000467 } else if (arg == ARG_table) {
Denis Vlasenkocda6c632006-12-15 00:59:35 +0000468 uint32_t tid;
469 NEXT_ARG();
470 if (rtnl_rttable_a2n(&tid, *argv))
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +0200471 invarg_1_to_2(*argv, keyword_table);
Eugene Rudoyecce3a12017-10-19 00:05:11 +0200472#if HAVE_RTA_TABLE
473 if (tid > 255) {
Lukasz Nowakb42107f2016-12-13 12:58:31 +0000474 req.r.rtm_table = RT_TABLE_UNSPEC;
475 addattr32(&req.n, sizeof(req), RTA_TABLE, tid);
Eugene Rudoyecce3a12017-10-19 00:05:11 +0200476 } else
477#endif
478 req.r.rtm_table = tid;
Bernhard Reutner-Fischerab51bf42007-04-16 14:56:01 +0000479#endif
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000480 } else if (arg == ARG_dev || arg == ARG_oif) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000481 NEXT_ARG();
482 d = *argv;
Bernhard Reutner-Fischer578de862008-10-07 17:00:58 +0000483 } else if (arg == ARG_metric) {
Denys Vlasenko1140bf32017-04-06 17:54:38 +0200484//TODO: "metric", "priority" and "preference" are synonyms
Bernhard Reutner-Fischer578de862008-10-07 17:00:58 +0000485 uint32_t metric;
486 NEXT_ARG();
Denis Vlasenko76140a72009-03-05 09:21:57 +0000487 metric = get_u32(*argv, "metric");
Bernhard Reutner-Fischer578de862008-10-07 17:00:58 +0000488 addattr32(&req.n, sizeof(req), RTA_PRIORITY, metric);
Michael Tokarev1a114392014-07-28 10:05:41 +0400489 } else if (arg == ARG_onlink) {
490 req.r.rtm_flags |= RTNH_F_ONLINK;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000491 } else {
492 int type;
493 inet_prefix dst;
494
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000495 if (arg == ARG_to) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000496 NEXT_ARG();
497 }
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000498 if ((**argv < '0' || **argv > '9')
Denys Vlasenko3bb235c2011-02-23 01:20:44 +0100499 && rtnl_rtntype_a2n(&type, *argv) == 0
500 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000501 NEXT_ARG();
502 req.r.rtm_type = type;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000503 ok |= type_ok;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000504 }
505
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000506 if (ok & dst_ok) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000507 duparg2("to", *argv);
Glenn L McGrath16528552002-11-28 11:17:19 +0000508 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000509 get_prefix(&dst, *argv, req.r.rtm_family);
Glenn L McGrath16528552002-11-28 11:17:19 +0000510 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000511 req.r.rtm_family = dst.family;
Glenn L McGrath16528552002-11-28 11:17:19 +0000512 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000513 req.r.rtm_dst_len = dst.bitlen;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000514 ok |= dst_ok;
Glenn L McGrath16528552002-11-28 11:17:19 +0000515 if (dst.bytelen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000516 addattr_l(&req.n, sizeof(req), RTA_DST, &dst.data, dst.bytelen);
Glenn L McGrath16528552002-11-28 11:17:19 +0000517 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000518 }
Denys Vlasenko1140bf32017-04-06 17:54:38 +0200519/* Other keywords recognized by iproute2-3.19.0: */
520#if 0
521 } else if (strcmp(*argv, "from") == 0) {
522 inet_prefix addr;
523 NEXT_ARG();
524 get_prefix(&addr, *argv, req.r.rtm_family);
525 if (req.r.rtm_family == AF_UNSPEC)
526 req.r.rtm_family = addr.family;
527 if (addr.bytelen)
528 addattr_l(&req.n, sizeof(req), RTA_SRC, &addr.data, addr.bytelen);
529 req.r.rtm_src_len = addr.bitlen;
530 } else if (strcmp(*argv, "tos") == 0 ||
531 matches(*argv, "dsfield") == 0) {
532 __u32 tos;
533 NEXT_ARG();
534 if (rtnl_dsfield_a2n(&tos, *argv))
535 invarg("\"tos\" value is invalid\n", *argv);
536 req.r.rtm_tos = tos;
537 } else if (strcmp(*argv, "hoplimit") == 0) {
538 unsigned hoplimit;
539 NEXT_ARG();
540 if (strcmp(*argv, "lock") == 0) {
541 mxlock |= (1<<RTAX_HOPLIMIT);
542 NEXT_ARG();
543 }
544 if (get_unsigned(&hoplimit, *argv, 0))
545 invarg("\"hoplimit\" value is invalid\n", *argv);
546 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_HOPLIMIT, hoplimit);
Denys Vlasenko1140bf32017-04-06 17:54:38 +0200547 } else if (matches(*argv, "reordering") == 0) {
548 unsigned reord;
549 NEXT_ARG();
550 if (strcmp(*argv, "lock") == 0) {
551 mxlock |= (1<<RTAX_REORDERING);
552 NEXT_ARG();
553 }
554 if (get_unsigned(&reord, *argv, 0))
555 invarg("\"reordering\" value is invalid\n", *argv);
556 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_REORDERING, reord);
557 } else if (strcmp(*argv, "rtt") == 0) {
558 unsigned rtt;
559 NEXT_ARG();
560 if (strcmp(*argv, "lock") == 0) {
561 mxlock |= (1<<RTAX_RTT);
562 NEXT_ARG();
563 }
564 if (get_time_rtt(&rtt, *argv, &raw))
565 invarg("\"rtt\" value is invalid\n", *argv);
566 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_RTT,
567 (raw) ? rtt : rtt * 8);
568 } else if (strcmp(*argv, "rto_min") == 0) {
569 unsigned rto_min;
570 NEXT_ARG();
571 mxlock |= (1<<RTAX_RTO_MIN);
572 if (get_time_rtt(&rto_min, *argv, &raw))
573 invarg("\"rto_min\" value is invalid\n",
574 *argv);
575 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_RTO_MIN,
576 rto_min);
577 } else if (matches(*argv, "window") == 0) {
578 unsigned win;
579 NEXT_ARG();
580 if (strcmp(*argv, "lock") == 0) {
581 mxlock |= (1<<RTAX_WINDOW);
582 NEXT_ARG();
583 }
584 if (get_unsigned(&win, *argv, 0))
585 invarg("\"window\" value is invalid\n", *argv);
586 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_WINDOW, win);
587 } else if (matches(*argv, "cwnd") == 0) {
588 unsigned win;
589 NEXT_ARG();
590 if (strcmp(*argv, "lock") == 0) {
591 mxlock |= (1<<RTAX_CWND);
592 NEXT_ARG();
593 }
594 if (get_unsigned(&win, *argv, 0))
595 invarg("\"cwnd\" value is invalid\n", *argv);
596 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_CWND, win);
597 } else if (matches(*argv, "initcwnd") == 0) {
598 unsigned win;
599 NEXT_ARG();
600 if (strcmp(*argv, "lock") == 0) {
601 mxlock |= (1<<RTAX_INITCWND);
602 NEXT_ARG();
603 }
604 if (get_unsigned(&win, *argv, 0))
605 invarg("\"initcwnd\" value is invalid\n", *argv);
606 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_INITCWND, win);
607 } else if (matches(*argv, "initrwnd") == 0) {
608 unsigned win;
609 NEXT_ARG();
610 if (strcmp(*argv, "lock") == 0) {
611 mxlock |= (1<<RTAX_INITRWND);
612 NEXT_ARG();
613 }
614 if (get_unsigned(&win, *argv, 0))
615 invarg("\"initrwnd\" value is invalid\n", *argv);
616 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_INITRWND, win);
617 } else if (matches(*argv, "features") == 0) {
618 unsigned int features = 0;
619
620 while (argc > 0) {
621 NEXT_ARG();
622
623 if (strcmp(*argv, "ecn") == 0)
624 features |= RTAX_FEATURE_ECN;
625 else
626 invarg("\"features\" value not valid\n", *argv);
627 break;
628 }
629
630 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_FEATURES, features);
631 } else if (matches(*argv, "quickack") == 0) {
632 unsigned quickack;
633 NEXT_ARG();
634 if (get_unsigned(&quickack, *argv, 0))
635 invarg("\"quickack\" value is invalid\n", *argv);
636 if (quickack != 1 && quickack != 0)
637 invarg("\"quickack\" value should be 0 or 1\n", *argv);
638 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_QUICKACK, quickack);
639 } else if (matches(*argv, "rttvar") == 0) {
640 unsigned win;
641 NEXT_ARG();
642 if (strcmp(*argv, "lock") == 0) {
643 mxlock |= (1<<RTAX_RTTVAR);
644 NEXT_ARG();
645 }
646 if (get_time_rtt(&win, *argv, &raw))
647 invarg("\"rttvar\" value is invalid\n", *argv);
648 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_RTTVAR,
649 (raw) ? win : win * 4);
650 } else if (matches(*argv, "ssthresh") == 0) {
651 unsigned win;
652 NEXT_ARG();
653 if (strcmp(*argv, "lock") == 0) {
654 mxlock |= (1<<RTAX_SSTHRESH);
655 NEXT_ARG();
656 }
657 if (get_unsigned(&win, *argv, 0))
658 invarg("\"ssthresh\" value is invalid\n", *argv);
659 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_SSTHRESH, win);
660 } else if (matches(*argv, "realms") == 0) {
661 __u32 realm;
662 NEXT_ARG();
663 if (get_rt_realms(&realm, *argv))
664 invarg("\"realm\" value is invalid\n", *argv);
665 addattr32(&req.n, sizeof(req), RTA_FLOW, realm);
666 } else if (strcmp(*argv, "nexthop") == 0) {
667 nhs_ok = 1;
668 break;
669 }
670#endif
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000671 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000672 }
673
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000674 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000675
Eric Andersen5780adb2002-11-15 09:12:47 +0000676 if (d) {
677 int idx;
678
679 ll_init_map(&rth);
680
681 if (d) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000682 idx = xll_name_to_index(d);
Eric Andersen5780adb2002-11-15 09:12:47 +0000683 addattr32(&req.n, sizeof(req), RTA_OIF, idx);
684 }
685 }
686
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000687 if (mxrta->rta_len > RTA_LENGTH(0)) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000688 if (mxlock) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000689 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_LOCK, mxlock);
Glenn L McGrath16528552002-11-28 11:17:19 +0000690 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000691 addattr_l(&req.n, sizeof(req), RTA_METRICS, RTA_DATA(mxrta), RTA_PAYLOAD(mxrta));
692 }
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000693
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100694 if (!scope_ok) {
695 if (req.r.rtm_type == RTN_LOCAL || req.r.rtm_type == RTN_NAT)
696 req.r.rtm_scope = RT_SCOPE_HOST;
697 else
698 if (req.r.rtm_type == RTN_BROADCAST
699 || req.r.rtm_type == RTN_MULTICAST
700 || req.r.rtm_type == RTN_ANYCAST
701 ) {
Bernhard Reutner-Fischer12c96a62007-04-11 16:23:57 +0000702 req.r.rtm_scope = RT_SCOPE_LINK;
Denys Vlasenkoce4bc1e2015-12-30 17:32:51 +0100703 }
704 else if (req.r.rtm_type == RTN_UNICAST || req.r.rtm_type == RTN_UNSPEC) {
705 if (cmd == RTM_DELROUTE)
706 req.r.rtm_scope = RT_SCOPE_NOWHERE;
707 else if (!(ok & gw_ok))
708 req.r.rtm_scope = RT_SCOPE_LINK;
709 }
Bernhard Reutner-Fischer12c96a62007-04-11 16:23:57 +0000710 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000711
Glenn L McGrath16528552002-11-28 11:17:19 +0000712 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000713 req.r.rtm_family = AF_INET;
Glenn L McGrath16528552002-11-28 11:17:19 +0000714 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000715
Glenn L McGrath16528552002-11-28 11:17:19 +0000716 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000717 return 2;
Glenn L McGrath16528552002-11-28 11:17:19 +0000718 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000719
720 return 0;
721}
722
723static int rtnl_rtcache_request(struct rtnl_handle *rth, int family)
724{
725 struct {
726 struct nlmsghdr nlh;
727 struct rtmsg rtm;
728 } req;
729 struct sockaddr_nl nladdr;
730
731 memset(&nladdr, 0, sizeof(nladdr));
732 memset(&req, 0, sizeof(req));
733 nladdr.nl_family = AF_NETLINK;
734
735 req.nlh.nlmsg_len = sizeof(req);
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000736 if (RTM_GETROUTE)
737 req.nlh.nlmsg_type = RTM_GETROUTE;
738 if (NLM_F_ROOT | NLM_F_REQUEST)
739 req.nlh.nlmsg_flags = NLM_F_ROOT | NLM_F_REQUEST;
740 /*req.nlh.nlmsg_pid = 0; - memset did it already */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000741 req.nlh.nlmsg_seq = rth->dump = ++rth->seq;
742 req.rtm.rtm_family = family;
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000743 if (RTM_F_CLONED)
744 req.rtm.rtm_flags = RTM_F_CLONED;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000745
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000746 return xsendto(rth->fd, (void*)&req, sizeof(req), (struct sockaddr*)&nladdr, sizeof(nladdr));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000747}
748
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000749static void iproute_flush_cache(void)
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000750{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000751 static const char fn[] ALIGN1 = "/proc/sys/net/ipv4/route/flush";
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000752 int flush_fd = open_or_warn(fn, O_WRONLY);
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000753
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000754 if (flush_fd < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000755 return;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000756 }
757
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000758 if (write(flush_fd, "-1", 2) < 2) {
James Byrne69374872019-07-02 11:35:03 +0200759 bb_simple_perror_msg("can't flush routing cache");
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000760 return;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000761 }
762 close(flush_fd);
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000763}
764
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000765static void iproute_reset_filter(void)
766{
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100767 memset(&G_filter, 0, sizeof(G_filter));
768 G_filter.mdst.bitlen = -1;
769 G_filter.msrc.bitlen = -1;
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000770}
771
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000772/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000773static int iproute_list_or_flush(char **argv, int flush)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000774{
775 int do_ipv6 = preferred_family;
776 struct rtnl_handle rth;
777 char *id = NULL;
778 char *od = NULL;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000779 static const char keywords[] ALIGN1 =
André Draszik2f24d302017-06-13 19:59:59 +0200780 /* If you add stuff here, update iproute_full_usage */
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000781 /* "ip route list/flush" parameters: */
782 "protocol\0" "dev\0" "oif\0" "iif\0"
783 "via\0" "table\0" "cache\0"
André Draszik2f24d302017-06-13 19:59:59 +0200784 "from\0" "to\0" "scope\0"
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000785 /* and possible further keywords */
786 "all\0"
787 "root\0"
788 "match\0"
789 "exact\0"
790 "main\0"
791 ;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000792 enum {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000793 KW_proto, KW_dev, KW_oif, KW_iif,
794 KW_via, KW_table, KW_cache,
André Draszik2f24d302017-06-13 19:59:59 +0200795 KW_from, KW_to, KW_scope,
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000796 /* */
797 KW_all,
798 KW_root,
799 KW_match,
800 KW_exact,
801 KW_main,
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000802 };
803 int arg, parm;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000804
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000805 iproute_reset_filter();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100806 G_filter.tb = RT_TABLE_MAIN;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000807
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000808 if (flush && !*argv)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000809 bb_error_msg_and_die(bb_msg_requires_arg, "\"ip route flush\"");
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000810
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000811 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000812 arg = index_in_substrings(keywords, *argv);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000813 if (arg == KW_proto) {
Eric Andersend78aea82006-01-30 18:00:02 +0000814 uint32_t prot = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000815 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100816 //G_filter.protocolmask = -1;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000817 if (rtnl_rtprot_a2n(&prot, *argv)) {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000818 if (index_in_strings(keywords, *argv) != KW_all)
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200819 invarg_1_to_2(*argv, "protocol");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000820 prot = 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100821 //G_filter.protocolmask = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000822 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100823 //G_filter.protocol = prot;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000824 } else if (arg == KW_dev || arg == KW_oif) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000825 NEXT_ARG();
826 od = *argv;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000827 } else if (arg == KW_iif) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000828 NEXT_ARG();
829 id = *argv;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000830 } else if (arg == KW_via) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000831 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100832 get_prefix(&G_filter.rvia, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000833 } else if (arg == KW_table) { /* table all/cache/main */
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000834 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000835 parm = index_in_substrings(keywords, *argv);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000836 if (parm == KW_cache)
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100837 G_filter.tb = -1;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000838 else if (parm == KW_all)
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100839 G_filter.tb = 0;
Denis Vlasenko52a8d972008-06-08 00:25:55 +0000840 else if (parm != KW_main) {
841#if ENABLE_FEATURE_IP_RULE
842 uint32_t tid;
843 if (rtnl_rttable_a2n(&tid, *argv))
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200844 invarg_1_to_2(*argv, "table");
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100845 G_filter.tb = tid;
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000846#else
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200847 invarg_1_to_2(*argv, "table");
Denis Vlasenko52a8d972008-06-08 00:25:55 +0000848#endif
849 }
Denis Vlasenko79c69042007-11-27 09:42:33 +0000850 } else if (arg == KW_cache) {
851 /* The command 'ip route flush cache' is used by OpenSWAN.
852 * Assuming it's a synonym for 'ip route flush table cache' */
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100853 G_filter.tb = -1;
André Draszik2f24d302017-06-13 19:59:59 +0200854 } else if (arg == KW_scope) {
855 uint32_t scope;
856 NEXT_ARG();
857 G_filter.scopemask = -1;
858 if (rtnl_rtscope_a2n(&scope, *argv)) {
859 if (strcmp(*argv, "all") != 0)
860 invarg_1_to_2(*argv, "scope");
861 scope = RT_SCOPE_NOWHERE;
862 G_filter.scopemask = 0;
863 }
864 G_filter.scope = scope;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000865 } else if (arg == KW_from) {
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000866 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000867 parm = index_in_substrings(keywords, *argv);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000868 if (parm == KW_root) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000869 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100870 get_prefix(&G_filter.rsrc, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000871 } else if (parm == KW_match) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000872 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100873 get_prefix(&G_filter.msrc, *argv, do_ipv6);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000874 } else {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000875 if (parm == KW_exact)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000876 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100877 get_prefix(&G_filter.msrc, *argv, do_ipv6);
878 G_filter.rsrc = G_filter.msrc;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000879 }
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000880 } else { /* "to" is the default parameter */
881 if (arg == KW_to) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000882 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000883 arg = index_in_substrings(keywords, *argv);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000884 }
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000885 /* parm = arg; - would be more plausible, but we reuse 'arg' here */
886 if (arg == KW_root) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000887 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100888 get_prefix(&G_filter.rdst, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000889 } else if (arg == KW_match) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000890 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100891 get_prefix(&G_filter.mdst, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000892 } else { /* "to exact" is the default */
893 if (arg == KW_exact)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000894 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100895 get_prefix(&G_filter.mdst, *argv, do_ipv6);
896 G_filter.rdst = G_filter.mdst;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000897 }
898 }
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000899 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000900 }
901
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100902 if (do_ipv6 == AF_UNSPEC && G_filter.tb) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000903 do_ipv6 = AF_INET;
Glenn L McGrath16528552002-11-28 11:17:19 +0000904 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000905
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000906 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000907 ll_init_map(&rth);
908
909 if (id || od) {
910 int idx;
911
912 if (id) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000913 idx = xll_name_to_index(id);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100914 G_filter.iif = idx;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000915 }
916 if (od) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000917 idx = xll_name_to_index(od);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100918 G_filter.oif = idx;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000919 }
920 }
921
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000922 if (flush) {
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000923 char flushb[4096-512];
924
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100925 if (G_filter.tb == -1) { /* "flush table cache" */
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000926 if (do_ipv6 != AF_INET6)
927 iproute_flush_cache();
928 if (do_ipv6 == AF_INET)
929 return 0;
930 }
931
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100932 G_filter.flushb = flushb;
933 G_filter.flushp = 0;
934 G_filter.flushe = sizeof(flushb);
935 G_filter.rth = &rth;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000936
937 for (;;) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000938 xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100939 G_filter.flushed = 0;
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000940 xrtnl_dump_filter(&rth, print_route, NULL);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100941 if (G_filter.flushed == 0)
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000942 return 0;
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000943 if (flush_update())
944 return 1;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000945 }
946 }
947
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100948 if (G_filter.tb != -1) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000949 xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000950 } else if (rtnl_rtcache_request(&rth, do_ipv6) < 0) {
James Byrne69374872019-07-02 11:35:03 +0200951 bb_simple_perror_msg_and_die("can't send dump request");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000952 }
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000953 xrtnl_dump_filter(&rth, print_route, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000954
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000955 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000956}
957
958
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000959/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000960static int iproute_get(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000961{
962 struct rtnl_handle rth;
963 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000964 struct nlmsghdr n;
965 struct rtmsg r;
966 char buf[1024];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000967 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000968 char *idev = NULL;
969 char *odev = NULL;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000970 bool connected = 0;
971 bool from_ok = 0;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000972 static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000973 "from\0""iif\0""oif\0""dev\0""notify\0""connected\0""to\0";
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000974
975 memset(&req, 0, sizeof(req));
976
977 iproute_reset_filter();
978
979 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000980 if (NLM_F_REQUEST)
981 req.n.nlmsg_flags = NLM_F_REQUEST;
982 if (RTM_GETROUTE)
983 req.n.nlmsg_type = RTM_GETROUTE;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000984 req.r.rtm_family = preferred_family;
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000985 /*req.r.rtm_table = 0; - memset did this already */
986 /*req.r.rtm_protocol = 0;*/
987 /*req.r.rtm_scope = 0;*/
988 /*req.r.rtm_type = 0;*/
989 /*req.r.rtm_src_len = 0;*/
990 /*req.r.rtm_dst_len = 0;*/
991 /*req.r.rtm_tos = 0;*/
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000992
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000993 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000994 switch (index_in_strings(options, *argv)) {
Glenn L McGrath18eae002002-12-02 00:54:10 +0000995 case 0: /* from */
996 {
997 inet_prefix addr;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000998 NEXT_ARG();
Glenn L McGrath18eae002002-12-02 00:54:10 +0000999 from_ok = 1;
1000 get_prefix(&addr, *argv, req.r.rtm_family);
1001 if (req.r.rtm_family == AF_UNSPEC) {
1002 req.r.rtm_family = addr.family;
1003 }
1004 if (addr.bytelen) {
1005 addattr_l(&req.n, sizeof(req), RTA_SRC, &addr.data, addr.bytelen);
1006 }
1007 req.r.rtm_src_len = addr.bitlen;
1008 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001009 }
Glenn L McGrath18eae002002-12-02 00:54:10 +00001010 case 1: /* iif */
1011 NEXT_ARG();
1012 idev = *argv;
1013 break;
1014 case 2: /* oif */
1015 case 3: /* dev */
1016 NEXT_ARG();
1017 odev = *argv;
1018 break;
1019 case 4: /* notify */
1020 req.r.rtm_flags |= RTM_F_NOTIFY;
1021 break;
1022 case 5: /* connected */
1023 connected = 1;
1024 break;
1025 case 6: /* to */
1026 NEXT_ARG();
1027 default:
1028 {
1029 inet_prefix addr;
1030 get_prefix(&addr, *argv, req.r.rtm_family);
1031 if (req.r.rtm_family == AF_UNSPEC) {
1032 req.r.rtm_family = addr.family;
1033 }
1034 if (addr.bytelen) {
1035 addattr_l(&req.n, sizeof(req), RTA_DST, &addr.data, addr.bytelen);
1036 }
1037 req.r.rtm_dst_len = addr.bitlen;
1038 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001039 }
Christian Hornung3bbfb582010-11-03 14:08:00 +01001040 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001041 }
1042
1043 if (req.r.rtm_dst_len == 0) {
James Byrne69374872019-07-02 11:35:03 +02001044 bb_simple_error_msg_and_die("need at least destination address");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001045 }
1046
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +00001047 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001048
1049 ll_init_map(&rth);
1050
1051 if (idev || odev) {
1052 int idx;
1053
1054 if (idev) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +00001055 idx = xll_name_to_index(idev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001056 addattr32(&req.n, sizeof(req), RTA_IIF, idx);
1057 }
1058 if (odev) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +00001059 idx = xll_name_to_index(odev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001060 addattr32(&req.n, sizeof(req), RTA_OIF, idx);
1061 }
1062 }
1063
Glenn L McGrath16528552002-11-28 11:17:19 +00001064 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001065 req.r.rtm_family = AF_INET;
Glenn L McGrath16528552002-11-28 11:17:19 +00001066 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001067
Glenn L McGrath16528552002-11-28 11:17:19 +00001068 if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +00001069 return 2;
Glenn L McGrath16528552002-11-28 11:17:19 +00001070 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001071
1072 if (connected && !from_ok) {
1073 struct rtmsg *r = NLMSG_DATA(&req.n);
1074 int len = req.n.nlmsg_len;
1075 struct rtattr * tb[RTA_MAX+1];
1076
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +00001077 print_route(NULL, &req.n, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001078
1079 if (req.n.nlmsg_type != RTM_NEWROUTE) {
James Byrne69374872019-07-02 11:35:03 +02001080 bb_simple_error_msg_and_die("not a route?");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001081 }
1082 len -= NLMSG_LENGTH(sizeof(*r));
1083 if (len < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +00001084 bb_error_msg_and_die("wrong len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001085 }
1086
Denys Vlasenko68ae5422018-02-08 08:42:37 +01001087 //memset(tb, 0, sizeof(tb)); - parse_rtattr does this
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001088 parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
1089
1090 if (tb[RTA_PREFSRC]) {
1091 tb[RTA_PREFSRC]->rta_type = RTA_SRC;
1092 r->rtm_src_len = 8*RTA_PAYLOAD(tb[RTA_PREFSRC]);
1093 } else if (!tb[RTA_SRC]) {
James Byrne69374872019-07-02 11:35:03 +02001094 bb_simple_error_msg_and_die("can't connect the route");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001095 }
Glenn L McGrath16528552002-11-28 11:17:19 +00001096 if (!odev && tb[RTA_OIF]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001097 tb[RTA_OIF]->rta_type = 0;
Glenn L McGrath16528552002-11-28 11:17:19 +00001098 }
1099 if (tb[RTA_GATEWAY]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001100 tb[RTA_GATEWAY]->rta_type = 0;
Glenn L McGrath16528552002-11-28 11:17:19 +00001101 }
1102 if (!idev && tb[RTA_IIF]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001103 tb[RTA_IIF]->rta_type = 0;
Glenn L McGrath16528552002-11-28 11:17:19 +00001104 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001105 req.n.nlmsg_flags = NLM_F_REQUEST;
1106 req.n.nlmsg_type = RTM_GETROUTE;
1107
Glenn L McGrath16528552002-11-28 11:17:19 +00001108 if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +00001109 return 2;
Glenn L McGrath16528552002-11-28 11:17:19 +00001110 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001111 }
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +00001112 print_route(NULL, &req.n, NULL);
Denis Vlasenko540a2a12007-04-07 01:14:45 +00001113 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001114}
1115
Denis Vlasenko540a2a12007-04-07 01:14:45 +00001116/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +02001117int FAST_FUNC do_iproute(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001118{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001119 static const char ip_route_commands[] ALIGN1 =
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001120 "a\0""add\0""append\0""change\0""chg\0"
1121 "delete\0""get\0""list\0""show\0"
1122 "prepend\0""replace\0""test\0""flush\0"
1123 ;
1124 enum {
1125 CMD_a = 0, CMD_add, CMD_append, CMD_change, CMD_chg,
1126 CMD_delete, CMD_get, CMD_list, CMD_show,
1127 CMD_prepend, CMD_replace, CMD_test, CMD_flush,
1128 };
Denis Vlasenko83c44222008-01-04 15:28:28 +00001129 int command_num;
Denis Vlasenko990d0f62007-07-24 15:54:42 +00001130 unsigned flags = 0;
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001131 int cmd = RTM_NEWROUTE;
1132
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +02001133 INIT_G();
1134
Denis Vlasenko83c44222008-01-04 15:28:28 +00001135 if (!*argv)
1136 return iproute_list_or_flush(argv, 0);
1137
Denis Vlasenko5af906e2006-11-05 18:05:09 +00001138 /* "Standard" 'ip r a' treats 'a' as 'add', not 'append' */
1139 /* It probably means that it is using "first match" rule */
Denis Vlasenko83c44222008-01-04 15:28:28 +00001140 command_num = index_in_substrings(ip_route_commands, *argv);
1141
Denis Vlasenkoc16bd212006-09-27 19:51:06 +00001142 switch (command_num) {
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001143 case CMD_a:
1144 case CMD_add:
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001145 flags = NLM_F_CREATE|NLM_F_EXCL;
1146 break;
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001147 case CMD_append:
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001148 flags = NLM_F_CREATE|NLM_F_APPEND;
1149 break;
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001150 case CMD_change:
1151 case CMD_chg:
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001152 flags = NLM_F_REPLACE;
1153 break;
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001154 case CMD_delete:
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001155 cmd = RTM_DELROUTE;
1156 break;
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001157 case CMD_get:
1158 return iproute_get(argv + 1);
1159 case CMD_list:
1160 case CMD_show:
1161 return iproute_list_or_flush(argv + 1, 0);
1162 case CMD_prepend:
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001163 flags = NLM_F_CREATE;
Denis Vlasenko1eecaf22007-09-30 16:04:21 +00001164 break;
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001165 case CMD_replace:
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001166 flags = NLM_F_CREATE|NLM_F_REPLACE;
Denis Vlasenko1eecaf22007-09-30 16:04:21 +00001167 break;
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001168 case CMD_test:
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001169 flags = NLM_F_EXCL;
Denis Vlasenko1eecaf22007-09-30 16:04:21 +00001170 break;
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001171 case CMD_flush:
1172 return iproute_list_or_flush(argv + 1, 1);
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001173 default:
Denys Vlasenko0f296a32015-10-14 13:21:01 +02001174 invarg_1_to_2(*argv, applet_name);
Glenn L McGrath16528552002-11-28 11:17:19 +00001175 }
Glenn L McGrathc82f2322002-12-02 00:35:23 +00001176
Denys Vlasenkoeb76abb2017-04-07 17:33:26 +02001177 return iproute_modify(cmd, flags, argv + 1);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00001178}