Tomato 1.28
[tomato.git] / release / src / router / busybox / networking / interface.c
bloba4b58ec699a079f8afbd971c665927f7a0ed38bb
1 /* vi: set sw=4 ts=4: */
2 /*
3 * stolen from net-tools-1.59 and stripped down for busybox by
4 * Erik Andersen <andersen@codepoet.org>
6 * Heavily modified by Manuel Novoa III Mar 12, 2001
8 * Added print_bytes_scaled function to reduce code size.
9 * Added some (potentially) missing defines.
10 * Improved display support for -a and for a named interface.
12 * -----------------------------------------------------------
14 * ifconfig This file contains an implementation of the command
15 * that either displays or sets the characteristics of
16 * one or more of the system's networking interfaces.
19 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
20 * and others. Copyright 1993 MicroWalt Corporation
22 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
24 * Patched to support 'add' and 'del' keywords for INET(4) addresses
25 * by Mrs. Brisby <mrs.brisby@nimh.org>
27 * {1.34} - 19980630 - Arnaldo Carvalho de Melo <acme@conectiva.com.br>
28 * - gettext instead of catgets for i18n
29 * 10/1998 - Andi Kleen. Use interface list primitives.
30 * 20001008 - Bernd Eckenfels, Patch from RH for setting mtu
31 * (default AF was wrong)
34 #include <net/if.h>
35 #include <net/if_arp.h>
36 #include "inet_common.h"
37 #include "libbb.h"
40 #if ENABLE_FEATURE_HWIB
41 /* #include <linux/if_infiniband.h> */
42 #undef INFINIBAND_ALEN
43 #define INFINIBAND_ALEN 20
44 #endif
46 #if ENABLE_FEATURE_IPV6
47 # define HAVE_AFINET6 1
48 #else
49 # undef HAVE_AFINET6
50 #endif
52 #define _PATH_PROCNET_DEV "/proc/net/dev"
53 #define _PATH_PROCNET_IFINET6 "/proc/net/if_inet6"
55 #ifdef HAVE_AFINET6
57 #ifndef _LINUX_IN6_H
59 * This is in linux/include/net/ipv6.h.
62 struct in6_ifreq {
63 struct in6_addr ifr6_addr;
64 uint32_t ifr6_prefixlen;
65 unsigned int ifr6_ifindex;
68 #endif
70 #endif /* HAVE_AFINET6 */
72 /* Defines for glibc2.0 users. */
73 #ifndef SIOCSIFTXQLEN
74 #define SIOCSIFTXQLEN 0x8943
75 #define SIOCGIFTXQLEN 0x8942
76 #endif
78 /* ifr_qlen is ifru_ivalue, but it isn't present in 2.0 kernel headers */
79 #ifndef ifr_qlen
80 #define ifr_qlen ifr_ifru.ifru_mtu
81 #endif
83 #ifndef HAVE_TXQUEUELEN
84 #define HAVE_TXQUEUELEN 1
85 #endif
87 #ifndef IFF_DYNAMIC
88 #define IFF_DYNAMIC 0x8000 /* dialup device with changing addresses */
89 #endif
91 /* Display an Internet socket address. */
92 static const char* FAST_FUNC INET_sprint(struct sockaddr *sap, int numeric)
94 static char *buff; /* defaults to NULL */
96 free(buff);
97 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
98 return "[NONE SET]";
99 buff = INET_rresolve((struct sockaddr_in *) sap, numeric, 0xffffff00);
100 return buff;
103 #ifdef UNUSED_AND_BUGGY
104 static int INET_getsock(char *bufp, struct sockaddr *sap)
106 char *sp = bufp, *bp;
107 unsigned int i;
108 unsigned val;
109 struct sockaddr_in *sock_in;
111 sock_in = (struct sockaddr_in *) sap;
112 sock_in->sin_family = AF_INET;
113 sock_in->sin_port = 0;
115 val = 0;
116 bp = (char *) &val;
117 for (i = 0; i < sizeof(sock_in->sin_addr.s_addr); i++) {
118 *sp = toupper(*sp);
120 if ((unsigned)(*sp - 'A') <= 5)
121 bp[i] |= (int) (*sp - ('A' - 10));
122 else if (isdigit(*sp))
123 bp[i] |= (int) (*sp - '0');
124 else
125 return -1;
127 bp[i] <<= 4;
128 sp++;
129 *sp = toupper(*sp);
131 if ((unsigned)(*sp - 'A') <= 5)
132 bp[i] |= (int) (*sp - ('A' - 10));
133 else if (isdigit(*sp))
134 bp[i] |= (int) (*sp - '0');
135 else
136 return -1;
138 sp++;
140 sock_in->sin_addr.s_addr = htonl(val);
142 return (sp - bufp);
144 #endif
146 static int FAST_FUNC INET_input(/*int type,*/ const char *bufp, struct sockaddr *sap)
148 return INET_resolve(bufp, (struct sockaddr_in *) sap, 0);
150 switch (type) {
151 case 1:
152 return (INET_getsock(bufp, sap));
153 case 256:
154 return (INET_resolve(bufp, (struct sockaddr_in *) sap, 1));
155 default:
156 return (INET_resolve(bufp, (struct sockaddr_in *) sap, 0));
161 static const struct aftype inet_aftype = {
162 .name = "inet",
163 .title = "DARPA Internet",
164 .af = AF_INET,
165 .alen = 4,
166 .sprint = INET_sprint,
167 .input = INET_input,
170 #ifdef HAVE_AFINET6
172 /* Display an Internet socket address. */
173 /* dirty! struct sockaddr usually doesn't suffer for inet6 addresses, fst. */
174 static const char* FAST_FUNC INET6_sprint(struct sockaddr *sap, int numeric)
176 static char *buff;
178 free(buff);
179 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
180 return "[NONE SET]";
181 buff = INET6_rresolve((struct sockaddr_in6 *) sap, numeric);
182 return buff;
185 #ifdef UNUSED
186 static int INET6_getsock(char *bufp, struct sockaddr *sap)
188 struct sockaddr_in6 *sin6;
190 sin6 = (struct sockaddr_in6 *) sap;
191 sin6->sin6_family = AF_INET6;
192 sin6->sin6_port = 0;
194 if (inet_pton(AF_INET6, bufp, sin6->sin6_addr.s6_addr) <= 0)
195 return -1;
197 return 16; /* ?;) */
199 #endif
201 static int FAST_FUNC INET6_input(/*int type,*/ const char *bufp, struct sockaddr *sap)
203 return INET6_resolve(bufp, (struct sockaddr_in6 *) sap);
205 switch (type) {
206 case 1:
207 return (INET6_getsock(bufp, sap));
208 default:
209 return (INET6_resolve(bufp, (struct sockaddr_in6 *) sap));
214 static const struct aftype inet6_aftype = {
215 .name = "inet6",
216 .title = "IPv6",
217 .af = AF_INET6,
218 .alen = sizeof(struct in6_addr),
219 .sprint = INET6_sprint,
220 .input = INET6_input,
223 #endif /* HAVE_AFINET6 */
225 /* Display an UNSPEC address. */
226 static char* FAST_FUNC UNSPEC_print(unsigned char *ptr)
228 static char *buff;
230 char *pos;
231 unsigned int i;
233 if (!buff)
234 buff = xmalloc(sizeof(struct sockaddr) * 3 + 1);
235 pos = buff;
236 for (i = 0; i < sizeof(struct sockaddr); i++) {
237 /* careful -- not every libc's sprintf returns # bytes written */
238 sprintf(pos, "%02X-", (*ptr++ & 0377));
239 pos += 3;
241 /* Erase trailing "-". Works as long as sizeof(struct sockaddr) != 0 */
242 *--pos = '\0';
243 return buff;
246 /* Display an UNSPEC socket address. */
247 static const char* FAST_FUNC UNSPEC_sprint(struct sockaddr *sap, int numeric UNUSED_PARAM)
249 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
250 return "[NONE SET]";
251 return UNSPEC_print((unsigned char *)sap->sa_data);
254 static const struct aftype unspec_aftype = {
255 .name = "unspec",
256 .title = "UNSPEC",
257 .af = AF_UNSPEC,
258 .alen = 0,
259 .print = UNSPEC_print,
260 .sprint = UNSPEC_sprint,
263 static const struct aftype *const aftypes[] = {
264 &inet_aftype,
265 #ifdef HAVE_AFINET6
266 &inet6_aftype,
267 #endif
268 &unspec_aftype,
269 NULL
272 /* Check our protocol family table for this family. */
273 const struct aftype* FAST_FUNC get_aftype(const char *name)
275 const struct aftype *const *afp;
277 afp = aftypes;
278 while (*afp != NULL) {
279 if (!strcmp((*afp)->name, name))
280 return (*afp);
281 afp++;
283 return NULL;
286 /* Check our protocol family table for this family. */
287 static const struct aftype *get_afntype(int af)
289 const struct aftype *const *afp;
291 afp = aftypes;
292 while (*afp != NULL) {
293 if ((*afp)->af == af)
294 return *afp;
295 afp++;
297 return NULL;
300 struct user_net_device_stats {
301 unsigned long long rx_packets; /* total packets received */
302 unsigned long long tx_packets; /* total packets transmitted */
303 unsigned long long rx_bytes; /* total bytes received */
304 unsigned long long tx_bytes; /* total bytes transmitted */
305 unsigned long rx_errors; /* bad packets received */
306 unsigned long tx_errors; /* packet transmit problems */
307 unsigned long rx_dropped; /* no space in linux buffers */
308 unsigned long tx_dropped; /* no space available in linux */
309 unsigned long rx_multicast; /* multicast packets received */
310 unsigned long rx_compressed;
311 unsigned long tx_compressed;
312 unsigned long collisions;
314 /* detailed rx_errors: */
315 unsigned long rx_length_errors;
316 unsigned long rx_over_errors; /* receiver ring buff overflow */
317 unsigned long rx_crc_errors; /* recved pkt with crc error */
318 unsigned long rx_frame_errors; /* recv'd frame alignment error */
319 unsigned long rx_fifo_errors; /* recv'r fifo overrun */
320 unsigned long rx_missed_errors; /* receiver missed packet */
321 /* detailed tx_errors */
322 unsigned long tx_aborted_errors;
323 unsigned long tx_carrier_errors;
324 unsigned long tx_fifo_errors;
325 unsigned long tx_heartbeat_errors;
326 unsigned long tx_window_errors;
329 struct interface {
330 struct interface *next, *prev;
331 char name[IFNAMSIZ]; /* interface name */
332 short type; /* if type */
333 short flags; /* various flags */
334 int metric; /* routing metric */
335 int mtu; /* MTU value */
336 int tx_queue_len; /* transmit queue length */
337 struct ifmap map; /* hardware setup */
338 struct sockaddr addr; /* IP address */
339 struct sockaddr dstaddr; /* P-P IP address */
340 struct sockaddr broadaddr; /* IP broadcast address */
341 struct sockaddr netmask; /* IP network mask */
342 int has_ip;
343 char hwaddr[32]; /* HW address */
344 int statistics_valid;
345 struct user_net_device_stats stats; /* statistics */
346 int keepalive; /* keepalive value for SLIP */
347 int outfill; /* outfill value for SLIP */
351 smallint interface_opt_a; /* show all interfaces */
353 static struct interface *int_list, *int_last;
356 #if 0
357 /* like strcmp(), but knows about numbers */
358 except that the freshly added calls to xatoul() brf on ethernet aliases with
359 uClibc with e.g.: ife->name='lo' name='eth0:1'
360 static int nstrcmp(const char *a, const char *b)
362 const char *a_ptr = a;
363 const char *b_ptr = b;
365 while (*a == *b) {
366 if (*a == '\0') {
367 return 0;
369 if (!isdigit(*a) && isdigit(*(a+1))) {
370 a_ptr = a+1;
371 b_ptr = b+1;
373 a++;
374 b++;
377 if (isdigit(*a) && isdigit(*b)) {
378 return xatoul(a_ptr) > xatoul(b_ptr) ? 1 : -1;
380 return *a - *b;
382 #endif
384 static struct interface *add_interface(char *name)
386 struct interface *ife, **nextp, *new;
388 for (ife = int_last; ife; ife = ife->prev) {
389 int n = /*n*/strcmp(ife->name, name);
391 if (n == 0)
392 return ife;
393 if (n < 0)
394 break;
397 new = xzalloc(sizeof(*new));
398 strncpy_IFNAMSIZ(new->name, name);
399 nextp = ife ? &ife->next : &int_list;
400 new->prev = ife;
401 new->next = *nextp;
402 if (new->next)
403 new->next->prev = new;
404 else
405 int_last = new;
406 *nextp = new;
407 return new;
410 static char *get_name(char *name, char *p)
412 /* Extract <name> from nul-terminated p where p matches
413 <name>: after leading whitespace.
414 If match is not made, set name empty and return unchanged p */
415 int namestart = 0, nameend = 0;
417 while (isspace(p[namestart]))
418 namestart++;
419 nameend = namestart;
420 while (p[nameend] && p[nameend] != ':' && !isspace(p[nameend]))
421 nameend++;
422 if (p[nameend] == ':') {
423 if ((nameend - namestart) < IFNAMSIZ) {
424 memcpy(name, &p[namestart], nameend - namestart);
425 name[nameend - namestart] = '\0';
426 p = &p[nameend];
427 } else {
428 /* Interface name too large */
429 name[0] = '\0';
431 } else {
432 /* trailing ':' not found - return empty */
433 name[0] = '\0';
435 return p + 1;
438 /* If scanf supports size qualifiers for %n conversions, then we can
439 * use a modified fmt that simply stores the position in the fields
440 * having no associated fields in the proc string. Of course, we need
441 * to zero them again when we're done. But that is smaller than the
442 * old approach of multiple scanf occurrences with large numbers of
443 * args. */
445 /* static const char *const ss_fmt[] = { */
446 /* "%lln%llu%lu%lu%lu%lu%ln%ln%lln%llu%lu%lu%lu%lu%lu", */
447 /* "%llu%llu%lu%lu%lu%lu%ln%ln%llu%llu%lu%lu%lu%lu%lu", */
448 /* "%llu%llu%lu%lu%lu%lu%lu%lu%llu%llu%lu%lu%lu%lu%lu%lu" */
449 /* }; */
451 /* Lie about the size of the int pointed to for %n. */
452 #if INT_MAX == LONG_MAX
453 static const char *const ss_fmt[] = {
454 "%n%llu%u%u%u%u%n%n%n%llu%u%u%u%u%u",
455 "%llu%llu%u%u%u%u%n%n%llu%llu%u%u%u%u%u",
456 "%llu%llu%u%u%u%u%u%u%llu%llu%u%u%u%u%u%u"
458 #else
459 static const char *const ss_fmt[] = {
460 "%n%llu%lu%lu%lu%lu%n%n%n%llu%lu%lu%lu%lu%lu",
461 "%llu%llu%lu%lu%lu%lu%n%n%llu%llu%lu%lu%lu%lu%lu",
462 "%llu%llu%lu%lu%lu%lu%lu%lu%llu%llu%lu%lu%lu%lu%lu%lu"
465 #endif
467 static void get_dev_fields(char *bp, struct interface *ife, int procnetdev_vsn)
469 memset(&ife->stats, 0, sizeof(struct user_net_device_stats));
471 sscanf(bp, ss_fmt[procnetdev_vsn],
472 &ife->stats.rx_bytes, /* missing for 0 */
473 &ife->stats.rx_packets,
474 &ife->stats.rx_errors,
475 &ife->stats.rx_dropped,
476 &ife->stats.rx_fifo_errors,
477 &ife->stats.rx_frame_errors,
478 &ife->stats.rx_compressed, /* missing for <= 1 */
479 &ife->stats.rx_multicast, /* missing for <= 1 */
480 &ife->stats.tx_bytes, /* missing for 0 */
481 &ife->stats.tx_packets,
482 &ife->stats.tx_errors,
483 &ife->stats.tx_dropped,
484 &ife->stats.tx_fifo_errors,
485 &ife->stats.collisions,
486 &ife->stats.tx_carrier_errors,
487 &ife->stats.tx_compressed /* missing for <= 1 */
490 if (procnetdev_vsn <= 1) {
491 if (procnetdev_vsn == 0) {
492 ife->stats.rx_bytes = 0;
493 ife->stats.tx_bytes = 0;
495 ife->stats.rx_multicast = 0;
496 ife->stats.rx_compressed = 0;
497 ife->stats.tx_compressed = 0;
501 static int procnetdev_version(char *buf)
503 if (strstr(buf, "compressed"))
504 return 2;
505 if (strstr(buf, "bytes"))
506 return 1;
507 return 0;
510 static int if_readconf(void)
512 int numreqs = 30;
513 struct ifconf ifc;
514 struct ifreq *ifr;
515 int n, err = -1;
516 int skfd;
518 ifc.ifc_buf = NULL;
520 /* SIOCGIFCONF currently seems to only work properly on AF_INET sockets
521 (as of 2.1.128) */
522 skfd = socket(AF_INET, SOCK_DGRAM, 0);
523 if (skfd < 0) {
524 bb_perror_msg("error: no inet socket available");
525 return -1;
528 for (;;) {
529 ifc.ifc_len = sizeof(struct ifreq) * numreqs;
530 ifc.ifc_buf = xrealloc(ifc.ifc_buf, ifc.ifc_len);
532 if (ioctl_or_warn(skfd, SIOCGIFCONF, &ifc) < 0) {
533 goto out;
535 if (ifc.ifc_len == (int)(sizeof(struct ifreq) * numreqs)) {
536 /* assume it overflowed and try again */
537 numreqs += 10;
538 continue;
540 break;
543 ifr = ifc.ifc_req;
544 for (n = 0; n < ifc.ifc_len; n += sizeof(struct ifreq)) {
545 add_interface(ifr->ifr_name);
546 ifr++;
548 err = 0;
550 out:
551 close(skfd);
552 free(ifc.ifc_buf);
553 return err;
556 static int if_readlist_proc(char *target)
558 static smallint proc_read;
560 FILE *fh;
561 char buf[512];
562 struct interface *ife;
563 int err, procnetdev_vsn;
565 if (proc_read)
566 return 0;
567 if (!target)
568 proc_read = 1;
570 fh = fopen_or_warn(_PATH_PROCNET_DEV, "r");
571 if (!fh) {
572 return if_readconf();
574 fgets(buf, sizeof buf, fh); /* eat line */
575 fgets(buf, sizeof buf, fh);
577 procnetdev_vsn = procnetdev_version(buf);
579 err = 0;
580 while (fgets(buf, sizeof buf, fh)) {
581 char *s, name[128];
583 s = get_name(name, buf);
584 ife = add_interface(name);
585 get_dev_fields(s, ife, procnetdev_vsn);
586 ife->statistics_valid = 1;
587 if (target && !strcmp(target, name))
588 break;
590 if (ferror(fh)) {
591 bb_perror_msg(_PATH_PROCNET_DEV);
592 err = -1;
593 proc_read = 0;
595 fclose(fh);
596 return err;
599 static int if_readlist(void)
601 int err = if_readlist_proc(NULL);
602 /* Needed in order to get ethN:M aliases */
603 if (!err)
604 err = if_readconf();
605 return err;
608 /* Fetch the interface configuration from the kernel. */
609 static int if_fetch(struct interface *ife)
611 struct ifreq ifr;
612 char *ifname = ife->name;
613 int skfd;
615 skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
617 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
618 if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0) {
619 close(skfd);
620 return -1;
622 ife->flags = ifr.ifr_flags;
624 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
625 memset(ife->hwaddr, 0, 32);
626 if (ioctl(skfd, SIOCGIFHWADDR, &ifr) >= 0)
627 memcpy(ife->hwaddr, ifr.ifr_hwaddr.sa_data, 8);
629 ife->type = ifr.ifr_hwaddr.sa_family;
631 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
632 ife->metric = 0;
633 if (ioctl(skfd, SIOCGIFMETRIC, &ifr) >= 0)
634 ife->metric = ifr.ifr_metric;
636 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
637 ife->mtu = 0;
638 if (ioctl(skfd, SIOCGIFMTU, &ifr) >= 0)
639 ife->mtu = ifr.ifr_mtu;
641 memset(&ife->map, 0, sizeof(struct ifmap));
642 #ifdef SIOCGIFMAP
643 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
644 if (ioctl(skfd, SIOCGIFMAP, &ifr) == 0)
645 ife->map = ifr.ifr_map;
646 #endif
648 #ifdef HAVE_TXQUEUELEN
649 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
650 ife->tx_queue_len = -1; /* unknown value */
651 if (ioctl(skfd, SIOCGIFTXQLEN, &ifr) >= 0)
652 ife->tx_queue_len = ifr.ifr_qlen;
653 #else
654 ife->tx_queue_len = -1; /* unknown value */
655 #endif
657 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
658 ifr.ifr_addr.sa_family = AF_INET;
659 memset(&ife->addr, 0, sizeof(struct sockaddr));
660 if (ioctl(skfd, SIOCGIFADDR, &ifr) == 0) {
661 ife->has_ip = 1;
662 ife->addr = ifr.ifr_addr;
663 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
664 memset(&ife->dstaddr, 0, sizeof(struct sockaddr));
665 if (ioctl(skfd, SIOCGIFDSTADDR, &ifr) >= 0)
666 ife->dstaddr = ifr.ifr_dstaddr;
668 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
669 memset(&ife->broadaddr, 0, sizeof(struct sockaddr));
670 if (ioctl(skfd, SIOCGIFBRDADDR, &ifr) >= 0)
671 ife->broadaddr = ifr.ifr_broadaddr;
673 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
674 memset(&ife->netmask, 0, sizeof(struct sockaddr));
675 if (ioctl(skfd, SIOCGIFNETMASK, &ifr) >= 0)
676 ife->netmask = ifr.ifr_netmask;
679 close(skfd);
680 return 0;
683 static int do_if_fetch(struct interface *ife)
685 if (if_fetch(ife) < 0) {
686 const char *errmsg;
688 if (errno == ENODEV) {
689 /* Give better error message for this case. */
690 errmsg = "Device not found";
691 } else {
692 errmsg = strerror(errno);
694 bb_error_msg("%s: error fetching interface information: %s",
695 ife->name, errmsg);
696 return -1;
698 return 0;
701 static const struct hwtype unspec_hwtype = {
702 .name = "unspec",
703 .title = "UNSPEC",
704 .type = -1,
705 .print = UNSPEC_print
708 static const struct hwtype loop_hwtype = {
709 .name = "loop",
710 .title = "Local Loopback",
711 .type = ARPHRD_LOOPBACK
714 #include <net/if_arp.h>
716 #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION)
717 #include <net/ethernet.h>
718 #else
719 #include <linux/if_ether.h>
720 #endif
722 /* Display an Ethernet address in readable format. */
723 static char* FAST_FUNC ether_print(unsigned char *ptr)
725 static char *buff;
727 free(buff);
728 buff = xasprintf("%02X:%02X:%02X:%02X:%02X:%02X",
729 (ptr[0] & 0377), (ptr[1] & 0377), (ptr[2] & 0377),
730 (ptr[3] & 0377), (ptr[4] & 0377), (ptr[5] & 0377)
732 return buff;
735 static int FAST_FUNC ether_input(const char *bufp, struct sockaddr *sap);
737 static const struct hwtype ether_hwtype = {
738 .name = "ether",
739 .title = "Ethernet",
740 .type = ARPHRD_ETHER,
741 .alen = ETH_ALEN,
742 .print = ether_print,
743 .input = ether_input
746 static unsigned hexchar2int(char c)
748 if (isdigit(c))
749 return c - '0';
750 c &= ~0x20; /* a -> A */
751 if ((unsigned)(c - 'A') <= 5)
752 return c - ('A' - 10);
753 return ~0U;
756 /* Input an Ethernet address and convert to binary. */
757 static int FAST_FUNC ether_input(const char *bufp, struct sockaddr *sap)
759 unsigned char *ptr;
760 char c;
761 int i;
762 unsigned val;
764 sap->sa_family = ether_hwtype.type;
765 ptr = (unsigned char*) sap->sa_data;
767 i = 0;
768 while ((*bufp != '\0') && (i < ETH_ALEN)) {
769 val = hexchar2int(*bufp++) * 0x10;
770 if (val > 0xff) {
771 errno = EINVAL;
772 return -1;
774 c = *bufp;
775 if (c == ':' || c == 0)
776 val >>= 4;
777 else {
778 val |= hexchar2int(c);
779 if (val > 0xff) {
780 errno = EINVAL;
781 return -1;
784 if (c != 0)
785 bufp++;
786 *ptr++ = (unsigned char) val;
787 i++;
789 /* We might get a semicolon here - not required. */
790 if (*bufp == ':') {
791 bufp++;
794 return 0;
797 #include <net/if_arp.h>
799 static const struct hwtype ppp_hwtype = {
800 .name = "ppp",
801 .title = "Point-to-Point Protocol",
802 .type = ARPHRD_PPP
805 #if ENABLE_FEATURE_IPV6
806 static const struct hwtype sit_hwtype = {
807 .name = "sit",
808 .title = "IPv6-in-IPv4",
809 .type = ARPHRD_SIT,
810 .print = UNSPEC_print,
811 .suppress_null_addr = 1
813 #endif
814 #if ENABLE_FEATURE_HWIB
815 static const struct hwtype ib_hwtype = {
816 .name = "infiniband",
817 .title = "InfiniBand",
818 .type = ARPHRD_INFINIBAND,
819 .alen = INFINIBAND_ALEN,
820 .print = UNSPEC_print,
821 .input = in_ib,
823 #endif
826 static const struct hwtype *const hwtypes[] = {
827 &loop_hwtype,
828 &ether_hwtype,
829 &ppp_hwtype,
830 &unspec_hwtype,
831 #if ENABLE_FEATURE_IPV6
832 &sit_hwtype,
833 #endif
834 #if ENABLE_FEATURE_HWIB
835 &ib_hwtype,
836 #endif
837 NULL
840 #ifdef IFF_PORTSEL
841 static const char *const if_port_text[] = {
842 /* Keep in step with <linux/netdevice.h> */
843 "unknown",
844 "10base2",
845 "10baseT",
846 "AUI",
847 "100baseT",
848 "100baseTX",
849 "100baseFX",
850 NULL
852 #endif
854 /* Check our hardware type table for this type. */
855 const struct hwtype* FAST_FUNC get_hwtype(const char *name)
857 const struct hwtype *const *hwp;
859 hwp = hwtypes;
860 while (*hwp != NULL) {
861 if (!strcmp((*hwp)->name, name))
862 return (*hwp);
863 hwp++;
865 return NULL;
868 /* Check our hardware type table for this type. */
869 const struct hwtype* FAST_FUNC get_hwntype(int type)
871 const struct hwtype *const *hwp;
873 hwp = hwtypes;
874 while (*hwp != NULL) {
875 if ((*hwp)->type == type)
876 return *hwp;
877 hwp++;
879 return NULL;
882 /* return 1 if address is all zeros */
883 static int hw_null_address(const struct hwtype *hw, void *ap)
885 int i;
886 unsigned char *address = (unsigned char *) ap;
888 for (i = 0; i < hw->alen; i++)
889 if (address[i])
890 return 0;
891 return 1;
894 static const char TRext[] ALIGN1 = "\0\0\0Ki\0Mi\0Gi\0Ti";
896 static void print_bytes_scaled(unsigned long long ull, const char *end)
898 unsigned long long int_part;
899 const char *ext;
900 unsigned int frac_part;
901 int i;
903 frac_part = 0;
904 ext = TRext;
905 int_part = ull;
906 i = 4;
907 do {
908 if (int_part >= 1024) {
909 frac_part = ((((unsigned int) int_part) & (1024-1)) * 10) / 1024;
910 int_part /= 1024;
911 ext += 3; /* KiB, MiB, GiB, TiB */
913 --i;
914 } while (i);
916 printf("X bytes:%llu (%llu.%u %sB)%s", ull, int_part, frac_part, ext, end);
920 #ifdef HAVE_AFINET6
921 #define IPV6_ADDR_ANY 0x0000U
923 #define IPV6_ADDR_UNICAST 0x0001U
924 #define IPV6_ADDR_MULTICAST 0x0002U
925 #define IPV6_ADDR_ANYCAST 0x0004U
927 #define IPV6_ADDR_LOOPBACK 0x0010U
928 #define IPV6_ADDR_LINKLOCAL 0x0020U
929 #define IPV6_ADDR_SITELOCAL 0x0040U
931 #define IPV6_ADDR_COMPATv4 0x0080U
933 #define IPV6_ADDR_SCOPE_MASK 0x00f0U
935 #define IPV6_ADDR_MAPPED 0x1000U
936 #define IPV6_ADDR_RESERVED 0x2000U /* reserved address space */
939 static void ife_print6(struct interface *ptr)
942 FILE *f;
943 char addr6[40], devname[20];
944 struct sockaddr_in6 sap;
945 int plen, scope, dad_status, if_idx;
946 char addr6p[8][5];
948 f = fopen_for_read(_PATH_PROCNET_IFINET6);
949 if (f == NULL)
950 return;
952 while (fscanf
953 (f, "%4s%4s%4s%4s%4s%4s%4s%4s %08x %02x %02x %02x %20s\n",
954 addr6p[0], addr6p[1], addr6p[2], addr6p[3], addr6p[4],
955 addr6p[5], addr6p[6], addr6p[7], &if_idx, &plen, &scope,
956 &dad_status, devname) != EOF
958 if (!strcmp(devname, ptr->name)) {
959 sprintf(addr6, "%s:%s:%s:%s:%s:%s:%s:%s",
960 addr6p[0], addr6p[1], addr6p[2], addr6p[3],
961 addr6p[4], addr6p[5], addr6p[6], addr6p[7]);
962 inet_pton(AF_INET6, addr6,
963 (struct sockaddr *) &sap.sin6_addr);
964 sap.sin6_family = AF_INET6;
965 printf(" inet6 addr: %s/%d",
966 INET6_sprint((struct sockaddr *) &sap, 1),
967 plen);
968 printf(" Scope:");
969 switch (scope & IPV6_ADDR_SCOPE_MASK) {
970 case 0:
971 puts("Global");
972 break;
973 case IPV6_ADDR_LINKLOCAL:
974 puts("Link");
975 break;
976 case IPV6_ADDR_SITELOCAL:
977 puts("Site");
978 break;
979 case IPV6_ADDR_COMPATv4:
980 puts("Compat");
981 break;
982 case IPV6_ADDR_LOOPBACK:
983 puts("Host");
984 break;
985 default:
986 puts("Unknown");
990 fclose(f);
992 #else
993 #define ife_print6(a) ((void)0)
994 #endif
997 static void ife_print(struct interface *ptr)
999 const struct aftype *ap;
1000 const struct hwtype *hw;
1001 int hf;
1002 int can_compress = 0;
1004 ap = get_afntype(ptr->addr.sa_family);
1005 if (ap == NULL)
1006 ap = get_afntype(0);
1008 hf = ptr->type;
1010 if (hf == ARPHRD_CSLIP || hf == ARPHRD_CSLIP6)
1011 can_compress = 1;
1013 hw = get_hwntype(hf);
1014 if (hw == NULL)
1015 hw = get_hwntype(-1);
1017 printf("%-10.10s Link encap:%s ", ptr->name, hw->title);
1018 /* For some hardware types (eg Ash, ATM) we don't print the
1019 hardware address if it's null. */
1020 if (hw->print != NULL
1021 && !(hw_null_address(hw, ptr->hwaddr) && hw->suppress_null_addr)
1023 printf("HWaddr %s ", hw->print((unsigned char *)ptr->hwaddr));
1025 #ifdef IFF_PORTSEL
1026 if (ptr->flags & IFF_PORTSEL) {
1027 printf("Media:%s", if_port_text[ptr->map.port] /* [0] */);
1028 if (ptr->flags & IFF_AUTOMEDIA)
1029 printf("(auto)");
1031 #endif
1032 bb_putchar('\n');
1034 if (ptr->has_ip) {
1035 printf(" %s addr:%s ", ap->name,
1036 ap->sprint(&ptr->addr, 1));
1037 if (ptr->flags & IFF_POINTOPOINT) {
1038 printf(" P-t-P:%s ", ap->sprint(&ptr->dstaddr, 1));
1040 if (ptr->flags & IFF_BROADCAST) {
1041 printf(" Bcast:%s ", ap->sprint(&ptr->broadaddr, 1));
1043 printf(" Mask:%s\n", ap->sprint(&ptr->netmask, 1));
1046 ife_print6(ptr);
1048 printf(" ");
1049 /* DONT FORGET TO ADD THE FLAGS IN ife_print_short, too */
1051 if (ptr->flags == 0) {
1052 printf("[NO FLAGS] ");
1053 } else {
1054 static const char ife_print_flags_strs[] ALIGN1 =
1055 "UP\0"
1056 "BROADCAST\0"
1057 "DEBUG\0"
1058 "LOOPBACK\0"
1059 "POINTOPOINT\0"
1060 "NOTRAILERS\0"
1061 "RUNNING\0"
1062 "NOARP\0"
1063 "PROMISC\0"
1064 "ALLMULTI\0"
1065 "SLAVE\0"
1066 "MASTER\0"
1067 "MULTICAST\0"
1068 #ifdef HAVE_DYNAMIC
1069 "DYNAMIC\0"
1070 #endif
1072 static const unsigned short ife_print_flags_mask[] ALIGN2 = {
1073 IFF_UP,
1074 IFF_BROADCAST,
1075 IFF_DEBUG,
1076 IFF_LOOPBACK,
1077 IFF_POINTOPOINT,
1078 IFF_NOTRAILERS,
1079 IFF_RUNNING,
1080 IFF_NOARP,
1081 IFF_PROMISC,
1082 IFF_ALLMULTI,
1083 IFF_SLAVE,
1084 IFF_MASTER,
1085 IFF_MULTICAST
1086 #ifdef HAVE_DYNAMIC
1087 ,IFF_DYNAMIC
1088 #endif
1090 const unsigned short *mask = ife_print_flags_mask;
1091 const char *str = ife_print_flags_strs;
1092 do {
1093 if (ptr->flags & *mask) {
1094 printf("%s ", str);
1096 mask++;
1097 str += strlen(str) + 1;
1098 } while (*str);
1101 /* DONT FORGET TO ADD THE FLAGS IN ife_print_short */
1102 printf(" MTU:%d Metric:%d", ptr->mtu, ptr->metric ? ptr->metric : 1);
1103 #ifdef SIOCSKEEPALIVE
1104 if (ptr->outfill || ptr->keepalive)
1105 printf(" Outfill:%d Keepalive:%d", ptr->outfill, ptr->keepalive);
1106 #endif
1107 bb_putchar('\n');
1109 /* If needed, display the interface statistics. */
1111 if (ptr->statistics_valid) {
1112 /* XXX: statistics are currently only printed for the primary address,
1113 * not for the aliases, although strictly speaking they're shared
1114 * by all addresses.
1116 printf(" ");
1118 printf("RX packets:%llu errors:%lu dropped:%lu overruns:%lu frame:%lu\n",
1119 ptr->stats.rx_packets, ptr->stats.rx_errors,
1120 ptr->stats.rx_dropped, ptr->stats.rx_fifo_errors,
1121 ptr->stats.rx_frame_errors);
1122 if (can_compress)
1123 printf(" compressed:%lu\n",
1124 ptr->stats.rx_compressed);
1125 printf(" ");
1126 printf("TX packets:%llu errors:%lu dropped:%lu overruns:%lu carrier:%lu\n",
1127 ptr->stats.tx_packets, ptr->stats.tx_errors,
1128 ptr->stats.tx_dropped, ptr->stats.tx_fifo_errors,
1129 ptr->stats.tx_carrier_errors);
1130 printf(" collisions:%lu ", ptr->stats.collisions);
1131 if (can_compress)
1132 printf("compressed:%lu ", ptr->stats.tx_compressed);
1133 if (ptr->tx_queue_len != -1)
1134 printf("txqueuelen:%d ", ptr->tx_queue_len);
1135 printf("\n R");
1136 print_bytes_scaled(ptr->stats.rx_bytes, " T");
1137 print_bytes_scaled(ptr->stats.tx_bytes, "\n");
1140 if (ptr->map.irq || ptr->map.mem_start
1141 || ptr->map.dma || ptr->map.base_addr
1143 printf(" ");
1144 if (ptr->map.irq)
1145 printf("Interrupt:%d ", ptr->map.irq);
1146 if (ptr->map.base_addr >= 0x100) /* Only print devices using it for
1147 I/O maps */
1148 printf("Base address:0x%lx ",
1149 (unsigned long) ptr->map.base_addr);
1150 if (ptr->map.mem_start) {
1151 printf("Memory:%lx-%lx ", ptr->map.mem_start,
1152 ptr->map.mem_end);
1154 if (ptr->map.dma)
1155 printf("DMA chan:%x ", ptr->map.dma);
1156 bb_putchar('\n');
1158 bb_putchar('\n');
1161 static int do_if_print(struct interface *ife) /*, int *opt_a)*/
1163 int res;
1165 res = do_if_fetch(ife);
1166 if (res >= 0) {
1167 if ((ife->flags & IFF_UP) || interface_opt_a)
1168 ife_print(ife);
1170 return res;
1173 static struct interface *lookup_interface(char *name)
1175 struct interface *ife = NULL;
1177 if (if_readlist_proc(name) < 0)
1178 return NULL;
1179 ife = add_interface(name);
1180 return ife;
1183 #ifdef UNUSED
1184 static int for_all_interfaces(int (*doit) (struct interface *, void *),
1185 void *cookie)
1187 struct interface *ife;
1189 if (!int_list && (if_readlist() < 0))
1190 return -1;
1191 for (ife = int_list; ife; ife = ife->next) {
1192 int err = doit(ife, cookie);
1194 if (err)
1195 return err;
1197 return 0;
1199 #endif
1201 /* for ipv4 add/del modes */
1202 static int if_print(char *ifname)
1204 struct interface *ife;
1205 int res;
1207 if (!ifname) {
1208 /*res = for_all_interfaces(do_if_print, &interface_opt_a);*/
1209 if (!int_list && (if_readlist() < 0))
1210 return -1;
1211 for (ife = int_list; ife; ife = ife->next) {
1212 int err = do_if_print(ife); /*, &interface_opt_a);*/
1213 if (err)
1214 return err;
1216 return 0;
1218 ife = lookup_interface(ifname);
1219 res = do_if_fetch(ife);
1220 if (res >= 0)
1221 ife_print(ife);
1222 return res;
1225 #if ENABLE_FEATURE_HWIB
1226 /* Input an Infiniband address and convert to binary. */
1227 int FAST_FUNC in_ib(const char *bufp, struct sockaddr *sap)
1229 unsigned char *ptr;
1230 char c;
1231 const char *orig;
1232 int i;
1233 unsigned val;
1235 sap->sa_family = ib_hwtype.type;
1236 ptr = (unsigned char *) sap->sa_data;
1238 i = 0;
1239 orig = bufp;
1240 while ((*bufp != '\0') && (i < INFINIBAND_ALEN)) {
1241 val = 0;
1242 c = *bufp++;
1243 if (isdigit(c))
1244 val = c - '0';
1245 else if (c >= 'a' && c <= 'f')
1246 val = c - 'a' + 10;
1247 else if (c >= 'A' && c <= 'F')
1248 val = c - 'A' + 10;
1249 else {
1250 errno = EINVAL;
1251 return -1;
1253 val <<= 4;
1254 c = *bufp;
1255 if (isdigit(c))
1256 val |= c - '0';
1257 else if (c >= 'a' && c <= 'f')
1258 val |= c - 'a' + 10;
1259 else if (c >= 'A' && c <= 'F')
1260 val |= c - 'A' + 10;
1261 else if (c == ':' || c == 0)
1262 val >>= 4;
1263 else {
1264 errno = EINVAL;
1265 return -1;
1267 if (c != 0)
1268 bufp++;
1269 *ptr++ = (unsigned char) (val & 0377);
1270 i++;
1272 /* We might get a semicolon here - not required. */
1273 if (*bufp == ':') {
1274 bufp++;
1277 #ifdef DEBUG
1278 fprintf(stderr, "in_ib(%s): %s\n", orig, UNSPEC_print(sap->sa_data));
1279 #endif
1280 return 0;
1282 #endif
1285 int FAST_FUNC display_interfaces(char *ifname)
1287 int status;
1289 status = if_print(ifname);
1291 return (status < 0); /* status < 0 == 1 -- error */