Bernhard Reutner-Fischer | dac7ff1 | 2006-04-12 17:55:51 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Denys Vlasenko | a02a4e9 | 2017-10-05 15:19:25 +0200 | [diff] [blame] | 2 | /* |
| 3 | * ifconfig |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 4 | * |
| 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 Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 10 | * Authors of the original ifconfig was: |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 11 | * Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> |
| 12 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 13 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 14 | */ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 15 | /* |
| 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 | 68ea1d0 | 2001-03-12 09:57:59 +0000 | [diff] [blame] | 22 | * Still missing: media, tunnel. |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 23 | * |
| 24 | * 2002-04-20 |
| 25 | * IPV6 support added by Bart Visscher <magick@linux-fan.com> |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 26 | */ |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 27 | //config:config IFCONFIG |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 28 | //config: bool "ifconfig (12 kb)" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 29 | //config: default y |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 30 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 31 | //config: Ifconfig is used to configure the kernel-resident network interfaces. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 32 | //config: |
| 33 | //config:config FEATURE_IFCONFIG_STATUS |
| 34 | //config: bool "Enable status reporting output (+7k)" |
| 35 | //config: default y |
| 36 | //config: depends on IFCONFIG |
| 37 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 38 | //config: If ifconfig is called with no arguments it will display the status |
| 39 | //config: of the currently active interfaces. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 40 | //config: |
| 41 | //config:config FEATURE_IFCONFIG_SLIP |
| 42 | //config: bool "Enable slip-specific options \"keepalive\" and \"outfill\"" |
| 43 | //config: default y |
| 44 | //config: depends on IFCONFIG |
| 45 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 46 | //config: Allow "keepalive" and "outfill" support for SLIP. If you're not |
| 47 | //config: planning on using serial lines, leave this unchecked. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 48 | //config: |
| 49 | //config:config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ |
| 50 | //config: bool "Enable options \"mem_start\", \"io_addr\", and \"irq\"" |
| 51 | //config: default y |
| 52 | //config: depends on IFCONFIG |
| 53 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 54 | //config: Allow the start address for shared memory, start address for I/O, |
| 55 | //config: and/or the interrupt line used by the specified device. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 56 | //config: |
| 57 | //config:config FEATURE_IFCONFIG_HW |
| 58 | //config: bool "Enable option \"hw\" (ether only)" |
| 59 | //config: default y |
| 60 | //config: depends on IFCONFIG |
| 61 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 62 | //config: Set the hardware address of this interface, if the device driver |
| 63 | //config: supports this operation. Currently, we only support the 'ether' |
| 64 | //config: class. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 65 | //config: |
| 66 | //config:config FEATURE_IFCONFIG_BROADCAST_PLUS |
| 67 | //config: bool "Set the broadcast automatically" |
| 68 | //config: default y |
| 69 | //config: depends on IFCONFIG |
| 70 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 71 | //config: Setting this will make ifconfig attempt to find the broadcast |
| 72 | //config: automatically if the value '+' is used. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 73 | |
| 74 | //applet:IF_IFCONFIG(APPLET(ifconfig, BB_DIR_SBIN, BB_SUID_DROP)) |
| 75 | |
| 76 | //kbuild:lib-$(CONFIG_IFCONFIG) += ifconfig.o interface.o |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 77 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 78 | //usage:#define ifconfig_trivial_usage |
Denys Vlasenko | 11f1a25 | 2020-12-13 19:04:19 +0100 | [diff] [blame] | 79 | //usage: IF_FEATURE_IFCONFIG_STATUS("[-a]") " [IFACE] [ADDRESS]" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 80 | //usage:#define ifconfig_full_usage "\n\n" |
| 81 | //usage: "Configure a network interface\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 82 | //usage: "\n" |
| 83 | //usage: IF_FEATURE_IPV6( |
| 84 | //usage: " [add ADDRESS[/PREFIXLEN]]\n") |
| 85 | //usage: IF_FEATURE_IPV6( |
| 86 | //usage: " [del ADDRESS[/PREFIXLEN]]\n") |
| 87 | //usage: " [[-]broadcast [ADDRESS]] [[-]pointopoint [ADDRESS]]\n" |
| 88 | //usage: " [netmask ADDRESS] [dstaddr ADDRESS]\n" |
| 89 | //usage: IF_FEATURE_IFCONFIG_SLIP( |
| 90 | //usage: " [outfill NN] [keepalive NN]\n") |
| 91 | //usage: " " IF_FEATURE_IFCONFIG_HW("[hw ether" IF_FEATURE_HWIB("|infiniband")" ADDRESS] ") "[metric NN] [mtu NN]\n" |
| 92 | //usage: " [[-]trailers] [[-]arp] [[-]allmulti]\n" |
| 93 | //usage: " [multicast] [[-]promisc] [txqueuelen NN] [[-]dynamic]\n" |
| 94 | //usage: IF_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ( |
| 95 | //usage: " [mem_start NN] [io_addr NN] [irq NN]\n") |
| 96 | //usage: " [up|down] ..." |
| 97 | |
Dan Fandrich | f533ec8 | 2011-06-10 05:17:59 +0200 | [diff] [blame] | 98 | #include "libbb.h" |
| 99 | #include "inet_common.h" |
Eric Andersen | ab4e19a | 2003-01-14 08:54:08 +0000 | [diff] [blame] | 100 | #include <net/if.h> |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 101 | #include <net/if_arp.h> |
Eric Andersen | cd8c436 | 2001-11-10 11:22:46 +0000 | [diff] [blame] | 102 | #include <netinet/in.h> |
Dan Fandrich | f533ec8 | 2011-06-10 05:17:59 +0200 | [diff] [blame] | 103 | #ifdef HAVE_NET_ETHERNET_H |
| 104 | # include <net/ethernet.h> |
Eric Andersen | ab4e19a | 2003-01-14 08:54:08 +0000 | [diff] [blame] | 105 | #endif |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 106 | |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 107 | #if ENABLE_FEATURE_IFCONFIG_SLIP |
Denys Vlasenko | fc364ba | 2013-08-15 09:54:51 +0200 | [diff] [blame] | 108 | # include <linux/if_slip.h> |
Eric Andersen | f15d4da | 2001-03-06 00:48:59 +0000 | [diff] [blame] | 109 | #endif |
| 110 | |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 111 | /* I don't know if this is needed for busybox or not. Anyone? */ |
| 112 | #define QUESTIONABLE_ALIAS_CASE |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 113 | |
| 114 | |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 115 | /* Defines for glibc2.0 users. */ |
| 116 | #ifndef SIOCSIFTXQLEN |
Glenn L McGrath | 8ae4cab | 2002-11-26 09:02:06 +0000 | [diff] [blame] | 117 | # define SIOCSIFTXQLEN 0x8943 |
| 118 | # define SIOCGIFTXQLEN 0x8942 |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 119 | #endif |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 120 | |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 121 | /* ifr_qlen is ifru_ivalue, but it isn't present in 2.0 kernel headers */ |
| 122 | #ifndef ifr_qlen |
Glenn L McGrath | 8ae4cab | 2002-11-26 09:02:06 +0000 | [diff] [blame] | 123 | # define ifr_qlen ifr_ifru.ifru_mtu |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 124 | #endif |
Eric Andersen | f15d4da | 2001-03-06 00:48:59 +0000 | [diff] [blame] | 125 | |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 126 | #ifndef IFF_DYNAMIC |
Glenn L McGrath | 8ae4cab | 2002-11-26 09:02:06 +0000 | [diff] [blame] | 127 | # define IFF_DYNAMIC 0x8000 /* dialup device with changing addresses */ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 128 | #endif |
Eric Andersen | f15d4da | 2001-03-06 00:48:59 +0000 | [diff] [blame] | 129 | |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 130 | #if ENABLE_FEATURE_IPV6 |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 131 | struct in6_ifreq { |
Glenn L McGrath | baf55a8 | 2002-08-22 18:22:10 +0000 | [diff] [blame] | 132 | struct in6_addr ifr6_addr; |
| 133 | uint32_t ifr6_prefixlen; |
| 134 | int ifr6_ifindex; |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 135 | }; |
| 136 | #endif |
| 137 | |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 138 | /* |
| 139 | * Here are the bit masks for the "flags" member of struct options below. |
| 140 | * N_ signifies no arg prefix; M_ signifies arg prefixed by '-'. |
| 141 | * CLR clears the flag; SET sets the flag; ARG signifies (optional) arg. |
Eric Andersen | f15d4da | 2001-03-06 00:48:59 +0000 | [diff] [blame] | 142 | */ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 143 | #define N_CLR 0x01 |
| 144 | #define M_CLR 0x02 |
| 145 | #define N_SET 0x04 |
| 146 | #define M_SET 0x08 |
| 147 | #define N_ARG 0x10 |
| 148 | #define M_ARG 0x20 |
| 149 | |
| 150 | #define M_MASK (M_CLR | M_SET | M_ARG) |
| 151 | #define N_MASK (N_CLR | N_SET | N_ARG) |
| 152 | #define SET_MASK (N_SET | M_SET) |
| 153 | #define CLR_MASK (N_CLR | M_CLR) |
| 154 | #define SET_CLR_MASK (SET_MASK | CLR_MASK) |
| 155 | #define ARG_MASK (M_ARG | N_ARG) |
| 156 | |
| 157 | /* |
| 158 | * Here are the bit masks for the "arg_flags" member of struct options below. |
| 159 | */ |
| 160 | |
| 161 | /* |
| 162 | * cast type: |
| 163 | * 00 int |
| 164 | * 01 char * |
| 165 | * 02 HOST_COPY in_ether |
| 166 | * 03 HOST_COPY INET_resolve |
| 167 | */ |
| 168 | #define A_CAST_TYPE 0x03 |
| 169 | /* |
| 170 | * map type: |
| 171 | * 00 not a map type (mem_start, io_addr, irq) |
| 172 | * 04 memstart (unsigned long) |
| 173 | * 08 io_addr (unsigned short) |
| 174 | * 0C irq (unsigned char) |
| 175 | */ |
| 176 | #define A_MAP_TYPE 0x0C |
| 177 | #define A_ARG_REQ 0x10 /* Set if an arg is required. */ |
| 178 | #define A_NETMASK 0x20 /* Set if netmask (check for multiple sets). */ |
| 179 | #define A_SET_AFTER 0x40 /* Set a flag at the end. */ |
| 180 | #define A_COLON_CHK 0x80 /* Is this needed? See below. */ |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 181 | #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 182 | #define A_HOSTNAME 0x100 /* Set if it is ip addr. */ |
| 183 | #define A_BROADCAST 0x200 /* Set if it is broadcast addr. */ |
| 184 | #else |
| 185 | #define A_HOSTNAME 0 |
| 186 | #define A_BROADCAST 0 |
| 187 | #endif |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 188 | |
| 189 | /* |
| 190 | * These defines are for dealing with the A_CAST_TYPE field. |
| 191 | */ |
| 192 | #define A_CAST_CHAR_PTR 0x01 |
| 193 | #define A_CAST_RESOLVE 0x01 |
| 194 | #define A_CAST_HOST_COPY 0x02 |
| 195 | #define A_CAST_HOST_COPY_IN_ETHER A_CAST_HOST_COPY |
| 196 | #define A_CAST_HOST_COPY_RESOLVE (A_CAST_HOST_COPY | A_CAST_RESOLVE) |
| 197 | |
| 198 | /* |
| 199 | * These defines are for dealing with the A_MAP_TYPE field. |
| 200 | */ |
| 201 | #define A_MAP_ULONG 0x04 /* memstart */ |
| 202 | #define A_MAP_USHORT 0x08 /* io_addr */ |
| 203 | #define A_MAP_UCHAR 0x0C /* irq */ |
| 204 | |
| 205 | /* |
| 206 | * Define the bit masks signifying which operations to perform for each arg. |
| 207 | */ |
| 208 | |
| 209 | #define ARG_METRIC (A_ARG_REQ /*| A_CAST_INT*/) |
| 210 | #define ARG_MTU (A_ARG_REQ /*| A_CAST_INT*/) |
| 211 | #define ARG_TXQUEUELEN (A_ARG_REQ /*| A_CAST_INT*/) |
| 212 | #define ARG_MEM_START (A_ARG_REQ | A_MAP_ULONG) |
Eric Andersen | 72f9a42 | 2001-10-28 05:12:20 +0000 | [diff] [blame] | 213 | #define ARG_IO_ADDR (A_ARG_REQ | A_MAP_ULONG) |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 214 | #define ARG_IRQ (A_ARG_REQ | A_MAP_UCHAR) |
| 215 | #define ARG_DSTADDR (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE) |
| 216 | #define ARG_NETMASK (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_NETMASK) |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 217 | #define ARG_BROADCAST (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER | A_BROADCAST) |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 218 | #define ARG_HW (A_ARG_REQ | A_CAST_HOST_COPY_IN_ETHER) |
Eric Andersen | b6e58d2 | 2003-11-14 03:04:08 +0000 | [diff] [blame] | 219 | #define ARG_POINTOPOINT (A_ARG_REQ | A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER) |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 220 | #define ARG_KEEPALIVE (A_ARG_REQ | A_CAST_CHAR_PTR) |
| 221 | #define ARG_OUTFILL (A_ARG_REQ | A_CAST_CHAR_PTR) |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 222 | #define ARG_HOSTNAME (A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER | A_COLON_CHK | A_HOSTNAME) |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 223 | #define ARG_ADD_DEL (A_CAST_HOST_COPY_RESOLVE | A_SET_AFTER) |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 224 | |
| 225 | |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 226 | struct arg1opt { |
| 227 | const char *name; |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 228 | unsigned short selector; |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 229 | unsigned short ifr_offset; |
| 230 | }; |
| 231 | |
| 232 | struct options { |
| 233 | const char *name; |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 234 | #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 235 | const unsigned int flags:6; |
| 236 | const unsigned int arg_flags:10; |
| 237 | #else |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 238 | const unsigned char flags; |
Manuel Novoa III | 4fb0b51 | 2001-08-10 06:02:23 +0000 | [diff] [blame] | 239 | const unsigned char arg_flags; |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 240 | #endif |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 241 | const unsigned short selector; |
| 242 | }; |
| 243 | |
| 244 | #define ifreq_offsetof(x) offsetof(struct ifreq, x) |
| 245 | |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 246 | /* |
| 247 | * Set up the tables. Warning! They must have corresponding order! |
| 248 | */ |
| 249 | |
Denys Vlasenko | 6cc4962 | 2020-11-30 14:58:02 +0100 | [diff] [blame] | 250 | static const struct arg1opt Arg1Opt[] ALIGN_PTR = { |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 251 | { "SIFMETRIC", SIOCSIFMETRIC, ifreq_offsetof(ifr_metric) }, |
| 252 | { "SIFMTU", SIOCSIFMTU, ifreq_offsetof(ifr_mtu) }, |
| 253 | { "SIFTXQLEN", SIOCSIFTXQLEN, ifreq_offsetof(ifr_qlen) }, |
| 254 | { "SIFDSTADDR", SIOCSIFDSTADDR, ifreq_offsetof(ifr_dstaddr) }, |
| 255 | { "SIFNETMASK", SIOCSIFNETMASK, ifreq_offsetof(ifr_netmask) }, |
| 256 | { "SIFBRDADDR", SIOCSIFBRDADDR, ifreq_offsetof(ifr_broadaddr) }, |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 257 | #if ENABLE_FEATURE_IFCONFIG_HW |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 258 | { "SIFHWADDR", SIOCSIFHWADDR, ifreq_offsetof(ifr_hwaddr) }, |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 259 | #endif |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 260 | { "SIFDSTADDR", SIOCSIFDSTADDR, ifreq_offsetof(ifr_dstaddr) }, |
Eric Andersen | f15d4da | 2001-03-06 00:48:59 +0000 | [diff] [blame] | 261 | #ifdef SIOCSKEEPALIVE |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 262 | { "SKEEPALIVE", SIOCSKEEPALIVE, ifreq_offsetof(ifr_data) }, |
Eric Andersen | f15d4da | 2001-03-06 00:48:59 +0000 | [diff] [blame] | 263 | #endif |
| 264 | #ifdef SIOCSOUTFILL |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 265 | { "SOUTFILL", SIOCSOUTFILL, ifreq_offsetof(ifr_data) }, |
Eric Andersen | f15d4da | 2001-03-06 00:48:59 +0000 | [diff] [blame] | 266 | #endif |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 267 | #if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 268 | { "SIFMAP", SIOCSIFMAP, ifreq_offsetof(ifr_map.mem_start) }, |
| 269 | { "SIFMAP", SIOCSIFMAP, ifreq_offsetof(ifr_map.base_addr) }, |
| 270 | { "SIFMAP", SIOCSIFMAP, ifreq_offsetof(ifr_map.irq) }, |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 271 | #endif |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 272 | #if ENABLE_FEATURE_IPV6 |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 273 | { "SIFADDR", SIOCSIFADDR, ifreq_offsetof(ifr_addr) }, /* IPv6 version ignores the offset */ |
| 274 | { "DIFADDR", SIOCDIFADDR, ifreq_offsetof(ifr_addr) }, /* IPv6 version ignores the offset */ |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 275 | #endif |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 276 | /* Last entry is for unmatched (assumed to be hostname/address) arg. */ |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 277 | { "SIFADDR", SIOCSIFADDR, ifreq_offsetof(ifr_addr) }, |
Eric Andersen | f15d4da | 2001-03-06 00:48:59 +0000 | [diff] [blame] | 278 | }; |
| 279 | |
Denys Vlasenko | 6cc4962 | 2020-11-30 14:58:02 +0100 | [diff] [blame] | 280 | static const struct options OptArray[] ALIGN_PTR = { |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 281 | { "metric", N_ARG, ARG_METRIC, 0 }, |
| 282 | { "mtu", N_ARG, ARG_MTU, 0 }, |
| 283 | { "txqueuelen", N_ARG, ARG_TXQUEUELEN, 0 }, |
| 284 | { "dstaddr", N_ARG, ARG_DSTADDR, 0 }, |
| 285 | { "netmask", N_ARG, ARG_NETMASK, 0 }, |
| 286 | { "broadcast", N_ARG | M_CLR, ARG_BROADCAST, IFF_BROADCAST }, |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 287 | #if ENABLE_FEATURE_IFCONFIG_HW |
Bernhard Reutner-Fischer | f3b778a | 2008-05-16 16:10:31 +0000 | [diff] [blame] | 288 | { "hw", N_ARG, ARG_HW, 0 }, |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 289 | #endif |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 290 | { "pointopoint", N_ARG | M_CLR, ARG_POINTOPOINT, IFF_POINTOPOINT }, |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 291 | #ifdef SIOCSKEEPALIVE |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 292 | { "keepalive", N_ARG, ARG_KEEPALIVE, 0 }, |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 293 | #endif |
| 294 | #ifdef SIOCSOUTFILL |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 295 | { "outfill", N_ARG, ARG_OUTFILL, 0 }, |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 296 | #endif |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 297 | #if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 298 | { "mem_start", N_ARG, ARG_MEM_START, 0 }, |
| 299 | { "io_addr", N_ARG, ARG_IO_ADDR, 0 }, |
| 300 | { "irq", N_ARG, ARG_IRQ, 0 }, |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 301 | #endif |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 302 | #if ENABLE_FEATURE_IPV6 |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 303 | { "add", N_ARG, ARG_ADD_DEL, 0 }, |
| 304 | { "del", N_ARG, ARG_ADD_DEL, 0 }, |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 305 | #endif |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 306 | { "arp", N_CLR | M_SET, 0, IFF_NOARP }, |
| 307 | { "trailers", N_CLR | M_SET, 0, IFF_NOTRAILERS }, |
| 308 | { "promisc", N_SET | M_CLR, 0, IFF_PROMISC }, |
| 309 | { "multicast", N_SET | M_CLR, 0, IFF_MULTICAST }, |
| 310 | { "allmulti", N_SET | M_CLR, 0, IFF_ALLMULTI }, |
| 311 | { "dynamic", N_SET | M_CLR, 0, IFF_DYNAMIC }, |
| 312 | { "up", N_SET, 0, (IFF_UP | IFF_RUNNING) }, |
| 313 | { "down", N_CLR, 0, IFF_UP }, |
| 314 | { NULL, 0, ARG_HOSTNAME, (IFF_UP | IFF_RUNNING) } |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 315 | }; |
Eric Andersen | f15d4da | 2001-03-06 00:48:59 +0000 | [diff] [blame] | 316 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 317 | int ifconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 318 | int ifconfig_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 319 | { |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 320 | struct ifreq ifr; |
| 321 | struct sockaddr_in sai; |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 322 | #if ENABLE_FEATURE_IFCONFIG_HW |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 323 | struct sockaddr sa; |
| 324 | #endif |
| 325 | const struct arg1opt *a1op; |
| 326 | const struct options *op; |
Glenn L McGrath | baf55a8 | 2002-08-22 18:22:10 +0000 | [diff] [blame] | 327 | int sockfd; /* socket fd we use to manipulate stuff with */ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 328 | int selector; |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 329 | #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 330 | unsigned int mask; |
| 331 | unsigned int did_flags; |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 332 | unsigned int sai_hostname, sai_netmask; |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 333 | #else |
Manuel Novoa III | 4fb0b51 | 2001-08-10 06:02:23 +0000 | [diff] [blame] | 334 | unsigned char mask; |
| 335 | unsigned char did_flags; |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 336 | #endif |
| 337 | char *p; |
Denis Vlasenko | 5096246 | 2006-11-21 20:32:38 +0000 | [diff] [blame] | 338 | /*char host[128];*/ |
| 339 | const char *host = NULL; /* make gcc happy */ |
Denys Vlasenko | 82ec894 | 2018-03-05 17:46:17 +0100 | [diff] [blame] | 340 | IF_FEATURE_IFCONFIG_STATUS(char *show_all_param;) |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 341 | |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 342 | did_flags = 0; |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 343 | #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS |
Eric Andersen | 0cc7e62 | 2003-06-20 09:23:34 +0000 | [diff] [blame] | 344 | sai_hostname = 0; |
| 345 | sai_netmask = 0; |
Eric Andersen | 9d9cecf | 2003-06-21 09:05:49 +0000 | [diff] [blame] | 346 | #endif |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 347 | |
Manuel Novoa III | 68ea1d0 | 2001-03-12 09:57:59 +0000 | [diff] [blame] | 348 | /* skip argv[0] */ |
| 349 | ++argv; |
Manuel Novoa III | 68ea1d0 | 2001-03-12 09:57:59 +0000 | [diff] [blame] | 350 | |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 351 | #if ENABLE_FEATURE_IFCONFIG_STATUS |
Denys Vlasenko | 82ec894 | 2018-03-05 17:46:17 +0100 | [diff] [blame] | 352 | show_all_param = NULL; |
| 353 | if (argv[0] && argv[0][0] == '-' && argv[0][1] == 'a' && !argv[0][2]) { |
Manuel Novoa III | 68ea1d0 | 2001-03-12 09:57:59 +0000 | [diff] [blame] | 354 | ++argv; |
Denys Vlasenko | 82ec894 | 2018-03-05 17:46:17 +0100 | [diff] [blame] | 355 | show_all_param = IFNAME_SHOW_DOWNED_TOO; |
Manuel Novoa III | 68ea1d0 | 2001-03-12 09:57:59 +0000 | [diff] [blame] | 356 | } |
| 357 | #endif |
| 358 | |
Denys Vlasenko | 2ec91ae | 2010-01-04 14:15:38 +0100 | [diff] [blame] | 359 | if (!argv[0] || !argv[1]) { /* one or no args */ |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 360 | #if ENABLE_FEATURE_IFCONFIG_STATUS |
Denys Vlasenko | 82ec894 | 2018-03-05 17:46:17 +0100 | [diff] [blame] | 361 | return display_interfaces(argv[0] ? argv[0] : show_all_param); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 362 | #else |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 363 | bb_simple_error_msg_and_die("no support for status display"); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 364 | #endif |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 365 | } |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 366 | |
| 367 | /* Create a channel to the NET kernel. */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 368 | sockfd = xsocket(AF_INET, SOCK_DGRAM, 0); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 369 | |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 370 | /* get interface name */ |
Denis Vlasenko | 360d966 | 2008-12-02 18:18:50 +0000 | [diff] [blame] | 371 | strncpy_IFNAMSIZ(ifr.ifr_name, *argv); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 372 | |
| 373 | /* Process the remaining arguments. */ |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 374 | while (*++argv != NULL) { |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 375 | p = *argv; |
| 376 | mask = N_MASK; |
Glenn L McGrath | baf55a8 | 2002-08-22 18:22:10 +0000 | [diff] [blame] | 377 | if (*p == '-') { /* If the arg starts with '-'... */ |
| 378 | ++p; /* advance past it and */ |
| 379 | mask = M_MASK; /* set the appropriate mask. */ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 380 | } |
Glenn L McGrath | baf55a8 | 2002-08-22 18:22:10 +0000 | [diff] [blame] | 381 | for (op = OptArray; op->name; op++) { /* Find table entry. */ |
| 382 | if (strcmp(p, op->name) == 0) { /* If name matches... */ |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 383 | mask &= op->flags; |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 384 | if (mask) /* set the mask and go. */ |
Bernhard Reutner-Fischer | 0b42a6a | 2005-10-07 11:34:50 +0000 | [diff] [blame] | 385 | goto FOUND_ARG; |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 386 | /* If we get here, there was a valid arg with an */ |
| 387 | /* invalid '-' prefix. */ |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 388 | bb_error_msg_and_die("bad: '%s'", p-1); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 389 | } |
| 390 | } |
Glenn L McGrath | baf55a8 | 2002-08-22 18:22:10 +0000 | [diff] [blame] | 391 | |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 392 | /* We fell through, so treat as possible hostname. */ |
Denis Vlasenko | 80b8b39 | 2007-06-25 10:55:35 +0000 | [diff] [blame] | 393 | a1op = Arg1Opt + ARRAY_SIZE(Arg1Opt) - 1; |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 394 | mask = op->arg_flags; |
| 395 | goto HOSTNAME; |
| 396 | |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 397 | FOUND_ARG: |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 398 | if (mask & ARG_MASK) { |
| 399 | mask = op->arg_flags; |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 400 | if (mask & A_NETMASK & did_flags) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 401 | bb_show_usage(); |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 402 | a1op = Arg1Opt + (op - OptArray); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 403 | if (*++argv == NULL) { |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 404 | if (mask & A_ARG_REQ) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 405 | bb_show_usage(); |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 406 | --argv; |
| 407 | mask &= A_SET_AFTER; /* just for broadcast */ |
Glenn L McGrath | baf55a8 | 2002-08-22 18:22:10 +0000 | [diff] [blame] | 408 | } else { /* got an arg so process it */ |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 409 | HOSTNAME: |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 410 | did_flags |= (mask & (A_NETMASK|A_HOSTNAME)); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 411 | if (mask & A_CAST_HOST_COPY) { |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 412 | #if ENABLE_FEATURE_IFCONFIG_HW |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 413 | if (mask & A_CAST_RESOLVE) { |
| 414 | #endif |
Denis Vlasenko | 5096246 | 2006-11-21 20:32:38 +0000 | [diff] [blame] | 415 | host = *argv; |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 416 | if (strcmp(host, "inet") == 0) |
| 417 | continue; /* compat stuff */ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 418 | sai.sin_family = AF_INET; |
| 419 | sai.sin_port = 0; |
Denys Vlasenko | 0004e99 | 2010-09-01 12:01:17 +0200 | [diff] [blame] | 420 | if (strcmp(host, "default") == 0) { |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 421 | /* Default is special, meaning 0.0.0.0. */ |
| 422 | sai.sin_addr.s_addr = INADDR_ANY; |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 423 | } |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 424 | #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 425 | else if ((host[0] == '+' && !host[1]) |
| 426 | && (mask & A_BROADCAST) |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 427 | && (did_flags & (A_NETMASK|A_HOSTNAME)) == (A_NETMASK|A_HOSTNAME) |
| 428 | ) { |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 429 | /* + is special, meaning broadcast is derived. */ |
| 430 | sai.sin_addr.s_addr = (~sai_netmask) | (sai_hostname & sai_netmask); |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 431 | } |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 432 | #endif |
Denis Vlasenko | 1094452 | 2007-02-04 02:40:27 +0000 | [diff] [blame] | 433 | else { |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 434 | len_and_sockaddr *lsa; |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 435 | #if ENABLE_FEATURE_IPV6 |
| 436 | char *prefix; |
| 437 | int prefix_len = 0; |
| 438 | prefix = strchr(host, '/'); |
| 439 | if (prefix) { |
| 440 | prefix_len = xatou_range(prefix + 1, 0, 128); |
| 441 | *prefix = '\0'; |
| 442 | } |
| 443 | resolve: |
| 444 | #endif |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 445 | lsa = xhost2sockaddr(host, 0); |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 446 | #if ENABLE_FEATURE_IPV6 |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 447 | if (lsa->u.sa.sa_family != AF_INET6 && prefix) { |
| 448 | /* TODO: we do not support "ifconfig eth0 up 1.2.3.4/17". |
| 449 | * For now, just make it fail instead of silently ignoring "/17" part: |
| 450 | */ |
| 451 | *prefix = '/'; |
| 452 | goto resolve; |
| 453 | } |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 454 | if (lsa->u.sa.sa_family == AF_INET6) { |
Denis Vlasenko | 1094452 | 2007-02-04 02:40:27 +0000 | [diff] [blame] | 455 | int sockfd6; |
| 456 | struct in6_ifreq ifr6; |
Glenn L McGrath | baf55a8 | 2002-08-22 18:22:10 +0000 | [diff] [blame] | 457 | |
Denis Vlasenko | 1094452 | 2007-02-04 02:40:27 +0000 | [diff] [blame] | 458 | sockfd6 = xsocket(AF_INET6, SOCK_DGRAM, 0); |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 459 | xioctl(sockfd6, SIOCGIFINDEX, &ifr); |
Denis Vlasenko | 1094452 | 2007-02-04 02:40:27 +0000 | [diff] [blame] | 460 | ifr6.ifr6_ifindex = ifr.ifr_ifindex; |
| 461 | ifr6.ifr6_prefixlen = prefix_len; |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 462 | memcpy(&ifr6.ifr6_addr, |
| 463 | &lsa->u.sin6.sin6_addr, |
| 464 | sizeof(struct in6_addr)); |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 465 | ioctl_or_perror_and_die(sockfd6, a1op->selector, &ifr6, "SIOC%s", a1op->name); |
Denis Vlasenko | 1094452 | 2007-02-04 02:40:27 +0000 | [diff] [blame] | 466 | if (ENABLE_FEATURE_CLEAN_UP) |
| 467 | free(lsa); |
| 468 | continue; |
| 469 | } |
Eric Andersen | 51b8bd6 | 2002-07-03 11:46:38 +0000 | [diff] [blame] | 470 | #endif |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 471 | sai.sin_addr = lsa->u.sin.sin_addr; |
Denis Vlasenko | 1094452 | 2007-02-04 02:40:27 +0000 | [diff] [blame] | 472 | if (ENABLE_FEATURE_CLEAN_UP) |
| 473 | free(lsa); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 474 | } |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 475 | #if ENABLE_FEATURE_IFCONFIG_BROADCAST_PLUS |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 476 | if (mask & A_HOSTNAME) |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 477 | sai_hostname = sai.sin_addr.s_addr; |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 478 | if (mask & A_NETMASK) |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 479 | sai_netmask = sai.sin_addr.s_addr; |
Manuel Novoa III | a668558 | 2002-12-27 17:42:01 +0000 | [diff] [blame] | 480 | #endif |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 481 | p = (char *) &sai; |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 482 | #if ENABLE_FEATURE_IFCONFIG_HW |
Glenn L McGrath | baf55a8 | 2002-08-22 18:22:10 +0000 | [diff] [blame] | 483 | } else { /* A_CAST_HOST_COPY_IN_ETHER */ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 484 | /* This is the "hw" arg case. */ |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 485 | smalluint hw_class = index_in_substrings("ether\0" |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 486 | IF_FEATURE_HWIB("infiniband\0"), *argv) + 1; |
Bernhard Reutner-Fischer | f3b778a | 2008-05-16 16:10:31 +0000 | [diff] [blame] | 487 | if (!hw_class || !*++argv) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 488 | bb_show_usage(); |
Denis Vlasenko | 5096246 | 2006-11-21 20:32:38 +0000 | [diff] [blame] | 489 | host = *argv; |
Denis Vlasenko | 3b162ec | 2008-06-04 07:59:51 +0000 | [diff] [blame] | 490 | if (hw_class == 1 ? in_ether(host, &sa) : in_ib(host, &sa)) |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 491 | bb_error_msg_and_die("invalid hw-addr %s", host); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 492 | p = (char *) &sa; |
| 493 | } |
| 494 | #endif |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 495 | memcpy( ((char *)&ifr) + a1op->ifr_offset, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 496 | p, sizeof(struct sockaddr)); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 497 | } else { |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 498 | /* FIXME: error check?? */ |
Rob Landley | c819ca9 | 2005-11-22 17:09:14 +0000 | [diff] [blame] | 499 | unsigned long i = strtoul(*argv, NULL, 0); |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 500 | p = ((char *)&ifr) + a1op->ifr_offset; |
| 501 | #if ENABLE_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 502 | if (mask & A_MAP_TYPE) { |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 503 | xioctl(sockfd, SIOCGIFMAP, &ifr); |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 504 | if ((mask & A_MAP_UCHAR) == A_MAP_UCHAR) |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 505 | *(unsigned char *) p = i; |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 506 | else if (mask & A_MAP_USHORT) |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 507 | *(unsigned short *) p = i; |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 508 | else |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 509 | *(unsigned long *) p = i; |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 510 | } else |
| 511 | #endif |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 512 | if (mask & A_CAST_CHAR_PTR) |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 513 | *(caddr_t *) p = (caddr_t) i; |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 514 | else /* A_CAST_INT */ |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 515 | *(int *) p = i; |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 516 | } |
Glenn L McGrath | baf55a8 | 2002-08-22 18:22:10 +0000 | [diff] [blame] | 517 | |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 518 | ioctl_or_perror_and_die(sockfd, a1op->selector, &ifr, "SIOC%s", a1op->name); |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 519 | #ifdef QUESTIONABLE_ALIAS_CASE |
| 520 | if (mask & A_COLON_CHK) { |
| 521 | /* |
| 522 | * Don't do the set_flag() if the address is an alias with |
Denis Vlasenko | 04b30ba | 2006-11-21 14:26:37 +0000 | [diff] [blame] | 523 | * a '-' at the end, since it's deleted already! - Roman |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 524 | * |
| 525 | * Should really use regex.h here, not sure though how well |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 526 | * it'll go with the cross-platform support etc. |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 527 | */ |
| 528 | char *ptr; |
| 529 | short int found_colon = 0; |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 530 | for (ptr = ifr.ifr_name; *ptr; ptr++) |
| 531 | if (*ptr == ':') |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 532 | found_colon++; |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 533 | if (found_colon && ptr[-1] == '-') |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 534 | continue; |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 535 | } |
| 536 | #endif |
| 537 | } |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 538 | if (!(mask & A_SET_AFTER)) |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 539 | continue; |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 540 | mask = N_SET; |
Denys Vlasenko | 31dc860 | 2013-01-20 18:10:12 +0100 | [diff] [blame] | 541 | } /* if (mask & ARG_MASK) */ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 542 | |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 543 | xioctl(sockfd, SIOCGIFFLAGS, &ifr); |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 544 | selector = op->selector; |
| 545 | if (mask & SET_MASK) |
| 546 | ifr.ifr_flags |= selector; |
| 547 | else |
| 548 | ifr.ifr_flags &= ~selector; |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 549 | xioctl(sockfd, SIOCSIFFLAGS, &ifr); |
Denis Vlasenko | bf0a201 | 2006-12-26 10:42:51 +0000 | [diff] [blame] | 550 | } /* while () */ |
Manuel Novoa III | df351d6 | 2001-03-08 22:57:00 +0000 | [diff] [blame] | 551 | |
Denis Vlasenko | 2813ce2 | 2006-11-27 10:03:21 +0000 | [diff] [blame] | 552 | if (ENABLE_FEATURE_CLEAN_UP) |
| 553 | close(sockfd); |
| 554 | return 0; |
Eric Andersen | ec45595 | 2001-02-14 08:11:27 +0000 | [diff] [blame] | 555 | } |