blob: 8e95d942ab19f5aa8b5f18dfc14644c79d98a491 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020022 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
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.
Tanguy Pruvot823694d2012-11-18 13:20:29 +010030 * 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 */
Dan Fandrichf533ec82011-06-10 05:17:59 +020033
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000034#include "libbb.h"
Denys Vlasenkobb1dcc92010-02-02 12:45:38 +010035#include "inet_common.h"
Dan Fandrichf533ec82011-06-10 05:17:59 +020036#include <net/if.h>
37#include <net/if_arp.h>
38#ifdef HAVE_NET_ETHERNET_H
39# include <net/ethernet.h>
40#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +000041
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +000042#if ENABLE_FEATURE_HWIB
43/* #include <linux/if_infiniband.h> */
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020044# undef INFINIBAND_ALEN
45# define INFINIBAND_ALEN 20
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +000046#endif
47
Denis Vlasenko1cc70222007-03-15 19:46:43 +000048#if ENABLE_FEATURE_IPV6
Glenn L McGrathb54a7482003-08-29 11:34:08 +000049# define HAVE_AFINET6 1
50#else
51# undef HAVE_AFINET6
52#endif
53
Eric Andersenf15d4da2001-03-06 00:48:59 +000054#define _PATH_PROCNET_DEV "/proc/net/dev"
Eric Andersen51b8bd62002-07-03 11:46:38 +000055#define _PATH_PROCNET_IFINET6 "/proc/net/if_inet6"
Eric Andersenf15d4da2001-03-06 00:48:59 +000056
maxwen27116ba2015-08-14 21:41:28 +020057#if defined(HAVE_AFINET6) && !defined(BIONIC_L)
58# ifndef _LINUX_IN6_H
Eric Andersenf15d4da2001-03-06 00:48:59 +000059/*
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020060 * This is from linux/include/net/ipv6.h
Eric Andersenf15d4da2001-03-06 00:48:59 +000061 */
Eric Andersenf15d4da2001-03-06 00:48:59 +000062struct 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};
maxwen27116ba2015-08-14 21:41:28 +020067# endif
Denis Vlasenkoaad49992006-11-22 02:12:07 +000068#endif /* HAVE_AFINET6 */
Eric Andersenf15d4da2001-03-06 00:48:59 +000069
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000070/* Defines for glibc2.0 users. */
71#ifndef SIOCSIFTXQLEN
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020072# define SIOCSIFTXQLEN 0x8943
73# define SIOCGIFTXQLEN 0x8942
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000074#endif
75
76/* ifr_qlen is ifru_ivalue, but it isn't present in 2.0 kernel headers */
77#ifndef ifr_qlen
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020078# define ifr_qlen ifr_ifru.ifru_mtu
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000079#endif
80
81#ifndef HAVE_TXQUEUELEN
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020082# define HAVE_TXQUEUELEN 1
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000083#endif
84
85#ifndef IFF_DYNAMIC
Denys Vlasenko5342c3f2010-04-01 15:09:44 +020086# define IFF_DYNAMIC 0x8000 /* dialup device with changing addresses */
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000087#endif
88
Eric Andersenf15d4da2001-03-06 00:48:59 +000089/* Display an Internet socket address. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000090static const char* FAST_FUNC INET_sprint(struct sockaddr *sap, int numeric)
Eric Andersenf15d4da2001-03-06 00:48:59 +000091{
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +000092 static char *buff; /* defaults to NULL */
Eric Andersenf15d4da2001-03-06 00:48:59 +000093
Denis Vlasenko6d9ea242007-06-19 11:12:46 +000094 free(buff);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +000095 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
Denis Vlasenko7f2527e2007-03-14 22:11:20 +000096 return "[NONE SET]";
Denis Vlasenko6d9ea242007-06-19 11:12:46 +000097 buff = INET_rresolve((struct sockaddr_in *) sap, numeric, 0xffffff00);
Denis Vlasenkoaad49992006-11-22 02:12:07 +000098 return buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +000099}
100
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000101#ifdef UNUSED_AND_BUGGY
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000102static int INET_getsock(char *bufp, struct sockaddr *sap)
103{
104 char *sp = bufp, *bp;
105 unsigned int i;
106 unsigned val;
107 struct sockaddr_in *sock_in;
108
109 sock_in = (struct sockaddr_in *) sap;
110 sock_in->sin_family = AF_INET;
111 sock_in->sin_port = 0;
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000112
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000113 val = 0;
114 bp = (char *) &val;
115 for (i = 0; i < sizeof(sock_in->sin_addr.s_addr); i++) {
116 *sp = toupper(*sp);
117
118 if ((unsigned)(*sp - 'A') <= 5)
119 bp[i] |= (int) (*sp - ('A' - 10));
120 else if (isdigit(*sp))
121 bp[i] |= (int) (*sp - '0');
122 else
123 return -1;
124
125 bp[i] <<= 4;
126 sp++;
127 *sp = toupper(*sp);
128
129 if ((unsigned)(*sp - 'A') <= 5)
130 bp[i] |= (int) (*sp - ('A' - 10));
131 else if (isdigit(*sp))
132 bp[i] |= (int) (*sp - '0');
133 else
134 return -1;
135
136 sp++;
137 }
138 sock_in->sin_addr.s_addr = htonl(val);
139
140 return (sp - bufp);
141}
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000142#endif
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000143
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000144static int FAST_FUNC INET_input(/*int type,*/ const char *bufp, struct sockaddr *sap)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000145{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000146 return INET_resolve(bufp, (struct sockaddr_in *) sap, 0);
147/*
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000148 switch (type) {
149 case 1:
150 return (INET_getsock(bufp, sap));
151 case 256:
152 return (INET_resolve(bufp, (struct sockaddr_in *) sap, 1));
153 default:
154 return (INET_resolve(bufp, (struct sockaddr_in *) sap, 0));
155 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000156*/
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000157}
158
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000159static const struct aftype inet_aftype = {
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000160 .name = "inet",
161 .title = "DARPA Internet",
162 .af = AF_INET,
163 .alen = 4,
164 .sprint = INET_sprint,
165 .input = INET_input,
Eric Andersenf15d4da2001-03-06 00:48:59 +0000166};
167
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000168#ifdef HAVE_AFINET6
Eric Andersen51b8bd62002-07-03 11:46:38 +0000169
Eric Andersen51b8bd62002-07-03 11:46:38 +0000170/* Display an Internet socket address. */
171/* dirty! struct sockaddr usually doesn't suffer for inet6 addresses, fst. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000172static const char* FAST_FUNC INET6_sprint(struct sockaddr *sap, int numeric)
Eric Andersen51b8bd62002-07-03 11:46:38 +0000173{
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000174 static char *buff;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000175
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000176 free(buff);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000177 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000178 return "[NONE SET]";
Denis Vlasenko6d9ea242007-06-19 11:12:46 +0000179 buff = INET6_rresolve((struct sockaddr_in6 *) sap, numeric);
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000180 return buff;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000181}
182
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000183#ifdef UNUSED
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000184static int INET6_getsock(char *bufp, struct sockaddr *sap)
185{
186 struct sockaddr_in6 *sin6;
187
188 sin6 = (struct sockaddr_in6 *) sap;
189 sin6->sin6_family = AF_INET6;
190 sin6->sin6_port = 0;
191
192 if (inet_pton(AF_INET6, bufp, sin6->sin6_addr.s6_addr) <= 0)
193 return -1;
194
195 return 16; /* ?;) */
196}
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000197#endif
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000198
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000199static int FAST_FUNC INET6_input(/*int type,*/ const char *bufp, struct sockaddr *sap)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000200{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000201 return INET6_resolve(bufp, (struct sockaddr_in6 *) sap);
202/*
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000203 switch (type) {
204 case 1:
205 return (INET6_getsock(bufp, sap));
206 default:
207 return (INET6_resolve(bufp, (struct sockaddr_in6 *) sap));
208 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000209*/
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000210}
211
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000212static const struct aftype inet6_aftype = {
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000213 .name = "inet6",
214 .title = "IPv6",
215 .af = AF_INET6,
216 .alen = sizeof(struct in6_addr),
217 .sprint = INET6_sprint,
218 .input = INET6_input,
Eric Andersen51b8bd62002-07-03 11:46:38 +0000219};
220
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000221#endif /* HAVE_AFINET6 */
Eric Andersen51b8bd62002-07-03 11:46:38 +0000222
Eric Andersenf15d4da2001-03-06 00:48:59 +0000223/* Display an UNSPEC address. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000224static char* FAST_FUNC UNSPEC_print(unsigned char *ptr)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000225{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000226 static char *buff;
227
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000228 char *pos;
229 unsigned int i;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000230
Denis Vlasenko43d5d422008-05-15 19:44:46 +0000231 if (!buff)
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000232 buff = xmalloc(sizeof(struct sockaddr) * 3 + 1);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000233 pos = buff;
234 for (i = 0; i < sizeof(struct sockaddr); i++) {
235 /* careful -- not every libc's sprintf returns # bytes written */
236 sprintf(pos, "%02X-", (*ptr++ & 0377));
237 pos += 3;
238 }
239 /* Erase trailing "-". Works as long as sizeof(struct sockaddr) != 0 */
240 *--pos = '\0';
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000241 return buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000242}
243
244/* Display an UNSPEC socket address. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000245static const char* FAST_FUNC UNSPEC_sprint(struct sockaddr *sap, int numeric UNUSED_PARAM)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000246{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000247 if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000248 return "[NONE SET]";
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000249 return UNSPEC_print((unsigned char *)sap->sa_data);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000250}
251
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000252static const struct aftype unspec_aftype = {
253 .name = "unspec",
254 .title = "UNSPEC",
255 .af = AF_UNSPEC,
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000256 .alen = 0,
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000257 .print = UNSPEC_print,
258 .sprint = UNSPEC_sprint,
Eric Andersenf15d4da2001-03-06 00:48:59 +0000259};
260
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000261static const struct aftype *const aftypes[] = {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000262 &inet_aftype,
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000263#ifdef HAVE_AFINET6
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000264 &inet6_aftype,
Eric Andersenf15d4da2001-03-06 00:48:59 +0000265#endif
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000266 &unspec_aftype,
267 NULL
Eric Andersenf15d4da2001-03-06 00:48:59 +0000268};
269
Eric Andersenf15d4da2001-03-06 00:48:59 +0000270/* Check our protocol family table for this family. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000271const struct aftype* FAST_FUNC get_aftype(const char *name)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000272{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000273 const struct aftype *const *afp;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000274
275 afp = aftypes;
276 while (*afp != NULL) {
277 if (!strcmp((*afp)->name, name))
278 return (*afp);
279 afp++;
280 }
281 return NULL;
282}
283
284/* Check our protocol family table for this family. */
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000285static const struct aftype *get_afntype(int af)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000286{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000287 const struct aftype *const *afp;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000288
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000289 afp = aftypes;
290 while (*afp != NULL) {
291 if ((*afp)->af == af)
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000292 return *afp;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000293 afp++;
294 }
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000295 return NULL;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000296}
297
Eric Andersenf15d4da2001-03-06 00:48:59 +0000298struct user_net_device_stats {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000299 unsigned long long rx_packets; /* total packets received */
300 unsigned long long tx_packets; /* total packets transmitted */
301 unsigned long long rx_bytes; /* total bytes received */
302 unsigned long long tx_bytes; /* total bytes transmitted */
303 unsigned long rx_errors; /* bad packets received */
304 unsigned long tx_errors; /* packet transmit problems */
305 unsigned long rx_dropped; /* no space in linux buffers */
306 unsigned long tx_dropped; /* no space available in linux */
307 unsigned long rx_multicast; /* multicast packets received */
308 unsigned long rx_compressed;
309 unsigned long tx_compressed;
310 unsigned long collisions;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000311
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000312 /* detailed rx_errors: */
313 unsigned long rx_length_errors;
314 unsigned long rx_over_errors; /* receiver ring buff overflow */
315 unsigned long rx_crc_errors; /* recved pkt with crc error */
316 unsigned long rx_frame_errors; /* recv'd frame alignment error */
317 unsigned long rx_fifo_errors; /* recv'r fifo overrun */
318 unsigned long rx_missed_errors; /* receiver missed packet */
319 /* detailed tx_errors */
320 unsigned long tx_aborted_errors;
321 unsigned long tx_carrier_errors;
322 unsigned long tx_fifo_errors;
323 unsigned long tx_heartbeat_errors;
324 unsigned long tx_window_errors;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000325};
326
327struct interface {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000328 struct interface *next, *prev;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000329 char name[IFNAMSIZ]; /* interface name */
330 short type; /* if type */
331 short flags; /* various flags */
332 int metric; /* routing metric */
333 int mtu; /* MTU value */
334 int tx_queue_len; /* transmit queue length */
335 struct ifmap map; /* hardware setup */
336 struct sockaddr addr; /* IP address */
337 struct sockaddr dstaddr; /* P-P IP address */
338 struct sockaddr broadaddr; /* IP broadcast address */
339 struct sockaddr netmask; /* IP network mask */
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000340 int has_ip;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000341 char hwaddr[32]; /* HW address */
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000342 int statistics_valid;
Denis Vlasenko01eaee92008-04-21 02:21:45 +0000343 struct user_net_device_stats stats; /* statistics */
344 int keepalive; /* keepalive value for SLIP */
345 int outfill; /* outfill value for SLIP */
Eric Andersenf15d4da2001-03-06 00:48:59 +0000346};
347
348
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000349smallint interface_opt_a; /* show all interfaces */
Eric Andersenf15d4da2001-03-06 00:48:59 +0000350
Eric Andersenf15d4da2001-03-06 00:48:59 +0000351static struct interface *int_list, *int_last;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000352
353
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000354#if 0
Eric Andersenf15d4da2001-03-06 00:48:59 +0000355/* like strcmp(), but knows about numbers */
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000356except that the freshly added calls to xatoul() brf on ethernet aliases with
357uClibc with e.g.: ife->name='lo' name='eth0:1'
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000358static int nstrcmp(const char *a, const char *b)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000359{
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000360 const char *a_ptr = a;
361 const char *b_ptr = b;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000362
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000363 while (*a == *b) {
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000364 if (*a == '\0') {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000365 return 0;
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000366 }
367 if (!isdigit(*a) && isdigit(*(a+1))) {
368 a_ptr = a+1;
369 b_ptr = b+1;
370 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000371 a++;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000372 b++;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000373 }
Glenn L McGrath2e99d432004-07-23 01:49:46 +0000374
375 if (isdigit(*a) && isdigit(*b)) {
Denis Vlasenko13858992006-10-08 12:49:22 +0000376 return xatoul(a_ptr) > xatoul(b_ptr) ? 1 : -1;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000377 }
378 return *a - *b;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000379}
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000380#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000381
382static struct interface *add_interface(char *name)
383{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000384 struct interface *ife, **nextp, *new;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000385
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000386 for (ife = int_last; ife; ife = ife->prev) {
Bernhard Reutner-Fischer57d83ff2006-12-07 12:25:17 +0000387 int n = /*n*/strcmp(ife->name, name);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000388
389 if (n == 0)
390 return ife;
391 if (n < 0)
392 break;
393 }
Rob Landleya6e131d2006-05-29 06:43:55 +0000394
395 new = xzalloc(sizeof(*new));
Denis Vlasenko360d9662008-12-02 18:18:50 +0000396 strncpy_IFNAMSIZ(new->name, name);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000397 nextp = ife ? &ife->next : &int_list;
398 new->prev = ife;
399 new->next = *nextp;
400 if (new->next)
401 new->next->prev = new;
402 else
403 int_last = new;
404 *nextp = new;
405 return new;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000406}
407
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000408static char *get_name(char *name, char *p)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000409{
Rob Landley9fe801e2006-06-20 21:13:29 +0000410 /* Extract <name> from nul-terminated p where p matches
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200411 * <name>: after leading whitespace.
412 * If match is not made, set name empty and return unchanged p
413 */
414 char *nameend;
415 char *namestart = skip_whitespace(p);
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000416
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000417 nameend = namestart;
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200418 while (*nameend && *nameend != ':' && !isspace(*nameend))
Eric Andersen9940e082004-08-12 16:52:00 +0000419 nameend++;
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200420 if (*nameend == ':') {
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000421 if ((nameend - namestart) < IFNAMSIZ) {
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200422 memcpy(name, namestart, nameend - namestart);
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000423 name[nameend - namestart] = '\0';
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200424 p = nameend;
Eric Andersen9940e082004-08-12 16:52:00 +0000425 } else {
426 /* Interface name too large */
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000427 name[0] = '\0';
Eric Andersen9940e082004-08-12 16:52:00 +0000428 }
429 } else {
Rob Landley9fe801e2006-06-20 21:13:29 +0000430 /* trailing ':' not found - return empty */
Denis Vlasenko11c23d72007-10-11 19:53:10 +0000431 name[0] = '\0';
Eric Andersenf15d4da2001-03-06 00:48:59 +0000432 }
Eric Andersen6fea7322004-08-26 21:45:21 +0000433 return p + 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000434}
435
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000436/* If scanf supports size qualifiers for %n conversions, then we can
437 * use a modified fmt that simply stores the position in the fields
438 * having no associated fields in the proc string. Of course, we need
439 * to zero them again when we're done. But that is smaller than the
440 * old approach of multiple scanf occurrences with large numbers of
441 * args. */
442
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000443/* static const char *const ss_fmt[] = { */
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000444/* "%lln%llu%lu%lu%lu%lu%ln%ln%lln%llu%lu%lu%lu%lu%lu", */
445/* "%llu%llu%lu%lu%lu%lu%ln%ln%llu%llu%lu%lu%lu%lu%lu", */
446/* "%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 +0000447/* }; */
448
449 /* Lie about the size of the int pointed to for %n. */
450#if INT_MAX == LONG_MAX
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000451static const char *const ss_fmt[] = {
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000452 "%n%llu%u%u%u%u%n%n%n%llu%u%u%u%u%u",
453 "%llu%llu%u%u%u%u%n%n%llu%llu%u%u%u%u%u",
454 "%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 +0000455};
456#else
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000457static const char *const ss_fmt[] = {
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000458 "%n%llu%lu%lu%lu%lu%n%n%n%llu%lu%lu%lu%lu%lu",
459 "%llu%llu%lu%lu%lu%lu%n%n%llu%llu%lu%lu%lu%lu%lu",
460 "%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 +0000461};
462
463#endif
464
465static void get_dev_fields(char *bp, struct interface *ife, int procnetdev_vsn)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000466{
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000467 memset(&ife->stats, 0, sizeof(struct user_net_device_stats));
468
469 sscanf(bp, ss_fmt[procnetdev_vsn],
470 &ife->stats.rx_bytes, /* missing for 0 */
471 &ife->stats.rx_packets,
472 &ife->stats.rx_errors,
473 &ife->stats.rx_dropped,
474 &ife->stats.rx_fifo_errors,
475 &ife->stats.rx_frame_errors,
476 &ife->stats.rx_compressed, /* missing for <= 1 */
477 &ife->stats.rx_multicast, /* missing for <= 1 */
478 &ife->stats.tx_bytes, /* missing for 0 */
479 &ife->stats.tx_packets,
480 &ife->stats.tx_errors,
481 &ife->stats.tx_dropped,
482 &ife->stats.tx_fifo_errors,
483 &ife->stats.collisions,
484 &ife->stats.tx_carrier_errors,
485 &ife->stats.tx_compressed /* missing for <= 1 */
486 );
487
488 if (procnetdev_vsn <= 1) {
489 if (procnetdev_vsn == 0) {
490 ife->stats.rx_bytes = 0;
491 ife->stats.tx_bytes = 0;
492 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000493 ife->stats.rx_multicast = 0;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000494 ife->stats.rx_compressed = 0;
495 ife->stats.tx_compressed = 0;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000496 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000497}
498
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000499static int procnetdev_version(char *buf)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000500{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000501 if (strstr(buf, "compressed"))
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000502 return 2;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000503 if (strstr(buf, "bytes"))
504 return 1;
505 return 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000506}
507
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000508static int if_readconf(void)
509{
510 int numreqs = 30;
511 struct ifconf ifc;
512 struct ifreq *ifr;
513 int n, err = -1;
514 int skfd;
515
516 ifc.ifc_buf = NULL;
517
518 /* SIOCGIFCONF currently seems to only work properly on AF_INET sockets
519 (as of 2.1.128) */
520 skfd = socket(AF_INET, SOCK_DGRAM, 0);
521 if (skfd < 0) {
522 bb_perror_msg("error: no inet socket available");
523 return -1;
524 }
525
526 for (;;) {
527 ifc.ifc_len = sizeof(struct ifreq) * numreqs;
528 ifc.ifc_buf = xrealloc(ifc.ifc_buf, ifc.ifc_len);
529
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000530 if (ioctl_or_warn(skfd, SIOCGIFCONF, &ifc) < 0) {
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000531 goto out;
532 }
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000533 if (ifc.ifc_len == (int)(sizeof(struct ifreq) * numreqs)) {
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000534 /* assume it overflowed and try again */
535 numreqs += 10;
536 continue;
537 }
538 break;
539 }
540
541 ifr = ifc.ifc_req;
542 for (n = 0; n < ifc.ifc_len; n += sizeof(struct ifreq)) {
543 add_interface(ifr->ifr_name);
544 ifr++;
545 }
546 err = 0;
547
548 out:
549 close(skfd);
550 free(ifc.ifc_buf);
551 return err;
552}
553
Eric Andersenf15d4da2001-03-06 00:48:59 +0000554static int if_readlist_proc(char *target)
555{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000556 static smallint proc_read;
557
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000558 FILE *fh;
559 char buf[512];
560 struct interface *ife;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000561 int err, procnetdev_vsn;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000562
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000563 if (proc_read)
564 return 0;
565 if (!target)
566 proc_read = 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000567
Denis Vlasenkof90ab182008-03-20 21:19:35 +0000568 fh = fopen_or_warn(_PATH_PROCNET_DEV, "r");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000569 if (!fh) {
Eric Andersenf15d4da2001-03-06 00:48:59 +0000570 return if_readconf();
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000571 }
572 fgets(buf, sizeof buf, fh); /* eat line */
573 fgets(buf, sizeof buf, fh);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000574
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000575 procnetdev_vsn = procnetdev_version(buf);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000576
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000577 err = 0;
578 while (fgets(buf, sizeof buf, fh)) {
Eric Andersenf96675b2003-07-28 06:37:04 +0000579 char *s, name[128];
Eric Andersenf15d4da2001-03-06 00:48:59 +0000580
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000581 s = get_name(name, buf);
582 ife = add_interface(name);
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000583 get_dev_fields(s, ife, procnetdev_vsn);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000584 ife->statistics_valid = 1;
585 if (target && !strcmp(target, name))
586 break;
587 }
588 if (ferror(fh)) {
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000589 bb_perror_msg(_PATH_PROCNET_DEV);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000590 err = -1;
591 proc_read = 0;
592 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000593 fclose(fh);
594 return err;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000595}
596
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000597static int if_readlist(void)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000598{
Denis Vlasenkod0587ed2007-03-22 19:35:51 +0000599 int err = if_readlist_proc(NULL);
600 /* Needed in order to get ethN:M aliases */
601 if (!err)
602 err = if_readconf();
603 return err;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000604}
605
Eric Andersenf15d4da2001-03-06 00:48:59 +0000606/* Fetch the interface configuration from the kernel. */
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000607static int if_fetch(struct interface *ife)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000608{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000609 struct ifreq ifr;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000610 char *ifname = ife->name;
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000611 int skfd;
612
613 skfd = xsocket(AF_INET, SOCK_DGRAM, 0);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000614
Denis Vlasenko360d9662008-12-02 18:18:50 +0000615 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000616 if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0) {
617 close(skfd);
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000618 return -1;
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000619 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000620 ife->flags = ifr.ifr_flags;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000621
Denis Vlasenko360d9662008-12-02 18:18:50 +0000622 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000623 memset(ife->hwaddr, 0, 32);
624 if (ioctl(skfd, SIOCGIFHWADDR, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000625 memcpy(ife->hwaddr, ifr.ifr_hwaddr.sa_data, 8);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000626
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000627 ife->type = ifr.ifr_hwaddr.sa_family;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000628
Denis Vlasenko360d9662008-12-02 18:18:50 +0000629 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000630 ife->metric = 0;
631 if (ioctl(skfd, SIOCGIFMETRIC, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000632 ife->metric = ifr.ifr_metric;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000633
Denis Vlasenko360d9662008-12-02 18:18:50 +0000634 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000635 ife->mtu = 0;
636 if (ioctl(skfd, SIOCGIFMTU, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000637 ife->mtu = ifr.ifr_mtu;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000638
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000639 memset(&ife->map, 0, sizeof(struct ifmap));
Rob Landley93983042005-05-03 21:30:26 +0000640#ifdef SIOCGIFMAP
Denis Vlasenko360d9662008-12-02 18:18:50 +0000641 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Rob Landley93983042005-05-03 21:30:26 +0000642 if (ioctl(skfd, SIOCGIFMAP, &ifr) == 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000643 ife->map = ifr.ifr_map;
Rob Landley93983042005-05-03 21:30:26 +0000644#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000645
646#ifdef HAVE_TXQUEUELEN
Denis Vlasenko360d9662008-12-02 18:18:50 +0000647 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000648 ife->tx_queue_len = -1; /* unknown value */
649 if (ioctl(skfd, SIOCGIFTXQLEN, &ifr) >= 0)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000650 ife->tx_queue_len = ifr.ifr_qlen;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000651#else
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000652 ife->tx_queue_len = -1; /* unknown value */
Eric Andersenf15d4da2001-03-06 00:48:59 +0000653#endif
654
Denis Vlasenko360d9662008-12-02 18:18:50 +0000655 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000656 ifr.ifr_addr.sa_family = AF_INET;
657 memset(&ife->addr, 0, sizeof(struct sockaddr));
658 if (ioctl(skfd, SIOCGIFADDR, &ifr) == 0) {
659 ife->has_ip = 1;
660 ife->addr = ifr.ifr_addr;
Denis Vlasenko360d9662008-12-02 18:18:50 +0000661 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000662 memset(&ife->dstaddr, 0, sizeof(struct sockaddr));
663 if (ioctl(skfd, SIOCGIFDSTADDR, &ifr) >= 0)
664 ife->dstaddr = ifr.ifr_dstaddr;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000665
Denis Vlasenko360d9662008-12-02 18:18:50 +0000666 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000667 memset(&ife->broadaddr, 0, sizeof(struct sockaddr));
668 if (ioctl(skfd, SIOCGIFBRDADDR, &ifr) >= 0)
669 ife->broadaddr = ifr.ifr_broadaddr;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000670
Denis Vlasenko360d9662008-12-02 18:18:50 +0000671 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000672 memset(&ife->netmask, 0, sizeof(struct sockaddr));
673 if (ioctl(skfd, SIOCGIFNETMASK, &ifr) >= 0)
674 ife->netmask = ifr.ifr_netmask;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000675 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000676
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000677 close(skfd);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000678 return 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000679}
680
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000681static int do_if_fetch(struct interface *ife)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000682{
683 if (if_fetch(ife) < 0) {
Denis Vlasenko322661d2007-01-29 23:43:52 +0000684 const char *errmsg;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000685
686 if (errno == ENODEV) {
687 /* Give better error message for this case. */
Rob Landley4e3aff32006-05-29 04:37:28 +0000688 errmsg = "Device not found";
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000689 } else {
690 errmsg = strerror(errno);
691 }
Rob Landley4e3aff32006-05-29 04:37:28 +0000692 bb_error_msg("%s: error fetching interface information: %s",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000693 ife->name, errmsg);
694 return -1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000695 }
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000696 return 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000697}
698
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000699static const struct hwtype unspec_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000700 .name = "unspec",
701 .title = "UNSPEC",
702 .type = -1,
703 .print = UNSPEC_print
Eric Andersenf15d4da2001-03-06 00:48:59 +0000704};
705
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000706static const struct hwtype loop_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000707 .name = "loop",
708 .title = "Local Loopback",
709 .type = ARPHRD_LOOPBACK
Eric Andersenf15d4da2001-03-06 00:48:59 +0000710};
711
Eric Andersenf15d4da2001-03-06 00:48:59 +0000712/* Display an Ethernet address in readable format. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000713static char* FAST_FUNC ether_print(unsigned char *ptr)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000714{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000715 static char *buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000716
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000717 free(buff);
718 buff = xasprintf("%02X:%02X:%02X:%02X:%02X:%02X",
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000719 (ptr[0] & 0377), (ptr[1] & 0377), (ptr[2] & 0377),
720 (ptr[3] & 0377), (ptr[4] & 0377), (ptr[5] & 0377)
721 );
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000722 return buff;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000723}
724
Denis Vlasenko1b16bda2007-06-19 11:10:02 +0000725static const struct hwtype ether_hwtype = {
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000726 .name = "ether",
727 .title = "Ethernet",
728 .type = ARPHRD_ETHER,
729 .alen = ETH_ALEN,
730 .print = ether_print,
maxwen27116ba2015-08-14 21:41:28 +0200731 .input = in_ether
Eric Andersenf15d4da2001-03-06 00:48:59 +0000732};
733
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000734static const struct hwtype ppp_hwtype = {
"Robert P. J. Day"4137dd72006-06-26 21:54:57 +0000735 .name = "ppp",
736 .title = "Point-to-Point Protocol",
737 .type = ARPHRD_PPP
Eric Andersenf15d4da2001-03-06 00:48:59 +0000738};
739
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000740#if ENABLE_FEATURE_IPV6
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000741static const struct hwtype sit_hwtype = {
742 .name = "sit",
743 .title = "IPv6-in-IPv4",
744 .type = ARPHRD_SIT,
745 .print = UNSPEC_print,
746 .suppress_null_addr = 1
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000747};
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000748#endif
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000749#if ENABLE_FEATURE_HWIB
750static const struct hwtype ib_hwtype = {
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000751 .name = "infiniband",
752 .title = "InfiniBand",
753 .type = ARPHRD_INFINIBAND,
754 .alen = INFINIBAND_ALEN,
755 .print = UNSPEC_print,
756 .input = in_ib,
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000757};
758#endif
759
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000760
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000761static const struct hwtype *const hwtypes[] = {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000762 &loop_hwtype,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000763 &ether_hwtype,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000764 &ppp_hwtype,
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000765 &unspec_hwtype,
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000766#if ENABLE_FEATURE_IPV6
"Robert P. J. Day"21302c22006-06-26 22:03:43 +0000767 &sit_hwtype,
768#endif
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000769#if ENABLE_FEATURE_HWIB
770 &ib_hwtype,
771#endif
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000772 NULL
Eric Andersenf15d4da2001-03-06 00:48:59 +0000773};
774
Eric Andersenf15d4da2001-03-06 00:48:59 +0000775#ifdef IFF_PORTSEL
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000776static const char *const if_port_text[] = {
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000777 /* Keep in step with <linux/netdevice.h> */
778 "unknown",
779 "10base2",
780 "10baseT",
781 "AUI",
782 "100baseT",
783 "100baseTX",
784 "100baseFX",
785 NULL
786};
787#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000788
789/* Check our hardware type table for this type. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000790const struct hwtype* FAST_FUNC get_hwtype(const char *name)
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000791{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000792 const struct hwtype *const *hwp;
Denis Vlasenkofa85b862007-01-07 01:24:12 +0000793
794 hwp = hwtypes;
795 while (*hwp != NULL) {
796 if (!strcmp((*hwp)->name, name))
797 return (*hwp);
798 hwp++;
799 }
800 return NULL;
801}
802
803/* Check our hardware type table for this type. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000804const struct hwtype* FAST_FUNC get_hwntype(int type)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000805{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000806 const struct hwtype *const *hwp;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000807
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000808 hwp = hwtypes;
809 while (*hwp != NULL) {
810 if ((*hwp)->type == type)
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000811 return *hwp;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000812 hwp++;
813 }
Denis Vlasenkoaad49992006-11-22 02:12:07 +0000814 return NULL;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000815}
816
817/* return 1 if address is all zeros */
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000818static int hw_null_address(const struct hwtype *hw, void *ap)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000819{
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000820 int i;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000821 unsigned char *address = (unsigned char *) ap;
822
823 for (i = 0; i < hw->alen; i++)
824 if (address[i])
825 return 0;
826 return 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000827}
828
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000829static const char TRext[] ALIGN1 = "\0\0\0Ki\0Mi\0Gi\0Ti";
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000830
831static void print_bytes_scaled(unsigned long long ull, const char *end)
832{
833 unsigned long long int_part;
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000834 const char *ext;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000835 unsigned int frac_part;
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000836 int i;
837
838 frac_part = 0;
839 ext = TRext;
840 int_part = ull;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000841 i = 4;
842 do {
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000843 if (int_part >= 1024) {
844 frac_part = ((((unsigned int) int_part) & (1024-1)) * 10) / 1024;
845 int_part /= 1024;
846 ext += 3; /* KiB, MiB, GiB, TiB */
847 }
848 --i;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000849 } while (i);
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000850
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000851 printf("X bytes:%llu (%llu.%u %sB)%s", ull, int_part, frac_part, ext, end);
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000852}
853
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000854
855#ifdef HAVE_AFINET6
856#define IPV6_ADDR_ANY 0x0000U
857
858#define IPV6_ADDR_UNICAST 0x0001U
859#define IPV6_ADDR_MULTICAST 0x0002U
860#define IPV6_ADDR_ANYCAST 0x0004U
861
862#define IPV6_ADDR_LOOPBACK 0x0010U
863#define IPV6_ADDR_LINKLOCAL 0x0020U
864#define IPV6_ADDR_SITELOCAL 0x0040U
865
866#define IPV6_ADDR_COMPATv4 0x0080U
867
868#define IPV6_ADDR_SCOPE_MASK 0x00f0U
869
870#define IPV6_ADDR_MAPPED 0x1000U
871#define IPV6_ADDR_RESERVED 0x2000U /* reserved address space */
872
873
874static void ife_print6(struct interface *ptr)
875{
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000876 FILE *f;
maxwen27116ba2015-08-14 21:41:28 +0200877 char addr6[40], devname[21];
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000878 struct sockaddr_in6 sap;
879 int plen, scope, dad_status, if_idx;
880 char addr6p[8][5];
881
882 f = fopen_for_read(_PATH_PROCNET_IFINET6);
883 if (f == NULL)
884 return;
885
886 while (fscanf
887 (f, "%4s%4s%4s%4s%4s%4s%4s%4s %08x %02x %02x %02x %20s\n",
888 addr6p[0], addr6p[1], addr6p[2], addr6p[3], addr6p[4],
889 addr6p[5], addr6p[6], addr6p[7], &if_idx, &plen, &scope,
890 &dad_status, devname) != EOF
891 ) {
892 if (!strcmp(devname, ptr->name)) {
893 sprintf(addr6, "%s:%s:%s:%s:%s:%s:%s:%s",
894 addr6p[0], addr6p[1], addr6p[2], addr6p[3],
895 addr6p[4], addr6p[5], addr6p[6], addr6p[7]);
896 inet_pton(AF_INET6, addr6,
897 (struct sockaddr *) &sap.sin6_addr);
898 sap.sin6_family = AF_INET6;
899 printf(" inet6 addr: %s/%d",
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100900 INET6_sprint((struct sockaddr *) &sap, 1),
901 plen);
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000902 printf(" Scope:");
903 switch (scope & IPV6_ADDR_SCOPE_MASK) {
904 case 0:
905 puts("Global");
906 break;
907 case IPV6_ADDR_LINKLOCAL:
908 puts("Link");
909 break;
910 case IPV6_ADDR_SITELOCAL:
911 puts("Site");
912 break;
913 case IPV6_ADDR_COMPATv4:
914 puts("Compat");
915 break;
916 case IPV6_ADDR_LOOPBACK:
917 puts("Host");
918 break;
919 default:
920 puts("Unknown");
921 }
922 }
923 }
924 fclose(f);
925}
926#else
Denis Vlasenko00d84172008-11-24 07:34:42 +0000927#define ife_print6(a) ((void)0)
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000928#endif
929
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000930static void ife_print(struct interface *ptr)
Eric Andersenf15d4da2001-03-06 00:48:59 +0000931{
Denis Vlasenko1cc70222007-03-15 19:46:43 +0000932 const struct aftype *ap;
"Vladimir N. Oleynik"0fa9ded2005-10-20 09:48:28 +0000933 const struct hwtype *hw;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000934 int hf;
935 int can_compress = 0;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000936
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000937 ap = get_afntype(ptr->addr.sa_family);
938 if (ap == NULL)
939 ap = get_afntype(0);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000940
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000941 hf = ptr->type;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000942
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000943 if (hf == ARPHRD_CSLIP || hf == ARPHRD_CSLIP6)
944 can_compress = 1;
Eric Andersenf15d4da2001-03-06 00:48:59 +0000945
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000946 hw = get_hwntype(hf);
947 if (hw == NULL)
948 hw = get_hwntype(-1);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000949
Denys Vlasenkoa85b66e2010-05-23 23:04:15 +0200950 printf("%-9s Link encap:%s ", ptr->name, hw->title);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000951 /* For some hardware types (eg Ash, ATM) we don't print the
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000952 hardware address if it's null. */
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000953 if (hw->print != NULL
954 && !(hw_null_address(hw, ptr->hwaddr) && hw->suppress_null_addr)
955 ) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000956 printf("HWaddr %s ", hw->print((unsigned char *)ptr->hwaddr));
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000957 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000958#ifdef IFF_PORTSEL
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000959 if (ptr->flags & IFF_PORTSEL) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000960 printf("Media:%s", if_port_text[ptr->map.port] /* [0] */);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000961 if (ptr->flags & IFF_AUTOMEDIA)
Rob Landley4e3aff32006-05-29 04:37:28 +0000962 printf("(auto)");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000963 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000964#endif
Denis Vlasenko4daad902007-09-27 10:20:47 +0000965 bb_putchar('\n');
Eric Andersenf15d4da2001-03-06 00:48:59 +0000966
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000967 if (ptr->has_ip) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000968 printf(" %s addr:%s ", ap->name,
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100969 ap->sprint(&ptr->addr, 1));
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000970 if (ptr->flags & IFF_POINTOPOINT) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000971 printf(" P-t-P:%s ", ap->sprint(&ptr->dstaddr, 1));
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000972 }
973 if (ptr->flags & IFF_BROADCAST) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000974 printf(" Bcast:%s ", ap->sprint(&ptr->broadaddr, 1));
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000975 }
Rob Landley4e3aff32006-05-29 04:37:28 +0000976 printf(" Mask:%s\n", ap->sprint(&ptr->netmask, 1));
Eric Andersenf15d4da2001-03-06 00:48:59 +0000977 }
Eric Andersenf15d4da2001-03-06 00:48:59 +0000978
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +0000979 ife_print6(ptr);
Eric Andersenf15d4da2001-03-06 00:48:59 +0000980
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +0000981 printf(" ");
982 /* DONT FORGET TO ADD THE FLAGS IN ife_print_short, too */
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000983
984 if (ptr->flags == 0) {
Rob Landley4e3aff32006-05-29 04:37:28 +0000985 printf("[NO FLAGS] ");
Manuel Novoa III b1d5b742003-08-02 00:04:18 +0000986 } else {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000987 static const char ife_print_flags_strs[] ALIGN1 =
Denis Vlasenko6b74b022007-07-29 14:17:48 +0000988 "UP\0"
989 "BROADCAST\0"
990 "DEBUG\0"
991 "LOOPBACK\0"
992 "POINTOPOINT\0"
993 "NOTRAILERS\0"
994 "RUNNING\0"
995 "NOARP\0"
996 "PROMISC\0"
997 "ALLMULTI\0"
998 "SLAVE\0"
999 "MASTER\0"
1000 "MULTICAST\0"
1001#ifdef HAVE_DYNAMIC
1002 "DYNAMIC\0"
1003#endif
1004 ;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001005 static const unsigned short ife_print_flags_mask[] ALIGN2 = {
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001006 IFF_UP,
1007 IFF_BROADCAST,
1008 IFF_DEBUG,
1009 IFF_LOOPBACK,
1010 IFF_POINTOPOINT,
1011 IFF_NOTRAILERS,
1012 IFF_RUNNING,
1013 IFF_NOARP,
1014 IFF_PROMISC,
1015 IFF_ALLMULTI,
1016 IFF_SLAVE,
1017 IFF_MASTER,
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001018 IFF_MULTICAST
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001019#ifdef HAVE_DYNAMIC
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001020 ,IFF_DYNAMIC
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001021#endif
1022 };
1023 const unsigned short *mask = ife_print_flags_mask;
1024 const char *str = ife_print_flags_strs;
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001025 do {
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001026 if (ptr->flags & *mask) {
1027 printf("%s ", str);
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001028 }
Denis Vlasenko6b74b022007-07-29 14:17:48 +00001029 mask++;
1030 str += strlen(str) + 1;
1031 } while (*str);
Manuel Novoa III b1d5b742003-08-02 00:04:18 +00001032 }
1033
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001034 /* DONT FORGET TO ADD THE FLAGS IN ife_print_short */
Rob Landley4e3aff32006-05-29 04:37:28 +00001035 printf(" MTU:%d Metric:%d", ptr->mtu, ptr->metric ? ptr->metric : 1);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001036#ifdef SIOCSKEEPALIVE
1037 if (ptr->outfill || ptr->keepalive)
Rob Landley4e3aff32006-05-29 04:37:28 +00001038 printf(" Outfill:%d Keepalive:%d", ptr->outfill, ptr->keepalive);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001039#endif
Denis Vlasenko4daad902007-09-27 10:20:47 +00001040 bb_putchar('\n');
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001041
1042 /* If needed, display the interface statistics. */
1043
1044 if (ptr->statistics_valid) {
1045 /* XXX: statistics are currently only printed for the primary address,
1046 * not for the aliases, although strictly speaking they're shared
1047 * by all addresses.
1048 */
1049 printf(" ");
1050
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001051 printf("RX packets:%llu errors:%lu dropped:%lu overruns:%lu frame:%lu\n",
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001052 ptr->stats.rx_packets, ptr->stats.rx_errors,
1053 ptr->stats.rx_dropped, ptr->stats.rx_fifo_errors,
1054 ptr->stats.rx_frame_errors);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001055 if (can_compress)
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001056 printf(" compressed:%lu\n",
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001057 ptr->stats.rx_compressed);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001058 printf(" ");
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001059 printf("TX packets:%llu errors:%lu dropped:%lu overruns:%lu carrier:%lu\n",
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001060 ptr->stats.tx_packets, ptr->stats.tx_errors,
1061 ptr->stats.tx_dropped, ptr->stats.tx_fifo_errors,
1062 ptr->stats.tx_carrier_errors);
Bernhard Reutner-Fischer214744d2006-03-30 13:38:19 +00001063 printf(" collisions:%lu ", ptr->stats.collisions);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001064 if (can_compress)
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001065 printf("compressed:%lu ", ptr->stats.tx_compressed);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001066 if (ptr->tx_queue_len != -1)
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +00001067 printf("txqueuelen:%d ", ptr->tx_queue_len);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001068 printf("\n R");
1069 print_bytes_scaled(ptr->stats.rx_bytes, " T");
1070 print_bytes_scaled(ptr->stats.tx_bytes, "\n");
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001071 }
1072
Denis Vlasenko12ff9dc2008-11-22 18:58:11 +00001073 if (ptr->map.irq || ptr->map.mem_start
1074 || ptr->map.dma || ptr->map.base_addr
1075 ) {
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001076 printf(" ");
1077 if (ptr->map.irq)
Rob Landley4e3aff32006-05-29 04:37:28 +00001078 printf("Interrupt:%d ", ptr->map.irq);
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001079 if (ptr->map.base_addr >= 0x100) /* Only print devices using it for I/O maps */
Rob Landley4e3aff32006-05-29 04:37:28 +00001080 printf("Base address:0x%lx ",
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001081 (unsigned long) ptr->map.base_addr);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001082 if (ptr->map.mem_start) {
Rob Landley4e3aff32006-05-29 04:37:28 +00001083 printf("Memory:%lx-%lx ", ptr->map.mem_start,
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001084 ptr->map.mem_end);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001085 }
1086 if (ptr->map.dma)
Rob Landley4e3aff32006-05-29 04:37:28 +00001087 printf("DMA chan:%x ", ptr->map.dma);
Denis Vlasenko4daad902007-09-27 10:20:47 +00001088 bb_putchar('\n');
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001089 }
Denis Vlasenko4daad902007-09-27 10:20:47 +00001090 bb_putchar('\n');
Eric Andersenf15d4da2001-03-06 00:48:59 +00001091}
1092
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001093static int do_if_print(struct interface *ife) /*, int *opt_a)*/
Eric Andersenf15d4da2001-03-06 00:48:59 +00001094{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001095 int res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001096
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001097 res = do_if_fetch(ife);
1098 if (res >= 0) {
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001099 if ((ife->flags & IFF_UP) || interface_opt_a)
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001100 ife_print(ife);
1101 }
1102 return res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001103}
1104
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +00001105static struct interface *lookup_interface(char *name)
Eric Andersenf15d4da2001-03-06 00:48:59 +00001106{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001107 struct interface *ife = NULL;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001108
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001109 if (if_readlist_proc(name) < 0)
1110 return NULL;
1111 ife = add_interface(name);
1112 return ife;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001113}
1114
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001115#ifdef UNUSED
1116static int for_all_interfaces(int (*doit) (struct interface *, void *),
Tanguy Pruvot823694d2012-11-18 13:20:29 +01001117 void *cookie)
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001118{
1119 struct interface *ife;
1120
1121 if (!int_list && (if_readlist() < 0))
1122 return -1;
1123 for (ife = int_list; ife; ife = ife->next) {
1124 int err = doit(ife, cookie);
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001125 if (err)
1126 return err;
1127 }
1128 return 0;
1129}
1130#endif
1131
Eric Andersenf15d4da2001-03-06 00:48:59 +00001132/* for ipv4 add/del modes */
1133static int if_print(char *ifname)
1134{
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001135 struct interface *ife;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001136 int res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001137
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001138 if (!ifname) {
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001139 /*res = for_all_interfaces(do_if_print, &interface_opt_a);*/
1140 if (!int_list && (if_readlist() < 0))
1141 return -1;
1142 for (ife = int_list; ife; ife = ife->next) {
1143 int err = do_if_print(ife); /*, &interface_opt_a);*/
1144 if (err)
1145 return err;
1146 }
1147 return 0;
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001148 }
Denis Vlasenko1b16bda2007-06-19 11:10:02 +00001149 ife = lookup_interface(ifname);
1150 res = do_if_fetch(ife);
1151 if (res >= 0)
1152 ife_print(ife);
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001153 return res;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001154}
1155
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +00001156#if ENABLE_FEATURE_HWIB
1157/* Input an Infiniband address and convert to binary. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001158int FAST_FUNC in_ib(const char *bufp, struct sockaddr *sap)
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +00001159{
Denis Vlasenko3b162ec2008-06-04 07:59:51 +00001160 sap->sa_family = ib_hwtype.type;
Denys Vlasenko48363312010-04-04 15:29:32 +02001161//TODO: error check?
1162 hex2bin((char*)sap->sa_data, bufp, INFINIBAND_ALEN);
1163# ifdef HWIB_DEBUG
1164 fprintf(stderr, "in_ib(%s): %s\n", bufp, UNSPEC_print(sap->sa_data));
1165# endif
Denis Vlasenko3b162ec2008-06-04 07:59:51 +00001166 return 0;
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +00001167}
1168#endif
1169
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001170int FAST_FUNC display_interfaces(char *ifname)
Eric Andersenf15d4da2001-03-06 00:48:59 +00001171{
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001172 int status;
Eric Andersenf15d4da2001-03-06 00:48:59 +00001173
Glenn L McGrath1ed9dd92002-08-22 19:35:36 +00001174 status = if_print(ifname);
Denis Vlasenko1cc70222007-03-15 19:46:43 +00001175
1176 return (status < 0); /* status < 0 == 1 -- error */
Eric Andersenf15d4da2001-03-06 00:48:59 +00001177}