blob: a59f310a6abb9e7cef59aa15fc5f9aa87bda3501 [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 */
Eric Andersencd8c4362001-11-10 11:22:46 +000033#include <net/if.h>
34#include <net/if_arp.h>
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020035#if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION)
36# include <net/ethernet.h>
37#else
38# include <linux/if_ether.h>
39#endif
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000040#include "libbb.h"
Denys Vlasenkobb1dcc92010-02-02 12:45:38 +010041#include "inet_common.h"
Eric Andersenf15d4da2001-03-06 00:48:59 +000042
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +000043#if ENABLE_FEATURE_HWIB
44/* #include <linux/if_infiniband.h> */
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020045# undef INFINIBAND_ALEN
46# define INFINIBAND_ALEN 20
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +000047#endif
48
Denis Vlasenko1cc70222007-03-15 19:46:43 +000049#if ENABLE_FEATURE_IPV6
Glenn L McGrathb54a7482003-08-29 11:34:08 +000050# define HAVE_AFINET6 1
51#else
52# undef HAVE_AFINET6
53#endif
54
Eric Andersenf15d4da2001-03-06 00:48:59 +000055#define _PATH_PROCNET_DEV "/proc/net/dev"
Eric Andersen51b8bd62002-07-03 11:46:38 +000056#define _PATH_PROCNET_IFINET6 "/proc/net/if_inet6"
Eric Andersenf15d4da2001-03-06 00:48:59 +000057
Denis Vlasenkoaad49992006-11-22 02:12:07 +000058#ifdef HAVE_AFINET6
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020059# ifndef _LINUX_IN6_H
Eric Andersenf15d4da2001-03-06 00:48:59 +000060/*
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020061 * This is from linux/include/net/ipv6.h
Eric Andersenf15d4da2001-03-06 00:48:59 +000062 */
Eric Andersenf15d4da2001-03-06 00:48:59 +000063struct in6_ifreq {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +000064 struct in6_addr ifr6_addr;
Glenn L McGrathb54a7482003-08-29 11:34:08 +000065 uint32_t ifr6_prefixlen;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +000066 unsigned int ifr6_ifindex;
Eric Andersenf15d4da2001-03-06 00:48:59 +000067};
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020068# endif
Denis Vlasenkoaad49992006-11-22 02:12:07 +000069#endif /* HAVE_AFINET6 */
Eric Andersenf15d4da2001-03-06 00:48:59 +000070
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000071/* Defines for glibc2.0 users. */
72#ifndef SIOCSIFTXQLEN
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020073# define SIOCSIFTXQLEN 0x8943
74# define SIOCGIFTXQLEN 0x8942
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000075#endif
76
77/* ifr_qlen is ifru_ivalue, but it isn't present in 2.0 kernel headers */
78#ifndef ifr_qlen
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020079# define ifr_qlen ifr_ifru.ifru_mtu
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000080#endif
81
82#ifndef HAVE_TXQUEUELEN
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020083# define HAVE_TXQUEUELEN 1
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000084#endif
85
86#ifndef IFF_DYNAMIC
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020087# define IFF_DYNAMIC 0x8000 /* dialup device with changing addresses */
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000088#endif
89
Eric Andersenf15d4da2001-03-06 00:48:59 +000090/* Display an Internet socket address. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000091static const char* FAST_FUNC INET_sprint(struct sockaddr *sap, int numeric)
Eric Andersenf15d4da2001-03-06 00:48:59 +000092{
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +000093 static char *buff; /* defaults to NULL */
Eric Andersenf15d4da2001-03-06 00:48:59 +000094
Denis Vlasenko6d9ea242007-06-19 11:12:46 +000095 free(buff);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +000096 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
Denis Vlasenko7f2527e2007-03-14 22:11:20 +000097 return "[NONE SET]";
Denis Vlasenko6d9ea242007-06-19 11:12:46 +000098 buff = INET_rresolve((struct sockaddr_in *) sap, numeric, 0xffffff00);
Denis Vlasenkoaad49992006-11-22 02:12:07 +000099 return buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000100}
101
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000102#ifdef UNUSED_AND_BUGGY
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000103static int INET_getsock(char *bufp, struct sockaddr *sap)
104{
105 char *sp = bufp, *bp;
106 unsigned int i;
107 unsigned val;
108 struct sockaddr_in *sock_in;
109
110 sock_in = (struct sockaddr_in *) sap;
111 sock_in->sin_family = AF_INET;
112 sock_in->sin_port = 0;
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000113
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000114 val = 0;
115 bp = (char *) &val;
116 for (i = 0; i < sizeof(sock_in->sin_addr.s_addr); i++) {
117 *sp = toupper(*sp);
118
119 if ((unsigned)(*sp - 'A') <= 5)
120 bp[i] |= (int) (*sp - ('A' - 10));
121 else if (isdigit(*sp))
122 bp[i] |= (int) (*sp - '0');
123 else
124 return -1;
125
126 bp[i] <<= 4;
127 sp++;
128 *sp = toupper(*sp);
129
130 if ((unsigned)(*sp - 'A') <= 5)
131 bp[i] |= (int) (*sp - ('A' - 10));
132 else if (isdigit(*sp))
133 bp[i] |= (int) (*sp - '0');
134 else
135 return -1;
136
137 sp++;
138 }
139 sock_in->sin_addr.s_addr = htonl(val);
140
141 return (sp - bufp);
142}
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000143#endif
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000144
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000145static int FAST_FUNC INET_input(/*int type,*/ const char *bufp, struct sockaddr *sap)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000146{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000147 return INET_resolve(bufp, (struct sockaddr_in *) sap, 0);
148/*
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000149 switch (type) {
150 case 1:
151 return (INET_getsock(bufp, sap));
152 case 256:
153 return (INET_resolve(bufp, (struct sockaddr_in *) sap, 1));
154 default:
155 return (INET_resolve(bufp, (struct sockaddr_in *) sap, 0));
156 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000157*/
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000158}
159
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000160static const struct aftype inet_aftype = {
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000161 .name = "inet",
162 .title = "DARPA Internet",
163 .af = AF_INET,
164 .alen = 4,
165 .sprint = INET_sprint,
166 .input = INET_input,
Eric Andersenf15d4da2001-03-06 00:48:59 +0000167};
168
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000169#ifdef HAVE_AFINET6
Eric Andersen51b8bd62002-07-03 11:46:38 +0000170
Eric Andersen51b8bd62002-07-03 11:46:38 +0000171/* Display an Internet socket address. */
172/* dirty! struct sockaddr usually doesn't suffer for inet6 addresses, fst. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000173static const char* FAST_FUNC INET6_sprint(struct sockaddr *sap, int numeric)
Eric Andersen51b8bd62002-07-03 11:46:38 +0000174{
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000175 static char *buff;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000176
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000177 free(buff);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000178 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000179 return "[NONE SET]";
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000180 buff = INET6_rresolve((struct sockaddr_in6 *) sap, numeric);
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000181 return buff;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000182}
183
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000184#ifdef UNUSED
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000185static int INET6_getsock(char *bufp, struct sockaddr *sap)
186{
187 struct sockaddr_in6 *sin6;
188
189 sin6 = (struct sockaddr_in6 *) sap;
190 sin6->sin6_family = AF_INET6;
191 sin6->sin6_port = 0;
192
193 if (inet_pton(AF_INET6, bufp, sin6->sin6_addr.s6_addr) <= 0)
194 return -1;
195
196 return 16; /* ?;) */
197}
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000198#endif
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000199
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000200static int FAST_FUNC INET6_input(/*int type,*/ const char *bufp, struct sockaddr *sap)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000201{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000202 return INET6_resolve(bufp, (struct sockaddr_in6 *) sap);
203/*
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000204 switch (type) {
205 case 1:
206 return (INET6_getsock(bufp, sap));
207 default:
208 return (INET6_resolve(bufp, (struct sockaddr_in6 *) sap));
209 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000210*/
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000211}
212
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000213static const struct aftype inet6_aftype = {
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000214 .name = "inet6",
215 .title = "IPv6",
216 .af = AF_INET6,
217 .alen = sizeof(struct in6_addr),
218 .sprint = INET6_sprint,
219 .input = INET6_input,
Eric Andersen51b8bd62002-07-03 11:46:38 +0000220};
221
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000222#endif /* HAVE_AFINET6 */
Eric Andersen51b8bd62002-07-03 11:46:38 +0000223
Eric Andersenf15d4da2001-03-06 00:48:59 +0000224/* Display an UNSPEC address. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000225static char* FAST_FUNC UNSPEC_print(unsigned char *ptr)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000226{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000227 static char *buff;
228
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000229 char *pos;
230 unsigned int i;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000231
Denis Vlasenko43d5d422008-05-15 19:44:46 +0000232 if (!buff)
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000233 buff = xmalloc(sizeof(struct sockaddr) * 3 + 1);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000234 pos = buff;
235 for (i = 0; i < sizeof(struct sockaddr); i++) {
236 /* careful -- not every libc's sprintf returns # bytes written */
237 sprintf(pos, "%02X-", (*ptr++ & 0377));
238 pos += 3;
239 }
240 /* Erase trailing "-". Works as long as sizeof(struct sockaddr) != 0 */
241 *--pos = '\0';
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000242 return buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000243}
244
245/* Display an UNSPEC socket address. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000246static const char* FAST_FUNC UNSPEC_sprint(struct sockaddr *sap, int numeric UNUSED_PARAM)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000247{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000248 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000249 return "[NONE SET]";
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000250 return UNSPEC_print((unsigned char *)sap->sa_data);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000251}
252
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000253static const struct aftype unspec_aftype = {
254 .name = "unspec",
255 .title = "UNSPEC",
256 .af = AF_UNSPEC,
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000257 .alen = 0,
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000258 .print = UNSPEC_print,
259 .sprint = UNSPEC_sprint,
Eric Andersenf15d4da2001-03-06 00:48:59 +0000260};
261
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000262static const struct aftype *const aftypes[] = {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000263 &inet_aftype,
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000264#ifdef HAVE_AFINET6
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000265 &inet6_aftype,
Eric Andersenf15d4da2001-03-06 00:48:59 +0000266#endif
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000267 &unspec_aftype,
268 NULL
Eric Andersenf15d4da2001-03-06 00:48:59 +0000269};
270
Eric Andersenf15d4da2001-03-06 00:48:59 +0000271/* Check our protocol family table for this family. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000272const struct aftype* FAST_FUNC get_aftype(const char *name)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000273{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000274 const struct aftype *const *afp;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000275
276 afp = aftypes;
277 while (*afp != NULL) {
278 if (!strcmp((*afp)->name, name))
279 return (*afp);
280 afp++;
281 }
282 return NULL;
283}
284
285/* Check our protocol family table for this family. */
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000286static const struct aftype *get_afntype(int af)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000287{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000288 const struct aftype *const *afp;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000289
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000290 afp = aftypes;
291 while (*afp != NULL) {
292 if ((*afp)->af == af)
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000293 return *afp;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000294 afp++;
295 }
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000296 return NULL;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000297}
298
Eric Andersenf15d4da2001-03-06 00:48:59 +0000299struct user_net_device_stats {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000300 unsigned long long rx_packets; /* total packets received */
301 unsigned long long tx_packets; /* total packets transmitted */
302 unsigned long long rx_bytes; /* total bytes received */
303 unsigned long long tx_bytes; /* total bytes transmitted */
304 unsigned long rx_errors; /* bad packets received */
305 unsigned long tx_errors; /* packet transmit problems */
306 unsigned long rx_dropped; /* no space in linux buffers */
307 unsigned long tx_dropped; /* no space available in linux */
308 unsigned long rx_multicast; /* multicast packets received */
309 unsigned long rx_compressed;
310 unsigned long tx_compressed;
311 unsigned long collisions;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000312
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000313 /* detailed rx_errors: */
314 unsigned long rx_length_errors;
315 unsigned long rx_over_errors; /* receiver ring buff overflow */
316 unsigned long rx_crc_errors; /* recved pkt with crc error */
317 unsigned long rx_frame_errors; /* recv'd frame alignment error */
318 unsigned long rx_fifo_errors; /* recv'r fifo overrun */
319 unsigned long rx_missed_errors; /* receiver missed packet */
320 /* detailed tx_errors */
321 unsigned long tx_aborted_errors;
322 unsigned long tx_carrier_errors;
323 unsigned long tx_fifo_errors;
324 unsigned long tx_heartbeat_errors;
325 unsigned long tx_window_errors;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000326};
327
328struct interface {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000329 struct interface *next, *prev;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000330 char name[IFNAMSIZ]; /* interface name */
331 short type; /* if type */
332 short flags; /* various flags */
333 int metric; /* routing metric */
334 int mtu; /* MTU value */
335 int tx_queue_len; /* transmit queue length */
336 struct ifmap map; /* hardware setup */
337 struct sockaddr addr; /* IP address */
338 struct sockaddr dstaddr; /* P-P IP address */
339 struct sockaddr broadaddr; /* IP broadcast address */
340 struct sockaddr netmask; /* IP network mask */
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000341 int has_ip;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000342 char hwaddr[32]; /* HW address */
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000343 int statistics_valid;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000344 struct user_net_device_stats stats; /* statistics */
345 int keepalive; /* keepalive value for SLIP */
346 int outfill; /* outfill value for SLIP */
Eric Andersenf15d4da2001-03-06 00:48:59 +0000347};
348
349
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000350smallint interface_opt_a; /* show all interfaces */
Eric Andersenf15d4da2001-03-06 00:48:59 +0000351
Eric Andersenf15d4da2001-03-06 00:48:59 +0000352static struct interface *int_list, *int_last;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000353
354
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000355#if 0
Eric Andersenf15d4da2001-03-06 00:48:59 +0000356/* like strcmp(), but knows about numbers */
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000357except that the freshly added calls to xatoul() brf on ethernet aliases with
358uClibc with e.g.: ife->name='lo' name='eth0:1'
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000359static int nstrcmp(const char *a, const char *b)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000360{
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000361 const char *a_ptr = a;
362 const char *b_ptr = b;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000363
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000364 while (*a == *b) {
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000365 if (*a == '\0') {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000366 return 0;
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000367 }
368 if (!isdigit(*a) && isdigit(*(a+1))) {
369 a_ptr = a+1;
370 b_ptr = b+1;
371 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000372 a++;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000373 b++;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000374 }
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000375
376 if (isdigit(*a) && isdigit(*b)) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000377 return xatoul(a_ptr) > xatoul(b_ptr) ? 1 : -1;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000378 }
379 return *a - *b;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000380}
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000381#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000382
383static struct interface *add_interface(char *name)
384{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000385 struct interface *ife, **nextp, *new;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000386
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000387 for (ife = int_last; ife; ife = ife->prev) {
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000388 int n = /*n*/strcmp(ife->name, name);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000389
390 if (n == 0)
391 return ife;
392 if (n < 0)
393 break;
394 }
Rob Landleya6e131d2006-05-29 06:43:55 +0000395
396 new = xzalloc(sizeof(*new));
Denis Vlasenko360d9662008-12-02 18:18:50 +0000397 strncpy_IFNAMSIZ(new->name, name);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000398 nextp = ife ? &ife->next : &int_list;
399 new->prev = ife;
400 new->next = *nextp;
401 if (new->next)
402 new->next->prev = new;
403 else
404 int_last = new;
405 *nextp = new;
406 return new;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000407}
408
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000409static char *get_name(char *name, char *p)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000410{
Rob Landley9fe801e2006-06-20 21:13:29 +0000411 /* Extract <name> from nul-terminated p where p matches
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200412 * <name>: after leading whitespace.
413 * If match is not made, set name empty and return unchanged p
414 */
415 char *nameend;
416 char *namestart = skip_whitespace(p);
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000417
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000418 nameend = namestart;
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200419 while (*nameend && *nameend != ':' && !isspace(*nameend))
Eric Andersen9940e082004-08-12 16:52:00 +0000420 nameend++;
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200421 if (*nameend == ':') {
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000422 if ((nameend - namestart) < IFNAMSIZ) {
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200423 memcpy(name, namestart, nameend - namestart);
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000424 name[nameend - namestart] = '\0';
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200425 p = nameend;
Eric Andersen9940e082004-08-12 16:52:00 +0000426 } else {
427 /* Interface name too large */
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000428 name[0] = '\0';
Eric Andersen9940e082004-08-12 16:52:00 +0000429 }
430 } else {
Rob Landley9fe801e2006-06-20 21:13:29 +0000431 /* trailing ':' not found - return empty */
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000432 name[0] = '\0';
Eric Andersenf15d4da2001-03-06 00:48:59 +0000433 }
Eric Andersen6fea7322004-08-26 21:45:21 +0000434 return p + 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000435}
436
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000437/* If scanf supports size qualifiers for %n conversions, then we can
438 * use a modified fmt that simply stores the position in the fields
439 * having no associated fields in the proc string. Of course, we need
440 * to zero them again when we're done. But that is smaller than the
441 * old approach of multiple scanf occurrences with large numbers of
442 * args. */
443
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000444/* static const char *const ss_fmt[] = { */
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000445/* "%lln%llu%lu%lu%lu%lu%ln%ln%lln%llu%lu%lu%lu%lu%lu", */
446/* "%llu%llu%lu%lu%lu%lu%ln%ln%llu%llu%lu%lu%lu%lu%lu", */
447/* "%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 +0000448/* }; */
449
450 /* Lie about the size of the int pointed to for %n. */
451#if INT_MAX == LONG_MAX
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000452static const char *const ss_fmt[] = {
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000453 "%n%llu%u%u%u%u%n%n%n%llu%u%u%u%u%u",
454 "%llu%llu%u%u%u%u%n%n%llu%llu%u%u%u%u%u",
455 "%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 +0000456};
457#else
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000458static const char *const ss_fmt[] = {
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000459 "%n%llu%lu%lu%lu%lu%n%n%n%llu%lu%lu%lu%lu%lu",
460 "%llu%llu%lu%lu%lu%lu%n%n%llu%llu%lu%lu%lu%lu%lu",
461 "%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 +0000462};
463
464#endif
465
466static void get_dev_fields(char *bp, struct interface *ife, int procnetdev_vsn)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000467{
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000468 memset(&ife->stats, 0, sizeof(struct user_net_device_stats));
469
470 sscanf(bp, ss_fmt[procnetdev_vsn],
471 &ife->stats.rx_bytes, /* missing for 0 */
472 &ife->stats.rx_packets,
473 &ife->stats.rx_errors,
474 &ife->stats.rx_dropped,
475 &ife->stats.rx_fifo_errors,
476 &ife->stats.rx_frame_errors,
477 &ife->stats.rx_compressed, /* missing for <= 1 */
478 &ife->stats.rx_multicast, /* missing for <= 1 */
479 &ife->stats.tx_bytes, /* missing for 0 */
480 &ife->stats.tx_packets,
481 &ife->stats.tx_errors,
482 &ife->stats.tx_dropped,
483 &ife->stats.tx_fifo_errors,
484 &ife->stats.collisions,
485 &ife->stats.tx_carrier_errors,
486 &ife->stats.tx_compressed /* missing for <= 1 */
487 );
488
489 if (procnetdev_vsn <= 1) {
490 if (procnetdev_vsn == 0) {
491 ife->stats.rx_bytes = 0;
492 ife->stats.tx_bytes = 0;
493 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000494 ife->stats.rx_multicast = 0;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000495 ife->stats.rx_compressed = 0;
496 ife->stats.tx_compressed = 0;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000497 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000498}
499
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000500static int procnetdev_version(char *buf)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000501{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000502 if (strstr(buf, "compressed"))
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000503 return 2;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000504 if (strstr(buf, "bytes"))
505 return 1;
506 return 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000507}
508
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000509static int if_readconf(void)
510{
511 int numreqs = 30;
512 struct ifconf ifc;
513 struct ifreq *ifr;
514 int n, err = -1;
515 int skfd;
516
517 ifc.ifc_buf = NULL;
518
519 /* SIOCGIFCONF currently seems to only work properly on AF_INET sockets
520 (as of 2.1.128) */
521 skfd = socket(AF_INET, SOCK_DGRAM, 0);
522 if (skfd < 0) {
523 bb_perror_msg("error: no inet socket available");
524 return -1;
525 }
526
527 for (;;) {
528 ifc.ifc_len = sizeof(struct ifreq) * numreqs;
529 ifc.ifc_buf = xrealloc(ifc.ifc_buf, ifc.ifc_len);
530
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000531 if (ioctl_or_warn(skfd, SIOCGIFCONF, &ifc) < 0) {
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000532 goto out;
533 }
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000534 if (ifc.ifc_len == (int)(sizeof(struct ifreq) * numreqs)) {
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000535 /* assume it overflowed and try again */
536 numreqs += 10;
537 continue;
538 }
539 break;
540 }
541
542 ifr = ifc.ifc_req;
543 for (n = 0; n < ifc.ifc_len; n += sizeof(struct ifreq)) {
544 add_interface(ifr->ifr_name);
545 ifr++;
546 }
547 err = 0;
548
549 out:
550 close(skfd);
551 free(ifc.ifc_buf);
552 return err;
553}
554
Eric Andersenf15d4da2001-03-06 00:48:59 +0000555static int if_readlist_proc(char *target)
556{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000557 static smallint proc_read;
558
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000559 FILE *fh;
560 char buf[512];
561 struct interface *ife;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000562 int err, procnetdev_vsn;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000563
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000564 if (proc_read)
565 return 0;
566 if (!target)
567 proc_read = 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000568
Denis Vlasenkof90ab182008-03-20 21:19:35 +0000569 fh = fopen_or_warn(_PATH_PROCNET_DEV, "r");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000570 if (!fh) {
Eric Andersenf15d4da2001-03-06 00:48:59 +0000571 return if_readconf();
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000572 }
573 fgets(buf, sizeof buf, fh); /* eat line */
574 fgets(buf, sizeof buf, fh);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000575
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000576 procnetdev_vsn = procnetdev_version(buf);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000577
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000578 err = 0;
579 while (fgets(buf, sizeof buf, fh)) {
Eric Andersenf96675b2003-07-28 06:37:04 +0000580 char *s, name[128];
Eric Andersenf15d4da2001-03-06 00:48:59 +0000581
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000582 s = get_name(name, buf);
583 ife = add_interface(name);
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000584 get_dev_fields(s, ife, procnetdev_vsn);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000585 ife->statistics_valid = 1;
586 if (target && !strcmp(target, name))
587 break;
588 }
589 if (ferror(fh)) {
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000590 bb_perror_msg(_PATH_PROCNET_DEV);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000591 err = -1;
592 proc_read = 0;
593 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000594 fclose(fh);
595 return err;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000596}
597
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000598static int if_readlist(void)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000599{
Denis Vlasenkod0587ed2007-03-22 19:35:51 +0000600 int err = if_readlist_proc(NULL);
601 /* Needed in order to get ethN:M aliases */
602 if (!err)
603 err = if_readconf();
604 return err;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000605}
606
Eric Andersenf15d4da2001-03-06 00:48:59 +0000607/* Fetch the interface configuration from the kernel. */
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000608static int if_fetch(struct interface *ife)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000609{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000610 struct ifreq ifr;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000611 char *ifname = ife->name;
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000612 int skfd;
613
614 skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000615
Denis Vlasenko360d9662008-12-02 18:18:50 +0000616 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000617 if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0) {
618 close(skfd);
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000619 return -1;
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000620 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000621 ife->flags = ifr.ifr_flags;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000622
Denis Vlasenko360d9662008-12-02 18:18:50 +0000623 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000624 memset(ife->hwaddr, 0, 32);
625 if (ioctl(skfd, SIOCGIFHWADDR, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000626 memcpy(ife->hwaddr, ifr.ifr_hwaddr.sa_data, 8);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000627
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000628 ife->type = ifr.ifr_hwaddr.sa_family;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000629
Denis Vlasenko360d9662008-12-02 18:18:50 +0000630 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000631 ife->metric = 0;
632 if (ioctl(skfd, SIOCGIFMETRIC, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000633 ife->metric = ifr.ifr_metric;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000634
Denis Vlasenko360d9662008-12-02 18:18:50 +0000635 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000636 ife->mtu = 0;
637 if (ioctl(skfd, SIOCGIFMTU, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000638 ife->mtu = ifr.ifr_mtu;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000639
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000640 memset(&ife->map, 0, sizeof(struct ifmap));
Rob Landley93983042005-05-03 21:30:26 +0000641#ifdef SIOCGIFMAP
Denis Vlasenko360d9662008-12-02 18:18:50 +0000642 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Rob Landley93983042005-05-03 21:30:26 +0000643 if (ioctl(skfd, SIOCGIFMAP, &ifr) == 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000644 ife->map = ifr.ifr_map;
Rob Landley93983042005-05-03 21:30:26 +0000645#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000646
647#ifdef HAVE_TXQUEUELEN
Denis Vlasenko360d9662008-12-02 18:18:50 +0000648 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000649 ife->tx_queue_len = -1; /* unknown value */
650 if (ioctl(skfd, SIOCGIFTXQLEN, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000651 ife->tx_queue_len = ifr.ifr_qlen;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000652#else
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000653 ife->tx_queue_len = -1; /* unknown value */
Eric Andersenf15d4da2001-03-06 00:48:59 +0000654#endif
655
Denis Vlasenko360d9662008-12-02 18:18:50 +0000656 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000657 ifr.ifr_addr.sa_family = AF_INET;
658 memset(&ife->addr, 0, sizeof(struct sockaddr));
659 if (ioctl(skfd, SIOCGIFADDR, &ifr) == 0) {
660 ife->has_ip = 1;
661 ife->addr = ifr.ifr_addr;
Denis Vlasenko360d9662008-12-02 18:18:50 +0000662 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000663 memset(&ife->dstaddr, 0, sizeof(struct sockaddr));
664 if (ioctl(skfd, SIOCGIFDSTADDR, &ifr) >= 0)
665 ife->dstaddr = ifr.ifr_dstaddr;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000666
Denis Vlasenko360d9662008-12-02 18:18:50 +0000667 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000668 memset(&ife->broadaddr, 0, sizeof(struct sockaddr));
669 if (ioctl(skfd, SIOCGIFBRDADDR, &ifr) >= 0)
670 ife->broadaddr = ifr.ifr_broadaddr;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000671
Denis Vlasenko360d9662008-12-02 18:18:50 +0000672 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000673 memset(&ife->netmask, 0, sizeof(struct sockaddr));
674 if (ioctl(skfd, SIOCGIFNETMASK, &ifr) >= 0)
675 ife->netmask = ifr.ifr_netmask;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000676 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000677
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000678 close(skfd);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000679 return 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000680}
681
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000682static int do_if_fetch(struct interface *ife)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000683{
684 if (if_fetch(ife) < 0) {
Denis Vlasenko322661d2007-01-29 23:43:52 +0000685 const char *errmsg;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000686
687 if (errno == ENODEV) {
688 /* Give better error message for this case. */
Rob Landley4e3aff32006-05-29 04:37:28 +0000689 errmsg = "Device not found";
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000690 } else {
691 errmsg = strerror(errno);
692 }
Rob Landley4e3aff32006-05-29 04:37:28 +0000693 bb_error_msg("%s: error fetching interface information: %s",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000694 ife->name, errmsg);
695 return -1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000696 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000697 return 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000698}
699
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000700static const struct hwtype unspec_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000701 .name = "unspec",
702 .title = "UNSPEC",
703 .type = -1,
704 .print = UNSPEC_print
Eric Andersenf15d4da2001-03-06 00:48:59 +0000705};
706
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000707static const struct hwtype loop_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000708 .name = "loop",
709 .title = "Local Loopback",
710 .type = ARPHRD_LOOPBACK
Eric Andersenf15d4da2001-03-06 00:48:59 +0000711};
712
Eric Andersenf15d4da2001-03-06 00:48:59 +0000713/* Display an Ethernet address in readable format. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000714static char* FAST_FUNC ether_print(unsigned char *ptr)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000715{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000716 static char *buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000717
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000718 free(buff);
719 buff = xasprintf("%02X:%02X:%02X:%02X:%02X:%02X",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000720 (ptr[0] & 0377), (ptr[1] & 0377), (ptr[2] & 0377),
721 (ptr[3] & 0377), (ptr[4] & 0377), (ptr[5] & 0377)
722 );
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000723 return buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000724}
725
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000726static int FAST_FUNC ether_input(const char *bufp, struct sockaddr *sap);
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000727
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000728static const struct hwtype ether_hwtype = {
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000729 .name = "ether",
730 .title = "Ethernet",
731 .type = ARPHRD_ETHER,
732 .alen = ETH_ALEN,
733 .print = ether_print,
734 .input = ether_input
Eric Andersenf15d4da2001-03-06 00:48:59 +0000735};
736
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000737static unsigned hexchar2int(char c)
738{
739 if (isdigit(c))
740 return c - '0';
741 c &= ~0x20; /* a -> A */
742 if ((unsigned)(c - 'A') <= 5)
743 return c - ('A' - 10);
744 return ~0U;
745}
746
747/* Input an Ethernet address and convert to binary. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000748static int FAST_FUNC ether_input(const char *bufp, struct sockaddr *sap)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000749{
750 unsigned char *ptr;
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000751 char c;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000752 int i;
753 unsigned val;
754
755 sap->sa_family = ether_hwtype.type;
Denis Vlasenko731d3572007-02-02 01:16:33 +0000756 ptr = (unsigned char*) sap->sa_data;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000757
758 i = 0;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000759 while ((*bufp != '\0') && (i < ETH_ALEN)) {
760 val = hexchar2int(*bufp++) * 0x10;
761 if (val > 0xff) {
762 errno = EINVAL;
763 return -1;
764 }
765 c = *bufp;
766 if (c == ':' || c == 0)
767 val >>= 4;
768 else {
769 val |= hexchar2int(c);
770 if (val > 0xff) {
771 errno = EINVAL;
772 return -1;
773 }
774 }
775 if (c != 0)
776 bufp++;
777 *ptr++ = (unsigned char) val;
778 i++;
779
780 /* We might get a semicolon here - not required. */
781 if (*bufp == ':') {
782 bufp++;
783 }
784 }
785 return 0;
786}
787
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000788static const struct hwtype ppp_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000789 .name = "ppp",
790 .title = "Point-to-Point Protocol",
791 .type = ARPHRD_PPP
Eric Andersenf15d4da2001-03-06 00:48:59 +0000792};
793
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000794#if ENABLE_FEATURE_IPV6
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000795static const struct hwtype sit_hwtype = {
796 .name = "sit",
797 .title = "IPv6-in-IPv4",
798 .type = ARPHRD_SIT,
799 .print = UNSPEC_print,
800 .suppress_null_addr = 1
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000801};
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000802#endif
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000803#if ENABLE_FEATURE_HWIB
804static const struct hwtype ib_hwtype = {
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000805 .name = "infiniband",
806 .title = "InfiniBand",
807 .type = ARPHRD_INFINIBAND,
808 .alen = INFINIBAND_ALEN,
809 .print = UNSPEC_print,
810 .input = in_ib,
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000811};
812#endif
813
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000814
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000815static const struct hwtype *const hwtypes[] = {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000816 &loop_hwtype,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000817 &ether_hwtype,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000818 &ppp_hwtype,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000819 &unspec_hwtype,
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000820#if ENABLE_FEATURE_IPV6
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000821 &sit_hwtype,
822#endif
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000823#if ENABLE_FEATURE_HWIB
824 &ib_hwtype,
825#endif
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000826 NULL
Eric Andersenf15d4da2001-03-06 00:48:59 +0000827};
828
Eric Andersenf15d4da2001-03-06 00:48:59 +0000829#ifdef IFF_PORTSEL
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000830static const char *const if_port_text[] = {
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000831 /* Keep in step with <linux/netdevice.h> */
832 "unknown",
833 "10base2",
834 "10baseT",
835 "AUI",
836 "100baseT",
837 "100baseTX",
838 "100baseFX",
839 NULL
840};
841#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000842
843/* Check our hardware type table for this type. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000844const struct hwtype* FAST_FUNC get_hwtype(const char *name)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000845{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000846 const struct hwtype *const *hwp;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000847
848 hwp = hwtypes;
849 while (*hwp != NULL) {
850 if (!strcmp((*hwp)->name, name))
851 return (*hwp);
852 hwp++;
853 }
854 return NULL;
855}
856
857/* Check our hardware type table for this type. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000858const struct hwtype* FAST_FUNC get_hwntype(int type)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000859{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000860 const struct hwtype *const *hwp;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000861
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000862 hwp = hwtypes;
863 while (*hwp != NULL) {
864 if ((*hwp)->type == type)
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000865 return *hwp;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000866 hwp++;
867 }
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000868 return NULL;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000869}
870
871/* return 1 if address is all zeros */
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000872static int hw_null_address(const struct hwtype *hw, void *ap)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000873{
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000874 int i;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000875 unsigned char *address = (unsigned char *) ap;
876
877 for (i = 0; i < hw->alen; i++)
878 if (address[i])
879 return 0;
880 return 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000881}
882
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000883static const char TRext[] ALIGN1 = "\0\0\0Ki\0Mi\0Gi\0Ti";
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000884
885static void print_bytes_scaled(unsigned long long ull, const char *end)
886{
887 unsigned long long int_part;
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000888 const char *ext;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000889 unsigned int frac_part;
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000890 int i;
891
892 frac_part = 0;
893 ext = TRext;
894 int_part = ull;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000895 i = 4;
896 do {
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000897 if (int_part >= 1024) {
898 frac_part = ((((unsigned int) int_part) & (1024-1)) * 10) / 1024;
899 int_part /= 1024;
900 ext += 3; /* KiB, MiB, GiB, TiB */
901 }
902 --i;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000903 } while (i);
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000904
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000905 printf("X bytes:%llu (%llu.%u %sB)%s", ull, int_part, frac_part, ext, end);
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000906}
907
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000908
909#ifdef HAVE_AFINET6
910#define IPV6_ADDR_ANY 0x0000U
911
912#define IPV6_ADDR_UNICAST 0x0001U
913#define IPV6_ADDR_MULTICAST 0x0002U
914#define IPV6_ADDR_ANYCAST 0x0004U
915
916#define IPV6_ADDR_LOOPBACK 0x0010U
917#define IPV6_ADDR_LINKLOCAL 0x0020U
918#define IPV6_ADDR_SITELOCAL 0x0040U
919
920#define IPV6_ADDR_COMPATv4 0x0080U
921
922#define IPV6_ADDR_SCOPE_MASK 0x00f0U
923
924#define IPV6_ADDR_MAPPED 0x1000U
925#define IPV6_ADDR_RESERVED 0x2000U /* reserved address space */
926
927
928static void ife_print6(struct interface *ptr)
929{
930
931 FILE *f;
932 char addr6[40], devname[20];
933 struct sockaddr_in6 sap;
934 int plen, scope, dad_status, if_idx;
935 char addr6p[8][5];
936
937 f = fopen_for_read(_PATH_PROCNET_IFINET6);
938 if (f == NULL)
939 return;
940
941 while (fscanf
942 (f, "%4s%4s%4s%4s%4s%4s%4s%4s %08x %02x %02x %02x %20s\n",
943 addr6p[0], addr6p[1], addr6p[2], addr6p[3], addr6p[4],
944 addr6p[5], addr6p[6], addr6p[7], &if_idx, &plen, &scope,
945 &dad_status, devname) != EOF
946 ) {
947 if (!strcmp(devname, ptr->name)) {
948 sprintf(addr6, "%s:%s:%s:%s:%s:%s:%s:%s",
949 addr6p[0], addr6p[1], addr6p[2], addr6p[3],
950 addr6p[4], addr6p[5], addr6p[6], addr6p[7]);
951 inet_pton(AF_INET6, addr6,
952 (struct sockaddr *) &sap.sin6_addr);
953 sap.sin6_family = AF_INET6;
954 printf(" inet6 addr: %s/%d",
955 INET6_sprint((struct sockaddr *) &sap, 1),
956 plen);
957 printf(" Scope:");
958 switch (scope & IPV6_ADDR_SCOPE_MASK) {
959 case 0:
960 puts("Global");
961 break;
962 case IPV6_ADDR_LINKLOCAL:
963 puts("Link");
964 break;
965 case IPV6_ADDR_SITELOCAL:
966 puts("Site");
967 break;
968 case IPV6_ADDR_COMPATv4:
969 puts("Compat");
970 break;
971 case IPV6_ADDR_LOOPBACK:
972 puts("Host");
973 break;
974 default:
975 puts("Unknown");
976 }
977 }
978 }
979 fclose(f);
980}
981#else
Denis Vlasenko00d84172008-11-24 07:34:42 +0000982#define ife_print6(a) ((void)0)
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000983#endif
984
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000985static void ife_print(struct interface *ptr)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000986{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000987 const struct aftype *ap;
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000988 const struct hwtype *hw;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000989 int hf;
990 int can_compress = 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000991
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000992 ap = get_afntype(ptr->addr.sa_family);
993 if (ap == NULL)
994 ap = get_afntype(0);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000995
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000996 hf = ptr->type;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000997
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000998 if (hf == ARPHRD_CSLIP || hf == ARPHRD_CSLIP6)
999 can_compress = 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001000
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001001 hw = get_hwntype(hf);
1002 if (hw == NULL)
1003 hw = get_hwntype(-1);
Eric Andersenf15d4da2001-03-06 00:48:59 +00001004
Rob Landley4e3aff32006-05-29 04:37:28 +00001005 printf("%-9.9s Link encap:%s ", ptr->name, hw->title);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001006 /* For some hardware types (eg Ash, ATM) we don't print the
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001007 hardware address if it's null. */
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +00001008 if (hw->print != NULL
1009 && !(hw_null_address(hw, ptr->hwaddr) && hw->suppress_null_addr)
1010 ) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001011 printf("HWaddr %s ", hw->print((unsigned char *)ptr->hwaddr));
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +00001012 }
Eric Andersenf15d4da2001-03-06 00:48:59 +00001013#ifdef IFF_PORTSEL
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001014 if (ptr->flags & IFF_PORTSEL) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001015 printf("Media:%s", if_port_text[ptr->map.port] /* [0] */);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001016 if (ptr->flags & IFF_AUTOMEDIA)
Rob Landley4e3aff32006-05-29 04:37:28 +00001017 printf("(auto)");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001018 }
Eric Andersenf15d4da2001-03-06 00:48:59 +00001019#endif
Denis Vlasenko4daad902007-09-27 10:20:47 +00001020 bb_putchar('\n');
Eric Andersenf15d4da2001-03-06 00:48:59 +00001021
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001022 if (ptr->has_ip) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001023 printf(" %s addr:%s ", ap->name,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001024 ap->sprint(&ptr->addr, 1));
1025 if (ptr->flags & IFF_POINTOPOINT) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001026 printf(" P-t-P:%s ", ap->sprint(&ptr->dstaddr, 1));
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001027 }
1028 if (ptr->flags & IFF_BROADCAST) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001029 printf(" Bcast:%s ", ap->sprint(&ptr->broadaddr, 1));
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001030 }
Rob Landley4e3aff32006-05-29 04:37:28 +00001031 printf(" Mask:%s\n", ap->sprint(&ptr->netmask, 1));
Eric Andersenf15d4da2001-03-06 00:48:59 +00001032 }
Eric Andersenf15d4da2001-03-06 00:48:59 +00001033
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +00001034 ife_print6(ptr);
Eric Andersenf15d4da2001-03-06 00:48:59 +00001035
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001036 printf(" ");
1037 /* DONT FORGET TO ADD THE FLAGS IN ife_print_short, too */
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001038
1039 if (ptr->flags == 0) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001040 printf("[NO FLAGS] ");
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001041 } else {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001042 static const char ife_print_flags_strs[] ALIGN1 =
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001043 "UP\0"
1044 "BROADCAST\0"
1045 "DEBUG\0"
1046 "LOOPBACK\0"
1047 "POINTOPOINT\0"
1048 "NOTRAILERS\0"
1049 "RUNNING\0"
1050 "NOARP\0"
1051 "PROMISC\0"
1052 "ALLMULTI\0"
1053 "SLAVE\0"
1054 "MASTER\0"
1055 "MULTICAST\0"
1056#ifdef HAVE_DYNAMIC
1057 "DYNAMIC\0"
1058#endif
1059 ;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001060 static const unsigned short ife_print_flags_mask[] ALIGN2 = {
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001061 IFF_UP,
1062 IFF_BROADCAST,
1063 IFF_DEBUG,
1064 IFF_LOOPBACK,
1065 IFF_POINTOPOINT,
1066 IFF_NOTRAILERS,
1067 IFF_RUNNING,
1068 IFF_NOARP,
1069 IFF_PROMISC,
1070 IFF_ALLMULTI,
1071 IFF_SLAVE,
1072 IFF_MASTER,
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001073 IFF_MULTICAST
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001074#ifdef HAVE_DYNAMIC
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001075 ,IFF_DYNAMIC
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001076#endif
1077 };
1078 const unsigned short *mask = ife_print_flags_mask;
1079 const char *str = ife_print_flags_strs;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001080 do {
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001081 if (ptr->flags & *mask) {
1082 printf("%s ", str);
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001083 }
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001084 mask++;
1085 str += strlen(str) + 1;
1086 } while (*str);
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001087 }
1088
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001089 /* DONT FORGET TO ADD THE FLAGS IN ife_print_short */
Rob Landley4e3aff32006-05-29 04:37:28 +00001090 printf(" MTU:%d Metric:%d", ptr->mtu, ptr->metric ? ptr->metric : 1);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001091#ifdef SIOCSKEEPALIVE
1092 if (ptr->outfill || ptr->keepalive)
Rob Landley4e3aff32006-05-29 04:37:28 +00001093 printf(" Outfill:%d Keepalive:%d", ptr->outfill, ptr->keepalive);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001094#endif
Denis Vlasenko4daad902007-09-27 10:20:47 +00001095 bb_putchar('\n');
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001096
1097 /* If needed, display the interface statistics. */
1098
1099 if (ptr->statistics_valid) {
1100 /* XXX: statistics are currently only printed for the primary address,
1101 * not for the aliases, although strictly speaking they're shared
1102 * by all addresses.
1103 */
1104 printf(" ");
1105
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001106 printf("RX packets:%llu errors:%lu dropped:%lu overruns:%lu frame:%lu\n",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001107 ptr->stats.rx_packets, ptr->stats.rx_errors,
1108 ptr->stats.rx_dropped, ptr->stats.rx_fifo_errors,
1109 ptr->stats.rx_frame_errors);
1110 if (can_compress)
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001111 printf(" compressed:%lu\n",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001112 ptr->stats.rx_compressed);
1113 printf(" ");
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001114 printf("TX packets:%llu errors:%lu dropped:%lu overruns:%lu carrier:%lu\n",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001115 ptr->stats.tx_packets, ptr->stats.tx_errors,
1116 ptr->stats.tx_dropped, ptr->stats.tx_fifo_errors,
1117 ptr->stats.tx_carrier_errors);
Bernhard Reutner-Fischer214744d2006-03-30 13:38:19 +00001118 printf(" collisions:%lu ", ptr->stats.collisions);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001119 if (can_compress)
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001120 printf("compressed:%lu ", ptr->stats.tx_compressed);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001121 if (ptr->tx_queue_len != -1)
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001122 printf("txqueuelen:%d ", ptr->tx_queue_len);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001123 printf("\n R");
1124 print_bytes_scaled(ptr->stats.rx_bytes, " T");
1125 print_bytes_scaled(ptr->stats.tx_bytes, "\n");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001126 }
1127
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +00001128 if (ptr->map.irq || ptr->map.mem_start
1129 || ptr->map.dma || ptr->map.base_addr
1130 ) {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001131 printf(" ");
1132 if (ptr->map.irq)
Rob Landley4e3aff32006-05-29 04:37:28 +00001133 printf("Interrupt:%d ", ptr->map.irq);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001134 if (ptr->map.base_addr >= 0x100) /* Only print devices using it for
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001135 I/O maps */
Rob Landley4e3aff32006-05-29 04:37:28 +00001136 printf("Base address:0x%lx ",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001137 (unsigned long) ptr->map.base_addr);
1138 if (ptr->map.mem_start) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001139 printf("Memory:%lx-%lx ", ptr->map.mem_start,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001140 ptr->map.mem_end);
1141 }
1142 if (ptr->map.dma)
Rob Landley4e3aff32006-05-29 04:37:28 +00001143 printf("DMA chan:%x ", ptr->map.dma);
Denis Vlasenko4daad902007-09-27 10:20:47 +00001144 bb_putchar('\n');
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001145 }
Denis Vlasenko4daad902007-09-27 10:20:47 +00001146 bb_putchar('\n');
Eric Andersenf15d4da2001-03-06 00:48:59 +00001147}
1148
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001149static int do_if_print(struct interface *ife) /*, int *opt_a)*/
Eric Andersenf15d4da2001-03-06 00:48:59 +00001150{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001151 int res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001152
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001153 res = do_if_fetch(ife);
1154 if (res >= 0) {
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001155 if ((ife->flags & IFF_UP) || interface_opt_a)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001156 ife_print(ife);
1157 }
1158 return res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001159}
1160
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +00001161static struct interface *lookup_interface(char *name)
Eric Andersenf15d4da2001-03-06 00:48:59 +00001162{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001163 struct interface *ife = NULL;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001164
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001165 if (if_readlist_proc(name) < 0)
1166 return NULL;
1167 ife = add_interface(name);
1168 return ife;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001169}
1170
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001171#ifdef UNUSED
1172static int for_all_interfaces(int (*doit) (struct interface *, void *),
1173 void *cookie)
1174{
1175 struct interface *ife;
1176
1177 if (!int_list && (if_readlist() < 0))
1178 return -1;
1179 for (ife = int_list; ife; ife = ife->next) {
1180 int err = doit(ife, cookie);
1181
1182 if (err)
1183 return err;
1184 }
1185 return 0;
1186}
1187#endif
1188
Eric Andersenf15d4da2001-03-06 00:48:59 +00001189/* for ipv4 add/del modes */
1190static int if_print(char *ifname)
1191{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001192 struct interface *ife;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001193 int res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001194
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001195 if (!ifname) {
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001196 /*res = for_all_interfaces(do_if_print, &interface_opt_a);*/
1197 if (!int_list && (if_readlist() < 0))
1198 return -1;
1199 for (ife = int_list; ife; ife = ife->next) {
1200 int err = do_if_print(ife); /*, &interface_opt_a);*/
1201 if (err)
1202 return err;
1203 }
1204 return 0;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001205 }
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001206 ife = lookup_interface(ifname);
1207 res = do_if_fetch(ife);
1208 if (res >= 0)
1209 ife_print(ife);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001210 return res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001211}
1212
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +00001213#if ENABLE_FEATURE_HWIB
1214/* Input an Infiniband address and convert to binary. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001215int FAST_FUNC in_ib(const char *bufp, struct sockaddr *sap)
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +00001216{
Denis Vlasenko3b162ec2008-06-04 07:59:51 +00001217 sap->sa_family = ib_hwtype.type;
Denys Vlasenko48363312010-04-04 15:29:32 +02001218//TODO: error check?
1219 hex2bin((char*)sap->sa_data, bufp, INFINIBAND_ALEN);
1220# ifdef HWIB_DEBUG
1221 fprintf(stderr, "in_ib(%s): %s\n", bufp, UNSPEC_print(sap->sa_data));
1222# endif
Denis Vlasenko3b162ec2008-06-04 07:59:51 +00001223 return 0;
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +00001224}
1225#endif
1226
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001227int FAST_FUNC display_interfaces(char *ifname)
Eric Andersenf15d4da2001-03-06 00:48:59 +00001228{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001229 int status;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001230
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001231 status = if_print(ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +00001232
1233 return (status < 0); /* status < 0 == 1 -- error */
Eric Andersenf15d4da2001-03-06 00:48:59 +00001234}