blob: 644874f464003410ae210946a7921eab6c07f11b [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_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 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000311 printf("scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope, b1, sizeof(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');
347 /*fflush(stdout);*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000348 return 0;
349}
350
351
352struct nlmsg_list
353{
354 struct nlmsg_list *next;
355 struct nlmsghdr h;
356};
357
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000358static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000359{
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000360 for (; ainfo; ainfo = ainfo->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000361 struct nlmsghdr *n = &ainfo->h;
362 struct ifaddrmsg *ifa = NLMSG_DATA(n);
363
364 if (n->nlmsg_type != RTM_NEWADDR)
365 continue;
366
367 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
368 return -1;
369
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000370 if (ifa->ifa_index != ifindex ||
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000371 (filter.family && filter.family != ifa->ifa_family))
372 continue;
373
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000374 print_addrinfo(NULL, n, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000375 }
376 return 0;
377}
378
379
Bernhard Reutner-Fischer9de46222008-06-12 15:54:49 +0000380static int store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000381{
382 struct nlmsg_list **linfo = (struct nlmsg_list**)arg;
383 struct nlmsg_list *h;
384 struct nlmsg_list **lp;
385
386 h = malloc(n->nlmsg_len+sizeof(void*));
387 if (h == NULL)
388 return -1;
389
390 memcpy(&h->h, n, n->nlmsg_len);
391 h->next = NULL;
392
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000393 for (lp = linfo; *lp; lp = &(*lp)->next)
394 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000395 *lp = h;
396
397 ll_remember_index(who, n, NULL);
398 return 0;
399}
400
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000401static void ipaddr_reset_filter(int _oneline)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000402{
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000403 memset(&filter, 0, sizeof(filter));
404 filter.oneline = _oneline;
405}
406
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000407/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000408int ipaddr_list_or_flush(char **argv, int flush)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000409{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000410 static const char option[] ALIGN1 = "to\0""scope\0""up\0""label\0""dev\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000411
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000412 struct nlmsg_list *linfo = NULL;
413 struct nlmsg_list *ainfo = NULL;
414 struct nlmsg_list *l;
415 struct rtnl_handle rth;
416 char *filter_dev = NULL;
417 int no_link = 0;
418
419 ipaddr_reset_filter(oneline);
420 filter.showqueue = 1;
421
422 if (filter.family == AF_UNSPEC)
423 filter.family = preferred_family;
424
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000425 if (flush) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000426 if (!*argv) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000427 bb_error_msg_and_die(bb_msg_requires_arg, "flush");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000428 }
429 if (filter.family == AF_PACKET) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000430 bb_error_msg_and_die("cannot flush link addresses");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000431 }
432 }
433
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000434 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000435 const int option_num = index_in_strings(option, *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000436 switch (option_num) {
437 case 0: /* to */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000438 NEXT_ARG();
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000439 get_prefix(&filter.pfx, *argv, filter.family);
440 if (filter.family == AF_UNSPEC) {
441 filter.family = filter.pfx.family;
442 }
443 break;
444 case 1: /* scope */
445 {
Eric Andersend78aea82006-01-30 18:00:02 +0000446 uint32_t scope = 0;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000447 NEXT_ARG();
448 filter.scopemask = -1;
449 if (rtnl_rtscope_a2n(&scope, *argv)) {
450 if (strcmp(*argv, "all") != 0) {
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000451 invarg(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000452 }
453 scope = RT_SCOPE_NOWHERE;
454 filter.scopemask = 0;
455 }
456 filter.scope = scope;
457 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000458 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000459 case 2: /* up */
460 filter.up = 1;
461 break;
462 case 3: /* label */
463 NEXT_ARG();
464 filter.label = *argv;
465 break;
466 case 4: /* dev */
467 NEXT_ARG();
468 default:
469 if (filter_dev) {
470 duparg2("dev", *argv);
471 }
472 filter_dev = *argv;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000473 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000474 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000475 }
476
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000477 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000478
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000479 xrtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK);
480 xrtnl_dump_filter(&rth, store_nlmsg, &linfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000481
482 if (filter_dev) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000483 filter.ifindex = xll_name_to_index(filter_dev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000484 }
485
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000486 if (flush) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000487 char flushb[4096-512];
488
489 filter.flushb = flushb;
490 filter.flushp = 0;
491 filter.flushe = sizeof(flushb);
492 filter.rth = &rth;
493
494 for (;;) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000495 xrtnl_wilddump_request(&rth, filter.family, RTM_GETADDR);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000496 filter.flushed = 0;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000497 xrtnl_dump_filter(&rth, print_addrinfo, NULL);
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000498 if (filter.flushed == 0) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000499 return 0;
500 }
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000501 if (flush_update() < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000502 return 1;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000503 }
504 }
505
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000506 if (filter.family != AF_PACKET) {
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000507 xrtnl_wilddump_request(&rth, filter.family, RTM_GETADDR);
508 xrtnl_dump_filter(&rth, store_nlmsg, &ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000509 }
510
511
512 if (filter.family && filter.family != AF_PACKET) {
513 struct nlmsg_list **lp;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000514 lp = &linfo;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000515
516 if (filter.oneline)
517 no_link = 1;
518
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000519 while ((l = *lp) != NULL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000520 int ok = 0;
521 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
522 struct nlmsg_list *a;
523
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000524 for (a = ainfo; a; a = a->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000525 struct nlmsghdr *n = &a->h;
526 struct ifaddrmsg *ifa = NLMSG_DATA(n);
527
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000528 if (ifa->ifa_index != ifi->ifi_index ||
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000529 (filter.family && filter.family != ifa->ifa_family))
530 continue;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000531 if ((filter.scope ^ ifa->ifa_scope) & filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000532 continue;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000533 if ((filter.flags ^ ifa->ifa_flags) & filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000534 continue;
535 if (filter.pfx.family || filter.label) {
536 struct rtattr *tb[IFA_MAX+1];
537 memset(tb, 0, sizeof(tb));
538 parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
539 if (!tb[IFA_LOCAL])
540 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
541
542 if (filter.pfx.family && tb[IFA_LOCAL]) {
543 inet_prefix dst;
544 memset(&dst, 0, sizeof(dst));
545 dst.family = ifa->ifa_family;
546 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
547 if (inet_addr_match(&dst, &filter.pfx, filter.pfx.bitlen))
548 continue;
549 }
550 if (filter.label) {
551 SPRINT_BUF(b1);
552 const char *label;
553 if (tb[IFA_LABEL])
554 label = RTA_DATA(tb[IFA_LABEL]);
555 else
556 label = ll_idx_n2a(ifa->ifa_index, b1);
557 if (fnmatch(filter.label, label, 0) != 0)
558 continue;
559 }
560 }
561
562 ok = 1;
563 break;
564 }
565 if (!ok)
566 *lp = l->next;
567 else
568 lp = &l->next;
569 }
570 }
571
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000572 for (l = linfo; l; l = l->next) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000573 if (no_link || print_linkinfo(&l->h) == 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000574 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
575 if (filter.family != AF_PACKET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000576 print_selected_addrinfo(ifi->ifi_index, ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000577 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000578 }
579
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000580 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000581}
582
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000583static int default_scope(inet_prefix *lcl)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000584{
585 if (lcl->family == AF_INET) {
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000586 if (lcl->bytelen >= 1 && *(uint8_t*)&lcl->data == 127)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000587 return RT_SCOPE_HOST;
588 }
589 return 0;
590}
591
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000592/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000593static int ipaddr_modify(int cmd, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000594{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000595 static const char option[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000596 "peer\0""remote\0""broadcast\0""brd\0"
597 "anycast\0""scope\0""dev\0""label\0""local\0";
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000598 struct rtnl_handle rth;
599 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000600 struct nlmsghdr n;
601 struct ifaddrmsg ifa;
602 char buf[256];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000603 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000604 char *d = NULL;
605 char *l = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000606 inet_prefix lcl;
607 inet_prefix peer;
608 int local_len = 0;
609 int peer_len = 0;
610 int brd_len = 0;
611 int any_len = 0;
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000612 bool scoped = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000613
614 memset(&req, 0, sizeof(req));
615
616 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
617 req.n.nlmsg_flags = NLM_F_REQUEST;
618 req.n.nlmsg_type = cmd;
619 req.ifa.ifa_family = preferred_family;
620
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000621 while (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000622 const int option_num = index_in_strings(option, *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000623 switch (option_num) {
624 case 0: /* peer */
625 case 1: /* remote */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000626 NEXT_ARG();
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000627
628 if (peer_len) {
629 duparg("peer", *argv);
630 }
631 get_prefix(&peer, *argv, req.ifa.ifa_family);
632 peer_len = peer.bytelen;
633 if (req.ifa.ifa_family == AF_UNSPEC) {
634 req.ifa.ifa_family = peer.family;
635 }
636 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
637 req.ifa.ifa_prefixlen = peer.bitlen;
638 break;
639 case 2: /* broadcast */
640 case 3: /* brd */
641 {
642 inet_prefix addr;
643 NEXT_ARG();
644 if (brd_len) {
645 duparg("broadcast", *argv);
646 }
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000647 if (LONE_CHAR(*argv, '+')) {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000648 brd_len = -1;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000649 } else if (LONE_DASH(*argv)) {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000650 brd_len = -2;
651 } else {
652 get_addr(&addr, *argv, req.ifa.ifa_family);
653 if (req.ifa.ifa_family == AF_UNSPEC)
654 req.ifa.ifa_family = addr.family;
655 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
656 brd_len = addr.bytelen;
657 }
658 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000659 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000660 case 4: /* anycast */
661 {
662 inet_prefix addr;
663 NEXT_ARG();
664 if (any_len) {
665 duparg("anycast", *argv);
666 }
667 get_addr(&addr, *argv, req.ifa.ifa_family);
668 if (req.ifa.ifa_family == AF_UNSPEC) {
669 req.ifa.ifa_family = addr.family;
670 }
671 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
672 any_len = addr.bytelen;
673 break;
674 }
675 case 5: /* scope */
676 {
Eric Andersend78aea82006-01-30 18:00:02 +0000677 uint32_t scope = 0;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000678 NEXT_ARG();
679 if (rtnl_rtscope_a2n(&scope, *argv)) {
Bernhard Reutner-Fischer19008b82006-06-07 20:17:41 +0000680 invarg(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000681 }
682 req.ifa.ifa_scope = scope;
683 scoped = 1;
684 break;
685 }
686 case 6: /* dev */
687 NEXT_ARG();
688 d = *argv;
689 break;
690 case 7: /* label */
691 NEXT_ARG();
692 l = *argv;
693 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l)+1);
694 break;
695 case 8: /* local */
696 NEXT_ARG();
697 default:
698 if (local_len) {
699 duparg2("local", *argv);
700 }
701 get_prefix(&lcl, *argv, req.ifa.ifa_family);
702 if (req.ifa.ifa_family == AF_UNSPEC) {
703 req.ifa.ifa_family = lcl.family;
704 }
705 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
706 local_len = lcl.bytelen;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000707 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000708 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000709 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000710
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000711 if (d == NULL) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000712 bb_error_msg(bb_msg_requires_arg, "\"dev\"");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000713 return -1;
714 }
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000715 if (l && strncmp(d, l, strlen(d)) != 0) {
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000716 bb_error_msg_and_die("\"dev\" (%s) must match \"label\" (%s)", d, l);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000717 }
718
719 if (peer_len == 0 && local_len && cmd != RTM_DELADDR) {
720 peer = lcl;
721 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
722 }
723 if (req.ifa.ifa_prefixlen == 0)
724 req.ifa.ifa_prefixlen = lcl.bitlen;
725
726 if (brd_len < 0 && cmd != RTM_DELADDR) {
727 inet_prefix brd;
728 int i;
729 if (req.ifa.ifa_family != AF_INET) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000730 bb_error_msg_and_die("broadcast can be set only for IPv4 addresses");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000731 }
732 brd = peer;
733 if (brd.bitlen <= 30) {
734 for (i=31; i>=brd.bitlen; i--) {
735 if (brd_len == -1)
736 brd.data[0] |= htonl(1<<(31-i));
737 else
738 brd.data[0] &= ~htonl(1<<(31-i));
739 }
740 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
741 brd_len = brd.bytelen;
742 }
743 }
744 if (!scoped && cmd != RTM_DELADDR)
745 req.ifa.ifa_scope = default_scope(&lcl);
746
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000747 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000748
749 ll_init_map(&rth);
750
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000751 req.ifa.ifa_index = xll_name_to_index(d);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000752
753 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000754 return 2;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000755
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000756 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000757}
758
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000759/* Return value becomes exitcode. It's okay to not return at all */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000760int do_ipaddr(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000761{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000762 static const char commands[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000763 "add\0""delete\0""list\0""show\0""lst\0""flush\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000764
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000765 int command_num = 2; /* default command is list */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000766
767 if (*argv) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000768 command_num = index_in_substrings(commands, *argv);
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000769 if (command_num < 0 || command_num > 5)
770 bb_error_msg_and_die("unknown command %s", *argv);
771 argv++;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000772 }
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000773 if (command_num == 0) /* add */
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000774 return ipaddr_modify(RTM_NEWADDR, argv);
775 if (command_num == 1) /* delete */
776 return ipaddr_modify(RTM_DELADDR, argv);
777 if (command_num == 5) /* flush */
778 return ipaddr_list_or_flush(argv, 1);
779 /* 2 == list, 3 == show, 4 == lst */
780 return ipaddr_list_or_flush(argv, 0);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000781}