blob: abd58b582f79098dbf9274182e4d1cbfca31b236 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersenf15d4da2001-03-06 00:48:59 +00002/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003 * stolen from net-tools-1.59 and stripped down for busybox by
Eric Andersencb81e642003-07-14 21:21:08 +00004 * Erik Andersen <andersen@codepoet.org>
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 *
6 * Heavily modified by Manuel Novoa III Mar 12, 2001
7 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00008 * 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.
11 *
12 * -----------------------------------------------------------
13 *
Eric Andersenf15d4da2001-03-06 00:48:59 +000014 * 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.
17 *
Eric Andersenf15d4da2001-03-06 00:48:59 +000018 *
19 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
20 * and others. Copyright 1993 MicroWalt Corporation
21 *
Rob Landleye84f4342006-06-03 21:23:20 +000022 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenf15d4da2001-03-06 00:48:59 +000023 *
24 * Patched to support 'add' and 'del' keywords for INET(4) addresses
25 * by Mrs. Brisby <mrs.brisby@nimh.org>
26 *
27 * {1.34} - 19980630 - Arnaldo Carvalho de Melo <acme@conectiva.com.br>
28 * - gettext instead of catgets for i18n
Eric Andersenc7bda1c2004-03-15 08:29:22 +000029 * 10/1998 - Andi Kleen. Use interface list primitives.
30 * 20001008 - Bernd Eckenfels, Patch from RH for setting mtu
Eric Andersenf15d4da2001-03-06 00:48:59 +000031 * (default AF was wrong)
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000032 */
33
Eric Andersencd8c4362001-11-10 11:22:46 +000034#include <net/if.h>
35#include <net/if_arp.h>
Denis Vlasenko322661d2007-01-29 23:43:52 +000036#include "inet_common.h"
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000037#include "libbb.h"
Eric Andersenf15d4da2001-03-06 00:48:59 +000038
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +000039
40#if ENABLE_FEATURE_HWIB
41/* #include <linux/if_infiniband.h> */
42#undef INFINIBAND_ALEN
43#define INFINIBAND_ALEN 20
44#endif
45
Denis Vlasenko1cc70222007-03-15 19:46:43 +000046#if ENABLE_FEATURE_IPV6
Glenn L McGrathb54a7482003-08-29 11:34:08 +000047# define HAVE_AFINET6 1
48#else
49# undef HAVE_AFINET6
50#endif
51
Eric Andersenf15d4da2001-03-06 00:48:59 +000052#define _PATH_PROCNET_DEV "/proc/net/dev"
Eric Andersen51b8bd62002-07-03 11:46:38 +000053#define _PATH_PROCNET_IFINET6 "/proc/net/if_inet6"
Eric Andersenf15d4da2001-03-06 00:48:59 +000054
Denis Vlasenkoaad49992006-11-22 02:12:07 +000055#ifdef HAVE_AFINET6
Eric Andersenf15d4da2001-03-06 00:48:59 +000056
57#ifndef _LINUX_IN6_H
58/*
59 * This is in linux/include/net/ipv6.h.
60 */
61
62struct in6_ifreq {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +000063 struct in6_addr ifr6_addr;
Glenn L McGrathb54a7482003-08-29 11:34:08 +000064 uint32_t ifr6_prefixlen;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +000065 unsigned int ifr6_ifindex;
Eric Andersenf15d4da2001-03-06 00:48:59 +000066};
67
68#endif
69
Denis Vlasenkoaad49992006-11-22 02:12:07 +000070#endif /* HAVE_AFINET6 */
Eric Andersenf15d4da2001-03-06 00:48:59 +000071
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000072/* Defines for glibc2.0 users. */
73#ifndef SIOCSIFTXQLEN
74#define SIOCSIFTXQLEN 0x8943
75#define SIOCGIFTXQLEN 0x8942
76#endif
77
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
82
83#ifndef HAVE_TXQUEUELEN
84#define HAVE_TXQUEUELEN 1
85#endif
86
87#ifndef IFF_DYNAMIC
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +000088#define IFF_DYNAMIC 0x8000 /* dialup device with changing addresses */
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000089#endif
90
Eric Andersenf15d4da2001-03-06 00:48:59 +000091/* Display an Internet socket address. */
Denis Vlasenko7f2527e2007-03-14 22:11:20 +000092static const char *INET_sprint(struct sockaddr *sap, int numeric)
Eric Andersenf15d4da2001-03-06 00:48:59 +000093{
Denis Vlasenko6d9ea242007-06-19 11:12:46 +000094 static char *buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +000095
Denis Vlasenko6d9ea242007-06-19 11:12:46 +000096 free(buff);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +000097 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
Denis Vlasenko7f2527e2007-03-14 22:11:20 +000098 return "[NONE SET]";
Denis Vlasenko6d9ea242007-06-19 11:12:46 +000099 buff = INET_rresolve((struct sockaddr_in *) sap, numeric, 0xffffff00);
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000100 return buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000101}
102
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000103#ifdef UNUSED_AND_BUGGY
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000104static int INET_getsock(char *bufp, struct sockaddr *sap)
105{
106 char *sp = bufp, *bp;
107 unsigned int i;
108 unsigned val;
109 struct sockaddr_in *sock_in;
110
111 sock_in = (struct sockaddr_in *) sap;
112 sock_in->sin_family = AF_INET;
113 sock_in->sin_port = 0;
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000114
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000115 val = 0;
116 bp = (char *) &val;
117 for (i = 0; i < sizeof(sock_in->sin_addr.s_addr); i++) {
118 *sp = toupper(*sp);
119
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;
126
127 bp[i] <<= 4;
128 sp++;
129 *sp = toupper(*sp);
130
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;
137
138 sp++;
139 }
140 sock_in->sin_addr.s_addr = htonl(val);
141
142 return (sp - bufp);
143}
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000144#endif
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000145
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000146static int INET_input(/*int type,*/ const char *bufp, struct sockaddr *sap)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000147{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000148 return INET_resolve(bufp, (struct sockaddr_in *) sap, 0);
149/*
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000150 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));
157 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000158*/
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000159}
160
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000161static const struct aftype inet_aftype = {
Rob Landley2818b292006-06-20 15:52:52 +0000162 .name = "inet",
163 .title = "DARPA Internet",
164 .af = AF_INET,
Rob Landley9fe801e2006-06-20 21:13:29 +0000165 .alen = 4,
Rob Landley2818b292006-06-20 15:52:52 +0000166 .sprint = INET_sprint,
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000167 .input = INET_input,
Eric Andersenf15d4da2001-03-06 00:48:59 +0000168};
169
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000170#ifdef HAVE_AFINET6
Eric Andersen51b8bd62002-07-03 11:46:38 +0000171
Eric Andersen51b8bd62002-07-03 11:46:38 +0000172/* Display an Internet socket address. */
173/* dirty! struct sockaddr usually doesn't suffer for inet6 addresses, fst. */
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000174static const char *INET6_sprint(struct sockaddr *sap, int numeric)
Eric Andersen51b8bd62002-07-03 11:46:38 +0000175{
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000176 static char *buff;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000177
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000178 free(buff);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000179 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000180 return "[NONE SET]";
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000181 buff = INET6_rresolve((struct sockaddr_in6 *) sap, numeric);
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000182 return buff;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000183}
184
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000185#ifdef UNUSED
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000186static int INET6_getsock(char *bufp, struct sockaddr *sap)
187{
188 struct sockaddr_in6 *sin6;
189
190 sin6 = (struct sockaddr_in6 *) sap;
191 sin6->sin6_family = AF_INET6;
192 sin6->sin6_port = 0;
193
194 if (inet_pton(AF_INET6, bufp, sin6->sin6_addr.s6_addr) <= 0)
195 return -1;
196
197 return 16; /* ?;) */
198}
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000199#endif
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000200
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000201static int INET6_input(/*int type,*/ const char *bufp, struct sockaddr *sap)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000202{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000203 return INET6_resolve(bufp, (struct sockaddr_in6 *) sap);
204/*
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000205 switch (type) {
206 case 1:
207 return (INET6_getsock(bufp, sap));
208 default:
209 return (INET6_resolve(bufp, (struct sockaddr_in6 *) sap));
210 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000211*/
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000212}
213
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000214static const struct aftype inet6_aftype = {
Rob Landley2818b292006-06-20 15:52:52 +0000215 .name = "inet6",
216 .title = "IPv6",
217 .af = AF_INET6,
218 .alen = sizeof(struct in6_addr),
219 .sprint = INET6_sprint,
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000220 .input = INET6_input,
Eric Andersen51b8bd62002-07-03 11:46:38 +0000221};
222
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000223#endif /* HAVE_AFINET6 */
Eric Andersen51b8bd62002-07-03 11:46:38 +0000224
Eric Andersenf15d4da2001-03-06 00:48:59 +0000225/* Display an UNSPEC address. */
226static char *UNSPEC_print(unsigned char *ptr)
227{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000228 static char *buff;
229
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000230 char *pos;
231 unsigned int i;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000232
Denis Vlasenko43d5d422008-05-15 19:44:46 +0000233 if (!buff)
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000234 buff = xmalloc(sizeof(struct sockaddr) * 3 + 1);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000235 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;
240 }
241 /* Erase trailing "-". Works as long as sizeof(struct sockaddr) != 0 */
242 *--pos = '\0';
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000243 return buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000244}
245
246/* Display an UNSPEC socket address. */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000247static const char *UNSPEC_sprint(struct sockaddr *sap, int numeric ATTRIBUTE_UNUSED)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000248{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000249 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000250 return "[NONE SET]";
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000251 return UNSPEC_print((unsigned char *)sap->sa_data);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000252}
253
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000254static const struct aftype unspec_aftype = {
255 .name = "unspec",
256 .title = "UNSPEC",
257 .af = AF_UNSPEC,
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000258 .alen = 0,
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000259 .print = UNSPEC_print,
260 .sprint = UNSPEC_sprint,
Eric Andersenf15d4da2001-03-06 00:48:59 +0000261};
262
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000263static const struct aftype *const aftypes[] = {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000264 &inet_aftype,
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000265#ifdef HAVE_AFINET6
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000266 &inet6_aftype,
Eric Andersenf15d4da2001-03-06 00:48:59 +0000267#endif
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000268 &unspec_aftype,
269 NULL
Eric Andersenf15d4da2001-03-06 00:48:59 +0000270};
271
Eric Andersenf15d4da2001-03-06 00:48:59 +0000272/* Check our protocol family table for this family. */
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000273const struct aftype *get_aftype(const char *name)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000274{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000275 const struct aftype *const *afp;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000276
277 afp = aftypes;
278 while (*afp != NULL) {
279 if (!strcmp((*afp)->name, name))
280 return (*afp);
281 afp++;
282 }
283 return NULL;
284}
285
286/* Check our protocol family table for this family. */
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000287static const struct aftype *get_afntype(int af)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000288{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000289 const struct aftype *const *afp;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000290
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000291 afp = aftypes;
292 while (*afp != NULL) {
293 if ((*afp)->af == af)
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000294 return *afp;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000295 afp++;
296 }
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000297 return NULL;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000298}
299
Eric Andersenf15d4da2001-03-06 00:48:59 +0000300struct user_net_device_stats {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000301 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;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000313
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000314 /* 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;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000327};
328
329struct interface {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000330 struct interface *next, *prev;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000331 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 */
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000342 int has_ip;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000343 char hwaddr[32]; /* HW address */
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000344 int statistics_valid;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000345 struct user_net_device_stats stats; /* statistics */
346 int keepalive; /* keepalive value for SLIP */
347 int outfill; /* outfill value for SLIP */
Eric Andersenf15d4da2001-03-06 00:48:59 +0000348};
349
350
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000351smallint interface_opt_a; /* show all interfaces */
Eric Andersenf15d4da2001-03-06 00:48:59 +0000352
Eric Andersenf15d4da2001-03-06 00:48:59 +0000353static struct interface *int_list, *int_last;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000354
355
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000356#if 0
Eric Andersenf15d4da2001-03-06 00:48:59 +0000357/* like strcmp(), but knows about numbers */
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000358except that the freshly added calls to xatoul() brf on ethernet aliases with
359uClibc with e.g.: ife->name='lo' name='eth0:1'
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000360static int nstrcmp(const char *a, const char *b)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000361{
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000362 const char *a_ptr = a;
363 const char *b_ptr = b;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000364
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000365 while (*a == *b) {
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000366 if (*a == '\0') {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000367 return 0;
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000368 }
369 if (!isdigit(*a) && isdigit(*(a+1))) {
370 a_ptr = a+1;
371 b_ptr = b+1;
372 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000373 a++;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000374 b++;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000375 }
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000376
377 if (isdigit(*a) && isdigit(*b)) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000378 return xatoul(a_ptr) > xatoul(b_ptr) ? 1 : -1;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000379 }
380 return *a - *b;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000381}
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000382#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000383
384static struct interface *add_interface(char *name)
385{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000386 struct interface *ife, **nextp, *new;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000387
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000388 for (ife = int_last; ife; ife = ife->prev) {
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000389 int n = /*n*/strcmp(ife->name, name);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000390
391 if (n == 0)
392 return ife;
393 if (n < 0)
394 break;
395 }
Rob Landleya6e131d2006-05-29 06:43:55 +0000396
397 new = xzalloc(sizeof(*new));
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000398 strncpy(new->name, name, IFNAMSIZ);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000399 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;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000408}
409
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000410static char *get_name(char *name, char *p)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000411{
Rob Landley9fe801e2006-06-20 21:13:29 +0000412 /* Extract <name> from nul-terminated p where p matches
413 <name>: after leading whitespace.
Eric Andersen9940e082004-08-12 16:52:00 +0000414 If match is not made, set name empty and return unchanged p */
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000415 int namestart = 0, nameend = 0;
416
Eric Andersen9940e082004-08-12 16:52:00 +0000417 while (isspace(p[namestart]))
418 namestart++;
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000419 nameend = namestart;
420 while (p[nameend] && p[nameend] != ':' && !isspace(p[nameend]))
Eric Andersen9940e082004-08-12 16:52:00 +0000421 nameend++;
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000422 if (p[nameend] == ':') {
423 if ((nameend - namestart) < IFNAMSIZ) {
424 memcpy(name, &p[namestart], nameend - namestart);
425 name[nameend - namestart] = '\0';
426 p = &p[nameend];
Eric Andersen9940e082004-08-12 16:52:00 +0000427 } else {
428 /* Interface name too large */
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000429 name[0] = '\0';
Eric Andersen9940e082004-08-12 16:52:00 +0000430 }
431 } else {
Rob Landley9fe801e2006-06-20 21:13:29 +0000432 /* trailing ':' not found - return empty */
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000433 name[0] = '\0';
Eric Andersenf15d4da2001-03-06 00:48:59 +0000434 }
Eric Andersen6fea7322004-08-26 21:45:21 +0000435 return p + 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000436}
437
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000438/* 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. */
444
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000445/* static const char *const ss_fmt[] = { */
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000446/* "%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" */
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000449/* }; */
450
451 /* Lie about the size of the int pointed to for %n. */
452#if INT_MAX == LONG_MAX
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000453static const char *const ss_fmt[] = {
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000454 "%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"
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000457};
458#else
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000459static const char *const ss_fmt[] = {
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000460 "%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"
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000463};
464
465#endif
466
467static void get_dev_fields(char *bp, struct interface *ife, int procnetdev_vsn)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000468{
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000469 memset(&ife->stats, 0, sizeof(struct user_net_device_stats));
470
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 */
488 );
489
490 if (procnetdev_vsn <= 1) {
491 if (procnetdev_vsn == 0) {
492 ife->stats.rx_bytes = 0;
493 ife->stats.tx_bytes = 0;
494 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000495 ife->stats.rx_multicast = 0;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000496 ife->stats.rx_compressed = 0;
497 ife->stats.tx_compressed = 0;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000498 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000499}
500
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000501static inline int procnetdev_version(char *buf)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000502{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000503 if (strstr(buf, "compressed"))
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000504 return 2;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000505 if (strstr(buf, "bytes"))
506 return 1;
507 return 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000508}
509
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000510static int if_readconf(void)
511{
512 int numreqs = 30;
513 struct ifconf ifc;
514 struct ifreq *ifr;
515 int n, err = -1;
516 int skfd;
517
518 ifc.ifc_buf = NULL;
519
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;
526 }
527
528 for (;;) {
529 ifc.ifc_len = sizeof(struct ifreq) * numreqs;
530 ifc.ifc_buf = xrealloc(ifc.ifc_buf, ifc.ifc_len);
531
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000532 if (ioctl_or_warn(skfd, SIOCGIFCONF, &ifc) < 0) {
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000533 goto out;
534 }
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000535 if (ifc.ifc_len == (int)(sizeof(struct ifreq) * numreqs)) {
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000536 /* assume it overflowed and try again */
537 numreqs += 10;
538 continue;
539 }
540 break;
541 }
542
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++;
547 }
548 err = 0;
549
550 out:
551 close(skfd);
552 free(ifc.ifc_buf);
553 return err;
554}
555
Eric Andersenf15d4da2001-03-06 00:48:59 +0000556static int if_readlist_proc(char *target)
557{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000558 static smallint proc_read;
559
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000560 FILE *fh;
561 char buf[512];
562 struct interface *ife;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000563 int err, procnetdev_vsn;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000564
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000565 if (proc_read)
566 return 0;
567 if (!target)
568 proc_read = 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000569
Denis Vlasenkof90ab182008-03-20 21:19:35 +0000570 fh = fopen_or_warn(_PATH_PROCNET_DEV, "r");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000571 if (!fh) {
Eric Andersenf15d4da2001-03-06 00:48:59 +0000572 return if_readconf();
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000573 }
574 fgets(buf, sizeof buf, fh); /* eat line */
575 fgets(buf, sizeof buf, fh);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000576
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000577 procnetdev_vsn = procnetdev_version(buf);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000578
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000579 err = 0;
580 while (fgets(buf, sizeof buf, fh)) {
Eric Andersenf96675b2003-07-28 06:37:04 +0000581 char *s, name[128];
Eric Andersenf15d4da2001-03-06 00:48:59 +0000582
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000583 s = get_name(name, buf);
584 ife = add_interface(name);
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000585 get_dev_fields(s, ife, procnetdev_vsn);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000586 ife->statistics_valid = 1;
587 if (target && !strcmp(target, name))
588 break;
589 }
590 if (ferror(fh)) {
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000591 bb_perror_msg(_PATH_PROCNET_DEV);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000592 err = -1;
593 proc_read = 0;
594 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000595 fclose(fh);
596 return err;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000597}
598
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000599static int if_readlist(void)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000600{
Denis Vlasenkod0587ed2007-03-22 19:35:51 +0000601 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;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000606}
607
Eric Andersenf15d4da2001-03-06 00:48:59 +0000608/* Fetch the interface configuration from the kernel. */
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000609static int if_fetch(struct interface *ife)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000610{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000611 struct ifreq ifr;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000612 char *ifname = ife->name;
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000613 int skfd;
614
615 skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000616
Denis Vlasenko229b3d22006-11-27 23:44:57 +0000617 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000618 if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0) {
619 close(skfd);
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000620 return -1;
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000621 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000622 ife->flags = ifr.ifr_flags;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000623
Denis Vlasenko229b3d22006-11-27 23:44:57 +0000624 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000625 memset(ife->hwaddr, 0, 32);
626 if (ioctl(skfd, SIOCGIFHWADDR, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000627 memcpy(ife->hwaddr, ifr.ifr_hwaddr.sa_data, 8);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000628
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000629 ife->type = ifr.ifr_hwaddr.sa_family;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000630
Denis Vlasenko229b3d22006-11-27 23:44:57 +0000631 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000632 ife->metric = 0;
633 if (ioctl(skfd, SIOCGIFMETRIC, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000634 ife->metric = ifr.ifr_metric;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000635
Denis Vlasenko229b3d22006-11-27 23:44:57 +0000636 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000637 ife->mtu = 0;
638 if (ioctl(skfd, SIOCGIFMTU, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000639 ife->mtu = ifr.ifr_mtu;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000640
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000641 memset(&ife->map, 0, sizeof(struct ifmap));
Rob Landley93983042005-05-03 21:30:26 +0000642#ifdef SIOCGIFMAP
Denis Vlasenko229b3d22006-11-27 23:44:57 +0000643 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
Rob Landley93983042005-05-03 21:30:26 +0000644 if (ioctl(skfd, SIOCGIFMAP, &ifr) == 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000645 ife->map = ifr.ifr_map;
Rob Landley93983042005-05-03 21:30:26 +0000646#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000647
648#ifdef HAVE_TXQUEUELEN
Denis Vlasenko229b3d22006-11-27 23:44:57 +0000649 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000650 ife->tx_queue_len = -1; /* unknown value */
651 if (ioctl(skfd, SIOCGIFTXQLEN, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000652 ife->tx_queue_len = ifr.ifr_qlen;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000653#else
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000654 ife->tx_queue_len = -1; /* unknown value */
Eric Andersenf15d4da2001-03-06 00:48:59 +0000655#endif
656
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000657 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
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;
Denis Vlasenko229b3d22006-11-27 23:44:57 +0000663 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000664 memset(&ife->dstaddr, 0, sizeof(struct sockaddr));
665 if (ioctl(skfd, SIOCGIFDSTADDR, &ifr) >= 0)
666 ife->dstaddr = ifr.ifr_dstaddr;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000667
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000668 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
669 memset(&ife->broadaddr, 0, sizeof(struct sockaddr));
670 if (ioctl(skfd, SIOCGIFBRDADDR, &ifr) >= 0)
671 ife->broadaddr = ifr.ifr_broadaddr;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000672
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000673 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
674 memset(&ife->netmask, 0, sizeof(struct sockaddr));
675 if (ioctl(skfd, SIOCGIFNETMASK, &ifr) >= 0)
676 ife->netmask = ifr.ifr_netmask;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000677 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000678
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000679 close(skfd);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000680 return 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000681}
682
683
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000684static int do_if_fetch(struct interface *ife)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000685{
686 if (if_fetch(ife) < 0) {
Denis Vlasenko322661d2007-01-29 23:43:52 +0000687 const char *errmsg;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000688
689 if (errno == ENODEV) {
690 /* Give better error message for this case. */
Rob Landley4e3aff32006-05-29 04:37:28 +0000691 errmsg = "Device not found";
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000692 } else {
693 errmsg = strerror(errno);
694 }
Rob Landley4e3aff32006-05-29 04:37:28 +0000695 bb_error_msg("%s: error fetching interface information: %s",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000696 ife->name, errmsg);
697 return -1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000698 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000699 return 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000700}
701
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000702static const struct hwtype unspec_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000703 .name = "unspec",
704 .title = "UNSPEC",
705 .type = -1,
706 .print = UNSPEC_print
Eric Andersenf15d4da2001-03-06 00:48:59 +0000707};
708
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000709static const struct hwtype loop_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000710 .name = "loop",
711 .title = "Local Loopback",
712 .type = ARPHRD_LOOPBACK
Eric Andersenf15d4da2001-03-06 00:48:59 +0000713};
714
Eric Andersenf15d4da2001-03-06 00:48:59 +0000715#include <net/if_arp.h>
Eric Andersenab4e19a2003-01-14 08:54:08 +0000716
Denis Vlasenko83e5d6f2006-12-18 21:49:06 +0000717#if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION)
Eric Andersenab4e19a2003-01-14 08:54:08 +0000718#include <net/ethernet.h>
719#else
Eric Andersenf15d4da2001-03-06 00:48:59 +0000720#include <linux/if_ether.h>
Eric Andersenab4e19a2003-01-14 08:54:08 +0000721#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000722
Eric Andersenf15d4da2001-03-06 00:48:59 +0000723/* Display an Ethernet address in readable format. */
724static char *pr_ether(unsigned char *ptr)
725{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000726 static char *buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000727
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000728 free(buff);
729 buff = xasprintf("%02X:%02X:%02X:%02X:%02X:%02X",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000730 (ptr[0] & 0377), (ptr[1] & 0377), (ptr[2] & 0377),
731 (ptr[3] & 0377), (ptr[4] & 0377), (ptr[5] & 0377)
732 );
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000733 return buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000734}
735
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000736static int in_ether(const char *bufp, struct sockaddr *sap);
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000737
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000738static const struct hwtype ether_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000739 .name = "ether",
740 .title = "Ethernet",
741 .type = ARPHRD_ETHER,
742 .alen = ETH_ALEN,
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000743 .print = pr_ether,
744 .input = in_ether
Eric Andersenf15d4da2001-03-06 00:48:59 +0000745};
746
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000747static unsigned hexchar2int(char c)
748{
749 if (isdigit(c))
750 return c - '0';
751 c &= ~0x20; /* a -> A */
752 if ((unsigned)(c - 'A') <= 5)
753 return c - ('A' - 10);
754 return ~0U;
755}
756
757/* Input an Ethernet address and convert to binary. */
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000758static int in_ether(const char *bufp, struct sockaddr *sap)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000759{
760 unsigned char *ptr;
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000761 char c;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000762 int i;
763 unsigned val;
764
765 sap->sa_family = ether_hwtype.type;
Denis Vlasenko731d3572007-02-02 01:16:33 +0000766 ptr = (unsigned char*) sap->sa_data;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000767
768 i = 0;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000769 while ((*bufp != '\0') && (i < ETH_ALEN)) {
770 val = hexchar2int(*bufp++) * 0x10;
771 if (val > 0xff) {
772 errno = EINVAL;
773 return -1;
774 }
775 c = *bufp;
776 if (c == ':' || c == 0)
777 val >>= 4;
778 else {
779 val |= hexchar2int(c);
780 if (val > 0xff) {
781 errno = EINVAL;
782 return -1;
783 }
784 }
785 if (c != 0)
786 bufp++;
787 *ptr++ = (unsigned char) val;
788 i++;
789
790 /* We might get a semicolon here - not required. */
791 if (*bufp == ':') {
792 bufp++;
793 }
794 }
795 return 0;
796}
797
Eric Andersenf15d4da2001-03-06 00:48:59 +0000798#include <net/if_arp.h>
799
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000800static const struct hwtype ppp_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000801 .name = "ppp",
802 .title = "Point-to-Point Protocol",
803 .type = ARPHRD_PPP
Eric Andersenf15d4da2001-03-06 00:48:59 +0000804};
805
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000806#if ENABLE_FEATURE_IPV6
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000807static const struct hwtype sit_hwtype = {
808 .name = "sit",
809 .title = "IPv6-in-IPv4",
810 .type = ARPHRD_SIT,
811 .print = UNSPEC_print,
812 .suppress_null_addr = 1
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000813};
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000814#endif
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000815#if ENABLE_FEATURE_HWIB
816static const struct hwtype ib_hwtype = {
817 .name = "infiniband",
818 .title = "InfiniBand",
819 .type = ARPHRD_INFINIBAND,
820 .alen = INFINIBAND_ALEN,
821 .print = UNSPEC_print,
822 .input = in_ib,
823};
824#endif
825
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000826
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000827static const struct hwtype *const hwtypes[] = {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000828 &loop_hwtype,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000829 &ether_hwtype,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000830 &ppp_hwtype,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000831 &unspec_hwtype,
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000832#if ENABLE_FEATURE_IPV6
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000833 &sit_hwtype,
834#endif
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000835#if ENABLE_FEATURE_HWIB
836 &ib_hwtype,
837#endif
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000838 NULL
Eric Andersenf15d4da2001-03-06 00:48:59 +0000839};
840
Eric Andersenf15d4da2001-03-06 00:48:59 +0000841#ifdef IFF_PORTSEL
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000842static const char *const if_port_text[] = {
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000843 /* Keep in step with <linux/netdevice.h> */
844 "unknown",
845 "10base2",
846 "10baseT",
847 "AUI",
848 "100baseT",
849 "100baseTX",
850 "100baseFX",
851 NULL
852};
853#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000854
855/* Check our hardware type table for this type. */
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000856const struct hwtype *get_hwtype(const char *name)
857{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000858 const struct hwtype *const *hwp;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000859
860 hwp = hwtypes;
861 while (*hwp != NULL) {
862 if (!strcmp((*hwp)->name, name))
863 return (*hwp);
864 hwp++;
865 }
866 return NULL;
867}
868
869/* Check our hardware type table for this type. */
870const struct hwtype *get_hwntype(int type)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000871{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000872 const struct hwtype *const *hwp;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000873
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000874 hwp = hwtypes;
875 while (*hwp != NULL) {
876 if ((*hwp)->type == type)
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000877 return *hwp;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000878 hwp++;
879 }
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000880 return NULL;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000881}
882
883/* return 1 if address is all zeros */
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000884static int hw_null_address(const struct hwtype *hw, void *ap)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000885{
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000886 int i;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000887 unsigned char *address = (unsigned char *) ap;
888
889 for (i = 0; i < hw->alen; i++)
890 if (address[i])
891 return 0;
892 return 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000893}
894
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000895static const char TRext[] ALIGN1 = "\0\0\0Ki\0Mi\0Gi\0Ti";
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000896
897static void print_bytes_scaled(unsigned long long ull, const char *end)
898{
899 unsigned long long int_part;
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000900 const char *ext;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000901 unsigned int frac_part;
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000902 int i;
903
904 frac_part = 0;
905 ext = TRext;
906 int_part = ull;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000907 i = 4;
908 do {
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000909 if (int_part >= 1024) {
910 frac_part = ((((unsigned int) int_part) & (1024-1)) * 10) / 1024;
911 int_part /= 1024;
912 ext += 3; /* KiB, MiB, GiB, TiB */
913 }
914 --i;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000915 } while (i);
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000916
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000917 printf("X bytes:%llu (%llu.%u %sB)%s", ull, int_part, frac_part, ext, end);
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000918}
919
920static void ife_print(struct interface *ptr)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000921{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000922 const struct aftype *ap;
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000923 const struct hwtype *hw;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000924 int hf;
925 int can_compress = 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000926
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000927#ifdef HAVE_AFINET6
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000928 FILE *f;
929 char addr6[40], devname[20];
930 struct sockaddr_in6 sap;
931 int plen, scope, dad_status, if_idx;
932 char addr6p[8][5];
Eric Andersenf15d4da2001-03-06 00:48:59 +0000933#endif
934
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000935 ap = get_afntype(ptr->addr.sa_family);
936 if (ap == NULL)
937 ap = get_afntype(0);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000938
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000939 hf = ptr->type;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000940
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000941 if (hf == ARPHRD_CSLIP || hf == ARPHRD_CSLIP6)
942 can_compress = 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000943
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000944 hw = get_hwntype(hf);
945 if (hw == NULL)
946 hw = get_hwntype(-1);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000947
Rob Landley4e3aff32006-05-29 04:37:28 +0000948 printf("%-9.9s Link encap:%s ", ptr->name, hw->title);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000949 /* For some hardware types (eg Ash, ATM) we don't print the
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000950 hardware address if it's null. */
951 if (hw->print != NULL && (!(hw_null_address(hw, ptr->hwaddr) &&
952 hw->suppress_null_addr)))
Rob Landley4e3aff32006-05-29 04:37:28 +0000953 printf("HWaddr %s ", hw->print((unsigned char *)ptr->hwaddr));
Eric Andersenf15d4da2001-03-06 00:48:59 +0000954#ifdef IFF_PORTSEL
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000955 if (ptr->flags & IFF_PORTSEL) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000956 printf("Media:%s", if_port_text[ptr->map.port] /* [0] */);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000957 if (ptr->flags & IFF_AUTOMEDIA)
Rob Landley4e3aff32006-05-29 04:37:28 +0000958 printf("(auto)");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000959 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000960#endif
Denis Vlasenko4daad902007-09-27 10:20:47 +0000961 bb_putchar('\n');
Eric Andersenf15d4da2001-03-06 00:48:59 +0000962
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000963 if (ptr->has_ip) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000964 printf(" %s addr:%s ", ap->name,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000965 ap->sprint(&ptr->addr, 1));
966 if (ptr->flags & IFF_POINTOPOINT) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000967 printf(" P-t-P:%s ", ap->sprint(&ptr->dstaddr, 1));
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000968 }
969 if (ptr->flags & IFF_BROADCAST) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000970 printf(" Bcast:%s ", ap->sprint(&ptr->broadaddr, 1));
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000971 }
Rob Landley4e3aff32006-05-29 04:37:28 +0000972 printf(" Mask:%s\n", ap->sprint(&ptr->netmask, 1));
Eric Andersenf15d4da2001-03-06 00:48:59 +0000973 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000974
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000975#ifdef HAVE_AFINET6
Eric Andersenf15d4da2001-03-06 00:48:59 +0000976
Eric Andersen51b8bd62002-07-03 11:46:38 +0000977#define IPV6_ADDR_ANY 0x0000U
978
979#define IPV6_ADDR_UNICAST 0x0001U
980#define IPV6_ADDR_MULTICAST 0x0002U
981#define IPV6_ADDR_ANYCAST 0x0004U
982
983#define IPV6_ADDR_LOOPBACK 0x0010U
984#define IPV6_ADDR_LINKLOCAL 0x0020U
985#define IPV6_ADDR_SITELOCAL 0x0040U
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000986
Eric Andersen51b8bd62002-07-03 11:46:38 +0000987#define IPV6_ADDR_COMPATv4 0x0080U
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000988
Eric Andersen51b8bd62002-07-03 11:46:38 +0000989#define IPV6_ADDR_SCOPE_MASK 0x00f0U
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000990
Eric Andersen51b8bd62002-07-03 11:46:38 +0000991#define IPV6_ADDR_MAPPED 0x1000U
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000992#define IPV6_ADDR_RESERVED 0x2000U /* reserved address space */
993
Denis Vlasenkoad67a392007-02-09 18:26:52 +0000994 f = fopen(_PATH_PROCNET_IFINET6, "r");
995 if (f != NULL) {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000996 while (fscanf
Denis Vlasenko28510822007-07-17 22:53:05 +0000997 (f, "%4s%4s%4s%4s%4s%4s%4s%4s %08x %02x %02x %02x %20s\n",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000998 addr6p[0], addr6p[1], addr6p[2], addr6p[3], addr6p[4],
999 addr6p[5], addr6p[6], addr6p[7], &if_idx, &plen, &scope,
Denis Vlasenkoad67a392007-02-09 18:26:52 +00001000 &dad_status, devname) != EOF
1001 ) {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001002 if (!strcmp(devname, ptr->name)) {
1003 sprintf(addr6, "%s:%s:%s:%s:%s:%s:%s:%s",
1004 addr6p[0], addr6p[1], addr6p[2], addr6p[3],
1005 addr6p[4], addr6p[5], addr6p[6], addr6p[7]);
1006 inet_pton(AF_INET6, addr6,
1007 (struct sockaddr *) &sap.sin6_addr);
1008 sap.sin6_family = AF_INET6;
Rob Landley4e3aff32006-05-29 04:37:28 +00001009 printf(" inet6 addr: %s/%d",
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001010 INET6_sprint((struct sockaddr *) &sap, 1),
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001011 plen);
Rob Landley4e3aff32006-05-29 04:37:28 +00001012 printf(" Scope:");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001013 switch (scope & IPV6_ADDR_SCOPE_MASK) {
1014 case 0:
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001015 puts("Global");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001016 break;
1017 case IPV6_ADDR_LINKLOCAL:
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001018 puts("Link");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001019 break;
1020 case IPV6_ADDR_SITELOCAL:
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001021 puts("Site");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001022 break;
1023 case IPV6_ADDR_COMPATv4:
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001024 puts("Compat");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001025 break;
1026 case IPV6_ADDR_LOOPBACK:
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001027 puts("Host");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001028 break;
1029 default:
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001030 puts("Unknown");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001031 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001032 }
Eric Andersenf15d4da2001-03-06 00:48:59 +00001033 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001034 fclose(f);
Eric Andersenf15d4da2001-03-06 00:48:59 +00001035 }
Eric Andersenf15d4da2001-03-06 00:48:59 +00001036#endif
1037
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001038 printf(" ");
1039 /* DONT FORGET TO ADD THE FLAGS IN ife_print_short, too */
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001040
1041 if (ptr->flags == 0) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001042 printf("[NO FLAGS] ");
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001043 } else {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001044 static const char ife_print_flags_strs[] ALIGN1 =
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001045 "UP\0"
1046 "BROADCAST\0"
1047 "DEBUG\0"
1048 "LOOPBACK\0"
1049 "POINTOPOINT\0"
1050 "NOTRAILERS\0"
1051 "RUNNING\0"
1052 "NOARP\0"
1053 "PROMISC\0"
1054 "ALLMULTI\0"
1055 "SLAVE\0"
1056 "MASTER\0"
1057 "MULTICAST\0"
1058#ifdef HAVE_DYNAMIC
1059 "DYNAMIC\0"
1060#endif
1061 ;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001062 static const unsigned short ife_print_flags_mask[] ALIGN2 = {
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001063 IFF_UP,
1064 IFF_BROADCAST,
1065 IFF_DEBUG,
1066 IFF_LOOPBACK,
1067 IFF_POINTOPOINT,
1068 IFF_NOTRAILERS,
1069 IFF_RUNNING,
1070 IFF_NOARP,
1071 IFF_PROMISC,
1072 IFF_ALLMULTI,
1073 IFF_SLAVE,
1074 IFF_MASTER,
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001075 IFF_MULTICAST
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001076#ifdef HAVE_DYNAMIC
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001077 ,IFF_DYNAMIC
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001078#endif
1079 };
1080 const unsigned short *mask = ife_print_flags_mask;
1081 const char *str = ife_print_flags_strs;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001082 do {
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001083 if (ptr->flags & *mask) {
1084 printf("%s ", str);
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001085 }
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001086 mask++;
1087 str += strlen(str) + 1;
1088 } while (*str);
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001089 }
1090
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001091 /* DONT FORGET TO ADD THE FLAGS IN ife_print_short */
Rob Landley4e3aff32006-05-29 04:37:28 +00001092 printf(" MTU:%d Metric:%d", ptr->mtu, ptr->metric ? ptr->metric : 1);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001093#ifdef SIOCSKEEPALIVE
1094 if (ptr->outfill || ptr->keepalive)
Rob Landley4e3aff32006-05-29 04:37:28 +00001095 printf(" Outfill:%d Keepalive:%d", ptr->outfill, ptr->keepalive);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001096#endif
Denis Vlasenko4daad902007-09-27 10:20:47 +00001097 bb_putchar('\n');
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001098
1099 /* If needed, display the interface statistics. */
1100
1101 if (ptr->statistics_valid) {
1102 /* XXX: statistics are currently only printed for the primary address,
1103 * not for the aliases, although strictly speaking they're shared
1104 * by all addresses.
1105 */
1106 printf(" ");
1107
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001108 printf("RX packets:%llu errors:%lu dropped:%lu overruns:%lu frame:%lu\n",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001109 ptr->stats.rx_packets, ptr->stats.rx_errors,
1110 ptr->stats.rx_dropped, ptr->stats.rx_fifo_errors,
1111 ptr->stats.rx_frame_errors);
1112 if (can_compress)
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001113 printf(" compressed:%lu\n",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001114 ptr->stats.rx_compressed);
1115 printf(" ");
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001116 printf("TX packets:%llu errors:%lu dropped:%lu overruns:%lu carrier:%lu\n",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001117 ptr->stats.tx_packets, ptr->stats.tx_errors,
1118 ptr->stats.tx_dropped, ptr->stats.tx_fifo_errors,
1119 ptr->stats.tx_carrier_errors);
Bernhard Reutner-Fischer214744d2006-03-30 13:38:19 +00001120 printf(" collisions:%lu ", ptr->stats.collisions);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001121 if (can_compress)
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001122 printf("compressed:%lu ", ptr->stats.tx_compressed);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001123 if (ptr->tx_queue_len != -1)
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001124 printf("txqueuelen:%d ", ptr->tx_queue_len);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001125 printf("\n R");
1126 print_bytes_scaled(ptr->stats.rx_bytes, " T");
1127 print_bytes_scaled(ptr->stats.tx_bytes, "\n");
1128
1129 }
1130
1131 if ((ptr->map.irq || ptr->map.mem_start || ptr->map.dma ||
1132 ptr->map.base_addr)) {
1133 printf(" ");
1134 if (ptr->map.irq)
Rob Landley4e3aff32006-05-29 04:37:28 +00001135 printf("Interrupt:%d ", ptr->map.irq);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001136 if (ptr->map.base_addr >= 0x100) /* Only print devices using it for
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001137 I/O maps */
Rob Landley4e3aff32006-05-29 04:37:28 +00001138 printf("Base address:0x%lx ",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001139 (unsigned long) ptr->map.base_addr);
1140 if (ptr->map.mem_start) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001141 printf("Memory:%lx-%lx ", ptr->map.mem_start,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001142 ptr->map.mem_end);
1143 }
1144 if (ptr->map.dma)
Rob Landley4e3aff32006-05-29 04:37:28 +00001145 printf("DMA chan:%x ", ptr->map.dma);
Denis Vlasenko4daad902007-09-27 10:20:47 +00001146 bb_putchar('\n');
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001147 }
Denis Vlasenko4daad902007-09-27 10:20:47 +00001148 bb_putchar('\n');
Eric Andersenf15d4da2001-03-06 00:48:59 +00001149}
1150
1151
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001152static int do_if_print(struct interface *ife) /*, int *opt_a)*/
Eric Andersenf15d4da2001-03-06 00:48:59 +00001153{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001154 int res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001155
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001156 res = do_if_fetch(ife);
1157 if (res >= 0) {
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001158 if ((ife->flags & IFF_UP) || interface_opt_a)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001159 ife_print(ife);
1160 }
1161 return res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001162}
1163
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +00001164static struct interface *lookup_interface(char *name)
Eric Andersenf15d4da2001-03-06 00:48:59 +00001165{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001166 struct interface *ife = NULL;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001167
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001168 if (if_readlist_proc(name) < 0)
1169 return NULL;
1170 ife = add_interface(name);
1171 return ife;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001172}
1173
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001174#ifdef UNUSED
1175static int for_all_interfaces(int (*doit) (struct interface *, void *),
1176 void *cookie)
1177{
1178 struct interface *ife;
1179
1180 if (!int_list && (if_readlist() < 0))
1181 return -1;
1182 for (ife = int_list; ife; ife = ife->next) {
1183 int err = doit(ife, cookie);
1184
1185 if (err)
1186 return err;
1187 }
1188 return 0;
1189}
1190#endif
1191
Eric Andersenf15d4da2001-03-06 00:48:59 +00001192/* for ipv4 add/del modes */
1193static int if_print(char *ifname)
1194{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001195 struct interface *ife;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001196 int res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001197
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001198 if (!ifname) {
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001199 /*res = for_all_interfaces(do_if_print, &interface_opt_a);*/
1200 if (!int_list && (if_readlist() < 0))
1201 return -1;
1202 for (ife = int_list; ife; ife = ife->next) {
1203 int err = do_if_print(ife); /*, &interface_opt_a);*/
1204 if (err)
1205 return err;
1206 }
1207 return 0;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001208 }
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001209 ife = lookup_interface(ifname);
1210 res = do_if_fetch(ife);
1211 if (res >= 0)
1212 ife_print(ife);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001213 return res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001214}
1215
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +00001216#if ENABLE_FEATURE_HWIB
1217/* Input an Infiniband address and convert to binary. */
1218int in_ib(const char *bufp, struct sockaddr *sap)
1219{
1220 unsigned char *ptr;
1221 char c;
1222 const char *orig;
1223 int i;
1224 unsigned val;
1225
1226 sap->sa_family = ib_hwtype.type;
Denis Vlasenko85e015c2008-05-17 02:36:28 +00001227 ptr = (unsigned char *) sap->sa_data;
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +00001228
1229 i = 0;
1230 orig = bufp;
1231 while ((*bufp != '\0') && (i < INFINIBAND_ALEN)) {
1232 val = 0;
1233 c = *bufp++;
1234 if (isdigit(c))
1235 val = c - '0';
1236 else if (c >= 'a' && c <= 'f')
1237 val = c - 'a' + 10;
1238 else if (c >= 'A' && c <= 'F')
1239 val = c - 'A' + 10;
1240 else {
1241 errno = EINVAL;
1242 return (-1);
1243 }
1244 val <<= 4;
1245 c = *bufp;
1246 if (isdigit(c))
1247 val |= c - '0';
1248 else if (c >= 'a' && c <= 'f')
1249 val |= c - 'a' + 10;
1250 else if (c >= 'A' && c <= 'F')
1251 val |= c - 'A' + 10;
1252 else if (c == ':' || c == 0)
1253 val >>= 4;
1254 else {
1255 errno = EINVAL;
1256 return (-1);
1257 }
1258 if (c != 0)
1259 bufp++;
1260 *ptr++ = (unsigned char) (val & 0377);
1261 i++;
1262
1263 /* We might get a semicolon here - not required. */
1264 if (*bufp == ':') {
1265 bufp++;
1266 }
1267 }
1268#ifdef DEBUG
1269fprintf(stderr, "in_ib(%s): %s\n", orig, UNSPEC_print(sap->sa_data));
1270#endif
1271 return (0);
1272}
1273#endif
1274
1275
1276
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +00001277int display_interfaces(char *ifname)
Eric Andersenf15d4da2001-03-06 00:48:59 +00001278{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001279 int status;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001280
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001281 status = if_print(ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +00001282
1283 return (status < 0); /* status < 0 == 1 -- error */
Eric Andersenf15d4da2001-03-06 00:48:59 +00001284}