blob: 6c11ce4103339bc4ea68fe1d127ee46e390f7c02 [file] [log] [blame]
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001/*
2 * ipaddress.c "ip address".
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 *
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000011 */
12
13#include <stdio.h>
14#include <stdlib.h>
15#include <unistd.h>
16#include <syslog.h>
Stephen Hemmingere6e6fb52012-02-21 17:18:59 -080017#include <inttypes.h>
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000018#include <fcntl.h>
19#include <sys/ioctl.h>
20#include <sys/socket.h>
21#include <sys/ioctl.h>
Stephen Hemminger3d866ba2008-03-14 15:30:03 -070022#include <sys/errno.h>
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000023#include <netinet/in.h>
24#include <arpa/inet.h>
25#include <string.h>
26#include <fnmatch.h>
27
osdl.org!shemmingere5779fb2004-06-09 22:56:28 +000028#include <linux/netdevice.h>
29#include <linux/if_arp.h>
30#include <linux/sockios.h>
31
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000032#include "rt_names.h"
33#include "utils.h"
34#include "ll_map.h"
35#include "ip_common.h"
36
Pavel Emelyanov81824ac2012-09-11 19:47:00 +040037enum {
38 IPADD_LIST,
39 IPADD_FLUSH,
40 IPADD_SAVE,
41};
Daniel Silverstone7b3d3662007-10-19 13:32:24 +020042
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000043static struct
44{
45 int ifindex;
46 int family;
47 int oneline;
48 int showqueue;
49 inet_prefix pfx;
50 int scope, scopemask;
51 int flags, flagmask;
52 int up;
53 char *label;
54 int flushed;
55 char *flushb;
56 int flushp;
57 int flushe;
Vlad Dogaruf960c922011-02-02 20:23:40 +020058 int group;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000059} filter;
60
61static int do_link;
62
63static void usage(void) __attribute__((noreturn));
64
65static void usage(void)
66{
67 if (do_link) {
68 iplink_usage();
69 }
Noriaki TAKAMIYA0aef3662006-11-24 12:26:58 +090070 fprintf(stderr, "Usage: ip addr {add|change|replace} IFADDR dev STRING [ LIFETIME ]\n");
Brian Haleya1f27792009-12-03 10:39:36 +000071 fprintf(stderr, " [ CONFFLAG-LIST ]\n");
Masahide NAKAMURA35546df2006-11-24 12:26:55 +090072 fprintf(stderr, " ip addr del IFADDR dev STRING\n");
Pavel Emelyanov81824ac2012-09-11 19:47:00 +040073 fprintf(stderr, " ip addr {show|save|flush} [ dev STRING ] [ scope SCOPE-ID ]\n");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000074 fprintf(stderr, " [ to PREFIX ] [ FLAG-LIST ] [ label PATTERN ]\n");
Pavel Emelyanov81824ac2012-09-11 19:47:00 +040075 fprintf(stderr, " ip addr {showdump|restore}\n");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000076 fprintf(stderr, "IFADDR := PREFIX | ADDR peer PREFIX\n");
77 fprintf(stderr, " [ broadcast ADDR ] [ anycast ADDR ]\n");
78 fprintf(stderr, " [ label STRING ] [ scope SCOPE-ID ]\n");
79 fprintf(stderr, "SCOPE-ID := [ host | link | global | NUMBER ]\n");
80 fprintf(stderr, "FLAG-LIST := [ FLAG-LIST ] FLAG\n");
81 fprintf(stderr, "FLAG := [ permanent | dynamic | secondary | primary |\n");
Brian Haleya1b9ffc2009-09-14 17:01:43 -040082 fprintf(stderr, " tentative | deprecated | dadfailed | temporary |\n");
Brian Haleya1f27792009-12-03 10:39:36 +000083 fprintf(stderr, " CONFFLAG-LIST ]\n");
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +090084 fprintf(stderr, "CONFFLAG-LIST := [ CONFFLAG-LIST ] CONFFLAG\n");
85 fprintf(stderr, "CONFFLAG := [ home | nodad ]\n");
Masahide NAKAMURA35546df2006-11-24 12:26:55 +090086 fprintf(stderr, "LIFETIME := [ valid_lft LFT ] [ preferred_lft LFT ]\n");
87 fprintf(stderr, "LFT := forever | SECONDS\n");
88
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000089 exit(-1);
90}
91
92void print_link_flags(FILE *fp, unsigned flags, unsigned mdown)
93{
94 fprintf(fp, "<");
net[shemminger]!shemminger73b49e92005-03-14 18:47:38 +000095 if (flags & IFF_UP && !(flags & IFF_RUNNING))
96 fprintf(fp, "NO-CARRIER%s", flags ? "," : "");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000097 flags &= ~IFF_RUNNING;
98#define _PF(f) if (flags&IFF_##f) { \
99 flags &= ~IFF_##f ; \
100 fprintf(fp, #f "%s", flags ? "," : ""); }
101 _PF(LOOPBACK);
102 _PF(BROADCAST);
103 _PF(POINTOPOINT);
104 _PF(MULTICAST);
105 _PF(NOARP);
106 _PF(ALLMULTI);
107 _PF(PROMISC);
108 _PF(MASTER);
109 _PF(SLAVE);
110 _PF(DEBUG);
111 _PF(DYNAMIC);
112 _PF(AUTOMEDIA);
113 _PF(PORTSEL);
114 _PF(NOTRAILERS);
115 _PF(UP);
Thomas Grafdcb283c2007-06-19 16:40:40 -0700116 _PF(LOWER_UP);
117 _PF(DORMANT);
Oliver Hartkopp98f9a1d2009-03-27 11:21:29 -0700118 _PF(ECHO);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000119#undef _PF
120 if (flags)
121 fprintf(fp, "%x", flags);
122 if (mdown)
123 fprintf(fp, ",M-DOWN");
124 fprintf(fp, "> ");
125}
126
Stephen Hemminger3d866ba2008-03-14 15:30:03 -0700127static const char *oper_states[] = {
128 "UNKNOWN", "NOTPRESENT", "DOWN", "LOWERLAYERDOWN",
129 "TESTING", "DORMANT", "UP"
130};
131
132static void print_operstate(FILE *f, __u8 state)
133{
134 if (state >= sizeof(oper_states)/sizeof(oper_states[0]))
135 fprintf(f, "state %#x ", state);
136 else
137 fprintf(f, "state %s ", oper_states[state]);
138}
139
Stephen Hemminger4f2fdd42012-04-05 15:08:57 -0700140int get_operstate(const char *name)
141{
142 int i;
143
144 for (i = 0; i < sizeof(oper_states)/sizeof(oper_states[0]); i++)
145 if (strcasecmp(name, oper_states[i]) == 0)
146 return i;
147 return -1;
148}
149
Eric Dumazetf78e3162009-10-22 18:13:21 +0000150static void print_queuelen(FILE *f, struct rtattr *tb[IFLA_MAX + 1])
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000151{
Eric Dumazetf78e3162009-10-22 18:13:21 +0000152 int qlen;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000153
Eric Dumazetf78e3162009-10-22 18:13:21 +0000154 if (tb[IFLA_TXQLEN])
155 qlen = *(int *)RTA_DATA(tb[IFLA_TXQLEN]);
156 else {
157 struct ifreq ifr;
158 int s = socket(AF_INET, SOCK_STREAM, 0);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000159
Eric Dumazetf78e3162009-10-22 18:13:21 +0000160 if (s < 0)
161 return;
162
163 memset(&ifr, 0, sizeof(ifr));
Stephen Hemmingerff247462012-04-10 08:47:55 -0700164 strcpy(ifr.ifr_name, rta_getattr_str(tb[IFLA_IFNAME]));
Eric Dumazetf78e3162009-10-22 18:13:21 +0000165 if (ioctl(s, SIOCGIFTXQLEN, &ifr) < 0) {
166 fprintf(f, "ioctl(SIOCGIFXQLEN) failed: %s\n", strerror(errno));
167 close(s);
168 return;
169 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000170 close(s);
Eric Dumazetf78e3162009-10-22 18:13:21 +0000171 qlen = ifr.ifr_qlen;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000172 }
Eric Dumazetf78e3162009-10-22 18:13:21 +0000173 if (qlen)
174 fprintf(f, "qlen %d", qlen);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000175}
176
Stephen Hemminger82499282012-03-19 17:24:43 -0700177static const char *link_modes[] = {
178 "DEFAULT", "DORMANT"
179};
180
181static void print_linkmode(FILE *f, struct rtattr *tb)
182{
183 unsigned int mode = rta_getattr_u8(tb);
184
185 if (mode >= sizeof(link_modes) / sizeof(link_modes[0]))
186 fprintf(f, "mode %d ", mode);
187 else
188 fprintf(f, "mode %s ", link_modes[mode]);
189}
190
Patrick McHardy1d934832007-08-22 10:49:01 -0700191static void print_linktype(FILE *fp, struct rtattr *tb)
192{
193 struct rtattr *linkinfo[IFLA_INFO_MAX+1];
194 struct link_util *lu;
195 char *kind;
196
197 parse_rtattr_nested(linkinfo, IFLA_INFO_MAX, tb);
198
199 if (!linkinfo[IFLA_INFO_KIND])
200 return;
201 kind = RTA_DATA(linkinfo[IFLA_INFO_KIND]);
202
203 fprintf(fp, "%s", _SL_);
204 fprintf(fp, " %s ", kind);
205
206 lu = get_link_kind(kind);
207 if (!lu || !lu->print_opt)
208 return;
209
210 if (1) {
211 struct rtattr *attr[lu->maxattr+1], **data = NULL;
212
213 if (linkinfo[IFLA_INFO_DATA]) {
214 parse_rtattr_nested(attr, lu->maxattr,
215 linkinfo[IFLA_INFO_DATA]);
216 data = attr;
217 }
218 lu->print_opt(lu, fp, data);
219
220 if (linkinfo[IFLA_INFO_XSTATS] && show_stats &&
221 lu->print_xstats)
222 lu->print_xstats(lu, fp, linkinfo[IFLA_INFO_XSTATS]);
223 }
224}
225
Chris Wright3fd86632010-05-18 00:57:00 -0700226static void print_vfinfo(FILE *fp, struct rtattr *vfinfo)
227{
228 struct ifla_vf_mac *vf_mac;
229 struct ifla_vf_vlan *vf_vlan;
230 struct ifla_vf_tx_rate *vf_tx_rate;
Greg Rose7b8179c2011-10-13 20:31:32 +0000231 struct ifla_vf_spoofchk *vf_spoofchk;
Chris Wright3fd86632010-05-18 00:57:00 -0700232 struct rtattr *vf[IFLA_VF_MAX+1];
Greg Rose7b8179c2011-10-13 20:31:32 +0000233 struct rtattr *tmp;
Chris Wright3fd86632010-05-18 00:57:00 -0700234 SPRINT_BUF(b1);
235
236 if (vfinfo->rta_type != IFLA_VF_INFO) {
237 fprintf(stderr, "BUG: rta type is %d\n", vfinfo->rta_type);
238 return;
239 }
240
241 parse_rtattr_nested(vf, IFLA_VF_MAX, vfinfo);
242
243 vf_mac = RTA_DATA(vf[IFLA_VF_MAC]);
244 vf_vlan = RTA_DATA(vf[IFLA_VF_VLAN]);
245 vf_tx_rate = RTA_DATA(vf[IFLA_VF_TX_RATE]);
246
Greg Rose7b8179c2011-10-13 20:31:32 +0000247 /* Check if the spoof checking vf info type is supported by
248 * this kernel.
249 */
250 tmp = (struct rtattr *)((char *)vf[IFLA_VF_TX_RATE] +
251 vf[IFLA_VF_TX_RATE]->rta_len);
252
253 if (tmp->rta_type != IFLA_VF_SPOOFCHK)
254 vf_spoofchk = NULL;
255 else
256 vf_spoofchk = RTA_DATA(vf[IFLA_VF_SPOOFCHK]);
257
Chris Wright3fd86632010-05-18 00:57:00 -0700258 fprintf(fp, "\n vf %d MAC %s", vf_mac->vf,
259 ll_addr_n2a((unsigned char *)&vf_mac->mac,
260 ETH_ALEN, 0, b1, sizeof(b1)));
261 if (vf_vlan->vlan)
262 fprintf(fp, ", vlan %d", vf_vlan->vlan);
263 if (vf_vlan->qos)
264 fprintf(fp, ", qos %d", vf_vlan->qos);
265 if (vf_tx_rate->rate)
266 fprintf(fp, ", tx rate %d (Mbps)", vf_tx_rate->rate);
Greg Rose7b8179c2011-10-13 20:31:32 +0000267 if (vf_spoofchk && vf_spoofchk->setting != -1) {
268 if (vf_spoofchk->setting)
269 fprintf(fp, ", spoof checking on");
270 else
271 fprintf(fp, ", spoof checking off");
272 }
Chris Wright3fd86632010-05-18 00:57:00 -0700273}
274
Stephen Hemmingere6e6fb52012-02-21 17:18:59 -0800275static void print_link_stats64(FILE *fp, const struct rtnl_link_stats64 *s) {
276 fprintf(fp, "%s", _SL_);
277 fprintf(fp, " RX: bytes packets errors dropped overrun mcast %s%s",
278 s->rx_compressed ? "compressed" : "", _SL_);
279 fprintf(fp, " %-10"PRIu64" %-8"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64"",
280 (uint64_t)s->rx_bytes,
281 (uint64_t)s->rx_packets,
282 (uint64_t)s->rx_errors,
283 (uint64_t)s->rx_dropped,
284 (uint64_t)s->rx_over_errors,
285 (uint64_t)s->multicast);
286 if (s->rx_compressed)
287 fprintf(fp, " %-7"PRIu64"",
288 (uint64_t)s->rx_compressed);
289 if (show_stats > 1) {
290 fprintf(fp, "%s", _SL_);
291 fprintf(fp, " RX errors: length crc frame fifo missed%s", _SL_);
292 fprintf(fp, " %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64"",
293 (uint64_t)s->rx_length_errors,
294 (uint64_t)s->rx_crc_errors,
295 (uint64_t)s->rx_frame_errors,
296 (uint64_t)s->rx_fifo_errors,
297 (uint64_t)s->rx_missed_errors);
298 }
299 fprintf(fp, "%s", _SL_);
300 fprintf(fp, " TX: bytes packets errors dropped carrier collsns %s%s",
301 (uint64_t)s->tx_compressed ? "compressed" : "", _SL_);
302 fprintf(fp, " %-10"PRIu64" %-8"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64"",
303 (uint64_t)s->tx_bytes,
304 (uint64_t)s->tx_packets,
305 (uint64_t)s->tx_errors,
306 (uint64_t)s->tx_dropped,
307 (uint64_t)s->tx_carrier_errors,
308 (uint64_t)s->collisions);
309 if (s->tx_compressed)
310 fprintf(fp, " %-7"PRIu64"",
311 (uint64_t)s->tx_compressed);
312 if (show_stats > 1) {
313 fprintf(fp, "%s", _SL_);
314 fprintf(fp, " TX errors: aborted fifo window heartbeat%s", _SL_);
315 fprintf(fp, " %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64"",
316 (uint64_t)s->tx_aborted_errors,
317 (uint64_t)s->tx_fifo_errors,
318 (uint64_t)s->tx_window_errors,
319 (uint64_t)s->tx_heartbeat_errors);
320 }
321}
322
323static void print_link_stats(FILE *fp, const struct rtnl_link_stats *s)
324{
325 fprintf(fp, "%s", _SL_);
326 fprintf(fp, " RX: bytes packets errors dropped overrun mcast %s%s",
327 s->rx_compressed ? "compressed" : "", _SL_);
328 fprintf(fp, " %-10u %-8u %-7u %-7u %-7u %-7u",
329 s->rx_bytes, s->rx_packets, s->rx_errors,
330 s->rx_dropped, s->rx_over_errors,
331 s->multicast
332 );
333 if (s->rx_compressed)
334 fprintf(fp, " %-7u", s->rx_compressed);
335 if (show_stats > 1) {
336 fprintf(fp, "%s", _SL_);
337 fprintf(fp, " RX errors: length crc frame fifo missed%s", _SL_);
338 fprintf(fp, " %-7u %-7u %-7u %-7u %-7u",
339 s->rx_length_errors,
340 s->rx_crc_errors,
341 s->rx_frame_errors,
342 s->rx_fifo_errors,
343 s->rx_missed_errors
344 );
345 }
346 fprintf(fp, "%s", _SL_);
347 fprintf(fp, " TX: bytes packets errors dropped carrier collsns %s%s",
348 s->tx_compressed ? "compressed" : "", _SL_);
349 fprintf(fp, " %-10u %-8u %-7u %-7u %-7u %-7u",
350 s->tx_bytes, s->tx_packets, s->tx_errors,
351 s->tx_dropped, s->tx_carrier_errors, s->collisions);
352 if (s->tx_compressed)
353 fprintf(fp, " %-7u", s->tx_compressed);
354 if (show_stats > 1) {
355 fprintf(fp, "%s", _SL_);
356 fprintf(fp, " TX errors: aborted fifo window heartbeat%s", _SL_);
357 fprintf(fp, " %-7u %-7u %-7u %-7u",
358 s->tx_aborted_errors,
359 s->tx_fifo_errors,
360 s->tx_window_errors,
361 s->tx_heartbeat_errors
362 );
363 }
364}
365
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800366int print_linkinfo(const struct sockaddr_nl *who,
osdl.net!shemminger50772dc2004-12-07 21:48:29 +0000367 struct nlmsghdr *n, void *arg)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000368{
369 FILE *fp = (FILE*)arg;
370 struct ifinfomsg *ifi = NLMSG_DATA(n);
371 struct rtattr * tb[IFLA_MAX+1];
372 int len = n->nlmsg_len;
373 unsigned m_flag = 0;
374
375 if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
376 return 0;
377
378 len -= NLMSG_LENGTH(sizeof(*ifi));
379 if (len < 0)
380 return -1;
381
382 if (filter.ifindex && ifi->ifi_index != filter.ifindex)
383 return 0;
384 if (filter.up && !(ifi->ifi_flags&IFF_UP))
385 return 0;
386
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000387 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
388 if (tb[IFLA_IFNAME] == NULL) {
jamal4cd23bd2008-08-08 10:06:17 -0400389 fprintf(stderr, "BUG: device with ifindex %d has nil ifname\n", ifi->ifi_index);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000390 }
391 if (filter.label &&
392 (!filter.family || filter.family == AF_PACKET) &&
393 fnmatch(filter.label, RTA_DATA(tb[IFLA_IFNAME]), 0))
394 return 0;
395
Vlad Dogaruf960c922011-02-02 20:23:40 +0200396 if (tb[IFLA_GROUP]) {
397 int group = *(int*)RTA_DATA(tb[IFLA_GROUP]);
398 if (group != filter.group)
399 return -1;
400 }
401
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000402 if (n->nlmsg_type == RTM_DELLINK)
403 fprintf(fp, "Deleted ");
404
405 fprintf(fp, "%d: %s", ifi->ifi_index,
Stephen Hemmingerff247462012-04-10 08:47:55 -0700406 tb[IFLA_IFNAME] ? rta_getattr_str(tb[IFLA_IFNAME]) : "<nil>");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000407
408 if (tb[IFLA_LINK]) {
409 SPRINT_BUF(b1);
410 int iflink = *(int*)RTA_DATA(tb[IFLA_LINK]);
411 if (iflink == 0)
412 fprintf(fp, "@NONE: ");
413 else {
414 fprintf(fp, "@%s: ", ll_idx_n2a(iflink, b1));
415 m_flag = ll_index_to_flags(iflink);
416 m_flag = !(m_flag & IFF_UP);
417 }
418 } else {
419 fprintf(fp, ": ");
420 }
421 print_link_flags(fp, ifi->ifi_flags, m_flag);
422
423 if (tb[IFLA_MTU])
424 fprintf(fp, "mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU]));
425 if (tb[IFLA_QDISC])
Stephen Hemmingerff247462012-04-10 08:47:55 -0700426 fprintf(fp, "qdisc %s ", rta_getattr_str(tb[IFLA_QDISC]));
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000427 if (tb[IFLA_MASTER]) {
428 SPRINT_BUF(b1);
429 fprintf(fp, "master %s ", ll_idx_n2a(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1));
430 }
Stephen Hemminger82499282012-03-19 17:24:43 -0700431
Stephen Hemminger3d866ba2008-03-14 15:30:03 -0700432 if (tb[IFLA_OPERSTATE])
Stephen Hemmingerff247462012-04-10 08:47:55 -0700433 print_operstate(fp, rta_getattr_u8(tb[IFLA_OPERSTATE]));
Stephen Hemminger82499282012-03-19 17:24:43 -0700434
435 if (do_link && tb[IFLA_LINKMODE])
436 print_linkmode(fp, tb[IFLA_LINKMODE]);
437
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000438 if (filter.showqueue)
Eric Dumazetf78e3162009-10-22 18:13:21 +0000439 print_queuelen(fp, tb);
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800440
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000441 if (!filter.family || filter.family == AF_PACKET) {
442 SPRINT_BUF(b1);
443 fprintf(fp, "%s", _SL_);
444 fprintf(fp, " link/%s ", ll_type_n2a(ifi->ifi_type, b1, sizeof(b1)));
445
446 if (tb[IFLA_ADDRESS]) {
447 fprintf(fp, "%s", ll_addr_n2a(RTA_DATA(tb[IFLA_ADDRESS]),
448 RTA_PAYLOAD(tb[IFLA_ADDRESS]),
449 ifi->ifi_type,
450 b1, sizeof(b1)));
451 }
452 if (tb[IFLA_BROADCAST]) {
453 if (ifi->ifi_flags&IFF_POINTOPOINT)
454 fprintf(fp, " peer ");
455 else
456 fprintf(fp, " brd ");
457 fprintf(fp, "%s", ll_addr_n2a(RTA_DATA(tb[IFLA_BROADCAST]),
458 RTA_PAYLOAD(tb[IFLA_BROADCAST]),
459 ifi->ifi_type,
460 b1, sizeof(b1)));
461 }
462 }
Patrick McHardy1d934832007-08-22 10:49:01 -0700463
464 if (do_link && tb[IFLA_LINKINFO] && show_details)
465 print_linktype(fp, tb[IFLA_LINKINFO]);
466
Stephen Hemmingerace9c962009-03-23 10:46:47 -0700467 if (do_link && tb[IFLA_IFALIAS])
468 fprintf(fp,"\n alias %s",
Stephen Hemmingerff247462012-04-10 08:47:55 -0700469 rta_getattr_str(tb[IFLA_IFALIAS]));
Stephen Hemmingerace9c962009-03-23 10:46:47 -0700470
Stephen Hemmingere6e6fb52012-02-21 17:18:59 -0800471 if (do_link && show_stats) {
472 if (tb[IFLA_STATS64])
473 print_link_stats64(fp, RTA_DATA(tb[IFLA_STATS64]));
474 else if (tb[IFLA_STATS])
475 print_link_stats(fp, RTA_DATA(tb[IFLA_STATS]));
Jan Engelhardt8864ac92010-03-11 10:00:34 +0000476 }
Stephen Hemmingere6e6fb52012-02-21 17:18:59 -0800477
Chris Wright3fd86632010-05-18 00:57:00 -0700478 if (do_link && tb[IFLA_VFINFO_LIST] && tb[IFLA_NUM_VF]) {
479 struct rtattr *i, *vflist = tb[IFLA_VFINFO_LIST];
480 int rem = RTA_PAYLOAD(vflist);
481 for (i = RTA_DATA(vflist); RTA_OK(i, rem); i = RTA_NEXT(i, rem))
482 print_vfinfo(fp, i);
Williams, Mitch Aae7229d2010-02-10 01:47:08 +0000483 }
Chris Wright3fd86632010-05-18 00:57:00 -0700484
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000485 fprintf(fp, "\n");
486 fflush(fp);
487 return 0;
488}
489
490static int flush_update(void)
491{
Stephen Hemmingerf31a37f2008-01-31 21:38:58 -0800492 if (rtnl_send_check(&rth, filter.flushb, filter.flushp) < 0) {
Stephen Hemminger1fb0a992008-01-26 11:08:31 -0800493 perror("Failed to send flush request");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000494 return -1;
495 }
496 filter.flushp = 0;
497 return 0;
498}
499
Masahide NAKAMURA35546df2006-11-24 12:26:55 +0900500static int set_lifetime(unsigned int *lifetime, char *argv)
501{
502 if (strcmp(argv, "forever") == 0)
Masahide NAKAMURA141bb602006-11-24 12:27:01 +0900503 *lifetime = INFINITY_LIFE_TIME;
Masahide NAKAMURA35546df2006-11-24 12:26:55 +0900504 else if (get_u32(lifetime, argv, 0))
505 return -1;
506
507 return 0;
508}
509
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800510int print_addrinfo(const struct sockaddr_nl *who, struct nlmsghdr *n,
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +0000511 void *arg)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000512{
513 FILE *fp = (FILE*)arg;
514 struct ifaddrmsg *ifa = NLMSG_DATA(n);
515 int len = n->nlmsg_len;
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800516 int deprecated = 0;
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700517 /* Use local copy of ifa_flags to not interfere with filtering code */
518 unsigned int ifa_flags;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000519 struct rtattr * rta_tb[IFA_MAX+1];
520 char abuf[256];
521 SPRINT_BUF(b1);
522
523 if (n->nlmsg_type != RTM_NEWADDR && n->nlmsg_type != RTM_DELADDR)
524 return 0;
525 len -= NLMSG_LENGTH(sizeof(*ifa));
526 if (len < 0) {
527 fprintf(stderr, "BUG: wrong nlmsg len %d\n", len);
528 return -1;
529 }
530
531 if (filter.flushb && n->nlmsg_type != RTM_NEWADDR)
532 return 0;
533
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000534 parse_rtattr(rta_tb, IFA_MAX, IFA_RTA(ifa), n->nlmsg_len - NLMSG_LENGTH(sizeof(*ifa)));
535
536 if (!rta_tb[IFA_LOCAL])
537 rta_tb[IFA_LOCAL] = rta_tb[IFA_ADDRESS];
538 if (!rta_tb[IFA_ADDRESS])
539 rta_tb[IFA_ADDRESS] = rta_tb[IFA_LOCAL];
540
541 if (filter.ifindex && filter.ifindex != ifa->ifa_index)
542 return 0;
543 if ((filter.scope^ifa->ifa_scope)&filter.scopemask)
544 return 0;
545 if ((filter.flags^ifa->ifa_flags)&filter.flagmask)
546 return 0;
547 if (filter.label) {
548 SPRINT_BUF(b1);
549 const char *label;
550 if (rta_tb[IFA_LABEL])
551 label = RTA_DATA(rta_tb[IFA_LABEL]);
552 else
553 label = ll_idx_n2a(ifa->ifa_index, b1);
554 if (fnmatch(filter.label, label, 0) != 0)
555 return 0;
556 }
557 if (filter.pfx.family) {
558 if (rta_tb[IFA_LOCAL]) {
559 inet_prefix dst;
560 memset(&dst, 0, sizeof(dst));
561 dst.family = ifa->ifa_family;
562 memcpy(&dst.data, RTA_DATA(rta_tb[IFA_LOCAL]), RTA_PAYLOAD(rta_tb[IFA_LOCAL]));
563 if (inet_addr_match(&dst, &filter.pfx, filter.pfx.bitlen))
564 return 0;
565 }
566 }
567
net[shemminger]!shemminger3eb17312005-02-07 18:28:31 +0000568 if (filter.family && filter.family != ifa->ifa_family)
569 return 0;
570
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000571 if (filter.flushb) {
572 struct nlmsghdr *fn;
573 if (NLMSG_ALIGN(filter.flushp) + n->nlmsg_len > filter.flushe) {
574 if (flush_update())
575 return -1;
576 }
577 fn = (struct nlmsghdr*)(filter.flushb + NLMSG_ALIGN(filter.flushp));
578 memcpy(fn, n, n->nlmsg_len);
579 fn->nlmsg_type = RTM_DELADDR;
580 fn->nlmsg_flags = NLM_F_REQUEST;
shemminger351efcd2005-09-01 19:21:50 +0000581 fn->nlmsg_seq = ++rth.seq;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000582 filter.flushp = (((char*)fn) + n->nlmsg_len) - filter.flushb;
583 filter.flushed++;
584 if (show_stats < 2)
585 return 0;
586 }
587
588 if (n->nlmsg_type == RTM_DELADDR)
589 fprintf(fp, "Deleted ");
590
591 if (filter.oneline || filter.flushb)
592 fprintf(fp, "%u: %s", ifa->ifa_index, ll_index_to_name(ifa->ifa_index));
593 if (ifa->ifa_family == AF_INET)
594 fprintf(fp, " inet ");
595 else if (ifa->ifa_family == AF_INET6)
596 fprintf(fp, " inet6 ");
597 else if (ifa->ifa_family == AF_DECnet)
598 fprintf(fp, " dnet ");
599 else if (ifa->ifa_family == AF_IPX)
600 fprintf(fp, " ipx ");
601 else
602 fprintf(fp, " family %d ", ifa->ifa_family);
603
604 if (rta_tb[IFA_LOCAL]) {
605 fprintf(fp, "%s", rt_addr_n2a(ifa->ifa_family,
606 RTA_PAYLOAD(rta_tb[IFA_LOCAL]),
607 RTA_DATA(rta_tb[IFA_LOCAL]),
608 abuf, sizeof(abuf)));
609
610 if (rta_tb[IFA_ADDRESS] == NULL ||
611 memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0) {
612 fprintf(fp, "/%d ", ifa->ifa_prefixlen);
613 } else {
614 fprintf(fp, " peer %s/%d ",
615 rt_addr_n2a(ifa->ifa_family,
616 RTA_PAYLOAD(rta_tb[IFA_ADDRESS]),
617 RTA_DATA(rta_tb[IFA_ADDRESS]),
618 abuf, sizeof(abuf)),
619 ifa->ifa_prefixlen);
620 }
621 }
622
623 if (rta_tb[IFA_BROADCAST]) {
624 fprintf(fp, "brd %s ",
625 rt_addr_n2a(ifa->ifa_family,
626 RTA_PAYLOAD(rta_tb[IFA_BROADCAST]),
627 RTA_DATA(rta_tb[IFA_BROADCAST]),
628 abuf, sizeof(abuf)));
629 }
630 if (rta_tb[IFA_ANYCAST]) {
631 fprintf(fp, "any %s ",
632 rt_addr_n2a(ifa->ifa_family,
633 RTA_PAYLOAD(rta_tb[IFA_ANYCAST]),
634 RTA_DATA(rta_tb[IFA_ANYCAST]),
635 abuf, sizeof(abuf)));
636 }
637 fprintf(fp, "scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope, b1, sizeof(b1)));
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700638 ifa_flags = ifa->ifa_flags;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000639 if (ifa->ifa_flags&IFA_F_SECONDARY) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700640 ifa_flags &= ~IFA_F_SECONDARY;
Brian Haleya1b9ffc2009-09-14 17:01:43 -0400641 if (ifa->ifa_family == AF_INET6)
642 fprintf(fp, "temporary ");
643 else
644 fprintf(fp, "secondary ");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000645 }
646 if (ifa->ifa_flags&IFA_F_TENTATIVE) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700647 ifa_flags &= ~IFA_F_TENTATIVE;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000648 fprintf(fp, "tentative ");
649 }
650 if (ifa->ifa_flags&IFA_F_DEPRECATED) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700651 ifa_flags &= ~IFA_F_DEPRECATED;
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800652 deprecated = 1;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000653 fprintf(fp, "deprecated ");
654 }
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +0900655 if (ifa->ifa_flags&IFA_F_HOMEADDRESS) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700656 ifa_flags &= ~IFA_F_HOMEADDRESS;
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +0900657 fprintf(fp, "home ");
658 }
659 if (ifa->ifa_flags&IFA_F_NODAD) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700660 ifa_flags &= ~IFA_F_NODAD;
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +0900661 fprintf(fp, "nodad ");
662 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000663 if (!(ifa->ifa_flags&IFA_F_PERMANENT)) {
664 fprintf(fp, "dynamic ");
665 } else
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700666 ifa_flags &= ~IFA_F_PERMANENT;
Brian Haleyf4af8512009-12-01 15:58:44 -0800667 if (ifa->ifa_flags&IFA_F_DADFAILED) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700668 ifa_flags &= ~IFA_F_DADFAILED;
Brian Haleyf4af8512009-12-01 15:58:44 -0800669 fprintf(fp, "dadfailed ");
670 }
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700671 if (ifa_flags)
672 fprintf(fp, "flags %02x ", ifa_flags);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000673 if (rta_tb[IFA_LABEL])
Stephen Hemmingerff247462012-04-10 08:47:55 -0700674 fprintf(fp, "%s", rta_getattr_str(rta_tb[IFA_LABEL]));
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000675 if (rta_tb[IFA_CACHEINFO]) {
676 struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000677 fprintf(fp, "%s", _SL_);
Andreas Schwabf66efad2010-11-05 23:26:29 +0000678 fprintf(fp, " valid_lft ");
Masahide NAKAMURA141bb602006-11-24 12:27:01 +0900679 if (ci->ifa_valid == INFINITY_LIFE_TIME)
Andreas Schwabf66efad2010-11-05 23:26:29 +0000680 fprintf(fp, "forever");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000681 else
Andreas Schwabf66efad2010-11-05 23:26:29 +0000682 fprintf(fp, "%usec", ci->ifa_valid);
683 fprintf(fp, " preferred_lft ");
Masahide NAKAMURA141bb602006-11-24 12:27:01 +0900684 if (ci->ifa_prefered == INFINITY_LIFE_TIME)
Andreas Schwabf66efad2010-11-05 23:26:29 +0000685 fprintf(fp, "forever");
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800686 else {
687 if (deprecated)
Andreas Schwabf66efad2010-11-05 23:26:29 +0000688 fprintf(fp, "%dsec", ci->ifa_prefered);
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800689 else
Andreas Schwabf66efad2010-11-05 23:26:29 +0000690 fprintf(fp, "%usec", ci->ifa_prefered);
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800691 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000692 }
693 fprintf(fp, "\n");
694 fflush(fp);
695 return 0;
696}
697
Simon Hormanb49240e2009-12-03 12:08:27 +1100698int print_addrinfo_primary(const struct sockaddr_nl *who, struct nlmsghdr *n,
699 void *arg)
700{
701 struct ifaddrmsg *ifa = NLMSG_DATA(n);
702
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700703 if (ifa->ifa_flags & IFA_F_SECONDARY)
Simon Hormanb49240e2009-12-03 12:08:27 +1100704 return 0;
705
706 return print_addrinfo(who, n, arg);
707}
708
709int print_addrinfo_secondary(const struct sockaddr_nl *who, struct nlmsghdr *n,
710 void *arg)
711{
712 struct ifaddrmsg *ifa = NLMSG_DATA(n);
713
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700714 if (!(ifa->ifa_flags & IFA_F_SECONDARY))
Simon Hormanb49240e2009-12-03 12:08:27 +1100715 return 0;
716
717 return print_addrinfo(who, n, arg);
718}
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000719
720struct nlmsg_list
721{
722 struct nlmsg_list *next;
723 struct nlmsghdr h;
724};
725
Eric Dumazet62e2e542012-06-09 13:55:55 +0200726struct nlmsg_chain
727{
728 struct nlmsg_list *head;
729 struct nlmsg_list *tail;
730};
731
Stephen Hemminger3d866ba2008-03-14 15:30:03 -0700732static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo, FILE *fp)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000733{
734 for ( ;ainfo ; ainfo = ainfo->next) {
735 struct nlmsghdr *n = &ainfo->h;
736 struct ifaddrmsg *ifa = NLMSG_DATA(n);
737
738 if (n->nlmsg_type != RTM_NEWADDR)
739 continue;
740
741 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
742 return -1;
743
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800744 if (ifa->ifa_index != ifindex ||
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000745 (filter.family && filter.family != ifa->ifa_family))
746 continue;
747
748 print_addrinfo(NULL, n, fp);
749 }
750 return 0;
751}
752
753
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800754static int store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n,
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +0000755 void *arg)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000756{
Eric Dumazet62e2e542012-06-09 13:55:55 +0200757 struct nlmsg_chain *lchain = (struct nlmsg_chain *)arg;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000758 struct nlmsg_list *h;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000759
760 h = malloc(n->nlmsg_len+sizeof(void*));
761 if (h == NULL)
762 return -1;
763
764 memcpy(&h->h, n, n->nlmsg_len);
765 h->next = NULL;
766
Eric Dumazet62e2e542012-06-09 13:55:55 +0200767 if (lchain->tail)
768 lchain->tail->next = h;
769 else
770 lchain->head = h;
771 lchain->tail = h;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000772
773 ll_remember_index(who, n, NULL);
774 return 0;
775}
776
Pavel Emelyanov81824ac2012-09-11 19:47:00 +0400777static __u32 ipadd_dump_magic = 0x47361222;
778
779static int ipadd_save_prep(void)
780{
781 int ret;
782
783 if (isatty(STDOUT_FILENO)) {
784 fprintf(stderr, "Not sending binary stream to stdout\n");
785 return -1;
786 }
787
788 ret = write(STDOUT_FILENO, &ipadd_dump_magic, sizeof(ipadd_dump_magic));
789 if (ret != sizeof(ipadd_dump_magic)) {
790 fprintf(stderr, "Can't write magic to dump file\n");
791 return -1;
792 }
793
794 return 0;
795}
796
797static int ipadd_dump_check_magic(void)
798{
799 int ret;
800 __u32 magic = 0;
801
802 if (isatty(STDIN_FILENO)) {
803 fprintf(stderr, "Can't restore addr dump from a terminal\n");
804 return -1;
805 }
806
807 ret = fread(&magic, sizeof(magic), 1, stdin);
808 if (magic != ipadd_dump_magic) {
809 fprintf(stderr, "Magic mismatch (%d elems, %x magic)\n", ret, magic);
810 return -1;
811 }
812
813 return 0;
814}
815
816static int save_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n,
817 void *arg)
818{
819 int ret;
820
821 ret = write(STDOUT_FILENO, n, n->nlmsg_len);
822 if ((ret > 0) && (ret != n->nlmsg_len)) {
823 fprintf(stderr, "Short write while saving nlmsg\n");
824 ret = -EIO;
825 }
826
827 return ret == n->nlmsg_len ? 0 : ret;
828}
829
830static int show_handler(const struct sockaddr_nl *nl, struct nlmsghdr *n, void *arg)
831{
832 struct ifaddrmsg *ifa = NLMSG_DATA(n);
833
834 printf("if%d:\n", ifa->ifa_index);
835 print_addrinfo(NULL, n, stdout);
836 return 0;
837}
838
839static int ipaddr_showdump(void)
840{
841 if (ipadd_dump_check_magic())
842 exit(-1);
843
844 exit(rtnl_from_file(stdin, &show_handler, NULL));
845}
846
847static int restore_handler(const struct sockaddr_nl *nl, struct nlmsghdr *n, void *arg)
848{
849 int ret;
850
851 n->nlmsg_flags |= NLM_F_REQUEST | NLM_F_CREATE | NLM_F_ACK;
852
853 ll_init_map(&rth);
854
855 ret = rtnl_talk(&rth, n, 0, 0, n);
856 if ((ret < 0) && (errno == EEXIST))
857 ret = 0;
858
859 return ret;
860}
861
862static int ipaddr_restore(void)
863{
864 if (ipadd_dump_check_magic())
865 exit(-1);
866
867 exit(rtnl_from_file(stdin, &restore_handler, NULL));
868}
869
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -0700870static void free_nlmsg_chain(struct nlmsg_chain *info)
871{
872 struct nlmsg_list *l, *n;
873
874 for (l = info->head; l; l = n) {
875 n = l->next;
876 free(l);
877 }
878}
879
880static void ipaddr_filter(struct nlmsg_chain *linfo, struct nlmsg_chain *ainfo)
881{
882 struct nlmsg_list *l, **lp;
883
884 lp = &linfo->head;
885 while ( (l = *lp) != NULL) {
886 int ok = 0;
887 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
888 struct nlmsg_list *a;
889
890 for (a = ainfo->head; a; a = a->next) {
891 struct nlmsghdr *n = &a->h;
892 struct ifaddrmsg *ifa = NLMSG_DATA(n);
893
894 if (ifa->ifa_index != ifi->ifi_index ||
895 (filter.family && filter.family != ifa->ifa_family))
896 continue;
897 if ((filter.scope^ifa->ifa_scope)&filter.scopemask)
898 continue;
899 if ((filter.flags^ifa->ifa_flags)&filter.flagmask)
900 continue;
901 if (filter.pfx.family || filter.label) {
902 struct rtattr *tb[IFA_MAX+1];
903 parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
904 if (!tb[IFA_LOCAL])
905 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
906
907 if (filter.pfx.family && tb[IFA_LOCAL]) {
908 inet_prefix dst;
909 memset(&dst, 0, sizeof(dst));
910 dst.family = ifa->ifa_family;
911 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
912 if (inet_addr_match(&dst, &filter.pfx, filter.pfx.bitlen))
913 continue;
914 }
915 if (filter.label) {
916 SPRINT_BUF(b1);
917 const char *label;
918 if (tb[IFA_LABEL])
919 label = RTA_DATA(tb[IFA_LABEL]);
920 else
921 label = ll_idx_n2a(ifa->ifa_index, b1);
922 if (fnmatch(filter.label, label, 0) != 0)
923 continue;
924 }
925 }
926
927 ok = 1;
928 break;
929 }
930 if (!ok) {
931 *lp = l->next;
932 free(l);
933 } else
934 lp = &l->next;
935 }
936}
937
938static int ipaddr_flush(void)
939{
940 int round = 0;
941 char flushb[4096-512];
942
943 filter.flushb = flushb;
944 filter.flushp = 0;
945 filter.flushe = sizeof(flushb);
946
947 while ((max_flush_loops == 0) || (round < max_flush_loops)) {
948 const struct rtnl_dump_filter_arg a[3] = {
949 {
950 .filter = print_addrinfo_secondary,
951 .arg1 = stdout,
952 },
953 {
954 .filter = print_addrinfo_primary,
955 .arg1 = stdout,
956 },
957 {
958 .filter = NULL,
959 .arg1 = NULL,
960 },
961 };
962 if (rtnl_wilddump_request(&rth, filter.family, RTM_GETADDR) < 0) {
963 perror("Cannot send dump request");
964 exit(1);
965 }
966 filter.flushed = 0;
967 if (rtnl_dump_filter_l(&rth, a) < 0) {
968 fprintf(stderr, "Flush terminated\n");
969 exit(1);
970 }
971 if (filter.flushed == 0) {
972 flush_done:
973 if (show_stats) {
974 if (round == 0)
975 printf("Nothing to flush.\n");
976 else
977 printf("*** Flush is complete after %d round%s ***\n", round, round>1?"s":"");
978 }
979 fflush(stdout);
980 return 0;
981 }
982 round++;
983 if (flush_update() < 0)
984 return 1;
985
986 if (show_stats) {
987 printf("\n*** Round %d, deleting %d addresses ***\n", round, filter.flushed);
988 fflush(stdout);
989 }
990
991 /* If we are flushing, and specifying primary, then we
992 * want to flush only a single round. Otherwise, we'll
993 * start flushing secondaries that were promoted to
994 * primaries.
995 */
996 if (!(filter.flags & IFA_F_SECONDARY) && (filter.flagmask & IFA_F_SECONDARY))
997 goto flush_done;
998 }
999 fprintf(stderr, "*** Flush remains incomplete after %d rounds. ***\n", max_flush_loops);
1000 fflush(stderr);
1001 return 1;
1002}
1003
Pavel Emelyanov81824ac2012-09-11 19:47:00 +04001004static int ipaddr_list_flush_or_save(int argc, char **argv, int action)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001005{
Eric Dumazet62e2e542012-06-09 13:55:55 +02001006 struct nlmsg_chain linfo = { NULL, NULL};
1007 struct nlmsg_chain ainfo = { NULL, NULL};
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001008 struct nlmsg_list *l;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001009 char *filter_dev = NULL;
1010 int no_link = 0;
1011
1012 ipaddr_reset_filter(oneline);
1013 filter.showqueue = 1;
1014
1015 if (filter.family == AF_UNSPEC)
1016 filter.family = preferred_family;
1017
Stephen Hemminger242b8da2011-04-12 14:40:14 -07001018 filter.group = INIT_NETDEV_GROUP;
Vlad Dogaruf960c922011-02-02 20:23:40 +02001019
Pavel Emelyanov81824ac2012-09-11 19:47:00 +04001020 if (action == IPADD_FLUSH) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001021 if (argc <= 0) {
1022 fprintf(stderr, "Flush requires arguments.\n");
Vlad Dogaruf960c922011-02-02 20:23:40 +02001023
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001024 return -1;
1025 }
1026 if (filter.family == AF_PACKET) {
1027 fprintf(stderr, "Cannot flush link addresses.\n");
1028 return -1;
1029 }
1030 }
1031
1032 while (argc > 0) {
1033 if (strcmp(*argv, "to") == 0) {
1034 NEXT_ARG();
1035 get_prefix(&filter.pfx, *argv, filter.family);
1036 if (filter.family == AF_UNSPEC)
1037 filter.family = filter.pfx.family;
1038 } else if (strcmp(*argv, "scope") == 0) {
shemmingerf332d162005-07-05 22:37:15 +00001039 unsigned scope = 0;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001040 NEXT_ARG();
1041 filter.scopemask = -1;
1042 if (rtnl_rtscope_a2n(&scope, *argv)) {
1043 if (strcmp(*argv, "all") != 0)
1044 invarg("invalid \"scope\"\n", *argv);
1045 scope = RT_SCOPE_NOWHERE;
1046 filter.scopemask = 0;
1047 }
1048 filter.scope = scope;
1049 } else if (strcmp(*argv, "up") == 0) {
1050 filter.up = 1;
1051 } else if (strcmp(*argv, "dynamic") == 0) {
1052 filter.flags &= ~IFA_F_PERMANENT;
1053 filter.flagmask |= IFA_F_PERMANENT;
1054 } else if (strcmp(*argv, "permanent") == 0) {
1055 filter.flags |= IFA_F_PERMANENT;
1056 filter.flagmask |= IFA_F_PERMANENT;
Brian Haleya1b9ffc2009-09-14 17:01:43 -04001057 } else if (strcmp(*argv, "secondary") == 0 ||
1058 strcmp(*argv, "temporary") == 0) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001059 filter.flags |= IFA_F_SECONDARY;
1060 filter.flagmask |= IFA_F_SECONDARY;
1061 } else if (strcmp(*argv, "primary") == 0) {
1062 filter.flags &= ~IFA_F_SECONDARY;
1063 filter.flagmask |= IFA_F_SECONDARY;
1064 } else if (strcmp(*argv, "tentative") == 0) {
1065 filter.flags |= IFA_F_TENTATIVE;
1066 filter.flagmask |= IFA_F_TENTATIVE;
1067 } else if (strcmp(*argv, "deprecated") == 0) {
1068 filter.flags |= IFA_F_DEPRECATED;
1069 filter.flagmask |= IFA_F_DEPRECATED;
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +09001070 } else if (strcmp(*argv, "home") == 0) {
1071 filter.flags |= IFA_F_HOMEADDRESS;
1072 filter.flagmask |= IFA_F_HOMEADDRESS;
1073 } else if (strcmp(*argv, "nodad") == 0) {
1074 filter.flags |= IFA_F_NODAD;
1075 filter.flagmask |= IFA_F_NODAD;
Brian Haleya1f27792009-12-03 10:39:36 +00001076 } else if (strcmp(*argv, "dadfailed") == 0) {
1077 filter.flags |= IFA_F_DADFAILED;
1078 filter.flagmask |= IFA_F_DADFAILED;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001079 } else if (strcmp(*argv, "label") == 0) {
1080 NEXT_ARG();
1081 filter.label = *argv;
Vlad Dogaruf960c922011-02-02 20:23:40 +02001082 } else if (strcmp(*argv, "group") == 0) {
1083 NEXT_ARG();
1084 if (rtnl_group_a2n(&filter.group, *argv))
1085 invarg("Invalid \"group\" value\n", *argv);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001086 } else {
1087 if (strcmp(*argv, "dev") == 0) {
1088 NEXT_ARG();
1089 }
1090 if (matches(*argv, "help") == 0)
1091 usage();
1092 if (filter_dev)
1093 duparg2("dev", *argv);
1094 filter_dev = *argv;
1095 }
1096 argv++; argc--;
1097 }
1098
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001099 if (filter_dev) {
1100 filter.ifindex = ll_name_to_index(filter_dev);
1101 if (filter.ifindex <= 0) {
1102 fprintf(stderr, "Device \"%s\" does not exist.\n", filter_dev);
1103 return -1;
1104 }
1105 }
1106
Pavel Emelyanov81824ac2012-09-11 19:47:00 +04001107 if (action == IPADD_FLUSH)
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001108 return ipaddr_flush();
1109
Pavel Emelyanov81824ac2012-09-11 19:47:00 +04001110 if (action == IPADD_SAVE) {
1111 if (ipadd_save_prep())
1112 exit(1);
1113
1114 if (rtnl_wilddump_request(&rth, preferred_family, RTM_GETADDR) < 0) {
1115 perror("Cannot send dump request");
1116 exit(1);
1117 }
1118
1119 if (rtnl_dump_filter(&rth, save_nlmsg, stdout) < 0) {
1120 fprintf(stderr, "Save terminated\n");
1121 exit(1);
1122 }
1123
1124 exit(0);
1125 }
1126
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001127 if (rtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK) < 0) {
1128 perror("Cannot send dump request");
1129 exit(1);
1130 }
1131
Stephen Hemmingercd70f3f2011-12-28 10:37:12 -08001132 if (rtnl_dump_filter(&rth, store_nlmsg, &linfo) < 0) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001133 fprintf(stderr, "Dump terminated\n");
1134 exit(1);
1135 }
1136
Mike Frysingeraf9d4062012-08-13 08:09:52 -07001137 if (filter.family != AF_PACKET) {
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001138 if (filter.oneline)
1139 no_link = 1;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001140
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001141 if (rtnl_wilddump_request(&rth, filter.family, RTM_GETADDR) < 0) {
1142 perror("Cannot send dump request");
1143 exit(1);
1144 }
1145
Stephen Hemmingercd70f3f2011-12-28 10:37:12 -08001146 if (rtnl_dump_filter(&rth, store_nlmsg, &ainfo) < 0) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001147 fprintf(stderr, "Dump terminated\n");
1148 exit(1);
1149 }
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001150
1151 ipaddr_filter(&linfo, &ainfo);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001152 }
1153
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001154 for (l = linfo.head; l; l = l->next) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001155 if (no_link || print_linkinfo(NULL, &l->h, stdout) == 0) {
1156 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
1157 if (filter.family != AF_PACKET)
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001158 print_selected_addrinfo(ifi->ifi_index,
1159 ainfo.head, stdout);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001160 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001161 }
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001162 fflush(stdout);
1163
1164 free_nlmsg_chain(&ainfo);
1165 free_nlmsg_chain(&linfo);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001166
shemminger351efcd2005-09-01 19:21:50 +00001167 return 0;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001168}
1169
1170int ipaddr_list_link(int argc, char **argv)
1171{
1172 preferred_family = AF_PACKET;
1173 do_link = 1;
Pavel Emelyanov81824ac2012-09-11 19:47:00 +04001174 return ipaddr_list_flush_or_save(argc, argv, IPADD_LIST);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001175}
1176
1177void ipaddr_reset_filter(int oneline)
1178{
1179 memset(&filter, 0, sizeof(filter));
1180 filter.oneline = oneline;
1181}
1182
Stephen Hemminger3d866ba2008-03-14 15:30:03 -07001183static int default_scope(inet_prefix *lcl)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001184{
1185 if (lcl->family == AF_INET) {
1186 if (lcl->bytelen >= 1 && *(__u8*)&lcl->data == 127)
1187 return RT_SCOPE_HOST;
1188 }
1189 return 0;
1190}
1191
Stephen Hemminger3d866ba2008-03-14 15:30:03 -07001192static int ipaddr_modify(int cmd, int flags, int argc, char **argv)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001193{
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001194 struct {
1195 struct nlmsghdr n;
1196 struct ifaddrmsg ifa;
1197 char buf[256];
1198 } req;
1199 char *d = NULL;
1200 char *l = NULL;
net[shemminger]!shemmingerf082b642005-03-30 18:16:10 +00001201 char *lcl_arg = NULL;
Masahide NAKAMURA35546df2006-11-24 12:26:55 +09001202 char *valid_lftp = NULL;
1203 char *preferred_lftp = NULL;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001204 inet_prefix lcl;
1205 inet_prefix peer;
1206 int local_len = 0;
1207 int peer_len = 0;
1208 int brd_len = 0;
1209 int any_len = 0;
1210 int scoped = 0;
Masahide NAKAMURA141bb602006-11-24 12:27:01 +09001211 __u32 preferred_lft = INFINITY_LIFE_TIME;
1212 __u32 valid_lft = INFINITY_LIFE_TIME;
Masahide NAKAMURA35546df2006-11-24 12:26:55 +09001213 struct ifa_cacheinfo cinfo;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001214
1215 memset(&req, 0, sizeof(req));
1216
1217 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
Noriaki TAKAMIYA0aef3662006-11-24 12:26:58 +09001218 req.n.nlmsg_flags = NLM_F_REQUEST | flags;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001219 req.n.nlmsg_type = cmd;
1220 req.ifa.ifa_family = preferred_family;
1221
1222 while (argc > 0) {
1223 if (strcmp(*argv, "peer") == 0 ||
1224 strcmp(*argv, "remote") == 0) {
1225 NEXT_ARG();
1226
1227 if (peer_len)
1228 duparg("peer", *argv);
1229 get_prefix(&peer, *argv, req.ifa.ifa_family);
1230 peer_len = peer.bytelen;
1231 if (req.ifa.ifa_family == AF_UNSPEC)
1232 req.ifa.ifa_family = peer.family;
1233 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
1234 req.ifa.ifa_prefixlen = peer.bitlen;
1235 } else if (matches(*argv, "broadcast") == 0 ||
1236 strcmp(*argv, "brd") == 0) {
1237 inet_prefix addr;
1238 NEXT_ARG();
1239 if (brd_len)
1240 duparg("broadcast", *argv);
1241 if (strcmp(*argv, "+") == 0)
1242 brd_len = -1;
1243 else if (strcmp(*argv, "-") == 0)
1244 brd_len = -2;
1245 else {
1246 get_addr(&addr, *argv, req.ifa.ifa_family);
1247 if (req.ifa.ifa_family == AF_UNSPEC)
1248 req.ifa.ifa_family = addr.family;
1249 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
1250 brd_len = addr.bytelen;
1251 }
1252 } else if (strcmp(*argv, "anycast") == 0) {
1253 inet_prefix addr;
1254 NEXT_ARG();
1255 if (any_len)
1256 duparg("anycast", *argv);
1257 get_addr(&addr, *argv, req.ifa.ifa_family);
1258 if (req.ifa.ifa_family == AF_UNSPEC)
1259 req.ifa.ifa_family = addr.family;
1260 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
1261 any_len = addr.bytelen;
1262 } else if (strcmp(*argv, "scope") == 0) {
shemmingerf332d162005-07-05 22:37:15 +00001263 unsigned scope = 0;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001264 NEXT_ARG();
1265 if (rtnl_rtscope_a2n(&scope, *argv))
Dan Kenigsbergf1675d62012-08-16 02:25:56 +00001266 invarg("invalid scope value.", *argv);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001267 req.ifa.ifa_scope = scope;
1268 scoped = 1;
1269 } else if (strcmp(*argv, "dev") == 0) {
1270 NEXT_ARG();
1271 d = *argv;
1272 } else if (strcmp(*argv, "label") == 0) {
1273 NEXT_ARG();
1274 l = *argv;
1275 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l)+1);
Masahide NAKAMURA35546df2006-11-24 12:26:55 +09001276 } else if (matches(*argv, "valid_lft") == 0) {
1277 if (valid_lftp)
1278 duparg("valid_lft", *argv);
1279 NEXT_ARG();
1280 valid_lftp = *argv;
1281 if (set_lifetime(&valid_lft, *argv))
1282 invarg("valid_lft value", *argv);
1283 } else if (matches(*argv, "preferred_lft") == 0) {
1284 if (preferred_lftp)
1285 duparg("preferred_lft", *argv);
1286 NEXT_ARG();
1287 preferred_lftp = *argv;
1288 if (set_lifetime(&preferred_lft, *argv))
1289 invarg("preferred_lft value", *argv);
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +09001290 } else if (strcmp(*argv, "home") == 0) {
1291 req.ifa.ifa_flags |= IFA_F_HOMEADDRESS;
1292 } else if (strcmp(*argv, "nodad") == 0) {
1293 req.ifa.ifa_flags |= IFA_F_NODAD;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001294 } else {
1295 if (strcmp(*argv, "local") == 0) {
1296 NEXT_ARG();
1297 }
1298 if (matches(*argv, "help") == 0)
1299 usage();
1300 if (local_len)
1301 duparg2("local", *argv);
net[shemminger]!shemmingerf082b642005-03-30 18:16:10 +00001302 lcl_arg = *argv;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001303 get_prefix(&lcl, *argv, req.ifa.ifa_family);
1304 if (req.ifa.ifa_family == AF_UNSPEC)
1305 req.ifa.ifa_family = lcl.family;
1306 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
1307 local_len = lcl.bytelen;
1308 }
1309 argc--; argv++;
1310 }
1311 if (d == NULL) {
1312 fprintf(stderr, "Not enough information: \"dev\" argument is required.\n");
1313 return -1;
1314 }
1315 if (l && matches(d, l) != 0) {
1316 fprintf(stderr, "\"dev\" (%s) must match \"label\" (%s).\n", d, l);
Michele Petrazzo - Unipex1db61e02010-03-06 08:56:53 +00001317 return -1;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001318 }
1319
net[shemminger]!shemmingerf082b642005-03-30 18:16:10 +00001320 if (peer_len == 0 && local_len) {
1321 if (cmd == RTM_DELADDR && lcl.family == AF_INET && !(lcl.flags & PREFIXLEN_SPECIFIED)) {
1322 fprintf(stderr,
1323 "Warning: Executing wildcard deletion to stay compatible with old scripts.\n" \
1324 " Explicitly specify the prefix length (%s/%d) to avoid this warning.\n" \
1325 " This special behaviour is likely to disappear in further releases,\n" \
1326 " fix your scripts!\n", lcl_arg, local_len*8);
1327 } else {
1328 peer = lcl;
1329 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
1330 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001331 }
1332 if (req.ifa.ifa_prefixlen == 0)
1333 req.ifa.ifa_prefixlen = lcl.bitlen;
1334
1335 if (brd_len < 0 && cmd != RTM_DELADDR) {
1336 inet_prefix brd;
1337 int i;
1338 if (req.ifa.ifa_family != AF_INET) {
1339 fprintf(stderr, "Broadcast can be set only for IPv4 addresses\n");
1340 return -1;
1341 }
1342 brd = peer;
1343 if (brd.bitlen <= 30) {
1344 for (i=31; i>=brd.bitlen; i--) {
1345 if (brd_len == -1)
1346 brd.data[0] |= htonl(1<<(31-i));
1347 else
1348 brd.data[0] &= ~htonl(1<<(31-i));
1349 }
1350 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
1351 brd_len = brd.bytelen;
1352 }
1353 }
1354 if (!scoped && cmd != RTM_DELADDR)
1355 req.ifa.ifa_scope = default_scope(&lcl);
1356
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001357 ll_init_map(&rth);
1358
1359 if ((req.ifa.ifa_index = ll_name_to_index(d)) == 0) {
1360 fprintf(stderr, "Cannot find device \"%s\"\n", d);
1361 return -1;
1362 }
1363
Masahide NAKAMURA35546df2006-11-24 12:26:55 +09001364 if (valid_lftp || preferred_lftp) {
1365 if (!valid_lft) {
1366 fprintf(stderr, "valid_lft is zero\n");
1367 return -1;
1368 }
1369 if (valid_lft < preferred_lft) {
1370 fprintf(stderr, "preferred_lft is greater than valid_lft\n");
1371 return -1;
1372 }
1373
1374 memset(&cinfo, 0, sizeof(cinfo));
1375 cinfo.ifa_prefered = preferred_lft;
1376 cinfo.ifa_valid = valid_lft;
1377 addattr_l(&req.n, sizeof(req), IFA_CACHEINFO, &cinfo,
1378 sizeof(cinfo));
1379 }
1380
Stephen Hemmingercd70f3f2011-12-28 10:37:12 -08001381 if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0)
Michele Petrazzo - Unipex1db61e02010-03-06 08:56:53 +00001382 return -2;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001383
shemminger351efcd2005-09-01 19:21:50 +00001384 return 0;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001385}
1386
1387int do_ipaddr(int argc, char **argv)
1388{
1389 if (argc < 1)
Pavel Emelyanov81824ac2012-09-11 19:47:00 +04001390 return ipaddr_list_flush_or_save(0, NULL, IPADD_LIST);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001391 if (matches(*argv, "add") == 0)
Noriaki TAKAMIYA0aef3662006-11-24 12:26:58 +09001392 return ipaddr_modify(RTM_NEWADDR, NLM_F_CREATE|NLM_F_EXCL, argc-1, argv+1);
1393 if (matches(*argv, "change") == 0 ||
1394 strcmp(*argv, "chg") == 0)
1395 return ipaddr_modify(RTM_NEWADDR, NLM_F_REPLACE, argc-1, argv+1);
1396 if (matches(*argv, "replace") == 0)
1397 return ipaddr_modify(RTM_NEWADDR, NLM_F_CREATE|NLM_F_REPLACE, argc-1, argv+1);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001398 if (matches(*argv, "delete") == 0)
Noriaki TAKAMIYA0aef3662006-11-24 12:26:58 +09001399 return ipaddr_modify(RTM_DELADDR, 0, argc-1, argv+1);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001400 if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
1401 || matches(*argv, "lst") == 0)
Pavel Emelyanov81824ac2012-09-11 19:47:00 +04001402 return ipaddr_list_flush_or_save(argc-1, argv+1, IPADD_LIST);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001403 if (matches(*argv, "flush") == 0)
Pavel Emelyanov81824ac2012-09-11 19:47:00 +04001404 return ipaddr_list_flush_or_save(argc-1, argv+1, IPADD_FLUSH);
1405 if (matches(*argv, "save") == 0)
1406 return ipaddr_list_flush_or_save(argc-1, argv+1, IPADD_SAVE);
1407 if (matches(*argv, "showdump") == 0)
1408 return ipaddr_showdump();
1409 if (matches(*argv, "restore") == 0)
1410 return ipaddr_restore();
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001411 if (matches(*argv, "help") == 0)
1412 usage();
Alexander Wirtb096fa52007-10-12 10:56:36 +02001413 fprintf(stderr, "Command \"%s\" is unknown, try \"ip addr help\".\n", *argv);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001414 exit(-1);
1415}
1416