2a56da56117cb58c3aed42bd373eb5b8908ebb95
[oweals/busybox.git] / networking / ifconfig.c
1 /* vi: set sw=4 ts=4: */
2 /* ifconfig
3  *
4  * Similar to the standard Unix ifconfig, but with only the necessary
5  * parts for AF_INET, and without any printing of if info (for now).
6  *
7  * Bjorn Wesen, Axis Communications AB
8  *
9  *
10  * Authors of the original ifconfig was:
11  *              Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
12  *
13  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
14  */
15
16 /*
17  * Heavily modified by Manuel Novoa III       Mar 6, 2001
18  *
19  * From initial port to busybox, removed most of the redundancy by
20  * converting to a table-driven approach.  Added several (optional)
21  * args missing from initial port.
22  *
23  * Still missing:  media, tunnel.
24  *
25  * 2002-04-20
26  * IPV6 support added by Bart Visscher <magick@linux-fan.com>
27  */
28
29 //usage:#define ifconfig_trivial_usage
30 //usage:        IF_FEATURE_IFCONFIG_STATUS("[-a]") " interface [address]"
31 //usage:#define ifconfig_full_usage "\n\n"
32 //usage:       "Configure a network interface\n"
33 //usage:     "\n"
34 //usage:        IF_FEATURE_IPV6(
35 //usage:       "        [add ADDRESS[/PREFIXLEN]]\n")
36 //usage:        IF_FEATURE_IPV6(
37 //usage:       "        [del ADDRESS[/PREFIXLEN]]\n")
38 //usage:       "        [[-]broadcast [ADDRESS]] [[-]pointopoint [ADDRESS]]\n"
39 //usage:       "        [netmask ADDRESS] [dstaddr ADDRESS]\n"
40 //usage:        IF_FEATURE_IFCONFIG_SLIP(
41 //usage:       "        [outfill NN] [keepalive NN]\n")
42 //usage:       "        " IF_FEATURE_IFCONFIG_HW("[hw ether" IF_FEATURE_HWIB("|infiniband")" ADDRESS] ") "[metric NN] [mtu NN]\n"
43 //usage:       "        [[-]trailers] [[-]arp] [[-]allmulti]\n"
44 //usage:       "        [multicast] [[-]promisc] [txqueuelen NN] [[-]dynamic]\n"
45 //usage:        IF_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ(
46 //usage:       "        [mem_start NN] [io_addr NN] [irq NN]\n")
47 //usage:       "        [up|down] ..."
48
49 #include <net/if.h>
50 #include <net/if_arp.h>
51 #include <netinet/in.h>
52 #if defined(__GLIBC__) && __GLIBC__ >=2 && __GLIBC_MINOR__ >= 1
53 #include <netpacket/packet.h>
54 #include <net/ethernet.h>
55 #else
56 #include <sys/types.h>
57 #include <netinet/if_ether.h>
58 #endif
59 #include "libbb.h"
60 #include "inet_common.h"
61
62 #if ENABLE_FEATURE_IFCONFIG_SLIP
63 # include <net/if_slip.h>
64 #endif
65
66 /* I don't know if this is needed for busybox or not.  Anyone? */
67 #define QUESTIONABLE_ALIAS_CASE
68
69
70 /* Defines for glibc2.0 users. */
71 #ifndef SIOCSIFTXQLEN
72 # define SIOCSIFTXQLEN      0x8943
73 # define SIOCGIFTXQLEN      0x8942
74 #endif
75
76 /* ifr_qlen is ifru_ivalue, but it isn't present in 2.0 kernel headers */
77 #ifndef ifr_qlen
78 # define ifr_qlen        ifr_ifru.ifru_mtu
79 #endif
80
81 #ifndef IFF_DYNAMIC
82 # define IFF_DYNAMIC     0x8000 /* dialup device with changing addresses */
83 #endif
84
85 #if ENABLE_FEATURE_IPV6
86 struct in6_ifreq {
87         struct in6_addr ifr6_addr;
88         uint32_t ifr6_prefixlen;
89         int ifr6_ifindex;
90 };
91 #endif
92
93 /*
94  * Here are the bit masks for the "flags" member of struct options below.
95  * N_ signifies no arg prefix; M_ signifies arg prefixed by '-'.
96  * CLR clears the flag; SET sets the flag; ARG signifies (optional) arg.
97  */
98 #define N_CLR            0x01
99 #define M_CLR            0x02
100 #define N_SET            0x04
101 #define M_SET            0x08
102 #define N_ARG            0x10
103 #define M_ARG            0x20
104
105 #define M_MASK           (M_CLR | M_SET | M_ARG)
106 #define N_MASK           (N_CLR | N_SET | N_ARG)
107 #define SET_MASK         (N_SET | M_SET)
108 #define CLR_MASK         (N_CLR | M_CLR)
109 #define SET_CLR_MASK     (SET_MASK | CLR_MASK)
110 #define ARG_MASK         (M_ARG | N_ARG)
111
112 /*
113  * Here are the bit masks for the "arg_flags" member of struct options below.
114  */
115
116 /*
117  * cast type:
118  *   00 int
119  *   01 char *
120  *   02 HOST_COPY in_ether
121  *   03 HOST_COPY INET_resolve
122  */
123 #define A_CAST_TYPE      0x03
124 /*
125  * map type:
126  *   00 not a map type (mem_start, io_addr, irq)
127  *   04 memstart (unsigned long)
128  *   08 io_addr  (unsigned short)
129  *   0C irq      (unsigned char)
130  */
131 #define A_MAP_TYPE       0x0C
132 #define A_ARG_REQ        0x10   /* Set if an arg is required. */
133 #define A_NETMASK        0x20   /* Set if netmask (check for multiple sets). */
134 #define A_SET_AFTER      0x40   /* Set a flag at the end. */
135 #define A_COLON_CHK      0x80   /* Is this needed?  See below. */
136 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
137 #define A_HOSTNAME      0x100   /* Set if it is ip addr. */
138 #define A_BROADCAST     0x200   /* Set if it is broadcast addr. */
139 #else
140 #define A_HOSTNAME          0
141 #define A_BROADCAST         0
142 #endif
143
144 /*
145  * These defines are for dealing with the A_CAST_TYPE field.
146  */
147 #define A_CAST_CHAR_PTR  0x01
148 #define A_CAST_RESOLVE   0x01
149 #define A_CAST_HOST_COPY 0x02
150 #define A_CAST_HOST_COPY_IN_ETHER    A_CAST_HOST_COPY
151 #define A_CAST_HOST_COPY_RESOLVE     (A_CAST_HOST_COPY | A_CAST_RESOLVE)
152
153 /*
154  * These defines are for dealing with the A_MAP_TYPE field.
155  */
156 #define A_MAP_ULONG      0x04   /* memstart */
157 #define A_MAP_USHORT     0x08   /* io_addr */
158 #define A_MAP_UCHAR      0x0C   /* irq */
159
160 /*
161  * Define the bit masks signifying which operations to perform for each arg.
162  */
163
164 #define ARG_METRIC       (A_ARG_REQ /*| A_CAST_INT*/)
165 #define ARG_MTU          (A_ARG_REQ /*| A_CAST_INT*/)
166 #define ARG_TXQUEUELEN   (A_ARG_REQ /*| A_CAST_INT*/)
167 #define ARG_MEM_START    (A_ARG_REQ | A_MAP_ULONG)
168 #define ARG_IO_ADDR      (A_ARG_REQ | A_MAP_ULONG)
169 #define ARG_IRQ          (A_ARG_REQ | A_MAP_UCHAR)
170 #define ARG_DSTADDR      (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE)
171 #define ARG_NETMASK      (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_NETMASK)
172 #define ARG_BROADCAST    (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER | A_BROADCAST)
173 #define ARG_HW           (A_ARG_REQ | A_CAST_HOST_COPY_IN_ETHER)
174 #define ARG_POINTOPOINT  (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER)
175 #define ARG_KEEPALIVE    (A_ARG_REQ | A_CAST_CHAR_PTR)
176 #define ARG_OUTFILL      (A_ARG_REQ | A_CAST_CHAR_PTR)
177 #define ARG_HOSTNAME     (A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER | A_COLON_CHK | A_HOSTNAME)
178 #define ARG_ADD_DEL      (A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER)
179
180
181 /*
182  * Set up the tables.  Warning!  They must have corresponding order!
183  */
184
185 struct arg1opt {
186         const char *name;
187         unsigned short selector;
188         unsigned short ifr_offset;
189 };
190
191 struct options {
192         const char *name;
193 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
194         const unsigned int flags:6;
195         const unsigned int arg_flags:10;
196 #else
197         const unsigned char flags;
198         const unsigned char arg_flags;
199 #endif
200         const unsigned short selector;
201 };
202
203 #define ifreq_offsetof(x)  offsetof(struct ifreq, x)
204
205 static const struct arg1opt Arg1Opt[] = {
206         { "SIFMETRIC",  SIOCSIFMETRIC,  ifreq_offsetof(ifr_metric) },
207         { "SIFMTU",     SIOCSIFMTU,     ifreq_offsetof(ifr_mtu) },
208         { "SIFTXQLEN",  SIOCSIFTXQLEN,  ifreq_offsetof(ifr_qlen) },
209         { "SIFDSTADDR", SIOCSIFDSTADDR, ifreq_offsetof(ifr_dstaddr) },
210         { "SIFNETMASK", SIOCSIFNETMASK, ifreq_offsetof(ifr_netmask) },
211         { "SIFBRDADDR", SIOCSIFBRDADDR, ifreq_offsetof(ifr_broadaddr) },
212 #if ENABLE_FEATURE_IFCONFIG_HW
213         { "SIFHWADDR",  SIOCSIFHWADDR,  ifreq_offsetof(ifr_hwaddr) },
214 #endif
215         { "SIFDSTADDR", SIOCSIFDSTADDR, ifreq_offsetof(ifr_dstaddr) },
216 #ifdef SIOCSKEEPALIVE
217         { "SKEEPALIVE", SIOCSKEEPALIVE, ifreq_offsetof(ifr_data) },
218 #endif
219 #ifdef SIOCSOUTFILL
220         { "SOUTFILL",   SIOCSOUTFILL,   ifreq_offsetof(ifr_data) },
221 #endif
222 #if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
223         { "SIFMAP",     SIOCSIFMAP,     ifreq_offsetof(ifr_map.mem_start) },
224         { "SIFMAP",     SIOCSIFMAP,     ifreq_offsetof(ifr_map.base_addr) },
225         { "SIFMAP",     SIOCSIFMAP,     ifreq_offsetof(ifr_map.irq) },
226 #endif
227         /* Last entry if for unmatched (possibly hostname) arg. */
228 #if ENABLE_FEATURE_IPV6
229         { "SIFADDR",    SIOCSIFADDR,    ifreq_offsetof(ifr_addr) }, /* IPv6 version ignores the offset */
230         { "DIFADDR",    SIOCDIFADDR,    ifreq_offsetof(ifr_addr) }, /* IPv6 version ignores the offset */
231 #endif
232         { "SIFADDR",    SIOCSIFADDR,    ifreq_offsetof(ifr_addr) },
233 };
234
235 static const struct options OptArray[] = {
236         { "metric",      N_ARG,         ARG_METRIC,      0 },
237         { "mtu",         N_ARG,         ARG_MTU,         0 },
238         { "txqueuelen",  N_ARG,         ARG_TXQUEUELEN,  0 },
239         { "dstaddr",     N_ARG,         ARG_DSTADDR,     0 },
240         { "netmask",     N_ARG,         ARG_NETMASK,     0 },
241         { "broadcast",   N_ARG | M_CLR, ARG_BROADCAST,   IFF_BROADCAST },
242 #if ENABLE_FEATURE_IFCONFIG_HW
243         { "hw",          N_ARG,         ARG_HW,          0 },
244 #endif
245         { "pointopoint", N_ARG | M_CLR, ARG_POINTOPOINT, IFF_POINTOPOINT },
246 #ifdef SIOCSKEEPALIVE
247         { "keepalive",   N_ARG,         ARG_KEEPALIVE,   0 },
248 #endif
249 #ifdef SIOCSOUTFILL
250         { "outfill",     N_ARG,         ARG_OUTFILL,     0 },
251 #endif
252 #if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
253         { "mem_start",   N_ARG,         ARG_MEM_START,   0 },
254         { "io_addr",     N_ARG,         ARG_IO_ADDR,     0 },
255         { "irq",         N_ARG,         ARG_IRQ,         0 },
256 #endif
257 #if ENABLE_FEATURE_IPV6
258         { "add",         N_ARG,         ARG_ADD_DEL,     0 },
259         { "del",         N_ARG,         ARG_ADD_DEL,     0 },
260 #endif
261         { "arp",         N_CLR | M_SET, 0,               IFF_NOARP },
262         { "trailers",    N_CLR | M_SET, 0,               IFF_NOTRAILERS },
263         { "promisc",     N_SET | M_CLR, 0,               IFF_PROMISC },
264         { "multicast",   N_SET | M_CLR, 0,               IFF_MULTICAST },
265         { "allmulti",    N_SET | M_CLR, 0,               IFF_ALLMULTI },
266         { "dynamic",     N_SET | M_CLR, 0,               IFF_DYNAMIC },
267         { "up",          N_SET,         0,               (IFF_UP | IFF_RUNNING) },
268         { "down",        N_CLR,         0,               IFF_UP },
269         { NULL,          0,             ARG_HOSTNAME,    (IFF_UP | IFF_RUNNING) }
270 };
271
272 /*
273  * A couple of prototypes.
274  */
275 #if ENABLE_FEATURE_IFCONFIG_HW
276 static int in_ether(const char *bufp, struct sockaddr *sap);
277 #endif
278
279 /*
280  * Our main function.
281  */
282 int ifconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
283 int ifconfig_main(int argc UNUSED_PARAM, char **argv)
284 {
285         struct ifreq ifr;
286         struct sockaddr_in sai;
287 #if ENABLE_FEATURE_IFCONFIG_HW
288         struct sockaddr sa;
289 #endif
290         const struct arg1opt *a1op;
291         const struct options *op;
292         int sockfd;                     /* socket fd we use to manipulate stuff with */
293         int selector;
294 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
295         unsigned int mask;
296         unsigned int did_flags;
297         unsigned int sai_hostname, sai_netmask;
298 #else
299         unsigned char mask;
300         unsigned char did_flags;
301 #endif
302         char *p;
303         /*char host[128];*/
304         const char *host = NULL; /* make gcc happy */
305
306         did_flags = 0;
307 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
308         sai_hostname = 0;
309         sai_netmask = 0;
310 #endif
311
312         /* skip argv[0] */
313         ++argv;
314
315 #if ENABLE_FEATURE_IFCONFIG_STATUS
316         if (argv[0] && (argv[0][0] == '-' && argv[0][1] == 'a' && !argv[0][2])) {
317                 interface_opt_a = 1;
318                 ++argv;
319         }
320 #endif
321
322         if (!argv[0] || !argv[1]) { /* one or no args */
323 #if ENABLE_FEATURE_IFCONFIG_STATUS
324                 return display_interfaces(argv[0] /* can be NULL */);
325 #else
326                 bb_error_msg_and_die("no support for status display");
327 #endif
328         }
329
330         /* Create a channel to the NET kernel. */
331         sockfd = xsocket(AF_INET, SOCK_DGRAM, 0);
332
333         /* get interface name */
334         strncpy_IFNAMSIZ(ifr.ifr_name, *argv);
335
336         /* Process the remaining arguments. */
337         while (*++argv != (char *) NULL) {
338                 p = *argv;
339                 mask = N_MASK;
340                 if (*p == '-') {        /* If the arg starts with '-'... */
341                         ++p;            /*    advance past it and */
342                         mask = M_MASK;  /*    set the appropriate mask. */
343                 }
344                 for (op = OptArray; op->name; op++) {   /* Find table entry. */
345                         if (strcmp(p, op->name) == 0) { /* If name matches... */
346                                 mask &= op->flags;
347                                 if (mask)       /* set the mask and go. */
348                                         goto FOUND_ARG;
349                                 /* If we get here, there was a valid arg with an */
350                                 /* invalid '-' prefix. */
351                                 bb_error_msg_and_die("bad: '%s'", p-1);
352                         }
353                 }
354
355                 /* We fell through, so treat as possible hostname. */
356                 a1op = Arg1Opt + ARRAY_SIZE(Arg1Opt) - 1;
357                 mask = op->arg_flags;
358                 goto HOSTNAME;
359
360  FOUND_ARG:
361                 if (mask & ARG_MASK) {
362                         mask = op->arg_flags;
363                         a1op = Arg1Opt + (op - OptArray);
364                         if (mask & A_NETMASK & did_flags)
365                                 bb_show_usage();
366                         if (*++argv == NULL) {
367                                 if (mask & A_ARG_REQ)
368                                         bb_show_usage();
369                                 --argv;
370                                 mask &= A_SET_AFTER;    /* just for broadcast */
371                         } else {        /* got an arg so process it */
372  HOSTNAME:
373                                 did_flags |= (mask & (A_NETMASK|A_HOSTNAME));
374                                 if (mask & A_CAST_HOST_COPY) {
375 #if ENABLE_FEATURE_IFCONFIG_HW
376                                         if (mask & A_CAST_RESOLVE) {
377 #endif
378 #if ENABLE_FEATURE_IPV6
379                                                 char *prefix;
380                                                 int prefix_len = 0;
381 #endif
382                                                 /*safe_strncpy(host, *argv, (sizeof host));*/
383                                                 host = *argv;
384 #if ENABLE_FEATURE_IPV6
385                                                 prefix = strchr(host, '/');
386                                                 if (prefix) {
387                                                         prefix_len = xatou_range(prefix + 1, 0, 128);
388                                                         *prefix = '\0';
389                                                 }
390 #endif
391                                                 sai.sin_family = AF_INET;
392                                                 sai.sin_port = 0;
393                                                 if (strcmp(host, "default") == 0) {
394                                                         /* Default is special, meaning 0.0.0.0. */
395                                                         sai.sin_addr.s_addr = INADDR_ANY;
396                                                 }
397 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
398                                                 else if ((host[0] == '+' && !host[1]) && (mask & A_BROADCAST)
399                                                  && (did_flags & (A_NETMASK|A_HOSTNAME)) == (A_NETMASK|A_HOSTNAME)
400                                                 ) {
401                                                         /* + is special, meaning broadcast is derived. */
402                                                         sai.sin_addr.s_addr = (~sai_netmask) | (sai_hostname & sai_netmask);
403                                                 }
404 #endif
405                                                 else {
406                                                         len_and_sockaddr *lsa;
407                                                         if (strcmp(host, "inet") == 0)
408                                                                 continue; /* compat stuff */
409                                                         lsa = xhost2sockaddr(host, 0);
410 #if ENABLE_FEATURE_IPV6
411                                                         if (lsa->u.sa.sa_family == AF_INET6) {
412                                                                 int sockfd6;
413                                                                 struct in6_ifreq ifr6;
414
415                                                                 memcpy((char *) &ifr6.ifr6_addr,
416                                                                                 (char *) &(lsa->u.sin6.sin6_addr),
417                                                                                 sizeof(struct in6_addr));
418
419                                                                 /* Create a channel to the NET kernel. */
420                                                                 sockfd6 = xsocket(AF_INET6, SOCK_DGRAM, 0);
421                                                                 xioctl(sockfd6, SIOGIFINDEX, &ifr);
422                                                                 ifr6.ifr6_ifindex = ifr.ifr_ifindex;
423                                                                 ifr6.ifr6_prefixlen = prefix_len;
424                                                                 ioctl_or_perror_and_die(sockfd6, a1op->selector, &ifr6, "SIOC%s", a1op->name);
425                                                                 if (ENABLE_FEATURE_CLEAN_UP)
426                                                                         free(lsa);
427                                                                 continue;
428                                                         }
429 #endif
430                                                         sai.sin_addr = lsa->u.sin.sin_addr;
431                                                         if (ENABLE_FEATURE_CLEAN_UP)
432                                                                 free(lsa);
433                                                 }
434 #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
435                                                 if (mask & A_HOSTNAME)
436                                                         sai_hostname = sai.sin_addr.s_addr;
437                                                 if (mask & A_NETMASK)
438                                                         sai_netmask = sai.sin_addr.s_addr;
439 #endif
440                                                 p = (char *) &sai;
441 #if ENABLE_FEATURE_IFCONFIG_HW
442                                         } else {        /* A_CAST_HOST_COPY_IN_ETHER */
443                                                 /* This is the "hw" arg case. */
444                                                 smalluint hw_class= index_in_substrings("ether\0"
445                                                                 IF_FEATURE_HWIB("infiniband\0"), *argv) + 1;
446                                                 if (!hw_class || !*++argv)
447                                                         bb_show_usage();
448                                                 /*safe_strncpy(host, *argv, sizeof(host));*/
449                                                 host = *argv;
450                                                 if (hw_class == 1 ? in_ether(host, &sa) : in_ib(host, &sa))
451                                                         bb_error_msg_and_die("invalid hw-addr %s", host);
452                                                 p = (char *) &sa;
453                                         }
454 #endif
455                                         memcpy( (((char *)&ifr) + a1op->ifr_offset),
456                                                    p, sizeof(struct sockaddr));
457                                 } else {
458                                         /* FIXME: error check?? */
459                                         unsigned long i = strtoul(*argv, NULL, 0);
460                                         p = ((char *)&ifr) + a1op->ifr_offset;
461 #if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
462                                         if (mask & A_MAP_TYPE) {
463                                                 xioctl(sockfd, SIOCGIFMAP, &ifr);
464                                                 if ((mask & A_MAP_UCHAR) == A_MAP_UCHAR)
465                                                         *((unsigned char *) p) = i;
466                                                 else if (mask & A_MAP_USHORT)
467                                                         *((unsigned short *) p) = i;
468                                                 else
469                                                         *((unsigned long *) p) = i;
470                                         } else
471 #endif
472                                         if (mask & A_CAST_CHAR_PTR)
473                                                 *((caddr_t *) p) = (caddr_t) i;
474                                         else    /* A_CAST_INT */
475                                                 *((int *) p) = i;
476                                 }
477
478                                 ioctl_or_perror_and_die(sockfd, a1op->selector, &ifr, "SIOC%s", a1op->name);
479 #ifdef QUESTIONABLE_ALIAS_CASE
480                                 if (mask & A_COLON_CHK) {
481                                         /*
482                                          * Don't do the set_flag() if the address is an alias with
483                                          * a '-' at the end, since it's deleted already! - Roman
484                                          *
485                                          * Should really use regex.h here, not sure though how well
486                                          * it'll go with the cross-platform support etc.
487                                          */
488                                         char *ptr;
489                                         short int found_colon = 0;
490                                         for (ptr = ifr.ifr_name; *ptr; ptr++)
491                                                 if (*ptr == ':')
492                                                         found_colon++;
493                                         if (found_colon && ptr[-1] == '-')
494                                                 continue;
495                                 }
496 #endif
497                         }
498                         if (!(mask & A_SET_AFTER))
499                                 continue;
500                         mask = N_SET;
501                 }
502
503                 xioctl(sockfd, SIOCGIFFLAGS, &ifr);
504                 selector = op->selector;
505                 if (mask & SET_MASK)
506                         ifr.ifr_flags |= selector;
507                 else
508                         ifr.ifr_flags &= ~selector;
509                 xioctl(sockfd, SIOCSIFFLAGS, &ifr);
510         } /* while () */
511
512         if (ENABLE_FEATURE_CLEAN_UP)
513                 close(sockfd);
514         return 0;
515 }
516
517 #if ENABLE_FEATURE_IFCONFIG_HW
518 /* Input an Ethernet address and convert to binary. */
519 static int in_ether(const char *bufp, struct sockaddr *sap)
520 {
521         char *ptr;
522         int i, j;
523         unsigned char val;
524         unsigned char c;
525
526         sap->sa_family = ARPHRD_ETHER;
527         ptr = (char *) sap->sa_data;
528
529         i = 0;
530         do {
531                 j = val = 0;
532
533                 /* We might get a semicolon here - not required. */
534                 if (i && (*bufp == ':')) {
535                         bufp++;
536                 }
537
538                 do {
539                         c = *bufp;
540                         if (((unsigned char)(c - '0')) <= 9) {
541                                 c -= '0';
542                         } else if (((unsigned char)((c|0x20) - 'a')) <= 5) {
543                                 c = (c|0x20) - ('a'-10);
544                         } else if (j && (c == ':' || c == 0)) {
545                                 break;
546                         } else {
547                                 return -1;
548                         }
549                         ++bufp;
550                         val <<= 4;
551                         val += c;
552                 } while (++j < 2);
553                 *ptr++ = val;
554         } while (++i < ETH_ALEN);
555
556         return *bufp; /* Error if we don't end at end of string. */
557 }
558 #endif