- sed -i -e "/\$Id:/d;"
[oweals/busybox.git] / networking / route.c
index 062ba8a1329e48d808ac3e5cdaed48002d04fee2..56c6f46c604160746023464c01255d954073bba3 100644 (file)
@@ -12,7 +12,6 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  *
- * $Id: route.c,v 1.26 2004/03/19 23:27:08 mjn3 Exp $
  *
  * displayroute() code added by Vladimir N. Oleynik <dzo@simtreas.ru>
  * adjustments by Larry Doolittle  <LRDoolittle@lbl.gov>
  * remove ridiculous amounts of bloat.
  */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <errno.h>
-#include <assert.h>
-#include <unistd.h>
-#include <fcntl.h>
+#include "busybox.h"
+#include "inet_common.h"
 #include <getopt.h>
-#include <sys/types.h>
-#include <sys/ioctl.h>
 #include <net/route.h>
 #include <net/if.h>
-#include "busybox.h"
-#include "inet_common.h"
+
 
 #ifndef RTF_UP
 /* Keep this in sync with /usr/src/linux/include/linux/route.h */
 #endif
 
 /* The RTACTION entries must agree with tbl_verb[] below! */
-#define RTACTION_ADD           1
-#define RTACTION_DEL           2
+#define RTACTION_ADD 1
+#define RTACTION_DEL 2
 
 /* For the various tbl_*[] arrays, the 1st byte is the offset to
  * the next entry and the 2nd byte is return value. */
 
-#define NET_FLAG                       1
-#define HOST_FLAG                      2
+#define NET_FLAG  1
+#define HOST_FLAG 2
 
 /* We remap '-' to '#' to avoid problems with getopt. */
 static const char tbl_hash_net_host[] =
@@ -87,22 +78,22 @@ static const char tbl_hash_net_host[] =
        "\007\002#host"                         /* Since last, we can save a byte. */
 ;
 
-#define KW_TAKES_ARG           020
-#define KW_SETS_FLAG           040
+#define KW_TAKES_ARG            020
+#define KW_SETS_FLAG            040
 
-#define KW_IPVx_METRIC         020
-#define KW_IPVx_NETMASK                021
-#define KW_IPVx_GATEWAY                022
-#define KW_IPVx_MSS                    023
-#define KW_IPVx_WINDOW         024
-#define KW_IPVx_IRTT           025
-#define KW_IPVx_DEVICE         026
+#define KW_IPVx_METRIC          020
+#define KW_IPVx_NETMASK         021
+#define KW_IPVx_GATEWAY         022
+#define KW_IPVx_MSS             023
+#define KW_IPVx_WINDOW          024
+#define KW_IPVx_IRTT            025
+#define KW_IPVx_DEVICE          026
 
-#define KW_IPVx_FLAG_ONLY      040
-#define KW_IPVx_REJECT         040
-#define KW_IPVx_MOD                    041
-#define KW_IPVx_DYN                    042
-#define KW_IPVx_REINSTATE      043
+#define KW_IPVx_FLAG_ONLY       040
+#define KW_IPVx_REJECT          040
+#define KW_IPVx_MOD             041
+#define KW_IPVx_DYN             042
+#define KW_IPVx_REINSTATE       043
 
 static const char tbl_ipvx[] =
        /* 020 is the "takes an arg" bit */
@@ -166,8 +157,6 @@ static void INET_setroute(int action, char **args)
        const char *netmask = NULL;
        int skfd, isnet, xflag;
 
-       assert((action == RTACTION_ADD) || (action == RTACTION_DEL));
-
        /* Grab the -net or -host options.  Remember they were transformed. */
        xflag = kw_lookup(tbl_hash_net_host, &args);
 
@@ -177,7 +166,7 @@ static void INET_setroute(int action, char **args)
        }
 
        /* Clean out the RTREQ structure. */
-       memset((char *) &rt, 0, sizeof(struct rtentry));
+       memset(&rt, 0, sizeof(rt));
 
        {
                const char *target = *args++;
@@ -188,7 +177,7 @@ static void INET_setroute(int action, char **args)
                if(prefix) {
                        int prefix_len;
 
-                       prefix_len = bb_xgetularg10_bnd(prefix+1, 0, 32);
+                       prefix_len = xatoul_range(prefix+1, 0, 32);
                        mask_in_addr(rt) = htonl( ~ (0xffffffffUL >> prefix_len));
                        *prefix = '\0';
 #if HAVE_NEW_ADDRT
@@ -196,7 +185,7 @@ static void INET_setroute(int action, char **args)
 #endif
                } else {
                        /* Default netmask. */
-                       netmask = bb_INET_default;
+                       netmask = bb_str_default;
                }
                /* Prefer hostname lookup is -host flag (xflag==1) was given. */
                isnet = INET_resolve(target, (struct sockaddr_in *) &rt.rt_dst,
@@ -228,7 +217,7 @@ static void INET_setroute(int action, char **args)
 
 #if HAVE_NEW_ADDRT
                if (k == KW_IPVx_METRIC) {
-                       rt.rt_metric = bb_xgetularg10(args_m1) + 1;
+                       rt.rt_metric = xatoul(args_m1) + 1;
                        continue;
                }
 #endif
@@ -269,20 +258,20 @@ static void INET_setroute(int action, char **args)
 
                if (k == KW_IPVx_MSS) { /* Check valid MSS bounds. */
                        rt.rt_flags |= RTF_MSS;
-                       rt.rt_mss = bb_xgetularg10_bnd(args_m1, 64, 32768);
+                       rt.rt_mss = xatoul_range(args_m1, 64, 32768);
                        continue;
                }
 
                if (k == KW_IPVx_WINDOW) {      /* Check valid window bounds. */
                        rt.rt_flags |= RTF_WINDOW;
-                       rt.rt_window = bb_xgetularg10_bnd(args_m1, 128, INT_MAX);
+                       rt.rt_window = xatoul_range(args_m1, 128, INT_MAX);
                        continue;
                }
 
 #ifdef RTF_IRTT
                if (k == KW_IPVx_IRTT) {
                        rt.rt_flags |= RTF_IRTT;
-                       rt.rt_irtt = bb_xgetularg10(args_m1);
+                       rt.rt_irtt = xatoul(args_m1);
                        rt.rt_irtt *= (sysconf(_SC_CLK_TCK) / 100);     /* FIXME */
 #if 0                                  /* FIXME: do we need to check anything of this? */
                        if (rt.rt_irtt < 1 || rt.rt_irtt > (120 * HZ)) {
@@ -335,7 +324,7 @@ static void INET_setroute(int action, char **args)
        }
 
        /* Create a socket to the INET kernel. */
-       skfd = bb_xsocket(AF_INET, SOCK_DGRAM, 0);
+       skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
 
        if (ioctl(skfd, ((action==RTACTION_ADD) ? SIOCADDRT : SIOCDELRT), &rt)<0) {
                bb_perror_msg_and_die("SIOC[ADD|DEL]RT");
@@ -344,7 +333,7 @@ static void INET_setroute(int action, char **args)
        if (ENABLE_FEATURE_CLEAN_UP) close(skfd);
 }
 
-#ifdef CONFIG_FEATURE_IPV6
+#if ENABLE_FEATURE_IPV6
 
 static void INET6_setroute(int action, char **args)
 {
@@ -353,20 +342,17 @@ static void INET6_setroute(int action, char **args)
        int prefix_len, skfd;
        const char *devname;
 
-       assert((action == RTACTION_ADD) || (action == RTACTION_DEL));
-
-       {
                /* We know args isn't NULL from the check in route_main. */
                const char *target = *args++;
 
-               if (strcmp(target, bb_INET_default) == 0) {
+               if (strcmp(target, bb_str_default) == 0) {
                        prefix_len = 0;
                        memset(&sa6, 0, sizeof(sa6));
                } else {
                        char *cp;
                        if ((cp = strchr(target, '/'))) { /* Yes... const to non is ok. */
                                *cp = 0;
-                               prefix_len = bb_xgetularg10_bnd(cp+1, 0, 128);
+                               prefix_len = xatoul_range(cp+1, 0, 128);
                        } else {
                                prefix_len = 128;
                        }
@@ -374,10 +360,9 @@ static void INET6_setroute(int action, char **args)
                                bb_error_msg_and_die("resolving %s", target);
                        }
                }
-       }
 
        /* Clean out the RTREQ structure. */
-       memset((char *) &rt, 0, sizeof(struct in6_rtmsg));
+       memset(&rt, 0, sizeof(rt));
 
        memcpy(&rt.rtmsg_dst, sa6.sin6_addr.s6_addr, sizeof(struct in6_addr));
 
@@ -398,7 +383,7 @@ static void INET6_setroute(int action, char **args)
                }
 
                if (k == KW_IPVx_METRIC) {
-                       rt.rtmsg_metric = bb_xgetularg10(args_m1);
+                       rt.rtmsg_metric = xatoul(args_m1);
                        continue;
                }
 
@@ -429,14 +414,14 @@ static void INET6_setroute(int action, char **args)
        }
 
        /* Create a socket to the INET6 kernel. */
-       skfd = bb_xsocket(AF_INET6, SOCK_DGRAM, 0);
+       skfd = xsocket(AF_INET6, SOCK_DGRAM, 0);
 
        rt.rtmsg_ifindex = 0;
 
        if (devname) {
                struct ifreq ifr;
                memset(&ifr, 0, sizeof(ifr));
-               strcpy(ifr.ifr_name, devname);
+               strncpy(ifr.ifr_name, devname, sizeof(ifr.ifr_name));
 
                if (ioctl(skfd, SIOGIFINDEX, &ifr) < 0) {
                        bb_perror_msg_and_die("SIOGIFINDEX");
@@ -459,7 +444,7 @@ static const unsigned int flagvals[] = { /* Must agree with flagchars[]. */
        RTF_REINSTATE,
        RTF_DYNAMIC,
        RTF_MODIFIED,
-#ifdef CONFIG_FEATURE_IPV6
+#if ENABLE_FEATURE_IPV6
        RTF_DEFAULT,
        RTF_ADDRCONF,
        RTF_CACHE
@@ -471,22 +456,18 @@ static const unsigned int flagvals[] = { /* Must agree with flagchars[]. */
 
 static const char flagchars[] =                /* Must agree with flagvals[]. */
        "GHRDM"
-#ifdef CONFIG_FEATURE_IPV6
+#if ENABLE_FEATURE_IPV6
        "DAC"
 #endif
 ;
 
-static
-#ifndef CONFIG_FEATURE_IPV6
-__inline
-#endif
-void set_flags(char *flagstr, int flags)
+static void set_flags(char *flagstr, int flags)
 {
        int i;
 
        *flagstr++ = 'U';
 
-       for (i=0 ; (*flagstr = flagchars[i]) != 0 ; i++) {
+       for (i = 0; (*flagstr = flagchars[i]) != 0; i++) {
                if (flags & flagvals[i]) {
                        ++flagstr;
                }
@@ -494,8 +475,7 @@ void set_flags(char *flagstr, int flags)
 }
 
 /* also used in netstat */
-void displayroutes(int noresolve, int netstatfmt);
-void displayroutes(int noresolve, int netstatfmt)
+void bb_displayroutes(int noresolve, int netstatfmt)
 {
        char devname[64], flags[16], sdest[16], sgw[16];
        unsigned long int d, g, m;
@@ -503,12 +483,11 @@ void displayroutes(int noresolve, int netstatfmt)
        struct sockaddr_in s_addr;
        struct in_addr mask;
 
-       FILE *fp = bb_xfopen("/proc/net/route", "r");
+       FILE *fp = xfopen("/proc/net/route", "r");
 
-       bb_printf("Kernel IP routing table\n"
-                         "Destination     Gateway         Genmask"
-                         "         Flags %s Iface\n",
-                         netstatfmt ? "  MSS Window  irtt" : "Metric Ref    Use");
+       printf("Kernel IP routing table\n"
+              "Destination     Gateway         Genmask         Flags %s Iface\n",
+                       netstatfmt ? "  MSS Window  irtt" : "Metric Ref    Use");
 
        if (fscanf(fp, "%*[^\n]\n") < 0) { /* Skip the first line. */
                goto ERROR;                /* Empty or missing line, or read error. */
@@ -522,7 +501,7 @@ void displayroutes(int noresolve, int netstatfmt)
                        if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
                                break;
                        }
              ERROR:
+ ERROR:
                        bb_error_msg_and_die("fscanf");
                }
 
@@ -548,16 +527,16 @@ void displayroutes(int noresolve, int netstatfmt)
                                          (noresolve | 0x4000), m);     /* Host instead of net. */
 
                mask.s_addr = m;
-               bb_printf("%-16s%-16s%-16s%-6s", sdest, sgw, inet_ntoa(mask), flags);
+               printf("%-16s%-16s%-16s%-6s", sdest, sgw, inet_ntoa(mask), flags);
                if (netstatfmt) {
-                       bb_printf("%5d %-5d %6d %s\n", mtu, win, ir, devname);
+                       printf("%5d %-5d %6d %s\n", mtu, win, ir, devname);
                } else {
-                       bb_printf("%-6d %-2d %7d %s\n", metric, ref, use, devname);
+                       printf("%-6d %-2d %7d %s\n", metric, ref, use, devname);
                }
        }
 }
 
-#ifdef CONFIG_FEATURE_IPV6
+#if ENABLE_FEATURE_IPV6
 
 static void INET6_displayroutes(int noresolve)
 {
@@ -573,9 +552,9 @@ static void INET6_displayroutes(int noresolve)
        int iflags, metric, refcnt, use, prefix_len, slen;
        struct sockaddr_in6 snaddr6;
 
-       FILE *fp = bb_xfopen("/proc/net/ipv6_route", "r");
+       FILE *fp = xfopen("/proc/net/ipv6_route", "r");
 
-       bb_printf("Kernel IPv6 routing table\n%-44s%-40s"
+       printf("Kernel IPv6 routing table\n%-44s%-40s"
                          "Flags Metric Ref    Use Iface\n",
                          "Destination", "Next Hop");
 
@@ -588,7 +567,7 @@ static void INET6_displayroutes(int noresolve)
                        if ((r < 0) && feof(fp)) { /* EOF with no (nonspace) chars read. */
                                break;
                        }
              ERROR:
+ ERROR:
                        bb_error_msg_and_die("fscanf");
                }
 
@@ -609,7 +588,7 @@ static void INET6_displayroutes(int noresolve)
                                        goto ERROR;
                                }
                                addr6x[i++] = *p++;
-                               if (!((i+1)%5)) {
+                               if (!((i+1) % 5)) {
                                        addr6x[i++] = ':';
                                }
                        } while (i < 40+28+7);
@@ -628,11 +607,7 @@ static void INET6_displayroutes(int noresolve)
                        snaddr6.sin6_family = AF_INET6;
                        INET6_rresolve(naddr6, sizeof(naddr6),
                                                   (struct sockaddr_in6 *) &snaddr6,
-#if 0
-                                                  (noresolve | 0x8000) /* Default instead of *. */
-#else
                                                   0x0fff /* Apparently, upstream never resolves. */
-#endif
                                                   );
 
                        if (!r) {                       /* 1st pass */
@@ -640,7 +615,7 @@ static void INET6_displayroutes(int noresolve)
                                r += 40;
                        } else {                        /* 2nd pass */
                                /* Print the info. */
-                               bb_printf("%-43s %-39s %-5s %-6d %-2d %7d %-8s\n",
+                               printf("%-43s %-39s %-5s %-6d %-2d %7d %-8s\n",
                                                  addr6, naddr6, flags, metric, refcnt, use, iface);
                                break;
                        }
@@ -650,10 +625,10 @@ static void INET6_displayroutes(int noresolve)
 
 #endif
 
-#define ROUTE_OPT_A                    0x01
-#define ROUTE_OPT_n                    0x02
-#define ROUTE_OPT_e                    0x04
-#define ROUTE_OPT_INET6                0x08 /* Not an actual option. See below. */
+#define ROUTE_OPT_A     0x01
+#define ROUTE_OPT_n     0x02
+#define ROUTE_OPT_e     0x04
+#define ROUTE_OPT_INET6 0x08 /* Not an actual option. See below. */
 
 /* 1st byte is offset to next entry offset.  2nd byte is return value. */
 static const char tbl_verb[] = /* 2nd byte matches RTACTION_* code */
@@ -665,25 +640,23 @@ static const char tbl_verb[] =    /* 2nd byte matches RTACTION_* code */
 
 int route_main(int argc, char **argv)
 {
-       unsigned long opt;
+       unsigned opt;
        int what;
        char *family;
+       char **p;
 
        /* First, remap '-net' and '-host' to avoid getopt problems. */
-       {
-               char **p = argv;
-
-               while (*++p) {
-                       if ((strcmp(*p, "-net") == 0) || (strcmp(*p, "-host") == 0)) {
-                               p[0][0] = '#';
-                       }
+       p = argv;
+       while (*++p) {
+               if (strcmp(*p, "-net") == 0 || strcmp(*p, "-host") == 0) {
+                       p[0][0] = '#';
                }
        }
 
-       opt = bb_getopt_ulflags(argc, argv, "A:ne", &family);
+       opt = getopt32(argc, argv, "A:ne", &family);
 
-       if ((opt & ROUTE_OPT_A) && strcmp(family, "inet")) {
-#ifdef CONFIG_FEATURE_IPV6
+       if ((opt & ROUTE_OPT_A) && strcmp(family, "inet") != 0) {
+#if ENABLE_FEATURE_IPV6
                if (strcmp(family, "inet6") == 0) {
                        opt |= ROUTE_OPT_INET6; /* Set flag for ipv6. */
                } else
@@ -696,15 +669,14 @@ int route_main(int argc, char **argv)
        /* No more args means display the routing table. */
        if (!*argv) {
                int noresolve = (opt & ROUTE_OPT_n) ? 0x0fff : 0;
-#ifdef CONFIG_FEATURE_IPV6
+#if ENABLE_FEATURE_IPV6
                if (opt & ROUTE_OPT_INET6)
                        INET6_displayroutes(noresolve);
                else
 #endif
-                       displayroutes(noresolve, opt & ROUTE_OPT_e);
+                       bb_displayroutes(noresolve, opt & ROUTE_OPT_e);
 
-               bb_xferror_stdout();
-               bb_fflush_stdout_and_exit(EXIT_SUCCESS);
+               fflush_stdout_and_exit(EXIT_SUCCESS);
        }
 
        /* Check verb.  At the moment, must be add, del, or delete. */
@@ -713,7 +685,7 @@ int route_main(int argc, char **argv)
                bb_show_usage();
        }
 
-#ifdef CONFIG_FEATURE_IPV6
+#if ENABLE_FEATURE_IPV6
        if (opt & ROUTE_OPT_INET6)
                INET6_setroute(what, argv);
        else