Remove code for protocols we don't properly support. (Most of this could
[oweals/busybox.git] / networking / nameif.c
index 10f13b4bcda72b28d93fc7e7e25315e363111d66..f28e5ebe33c02c27a164807a3588b32ac07b6600 100644 (file)
@@ -5,31 +5,16 @@
  * Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua>
  *                     Glenn McGrath <bug1@iinet.net.au>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- * 02111-1307 USA
- *
+ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  */
 
-
 #include <sys/syslog.h>
 #include <sys/socket.h>
 #include <sys/ioctl.h>
 #include <errno.h>
-#include <getopt.h>
 #include <stdlib.h>
 #include <string.h>
+#include <unistd.h>
 #include <net/if.h>
 #include <netinet/ether.h>
 
@@ -61,9 +46,9 @@ typedef struct mactable_s {
        struct ether_addr *mac;
 } mactable_t;
 
-static unsigned char use_syslog;
+static unsigned long flags;
 
-static void serror(const char *s, ...) __attribute__ ((noreturn));
+static void serror(const char *s, ...) ATTRIBUTE_NORETURN;
 
 static void serror(const char *s, ...)
 {
@@ -71,7 +56,7 @@ static void serror(const char *s, ...)
 
        va_start(ap, s);
 
-       if (use_syslog) {
+       if (flags & 1) {
                openlog(bb_applet_name, 0, LOG_LOCAL0);
                vsyslog(LOG_ERR, s, ap);
                closelog();
@@ -79,14 +64,13 @@ static void serror(const char *s, ...)
                bb_verror_msg(s, ap);
                putc('\n', stderr);
        }
-
        va_end(ap);
 
        exit(EXIT_FAILURE);
 }
 
 /* Check ascii str_macaddr, convert and copy to *mac */
-struct ether_addr *cc_macaddr(char *str_macaddr)
+static struct ether_addr *cc_macaddr(const char *str_macaddr)
 {
        struct ether_addr *lmac, *mac;
 
@@ -106,23 +90,10 @@ int nameif_main(int argc, char **argv)
        const char *fname = "/etc/mactab";
        char *line;
        int ctl_sk;
-       int opt;
        int if_index = 1;
        mactable_t *ch;
 
-
-       while ((opt = getopt(argc, argv, "c:s")) != -1) {
-               switch (opt) {
-               case 'c':
-                       fname = optarg;
-                       break;
-               case 's':
-                       use_syslog = 1;
-                       break;
-               default:
-                       bb_show_usage();
-               }
-       }
+       flags = bb_getopt_ulflags(argc, argv, "sc:", &fname);
 
        if ((argc - optind) & 1)
                bb_show_usage();
@@ -150,8 +121,10 @@ int nameif_main(int argc, char **argv)
                        size_t name_length;
 
                        line_ptr = line + strspn(line, " \t");
-                       if ((line_ptr[0] == '#') || (line_ptr[0] == '\n'))
+                       if ((line_ptr[0] == '#') || (line_ptr[0] == '\n')) {
+                               free(line);
                                continue;
+                       }
                        name_length = strcspn(line_ptr, " \t");
                        ch = xcalloc(1, sizeof(mactable_t));
                        ch->ifname = bb_xstrndup(line_ptr, name_length);
@@ -177,7 +150,7 @@ int nameif_main(int argc, char **argv)
        while (clist) {
                struct ifreq ifr;
 
-               bzero(&ifr, sizeof(struct ifreq));
+               memset(&ifr, 0, sizeof(struct ifreq));
                if_index++;
                ifr.ifr_ifindex = if_index;