blob: 5c47abc1631e6c95bbea7207bbe455bcf25dac75 [file] [log] [blame]
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenkoa02a4e92017-10-05 15:19:25 +02002/*
3 * ifconfig
Eric Andersenec455952001-02-14 08:11:27 +00004 *
5 * Similar to the standard Unix ifconfig, but with only the necessary
6 * parts for AF_INET, and without any printing of if info (for now).
7 *
8 * Bjorn Wesen, Axis Communications AB
9 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +000010 * Authors of the original ifconfig was:
Eric Andersenec455952001-02-14 08:11:27 +000011 * Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
12 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020013 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenec455952001-02-14 08:11:27 +000014 */
Manuel Novoa III df351d62001-03-08 22:57:00 +000015/*
16 * Heavily modified by Manuel Novoa III Mar 6, 2001
17 *
18 * From initial port to busybox, removed most of the redundancy by
19 * converting to a table-driven approach. Added several (optional)
20 * args missing from initial port.
21 *
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +000022 * Still missing: media, tunnel.
Eric Andersen51b8bd62002-07-03 11:46:38 +000023 *
24 * 2002-04-20
25 * IPV6 support added by Bart Visscher <magick@linux-fan.com>
Manuel Novoa III df351d62001-03-08 22:57:00 +000026 */
Denys Vlasenko47367e12016-11-23 09:05:14 +010027//config:config IFCONFIG
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020028//config: bool "ifconfig (12 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +010029//config: default y
30//config: select PLATFORM_LINUX
31//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020032//config: Ifconfig is used to configure the kernel-resident network interfaces.
Denys Vlasenko47367e12016-11-23 09:05:14 +010033//config:
34//config:config FEATURE_IFCONFIG_STATUS
35//config: bool "Enable status reporting output (+7k)"
36//config: default y
37//config: depends on IFCONFIG
38//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020039//config: If ifconfig is called with no arguments it will display the status
40//config: of the currently active interfaces.
Denys Vlasenko47367e12016-11-23 09:05:14 +010041//config:
42//config:config FEATURE_IFCONFIG_SLIP
43//config: bool "Enable slip-specific options \"keepalive\" and \"outfill\""
44//config: default y
45//config: depends on IFCONFIG
46//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020047//config: Allow "keepalive" and "outfill" support for SLIP. If you're not
48//config: planning on using serial lines, leave this unchecked.
Denys Vlasenko47367e12016-11-23 09:05:14 +010049//config:
50//config:config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
51//config: bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
52//config: default y
53//config: depends on IFCONFIG
54//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020055//config: Allow the start address for shared memory, start address for I/O,
56//config: and/or the interrupt line used by the specified device.
Denys Vlasenko47367e12016-11-23 09:05:14 +010057//config:
58//config:config FEATURE_IFCONFIG_HW
59//config: bool "Enable option \"hw\" (ether only)"
60//config: default y
61//config: depends on IFCONFIG
62//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020063//config: Set the hardware address of this interface, if the device driver
64//config: supports this operation. Currently, we only support the 'ether'
65//config: class.
Denys Vlasenko47367e12016-11-23 09:05:14 +010066//config:
67//config:config FEATURE_IFCONFIG_BROADCAST_PLUS
68//config: bool "Set the broadcast automatically"
69//config: default y
70//config: depends on IFCONFIG
71//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020072//config: Setting this will make ifconfig attempt to find the broadcast
73//config: automatically if the value '+' is used.
Denys Vlasenko47367e12016-11-23 09:05:14 +010074
75//applet:IF_IFCONFIG(APPLET(ifconfig, BB_DIR_SBIN, BB_SUID_DROP))
76
77//kbuild:lib-$(CONFIG_IFCONFIG) += ifconfig.o interface.o
Manuel Novoa III df351d62001-03-08 22:57:00 +000078
Pere Orga5bc8c002011-04-11 03:29:49 +020079//usage:#define ifconfig_trivial_usage
80//usage: IF_FEATURE_IFCONFIG_STATUS("[-a]") " interface [address]"
81//usage:#define ifconfig_full_usage "\n\n"
82//usage: "Configure a network interface\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020083//usage: "\n"
84//usage: IF_FEATURE_IPV6(
85//usage: " [add ADDRESS[/PREFIXLEN]]\n")
86//usage: IF_FEATURE_IPV6(
87//usage: " [del ADDRESS[/PREFIXLEN]]\n")
88//usage: " [[-]broadcast [ADDRESS]] [[-]pointopoint [ADDRESS]]\n"
89//usage: " [netmask ADDRESS] [dstaddr ADDRESS]\n"
90//usage: IF_FEATURE_IFCONFIG_SLIP(
91//usage: " [outfill NN] [keepalive NN]\n")
92//usage: " " IF_FEATURE_IFCONFIG_HW("[hw ether" IF_FEATURE_HWIB("|infiniband")" ADDRESS] ") "[metric NN] [mtu NN]\n"
93//usage: " [[-]trailers] [[-]arp] [[-]allmulti]\n"
94//usage: " [multicast] [[-]promisc] [txqueuelen NN] [[-]dynamic]\n"
95//usage: IF_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ(
96//usage: " [mem_start NN] [io_addr NN] [irq NN]\n")
97//usage: " [up|down] ..."
98
Dan Fandrichf533ec82011-06-10 05:17:59 +020099#include "libbb.h"
100#include "inet_common.h"
Eric Andersenab4e19a2003-01-14 08:54:08 +0000101#include <net/if.h>
Eric Andersenec455952001-02-14 08:11:27 +0000102#include <net/if_arp.h>
Eric Andersencd8c4362001-11-10 11:22:46 +0000103#include <netinet/in.h>
Dan Fandrichf533ec82011-06-10 05:17:59 +0200104#ifdef HAVE_NET_ETHERNET_H
105# include <net/ethernet.h>
Eric Andersenab4e19a2003-01-14 08:54:08 +0000106#endif
Eric Andersenec455952001-02-14 08:11:27 +0000107
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000108#if ENABLE_FEATURE_IFCONFIG_SLIP
Denys Vlasenkofc364ba2013-08-15 09:54:51 +0200109# include <linux/if_slip.h>
Eric Andersenf15d4da2001-03-06 00:48:59 +0000110#endif
111
Manuel Novoa III df351d62001-03-08 22:57:00 +0000112/* I don't know if this is needed for busybox or not. Anyone? */
113#define QUESTIONABLE_ALIAS_CASE
Eric Andersenec455952001-02-14 08:11:27 +0000114
115
Manuel Novoa III df351d62001-03-08 22:57:00 +0000116/* Defines for glibc2.0 users. */
117#ifndef SIOCSIFTXQLEN
Glenn L McGrath8ae4cab2002-11-26 09:02:06 +0000118# define SIOCSIFTXQLEN 0x8943
119# define SIOCGIFTXQLEN 0x8942
Manuel Novoa III df351d62001-03-08 22:57:00 +0000120#endif
Eric Andersenec455952001-02-14 08:11:27 +0000121
Manuel Novoa III df351d62001-03-08 22:57:00 +0000122/* ifr_qlen is ifru_ivalue, but it isn't present in 2.0 kernel headers */
123#ifndef ifr_qlen
Glenn L McGrath8ae4cab2002-11-26 09:02:06 +0000124# define ifr_qlen ifr_ifru.ifru_mtu
Manuel Novoa III df351d62001-03-08 22:57:00 +0000125#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000126
Manuel Novoa III df351d62001-03-08 22:57:00 +0000127#ifndef IFF_DYNAMIC
Glenn L McGrath8ae4cab2002-11-26 09:02:06 +0000128# define IFF_DYNAMIC 0x8000 /* dialup device with changing addresses */
Manuel Novoa III df351d62001-03-08 22:57:00 +0000129#endif
Eric Andersenf15d4da2001-03-06 00:48:59 +0000130
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000131#if ENABLE_FEATURE_IPV6
Eric Andersen51b8bd62002-07-03 11:46:38 +0000132struct in6_ifreq {
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000133 struct in6_addr ifr6_addr;
134 uint32_t ifr6_prefixlen;
135 int ifr6_ifindex;
Eric Andersen51b8bd62002-07-03 11:46:38 +0000136};
137#endif
138
Manuel Novoa III df351d62001-03-08 22:57:00 +0000139/*
140 * Here are the bit masks for the "flags" member of struct options below.
141 * N_ signifies no arg prefix; M_ signifies arg prefixed by '-'.
142 * CLR clears the flag; SET sets the flag; ARG signifies (optional) arg.
Eric Andersenf15d4da2001-03-06 00:48:59 +0000143 */
Manuel Novoa III df351d62001-03-08 22:57:00 +0000144#define N_CLR 0x01
145#define M_CLR 0x02
146#define N_SET 0x04
147#define M_SET 0x08
148#define N_ARG 0x10
149#define M_ARG 0x20
150
151#define M_MASK (M_CLR | M_SET | M_ARG)
152#define N_MASK (N_CLR | N_SET | N_ARG)
153#define SET_MASK (N_SET | M_SET)
154#define CLR_MASK (N_CLR | M_CLR)
155#define SET_CLR_MASK (SET_MASK | CLR_MASK)
156#define ARG_MASK (M_ARG | N_ARG)
157
158/*
159 * Here are the bit masks for the "arg_flags" member of struct options below.
160 */
161
162/*
163 * cast type:
164 * 00 int
165 * 01 char *
166 * 02 HOST_COPY in_ether
167 * 03 HOST_COPY INET_resolve
168 */
169#define A_CAST_TYPE 0x03
170/*
171 * map type:
172 * 00 not a map type (mem_start, io_addr, irq)
173 * 04 memstart (unsigned long)
174 * 08 io_addr (unsigned short)
175 * 0C irq (unsigned char)
176 */
177#define A_MAP_TYPE 0x0C
178#define A_ARG_REQ 0x10 /* Set if an arg is required. */
179#define A_NETMASK 0x20 /* Set if netmask (check for multiple sets). */
180#define A_SET_AFTER 0x40 /* Set a flag at the end. */
181#define A_COLON_CHK 0x80 /* Is this needed? See below. */
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000182#if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
Manuel Novoa III a6685582002-12-27 17:42:01 +0000183#define A_HOSTNAME 0x100 /* Set if it is ip addr. */
184#define A_BROADCAST 0x200 /* Set if it is broadcast addr. */
185#else
186#define A_HOSTNAME 0
187#define A_BROADCAST 0
188#endif
Manuel Novoa III df351d62001-03-08 22:57:00 +0000189
190/*
191 * These defines are for dealing with the A_CAST_TYPE field.
192 */
193#define A_CAST_CHAR_PTR 0x01
194#define A_CAST_RESOLVE 0x01
195#define A_CAST_HOST_COPY 0x02
196#define A_CAST_HOST_COPY_IN_ETHER A_CAST_HOST_COPY
197#define A_CAST_HOST_COPY_RESOLVE (A_CAST_HOST_COPY | A_CAST_RESOLVE)
198
199/*
200 * These defines are for dealing with the A_MAP_TYPE field.
201 */
202#define A_MAP_ULONG 0x04 /* memstart */
203#define A_MAP_USHORT 0x08 /* io_addr */
204#define A_MAP_UCHAR 0x0C /* irq */
205
206/*
207 * Define the bit masks signifying which operations to perform for each arg.
208 */
209
210#define ARG_METRIC (A_ARG_REQ /*| A_CAST_INT*/)
211#define ARG_MTU (A_ARG_REQ /*| A_CAST_INT*/)
212#define ARG_TXQUEUELEN (A_ARG_REQ /*| A_CAST_INT*/)
213#define ARG_MEM_START (A_ARG_REQ | A_MAP_ULONG)
Eric Andersen72f9a422001-10-28 05:12:20 +0000214#define ARG_IO_ADDR (A_ARG_REQ | A_MAP_ULONG)
Manuel Novoa III df351d62001-03-08 22:57:00 +0000215#define ARG_IRQ (A_ARG_REQ | A_MAP_UCHAR)
216#define ARG_DSTADDR (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE)
217#define ARG_NETMASK (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_NETMASK)
Manuel Novoa III a6685582002-12-27 17:42:01 +0000218#define ARG_BROADCAST (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER | A_BROADCAST)
Manuel Novoa III df351d62001-03-08 22:57:00 +0000219#define ARG_HW (A_ARG_REQ | A_CAST_HOST_COPY_IN_ETHER)
Eric Andersenb6e58d22003-11-14 03:04:08 +0000220#define ARG_POINTOPOINT (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER)
Manuel Novoa III df351d62001-03-08 22:57:00 +0000221#define ARG_KEEPALIVE (A_ARG_REQ | A_CAST_CHAR_PTR)
222#define ARG_OUTFILL (A_ARG_REQ | A_CAST_CHAR_PTR)
Manuel Novoa III a6685582002-12-27 17:42:01 +0000223#define ARG_HOSTNAME (A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER | A_COLON_CHK | A_HOSTNAME)
Eric Andersen51b8bd62002-07-03 11:46:38 +0000224#define ARG_ADD_DEL (A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER)
Manuel Novoa III df351d62001-03-08 22:57:00 +0000225
226
Manuel Novoa III df351d62001-03-08 22:57:00 +0000227struct arg1opt {
228 const char *name;
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000229 unsigned short selector;
Manuel Novoa III df351d62001-03-08 22:57:00 +0000230 unsigned short ifr_offset;
231};
232
233struct options {
234 const char *name;
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000235#if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
Manuel Novoa III a6685582002-12-27 17:42:01 +0000236 const unsigned int flags:6;
237 const unsigned int arg_flags:10;
238#else
Manuel Novoa III df351d62001-03-08 22:57:00 +0000239 const unsigned char flags;
Manuel Novoa III 4fb0b512001-08-10 06:02:23 +0000240 const unsigned char arg_flags;
Manuel Novoa III a6685582002-12-27 17:42:01 +0000241#endif
Manuel Novoa III df351d62001-03-08 22:57:00 +0000242 const unsigned short selector;
243};
244
245#define ifreq_offsetof(x) offsetof(struct ifreq, x)
246
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100247/*
248 * Set up the tables. Warning! They must have corresponding order!
249 */
250
Manuel Novoa III df351d62001-03-08 22:57:00 +0000251static const struct arg1opt Arg1Opt[] = {
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000252 { "SIFMETRIC", SIOCSIFMETRIC, ifreq_offsetof(ifr_metric) },
253 { "SIFMTU", SIOCSIFMTU, ifreq_offsetof(ifr_mtu) },
254 { "SIFTXQLEN", SIOCSIFTXQLEN, ifreq_offsetof(ifr_qlen) },
255 { "SIFDSTADDR", SIOCSIFDSTADDR, ifreq_offsetof(ifr_dstaddr) },
256 { "SIFNETMASK", SIOCSIFNETMASK, ifreq_offsetof(ifr_netmask) },
257 { "SIFBRDADDR", SIOCSIFBRDADDR, ifreq_offsetof(ifr_broadaddr) },
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000258#if ENABLE_FEATURE_IFCONFIG_HW
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000259 { "SIFHWADDR", SIOCSIFHWADDR, ifreq_offsetof(ifr_hwaddr) },
Manuel Novoa III df351d62001-03-08 22:57:00 +0000260#endif
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000261 { "SIFDSTADDR", SIOCSIFDSTADDR, ifreq_offsetof(ifr_dstaddr) },
Eric Andersenf15d4da2001-03-06 00:48:59 +0000262#ifdef SIOCSKEEPALIVE
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000263 { "SKEEPALIVE", SIOCSKEEPALIVE, ifreq_offsetof(ifr_data) },
Eric Andersenf15d4da2001-03-06 00:48:59 +0000264#endif
265#ifdef SIOCSOUTFILL
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000266 { "SOUTFILL", SIOCSOUTFILL, ifreq_offsetof(ifr_data) },
Eric Andersenf15d4da2001-03-06 00:48:59 +0000267#endif
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000268#if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000269 { "SIFMAP", SIOCSIFMAP, ifreq_offsetof(ifr_map.mem_start) },
270 { "SIFMAP", SIOCSIFMAP, ifreq_offsetof(ifr_map.base_addr) },
271 { "SIFMAP", SIOCSIFMAP, ifreq_offsetof(ifr_map.irq) },
Manuel Novoa III df351d62001-03-08 22:57:00 +0000272#endif
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000273#if ENABLE_FEATURE_IPV6
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000274 { "SIFADDR", SIOCSIFADDR, ifreq_offsetof(ifr_addr) }, /* IPv6 version ignores the offset */
275 { "DIFADDR", SIOCDIFADDR, ifreq_offsetof(ifr_addr) }, /* IPv6 version ignores the offset */
Eric Andersen51b8bd62002-07-03 11:46:38 +0000276#endif
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100277 /* Last entry is for unmatched (assumed to be hostname/address) arg. */
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000278 { "SIFADDR", SIOCSIFADDR, ifreq_offsetof(ifr_addr) },
Eric Andersenf15d4da2001-03-06 00:48:59 +0000279};
280
Manuel Novoa III df351d62001-03-08 22:57:00 +0000281static const struct options OptArray[] = {
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000282 { "metric", N_ARG, ARG_METRIC, 0 },
283 { "mtu", N_ARG, ARG_MTU, 0 },
284 { "txqueuelen", N_ARG, ARG_TXQUEUELEN, 0 },
285 { "dstaddr", N_ARG, ARG_DSTADDR, 0 },
286 { "netmask", N_ARG, ARG_NETMASK, 0 },
287 { "broadcast", N_ARG | M_CLR, ARG_BROADCAST, IFF_BROADCAST },
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000288#if ENABLE_FEATURE_IFCONFIG_HW
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000289 { "hw", N_ARG, ARG_HW, 0 },
Manuel Novoa III df351d62001-03-08 22:57:00 +0000290#endif
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000291 { "pointopoint", N_ARG | M_CLR, ARG_POINTOPOINT, IFF_POINTOPOINT },
Manuel Novoa III df351d62001-03-08 22:57:00 +0000292#ifdef SIOCSKEEPALIVE
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000293 { "keepalive", N_ARG, ARG_KEEPALIVE, 0 },
Manuel Novoa III df351d62001-03-08 22:57:00 +0000294#endif
295#ifdef SIOCSOUTFILL
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000296 { "outfill", N_ARG, ARG_OUTFILL, 0 },
Manuel Novoa III df351d62001-03-08 22:57:00 +0000297#endif
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000298#if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000299 { "mem_start", N_ARG, ARG_MEM_START, 0 },
300 { "io_addr", N_ARG, ARG_IO_ADDR, 0 },
301 { "irq", N_ARG, ARG_IRQ, 0 },
Manuel Novoa III df351d62001-03-08 22:57:00 +0000302#endif
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000303#if ENABLE_FEATURE_IPV6
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000304 { "add", N_ARG, ARG_ADD_DEL, 0 },
305 { "del", N_ARG, ARG_ADD_DEL, 0 },
Eric Andersen51b8bd62002-07-03 11:46:38 +0000306#endif
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000307 { "arp", N_CLR | M_SET, 0, IFF_NOARP },
308 { "trailers", N_CLR | M_SET, 0, IFF_NOTRAILERS },
309 { "promisc", N_SET | M_CLR, 0, IFF_PROMISC },
310 { "multicast", N_SET | M_CLR, 0, IFF_MULTICAST },
311 { "allmulti", N_SET | M_CLR, 0, IFF_ALLMULTI },
312 { "dynamic", N_SET | M_CLR, 0, IFF_DYNAMIC },
313 { "up", N_SET, 0, (IFF_UP | IFF_RUNNING) },
314 { "down", N_CLR, 0, IFF_UP },
315 { NULL, 0, ARG_HOSTNAME, (IFF_UP | IFF_RUNNING) }
Manuel Novoa III df351d62001-03-08 22:57:00 +0000316};
Eric Andersenf15d4da2001-03-06 00:48:59 +0000317
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000318int ifconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100319int ifconfig_main(int argc UNUSED_PARAM, char **argv)
Eric Andersenec455952001-02-14 08:11:27 +0000320{
Manuel Novoa III df351d62001-03-08 22:57:00 +0000321 struct ifreq ifr;
322 struct sockaddr_in sai;
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000323#if ENABLE_FEATURE_IFCONFIG_HW
Manuel Novoa III df351d62001-03-08 22:57:00 +0000324 struct sockaddr sa;
325#endif
326 const struct arg1opt *a1op;
327 const struct options *op;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000328 int sockfd; /* socket fd we use to manipulate stuff with */
Manuel Novoa III df351d62001-03-08 22:57:00 +0000329 int selector;
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000330#if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
Manuel Novoa III a6685582002-12-27 17:42:01 +0000331 unsigned int mask;
332 unsigned int did_flags;
Glenn L McGrath393183d2003-05-26 14:07:50 +0000333 unsigned int sai_hostname, sai_netmask;
Manuel Novoa III a6685582002-12-27 17:42:01 +0000334#else
Manuel Novoa III 4fb0b512001-08-10 06:02:23 +0000335 unsigned char mask;
336 unsigned char did_flags;
Manuel Novoa III a6685582002-12-27 17:42:01 +0000337#endif
338 char *p;
Denis Vlasenko50962462006-11-21 20:32:38 +0000339 /*char host[128];*/
340 const char *host = NULL; /* make gcc happy */
Denys Vlasenko82ec8942018-03-05 17:46:17 +0100341 IF_FEATURE_IFCONFIG_STATUS(char *show_all_param;)
Eric Andersenec455952001-02-14 08:11:27 +0000342
Manuel Novoa III df351d62001-03-08 22:57:00 +0000343 did_flags = 0;
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000344#if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
Eric Andersen0cc7e622003-06-20 09:23:34 +0000345 sai_hostname = 0;
346 sai_netmask = 0;
Eric Andersen9d9cecf2003-06-21 09:05:49 +0000347#endif
Manuel Novoa III df351d62001-03-08 22:57:00 +0000348
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000349 /* skip argv[0] */
350 ++argv;
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000351
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000352#if ENABLE_FEATURE_IFCONFIG_STATUS
Denys Vlasenko82ec8942018-03-05 17:46:17 +0100353 show_all_param = NULL;
354 if (argv[0] && argv[0][0] == '-' && argv[0][1] == 'a' && !argv[0][2]) {
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000355 ++argv;
Denys Vlasenko82ec8942018-03-05 17:46:17 +0100356 show_all_param = IFNAME_SHOW_DOWNED_TOO;
Manuel Novoa III 68ea1d02001-03-12 09:57:59 +0000357 }
358#endif
359
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100360 if (!argv[0] || !argv[1]) { /* one or no args */
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000361#if ENABLE_FEATURE_IFCONFIG_STATUS
Denys Vlasenko82ec8942018-03-05 17:46:17 +0100362 return display_interfaces(argv[0] ? argv[0] : show_all_param);
Manuel Novoa III df351d62001-03-08 22:57:00 +0000363#else
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000364 bb_error_msg_and_die("no support for status display");
Manuel Novoa III df351d62001-03-08 22:57:00 +0000365#endif
Eric Andersenec455952001-02-14 08:11:27 +0000366 }
Manuel Novoa III df351d62001-03-08 22:57:00 +0000367
368 /* Create a channel to the NET kernel. */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000369 sockfd = xsocket(AF_INET, SOCK_DGRAM, 0);
Manuel Novoa III df351d62001-03-08 22:57:00 +0000370
Manuel Novoa III df351d62001-03-08 22:57:00 +0000371 /* get interface name */
Denis Vlasenko360d9662008-12-02 18:18:50 +0000372 strncpy_IFNAMSIZ(ifr.ifr_name, *argv);
Manuel Novoa III df351d62001-03-08 22:57:00 +0000373
374 /* Process the remaining arguments. */
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100375 while (*++argv != NULL) {
Manuel Novoa III df351d62001-03-08 22:57:00 +0000376 p = *argv;
377 mask = N_MASK;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000378 if (*p == '-') { /* If the arg starts with '-'... */
379 ++p; /* advance past it and */
380 mask = M_MASK; /* set the appropriate mask. */
Manuel Novoa III df351d62001-03-08 22:57:00 +0000381 }
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000382 for (op = OptArray; op->name; op++) { /* Find table entry. */
383 if (strcmp(p, op->name) == 0) { /* If name matches... */
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000384 mask &= op->flags;
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000385 if (mask) /* set the mask and go. */
Bernhard Reutner-Fischer0b42a6a2005-10-07 11:34:50 +0000386 goto FOUND_ARG;
Manuel Novoa III df351d62001-03-08 22:57:00 +0000387 /* If we get here, there was a valid arg with an */
388 /* invalid '-' prefix. */
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000389 bb_error_msg_and_die("bad: '%s'", p-1);
Manuel Novoa III df351d62001-03-08 22:57:00 +0000390 }
391 }
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000392
Manuel Novoa III df351d62001-03-08 22:57:00 +0000393 /* We fell through, so treat as possible hostname. */
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000394 a1op = Arg1Opt + ARRAY_SIZE(Arg1Opt) - 1;
Manuel Novoa III df351d62001-03-08 22:57:00 +0000395 mask = op->arg_flags;
396 goto HOSTNAME;
397
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000398 FOUND_ARG:
Manuel Novoa III df351d62001-03-08 22:57:00 +0000399 if (mask & ARG_MASK) {
400 mask = op->arg_flags;
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000401 if (mask & A_NETMASK & did_flags)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000402 bb_show_usage();
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100403 a1op = Arg1Opt + (op - OptArray);
Manuel Novoa III df351d62001-03-08 22:57:00 +0000404 if (*++argv == NULL) {
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000405 if (mask & A_ARG_REQ)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000406 bb_show_usage();
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000407 --argv;
408 mask &= A_SET_AFTER; /* just for broadcast */
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000409 } else { /* got an arg so process it */
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000410 HOSTNAME:
Manuel Novoa III a6685582002-12-27 17:42:01 +0000411 did_flags |= (mask & (A_NETMASK|A_HOSTNAME));
Manuel Novoa III df351d62001-03-08 22:57:00 +0000412 if (mask & A_CAST_HOST_COPY) {
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000413#if ENABLE_FEATURE_IFCONFIG_HW
Manuel Novoa III df351d62001-03-08 22:57:00 +0000414 if (mask & A_CAST_RESOLVE) {
415#endif
Denis Vlasenko50962462006-11-21 20:32:38 +0000416 host = *argv;
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100417 if (strcmp(host, "inet") == 0)
418 continue; /* compat stuff */
Manuel Novoa III df351d62001-03-08 22:57:00 +0000419 sai.sin_family = AF_INET;
420 sai.sin_port = 0;
Denys Vlasenko0004e992010-09-01 12:01:17 +0200421 if (strcmp(host, "default") == 0) {
Manuel Novoa III df351d62001-03-08 22:57:00 +0000422 /* Default is special, meaning 0.0.0.0. */
423 sai.sin_addr.s_addr = INADDR_ANY;
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000424 }
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000425#if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100426 else if ((host[0] == '+' && !host[1])
427 && (mask & A_BROADCAST)
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000428 && (did_flags & (A_NETMASK|A_HOSTNAME)) == (A_NETMASK|A_HOSTNAME)
429 ) {
Manuel Novoa III a6685582002-12-27 17:42:01 +0000430 /* + is special, meaning broadcast is derived. */
431 sai.sin_addr.s_addr = (~sai_netmask) | (sai_hostname & sai_netmask);
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000432 }
Manuel Novoa III a6685582002-12-27 17:42:01 +0000433#endif
Denis Vlasenko10944522007-02-04 02:40:27 +0000434 else {
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000435 len_and_sockaddr *lsa;
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100436#if ENABLE_FEATURE_IPV6
437 char *prefix;
438 int prefix_len = 0;
439 prefix = strchr(host, '/');
440 if (prefix) {
441 prefix_len = xatou_range(prefix + 1, 0, 128);
442 *prefix = '\0';
443 }
444 resolve:
445#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000446 lsa = xhost2sockaddr(host, 0);
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000447#if ENABLE_FEATURE_IPV6
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100448 if (lsa->u.sa.sa_family != AF_INET6 && prefix) {
449/* TODO: we do not support "ifconfig eth0 up 1.2.3.4/17".
450 * For now, just make it fail instead of silently ignoring "/17" part:
451 */
452 *prefix = '/';
453 goto resolve;
454 }
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000455 if (lsa->u.sa.sa_family == AF_INET6) {
Denis Vlasenko10944522007-02-04 02:40:27 +0000456 int sockfd6;
457 struct in6_ifreq ifr6;
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000458
Denis Vlasenko10944522007-02-04 02:40:27 +0000459 sockfd6 = xsocket(AF_INET6, SOCK_DGRAM, 0);
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100460 xioctl(sockfd6, SIOCGIFINDEX, &ifr);
Denis Vlasenko10944522007-02-04 02:40:27 +0000461 ifr6.ifr6_ifindex = ifr.ifr_ifindex;
462 ifr6.ifr6_prefixlen = prefix_len;
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100463 memcpy(&ifr6.ifr6_addr,
464 &lsa->u.sin6.sin6_addr,
465 sizeof(struct in6_addr));
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000466 ioctl_or_perror_and_die(sockfd6, a1op->selector, &ifr6, "SIOC%s", a1op->name);
Denis Vlasenko10944522007-02-04 02:40:27 +0000467 if (ENABLE_FEATURE_CLEAN_UP)
468 free(lsa);
469 continue;
470 }
Eric Andersen51b8bd62002-07-03 11:46:38 +0000471#endif
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000472 sai.sin_addr = lsa->u.sin.sin_addr;
Denis Vlasenko10944522007-02-04 02:40:27 +0000473 if (ENABLE_FEATURE_CLEAN_UP)
474 free(lsa);
Manuel Novoa III df351d62001-03-08 22:57:00 +0000475 }
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000476#if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000477 if (mask & A_HOSTNAME)
Manuel Novoa III a6685582002-12-27 17:42:01 +0000478 sai_hostname = sai.sin_addr.s_addr;
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000479 if (mask & A_NETMASK)
Manuel Novoa III a6685582002-12-27 17:42:01 +0000480 sai_netmask = sai.sin_addr.s_addr;
Manuel Novoa III a6685582002-12-27 17:42:01 +0000481#endif
Manuel Novoa III df351d62001-03-08 22:57:00 +0000482 p = (char *) &sai;
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000483#if ENABLE_FEATURE_IFCONFIG_HW
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000484 } else { /* A_CAST_HOST_COPY_IN_ETHER */
Manuel Novoa III df351d62001-03-08 22:57:00 +0000485 /* This is the "hw" arg case. */
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100486 smalluint hw_class = index_in_substrings("ether\0"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000487 IF_FEATURE_HWIB("infiniband\0"), *argv) + 1;
Bernhard Reutner-Fischerf3b778a2008-05-16 16:10:31 +0000488 if (!hw_class || !*++argv)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000489 bb_show_usage();
Denis Vlasenko50962462006-11-21 20:32:38 +0000490 host = *argv;
Denis Vlasenko3b162ec2008-06-04 07:59:51 +0000491 if (hw_class == 1 ? in_ether(host, &sa) : in_ib(host, &sa))
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000492 bb_error_msg_and_die("invalid hw-addr %s", host);
Manuel Novoa III df351d62001-03-08 22:57:00 +0000493 p = (char *) &sa;
494 }
495#endif
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100496 memcpy( ((char *)&ifr) + a1op->ifr_offset,
Denys Vlasenko69675782013-01-14 01:34:48 +0100497 p, sizeof(struct sockaddr));
Manuel Novoa III df351d62001-03-08 22:57:00 +0000498 } else {
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000499 /* FIXME: error check?? */
Rob Landleyc819ca92005-11-22 17:09:14 +0000500 unsigned long i = strtoul(*argv, NULL, 0);
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000501 p = ((char *)&ifr) + a1op->ifr_offset;
502#if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
Manuel Novoa III df351d62001-03-08 22:57:00 +0000503 if (mask & A_MAP_TYPE) {
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000504 xioctl(sockfd, SIOCGIFMAP, &ifr);
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000505 if ((mask & A_MAP_UCHAR) == A_MAP_UCHAR)
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100506 *(unsigned char *) p = i;
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000507 else if (mask & A_MAP_USHORT)
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100508 *(unsigned short *) p = i;
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000509 else
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100510 *(unsigned long *) p = i;
Manuel Novoa III df351d62001-03-08 22:57:00 +0000511 } else
512#endif
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000513 if (mask & A_CAST_CHAR_PTR)
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100514 *(caddr_t *) p = (caddr_t) i;
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000515 else /* A_CAST_INT */
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100516 *(int *) p = i;
Manuel Novoa III df351d62001-03-08 22:57:00 +0000517 }
Glenn L McGrathbaf55a82002-08-22 18:22:10 +0000518
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000519 ioctl_or_perror_and_die(sockfd, a1op->selector, &ifr, "SIOC%s", a1op->name);
Manuel Novoa III df351d62001-03-08 22:57:00 +0000520#ifdef QUESTIONABLE_ALIAS_CASE
521 if (mask & A_COLON_CHK) {
522 /*
523 * Don't do the set_flag() if the address is an alias with
Denis Vlasenko04b30ba2006-11-21 14:26:37 +0000524 * a '-' at the end, since it's deleted already! - Roman
Manuel Novoa III df351d62001-03-08 22:57:00 +0000525 *
526 * Should really use regex.h here, not sure though how well
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000527 * it'll go with the cross-platform support etc.
Manuel Novoa III df351d62001-03-08 22:57:00 +0000528 */
529 char *ptr;
530 short int found_colon = 0;
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000531 for (ptr = ifr.ifr_name; *ptr; ptr++)
532 if (*ptr == ':')
Manuel Novoa III df351d62001-03-08 22:57:00 +0000533 found_colon++;
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000534 if (found_colon && ptr[-1] == '-')
Manuel Novoa III df351d62001-03-08 22:57:00 +0000535 continue;
Manuel Novoa III df351d62001-03-08 22:57:00 +0000536 }
537#endif
538 }
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000539 if (!(mask & A_SET_AFTER))
Manuel Novoa III df351d62001-03-08 22:57:00 +0000540 continue;
Manuel Novoa III df351d62001-03-08 22:57:00 +0000541 mask = N_SET;
Denys Vlasenko31dc8602013-01-20 18:10:12 +0100542 } /* if (mask & ARG_MASK) */
Manuel Novoa III df351d62001-03-08 22:57:00 +0000543
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000544 xioctl(sockfd, SIOCGIFFLAGS, &ifr);
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000545 selector = op->selector;
546 if (mask & SET_MASK)
547 ifr.ifr_flags |= selector;
548 else
549 ifr.ifr_flags &= ~selector;
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000550 xioctl(sockfd, SIOCSIFFLAGS, &ifr);
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000551 } /* while () */
Manuel Novoa III df351d62001-03-08 22:57:00 +0000552
Denis Vlasenko2813ce22006-11-27 10:03:21 +0000553 if (ENABLE_FEATURE_CLEAN_UP)
554 close(sockfd);
555 return 0;
Eric Andersenec455952001-02-14 08:11:27 +0000556}