5ded99b2e8b6a34c25c051d8dcb01f734cf3658a
[oweals/busybox.git] / networking / libiproute / iproute.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * iproute.c            "ip route".
4  *
5  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6  *
7  * Authors:     Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
8  *
9  *
10  * Changes:
11  *
12  * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
13  * Kunihiro Ishiguro <kunihiro@zebra.org> 001102: rtnh_ifindex was not initialized
14  */
15
16 #include "ip_common.h"  /* #include "libbb.h" is inside */
17 #include "rt_names.h"
18 #include "utils.h"
19
20 #ifndef RTAX_RTTVAR
21 #define RTAX_RTTVAR RTAX_HOPS
22 #endif
23
24
25 typedef struct filter_t {
26         int tb;
27         int flushed;
28         char *flushb;
29         int flushp;
30         int flushe;
31         struct rtnl_handle *rth;
32         int protocol, protocolmask;
33         int scope, scopemask;
34         int type, typemask;
35         int tos, tosmask;
36         int iif, iifmask;
37         int oif, oifmask;
38         int realm, realmmask;
39         inet_prefix rprefsrc;
40         inet_prefix rvia;
41         inet_prefix rdst;
42         inet_prefix mdst;
43         inet_prefix rsrc;
44         inet_prefix msrc;
45 } filter_t;
46
47 #define filter (*(filter_t*)&bb_common_bufsiz1)
48
49 static int flush_update(void)
50 {
51         if (rtnl_send(filter.rth, filter.flushb, filter.flushp) < 0) {
52                 bb_perror_msg("failed to send flush request");
53                 return -1;
54         }
55         filter.flushp = 0;
56         return 0;
57 }
58
59 static unsigned get_hz(void)
60 {
61         static unsigned hz_internal;
62         FILE *fp;
63
64         if (hz_internal)
65                 return hz_internal;
66
67         fp = fopen("/proc/net/psched", "r");
68         if (fp) {
69                 unsigned nom, denom;
70
71                 if (fscanf(fp, "%*08x%*08x%08x%08x", &nom, &denom) == 2)
72                         if (nom == 1000000)
73                                 hz_internal = denom;
74                 fclose(fp);
75         }
76         if (!hz_internal)
77                 hz_internal = sysconf(_SC_CLK_TCK);
78         return hz_internal;
79 }
80
81 static int print_route(struct sockaddr_nl *who ATTRIBUTE_UNUSED,
82                 struct nlmsghdr *n, void *arg)
83 {
84         FILE *fp = (FILE*)arg;
85         struct rtmsg *r = NLMSG_DATA(n);
86         int len = n->nlmsg_len;
87         struct rtattr * tb[RTA_MAX+1];
88         char abuf[256];
89         inet_prefix dst;
90         inet_prefix src;
91         int host_len = -1;
92         SPRINT_BUF(b1);
93
94
95         if (n->nlmsg_type != RTM_NEWROUTE && n->nlmsg_type != RTM_DELROUTE) {
96                 fprintf(stderr, "Not a route: %08x %08x %08x\n",
97                         n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
98                 return 0;
99         }
100         if (filter.flushb && n->nlmsg_type != RTM_NEWROUTE)
101                 return 0;
102         len -= NLMSG_LENGTH(sizeof(*r));
103         if (len < 0)
104                 bb_error_msg_and_die("wrong nlmsg len %d", len);
105
106         if (r->rtm_family == AF_INET6)
107                 host_len = 128;
108         else if (r->rtm_family == AF_INET)
109                 host_len = 32;
110
111         if (r->rtm_family == AF_INET6) {
112                 if (filter.tb) {
113                         if (filter.tb < 0) {
114                                 if (!(r->rtm_flags & RTM_F_CLONED)) {
115                                         return 0;
116                                 }
117                         } else {
118                                 if (r->rtm_flags & RTM_F_CLONED) {
119                                         return 0;
120                                 }
121                                 if (filter.tb == RT_TABLE_LOCAL) {
122                                         if (r->rtm_type != RTN_LOCAL) {
123                                                 return 0;
124                                         }
125                                 } else if (filter.tb == RT_TABLE_MAIN) {
126                                         if (r->rtm_type == RTN_LOCAL) {
127                                                 return 0;
128                                         }
129                                 } else {
130                                         return 0;
131                                 }
132                         }
133                 }
134         } else {
135                 if (filter.tb > 0 && filter.tb != r->rtm_table) {
136                         return 0;
137                 }
138         }
139         if (filter.rdst.family &&
140             (r->rtm_family != filter.rdst.family || filter.rdst.bitlen > r->rtm_dst_len)) {
141                 return 0;
142         }
143         if (filter.mdst.family &&
144             (r->rtm_family != filter.mdst.family ||
145              (filter.mdst.bitlen >= 0 && filter.mdst.bitlen < r->rtm_dst_len))) {
146                 return 0;
147         }
148         if (filter.rsrc.family &&
149             (r->rtm_family != filter.rsrc.family || filter.rsrc.bitlen > r->rtm_src_len)) {
150                 return 0;
151         }
152         if (filter.msrc.family &&
153             (r->rtm_family != filter.msrc.family ||
154              (filter.msrc.bitlen >= 0 && filter.msrc.bitlen < r->rtm_src_len))) {
155                 return 0;
156         }
157
158         memset(tb, 0, sizeof(tb));
159         parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
160
161         if (filter.rdst.family && inet_addr_match(&dst, &filter.rdst, filter.rdst.bitlen))
162                 return 0;
163         if (filter.mdst.family && filter.mdst.bitlen >= 0 &&
164             inet_addr_match(&dst, &filter.mdst, r->rtm_dst_len))
165                 return 0;
166
167         if (filter.rsrc.family && inet_addr_match(&src, &filter.rsrc, filter.rsrc.bitlen))
168                 return 0;
169         if (filter.msrc.family && filter.msrc.bitlen >= 0 &&
170             inet_addr_match(&src, &filter.msrc, r->rtm_src_len))
171                 return 0;
172
173         if (filter.flushb &&
174             r->rtm_family == AF_INET6 &&
175             r->rtm_dst_len == 0 &&
176             r->rtm_type == RTN_UNREACHABLE &&
177             tb[RTA_PRIORITY] &&
178             *(int*)RTA_DATA(tb[RTA_PRIORITY]) == -1)
179                 return 0;
180
181         if (filter.flushb) {
182                 struct nlmsghdr *fn;
183                 if (NLMSG_ALIGN(filter.flushp) + n->nlmsg_len > filter.flushe) {
184                         if (flush_update())
185                                 bb_error_msg_and_die("flush");
186                 }
187                 fn = (struct nlmsghdr*)(filter.flushb + NLMSG_ALIGN(filter.flushp));
188                 memcpy(fn, n, n->nlmsg_len);
189                 fn->nlmsg_type = RTM_DELROUTE;
190                 fn->nlmsg_flags = NLM_F_REQUEST;
191                 fn->nlmsg_seq = ++filter.rth->seq;
192                 filter.flushp = (((char*)fn) + n->nlmsg_len) - filter.flushb;
193                 filter.flushed++;
194                 return 0;
195         }
196
197         if (n->nlmsg_type == RTM_DELROUTE) {
198                 fprintf(fp, "Deleted ");
199         }
200         if (r->rtm_type != RTN_UNICAST && !filter.type) {
201                 fprintf(fp, "%s ", rtnl_rtntype_n2a(r->rtm_type, b1, sizeof(b1)));
202         }
203
204         if (tb[RTA_DST]) {
205                 if (r->rtm_dst_len != host_len) {
206                         fprintf(fp, "%s/%u ", rt_addr_n2a(r->rtm_family,
207                                                          RTA_PAYLOAD(tb[RTA_DST]),
208                                                          RTA_DATA(tb[RTA_DST]),
209                                                          abuf, sizeof(abuf)),
210                                 r->rtm_dst_len
211                                 );
212                 } else {
213                         fprintf(fp, "%s ", format_host(r->rtm_family,
214                                                        RTA_PAYLOAD(tb[RTA_DST]),
215                                                        RTA_DATA(tb[RTA_DST]),
216                                                        abuf, sizeof(abuf))
217                                 );
218                 }
219         } else if (r->rtm_dst_len) {
220                 fprintf(fp, "0/%d ", r->rtm_dst_len);
221         } else {
222                 fprintf(fp, "default ");
223         }
224         if (tb[RTA_SRC]) {
225                 if (r->rtm_src_len != host_len) {
226                         fprintf(fp, "from %s/%u ", rt_addr_n2a(r->rtm_family,
227                                                          RTA_PAYLOAD(tb[RTA_SRC]),
228                                                          RTA_DATA(tb[RTA_SRC]),
229                                                          abuf, sizeof(abuf)),
230                                 r->rtm_src_len
231                                 );
232                 } else {
233                         fprintf(fp, "from %s ", format_host(r->rtm_family,
234                                                        RTA_PAYLOAD(tb[RTA_SRC]),
235                                                        RTA_DATA(tb[RTA_SRC]),
236                                                        abuf, sizeof(abuf))
237                                 );
238                 }
239         } else if (r->rtm_src_len) {
240                 fprintf(fp, "from 0/%u ", r->rtm_src_len);
241         }
242         if (tb[RTA_GATEWAY] && filter.rvia.bitlen != host_len) {
243                 fprintf(fp, "via %s ",
244                         format_host(r->rtm_family,
245                                     RTA_PAYLOAD(tb[RTA_GATEWAY]),
246                                     RTA_DATA(tb[RTA_GATEWAY]),
247                                     abuf, sizeof(abuf)));
248         }
249         if (tb[RTA_OIF] && filter.oifmask != -1) {
250                 fprintf(fp, "dev %s ", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_OIF])));
251         }
252
253         if (tb[RTA_PREFSRC] && filter.rprefsrc.bitlen != host_len) {
254                 /* Do not use format_host(). It is our local addr
255                    and symbolic name will not be useful.
256                  */
257                 fprintf(fp, " src %s ",
258                         rt_addr_n2a(r->rtm_family,
259                                     RTA_PAYLOAD(tb[RTA_PREFSRC]),
260                                     RTA_DATA(tb[RTA_PREFSRC]),
261                                     abuf, sizeof(abuf)));
262         }
263         if (tb[RTA_PRIORITY]) {
264                 fprintf(fp, " metric %d ", *(uint32_t*)RTA_DATA(tb[RTA_PRIORITY]));
265         }
266         if (r->rtm_family == AF_INET6) {
267                 struct rta_cacheinfo *ci = NULL;
268                 if (tb[RTA_CACHEINFO]) {
269                         ci = RTA_DATA(tb[RTA_CACHEINFO]);
270                 }
271                 if ((r->rtm_flags & RTM_F_CLONED) || (ci && ci->rta_expires)) {
272                         if (r->rtm_flags & RTM_F_CLONED) {
273                                 fprintf(fp, "%c    cache ", _SL_);
274                         }
275                         if (ci->rta_expires) {
276                                 fprintf(fp, " expires %dsec", ci->rta_expires / get_hz());
277                         }
278                         if (ci->rta_error != 0) {
279                                 fprintf(fp, " error %d", ci->rta_error);
280                         }
281                 } else if (ci) {
282                         if (ci->rta_error != 0)
283                                 fprintf(fp, " error %d", ci->rta_error);
284                 }
285         }
286         if (tb[RTA_IIF] && filter.iifmask != -1) {
287                 fprintf(fp, " iif %s", ll_index_to_name(*(int*)RTA_DATA(tb[RTA_IIF])));
288         }
289         fputc('\n', fp);
290         fflush(fp);
291         return 0;
292 }
293
294 /* Return value becomes exitcode. It's okay to not return at all */
295 static int iproute_modify(int cmd, unsigned flags, char **argv)
296 {
297         static const char keywords[] ALIGN1 =
298                 "src\0""via\0""mtu\0""lock\0""protocol\0"USE_FEATURE_IP_RULE("table\0")
299                 "dev\0""oif\0""to\0";
300         enum {
301                 ARG_src,
302                 ARG_via,
303                 ARG_mtu, PARM_lock,
304                 ARG_protocol,
305 USE_FEATURE_IP_RULE(ARG_table,)
306                 ARG_dev,
307                 ARG_oif,
308                 ARG_to
309         };
310         enum {
311                 gw_ok = 1 << 0,
312                 dst_ok = 1 << 1,
313                 proto_ok = 1 << 2,
314                 type_ok = 1 << 3
315         };
316         struct rtnl_handle rth;
317         struct {
318                 struct nlmsghdr         n;
319                 struct rtmsg            r;
320                 char                    buf[1024];
321         } req;
322         char mxbuf[256];
323         struct rtattr * mxrta = (void*)mxbuf;
324         unsigned mxlock = 0;
325         char *d = NULL;
326         smalluint ok = 0;
327         int arg;
328
329         memset(&req, 0, sizeof(req));
330
331         req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
332         req.n.nlmsg_flags = NLM_F_REQUEST|flags;
333         req.n.nlmsg_type = cmd;
334         req.r.rtm_family = preferred_family;
335         req.r.rtm_table = RT_TABLE_MAIN;
336         req.r.rtm_scope = RT_SCOPE_NOWHERE;
337
338         if (cmd != RTM_DELROUTE) {
339                 req.r.rtm_protocol = RTPROT_BOOT;
340                 req.r.rtm_scope = RT_SCOPE_UNIVERSE;
341                 req.r.rtm_type = RTN_UNICAST;
342         }
343
344         mxrta->rta_type = RTA_METRICS;
345         mxrta->rta_len = RTA_LENGTH(0);
346
347         while (*argv) {
348                 arg = index_in_substrings(keywords, *argv);
349                 if (arg == ARG_src) {
350                         inet_prefix addr;
351                         NEXT_ARG();
352                         get_addr(&addr, *argv, req.r.rtm_family);
353                         if (req.r.rtm_family == AF_UNSPEC)
354                                 req.r.rtm_family = addr.family;
355                         addattr_l(&req.n, sizeof(req), RTA_PREFSRC, &addr.data, addr.bytelen);
356                 } else if (arg == ARG_via) {
357                         inet_prefix addr;
358                         ok |= gw_ok;
359                         NEXT_ARG();
360                         get_addr(&addr, *argv, req.r.rtm_family);
361                         if (req.r.rtm_family == AF_UNSPEC) {
362                                 req.r.rtm_family = addr.family;
363                         }
364                         addattr_l(&req.n, sizeof(req), RTA_GATEWAY, &addr.data, addr.bytelen);
365                 } else if (arg == ARG_mtu) {
366                         unsigned mtu;
367                         NEXT_ARG();
368                         if (index_in_strings(keywords, *argv) == PARM_lock) {
369                                 mxlock |= (1 << RTAX_MTU);
370                                 NEXT_ARG();
371                         }
372                         if (get_unsigned(&mtu, *argv, 0))
373                                 invarg(*argv, "mtu");
374                         rta_addattr32(mxrta, sizeof(mxbuf), RTAX_MTU, mtu);
375                 } else if (arg == ARG_protocol) {
376                         uint32_t prot;
377                         NEXT_ARG();
378                         if (rtnl_rtprot_a2n(&prot, *argv))
379                                 invarg(*argv, "protocol");
380                         req.r.rtm_protocol = prot;
381                         ok |= proto_ok;
382 #if ENABLE_FEATURE_IP_RULE
383                 } else if (arg == ARG_table) {
384                         uint32_t tid;
385                         NEXT_ARG();
386                         if (rtnl_rttable_a2n(&tid, *argv))
387                                 invarg(*argv, "table");
388                         req.r.rtm_table = tid;
389 #endif
390                 } else if (arg == ARG_dev || arg == ARG_oif) {
391                         NEXT_ARG();
392                         d = *argv;
393                 } else {
394                         int type;
395                         inet_prefix dst;
396
397                         if (arg == ARG_to) {
398                                 NEXT_ARG();
399                         }
400                         if ((**argv < '0' || **argv > '9')
401                          && rtnl_rtntype_a2n(&type, *argv) == 0) {
402                                 NEXT_ARG();
403                                 req.r.rtm_type = type;
404                                 ok |= type_ok;
405                         }
406
407                         if (ok & dst_ok) {
408                                 duparg2("to", *argv);
409                         }
410                         get_prefix(&dst, *argv, req.r.rtm_family);
411                         if (req.r.rtm_family == AF_UNSPEC) {
412                                 req.r.rtm_family = dst.family;
413                         }
414                         req.r.rtm_dst_len = dst.bitlen;
415                         ok |= dst_ok;
416                         if (dst.bytelen) {
417                                 addattr_l(&req.n, sizeof(req), RTA_DST, &dst.data, dst.bytelen);
418                         }
419                 }
420                 argv++;
421         }
422
423         xrtnl_open(&rth);
424
425         if (d)  {
426                 int idx;
427
428                 ll_init_map(&rth);
429
430                 if (d) {
431                         idx = xll_name_to_index(d);
432                         addattr32(&req.n, sizeof(req), RTA_OIF, idx);
433                 }
434         }
435
436         if (mxrta->rta_len > RTA_LENGTH(0)) {
437                 if (mxlock) {
438                         rta_addattr32(mxrta, sizeof(mxbuf), RTAX_LOCK, mxlock);
439                 }
440                 addattr_l(&req.n, sizeof(req), RTA_METRICS, RTA_DATA(mxrta), RTA_PAYLOAD(mxrta));
441         }
442
443         if (req.r.rtm_type == RTN_LOCAL || req.r.rtm_type == RTN_NAT)
444                 req.r.rtm_scope = RT_SCOPE_HOST;
445         else if (req.r.rtm_type == RTN_BROADCAST ||
446                         req.r.rtm_type == RTN_MULTICAST ||
447                         req.r.rtm_type == RTN_ANYCAST)
448                 req.r.rtm_scope = RT_SCOPE_LINK;
449         else if (req.r.rtm_type == RTN_UNICAST || req.r.rtm_type == RTN_UNSPEC) {
450                 if (cmd == RTM_DELROUTE)
451                         req.r.rtm_scope = RT_SCOPE_NOWHERE;
452                 else if (!(ok & gw_ok))
453                         req.r.rtm_scope = RT_SCOPE_LINK;
454         }
455
456         if (req.r.rtm_family == AF_UNSPEC) {
457                 req.r.rtm_family = AF_INET;
458         }
459
460         if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0) {
461                 return 2;
462         }
463
464         return 0;
465 }
466
467 static int rtnl_rtcache_request(struct rtnl_handle *rth, int family)
468 {
469         struct {
470                 struct nlmsghdr nlh;
471                 struct rtmsg rtm;
472         } req;
473         struct sockaddr_nl nladdr;
474
475         memset(&nladdr, 0, sizeof(nladdr));
476         memset(&req, 0, sizeof(req));
477         nladdr.nl_family = AF_NETLINK;
478
479         req.nlh.nlmsg_len = sizeof(req);
480         req.nlh.nlmsg_type = RTM_GETROUTE;
481         req.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_REQUEST;
482         req.nlh.nlmsg_pid = 0;
483         req.nlh.nlmsg_seq = rth->dump = ++rth->seq;
484         req.rtm.rtm_family = family;
485         req.rtm.rtm_flags |= RTM_F_CLONED;
486
487         return xsendto(rth->fd, (void*)&req, sizeof(req), (struct sockaddr*)&nladdr, sizeof(nladdr));
488 }
489
490 static void iproute_flush_cache(void)
491 {
492         static const char fn[] ALIGN1 = "/proc/sys/net/ipv4/route/flush";
493         int flush_fd = open_or_warn(fn, O_WRONLY);
494
495         if (flush_fd < 0) {
496                 return;
497         }
498
499         if (write(flush_fd, "-1", 2) < 2) {
500                 bb_perror_msg("cannot flush routing cache");
501                 return;
502         }
503         close(flush_fd);
504 }
505
506 static void iproute_reset_filter(void)
507 {
508         memset(&filter, 0, sizeof(filter));
509         filter.mdst.bitlen = -1;
510         filter.msrc.bitlen = -1;
511 }
512
513 /* Return value becomes exitcode. It's okay to not return at all */
514 static int iproute_list_or_flush(char **argv, int flush)
515 {
516         int do_ipv6 = preferred_family;
517         struct rtnl_handle rth;
518         char *id = NULL;
519         char *od = NULL;
520         static const char keywords[] ALIGN1 =
521                 /* "ip route list/flush" parameters: */
522                 "protocol\0" "dev\0"   "oif\0"   "iif\0"
523                 "via\0"      "table\0" "cache\0"
524                 "from\0"     "to\0"
525                 /* and possible further keywords */
526                 "all\0"
527                 "root\0"
528                 "match\0"
529                 "exact\0"
530                 "main\0"
531                 ;
532         enum {
533                 KW_proto, KW_dev,   KW_oif,  KW_iif,
534                 KW_via,   KW_table, KW_cache,
535                 KW_from,  KW_to,
536                 /* */
537                 KW_all,
538                 KW_root,
539                 KW_match,
540                 KW_exact,
541                 KW_main,
542         };
543         int arg, parm;
544
545         iproute_reset_filter();
546         filter.tb = RT_TABLE_MAIN;
547
548         if (flush && !*argv)
549                 bb_error_msg_and_die(bb_msg_requires_arg, "\"ip route flush\"");
550
551         while (*argv) {
552                 arg = index_in_substrings(keywords, *argv);
553                 if (arg == KW_proto) {
554                         uint32_t prot = 0;
555                         NEXT_ARG();
556                         filter.protocolmask = -1;
557                         if (rtnl_rtprot_a2n(&prot, *argv)) {
558                                 if (index_in_strings(keywords, *argv) != KW_all)
559                                         invarg(*argv, "protocol");
560                                 prot = 0;
561                                 filter.protocolmask = 0;
562                         }
563                         filter.protocol = prot;
564                 } else if (arg == KW_dev || arg == KW_oif) {
565                         NEXT_ARG();
566                         od = *argv;
567                 } else if (arg == KW_iif) {
568                         NEXT_ARG();
569                         id = *argv;
570                 } else if (arg == KW_via) {
571                         NEXT_ARG();
572                         get_prefix(&filter.rvia, *argv, do_ipv6);
573                 } else if (arg == KW_table) { /* table all/cache/main */
574                         NEXT_ARG();
575                         parm = index_in_substrings(keywords, *argv);
576                         if (parm == KW_cache)
577                                 filter.tb = -1;
578                         else if (parm == KW_all)
579                                 filter.tb = 0;
580                         else if (parm != KW_main)
581                                 invarg(*argv, "table");
582                 } else if (arg == KW_cache) {
583                         /* The command 'ip route flush cache' is used by OpenSWAN.
584                          * Assuming it's a synonym for 'ip route flush table cache' */
585                         filter.tb = -1;
586                 } else if (arg == KW_from) {
587                         NEXT_ARG();
588                         parm = index_in_substrings(keywords, *argv);
589                         if (parm == KW_root) {
590                                 NEXT_ARG();
591                                 get_prefix(&filter.rsrc, *argv, do_ipv6);
592                         } else if (parm == KW_match) {
593                                 NEXT_ARG();
594                                 get_prefix(&filter.msrc, *argv, do_ipv6);
595                         } else {
596                                 if (parm == KW_exact)
597                                         NEXT_ARG();
598                                 get_prefix(&filter.msrc, *argv, do_ipv6);
599                                 filter.rsrc = filter.msrc;
600                         }
601                 } else { /* "to" is the default parameter */
602                         if (arg == KW_to) {
603                                 NEXT_ARG();
604                                 arg = index_in_substrings(keywords, *argv);
605                         }
606                         /* parm = arg; - would be more plausible, but we reuse 'arg' here */
607                         if (arg == KW_root) {
608                                 NEXT_ARG();
609                                 get_prefix(&filter.rdst, *argv, do_ipv6);
610                         } else if (arg == KW_match) {
611                                 NEXT_ARG();
612                                 get_prefix(&filter.mdst, *argv, do_ipv6);
613                         } else { /* "to exact" is the default */
614                                 if (arg == KW_exact)
615                                         NEXT_ARG();
616                                 get_prefix(&filter.mdst, *argv, do_ipv6);
617                                 filter.rdst = filter.mdst;
618                         }
619                 }
620                 argv++;
621         }
622
623         if (do_ipv6 == AF_UNSPEC && filter.tb) {
624                 do_ipv6 = AF_INET;
625         }
626
627         xrtnl_open(&rth);
628         ll_init_map(&rth);
629
630         if (id || od)  {
631                 int idx;
632
633                 if (id) {
634                         idx = xll_name_to_index(id);
635                         filter.iif = idx;
636                         filter.iifmask = -1;
637                 }
638                 if (od) {
639                         idx = xll_name_to_index(od);
640                         filter.oif = idx;
641                         filter.oifmask = -1;
642                 }
643         }
644
645         if (flush) {
646                 char flushb[4096-512];
647
648                 if (filter.tb == -1) { /* "flush table cache" */
649                         if (do_ipv6 != AF_INET6)
650                                 iproute_flush_cache();
651                         if (do_ipv6 == AF_INET)
652                                 return 0;
653                 }
654
655                 filter.flushb = flushb;
656                 filter.flushp = 0;
657                 filter.flushe = sizeof(flushb);
658                 filter.rth = &rth;
659
660                 for (;;) {
661                         xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
662                         filter.flushed = 0;
663                         xrtnl_dump_filter(&rth, print_route, stdout);
664                         if (filter.flushed == 0)
665                                 return 0;
666                         if (flush_update())
667                                 return 1;
668                 }
669         }
670
671         if (filter.tb != -1) {
672                 xrtnl_wilddump_request(&rth, do_ipv6, RTM_GETROUTE);
673         } else if (rtnl_rtcache_request(&rth, do_ipv6) < 0) {
674                 bb_perror_msg_and_die("cannot send dump request");
675         }
676         xrtnl_dump_filter(&rth, print_route, stdout);
677
678         return 0;
679 }
680
681
682 /* Return value becomes exitcode. It's okay to not return at all */
683 static int iproute_get(char **argv)
684 {
685         struct rtnl_handle rth;
686         struct {
687                 struct nlmsghdr n;
688                 struct rtmsg    r;
689                 char            buf[1024];
690         } req;
691         char *idev = NULL;
692         char *odev = NULL;
693         bool connected = 0;
694         bool from_ok = 0;
695         static const char options[] ALIGN1 =
696                 "from\0""iif\0""oif\0""dev\0""notify\0""connected\0""to\0";
697
698         memset(&req, 0, sizeof(req));
699
700         iproute_reset_filter();
701
702         req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
703         req.n.nlmsg_flags = NLM_F_REQUEST;
704         req.n.nlmsg_type = RTM_GETROUTE;
705         req.r.rtm_family = preferred_family;
706         req.r.rtm_table = 0;
707         req.r.rtm_protocol = 0;
708         req.r.rtm_scope = 0;
709         req.r.rtm_type = 0;
710         req.r.rtm_src_len = 0;
711         req.r.rtm_dst_len = 0;
712         req.r.rtm_tos = 0;
713
714         while (*argv) {
715                 switch (index_in_strings(options, *argv)) {
716                         case 0: /* from */
717                         {
718                                 inet_prefix addr;
719                                 NEXT_ARG();
720                                 from_ok = 1;
721                                 get_prefix(&addr, *argv, req.r.rtm_family);
722                                 if (req.r.rtm_family == AF_UNSPEC) {
723                                         req.r.rtm_family = addr.family;
724                                 }
725                                 if (addr.bytelen) {
726                                         addattr_l(&req.n, sizeof(req), RTA_SRC, &addr.data, addr.bytelen);
727                                 }
728                                 req.r.rtm_src_len = addr.bitlen;
729                                 break;
730                         }
731                         case 1: /* iif */
732                                 NEXT_ARG();
733                                 idev = *argv;
734                                 break;
735                         case 2: /* oif */
736                         case 3: /* dev */
737                                 NEXT_ARG();
738                                 odev = *argv;
739                                 break;
740                         case 4: /* notify */
741                                 req.r.rtm_flags |= RTM_F_NOTIFY;
742                                 break;
743                         case 5: /* connected */
744                                 connected = 1;
745                                 break;
746                         case 6: /* to */
747                                 NEXT_ARG();
748                         default:
749                         {
750                                 inet_prefix addr;
751                                 get_prefix(&addr, *argv, req.r.rtm_family);
752                                 if (req.r.rtm_family == AF_UNSPEC) {
753                                         req.r.rtm_family = addr.family;
754                                 }
755                                 if (addr.bytelen) {
756                                         addattr_l(&req.n, sizeof(req), RTA_DST, &addr.data, addr.bytelen);
757                                 }
758                                 req.r.rtm_dst_len = addr.bitlen;
759                         }
760                         argv++;
761                 }
762         }
763
764         if (req.r.rtm_dst_len == 0) {
765                 bb_error_msg_and_die("need at least destination address");
766         }
767
768         xrtnl_open(&rth);
769
770         ll_init_map(&rth);
771
772         if (idev || odev)  {
773                 int idx;
774
775                 if (idev) {
776                         idx = xll_name_to_index(idev);
777                         addattr32(&req.n, sizeof(req), RTA_IIF, idx);
778                 }
779                 if (odev) {
780                         idx = xll_name_to_index(odev);
781                         addattr32(&req.n, sizeof(req), RTA_OIF, idx);
782                 }
783         }
784
785         if (req.r.rtm_family == AF_UNSPEC) {
786                 req.r.rtm_family = AF_INET;
787         }
788
789         if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
790                 return 2;
791         }
792
793         if (connected && !from_ok) {
794                 struct rtmsg *r = NLMSG_DATA(&req.n);
795                 int len = req.n.nlmsg_len;
796                 struct rtattr * tb[RTA_MAX+1];
797
798                 print_route(NULL, &req.n, (void*)stdout);
799
800                 if (req.n.nlmsg_type != RTM_NEWROUTE) {
801                         bb_error_msg_and_die("not a route?");
802                 }
803                 len -= NLMSG_LENGTH(sizeof(*r));
804                 if (len < 0) {
805                         bb_error_msg_and_die("wrong len %d", len);
806                 }
807
808                 memset(tb, 0, sizeof(tb));
809                 parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
810
811                 if (tb[RTA_PREFSRC]) {
812                         tb[RTA_PREFSRC]->rta_type = RTA_SRC;
813                         r->rtm_src_len = 8*RTA_PAYLOAD(tb[RTA_PREFSRC]);
814                 } else if (!tb[RTA_SRC]) {
815                         bb_error_msg_and_die("failed to connect the route");
816                 }
817                 if (!odev && tb[RTA_OIF]) {
818                         tb[RTA_OIF]->rta_type = 0;
819                 }
820                 if (tb[RTA_GATEWAY]) {
821                         tb[RTA_GATEWAY]->rta_type = 0;
822                 }
823                 if (!idev && tb[RTA_IIF]) {
824                         tb[RTA_IIF]->rta_type = 0;
825                 }
826                 req.n.nlmsg_flags = NLM_F_REQUEST;
827                 req.n.nlmsg_type = RTM_GETROUTE;
828
829                 if (rtnl_talk(&rth, &req.n, 0, 0, &req.n, NULL, NULL) < 0) {
830                         return 2;
831                 }
832         }
833         print_route(NULL, &req.n, (void*)stdout);
834         return 0;
835 }
836
837 /* Return value becomes exitcode. It's okay to not return at all */
838 int do_iproute(char **argv)
839 {
840         static const char ip_route_commands[] ALIGN1 =
841         /*0-3*/ "add\0""append\0""change\0""chg\0"
842         /*4-7*/ "delete\0""get\0""list\0""show\0"
843         /*8..*/ "prepend\0""replace\0""test\0""flush\0";
844         int command_num;
845         unsigned flags = 0;
846         int cmd = RTM_NEWROUTE;
847
848         if (!*argv)
849                 return iproute_list_or_flush(argv, 0);
850
851         /* "Standard" 'ip r a' treats 'a' as 'add', not 'append' */
852         /* It probably means that it is using "first match" rule */
853         command_num = index_in_substrings(ip_route_commands, *argv);
854
855         switch (command_num) {
856                 case 0: /* add */
857                         flags = NLM_F_CREATE|NLM_F_EXCL;
858                         break;
859                 case 1: /* append */
860                         flags = NLM_F_CREATE|NLM_F_APPEND;
861                         break;
862                 case 2: /* change */
863                 case 3: /* chg */
864                         flags = NLM_F_REPLACE;
865                         break;
866                 case 4: /* delete */
867                         cmd = RTM_DELROUTE;
868                         break;
869                 case 5: /* get */
870                         return iproute_get(argv+1);
871                 case 6: /* list */
872                 case 7: /* show */
873                         return iproute_list_or_flush(argv+1, 0);
874                 case 8: /* prepend */
875                         flags = NLM_F_CREATE;
876                         break;
877                 case 9: /* replace */
878                         flags = NLM_F_CREATE|NLM_F_REPLACE;
879                         break;
880                 case 10: /* test */
881                         flags = NLM_F_EXCL;
882                         break;
883                 case 11: /* flush */
884                         return iproute_list_or_flush(argv+1, 1);
885                 default:
886                         bb_error_msg_and_die("unknown command %s", *argv);
887         }
888
889         return iproute_modify(cmd, flags, argv+1);
890 }