blob: 170c67b30d470857e739d8ad1834c39b1f113c31 [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 */
12
Denys Vlasenkofb132e42010-10-29 11:46:52 +020013#include "ip_common.h" /* #include "libbb.h" is inside */
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
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000017#ifndef RTAX_RTTVAR
18#define RTAX_RTTVAR RTAX_HOPS
19#endif
20
21
Denys Vlasenko36659fd2010-02-05 14:40:23 +010022struct filter_t {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000023 int tb;
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000024 smallint flushed;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000025 char *flushb;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000026 int flushp;
27 int flushe;
28 struct rtnl_handle *rth;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010029 //int protocol, protocolmask; - write-only fields?!
30 //int scope, scopemask; - unused
31 //int type; - read-only
32 //int typemask; - unused
33 //int tos, tosmask; - unused
Denys Vlasenkof1334712011-02-09 04:39:09 +010034 int iif;
35 int oif;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010036 //int realm, realmmask; - unused
37 //inet_prefix rprefsrc; - read-only
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000038 inet_prefix rvia;
39 inet_prefix rdst;
40 inet_prefix mdst;
41 inet_prefix rsrc;
42 inet_prefix msrc;
Denys Vlasenko36659fd2010-02-05 14:40:23 +010043} FIX_ALIASING;
44typedef struct filter_t filter_t;
Denis Vlasenko540a2a12007-04-07 01:14:45 +000045
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010046#define G_filter (*(filter_t*)&bb_common_bufsiz1)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000047
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000048static int flush_update(void)
49{
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010050 if (rtnl_send(G_filter.rth, G_filter.flushb, G_filter.flushp) < 0) {
Denys Vlasenko651a2692010-03-23 16:25:17 +010051 bb_perror_msg("can't send flush request");
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000052 return -1;
53 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010054 G_filter.flushp = 0;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000055 return 0;
56}
57
Denis Vlasenkoc5193202006-12-31 19:07:23 +000058static unsigned get_hz(void)
Denis Vlasenko13463af2006-12-31 18:58:32 +000059{
Denis Vlasenkoc5193202006-12-31 19:07:23 +000060 static unsigned hz_internal;
Denis Vlasenko13463af2006-12-31 18:58:32 +000061 FILE *fp;
62
63 if (hz_internal)
64 return hz_internal;
65
Denis Vlasenko5415c852008-07-21 23:05:26 +000066 fp = fopen_for_read("/proc/net/psched");
Denis Vlasenko13463af2006-12-31 18:58:32 +000067 if (fp) {
68 unsigned nom, denom;
69
70 if (fscanf(fp, "%*08x%*08x%08x%08x", &nom, &denom) == 2)
71 if (nom == 1000000)
72 hz_internal = denom;
73 fclose(fp);
74 }
75 if (!hz_internal)
Bartosz Golaszewski5d2e4092014-06-22 14:01:13 +020076 hz_internal = bb_clk_tck();
Denis Vlasenko13463af2006-12-31 18:58:32 +000077 return hz_internal;
78}
79
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020080static int FAST_FUNC print_route(const struct sockaddr_nl *who UNUSED_PARAM,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000081 struct nlmsghdr *n, void *arg UNUSED_PARAM)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000082{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000083 struct rtmsg *r = NLMSG_DATA(n);
84 int len = n->nlmsg_len;
Denys Vlasenko3bb235c2011-02-23 01:20:44 +010085 struct rtattr *tb[RTA_MAX+1];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000086 char abuf[256];
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +000087 inet_prefix dst;
88 inet_prefix src;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000089 int host_len = -1;
90 SPRINT_BUF(b1);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000091
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000092 if (n->nlmsg_type != RTM_NEWROUTE && n->nlmsg_type != RTM_DELROUTE) {
93 fprintf(stderr, "Not a route: %08x %08x %08x\n",
94 n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
95 return 0;
96 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010097 if (G_filter.flushb && n->nlmsg_type != RTM_NEWROUTE)
Glenn L McGrath4a4c6772003-02-15 11:50:33 +000098 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000099 len -= NLMSG_LENGTH(sizeof(*r));
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000100 if (len < 0)
101 bb_error_msg_and_die("wrong nlmsg len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000102
103 if (r->rtm_family == AF_INET6)
104 host_len = 128;
105 else if (r->rtm_family == AF_INET)
106 host_len = 32;
107
108 if (r->rtm_family == AF_INET6) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100109 if (G_filter.tb) {
110 if (G_filter.tb < 0) {
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 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000114 } else {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000115 if (r->rtm_flags & RTM_F_CLONED) {
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 if (G_filter.tb == RT_TABLE_LOCAL) {
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 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100122 } else if (G_filter.tb == RT_TABLE_MAIN) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000123 if (r->rtm_type == RTN_LOCAL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000124 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000125 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000126 } else {
127 return 0;
128 }
129 }
130 }
131 } else {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100132 if (G_filter.tb > 0 && G_filter.tb != r->rtm_table) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000133 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000134 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000135 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100136 if (G_filter.rdst.family
137 && (r->rtm_family != G_filter.rdst.family || G_filter.rdst.bitlen > r->rtm_dst_len)
138 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000139 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000140 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100141 if (G_filter.mdst.family
142 && (r->rtm_family != G_filter.mdst.family
143 || (G_filter.mdst.bitlen >= 0 && G_filter.mdst.bitlen < r->rtm_dst_len)
144 )
145 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000146 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000147 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100148 if (G_filter.rsrc.family
149 && (r->rtm_family != G_filter.rsrc.family || G_filter.rsrc.bitlen > r->rtm_src_len)
150 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000151 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000152 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100153 if (G_filter.msrc.family
154 && (r->rtm_family != G_filter.msrc.family
155 || (G_filter.msrc.bitlen >= 0 && G_filter.msrc.bitlen < r->rtm_src_len)
156 )
157 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000158 return 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000159 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000160
161 memset(tb, 0, sizeof(tb));
Denys Vlasenko3bb235c2011-02-23 01:20:44 +0100162 memset(&src, 0, sizeof(src));
163 memset(&dst, 0, sizeof(dst));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000164 parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
165
Denys Vlasenko3bb235c2011-02-23 01:20:44 +0100166 if (tb[RTA_SRC]) {
167 src.bitlen = r->rtm_src_len;
168 src.bytelen = (r->rtm_family == AF_INET6 ? 16 : 4);
169 memcpy(src.data, RTA_DATA(tb[RTA_SRC]), src.bytelen);
170 }
171 if (tb[RTA_DST]) {
172 dst.bitlen = r->rtm_dst_len;
173 dst.bytelen = (r->rtm_family == AF_INET6 ? 16 : 4);
174 memcpy(dst.data, RTA_DATA(tb[RTA_DST]), dst.bytelen);
175 }
176
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100177 if (G_filter.rdst.family
178 && inet_addr_match(&dst, &G_filter.rdst, G_filter.rdst.bitlen)
179 ) {
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +0000180 return 0;
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100181 }
182 if (G_filter.mdst.family
183 && G_filter.mdst.bitlen >= 0
184 && inet_addr_match(&dst, &G_filter.mdst, r->rtm_dst_len)
185 ) {
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +0000186 return 0;
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100187 }
188 if (G_filter.rsrc.family
189 && inet_addr_match(&src, &G_filter.rsrc, G_filter.rsrc.bitlen)
190 ) {
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +0000191 return 0;
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100192 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100193 if (G_filter.msrc.family && G_filter.msrc.bitlen >= 0
194 && inet_addr_match(&src, &G_filter.msrc, r->rtm_src_len)
195 ) {
Glenn L McGrathfbf0b8a2003-04-26 02:22:19 +0000196 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100197 }
Denys Vlasenkof1334712011-02-09 04:39:09 +0100198 if (G_filter.oif != 0) {
199 if (!tb[RTA_OIF])
200 return 0;
201 if (G_filter.oif != *(int*)RTA_DATA(tb[RTA_OIF]))
202 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100203 }
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000204
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100205 if (G_filter.flushb) {
Denys Vlasenkoe3ece782011-02-10 09:50:07 +0100206 struct nlmsghdr *fn;
207
Denys Vlasenkof1334712011-02-09 04:39:09 +0100208 /* We are creating route flush commands */
209
210 if (r->rtm_family == AF_INET6
211 && r->rtm_dst_len == 0
212 && r->rtm_type == RTN_UNREACHABLE
213 && tb[RTA_PRIORITY]
214 && *(int*)RTA_DATA(tb[RTA_PRIORITY]) == -1
215 ) {
216 return 0;
217 }
218
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100219 if (NLMSG_ALIGN(G_filter.flushp) + n->nlmsg_len > G_filter.flushe) {
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000220 if (flush_update())
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000221 bb_error_msg_and_die("flush");
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000222 }
Denys Vlasenkoe3ece782011-02-10 09:50:07 +0100223 fn = (void*)(G_filter.flushb + NLMSG_ALIGN(G_filter.flushp));
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000224 memcpy(fn, n, n->nlmsg_len);
225 fn->nlmsg_type = RTM_DELROUTE;
226 fn->nlmsg_flags = NLM_F_REQUEST;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100227 fn->nlmsg_seq = ++G_filter.rth->seq;
228 G_filter.flushp = (((char*)fn) + n->nlmsg_len) - G_filter.flushb;
229 G_filter.flushed = 1;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000230 return 0;
231 }
232
Denys Vlasenkof1334712011-02-09 04:39:09 +0100233 /* We are printing routes */
234
Glenn L McGrath16528552002-11-28 11:17:19 +0000235 if (n->nlmsg_type == RTM_DELROUTE) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000236 printf("Deleted ");
Glenn L McGrath16528552002-11-28 11:17:19 +0000237 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100238 if (r->rtm_type != RTN_UNICAST /* && !G_filter.type - always 0 */) {
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200239 printf("%s ", rtnl_rtntype_n2a(r->rtm_type, b1));
Glenn L McGrath16528552002-11-28 11:17:19 +0000240 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000241
242 if (tb[RTA_DST]) {
243 if (r->rtm_dst_len != host_len) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000244 printf("%s/%u ", rt_addr_n2a(r->rtm_family,
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000245 RTA_DATA(tb[RTA_DST]),
246 abuf, sizeof(abuf)),
247 r->rtm_dst_len
248 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000249 } else {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000250 printf("%s ", format_host(r->rtm_family,
251 RTA_PAYLOAD(tb[RTA_DST]),
252 RTA_DATA(tb[RTA_DST]),
253 abuf, sizeof(abuf))
254 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000255 }
256 } else if (r->rtm_dst_len) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000257 printf("0/%d ", r->rtm_dst_len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000258 } else {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000259 printf("default ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000260 }
261 if (tb[RTA_SRC]) {
262 if (r->rtm_src_len != host_len) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000263 printf("from %s/%u ", rt_addr_n2a(r->rtm_family,
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000264 RTA_DATA(tb[RTA_SRC]),
265 abuf, sizeof(abuf)),
266 r->rtm_src_len
267 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000268 } else {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000269 printf("from %s ", format_host(r->rtm_family,
270 RTA_PAYLOAD(tb[RTA_SRC]),
271 RTA_DATA(tb[RTA_SRC]),
272 abuf, sizeof(abuf))
273 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000274 }
275 } else if (r->rtm_src_len) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000276 printf("from 0/%u ", r->rtm_src_len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000277 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100278 if (tb[RTA_GATEWAY] && G_filter.rvia.bitlen != host_len) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000279 printf("via %s ", format_host(r->rtm_family,
280 RTA_PAYLOAD(tb[RTA_GATEWAY]),
281 RTA_DATA(tb[RTA_GATEWAY]),
282 abuf, sizeof(abuf)));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000283 }
Denys Vlasenkof1334712011-02-09 04:39:09 +0100284 if (tb[RTA_OIF]) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000285 printf("dev %s ", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_OIF])));
Glenn L McGrath16528552002-11-28 11:17:19 +0000286 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000287
Denys Vlasenkof1334712011-02-09 04:39:09 +0100288 /* Todo: parse & show "proto kernel", "scope link" here */
289
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,
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000295 RTA_DATA(tb[RTA_PREFSRC]),
296 abuf, sizeof(abuf)));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000297 }
Glenn L McGrath16528552002-11-28 11:17:19 +0000298 if (tb[RTA_PRIORITY]) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000299 printf(" metric %d ", *(uint32_t*)RTA_DATA(tb[RTA_PRIORITY]));
Glenn L McGrath16528552002-11-28 11:17:19 +0000300 }
Michael Tokarev1a114392014-07-28 10:05:41 +0400301 if (r->rtm_flags & RTNH_F_DEAD) {
302 printf("dead ");
303 }
304 if (r->rtm_flags & RTNH_F_ONLINK) {
305 printf("onlink ");
306 }
307 if (r->rtm_flags & RTNH_F_PERVASIVE) {
308 printf("pervasive ");
309 }
310 if (r->rtm_flags & RTM_F_NOTIFY) {
311 printf("notify ");
312 }
313
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000314 if (r->rtm_family == AF_INET6) {
315 struct rta_cacheinfo *ci = NULL;
Glenn L McGrath16528552002-11-28 11:17:19 +0000316 if (tb[RTA_CACHEINFO]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000317 ci = RTA_DATA(tb[RTA_CACHEINFO]);
Glenn L McGrath16528552002-11-28 11:17:19 +0000318 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000319 if ((r->rtm_flags & RTM_F_CLONED) || (ci && ci->rta_expires)) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000320 if (r->rtm_flags & RTM_F_CLONED) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000321 printf("%c cache ", _SL_);
Glenn L McGrath16528552002-11-28 11:17:19 +0000322 }
323 if (ci->rta_expires) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000324 printf(" expires %dsec", ci->rta_expires / get_hz());
Glenn L McGrath16528552002-11-28 11:17:19 +0000325 }
326 if (ci->rta_error != 0) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000327 printf(" error %d", ci->rta_error);
Glenn L McGrath16528552002-11-28 11:17:19 +0000328 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000329 } else if (ci) {
330 if (ci->rta_error != 0)
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000331 printf(" error %d", ci->rta_error);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000332 }
333 }
Denys Vlasenkof1334712011-02-09 04:39:09 +0100334 if (tb[RTA_IIF] && G_filter.iif == 0) {
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000335 printf(" iif %s", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_IIF])));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000336 }
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000337 bb_putchar('\n');
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000338 return 0;
339}
340
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000341/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000342static int iproute_modify(int cmd, unsigned flags, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000343{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000344 static const char keywords[] ALIGN1 =
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000345 "src\0""via\0""mtu\0""lock\0""protocol\0"IF_FEATURE_IP_RULE("table\0")
Michael Tokarev1a114392014-07-28 10:05:41 +0400346 "dev\0""oif\0""to\0""metric\0""onlink\0";
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000347 enum {
348 ARG_src,
349 ARG_via,
350 ARG_mtu, PARM_lock,
351 ARG_protocol,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000352IF_FEATURE_IP_RULE(ARG_table,)
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000353 ARG_dev,
354 ARG_oif,
Bernhard Reutner-Fischer578de862008-10-07 17:00:58 +0000355 ARG_to,
356 ARG_metric,
Michael Tokarev1a114392014-07-28 10:05:41 +0400357 ARG_onlink,
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000358 };
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000359 enum {
360 gw_ok = 1 << 0,
361 dst_ok = 1 << 1,
362 proto_ok = 1 << 2,
363 type_ok = 1 << 3
364 };
365 struct rtnl_handle rth;
366 struct {
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200367 struct nlmsghdr n;
368 struct rtmsg r;
369 char buf[1024];
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000370 } req;
371 char mxbuf[256];
372 struct rtattr * mxrta = (void*)mxbuf;
373 unsigned mxlock = 0;
374 char *d = NULL;
375 smalluint ok = 0;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000376 int arg;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000377
378 memset(&req, 0, sizeof(req));
379
380 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000381 req.n.nlmsg_flags = NLM_F_REQUEST | flags;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000382 req.n.nlmsg_type = cmd;
383 req.r.rtm_family = preferred_family;
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000384 if (RT_TABLE_MAIN) /* if it is zero, memset already did it */
385 req.r.rtm_table = RT_TABLE_MAIN;
386 if (RT_SCOPE_NOWHERE)
387 req.r.rtm_scope = RT_SCOPE_NOWHERE;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000388
389 if (cmd != RTM_DELROUTE) {
390 req.r.rtm_protocol = RTPROT_BOOT;
391 req.r.rtm_scope = RT_SCOPE_UNIVERSE;
392 req.r.rtm_type = RTN_UNICAST;
393 }
394
395 mxrta->rta_type = RTA_METRICS;
396 mxrta->rta_len = RTA_LENGTH(0);
397
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000398 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000399 arg = index_in_substrings(keywords, *argv);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000400 if (arg == ARG_src) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000401 inet_prefix addr;
402 NEXT_ARG();
403 get_addr(&addr, *argv, req.r.rtm_family);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000404 if (req.r.rtm_family == AF_UNSPEC)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000405 req.r.rtm_family = addr.family;
406 addattr_l(&req.n, sizeof(req), RTA_PREFSRC, &addr.data, addr.bytelen);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000407 } else if (arg == ARG_via) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000408 inet_prefix addr;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000409 ok |= gw_ok;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000410 NEXT_ARG();
411 get_addr(&addr, *argv, req.r.rtm_family);
Glenn L McGrath16528552002-11-28 11:17:19 +0000412 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000413 req.r.rtm_family = addr.family;
Glenn L McGrath16528552002-11-28 11:17:19 +0000414 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000415 addattr_l(&req.n, sizeof(req), RTA_GATEWAY, &addr.data, addr.bytelen);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000416 } else if (arg == ARG_mtu) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000417 unsigned mtu;
418 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000419 if (index_in_strings(keywords, *argv) == PARM_lock) {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000420 mxlock |= (1 << RTAX_MTU);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000421 NEXT_ARG();
422 }
Denis Vlasenko76140a72009-03-05 09:21:57 +0000423 mtu = get_unsigned(*argv, "mtu");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000424 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_MTU, mtu);
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000425 } else if (arg == ARG_protocol) {
Eric Andersend78aea82006-01-30 18:00:02 +0000426 uint32_t prot;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000427 NEXT_ARG();
428 if (rtnl_rtprot_a2n(&prot, *argv))
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000429 invarg(*argv, "protocol");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000430 req.r.rtm_protocol = prot;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000431 ok |= proto_ok;
Bernhard Reutner-Fischerab51bf42007-04-16 14:56:01 +0000432#if ENABLE_FEATURE_IP_RULE
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000433 } else if (arg == ARG_table) {
Denis Vlasenkocda6c632006-12-15 00:59:35 +0000434 uint32_t tid;
435 NEXT_ARG();
436 if (rtnl_rttable_a2n(&tid, *argv))
437 invarg(*argv, "table");
438 req.r.rtm_table = tid;
Bernhard Reutner-Fischerab51bf42007-04-16 14:56:01 +0000439#endif
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000440 } else if (arg == ARG_dev || arg == ARG_oif) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000441 NEXT_ARG();
442 d = *argv;
Bernhard Reutner-Fischer578de862008-10-07 17:00:58 +0000443 } else if (arg == ARG_metric) {
444 uint32_t metric;
445 NEXT_ARG();
Denis Vlasenko76140a72009-03-05 09:21:57 +0000446 metric = get_u32(*argv, "metric");
Bernhard Reutner-Fischer578de862008-10-07 17:00:58 +0000447 addattr32(&req.n, sizeof(req), RTA_PRIORITY, metric);
Michael Tokarev1a114392014-07-28 10:05:41 +0400448 } else if (arg == ARG_onlink) {
449 req.r.rtm_flags |= RTNH_F_ONLINK;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000450 } else {
451 int type;
452 inet_prefix dst;
453
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000454 if (arg == ARG_to) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000455 NEXT_ARG();
456 }
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000457 if ((**argv < '0' || **argv > '9')
Denys Vlasenko3bb235c2011-02-23 01:20:44 +0100458 && rtnl_rtntype_a2n(&type, *argv) == 0
459 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000460 NEXT_ARG();
461 req.r.rtm_type = type;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000462 ok |= type_ok;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000463 }
464
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000465 if (ok & dst_ok) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000466 duparg2("to", *argv);
Glenn L McGrath16528552002-11-28 11:17:19 +0000467 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000468 get_prefix(&dst, *argv, req.r.rtm_family);
Glenn L McGrath16528552002-11-28 11:17:19 +0000469 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000470 req.r.rtm_family = dst.family;
Glenn L McGrath16528552002-11-28 11:17:19 +0000471 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000472 req.r.rtm_dst_len = dst.bitlen;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000473 ok |= dst_ok;
Glenn L McGrath16528552002-11-28 11:17:19 +0000474 if (dst.bytelen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000475 addattr_l(&req.n, sizeof(req), RTA_DST, &dst.data, dst.bytelen);
Glenn L McGrath16528552002-11-28 11:17:19 +0000476 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000477 }
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000478 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000479 }
480
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000481 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000482
Eric Andersen5780adb2002-11-15 09:12:47 +0000483 if (d) {
484 int idx;
485
486 ll_init_map(&rth);
487
488 if (d) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000489 idx = xll_name_to_index(d);
Eric Andersen5780adb2002-11-15 09:12:47 +0000490 addattr32(&req.n, sizeof(req), RTA_OIF, idx);
491 }
492 }
493
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000494 if (mxrta->rta_len > RTA_LENGTH(0)) {
Glenn L McGrath16528552002-11-28 11:17:19 +0000495 if (mxlock) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000496 rta_addattr32(mxrta, sizeof(mxbuf), RTAX_LOCK, mxlock);
Glenn L McGrath16528552002-11-28 11:17:19 +0000497 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000498 addattr_l(&req.n, sizeof(req), RTA_METRICS, RTA_DATA(mxrta), RTA_PAYLOAD(mxrta));
499 }
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000500
Bernhard Reutner-Fischer12c96a62007-04-11 16:23:57 +0000501 if (req.r.rtm_type == RTN_LOCAL || req.r.rtm_type == RTN_NAT)
502 req.r.rtm_scope = RT_SCOPE_HOST;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100503 else
504 if (req.r.rtm_type == RTN_BROADCAST
505 || req.r.rtm_type == RTN_MULTICAST
506 || req.r.rtm_type == RTN_ANYCAST
507 ) {
Bernhard Reutner-Fischer12c96a62007-04-11 16:23:57 +0000508 req.r.rtm_scope = RT_SCOPE_LINK;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100509 }
Bernhard Reutner-Fischer12c96a62007-04-11 16:23:57 +0000510 else if (req.r.rtm_type == RTN_UNICAST || req.r.rtm_type == RTN_UNSPEC) {
511 if (cmd == RTM_DELROUTE)
512 req.r.rtm_scope = RT_SCOPE_NOWHERE;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000513 else if (!(ok & gw_ok))
Bernhard Reutner-Fischer12c96a62007-04-11 16:23:57 +0000514 req.r.rtm_scope = RT_SCOPE_LINK;
515 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000516
Glenn L McGrath16528552002-11-28 11:17:19 +0000517 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000518 req.r.rtm_family = AF_INET;
Glenn L McGrath16528552002-11-28 11:17:19 +0000519 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000520
Glenn L McGrath16528552002-11-28 11:17:19 +0000521 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000522 return 2;
Glenn L McGrath16528552002-11-28 11:17:19 +0000523 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000524
525 return 0;
526}
527
528static int rtnl_rtcache_request(struct rtnl_handle *rth, int family)
529{
530 struct {
531 struct nlmsghdr nlh;
532 struct rtmsg rtm;
533 } req;
534 struct sockaddr_nl nladdr;
535
536 memset(&nladdr, 0, sizeof(nladdr));
537 memset(&req, 0, sizeof(req));
538 nladdr.nl_family = AF_NETLINK;
539
540 req.nlh.nlmsg_len = sizeof(req);
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000541 if (RTM_GETROUTE)
542 req.nlh.nlmsg_type = RTM_GETROUTE;
543 if (NLM_F_ROOT | NLM_F_REQUEST)
544 req.nlh.nlmsg_flags = NLM_F_ROOT | NLM_F_REQUEST;
545 /*req.nlh.nlmsg_pid = 0; - memset did it already */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000546 req.nlh.nlmsg_seq = rth->dump = ++rth->seq;
547 req.rtm.rtm_family = family;
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000548 if (RTM_F_CLONED)
549 req.rtm.rtm_flags = RTM_F_CLONED;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000550
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000551 return xsendto(rth->fd, (void*)&req, sizeof(req), (struct sockaddr*)&nladdr, sizeof(nladdr));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000552}
553
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000554static void iproute_flush_cache(void)
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000555{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000556 static const char fn[] ALIGN1 = "/proc/sys/net/ipv4/route/flush";
Denis Vlasenko50f7f442007-04-11 23:20:53 +0000557 int flush_fd = open_or_warn(fn, O_WRONLY);
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000558
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000559 if (flush_fd < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000560 return;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000561 }
562
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000563 if (write(flush_fd, "-1", 2) < 2) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100564 bb_perror_msg("can't flush routing cache");
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000565 return;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000566 }
567 close(flush_fd);
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000568}
569
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000570static void iproute_reset_filter(void)
571{
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100572 memset(&G_filter, 0, sizeof(G_filter));
573 G_filter.mdst.bitlen = -1;
574 G_filter.msrc.bitlen = -1;
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000575}
576
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000577/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000578static int iproute_list_or_flush(char **argv, int flush)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000579{
580 int do_ipv6 = preferred_family;
581 struct rtnl_handle rth;
582 char *id = NULL;
583 char *od = NULL;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000584 static const char keywords[] ALIGN1 =
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000585 /* "ip route list/flush" parameters: */
586 "protocol\0" "dev\0" "oif\0" "iif\0"
587 "via\0" "table\0" "cache\0"
588 "from\0" "to\0"
589 /* and possible further keywords */
590 "all\0"
591 "root\0"
592 "match\0"
593 "exact\0"
594 "main\0"
595 ;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000596 enum {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000597 KW_proto, KW_dev, KW_oif, KW_iif,
598 KW_via, KW_table, KW_cache,
599 KW_from, KW_to,
600 /* */
601 KW_all,
602 KW_root,
603 KW_match,
604 KW_exact,
605 KW_main,
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000606 };
607 int arg, parm;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000608
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000609 iproute_reset_filter();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100610 G_filter.tb = RT_TABLE_MAIN;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000611
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000612 if (flush && !*argv)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000613 bb_error_msg_and_die(bb_msg_requires_arg, "\"ip route flush\"");
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000614
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000615 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000616 arg = index_in_substrings(keywords, *argv);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000617 if (arg == KW_proto) {
Eric Andersend78aea82006-01-30 18:00:02 +0000618 uint32_t prot = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000619 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100620 //G_filter.protocolmask = -1;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000621 if (rtnl_rtprot_a2n(&prot, *argv)) {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000622 if (index_in_strings(keywords, *argv) != KW_all)
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000623 invarg(*argv, "protocol");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000624 prot = 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100625 //G_filter.protocolmask = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000626 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100627 //G_filter.protocol = prot;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000628 } else if (arg == KW_dev || arg == KW_oif) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000629 NEXT_ARG();
630 od = *argv;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000631 } else if (arg == KW_iif) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000632 NEXT_ARG();
633 id = *argv;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000634 } else if (arg == KW_via) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000635 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100636 get_prefix(&G_filter.rvia, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000637 } else if (arg == KW_table) { /* table all/cache/main */
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000638 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000639 parm = index_in_substrings(keywords, *argv);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000640 if (parm == KW_cache)
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100641 G_filter.tb = -1;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000642 else if (parm == KW_all)
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100643 G_filter.tb = 0;
Denis Vlasenko52a8d972008-06-08 00:25:55 +0000644 else if (parm != KW_main) {
645#if ENABLE_FEATURE_IP_RULE
646 uint32_t tid;
647 if (rtnl_rttable_a2n(&tid, *argv))
648 invarg(*argv, "table");
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100649 G_filter.tb = tid;
Denis Vlasenko7049ff82008-06-25 09:53:17 +0000650#else
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000651 invarg(*argv, "table");
Denis Vlasenko52a8d972008-06-08 00:25:55 +0000652#endif
653 }
Denis Vlasenko79c69042007-11-27 09:42:33 +0000654 } else if (arg == KW_cache) {
655 /* The command 'ip route flush cache' is used by OpenSWAN.
656 * Assuming it's a synonym for 'ip route flush table cache' */
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100657 G_filter.tb = -1;
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000658 } else if (arg == KW_from) {
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000659 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000660 parm = index_in_substrings(keywords, *argv);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000661 if (parm == KW_root) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000662 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100663 get_prefix(&G_filter.rsrc, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000664 } else if (parm == KW_match) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000665 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100666 get_prefix(&G_filter.msrc, *argv, do_ipv6);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000667 } else {
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000668 if (parm == KW_exact)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000669 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100670 get_prefix(&G_filter.msrc, *argv, do_ipv6);
671 G_filter.rsrc = G_filter.msrc;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000672 }
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000673 } else { /* "to" is the default parameter */
674 if (arg == KW_to) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000675 NEXT_ARG();
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000676 arg = index_in_substrings(keywords, *argv);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000677 }
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000678 /* parm = arg; - would be more plausible, but we reuse 'arg' here */
679 if (arg == KW_root) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000680 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100681 get_prefix(&G_filter.rdst, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000682 } else if (arg == KW_match) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000683 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100684 get_prefix(&G_filter.mdst, *argv, do_ipv6);
Denis Vlasenko186c2b32007-11-26 18:29:52 +0000685 } else { /* "to exact" is the default */
686 if (arg == KW_exact)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000687 NEXT_ARG();
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100688 get_prefix(&G_filter.mdst, *argv, do_ipv6);
689 G_filter.rdst = G_filter.mdst;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000690 }
691 }
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000692 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000693 }
694
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100695 if (do_ipv6 == AF_UNSPEC && G_filter.tb) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000696 do_ipv6 = AF_INET;
Glenn L McGrath16528552002-11-28 11:17:19 +0000697 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000698
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000699 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000700 ll_init_map(&rth);
701
702 if (id || od) {
703 int idx;
704
705 if (id) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000706 idx = xll_name_to_index(id);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100707 G_filter.iif = idx;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000708 }
709 if (od) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000710 idx = xll_name_to_index(od);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100711 G_filter.oif = idx;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000712 }
713 }
714
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000715 if (flush) {
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000716 char flushb[4096-512];
717
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100718 if (G_filter.tb == -1) { /* "flush table cache" */
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000719 if (do_ipv6 != AF_INET6)
720 iproute_flush_cache();
721 if (do_ipv6 == AF_INET)
722 return 0;
723 }
724
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100725 G_filter.flushb = flushb;
726 G_filter.flushp = 0;
727 G_filter.flushe = sizeof(flushb);
728 G_filter.rth = &rth;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000729
730 for (;;) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000731 xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100732 G_filter.flushed = 0;
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000733 xrtnl_dump_filter(&rth, print_route, NULL);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100734 if (G_filter.flushed == 0)
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000735 return 0;
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000736 if (flush_update())
737 return 1;
Glenn L McGrath4a4c6772003-02-15 11:50:33 +0000738 }
739 }
740
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100741 if (G_filter.tb != -1) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000742 xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000743 } else if (rtnl_rtcache_request(&rth, do_ipv6) < 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100744 bb_perror_msg_and_die("can't send dump request");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000745 }
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000746 xrtnl_dump_filter(&rth, print_route, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000747
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000748 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000749}
750
751
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000752/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000753static int iproute_get(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000754{
755 struct rtnl_handle rth;
756 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000757 struct nlmsghdr n;
758 struct rtmsg r;
759 char buf[1024];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000760 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000761 char *idev = NULL;
762 char *odev = NULL;
Bernhard Reutner-Fischerc98c3172007-04-12 11:36:56 +0000763 bool connected = 0;
764 bool from_ok = 0;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000765 static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000766 "from\0""iif\0""oif\0""dev\0""notify\0""connected\0""to\0";
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000767
768 memset(&req, 0, sizeof(req));
769
770 iproute_reset_filter();
771
772 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000773 if (NLM_F_REQUEST)
774 req.n.nlmsg_flags = NLM_F_REQUEST;
775 if (RTM_GETROUTE)
776 req.n.nlmsg_type = RTM_GETROUTE;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000777 req.r.rtm_family = preferred_family;
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000778 /*req.r.rtm_table = 0; - memset did this already */
779 /*req.r.rtm_protocol = 0;*/
780 /*req.r.rtm_scope = 0;*/
781 /*req.r.rtm_type = 0;*/
782 /*req.r.rtm_src_len = 0;*/
783 /*req.r.rtm_dst_len = 0;*/
784 /*req.r.rtm_tos = 0;*/
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000785
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000786 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000787 switch (index_in_strings(options, *argv)) {
Glenn L McGrath18eae002002-12-02 00:54:10 +0000788 case 0: /* from */
789 {
790 inet_prefix addr;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000791 NEXT_ARG();
Glenn L McGrath18eae002002-12-02 00:54:10 +0000792 from_ok = 1;
793 get_prefix(&addr, *argv, req.r.rtm_family);
794 if (req.r.rtm_family == AF_UNSPEC) {
795 req.r.rtm_family = addr.family;
796 }
797 if (addr.bytelen) {
798 addattr_l(&req.n, sizeof(req), RTA_SRC, &addr.data, addr.bytelen);
799 }
800 req.r.rtm_src_len = addr.bitlen;
801 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000802 }
Glenn L McGrath18eae002002-12-02 00:54:10 +0000803 case 1: /* iif */
804 NEXT_ARG();
805 idev = *argv;
806 break;
807 case 2: /* oif */
808 case 3: /* dev */
809 NEXT_ARG();
810 odev = *argv;
811 break;
812 case 4: /* notify */
813 req.r.rtm_flags |= RTM_F_NOTIFY;
814 break;
815 case 5: /* connected */
816 connected = 1;
817 break;
818 case 6: /* to */
819 NEXT_ARG();
820 default:
821 {
822 inet_prefix addr;
823 get_prefix(&addr, *argv, req.r.rtm_family);
824 if (req.r.rtm_family == AF_UNSPEC) {
825 req.r.rtm_family = addr.family;
826 }
827 if (addr.bytelen) {
828 addattr_l(&req.n, sizeof(req), RTA_DST, &addr.data, addr.bytelen);
829 }
830 req.r.rtm_dst_len = addr.bitlen;
831 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000832 }
Christian Hornung3bbfb582010-11-03 14:08:00 +0100833 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000834 }
835
836 if (req.r.rtm_dst_len == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000837 bb_error_msg_and_die("need at least destination address");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000838 }
839
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000840 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000841
842 ll_init_map(&rth);
843
844 if (idev || odev) {
845 int idx;
846
847 if (idev) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000848 idx = xll_name_to_index(idev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000849 addattr32(&req.n, sizeof(req), RTA_IIF, idx);
850 }
851 if (odev) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000852 idx = xll_name_to_index(odev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000853 addattr32(&req.n, sizeof(req), RTA_OIF, idx);
854 }
855 }
856
Glenn L McGrath16528552002-11-28 11:17:19 +0000857 if (req.r.rtm_family == AF_UNSPEC) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000858 req.r.rtm_family = AF_INET;
Glenn L McGrath16528552002-11-28 11:17:19 +0000859 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000860
Glenn L McGrath16528552002-11-28 11:17:19 +0000861 if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000862 return 2;
Glenn L McGrath16528552002-11-28 11:17:19 +0000863 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000864
865 if (connected && !from_ok) {
866 struct rtmsg *r = NLMSG_DATA(&req.n);
867 int len = req.n.nlmsg_len;
868 struct rtattr * tb[RTA_MAX+1];
869
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000870 print_route(NULL, &req.n, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000871
872 if (req.n.nlmsg_type != RTM_NEWROUTE) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000873 bb_error_msg_and_die("not a route?");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000874 }
875 len -= NLMSG_LENGTH(sizeof(*r));
876 if (len < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000877 bb_error_msg_and_die("wrong len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000878 }
879
880 memset(tb, 0, sizeof(tb));
881 parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
882
883 if (tb[RTA_PREFSRC]) {
884 tb[RTA_PREFSRC]->rta_type = RTA_SRC;
885 r->rtm_src_len = 8*RTA_PAYLOAD(tb[RTA_PREFSRC]);
886 } else if (!tb[RTA_SRC]) {
Denys Vlasenko651a2692010-03-23 16:25:17 +0100887 bb_error_msg_and_die("can't connect the route");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000888 }
Glenn L McGrath16528552002-11-28 11:17:19 +0000889 if (!odev && tb[RTA_OIF]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000890 tb[RTA_OIF]->rta_type = 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000891 }
892 if (tb[RTA_GATEWAY]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000893 tb[RTA_GATEWAY]->rta_type = 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000894 }
895 if (!idev && tb[RTA_IIF]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000896 tb[RTA_IIF]->rta_type = 0;
Glenn L McGrath16528552002-11-28 11:17:19 +0000897 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000898 req.n.nlmsg_flags = NLM_F_REQUEST;
899 req.n.nlmsg_type = RTM_GETROUTE;
900
Glenn L McGrath16528552002-11-28 11:17:19 +0000901 if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000902 return 2;
Glenn L McGrath16528552002-11-28 11:17:19 +0000903 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000904 }
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000905 print_route(NULL, &req.n, NULL);
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000906 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000907}
908
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000909/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +0200910int FAST_FUNC do_iproute(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000911{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000912 static const char ip_route_commands[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000913 /*0-3*/ "add\0""append\0""change\0""chg\0"
914 /*4-7*/ "delete\0""get\0""list\0""show\0"
915 /*8..*/ "prepend\0""replace\0""test\0""flush\0";
Denis Vlasenko83c44222008-01-04 15:28:28 +0000916 int command_num;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000917 unsigned flags = 0;
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000918 int cmd = RTM_NEWROUTE;
919
Denis Vlasenko83c44222008-01-04 15:28:28 +0000920 if (!*argv)
921 return iproute_list_or_flush(argv, 0);
922
Denis Vlasenko5af906e2006-11-05 18:05:09 +0000923 /* "Standard" 'ip r a' treats 'a' as 'add', not 'append' */
924 /* It probably means that it is using "first match" rule */
Denis Vlasenko83c44222008-01-04 15:28:28 +0000925 command_num = index_in_substrings(ip_route_commands, *argv);
926
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000927 switch (command_num) {
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000928 case 0: /* add */
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000929 flags = NLM_F_CREATE|NLM_F_EXCL;
930 break;
931 case 1: /* append */
932 flags = NLM_F_CREATE|NLM_F_APPEND;
933 break;
934 case 2: /* change */
935 case 3: /* chg */
936 flags = NLM_F_REPLACE;
937 break;
938 case 4: /* delete */
939 cmd = RTM_DELROUTE;
940 break;
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000941 case 5: /* get */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000942 return iproute_get(argv+1);
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000943 case 6: /* list */
944 case 7: /* show */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000945 return iproute_list_or_flush(argv+1, 0);
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000946 case 8: /* prepend */
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000947 flags = NLM_F_CREATE;
Denis Vlasenko1eecaf22007-09-30 16:04:21 +0000948 break;
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000949 case 9: /* replace */
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000950 flags = NLM_F_CREATE|NLM_F_REPLACE;
Denis Vlasenko1eecaf22007-09-30 16:04:21 +0000951 break;
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000952 case 10: /* test */
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000953 flags = NLM_F_EXCL;
Denis Vlasenko1eecaf22007-09-30 16:04:21 +0000954 break;
Denis Vlasenkofd94efa2007-01-27 13:13:45 +0000955 case 11: /* flush */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000956 return iproute_list_or_flush(argv+1, 1);
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000957 default:
Denis Vlasenkoc6f188d2006-10-26 00:37:00 +0000958 bb_error_msg_and_die("unknown command %s", *argv);
Glenn L McGrath16528552002-11-28 11:17:19 +0000959 }
Glenn L McGrathc82f2322002-12-02 00:35:23 +0000960
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000961 return iproute_modify(cmd, flags, argv+1);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000962}