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