b7d08dd632a4700bc1a54b49b4c84899559986e9
[oweals/busybox.git] / networking / route.c
1 /* vi: set sw=4 ts=4: */
2 /* route
3  *
4  * Similar to the standard Unix route, but with only the necessary
5  * parts for AF_INET and AF_INET6
6  *
7  * Bjorn Wesen, Axis Communications AB
8  *
9  * Author of the original route:
10  *              Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
11  *              (derived from FvK's 'route.c     1.70    01/04/94')
12  *
13  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
14  *
15  *
16  * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru>
17  * adjustments by Larry Doolittle  <LRDoolittle@lbl.gov>
18  *
19  * IPV6 support added by Bart Visscher <magick@linux-fan.com>
20  */
21
22 /* 2004/03/09  Manuel Novoa III <mjn3@codepoet.org>
23  *
24  * Rewritten to fix several bugs, add additional error checking, and
25  * remove ridiculous amounts of bloat.
26  */
27
28 #include <net/route.h>
29 #include <net/if.h>
30
31 #include "libbb.h"
32 #include "inet_common.h"
33
34
35 #ifndef RTF_UP
36 /* Keep this in sync with /usr/src/linux/include/linux/route.h */
37 #define RTF_UP          0x0001  /* route usable                 */
38 #define RTF_GATEWAY     0x0002  /* destination is a gateway     */
39 #define RTF_HOST        0x0004  /* host entry (net otherwise)   */
40 #define RTF_REINSTATE   0x0008  /* reinstate route after tmout  */
41 #define RTF_DYNAMIC     0x0010  /* created dyn. (by redirect)   */
42 #define RTF_MODIFIED    0x0020  /* modified dyn. (by redirect)  */
43 #define RTF_MTU         0x0040  /* specific MTU for this route  */
44 #ifndef RTF_MSS
45 #define RTF_MSS         RTF_MTU /* Compatibility :-(            */
46 #endif
47 #define RTF_WINDOW      0x0080  /* per route window clamping    */
48 #define RTF_IRTT        0x0100  /* Initial round trip time      */
49 #define RTF_REJECT      0x0200  /* Reject route                 */
50 #endif
51
52 #if defined(SIOCADDRTOLD) || defined(RTF_IRTT)  /* route */
53 #define HAVE_NEW_ADDRT 1
54 #endif
55
56 #if HAVE_NEW_ADDRT
57 #define mask_in_addr(x) (((struct sockaddr_in *)&((x).rt_genmask))->sin_addr.s_addr)
58 #define full_mask(x) (x)
59 #else
60 #define mask_in_addr(x) ((x).rt_genmask)
61 #define full_mask(x) (((struct sockaddr_in *)&(x))->sin_addr.s_addr)
62 #endif
63
64 /* The RTACTION entries must agree with tbl_verb[] below! */
65 #define RTACTION_ADD 1
66 #define RTACTION_DEL 2
67
68 /* For the various tbl_*[] arrays, the 1st byte is the offset to
69  * the next entry and the 2nd byte is return value. */
70
71 #define NET_FLAG  1
72 #define HOST_FLAG 2
73
74 /* We remap '-' to '#' to avoid problems with getopt. */
75 static const char tbl_hash_net_host[] ALIGN1 =
76         "\007\001#net\0"
77 /*      "\010\002#host\0" */
78         "\007\002#host"                         /* Since last, we can save a byte. */
79 ;
80
81 #define KW_TAKES_ARG            020
82 #define KW_SETS_FLAG            040
83
84 #define KW_IPVx_METRIC          020
85 #define KW_IPVx_NETMASK         021
86 #define KW_IPVx_GATEWAY         022
87 #define KW_IPVx_MSS             023
88 #define KW_IPVx_WINDOW          024
89 #define KW_IPVx_IRTT            025
90 #define KW_IPVx_DEVICE          026
91
92 #define KW_IPVx_FLAG_ONLY       040
93 #define KW_IPVx_REJECT          040
94 #define KW_IPVx_MOD             041
95 #define KW_IPVx_DYN             042
96 #define KW_IPVx_REINSTATE       043
97
98 static const char tbl_ipvx[] ALIGN1 =
99         /* 020 is the "takes an arg" bit */
100 #if HAVE_NEW_ADDRT
101         "\011\020metric\0"
102 #endif
103         "\012\021netmask\0"
104         "\005\022gw\0"
105         "\012\022gateway\0"
106         "\006\023mss\0"
107         "\011\024window\0"
108 #ifdef RTF_IRTT
109         "\007\025irtt\0"
110 #endif
111         "\006\026dev\0"
112         "\011\026device\0"
113         /* 040 is the "sets a flag" bit - MUST match flags_ipvx[] values below. */
114 #ifdef RTF_REJECT
115         "\011\040reject\0"
116 #endif
117         "\006\041mod\0"
118         "\006\042dyn\0"
119 /*      "\014\043reinstate\0" */
120         "\013\043reinstate"                     /* Since last, we can save a byte. */
121 ;
122
123 static const int flags_ipvx[] = { /* MUST match tbl_ipvx[] values above. */
124 #ifdef RTF_REJECT
125         RTF_REJECT,
126 #endif
127         RTF_MODIFIED,
128         RTF_DYNAMIC,
129         RTF_REINSTATE
130 };
131
132 static int kw_lookup(const char *kwtbl, char ***pargs)
133 {
134         if (**pargs) {
135                 do {
136                         if (strcmp(kwtbl+2, **pargs) == 0) { /* Found a match. */
137                                 *pargs += 1;
138                                 if (kwtbl[1] & KW_TAKES_ARG) {
139                                         if (!**pargs) { /* No more args! */
140                                                 bb_show_usage();
141                                         }
142                                         *pargs += 1; /* Calling routine will use args[-1]. */
143                                 }
144                                 return kwtbl[1];
145                         }
146                         kwtbl += *kwtbl;
147                 } while (*kwtbl);
148         }
149         return 0;
150 }
151
152 /* Add or delete a route, depending on action. */
153
154 static NOINLINE void INET_setroute(int action, char **args)
155 {
156         /* char buffer instead of bona-fide struct avoids aliasing warning */
157         char rt_buf[sizeof(struct rtentry)];
158         struct rtentry *const rt = (void *)rt_buf;
159
160         const char *netmask = NULL;
161         int skfd, isnet, xflag;
162
163         /* Grab the -net or -host options.  Remember they were transformed. */
164         xflag = kw_lookup(tbl_hash_net_host, &args);
165
166         /* If we did grab -net or -host, make sure we still have an arg left. */
167         if (*args == NULL) {
168                 bb_show_usage();
169         }
170
171         /* Clean out the RTREQ structure. */
172         memset(rt, 0, sizeof(*rt));
173
174         {
175                 const char *target = *args++;
176                 char *prefix;
177
178                 /* recognize x.x.x.x/mask format. */
179                 prefix = strchr(target, '/');
180                 if (prefix) {
181                         int prefix_len;
182
183                         prefix_len = xatoul_range(prefix+1, 0, 32);
184                         mask_in_addr(*rt) = htonl( ~(0xffffffffUL >> prefix_len));
185                         *prefix = '\0';
186 #if HAVE_NEW_ADDRT
187                         rt->rt_genmask.sa_family = AF_INET;
188 #endif
189                 } else {
190                         /* Default netmask. */
191                         netmask = "default";
192                 }
193                 /* Prefer hostname lookup is -host flag (xflag==1) was given. */
194                 isnet = INET_resolve(target, (struct sockaddr_in *) &rt->rt_dst,
195                                                          (xflag & HOST_FLAG));
196                 if (isnet < 0) {
197                         bb_error_msg_and_die("resolving %s", target);
198                 }
199                 if (prefix) {
200                         /* do not destroy prefix for process args */
201                         *prefix = '/';
202                 }
203         }
204
205         if (xflag) {            /* Reinit isnet if -net or -host was specified. */
206                 isnet = (xflag & NET_FLAG);
207         }
208
209         /* Fill in the other fields. */
210         rt->rt_flags = ((isnet) ? RTF_UP : (RTF_UP | RTF_HOST));
211
212         while (*args) {
213                 int k = kw_lookup(tbl_ipvx, &args);
214                 const char *args_m1 = args[-1];
215
216                 if (k & KW_IPVx_FLAG_ONLY) {
217                         rt->rt_flags |= flags_ipvx[k & 3];
218                         continue;
219                 }
220
221 #if HAVE_NEW_ADDRT
222                 if (k == KW_IPVx_METRIC) {
223                         rt->rt_metric = xatoul(args_m1) + 1;
224                         continue;
225                 }
226 #endif
227
228                 if (k == KW_IPVx_NETMASK) {
229                         struct sockaddr mask;
230
231                         if (mask_in_addr(*rt)) {
232                                 bb_show_usage();
233                         }
234
235                         netmask = args_m1;
236                         isnet = INET_resolve(netmask, (struct sockaddr_in *) &mask, 0);
237                         if (isnet < 0) {
238                                 bb_error_msg_and_die("resolving %s", netmask);
239                         }
240                         rt->rt_genmask = full_mask(mask);
241                         continue;
242                 }
243
244                 if (k == KW_IPVx_GATEWAY) {
245                         if (rt->rt_flags & RTF_GATEWAY) {
246                                 bb_show_usage();
247                         }
248
249                         isnet = INET_resolve(args_m1,
250                                                 (struct sockaddr_in *) &rt->rt_gateway, 1);
251                         rt->rt_flags |= RTF_GATEWAY;
252
253                         if (isnet) {
254                                 if (isnet < 0) {
255                                         bb_error_msg_and_die("resolving %s", args_m1);
256                                 }
257                                 bb_error_msg_and_die("gateway %s is a NETWORK", args_m1);
258                         }
259                         continue;
260                 }
261
262                 if (k == KW_IPVx_MSS) { /* Check valid MSS bounds. */
263                         rt->rt_flags |= RTF_MSS;
264                         rt->rt_mss = xatoul_range(args_m1, 64, 32768);
265                         continue;
266                 }
267
268                 if (k == KW_IPVx_WINDOW) {      /* Check valid window bounds. */
269                         rt->rt_flags |= RTF_WINDOW;
270                         rt->rt_window = xatoul_range(args_m1, 128, INT_MAX);
271                         continue;
272                 }
273
274 #ifdef RTF_IRTT
275                 if (k == KW_IPVx_IRTT) {
276                         rt->rt_flags |= RTF_IRTT;
277                         rt->rt_irtt = xatoul(args_m1);
278                         rt->rt_irtt *= (sysconf(_SC_CLK_TCK) / 100);    /* FIXME */
279 #if 0                                   /* FIXME: do we need to check anything of this? */
280                         if (rt->rt_irtt < 1 || rt->rt_irtt > (120 * HZ)) {
281                                 bb_error_msg_and_die("bad irtt");
282                         }
283 #endif
284                         continue;
285                 }
286 #endif
287
288                 /* Device is special in that it can be the last arg specified
289                  * and doesn't requre the dev/device keyword in that case. */
290                 if (!rt->rt_dev && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
291                         /* Don't use args_m1 here since args may have changed! */
292                         rt->rt_dev = args[-1];
293                         continue;
294                 }
295
296                 /* Nothing matched. */
297                 bb_show_usage();
298         }
299
300 #ifdef RTF_REJECT
301         if ((rt->rt_flags & RTF_REJECT) && !rt->rt_dev) {
302                 rt->rt_dev = (char*)"lo";
303         }
304 #endif
305
306         /* sanity checks.. */
307         if (mask_in_addr(*rt)) {
308                 uint32_t mask = mask_in_addr(*rt);
309
310                 mask = ~ntohl(mask);
311                 if ((rt->rt_flags & RTF_HOST) && mask != 0xffffffff) {
312                         bb_error_msg_and_die("netmask %.8x and host route conflict",
313                                                                  (unsigned int) mask);
314                 }
315                 if (mask & (mask + 1)) {
316                         bb_error_msg_and_die("bogus netmask %s", netmask);
317                 }
318                 mask = ((struct sockaddr_in *) &rt->rt_dst)->sin_addr.s_addr;
319                 if (mask & ~(uint32_t)mask_in_addr(*rt)) {
320                         bb_error_msg_and_die("netmask and route address conflict");
321                 }
322         }
323
324         /* Fill out netmask if still unset */
325         if ((action == RTACTION_ADD) && (rt->rt_flags & RTF_HOST)) {
326                 mask_in_addr(*rt) = 0xffffffff;
327         }
328
329         /* Create a socket to the INET kernel. */
330         skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
331
332         if (action == RTACTION_ADD)
333                 xioctl(skfd, SIOCADDRT, rt);
334         else
335                 xioctl(skfd, SIOCDELRT, rt);
336
337         if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
338 }
339
340 #if ENABLE_FEATURE_IPV6
341
342 static NOINLINE void INET6_setroute(int action, char **args)
343 {
344         struct sockaddr_in6 sa6;
345         struct in6_rtmsg rt;
346         int prefix_len, skfd;
347         const char *devname;
348
349                 /* We know args isn't NULL from the check in route_main. */
350                 const char *target = *args++;
351
352                 if (strcmp(target, "default") == 0) {
353                         prefix_len = 0;
354                         memset(&sa6, 0, sizeof(sa6));
355                 } else {
356                         char *cp;
357                         cp = strchr(target, '/'); /* Yes... const to non is ok. */
358                         if (cp) {
359                                 *cp = '\0';
360                                 prefix_len = xatoul_range(cp + 1, 0, 128);
361                         } else {
362                                 prefix_len = 128;
363                         }
364                         if (INET6_resolve(target, (struct sockaddr_in6 *) &sa6) < 0) {
365                                 bb_error_msg_and_die("resolving %s", target);
366                         }
367                 }
368
369         /* Clean out the RTREQ structure. */
370         memset(&rt, 0, sizeof(rt));
371
372         memcpy(&rt.rtmsg_dst, sa6.sin6_addr.s6_addr, sizeof(struct in6_addr));
373
374         /* Fill in the other fields. */
375         rt.rtmsg_dst_len = prefix_len;
376         rt.rtmsg_flags = ((prefix_len == 128) ? (RTF_UP|RTF_HOST) : RTF_UP);
377         rt.rtmsg_metric = 1;
378
379         devname = NULL;
380
381         while (*args) {
382                 int k = kw_lookup(tbl_ipvx, &args);
383                 const char *args_m1 = args[-1];
384
385                 if ((k == KW_IPVx_MOD) || (k == KW_IPVx_DYN)) {
386                         rt.rtmsg_flags |= flags_ipvx[k & 3];
387                         continue;
388                 }
389
390                 if (k == KW_IPVx_METRIC) {
391                         rt.rtmsg_metric = xatoul(args_m1);
392                         continue;
393                 }
394
395                 if (k == KW_IPVx_GATEWAY) {
396                         if (rt.rtmsg_flags & RTF_GATEWAY) {
397                                 bb_show_usage();
398                         }
399
400                         if (INET6_resolve(args_m1, (struct sockaddr_in6 *) &sa6) < 0) {
401                                 bb_error_msg_and_die("resolving %s", args_m1);
402                         }
403                         memcpy(&rt.rtmsg_gateway, sa6.sin6_addr.s6_addr,
404                                    sizeof(struct in6_addr));
405                         rt.rtmsg_flags |= RTF_GATEWAY;
406                         continue;
407                 }
408
409                 /* Device is special in that it can be the last arg specified
410                  * and doesn't requre the dev/device keyword in that case. */
411                 if (!devname && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) {
412                         /* Don't use args_m1 here since args may have changed! */
413                         devname = args[-1];
414                         continue;
415                 }
416
417                 /* Nothing matched. */
418                 bb_show_usage();
419         }
420
421         /* Create a socket to the INET6 kernel. */
422         skfd = xsocket(AF_INET6, SOCK_DGRAM, 0);
423
424         rt.rtmsg_ifindex = 0;
425
426         if (devname) {
427                 struct ifreq ifr;
428                 memset(&ifr, 0, sizeof(ifr));
429                 strncpy_IFNAMSIZ(ifr.ifr_name, devname);
430                 xioctl(skfd, SIOGIFINDEX, &ifr);
431                 rt.rtmsg_ifindex = ifr.ifr_ifindex;
432         }
433
434         /* Tell the kernel to accept this route. */
435         if (action == RTACTION_ADD)
436                 xioctl(skfd, SIOCADDRT, &rt);
437         else
438                 xioctl(skfd, SIOCDELRT, &rt);
439
440         if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
441 }
442 #endif
443
444 static const unsigned flagvals[] = { /* Must agree with flagchars[]. */
445         RTF_GATEWAY,
446         RTF_HOST,
447         RTF_REINSTATE,
448         RTF_DYNAMIC,
449         RTF_MODIFIED,
450 #if ENABLE_FEATURE_IPV6
451         RTF_DEFAULT,
452         RTF_ADDRCONF,
453         RTF_CACHE
454 #endif
455 };
456
457 #define IPV4_MASK (RTF_GATEWAY|RTF_HOST|RTF_REINSTATE|RTF_DYNAMIC|RTF_MODIFIED)
458 #define IPV6_MASK (RTF_GATEWAY|RTF_HOST|RTF_DEFAULT|RTF_ADDRCONF|RTF_CACHE)
459
460 /* Must agree with flagvals[]. */
461 static const char flagchars[] ALIGN1 =
462         "GHRDM"
463 #if ENABLE_FEATURE_IPV6
464         "DAC"
465 #endif
466 ;
467
468 static void set_flags(char *flagstr, int flags)
469 {
470         int i;
471
472         *flagstr++ = 'U';
473
474         for (i = 0; (*flagstr = flagchars[i]) != 0; i++) {
475                 if (flags & flagvals[i]) {
476                         ++flagstr;
477                 }
478         }
479 }
480
481 /* also used in netstat */
482 void FAST_FUNC bb_displayroutes(int noresolve, int netstatfmt)
483 {
484         char devname[64], flags[16], *sdest, *sgw;
485         unsigned long d, g, m;
486         int flgs, ref, use, metric, mtu, win, ir;
487         struct sockaddr_in s_addr;
488         struct in_addr mask;
489
490         FILE *fp = xfopen_for_read("/proc/net/route");
491
492         printf("Kernel IP routing table\n"
493                "Destination     Gateway         Genmask         Flags %s Iface\n",
494                         netstatfmt ? "  MSS Window  irtt" : "Metric Ref    Use");
495
496         if (fscanf(fp, "%*[^\n]\n") < 0) { /* Skip the first line. */
497                 goto ERROR;                /* Empty or missing line, or read error. */
498         }
499         while (1) {
500                 int r;
501                 r = fscanf(fp, "%63s%lx%lx%X%d%d%d%lx%d%d%d\n",
502                                    devname, &d, &g, &flgs, &ref, &use, &metric, &m,
503                                    &mtu, &win, &ir);
504                 if (r != 11) {
505                         if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
506                                 break;
507                         }
508  ERROR:
509                         bb_error_msg_and_die("fscanf");
510                 }
511
512                 if (!(flgs & RTF_UP)) { /* Skip interfaces that are down. */
513                         continue;
514                 }
515
516                 set_flags(flags, (flgs & IPV4_MASK));
517 #ifdef RTF_REJECT
518                 if (flgs & RTF_REJECT) {
519                         flags[0] = '!';
520                 }
521 #endif
522
523                 memset(&s_addr, 0, sizeof(struct sockaddr_in));
524                 s_addr.sin_family = AF_INET;
525                 s_addr.sin_addr.s_addr = d;
526                 sdest = INET_rresolve(&s_addr, (noresolve | 0x8000), m); /* 'default' instead of '*' */
527                 s_addr.sin_addr.s_addr = g;
528                 sgw = INET_rresolve(&s_addr, (noresolve | 0x4000), m); /* Host instead of net */
529                 mask.s_addr = m;
530                 /* "%15.15s" truncates hostnames, do we really want that? */
531                 printf("%-15.15s %-15.15s %-16s%-6s", sdest, sgw, inet_ntoa(mask), flags);
532                 free(sdest);
533                 free(sgw);
534                 if (netstatfmt) {
535                         printf("%5d %-5d %6d %s\n", mtu, win, ir, devname);
536                 } else {
537                         printf("%-6d %-2d %7d %s\n", metric, ref, use, devname);
538                 }
539         }
540 }
541
542 #if ENABLE_FEATURE_IPV6
543
544 static void INET6_displayroutes(void)
545 {
546         char addr6[128], *naddr6;
547         /* In addr6x, we store both 40-byte ':'-delimited ipv6 addresses.
548          * We read the non-delimited strings into the tail of the buffer
549          * using fscanf and then modify the buffer by shifting forward
550          * while inserting ':'s and the nul terminator for the first string.
551          * Hence the strings are at addr6x and addr6x+40.  This generates
552          * _much_ less code than the previous (upstream) approach. */
553         char addr6x[80];
554         char iface[16], flags[16];
555         int iflags, metric, refcnt, use, prefix_len, slen;
556         struct sockaddr_in6 snaddr6;
557
558         FILE *fp = xfopen_for_read("/proc/net/ipv6_route");
559
560         printf("Kernel IPv6 routing table\n%-44s%-40s"
561                           "Flags Metric Ref    Use Iface\n",
562                           "Destination", "Next Hop");
563
564         while (1) {
565                 int r;
566                 r = fscanf(fp, "%32s%x%*s%x%32s%x%x%x%x%s\n",
567                                 addr6x+14, &prefix_len, &slen, addr6x+40+7,
568                                 &metric, &use, &refcnt, &iflags, iface);
569                 if (r != 9) {
570                         if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
571                                 break;
572                         }
573  ERROR:
574                         bb_error_msg_and_die("fscanf");
575                 }
576
577                 /* Do the addr6x shift-and-insert changes to ':'-delimit addresses.
578                  * For now, always do this to validate the proc route format, even
579                  * if the interface is down. */
580                 {
581                         int i = 0;
582                         char *p = addr6x+14;
583
584                         do {
585                                 if (!*p) {
586                                         if (i == 40) { /* nul terminator for 1st address? */
587                                                 addr6x[39] = 0; /* Fixup... need 0 instead of ':'. */
588                                                 ++p;    /* Skip and continue. */
589                                                 continue;
590                                         }
591                                         goto ERROR;
592                                 }
593                                 addr6x[i++] = *p++;
594                                 if (!((i+1) % 5)) {
595                                         addr6x[i++] = ':';
596                                 }
597                         } while (i < 40+28+7);
598                 }
599
600                 if (!(iflags & RTF_UP)) { /* Skip interfaces that are down. */
601                         continue;
602                 }
603
604                 set_flags(flags, (iflags & IPV6_MASK));
605
606                 r = 0;
607                 do {
608                         inet_pton(AF_INET6, addr6x + r,
609                                           (struct sockaddr *) &snaddr6.sin6_addr);
610                         snaddr6.sin6_family = AF_INET6;
611                         naddr6 = INET6_rresolve((struct sockaddr_in6 *) &snaddr6,
612                                                    0x0fff /* Apparently, upstream never resolves. */
613                                                    );
614
615                         if (!r) {                       /* 1st pass */
616                                 snprintf(addr6, sizeof(addr6), "%s/%d", naddr6, prefix_len);
617                                 r += 40;
618                                 free(naddr6);
619                         } else {                        /* 2nd pass */
620                                 /* Print the info. */
621                                 printf("%-43s %-39s %-5s %-6d %-2d %7d %-8s\n",
622                                                 addr6, naddr6, flags, metric, refcnt, use, iface);
623                                 free(naddr6);
624                                 break;
625                         }
626                 } while (1);
627         }
628 }
629
630 #endif
631
632 #define ROUTE_OPT_A     0x01
633 #define ROUTE_OPT_n     0x02
634 #define ROUTE_OPT_e     0x04
635 #define ROUTE_OPT_INET6 0x08 /* Not an actual option. See below. */
636
637 /* 1st byte is offset to next entry offset.  2nd byte is return value. */
638 /* 2nd byte matches RTACTION_* code */
639 static const char tbl_verb[] ALIGN1 =
640         "\006\001add\0"
641         "\006\002del\0"
642 /*      "\011\002delete\0" */
643         "\010\002delete"  /* Since it's last, we can save a byte. */
644 ;
645
646 int route_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
647 int route_main(int argc UNUSED_PARAM, char **argv)
648 {
649         unsigned opt;
650         int what;
651         char *family;
652         char **p;
653
654         /* First, remap '-net' and '-host' to avoid getopt problems. */
655         p = argv;
656         while (*++p) {
657                 if (strcmp(*p, "-net") == 0 || strcmp(*p, "-host") == 0) {
658                         p[0][0] = '#';
659                 }
660         }
661
662         opt = getopt32(argv, "A:ne", &family);
663
664         if ((opt & ROUTE_OPT_A) && strcmp(family, "inet") != 0) {
665 #if ENABLE_FEATURE_IPV6
666                 if (strcmp(family, "inet6") == 0) {
667                         opt |= ROUTE_OPT_INET6; /* Set flag for ipv6. */
668                 } else
669 #endif
670                 bb_show_usage();
671         }
672
673         argv += optind;
674
675         /* No more args means display the routing table. */
676         if (!*argv) {
677                 int noresolve = (opt & ROUTE_OPT_n) ? 0x0fff : 0;
678 #if ENABLE_FEATURE_IPV6
679                 if (opt & ROUTE_OPT_INET6)
680                         INET6_displayroutes();
681                 else
682 #endif
683                         bb_displayroutes(noresolve, opt & ROUTE_OPT_e);
684
685                 fflush_stdout_and_exit(EXIT_SUCCESS);
686         }
687
688         /* Check verb.  At the moment, must be add, del, or delete. */
689         what = kw_lookup(tbl_verb, &argv);
690         if (!what || !*argv) {          /* Unknown verb or no more args. */
691                 bb_show_usage();
692         }
693
694 #if ENABLE_FEATURE_IPV6
695         if (opt & ROUTE_OPT_INET6)
696                 INET6_setroute(what, argv);
697         else
698 #endif
699                 INET_setroute(what, argv);
700
701         return EXIT_SUCCESS;
702 }