blob: c450c6a9f77125b5ed33fe3b94d7d5e8b432f8ba [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00002/*
3 * ipaddress.c "ip address".
4 *
Bernhard Reutner-Fischer20f40002006-01-30 17:17:14 +00005 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00006 *
7 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
8 *
9 * Changes:
10 * Laszlo Valko <valko@linux.karinthy.hu> 990223: address label must be zero terminated
11 */
12
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000013#include <fnmatch.h>
Eric Andersen8004bb72003-01-14 08:06:07 +000014#include <net/if.h>
15#include <net/if_arp.h>
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000016
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000017#include "ip_common.h" /* #include "libbb.h" is inside */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000018#include "rt_names.h"
19#include "utils.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000020
Denis Vlasenko9b6f4aa2008-06-05 14:01:04 +000021#ifndef IFF_LOWER_UP
22/* from linux/if.h */
23#define IFF_LOWER_UP 0x10000 /* driver signals L1 up*/
24#endif
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000025
Denis Vlasenko540a2a12007-04-07 01:14:45 +000026typedef struct filter_t {
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000027 char *label;
28 char *flushb;
29 struct rtnl_handle *rth;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000030 int scope, scopemask;
31 int flags, flagmask;
Glenn L McGrathd66370c2003-01-13 21:40:38 +000032 int flushp;
33 int flushe;
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000034 int ifindex;
35 family_t family;
36 smallint showqueue;
37 smallint oneline;
38 smallint up;
39 smallint flushed;
40 inet_prefix pfx;
Denis Vlasenko540a2a12007-04-07 01:14:45 +000041} filter_t;
42
43#define filter (*(filter_t*)&bb_common_bufsiz1)
44
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000045
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000046static void print_link_flags(unsigned flags, unsigned mdown)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000047{
Denis Vlasenko53354ac2008-06-07 15:10:29 +000048 static const int flag_masks[] = {
49 IFF_LOOPBACK, IFF_BROADCAST, IFF_POINTOPOINT,
50 IFF_MULTICAST, IFF_NOARP, IFF_UP, IFF_LOWER_UP };
51 static const char flag_labels[] ALIGN1 =
52 "LOOPBACK\0""BROADCAST\0""POINTOPOINT\0"
53 "MULTICAST\0""NOARP\0""UP\0""LOWER_UP\0";
54
Denis Vlasenko7d60fc12008-06-05 06:51:06 +000055 bb_putchar('<');
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000056 flags &= ~IFF_RUNNING;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000057#if 0
58 _PF(ALLMULTI);
59 _PF(PROMISC);
60 _PF(MASTER);
61 _PF(SLAVE);
62 _PF(DEBUG);
63 _PF(DYNAMIC);
64 _PF(AUTOMEDIA);
65 _PF(PORTSEL);
66 _PF(NOTRAILERS);
67#endif
Denis Vlasenko53354ac2008-06-07 15:10:29 +000068 flags = print_flags_separated(flag_masks, flag_labels, flags, ",");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000069 if (flags)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000070 printf("%x", flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000071 if (mdown)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000072 printf(",M-DOWN");
73 printf("> ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000074}
75
Glenn L McGrath2626ef62002-12-02 01:40:05 +000076static void print_queuelen(char *name)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000077{
78 struct ifreq ifr;
79 int s;
80
81 s = socket(AF_INET, SOCK_STREAM, 0);
82 if (s < 0)
83 return;
84
85 memset(&ifr, 0, sizeof(ifr));
Denis Vlasenko360d9662008-12-02 18:18:50 +000086 strncpy_IFNAMSIZ(ifr.ifr_name, name);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000087 if (ioctl_or_warn(s, SIOCGIFTXQLEN, &ifr) < 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000088 close(s);
89 return;
90 }
91 close(s);
92
93 if (ifr.ifr_qlen)
94 printf("qlen %d", ifr.ifr_qlen);
95}
96
Denys Vlasenkoadf922e2009-10-08 14:35:37 +020097static NOINLINE int print_linkinfo(const struct nlmsghdr *n)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000098{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000099 struct ifinfomsg *ifi = NLMSG_DATA(n);
100 struct rtattr * tb[IFLA_MAX+1];
101 int len = n->nlmsg_len;
102 unsigned m_flag = 0;
103
104 if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
105 return 0;
106
107 len -= NLMSG_LENGTH(sizeof(*ifi));
108 if (len < 0)
109 return -1;
110
111 if (filter.ifindex && ifi->ifi_index != filter.ifindex)
112 return 0;
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000113 if (filter.up && !(ifi->ifi_flags & IFF_UP))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000114 return 0;
115
116 memset(tb, 0, sizeof(tb));
117 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
118 if (tb[IFLA_IFNAME] == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 bb_error_msg("nil ifname");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000120 return -1;
121 }
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000122 if (filter.label
123 && (!filter.family || filter.family == AF_PACKET)
124 && fnmatch(filter.label, RTA_DATA(tb[IFLA_IFNAME]), 0)
125 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000126 return 0;
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000127 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000128
129 if (n->nlmsg_type == RTM_DELLINK)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000130 printf("Deleted ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000131
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000132 printf("%d: %s", ifi->ifi_index,
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000133 tb[IFLA_IFNAME] ? (char*)RTA_DATA(tb[IFLA_IFNAME]) : "<nil>");
134
135 if (tb[IFLA_LINK]) {
136 SPRINT_BUF(b1);
137 int iflink = *(int*)RTA_DATA(tb[IFLA_LINK]);
138 if (iflink == 0)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000139 printf("@NONE: ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000140 else {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000141 printf("@%s: ", ll_idx_n2a(iflink, b1));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000142 m_flag = ll_index_to_flags(iflink);
143 m_flag = !(m_flag & IFF_UP);
144 }
145 } else {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000146 printf(": ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000147 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000148 print_link_flags(ifi->ifi_flags, m_flag);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000149
150 if (tb[IFLA_MTU])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000151 printf("mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU]));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000152 if (tb[IFLA_QDISC])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000153 printf("qdisc %s ", (char*)RTA_DATA(tb[IFLA_QDISC]));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000154#ifdef IFLA_MASTER
155 if (tb[IFLA_MASTER]) {
156 SPRINT_BUF(b1);
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000157 printf("master %s ", ll_idx_n2a(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000158 }
159#endif
160 if (filter.showqueue)
161 print_queuelen((char*)RTA_DATA(tb[IFLA_IFNAME]));
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000162
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000163 if (!filter.family || filter.family == AF_PACKET) {
164 SPRINT_BUF(b1);
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200165 printf("%c link/%s ", _SL_, ll_type_n2a(ifi->ifi_type, b1));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000166
167 if (tb[IFLA_ADDRESS]) {
Denis Vlasenko605b20e2007-09-30 16:22:36 +0000168 fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_ADDRESS]),
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000169 RTA_PAYLOAD(tb[IFLA_ADDRESS]),
170 ifi->ifi_type,
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000171 b1, sizeof(b1)), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000172 }
173 if (tb[IFLA_BROADCAST]) {
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000174 if (ifi->ifi_flags & IFF_POINTOPOINT)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000175 printf(" peer ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000176 else
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000177 printf(" brd ");
Denis Vlasenko605b20e2007-09-30 16:22:36 +0000178 fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_BROADCAST]),
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000179 RTA_PAYLOAD(tb[IFLA_BROADCAST]),
180 ifi->ifi_type,
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000181 b1, sizeof(b1)), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000182 }
183 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000184 bb_putchar('\n');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100185 /*fflush_all();*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000186 return 0;
187}
188
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000189static int flush_update(void)
190{
191 if (rtnl_send(filter.rth, filter.flushb, filter.flushp) < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000192 bb_perror_msg("failed to send flush request");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000193 return -1;
194 }
195 filter.flushp = 0;
196 return 0;
197}
198
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200199static int FAST_FUNC print_addrinfo(const struct sockaddr_nl *who UNUSED_PARAM,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000200 struct nlmsghdr *n, void *arg UNUSED_PARAM)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000201{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000202 struct ifaddrmsg *ifa = NLMSG_DATA(n);
203 int len = n->nlmsg_len;
204 struct rtattr * rta_tb[IFA_MAX+1];
205 char abuf[256];
206 SPRINT_BUF(b1);
207
208 if (n->nlmsg_type != RTM_NEWADDR && n->nlmsg_type != RTM_DELADDR)
209 return 0;
210 len -= NLMSG_LENGTH(sizeof(*ifa));
211 if (len < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000212 bb_error_msg("wrong nlmsg len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000213 return -1;
214 }
215
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000216 if (filter.flushb && n->nlmsg_type != RTM_NEWADDR)
217 return 0;
218
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000219 memset(rta_tb, 0, sizeof(rta_tb));
220 parse_rtattr(rta_tb, IFA_MAX, IFA_RTA(ifa), n->nlmsg_len - NLMSG_LENGTH(sizeof(*ifa)));
221
222 if (!rta_tb[IFA_LOCAL])
223 rta_tb[IFA_LOCAL] = rta_tb[IFA_ADDRESS];
224 if (!rta_tb[IFA_ADDRESS])
225 rta_tb[IFA_ADDRESS] = rta_tb[IFA_LOCAL];
226
227 if (filter.ifindex && filter.ifindex != ifa->ifa_index)
228 return 0;
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000229 if ((filter.scope ^ ifa->ifa_scope) & filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000230 return 0;
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000231 if ((filter.flags ^ ifa->ifa_flags) & filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000232 return 0;
233 if (filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000234 const char *label;
235 if (rta_tb[IFA_LABEL])
236 label = RTA_DATA(rta_tb[IFA_LABEL]);
237 else
238 label = ll_idx_n2a(ifa->ifa_index, b1);
239 if (fnmatch(filter.label, label, 0) != 0)
240 return 0;
241 }
242 if (filter.pfx.family) {
243 if (rta_tb[IFA_LOCAL]) {
244 inet_prefix dst;
245 memset(&dst, 0, sizeof(dst));
246 dst.family = ifa->ifa_family;
247 memcpy(&dst.data, RTA_DATA(rta_tb[IFA_LOCAL]), RTA_PAYLOAD(rta_tb[IFA_LOCAL]));
248 if (inet_addr_match(&dst, &filter.pfx, filter.pfx.bitlen))
249 return 0;
250 }
251 }
252
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000253 if (filter.flushb) {
254 struct nlmsghdr *fn;
255 if (NLMSG_ALIGN(filter.flushp) + n->nlmsg_len > filter.flushe) {
256 if (flush_update())
257 return -1;
258 }
259 fn = (struct nlmsghdr*)(filter.flushb + NLMSG_ALIGN(filter.flushp));
260 memcpy(fn, n, n->nlmsg_len);
261 fn->nlmsg_type = RTM_DELADDR;
262 fn->nlmsg_flags = NLM_F_REQUEST;
263 fn->nlmsg_seq = ++filter.rth->seq;
264 filter.flushp = (((char*)fn) + n->nlmsg_len) - filter.flushb;
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000265 filter.flushed = 1;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000266 return 0;
267 }
268
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000269 if (n->nlmsg_type == RTM_DELADDR)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000270 printf("Deleted ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000271
272 if (filter.oneline)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000273 printf("%u: %s", ifa->ifa_index, ll_index_to_name(ifa->ifa_index));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000274 if (ifa->ifa_family == AF_INET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000275 printf(" inet ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000276 else if (ifa->ifa_family == AF_INET6)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000277 printf(" inet6 ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000278 else
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000279 printf(" family %d ", ifa->ifa_family);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000280
281 if (rta_tb[IFA_LOCAL]) {
Denis Vlasenko605b20e2007-09-30 16:22:36 +0000282 fputs(rt_addr_n2a(ifa->ifa_family,
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000283 RTA_DATA(rta_tb[IFA_LOCAL]),
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000284 abuf, sizeof(abuf)), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000285
Denis Vlasenko76140a72009-03-05 09:21:57 +0000286 if (rta_tb[IFA_ADDRESS] == NULL
287 || memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0
288 ) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000289 printf("/%d ", ifa->ifa_prefixlen);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000290 } else {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000291 printf(" peer %s/%d ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000292 rt_addr_n2a(ifa->ifa_family,
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000293 RTA_DATA(rta_tb[IFA_ADDRESS]),
294 abuf, sizeof(abuf)),
295 ifa->ifa_prefixlen);
296 }
297 }
298
299 if (rta_tb[IFA_BROADCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000300 printf("brd %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000301 rt_addr_n2a(ifa->ifa_family,
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000302 RTA_DATA(rta_tb[IFA_BROADCAST]),
303 abuf, sizeof(abuf)));
304 }
305 if (rta_tb[IFA_ANYCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000306 printf("any %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000307 rt_addr_n2a(ifa->ifa_family,
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000308 RTA_DATA(rta_tb[IFA_ANYCAST]),
309 abuf, sizeof(abuf)));
310 }
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200311 printf("scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope, b1));
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000312 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000313 ifa->ifa_flags &= ~IFA_F_SECONDARY;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000314 printf("secondary ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000315 }
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000316 if (ifa->ifa_flags & IFA_F_TENTATIVE) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000317 ifa->ifa_flags &= ~IFA_F_TENTATIVE;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000318 printf("tentative ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000319 }
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000320 if (ifa->ifa_flags & IFA_F_DEPRECATED) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000321 ifa->ifa_flags &= ~IFA_F_DEPRECATED;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000322 printf("deprecated ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000323 }
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000324 if (!(ifa->ifa_flags & IFA_F_PERMANENT)) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000325 printf("dynamic ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000326 } else
327 ifa->ifa_flags &= ~IFA_F_PERMANENT;
328 if (ifa->ifa_flags)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000329 printf("flags %02x ", ifa->ifa_flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000330 if (rta_tb[IFA_LABEL])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000331 fputs((char*)RTA_DATA(rta_tb[IFA_LABEL]), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000332 if (rta_tb[IFA_CACHEINFO]) {
333 struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]);
334 char buf[128];
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000335 bb_putchar(_SL_);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000336 if (ci->ifa_valid == 0xFFFFFFFFU)
337 sprintf(buf, "valid_lft forever");
338 else
339 sprintf(buf, "valid_lft %dsec", ci->ifa_valid);
340 if (ci->ifa_prefered == 0xFFFFFFFFU)
341 sprintf(buf+strlen(buf), " preferred_lft forever");
342 else
343 sprintf(buf+strlen(buf), " preferred_lft %dsec", ci->ifa_prefered);
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000344 printf(" %s", buf);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000345 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000346 bb_putchar('\n');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100347 /*fflush_all();*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000348 return 0;
349}
350
351
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200352struct nlmsg_list {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000353 struct nlmsg_list *next;
354 struct nlmsghdr h;
355};
356
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000357static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000358{
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000359 for (; ainfo; ainfo = ainfo->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000360 struct nlmsghdr *n = &ainfo->h;
361 struct ifaddrmsg *ifa = NLMSG_DATA(n);
362
363 if (n->nlmsg_type != RTM_NEWADDR)
364 continue;
365
366 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
367 return -1;
368
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000369 if (ifa->ifa_index != ifindex ||
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000370 (filter.family && filter.family != ifa->ifa_family))
371 continue;
372
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000373 print_addrinfo(NULL, n, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000374 }
375 return 0;
376}
377
378
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200379static int FAST_FUNC store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000380{
381 struct nlmsg_list **linfo = (struct nlmsg_list**)arg;
382 struct nlmsg_list *h;
383 struct nlmsg_list **lp;
384
385 h = malloc(n->nlmsg_len+sizeof(void*));
386 if (h == NULL)
387 return -1;
388
389 memcpy(&h->h, n, n->nlmsg_len);
390 h->next = NULL;
391
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000392 for (lp = linfo; *lp; lp = &(*lp)->next)
393 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000394 *lp = h;
395
396 ll_remember_index(who, n, NULL);
397 return 0;
398}
399
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000400static void ipaddr_reset_filter(int _oneline)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000401{
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000402 memset(&filter, 0, sizeof(filter));
403 filter.oneline = _oneline;
404}
405
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000406/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000407int ipaddr_list_or_flush(char **argv, int flush)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000408{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000409 static const char option[] ALIGN1 = "to\0""scope\0""up\0""label\0""dev\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000410
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000411 struct nlmsg_list *linfo = NULL;
412 struct nlmsg_list *ainfo = NULL;
413 struct nlmsg_list *l;
414 struct rtnl_handle rth;
415 char *filter_dev = NULL;
416 int no_link = 0;
417
418 ipaddr_reset_filter(oneline);
419 filter.showqueue = 1;
420
421 if (filter.family == AF_UNSPEC)
422 filter.family = preferred_family;
423
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000424 if (flush) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000425 if (!*argv) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000426 bb_error_msg_and_die(bb_msg_requires_arg, "flush");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000427 }
428 if (filter.family == AF_PACKET) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100429 bb_error_msg_and_die("can't flush link addresses");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000430 }
431 }
432
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000433 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000434 const int option_num = index_in_strings(option, *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000435 switch (option_num) {
436 case 0: /* to */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000437 NEXT_ARG();
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000438 get_prefix(&filter.pfx, *argv, filter.family);
439 if (filter.family == AF_UNSPEC) {
440 filter.family = filter.pfx.family;
441 }
442 break;
443 case 1: /* scope */
444 {
Eric Andersend78aea82006-01-30 18:00:02 +0000445 uint32_t scope = 0;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000446 NEXT_ARG();
447 filter.scopemask = -1;
448 if (rtnl_rtscope_a2n(&scope, *argv)) {
449 if (strcmp(*argv, "all") != 0) {
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000450 invarg(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000451 }
452 scope = RT_SCOPE_NOWHERE;
453 filter.scopemask = 0;
454 }
455 filter.scope = scope;
456 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000457 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000458 case 2: /* up */
459 filter.up = 1;
460 break;
461 case 3: /* label */
462 NEXT_ARG();
463 filter.label = *argv;
464 break;
465 case 4: /* dev */
466 NEXT_ARG();
467 default:
468 if (filter_dev) {
469 duparg2("dev", *argv);
470 }
471 filter_dev = *argv;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000472 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000473 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000474 }
475
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000476 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000477
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000478 xrtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK);
479 xrtnl_dump_filter(&rth, store_nlmsg, &linfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000480
481 if (filter_dev) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000482 filter.ifindex = xll_name_to_index(filter_dev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000483 }
484
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000485 if (flush) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000486 char flushb[4096-512];
487
488 filter.flushb = flushb;
489 filter.flushp = 0;
490 filter.flushe = sizeof(flushb);
491 filter.rth = &rth;
492
493 for (;;) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000494 xrtnl_wilddump_request(&rth, filter.family, RTM_GETADDR);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000495 filter.flushed = 0;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000496 xrtnl_dump_filter(&rth, print_addrinfo, NULL);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000497 if (filter.flushed == 0) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000498 return 0;
499 }
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000500 if (flush_update() < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000501 return 1;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000502 }
503 }
504
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000505 if (filter.family != AF_PACKET) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000506 xrtnl_wilddump_request(&rth, filter.family, RTM_GETADDR);
507 xrtnl_dump_filter(&rth, store_nlmsg, &ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000508 }
509
510
511 if (filter.family && filter.family != AF_PACKET) {
512 struct nlmsg_list **lp;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000513 lp = &linfo;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000514
515 if (filter.oneline)
516 no_link = 1;
517
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000518 while ((l = *lp) != NULL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000519 int ok = 0;
520 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
521 struct nlmsg_list *a;
522
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000523 for (a = ainfo; a; a = a->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000524 struct nlmsghdr *n = &a->h;
525 struct ifaddrmsg *ifa = NLMSG_DATA(n);
526
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000527 if (ifa->ifa_index != ifi->ifi_index ||
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000528 (filter.family && filter.family != ifa->ifa_family))
529 continue;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000530 if ((filter.scope ^ ifa->ifa_scope) & filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000531 continue;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000532 if ((filter.flags ^ ifa->ifa_flags) & filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000533 continue;
534 if (filter.pfx.family || filter.label) {
535 struct rtattr *tb[IFA_MAX+1];
536 memset(tb, 0, sizeof(tb));
537 parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
538 if (!tb[IFA_LOCAL])
539 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
540
541 if (filter.pfx.family && tb[IFA_LOCAL]) {
542 inet_prefix dst;
543 memset(&dst, 0, sizeof(dst));
544 dst.family = ifa->ifa_family;
545 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
546 if (inet_addr_match(&dst, &filter.pfx, filter.pfx.bitlen))
547 continue;
548 }
549 if (filter.label) {
550 SPRINT_BUF(b1);
551 const char *label;
552 if (tb[IFA_LABEL])
553 label = RTA_DATA(tb[IFA_LABEL]);
554 else
555 label = ll_idx_n2a(ifa->ifa_index, b1);
556 if (fnmatch(filter.label, label, 0) != 0)
557 continue;
558 }
559 }
560
561 ok = 1;
562 break;
563 }
564 if (!ok)
565 *lp = l->next;
566 else
567 lp = &l->next;
568 }
569 }
570
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000571 for (l = linfo; l; l = l->next) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000572 if (no_link || print_linkinfo(&l->h) == 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000573 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
574 if (filter.family != AF_PACKET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000575 print_selected_addrinfo(ifi->ifi_index, ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000576 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000577 }
578
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000579 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000580}
581
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000582static int default_scope(inet_prefix *lcl)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000583{
584 if (lcl->family == AF_INET) {
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000585 if (lcl->bytelen >= 1 && *(uint8_t*)&lcl->data == 127)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000586 return RT_SCOPE_HOST;
587 }
588 return 0;
589}
590
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000591/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000592static int ipaddr_modify(int cmd, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000593{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000594 static const char option[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000595 "peer\0""remote\0""broadcast\0""brd\0"
596 "anycast\0""scope\0""dev\0""label\0""local\0";
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000597 struct rtnl_handle rth;
598 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000599 struct nlmsghdr n;
600 struct ifaddrmsg ifa;
601 char buf[256];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000602 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000603 char *d = NULL;
604 char *l = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000605 inet_prefix lcl;
606 inet_prefix peer;
607 int local_len = 0;
608 int peer_len = 0;
609 int brd_len = 0;
610 int any_len = 0;
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000611 bool scoped = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000612
613 memset(&req, 0, sizeof(req));
614
615 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
616 req.n.nlmsg_flags = NLM_F_REQUEST;
617 req.n.nlmsg_type = cmd;
618 req.ifa.ifa_family = preferred_family;
619
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000620 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000621 const int option_num = index_in_strings(option, *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000622 switch (option_num) {
623 case 0: /* peer */
624 case 1: /* remote */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000625 NEXT_ARG();
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000626
627 if (peer_len) {
628 duparg("peer", *argv);
629 }
630 get_prefix(&peer, *argv, req.ifa.ifa_family);
631 peer_len = peer.bytelen;
632 if (req.ifa.ifa_family == AF_UNSPEC) {
633 req.ifa.ifa_family = peer.family;
634 }
635 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
636 req.ifa.ifa_prefixlen = peer.bitlen;
637 break;
638 case 2: /* broadcast */
639 case 3: /* brd */
640 {
641 inet_prefix addr;
642 NEXT_ARG();
643 if (brd_len) {
644 duparg("broadcast", *argv);
645 }
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000646 if (LONE_CHAR(*argv, '+')) {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000647 brd_len = -1;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000648 } else if (LONE_DASH(*argv)) {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000649 brd_len = -2;
650 } else {
651 get_addr(&addr, *argv, req.ifa.ifa_family);
652 if (req.ifa.ifa_family == AF_UNSPEC)
653 req.ifa.ifa_family = addr.family;
654 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
655 brd_len = addr.bytelen;
656 }
657 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000658 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000659 case 4: /* anycast */
660 {
661 inet_prefix addr;
662 NEXT_ARG();
663 if (any_len) {
664 duparg("anycast", *argv);
665 }
666 get_addr(&addr, *argv, req.ifa.ifa_family);
667 if (req.ifa.ifa_family == AF_UNSPEC) {
668 req.ifa.ifa_family = addr.family;
669 }
670 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
671 any_len = addr.bytelen;
672 break;
673 }
674 case 5: /* scope */
675 {
Eric Andersend78aea82006-01-30 18:00:02 +0000676 uint32_t scope = 0;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000677 NEXT_ARG();
678 if (rtnl_rtscope_a2n(&scope, *argv)) {
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000679 invarg(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000680 }
681 req.ifa.ifa_scope = scope;
682 scoped = 1;
683 break;
684 }
685 case 6: /* dev */
686 NEXT_ARG();
687 d = *argv;
688 break;
689 case 7: /* label */
690 NEXT_ARG();
691 l = *argv;
692 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l)+1);
693 break;
694 case 8: /* local */
695 NEXT_ARG();
696 default:
697 if (local_len) {
698 duparg2("local", *argv);
699 }
700 get_prefix(&lcl, *argv, req.ifa.ifa_family);
701 if (req.ifa.ifa_family == AF_UNSPEC) {
702 req.ifa.ifa_family = lcl.family;
703 }
704 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
705 local_len = lcl.bytelen;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000706 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000707 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000708 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000709
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000710 if (d == NULL) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000711 bb_error_msg(bb_msg_requires_arg, "\"dev\"");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000712 return -1;
713 }
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000714 if (l && strncmp(d, l, strlen(d)) != 0) {
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000715 bb_error_msg_and_die("\"dev\" (%s) must match \"label\" (%s)", d, l);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000716 }
717
718 if (peer_len == 0 && local_len && cmd != RTM_DELADDR) {
719 peer = lcl;
720 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
721 }
722 if (req.ifa.ifa_prefixlen == 0)
723 req.ifa.ifa_prefixlen = lcl.bitlen;
724
725 if (brd_len < 0 && cmd != RTM_DELADDR) {
726 inet_prefix brd;
727 int i;
728 if (req.ifa.ifa_family != AF_INET) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000729 bb_error_msg_and_die("broadcast can be set only for IPv4 addresses");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000730 }
731 brd = peer;
732 if (brd.bitlen <= 30) {
733 for (i=31; i>=brd.bitlen; i--) {
734 if (brd_len == -1)
735 brd.data[0] |= htonl(1<<(31-i));
736 else
737 brd.data[0] &= ~htonl(1<<(31-i));
738 }
739 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
740 brd_len = brd.bytelen;
741 }
742 }
743 if (!scoped && cmd != RTM_DELADDR)
744 req.ifa.ifa_scope = default_scope(&lcl);
745
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000746 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000747
748 ll_init_map(&rth);
749
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000750 req.ifa.ifa_index = xll_name_to_index(d);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000751
752 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000753 return 2;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000754
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000755 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000756}
757
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000758/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000759int do_ipaddr(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000760{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000761 static const char commands[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000762 "add\0""delete\0""list\0""show\0""lst\0""flush\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000763
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000764 int command_num = 2; /* default command is list */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000765
766 if (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000767 command_num = index_in_substrings(commands, *argv);
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000768 if (command_num < 0 || command_num > 5)
769 bb_error_msg_and_die("unknown command %s", *argv);
770 argv++;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000771 }
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000772 if (command_num == 0) /* add */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000773 return ipaddr_modify(RTM_NEWADDR, argv);
774 if (command_num == 1) /* delete */
775 return ipaddr_modify(RTM_DELADDR, argv);
776 if (command_num == 5) /* flush */
777 return ipaddr_list_or_flush(argv, 1);
778 /* 2 == list, 3 == show, 4 == lst */
779 return ipaddr_list_or_flush(argv, 0);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000780}