blob: fadab6f398c9699e0982af7fa6c3027baf4f3c78 [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
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000097static 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);
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000165 printf("%c link/%s ", _SL_, ll_type_n2a(ifi->ifi_type, b1, sizeof(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');
185 /*fflush(stdout);*/
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
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000199static int print_addrinfo(const struct sockaddr_nl *who UNUSED_PARAM,
200 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_PAYLOAD(rta_tb[IFA_LOCAL]),
284 RTA_DATA(rta_tb[IFA_LOCAL]),
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000285 abuf, sizeof(abuf)), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000286
287 if (rta_tb[IFA_ADDRESS] == NULL ||
288 memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0) {
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,
293 RTA_PAYLOAD(rta_tb[IFA_ADDRESS]),
294 RTA_DATA(rta_tb[IFA_ADDRESS]),
295 abuf, sizeof(abuf)),
296 ifa->ifa_prefixlen);
297 }
298 }
299
300 if (rta_tb[IFA_BROADCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000301 printf("brd %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000302 rt_addr_n2a(ifa->ifa_family,
303 RTA_PAYLOAD(rta_tb[IFA_BROADCAST]),
304 RTA_DATA(rta_tb[IFA_BROADCAST]),
305 abuf, sizeof(abuf)));
306 }
307 if (rta_tb[IFA_ANYCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000308 printf("any %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000309 rt_addr_n2a(ifa->ifa_family,
310 RTA_PAYLOAD(rta_tb[IFA_ANYCAST]),
311 RTA_DATA(rta_tb[IFA_ANYCAST]),
312 abuf, sizeof(abuf)));
313 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000314 printf("scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope, b1, sizeof(b1)));
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000315 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000316 ifa->ifa_flags &= ~IFA_F_SECONDARY;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000317 printf("secondary ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000318 }
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000319 if (ifa->ifa_flags & IFA_F_TENTATIVE) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000320 ifa->ifa_flags &= ~IFA_F_TENTATIVE;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000321 printf("tentative ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000322 }
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000323 if (ifa->ifa_flags & IFA_F_DEPRECATED) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000324 ifa->ifa_flags &= ~IFA_F_DEPRECATED;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000325 printf("deprecated ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000326 }
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000327 if (!(ifa->ifa_flags & IFA_F_PERMANENT)) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000328 printf("dynamic ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000329 } else
330 ifa->ifa_flags &= ~IFA_F_PERMANENT;
331 if (ifa->ifa_flags)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000332 printf("flags %02x ", ifa->ifa_flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000333 if (rta_tb[IFA_LABEL])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000334 fputs((char*)RTA_DATA(rta_tb[IFA_LABEL]), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000335 if (rta_tb[IFA_CACHEINFO]) {
336 struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]);
337 char buf[128];
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000338 bb_putchar(_SL_);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000339 if (ci->ifa_valid == 0xFFFFFFFFU)
340 sprintf(buf, "valid_lft forever");
341 else
342 sprintf(buf, "valid_lft %dsec", ci->ifa_valid);
343 if (ci->ifa_prefered == 0xFFFFFFFFU)
344 sprintf(buf+strlen(buf), " preferred_lft forever");
345 else
346 sprintf(buf+strlen(buf), " preferred_lft %dsec", ci->ifa_prefered);
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000347 printf(" %s", buf);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000348 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000349 bb_putchar('\n');
350 /*fflush(stdout);*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000351 return 0;
352}
353
354
355struct nlmsg_list
356{
357 struct nlmsg_list *next;
358 struct nlmsghdr h;
359};
360
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000361static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000362{
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000363 for (; ainfo; ainfo = ainfo->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000364 struct nlmsghdr *n = &ainfo->h;
365 struct ifaddrmsg *ifa = NLMSG_DATA(n);
366
367 if (n->nlmsg_type != RTM_NEWADDR)
368 continue;
369
370 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
371 return -1;
372
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000373 if (ifa->ifa_index != ifindex ||
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000374 (filter.family && filter.family != ifa->ifa_family))
375 continue;
376
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000377 print_addrinfo(NULL, n, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000378 }
379 return 0;
380}
381
382
Bernhard Reutner-Fischer9de46222008-06-12 15:54:49 +0000383static int store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000384{
385 struct nlmsg_list **linfo = (struct nlmsg_list**)arg;
386 struct nlmsg_list *h;
387 struct nlmsg_list **lp;
388
389 h = malloc(n->nlmsg_len+sizeof(void*));
390 if (h == NULL)
391 return -1;
392
393 memcpy(&h->h, n, n->nlmsg_len);
394 h->next = NULL;
395
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000396 for (lp = linfo; *lp; lp = &(*lp)->next)
397 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000398 *lp = h;
399
400 ll_remember_index(who, n, NULL);
401 return 0;
402}
403
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000404static void ipaddr_reset_filter(int _oneline)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000405{
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000406 memset(&filter, 0, sizeof(filter));
407 filter.oneline = _oneline;
408}
409
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000410/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000411int ipaddr_list_or_flush(char **argv, int flush)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000412{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000413 static const char option[] ALIGN1 = "to\0""scope\0""up\0""label\0""dev\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000414
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000415 struct nlmsg_list *linfo = NULL;
416 struct nlmsg_list *ainfo = NULL;
417 struct nlmsg_list *l;
418 struct rtnl_handle rth;
419 char *filter_dev = NULL;
420 int no_link = 0;
421
422 ipaddr_reset_filter(oneline);
423 filter.showqueue = 1;
424
425 if (filter.family == AF_UNSPEC)
426 filter.family = preferred_family;
427
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000428 if (flush) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000429 if (!*argv) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000430 bb_error_msg_and_die(bb_msg_requires_arg, "flush");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000431 }
432 if (filter.family == AF_PACKET) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000433 bb_error_msg_and_die("cannot flush link addresses");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000434 }
435 }
436
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000437 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000438 const int option_num = index_in_strings(option, *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000439 switch (option_num) {
440 case 0: /* to */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000441 NEXT_ARG();
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000442 get_prefix(&filter.pfx, *argv, filter.family);
443 if (filter.family == AF_UNSPEC) {
444 filter.family = filter.pfx.family;
445 }
446 break;
447 case 1: /* scope */
448 {
Eric Andersend78aea82006-01-30 18:00:02 +0000449 uint32_t scope = 0;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000450 NEXT_ARG();
451 filter.scopemask = -1;
452 if (rtnl_rtscope_a2n(&scope, *argv)) {
453 if (strcmp(*argv, "all") != 0) {
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000454 invarg(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000455 }
456 scope = RT_SCOPE_NOWHERE;
457 filter.scopemask = 0;
458 }
459 filter.scope = scope;
460 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000461 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000462 case 2: /* up */
463 filter.up = 1;
464 break;
465 case 3: /* label */
466 NEXT_ARG();
467 filter.label = *argv;
468 break;
469 case 4: /* dev */
470 NEXT_ARG();
471 default:
472 if (filter_dev) {
473 duparg2("dev", *argv);
474 }
475 filter_dev = *argv;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000476 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000477 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000478 }
479
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000480 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000481
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000482 xrtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK);
483 xrtnl_dump_filter(&rth, store_nlmsg, &linfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000484
485 if (filter_dev) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000486 filter.ifindex = xll_name_to_index(filter_dev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000487 }
488
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000489 if (flush) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000490 char flushb[4096-512];
491
492 filter.flushb = flushb;
493 filter.flushp = 0;
494 filter.flushe = sizeof(flushb);
495 filter.rth = &rth;
496
497 for (;;) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000498 xrtnl_wilddump_request(&rth, filter.family, RTM_GETADDR);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000499 filter.flushed = 0;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000500 xrtnl_dump_filter(&rth, print_addrinfo, NULL);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000501 if (filter.flushed == 0) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000502 return 0;
503 }
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000504 if (flush_update() < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000505 return 1;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000506 }
507 }
508
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000509 if (filter.family != AF_PACKET) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000510 xrtnl_wilddump_request(&rth, filter.family, RTM_GETADDR);
511 xrtnl_dump_filter(&rth, store_nlmsg, &ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000512 }
513
514
515 if (filter.family && filter.family != AF_PACKET) {
516 struct nlmsg_list **lp;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000517 lp = &linfo;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000518
519 if (filter.oneline)
520 no_link = 1;
521
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000522 while ((l = *lp) != NULL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000523 int ok = 0;
524 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
525 struct nlmsg_list *a;
526
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000527 for (a = ainfo; a; a = a->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000528 struct nlmsghdr *n = &a->h;
529 struct ifaddrmsg *ifa = NLMSG_DATA(n);
530
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000531 if (ifa->ifa_index != ifi->ifi_index ||
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000532 (filter.family && filter.family != ifa->ifa_family))
533 continue;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000534 if ((filter.scope ^ ifa->ifa_scope) & filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000535 continue;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000536 if ((filter.flags ^ ifa->ifa_flags) & filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000537 continue;
538 if (filter.pfx.family || filter.label) {
539 struct rtattr *tb[IFA_MAX+1];
540 memset(tb, 0, sizeof(tb));
541 parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
542 if (!tb[IFA_LOCAL])
543 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
544
545 if (filter.pfx.family && tb[IFA_LOCAL]) {
546 inet_prefix dst;
547 memset(&dst, 0, sizeof(dst));
548 dst.family = ifa->ifa_family;
549 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
550 if (inet_addr_match(&dst, &filter.pfx, filter.pfx.bitlen))
551 continue;
552 }
553 if (filter.label) {
554 SPRINT_BUF(b1);
555 const char *label;
556 if (tb[IFA_LABEL])
557 label = RTA_DATA(tb[IFA_LABEL]);
558 else
559 label = ll_idx_n2a(ifa->ifa_index, b1);
560 if (fnmatch(filter.label, label, 0) != 0)
561 continue;
562 }
563 }
564
565 ok = 1;
566 break;
567 }
568 if (!ok)
569 *lp = l->next;
570 else
571 lp = &l->next;
572 }
573 }
574
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000575 for (l = linfo; l; l = l->next) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000576 if (no_link || print_linkinfo(&l->h) == 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000577 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
578 if (filter.family != AF_PACKET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000579 print_selected_addrinfo(ifi->ifi_index, ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000580 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000581 }
582
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000583 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000584}
585
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000586static int default_scope(inet_prefix *lcl)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000587{
588 if (lcl->family == AF_INET) {
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000589 if (lcl->bytelen >= 1 && *(uint8_t*)&lcl->data == 127)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000590 return RT_SCOPE_HOST;
591 }
592 return 0;
593}
594
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000595/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000596static int ipaddr_modify(int cmd, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000597{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000598 static const char option[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000599 "peer\0""remote\0""broadcast\0""brd\0"
600 "anycast\0""scope\0""dev\0""label\0""local\0";
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000601 struct rtnl_handle rth;
602 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000603 struct nlmsghdr n;
604 struct ifaddrmsg ifa;
605 char buf[256];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000606 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000607 char *d = NULL;
608 char *l = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000609 inet_prefix lcl;
610 inet_prefix peer;
611 int local_len = 0;
612 int peer_len = 0;
613 int brd_len = 0;
614 int any_len = 0;
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000615 bool scoped = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000616
617 memset(&req, 0, sizeof(req));
618
619 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
620 req.n.nlmsg_flags = NLM_F_REQUEST;
621 req.n.nlmsg_type = cmd;
622 req.ifa.ifa_family = preferred_family;
623
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000624 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000625 const int option_num = index_in_strings(option, *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000626 switch (option_num) {
627 case 0: /* peer */
628 case 1: /* remote */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000629 NEXT_ARG();
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000630
631 if (peer_len) {
632 duparg("peer", *argv);
633 }
634 get_prefix(&peer, *argv, req.ifa.ifa_family);
635 peer_len = peer.bytelen;
636 if (req.ifa.ifa_family == AF_UNSPEC) {
637 req.ifa.ifa_family = peer.family;
638 }
639 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
640 req.ifa.ifa_prefixlen = peer.bitlen;
641 break;
642 case 2: /* broadcast */
643 case 3: /* brd */
644 {
645 inet_prefix addr;
646 NEXT_ARG();
647 if (brd_len) {
648 duparg("broadcast", *argv);
649 }
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000650 if (LONE_CHAR(*argv, '+')) {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000651 brd_len = -1;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000652 } else if (LONE_DASH(*argv)) {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000653 brd_len = -2;
654 } else {
655 get_addr(&addr, *argv, req.ifa.ifa_family);
656 if (req.ifa.ifa_family == AF_UNSPEC)
657 req.ifa.ifa_family = addr.family;
658 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
659 brd_len = addr.bytelen;
660 }
661 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000662 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000663 case 4: /* anycast */
664 {
665 inet_prefix addr;
666 NEXT_ARG();
667 if (any_len) {
668 duparg("anycast", *argv);
669 }
670 get_addr(&addr, *argv, req.ifa.ifa_family);
671 if (req.ifa.ifa_family == AF_UNSPEC) {
672 req.ifa.ifa_family = addr.family;
673 }
674 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
675 any_len = addr.bytelen;
676 break;
677 }
678 case 5: /* scope */
679 {
Eric Andersend78aea82006-01-30 18:00:02 +0000680 uint32_t scope = 0;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000681 NEXT_ARG();
682 if (rtnl_rtscope_a2n(&scope, *argv)) {
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000683 invarg(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000684 }
685 req.ifa.ifa_scope = scope;
686 scoped = 1;
687 break;
688 }
689 case 6: /* dev */
690 NEXT_ARG();
691 d = *argv;
692 break;
693 case 7: /* label */
694 NEXT_ARG();
695 l = *argv;
696 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l)+1);
697 break;
698 case 8: /* local */
699 NEXT_ARG();
700 default:
701 if (local_len) {
702 duparg2("local", *argv);
703 }
704 get_prefix(&lcl, *argv, req.ifa.ifa_family);
705 if (req.ifa.ifa_family == AF_UNSPEC) {
706 req.ifa.ifa_family = lcl.family;
707 }
708 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
709 local_len = lcl.bytelen;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000710 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000711 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000712 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000713
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000714 if (d == NULL) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000715 bb_error_msg(bb_msg_requires_arg, "\"dev\"");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000716 return -1;
717 }
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000718 if (l && strncmp(d, l, strlen(d)) != 0) {
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000719 bb_error_msg_and_die("\"dev\" (%s) must match \"label\" (%s)", d, l);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000720 }
721
722 if (peer_len == 0 && local_len && cmd != RTM_DELADDR) {
723 peer = lcl;
724 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
725 }
726 if (req.ifa.ifa_prefixlen == 0)
727 req.ifa.ifa_prefixlen = lcl.bitlen;
728
729 if (brd_len < 0 && cmd != RTM_DELADDR) {
730 inet_prefix brd;
731 int i;
732 if (req.ifa.ifa_family != AF_INET) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000733 bb_error_msg_and_die("broadcast can be set only for IPv4 addresses");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000734 }
735 brd = peer;
736 if (brd.bitlen <= 30) {
737 for (i=31; i>=brd.bitlen; i--) {
738 if (brd_len == -1)
739 brd.data[0] |= htonl(1<<(31-i));
740 else
741 brd.data[0] &= ~htonl(1<<(31-i));
742 }
743 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
744 brd_len = brd.bytelen;
745 }
746 }
747 if (!scoped && cmd != RTM_DELADDR)
748 req.ifa.ifa_scope = default_scope(&lcl);
749
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000750 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000751
752 ll_init_map(&rth);
753
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000754 req.ifa.ifa_index = xll_name_to_index(d);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000755
756 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000757 return 2;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000758
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000759 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000760}
761
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000762/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000763int do_ipaddr(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000764{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000765 static const char commands[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000766 "add\0""delete\0""list\0""show\0""lst\0""flush\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000767
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000768 int command_num = 2; /* default command is list */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000769
770 if (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000771 command_num = index_in_substrings(commands, *argv);
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000772 if (command_num < 0 || command_num > 5)
773 bb_error_msg_and_die("unknown command %s", *argv);
774 argv++;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000775 }
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000776 if (command_num == 0) /* add */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000777 return ipaddr_modify(RTM_NEWADDR, argv);
778 if (command_num == 1) /* delete */
779 return ipaddr_modify(RTM_DELADDR, argv);
780 if (command_num == 5) /* flush */
781 return ipaddr_list_or_flush(argv, 1);
782 /* 2 == list, 3 == show, 4 == lst */
783 return ipaddr_list_or_flush(argv, 0);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000784}