blob: 69a63b3142f3d2340d2ee0bd6fb17516e0515559 [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
Daniel Silverstone7b3d3662007-10-19 13:32:24 +020037
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000038static struct
39{
40 int ifindex;
41 int family;
42 int oneline;
43 int showqueue;
44 inet_prefix pfx;
45 int scope, scopemask;
46 int flags, flagmask;
47 int up;
48 char *label;
49 int flushed;
50 char *flushb;
51 int flushp;
52 int flushe;
Vlad Dogaruf960c922011-02-02 20:23:40 +020053 int group;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000054} filter;
55
56static int do_link;
57
58static void usage(void) __attribute__((noreturn));
59
60static void usage(void)
61{
62 if (do_link) {
63 iplink_usage();
64 }
Noriaki TAKAMIYA0aef3662006-11-24 12:26:58 +090065 fprintf(stderr, "Usage: ip addr {add|change|replace} IFADDR dev STRING [ LIFETIME ]\n");
Brian Haleya1f27792009-12-03 10:39:36 +000066 fprintf(stderr, " [ CONFFLAG-LIST ]\n");
Masahide NAKAMURA35546df2006-11-24 12:26:55 +090067 fprintf(stderr, " ip addr del IFADDR dev STRING\n");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000068 fprintf(stderr, " ip addr {show|flush} [ dev STRING ] [ scope SCOPE-ID ]\n");
69 fprintf(stderr, " [ to PREFIX ] [ FLAG-LIST ] [ label PATTERN ]\n");
70 fprintf(stderr, "IFADDR := PREFIX | ADDR peer PREFIX\n");
71 fprintf(stderr, " [ broadcast ADDR ] [ anycast ADDR ]\n");
72 fprintf(stderr, " [ label STRING ] [ scope SCOPE-ID ]\n");
73 fprintf(stderr, "SCOPE-ID := [ host | link | global | NUMBER ]\n");
74 fprintf(stderr, "FLAG-LIST := [ FLAG-LIST ] FLAG\n");
75 fprintf(stderr, "FLAG := [ permanent | dynamic | secondary | primary |\n");
Brian Haleya1b9ffc2009-09-14 17:01:43 -040076 fprintf(stderr, " tentative | deprecated | dadfailed | temporary |\n");
Brian Haleya1f27792009-12-03 10:39:36 +000077 fprintf(stderr, " CONFFLAG-LIST ]\n");
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +090078 fprintf(stderr, "CONFFLAG-LIST := [ CONFFLAG-LIST ] CONFFLAG\n");
79 fprintf(stderr, "CONFFLAG := [ home | nodad ]\n");
Masahide NAKAMURA35546df2006-11-24 12:26:55 +090080 fprintf(stderr, "LIFETIME := [ valid_lft LFT ] [ preferred_lft LFT ]\n");
81 fprintf(stderr, "LFT := forever | SECONDS\n");
82
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000083 exit(-1);
84}
85
86void print_link_flags(FILE *fp, unsigned flags, unsigned mdown)
87{
88 fprintf(fp, "<");
net[shemminger]!shemminger73b49e92005-03-14 18:47:38 +000089 if (flags & IFF_UP && !(flags & IFF_RUNNING))
90 fprintf(fp, "NO-CARRIER%s", flags ? "," : "");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000091 flags &= ~IFF_RUNNING;
92#define _PF(f) if (flags&IFF_##f) { \
93 flags &= ~IFF_##f ; \
94 fprintf(fp, #f "%s", flags ? "," : ""); }
95 _PF(LOOPBACK);
96 _PF(BROADCAST);
97 _PF(POINTOPOINT);
98 _PF(MULTICAST);
99 _PF(NOARP);
100 _PF(ALLMULTI);
101 _PF(PROMISC);
102 _PF(MASTER);
103 _PF(SLAVE);
104 _PF(DEBUG);
105 _PF(DYNAMIC);
106 _PF(AUTOMEDIA);
107 _PF(PORTSEL);
108 _PF(NOTRAILERS);
109 _PF(UP);
Thomas Grafdcb283c2007-06-19 16:40:40 -0700110 _PF(LOWER_UP);
111 _PF(DORMANT);
Oliver Hartkopp98f9a1d2009-03-27 11:21:29 -0700112 _PF(ECHO);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000113#undef _PF
114 if (flags)
115 fprintf(fp, "%x", flags);
116 if (mdown)
117 fprintf(fp, ",M-DOWN");
118 fprintf(fp, "> ");
119}
120
Stephen Hemminger3d866ba2008-03-14 15:30:03 -0700121static const char *oper_states[] = {
122 "UNKNOWN", "NOTPRESENT", "DOWN", "LOWERLAYERDOWN",
123 "TESTING", "DORMANT", "UP"
124};
125
126static void print_operstate(FILE *f, __u8 state)
127{
128 if (state >= sizeof(oper_states)/sizeof(oper_states[0]))
129 fprintf(f, "state %#x ", state);
130 else
131 fprintf(f, "state %s ", oper_states[state]);
132}
133
Stephen Hemminger4f2fdd42012-04-05 15:08:57 -0700134int get_operstate(const char *name)
135{
136 int i;
137
138 for (i = 0; i < sizeof(oper_states)/sizeof(oper_states[0]); i++)
139 if (strcasecmp(name, oper_states[i]) == 0)
140 return i;
141 return -1;
142}
143
Eric Dumazetf78e3162009-10-22 18:13:21 +0000144static void print_queuelen(FILE *f, struct rtattr *tb[IFLA_MAX + 1])
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000145{
Eric Dumazetf78e3162009-10-22 18:13:21 +0000146 int qlen;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000147
Eric Dumazetf78e3162009-10-22 18:13:21 +0000148 if (tb[IFLA_TXQLEN])
149 qlen = *(int *)RTA_DATA(tb[IFLA_TXQLEN]);
150 else {
151 struct ifreq ifr;
152 int s = socket(AF_INET, SOCK_STREAM, 0);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000153
Eric Dumazetf78e3162009-10-22 18:13:21 +0000154 if (s < 0)
155 return;
156
157 memset(&ifr, 0, sizeof(ifr));
Stephen Hemmingerff247462012-04-10 08:47:55 -0700158 strcpy(ifr.ifr_name, rta_getattr_str(tb[IFLA_IFNAME]));
Eric Dumazetf78e3162009-10-22 18:13:21 +0000159 if (ioctl(s, SIOCGIFTXQLEN, &ifr) < 0) {
160 fprintf(f, "ioctl(SIOCGIFXQLEN) failed: %s\n", strerror(errno));
161 close(s);
162 return;
163 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000164 close(s);
Eric Dumazetf78e3162009-10-22 18:13:21 +0000165 qlen = ifr.ifr_qlen;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000166 }
Eric Dumazetf78e3162009-10-22 18:13:21 +0000167 if (qlen)
168 fprintf(f, "qlen %d", qlen);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000169}
170
Stephen Hemminger82499282012-03-19 17:24:43 -0700171static const char *link_modes[] = {
172 "DEFAULT", "DORMANT"
173};
174
175static void print_linkmode(FILE *f, struct rtattr *tb)
176{
177 unsigned int mode = rta_getattr_u8(tb);
178
179 if (mode >= sizeof(link_modes) / sizeof(link_modes[0]))
180 fprintf(f, "mode %d ", mode);
181 else
182 fprintf(f, "mode %s ", link_modes[mode]);
183}
184
Patrick McHardy1d934832007-08-22 10:49:01 -0700185static void print_linktype(FILE *fp, struct rtattr *tb)
186{
187 struct rtattr *linkinfo[IFLA_INFO_MAX+1];
188 struct link_util *lu;
189 char *kind;
190
191 parse_rtattr_nested(linkinfo, IFLA_INFO_MAX, tb);
192
193 if (!linkinfo[IFLA_INFO_KIND])
194 return;
195 kind = RTA_DATA(linkinfo[IFLA_INFO_KIND]);
196
197 fprintf(fp, "%s", _SL_);
198 fprintf(fp, " %s ", kind);
199
200 lu = get_link_kind(kind);
201 if (!lu || !lu->print_opt)
202 return;
203
204 if (1) {
205 struct rtattr *attr[lu->maxattr+1], **data = NULL;
206
207 if (linkinfo[IFLA_INFO_DATA]) {
208 parse_rtattr_nested(attr, lu->maxattr,
209 linkinfo[IFLA_INFO_DATA]);
210 data = attr;
211 }
212 lu->print_opt(lu, fp, data);
213
214 if (linkinfo[IFLA_INFO_XSTATS] && show_stats &&
215 lu->print_xstats)
216 lu->print_xstats(lu, fp, linkinfo[IFLA_INFO_XSTATS]);
217 }
218}
219
Chris Wright3fd86632010-05-18 00:57:00 -0700220static void print_vfinfo(FILE *fp, struct rtattr *vfinfo)
221{
222 struct ifla_vf_mac *vf_mac;
223 struct ifla_vf_vlan *vf_vlan;
224 struct ifla_vf_tx_rate *vf_tx_rate;
Greg Rose7b8179c2011-10-13 20:31:32 +0000225 struct ifla_vf_spoofchk *vf_spoofchk;
Chris Wright3fd86632010-05-18 00:57:00 -0700226 struct rtattr *vf[IFLA_VF_MAX+1];
Greg Rose7b8179c2011-10-13 20:31:32 +0000227 struct rtattr *tmp;
Chris Wright3fd86632010-05-18 00:57:00 -0700228 SPRINT_BUF(b1);
229
230 if (vfinfo->rta_type != IFLA_VF_INFO) {
231 fprintf(stderr, "BUG: rta type is %d\n", vfinfo->rta_type);
232 return;
233 }
234
235 parse_rtattr_nested(vf, IFLA_VF_MAX, vfinfo);
236
237 vf_mac = RTA_DATA(vf[IFLA_VF_MAC]);
238 vf_vlan = RTA_DATA(vf[IFLA_VF_VLAN]);
239 vf_tx_rate = RTA_DATA(vf[IFLA_VF_TX_RATE]);
240
Greg Rose7b8179c2011-10-13 20:31:32 +0000241 /* Check if the spoof checking vf info type is supported by
242 * this kernel.
243 */
244 tmp = (struct rtattr *)((char *)vf[IFLA_VF_TX_RATE] +
245 vf[IFLA_VF_TX_RATE]->rta_len);
246
247 if (tmp->rta_type != IFLA_VF_SPOOFCHK)
248 vf_spoofchk = NULL;
249 else
250 vf_spoofchk = RTA_DATA(vf[IFLA_VF_SPOOFCHK]);
251
Chris Wright3fd86632010-05-18 00:57:00 -0700252 fprintf(fp, "\n vf %d MAC %s", vf_mac->vf,
253 ll_addr_n2a((unsigned char *)&vf_mac->mac,
254 ETH_ALEN, 0, b1, sizeof(b1)));
255 if (vf_vlan->vlan)
256 fprintf(fp, ", vlan %d", vf_vlan->vlan);
257 if (vf_vlan->qos)
258 fprintf(fp, ", qos %d", vf_vlan->qos);
259 if (vf_tx_rate->rate)
260 fprintf(fp, ", tx rate %d (Mbps)", vf_tx_rate->rate);
Greg Rose7b8179c2011-10-13 20:31:32 +0000261 if (vf_spoofchk && vf_spoofchk->setting != -1) {
262 if (vf_spoofchk->setting)
263 fprintf(fp, ", spoof checking on");
264 else
265 fprintf(fp, ", spoof checking off");
266 }
Chris Wright3fd86632010-05-18 00:57:00 -0700267}
268
Stephen Hemmingere6e6fb52012-02-21 17:18:59 -0800269static void print_link_stats64(FILE *fp, const struct rtnl_link_stats64 *s) {
270 fprintf(fp, "%s", _SL_);
271 fprintf(fp, " RX: bytes packets errors dropped overrun mcast %s%s",
272 s->rx_compressed ? "compressed" : "", _SL_);
273 fprintf(fp, " %-10"PRIu64" %-8"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64"",
274 (uint64_t)s->rx_bytes,
275 (uint64_t)s->rx_packets,
276 (uint64_t)s->rx_errors,
277 (uint64_t)s->rx_dropped,
278 (uint64_t)s->rx_over_errors,
279 (uint64_t)s->multicast);
280 if (s->rx_compressed)
281 fprintf(fp, " %-7"PRIu64"",
282 (uint64_t)s->rx_compressed);
283 if (show_stats > 1) {
284 fprintf(fp, "%s", _SL_);
285 fprintf(fp, " RX errors: length crc frame fifo missed%s", _SL_);
286 fprintf(fp, " %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64"",
287 (uint64_t)s->rx_length_errors,
288 (uint64_t)s->rx_crc_errors,
289 (uint64_t)s->rx_frame_errors,
290 (uint64_t)s->rx_fifo_errors,
291 (uint64_t)s->rx_missed_errors);
292 }
293 fprintf(fp, "%s", _SL_);
294 fprintf(fp, " TX: bytes packets errors dropped carrier collsns %s%s",
295 (uint64_t)s->tx_compressed ? "compressed" : "", _SL_);
296 fprintf(fp, " %-10"PRIu64" %-8"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64"",
297 (uint64_t)s->tx_bytes,
298 (uint64_t)s->tx_packets,
299 (uint64_t)s->tx_errors,
300 (uint64_t)s->tx_dropped,
301 (uint64_t)s->tx_carrier_errors,
302 (uint64_t)s->collisions);
303 if (s->tx_compressed)
304 fprintf(fp, " %-7"PRIu64"",
305 (uint64_t)s->tx_compressed);
306 if (show_stats > 1) {
307 fprintf(fp, "%s", _SL_);
308 fprintf(fp, " TX errors: aborted fifo window heartbeat%s", _SL_);
309 fprintf(fp, " %-7"PRIu64" %-7"PRIu64" %-7"PRIu64" %-7"PRIu64"",
310 (uint64_t)s->tx_aborted_errors,
311 (uint64_t)s->tx_fifo_errors,
312 (uint64_t)s->tx_window_errors,
313 (uint64_t)s->tx_heartbeat_errors);
314 }
315}
316
317static void print_link_stats(FILE *fp, const struct rtnl_link_stats *s)
318{
319 fprintf(fp, "%s", _SL_);
320 fprintf(fp, " RX: bytes packets errors dropped overrun mcast %s%s",
321 s->rx_compressed ? "compressed" : "", _SL_);
322 fprintf(fp, " %-10u %-8u %-7u %-7u %-7u %-7u",
323 s->rx_bytes, s->rx_packets, s->rx_errors,
324 s->rx_dropped, s->rx_over_errors,
325 s->multicast
326 );
327 if (s->rx_compressed)
328 fprintf(fp, " %-7u", s->rx_compressed);
329 if (show_stats > 1) {
330 fprintf(fp, "%s", _SL_);
331 fprintf(fp, " RX errors: length crc frame fifo missed%s", _SL_);
332 fprintf(fp, " %-7u %-7u %-7u %-7u %-7u",
333 s->rx_length_errors,
334 s->rx_crc_errors,
335 s->rx_frame_errors,
336 s->rx_fifo_errors,
337 s->rx_missed_errors
338 );
339 }
340 fprintf(fp, "%s", _SL_);
341 fprintf(fp, " TX: bytes packets errors dropped carrier collsns %s%s",
342 s->tx_compressed ? "compressed" : "", _SL_);
343 fprintf(fp, " %-10u %-8u %-7u %-7u %-7u %-7u",
344 s->tx_bytes, s->tx_packets, s->tx_errors,
345 s->tx_dropped, s->tx_carrier_errors, s->collisions);
346 if (s->tx_compressed)
347 fprintf(fp, " %-7u", s->tx_compressed);
348 if (show_stats > 1) {
349 fprintf(fp, "%s", _SL_);
350 fprintf(fp, " TX errors: aborted fifo window heartbeat%s", _SL_);
351 fprintf(fp, " %-7u %-7u %-7u %-7u",
352 s->tx_aborted_errors,
353 s->tx_fifo_errors,
354 s->tx_window_errors,
355 s->tx_heartbeat_errors
356 );
357 }
358}
359
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800360int print_linkinfo(const struct sockaddr_nl *who,
osdl.net!shemminger50772dc2004-12-07 21:48:29 +0000361 struct nlmsghdr *n, void *arg)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000362{
363 FILE *fp = (FILE*)arg;
364 struct ifinfomsg *ifi = NLMSG_DATA(n);
365 struct rtattr * tb[IFLA_MAX+1];
366 int len = n->nlmsg_len;
367 unsigned m_flag = 0;
368
369 if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
370 return 0;
371
372 len -= NLMSG_LENGTH(sizeof(*ifi));
373 if (len < 0)
374 return -1;
375
376 if (filter.ifindex && ifi->ifi_index != filter.ifindex)
377 return 0;
378 if (filter.up && !(ifi->ifi_flags&IFF_UP))
379 return 0;
380
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000381 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
382 if (tb[IFLA_IFNAME] == NULL) {
jamal4cd23bd2008-08-08 10:06:17 -0400383 fprintf(stderr, "BUG: device with ifindex %d has nil ifname\n", ifi->ifi_index);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000384 }
385 if (filter.label &&
386 (!filter.family || filter.family == AF_PACKET) &&
387 fnmatch(filter.label, RTA_DATA(tb[IFLA_IFNAME]), 0))
388 return 0;
389
Vlad Dogaruf960c922011-02-02 20:23:40 +0200390 if (tb[IFLA_GROUP]) {
391 int group = *(int*)RTA_DATA(tb[IFLA_GROUP]);
392 if (group != filter.group)
393 return -1;
394 }
395
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000396 if (n->nlmsg_type == RTM_DELLINK)
397 fprintf(fp, "Deleted ");
398
399 fprintf(fp, "%d: %s", ifi->ifi_index,
Stephen Hemmingerff247462012-04-10 08:47:55 -0700400 tb[IFLA_IFNAME] ? rta_getattr_str(tb[IFLA_IFNAME]) : "<nil>");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000401
402 if (tb[IFLA_LINK]) {
403 SPRINT_BUF(b1);
404 int iflink = *(int*)RTA_DATA(tb[IFLA_LINK]);
405 if (iflink == 0)
406 fprintf(fp, "@NONE: ");
407 else {
408 fprintf(fp, "@%s: ", ll_idx_n2a(iflink, b1));
409 m_flag = ll_index_to_flags(iflink);
410 m_flag = !(m_flag & IFF_UP);
411 }
412 } else {
413 fprintf(fp, ": ");
414 }
415 print_link_flags(fp, ifi->ifi_flags, m_flag);
416
417 if (tb[IFLA_MTU])
418 fprintf(fp, "mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU]));
419 if (tb[IFLA_QDISC])
Stephen Hemmingerff247462012-04-10 08:47:55 -0700420 fprintf(fp, "qdisc %s ", rta_getattr_str(tb[IFLA_QDISC]));
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000421 if (tb[IFLA_MASTER]) {
422 SPRINT_BUF(b1);
423 fprintf(fp, "master %s ", ll_idx_n2a(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1));
424 }
Stephen Hemminger82499282012-03-19 17:24:43 -0700425
Stephen Hemminger3d866ba2008-03-14 15:30:03 -0700426 if (tb[IFLA_OPERSTATE])
Stephen Hemmingerff247462012-04-10 08:47:55 -0700427 print_operstate(fp, rta_getattr_u8(tb[IFLA_OPERSTATE]));
Stephen Hemminger82499282012-03-19 17:24:43 -0700428
429 if (do_link && tb[IFLA_LINKMODE])
430 print_linkmode(fp, tb[IFLA_LINKMODE]);
431
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000432 if (filter.showqueue)
Eric Dumazetf78e3162009-10-22 18:13:21 +0000433 print_queuelen(fp, tb);
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800434
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000435 if (!filter.family || filter.family == AF_PACKET) {
436 SPRINT_BUF(b1);
437 fprintf(fp, "%s", _SL_);
438 fprintf(fp, " link/%s ", ll_type_n2a(ifi->ifi_type, b1, sizeof(b1)));
439
440 if (tb[IFLA_ADDRESS]) {
441 fprintf(fp, "%s", ll_addr_n2a(RTA_DATA(tb[IFLA_ADDRESS]),
442 RTA_PAYLOAD(tb[IFLA_ADDRESS]),
443 ifi->ifi_type,
444 b1, sizeof(b1)));
445 }
446 if (tb[IFLA_BROADCAST]) {
447 if (ifi->ifi_flags&IFF_POINTOPOINT)
448 fprintf(fp, " peer ");
449 else
450 fprintf(fp, " brd ");
451 fprintf(fp, "%s", ll_addr_n2a(RTA_DATA(tb[IFLA_BROADCAST]),
452 RTA_PAYLOAD(tb[IFLA_BROADCAST]),
453 ifi->ifi_type,
454 b1, sizeof(b1)));
455 }
456 }
Patrick McHardy1d934832007-08-22 10:49:01 -0700457
458 if (do_link && tb[IFLA_LINKINFO] && show_details)
459 print_linktype(fp, tb[IFLA_LINKINFO]);
460
Stephen Hemmingerace9c962009-03-23 10:46:47 -0700461 if (do_link && tb[IFLA_IFALIAS])
462 fprintf(fp,"\n alias %s",
Stephen Hemmingerff247462012-04-10 08:47:55 -0700463 rta_getattr_str(tb[IFLA_IFALIAS]));
Stephen Hemmingerace9c962009-03-23 10:46:47 -0700464
Stephen Hemmingere6e6fb52012-02-21 17:18:59 -0800465 if (do_link && show_stats) {
466 if (tb[IFLA_STATS64])
467 print_link_stats64(fp, RTA_DATA(tb[IFLA_STATS64]));
468 else if (tb[IFLA_STATS])
469 print_link_stats(fp, RTA_DATA(tb[IFLA_STATS]));
Jan Engelhardt8864ac92010-03-11 10:00:34 +0000470 }
Stephen Hemmingere6e6fb52012-02-21 17:18:59 -0800471
Chris Wright3fd86632010-05-18 00:57:00 -0700472 if (do_link && tb[IFLA_VFINFO_LIST] && tb[IFLA_NUM_VF]) {
473 struct rtattr *i, *vflist = tb[IFLA_VFINFO_LIST];
474 int rem = RTA_PAYLOAD(vflist);
475 for (i = RTA_DATA(vflist); RTA_OK(i, rem); i = RTA_NEXT(i, rem))
476 print_vfinfo(fp, i);
Williams, Mitch Aae7229d2010-02-10 01:47:08 +0000477 }
Chris Wright3fd86632010-05-18 00:57:00 -0700478
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000479 fprintf(fp, "\n");
480 fflush(fp);
481 return 0;
482}
483
484static int flush_update(void)
485{
Stephen Hemmingerf31a37f2008-01-31 21:38:58 -0800486 if (rtnl_send_check(&rth, filter.flushb, filter.flushp) < 0) {
Stephen Hemminger1fb0a992008-01-26 11:08:31 -0800487 perror("Failed to send flush request");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000488 return -1;
489 }
490 filter.flushp = 0;
491 return 0;
492}
493
Masahide NAKAMURA35546df2006-11-24 12:26:55 +0900494static int set_lifetime(unsigned int *lifetime, char *argv)
495{
496 if (strcmp(argv, "forever") == 0)
Masahide NAKAMURA141bb602006-11-24 12:27:01 +0900497 *lifetime = INFINITY_LIFE_TIME;
Masahide NAKAMURA35546df2006-11-24 12:26:55 +0900498 else if (get_u32(lifetime, argv, 0))
499 return -1;
500
501 return 0;
502}
503
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800504int print_addrinfo(const struct sockaddr_nl *who, struct nlmsghdr *n,
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +0000505 void *arg)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000506{
507 FILE *fp = (FILE*)arg;
508 struct ifaddrmsg *ifa = NLMSG_DATA(n);
509 int len = n->nlmsg_len;
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800510 int deprecated = 0;
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700511 /* Use local copy of ifa_flags to not interfere with filtering code */
512 unsigned int ifa_flags;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000513 struct rtattr * rta_tb[IFA_MAX+1];
514 char abuf[256];
515 SPRINT_BUF(b1);
516
517 if (n->nlmsg_type != RTM_NEWADDR && n->nlmsg_type != RTM_DELADDR)
518 return 0;
519 len -= NLMSG_LENGTH(sizeof(*ifa));
520 if (len < 0) {
521 fprintf(stderr, "BUG: wrong nlmsg len %d\n", len);
522 return -1;
523 }
524
525 if (filter.flushb && n->nlmsg_type != RTM_NEWADDR)
526 return 0;
527
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000528 parse_rtattr(rta_tb, IFA_MAX, IFA_RTA(ifa), n->nlmsg_len - NLMSG_LENGTH(sizeof(*ifa)));
529
530 if (!rta_tb[IFA_LOCAL])
531 rta_tb[IFA_LOCAL] = rta_tb[IFA_ADDRESS];
532 if (!rta_tb[IFA_ADDRESS])
533 rta_tb[IFA_ADDRESS] = rta_tb[IFA_LOCAL];
534
535 if (filter.ifindex && filter.ifindex != ifa->ifa_index)
536 return 0;
537 if ((filter.scope^ifa->ifa_scope)&filter.scopemask)
538 return 0;
539 if ((filter.flags^ifa->ifa_flags)&filter.flagmask)
540 return 0;
541 if (filter.label) {
542 SPRINT_BUF(b1);
543 const char *label;
544 if (rta_tb[IFA_LABEL])
545 label = RTA_DATA(rta_tb[IFA_LABEL]);
546 else
547 label = ll_idx_n2a(ifa->ifa_index, b1);
548 if (fnmatch(filter.label, label, 0) != 0)
549 return 0;
550 }
551 if (filter.pfx.family) {
552 if (rta_tb[IFA_LOCAL]) {
553 inet_prefix dst;
554 memset(&dst, 0, sizeof(dst));
555 dst.family = ifa->ifa_family;
556 memcpy(&dst.data, RTA_DATA(rta_tb[IFA_LOCAL]), RTA_PAYLOAD(rta_tb[IFA_LOCAL]));
557 if (inet_addr_match(&dst, &filter.pfx, filter.pfx.bitlen))
558 return 0;
559 }
560 }
561
net[shemminger]!shemminger3eb17312005-02-07 18:28:31 +0000562 if (filter.family && filter.family != ifa->ifa_family)
563 return 0;
564
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000565 if (filter.flushb) {
566 struct nlmsghdr *fn;
567 if (NLMSG_ALIGN(filter.flushp) + n->nlmsg_len > filter.flushe) {
568 if (flush_update())
569 return -1;
570 }
571 fn = (struct nlmsghdr*)(filter.flushb + NLMSG_ALIGN(filter.flushp));
572 memcpy(fn, n, n->nlmsg_len);
573 fn->nlmsg_type = RTM_DELADDR;
574 fn->nlmsg_flags = NLM_F_REQUEST;
shemminger351efcd2005-09-01 19:21:50 +0000575 fn->nlmsg_seq = ++rth.seq;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000576 filter.flushp = (((char*)fn) + n->nlmsg_len) - filter.flushb;
577 filter.flushed++;
578 if (show_stats < 2)
579 return 0;
580 }
581
582 if (n->nlmsg_type == RTM_DELADDR)
583 fprintf(fp, "Deleted ");
584
585 if (filter.oneline || filter.flushb)
586 fprintf(fp, "%u: %s", ifa->ifa_index, ll_index_to_name(ifa->ifa_index));
587 if (ifa->ifa_family == AF_INET)
588 fprintf(fp, " inet ");
589 else if (ifa->ifa_family == AF_INET6)
590 fprintf(fp, " inet6 ");
591 else if (ifa->ifa_family == AF_DECnet)
592 fprintf(fp, " dnet ");
593 else if (ifa->ifa_family == AF_IPX)
594 fprintf(fp, " ipx ");
595 else
596 fprintf(fp, " family %d ", ifa->ifa_family);
597
598 if (rta_tb[IFA_LOCAL]) {
599 fprintf(fp, "%s", rt_addr_n2a(ifa->ifa_family,
600 RTA_PAYLOAD(rta_tb[IFA_LOCAL]),
601 RTA_DATA(rta_tb[IFA_LOCAL]),
602 abuf, sizeof(abuf)));
603
604 if (rta_tb[IFA_ADDRESS] == NULL ||
605 memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0) {
606 fprintf(fp, "/%d ", ifa->ifa_prefixlen);
607 } else {
608 fprintf(fp, " peer %s/%d ",
609 rt_addr_n2a(ifa->ifa_family,
610 RTA_PAYLOAD(rta_tb[IFA_ADDRESS]),
611 RTA_DATA(rta_tb[IFA_ADDRESS]),
612 abuf, sizeof(abuf)),
613 ifa->ifa_prefixlen);
614 }
615 }
616
617 if (rta_tb[IFA_BROADCAST]) {
618 fprintf(fp, "brd %s ",
619 rt_addr_n2a(ifa->ifa_family,
620 RTA_PAYLOAD(rta_tb[IFA_BROADCAST]),
621 RTA_DATA(rta_tb[IFA_BROADCAST]),
622 abuf, sizeof(abuf)));
623 }
624 if (rta_tb[IFA_ANYCAST]) {
625 fprintf(fp, "any %s ",
626 rt_addr_n2a(ifa->ifa_family,
627 RTA_PAYLOAD(rta_tb[IFA_ANYCAST]),
628 RTA_DATA(rta_tb[IFA_ANYCAST]),
629 abuf, sizeof(abuf)));
630 }
631 fprintf(fp, "scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope, b1, sizeof(b1)));
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700632 ifa_flags = ifa->ifa_flags;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000633 if (ifa->ifa_flags&IFA_F_SECONDARY) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700634 ifa_flags &= ~IFA_F_SECONDARY;
Brian Haleya1b9ffc2009-09-14 17:01:43 -0400635 if (ifa->ifa_family == AF_INET6)
636 fprintf(fp, "temporary ");
637 else
638 fprintf(fp, "secondary ");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000639 }
640 if (ifa->ifa_flags&IFA_F_TENTATIVE) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700641 ifa_flags &= ~IFA_F_TENTATIVE;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000642 fprintf(fp, "tentative ");
643 }
644 if (ifa->ifa_flags&IFA_F_DEPRECATED) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700645 ifa_flags &= ~IFA_F_DEPRECATED;
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800646 deprecated = 1;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000647 fprintf(fp, "deprecated ");
648 }
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +0900649 if (ifa->ifa_flags&IFA_F_HOMEADDRESS) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700650 ifa_flags &= ~IFA_F_HOMEADDRESS;
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +0900651 fprintf(fp, "home ");
652 }
653 if (ifa->ifa_flags&IFA_F_NODAD) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700654 ifa_flags &= ~IFA_F_NODAD;
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +0900655 fprintf(fp, "nodad ");
656 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000657 if (!(ifa->ifa_flags&IFA_F_PERMANENT)) {
658 fprintf(fp, "dynamic ");
659 } else
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700660 ifa_flags &= ~IFA_F_PERMANENT;
Brian Haleyf4af8512009-12-01 15:58:44 -0800661 if (ifa->ifa_flags&IFA_F_DADFAILED) {
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700662 ifa_flags &= ~IFA_F_DADFAILED;
Brian Haleyf4af8512009-12-01 15:58:44 -0800663 fprintf(fp, "dadfailed ");
664 }
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700665 if (ifa_flags)
666 fprintf(fp, "flags %02x ", ifa_flags);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000667 if (rta_tb[IFA_LABEL])
Stephen Hemmingerff247462012-04-10 08:47:55 -0700668 fprintf(fp, "%s", rta_getattr_str(rta_tb[IFA_LABEL]));
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000669 if (rta_tb[IFA_CACHEINFO]) {
670 struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000671 fprintf(fp, "%s", _SL_);
Andreas Schwabf66efad2010-11-05 23:26:29 +0000672 fprintf(fp, " valid_lft ");
Masahide NAKAMURA141bb602006-11-24 12:27:01 +0900673 if (ci->ifa_valid == INFINITY_LIFE_TIME)
Andreas Schwabf66efad2010-11-05 23:26:29 +0000674 fprintf(fp, "forever");
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000675 else
Andreas Schwabf66efad2010-11-05 23:26:29 +0000676 fprintf(fp, "%usec", ci->ifa_valid);
677 fprintf(fp, " preferred_lft ");
Masahide NAKAMURA141bb602006-11-24 12:27:01 +0900678 if (ci->ifa_prefered == INFINITY_LIFE_TIME)
Andreas Schwabf66efad2010-11-05 23:26:29 +0000679 fprintf(fp, "forever");
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800680 else {
681 if (deprecated)
Andreas Schwabf66efad2010-11-05 23:26:29 +0000682 fprintf(fp, "%dsec", ci->ifa_prefered);
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800683 else
Andreas Schwabf66efad2010-11-05 23:26:29 +0000684 fprintf(fp, "%usec", ci->ifa_prefered);
Benedikt Gollatz037d9502009-01-06 19:36:56 -0800685 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000686 }
687 fprintf(fp, "\n");
688 fflush(fp);
689 return 0;
690}
691
Simon Hormanb49240e2009-12-03 12:08:27 +1100692int print_addrinfo_primary(const struct sockaddr_nl *who, struct nlmsghdr *n,
693 void *arg)
694{
695 struct ifaddrmsg *ifa = NLMSG_DATA(n);
696
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700697 if (ifa->ifa_flags & IFA_F_SECONDARY)
Simon Hormanb49240e2009-12-03 12:08:27 +1100698 return 0;
699
700 return print_addrinfo(who, n, arg);
701}
702
703int print_addrinfo_secondary(const struct sockaddr_nl *who, struct nlmsghdr *n,
704 void *arg)
705{
706 struct ifaddrmsg *ifa = NLMSG_DATA(n);
707
Ben Greear3bc1c4f2010-08-16 10:00:08 -0700708 if (!(ifa->ifa_flags & IFA_F_SECONDARY))
Simon Hormanb49240e2009-12-03 12:08:27 +1100709 return 0;
710
711 return print_addrinfo(who, n, arg);
712}
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000713
714struct nlmsg_list
715{
716 struct nlmsg_list *next;
717 struct nlmsghdr h;
718};
719
Eric Dumazet62e2e542012-06-09 13:55:55 +0200720struct nlmsg_chain
721{
722 struct nlmsg_list *head;
723 struct nlmsg_list *tail;
724};
725
Stephen Hemminger3d866ba2008-03-14 15:30:03 -0700726static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo, FILE *fp)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000727{
728 for ( ;ainfo ; ainfo = ainfo->next) {
729 struct nlmsghdr *n = &ainfo->h;
730 struct ifaddrmsg *ifa = NLMSG_DATA(n);
731
732 if (n->nlmsg_type != RTM_NEWADDR)
733 continue;
734
735 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
736 return -1;
737
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800738 if (ifa->ifa_index != ifindex ||
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000739 (filter.family && filter.family != ifa->ifa_family))
740 continue;
741
742 print_addrinfo(NULL, n, fp);
743 }
744 return 0;
745}
746
747
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800748static int store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n,
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +0000749 void *arg)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000750{
Eric Dumazet62e2e542012-06-09 13:55:55 +0200751 struct nlmsg_chain *lchain = (struct nlmsg_chain *)arg;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000752 struct nlmsg_list *h;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000753
754 h = malloc(n->nlmsg_len+sizeof(void*));
755 if (h == NULL)
756 return -1;
757
758 memcpy(&h->h, n, n->nlmsg_len);
759 h->next = NULL;
760
Eric Dumazet62e2e542012-06-09 13:55:55 +0200761 if (lchain->tail)
762 lchain->tail->next = h;
763 else
764 lchain->head = h;
765 lchain->tail = h;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000766
767 ll_remember_index(who, n, NULL);
768 return 0;
769}
770
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -0700771static void free_nlmsg_chain(struct nlmsg_chain *info)
772{
773 struct nlmsg_list *l, *n;
774
775 for (l = info->head; l; l = n) {
776 n = l->next;
777 free(l);
778 }
779}
780
781static void ipaddr_filter(struct nlmsg_chain *linfo, struct nlmsg_chain *ainfo)
782{
783 struct nlmsg_list *l, **lp;
784
785 lp = &linfo->head;
786 while ( (l = *lp) != NULL) {
787 int ok = 0;
788 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
789 struct nlmsg_list *a;
790
791 for (a = ainfo->head; a; a = a->next) {
792 struct nlmsghdr *n = &a->h;
793 struct ifaddrmsg *ifa = NLMSG_DATA(n);
794
795 if (ifa->ifa_index != ifi->ifi_index ||
796 (filter.family && filter.family != ifa->ifa_family))
797 continue;
798 if ((filter.scope^ifa->ifa_scope)&filter.scopemask)
799 continue;
800 if ((filter.flags^ifa->ifa_flags)&filter.flagmask)
801 continue;
802 if (filter.pfx.family || filter.label) {
803 struct rtattr *tb[IFA_MAX+1];
804 parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
805 if (!tb[IFA_LOCAL])
806 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
807
808 if (filter.pfx.family && tb[IFA_LOCAL]) {
809 inet_prefix dst;
810 memset(&dst, 0, sizeof(dst));
811 dst.family = ifa->ifa_family;
812 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
813 if (inet_addr_match(&dst, &filter.pfx, filter.pfx.bitlen))
814 continue;
815 }
816 if (filter.label) {
817 SPRINT_BUF(b1);
818 const char *label;
819 if (tb[IFA_LABEL])
820 label = RTA_DATA(tb[IFA_LABEL]);
821 else
822 label = ll_idx_n2a(ifa->ifa_index, b1);
823 if (fnmatch(filter.label, label, 0) != 0)
824 continue;
825 }
826 }
827
828 ok = 1;
829 break;
830 }
831 if (!ok) {
832 *lp = l->next;
833 free(l);
834 } else
835 lp = &l->next;
836 }
837}
838
839static int ipaddr_flush(void)
840{
841 int round = 0;
842 char flushb[4096-512];
843
844 filter.flushb = flushb;
845 filter.flushp = 0;
846 filter.flushe = sizeof(flushb);
847
848 while ((max_flush_loops == 0) || (round < max_flush_loops)) {
849 const struct rtnl_dump_filter_arg a[3] = {
850 {
851 .filter = print_addrinfo_secondary,
852 .arg1 = stdout,
853 },
854 {
855 .filter = print_addrinfo_primary,
856 .arg1 = stdout,
857 },
858 {
859 .filter = NULL,
860 .arg1 = NULL,
861 },
862 };
863 if (rtnl_wilddump_request(&rth, filter.family, RTM_GETADDR) < 0) {
864 perror("Cannot send dump request");
865 exit(1);
866 }
867 filter.flushed = 0;
868 if (rtnl_dump_filter_l(&rth, a) < 0) {
869 fprintf(stderr, "Flush terminated\n");
870 exit(1);
871 }
872 if (filter.flushed == 0) {
873 flush_done:
874 if (show_stats) {
875 if (round == 0)
876 printf("Nothing to flush.\n");
877 else
878 printf("*** Flush is complete after %d round%s ***\n", round, round>1?"s":"");
879 }
880 fflush(stdout);
881 return 0;
882 }
883 round++;
884 if (flush_update() < 0)
885 return 1;
886
887 if (show_stats) {
888 printf("\n*** Round %d, deleting %d addresses ***\n", round, filter.flushed);
889 fflush(stdout);
890 }
891
892 /* If we are flushing, and specifying primary, then we
893 * want to flush only a single round. Otherwise, we'll
894 * start flushing secondaries that were promoted to
895 * primaries.
896 */
897 if (!(filter.flags & IFA_F_SECONDARY) && (filter.flagmask & IFA_F_SECONDARY))
898 goto flush_done;
899 }
900 fprintf(stderr, "*** Flush remains incomplete after %d rounds. ***\n", max_flush_loops);
901 fflush(stderr);
902 return 1;
903}
904
Stephen Hemminger3d866ba2008-03-14 15:30:03 -0700905static int ipaddr_list_or_flush(int argc, char **argv, int flush)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000906{
Eric Dumazet62e2e542012-06-09 13:55:55 +0200907 struct nlmsg_chain linfo = { NULL, NULL};
908 struct nlmsg_chain ainfo = { NULL, NULL};
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -0700909 struct nlmsg_list *l;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000910 char *filter_dev = NULL;
911 int no_link = 0;
912
913 ipaddr_reset_filter(oneline);
914 filter.showqueue = 1;
915
916 if (filter.family == AF_UNSPEC)
917 filter.family = preferred_family;
918
Stephen Hemminger242b8da2011-04-12 14:40:14 -0700919 filter.group = INIT_NETDEV_GROUP;
Vlad Dogaruf960c922011-02-02 20:23:40 +0200920
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000921 if (flush) {
922 if (argc <= 0) {
923 fprintf(stderr, "Flush requires arguments.\n");
Vlad Dogaruf960c922011-02-02 20:23:40 +0200924
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000925 return -1;
926 }
927 if (filter.family == AF_PACKET) {
928 fprintf(stderr, "Cannot flush link addresses.\n");
929 return -1;
930 }
931 }
932
933 while (argc > 0) {
934 if (strcmp(*argv, "to") == 0) {
935 NEXT_ARG();
936 get_prefix(&filter.pfx, *argv, filter.family);
937 if (filter.family == AF_UNSPEC)
938 filter.family = filter.pfx.family;
939 } else if (strcmp(*argv, "scope") == 0) {
shemmingerf332d162005-07-05 22:37:15 +0000940 unsigned scope = 0;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000941 NEXT_ARG();
942 filter.scopemask = -1;
943 if (rtnl_rtscope_a2n(&scope, *argv)) {
944 if (strcmp(*argv, "all") != 0)
945 invarg("invalid \"scope\"\n", *argv);
946 scope = RT_SCOPE_NOWHERE;
947 filter.scopemask = 0;
948 }
949 filter.scope = scope;
950 } else if (strcmp(*argv, "up") == 0) {
951 filter.up = 1;
952 } else if (strcmp(*argv, "dynamic") == 0) {
953 filter.flags &= ~IFA_F_PERMANENT;
954 filter.flagmask |= IFA_F_PERMANENT;
955 } else if (strcmp(*argv, "permanent") == 0) {
956 filter.flags |= IFA_F_PERMANENT;
957 filter.flagmask |= IFA_F_PERMANENT;
Brian Haleya1b9ffc2009-09-14 17:01:43 -0400958 } else if (strcmp(*argv, "secondary") == 0 ||
959 strcmp(*argv, "temporary") == 0) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000960 filter.flags |= IFA_F_SECONDARY;
961 filter.flagmask |= IFA_F_SECONDARY;
962 } else if (strcmp(*argv, "primary") == 0) {
963 filter.flags &= ~IFA_F_SECONDARY;
964 filter.flagmask |= IFA_F_SECONDARY;
965 } else if (strcmp(*argv, "tentative") == 0) {
966 filter.flags |= IFA_F_TENTATIVE;
967 filter.flagmask |= IFA_F_TENTATIVE;
968 } else if (strcmp(*argv, "deprecated") == 0) {
969 filter.flags |= IFA_F_DEPRECATED;
970 filter.flagmask |= IFA_F_DEPRECATED;
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +0900971 } else if (strcmp(*argv, "home") == 0) {
972 filter.flags |= IFA_F_HOMEADDRESS;
973 filter.flagmask |= IFA_F_HOMEADDRESS;
974 } else if (strcmp(*argv, "nodad") == 0) {
975 filter.flags |= IFA_F_NODAD;
976 filter.flagmask |= IFA_F_NODAD;
Brian Haleya1f27792009-12-03 10:39:36 +0000977 } else if (strcmp(*argv, "dadfailed") == 0) {
978 filter.flags |= IFA_F_DADFAILED;
979 filter.flagmask |= IFA_F_DADFAILED;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000980 } else if (strcmp(*argv, "label") == 0) {
981 NEXT_ARG();
982 filter.label = *argv;
Vlad Dogaruf960c922011-02-02 20:23:40 +0200983 } else if (strcmp(*argv, "group") == 0) {
984 NEXT_ARG();
985 if (rtnl_group_a2n(&filter.group, *argv))
986 invarg("Invalid \"group\" value\n", *argv);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000987 } else {
988 if (strcmp(*argv, "dev") == 0) {
989 NEXT_ARG();
990 }
991 if (matches(*argv, "help") == 0)
992 usage();
993 if (filter_dev)
994 duparg2("dev", *argv);
995 filter_dev = *argv;
996 }
997 argv++; argc--;
998 }
999
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001000 if (filter_dev) {
1001 filter.ifindex = ll_name_to_index(filter_dev);
1002 if (filter.ifindex <= 0) {
1003 fprintf(stderr, "Device \"%s\" does not exist.\n", filter_dev);
1004 return -1;
1005 }
1006 }
1007
1008 if (flush)
1009 return ipaddr_flush();
1010
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001011 if (rtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK) < 0) {
1012 perror("Cannot send dump request");
1013 exit(1);
1014 }
1015
Stephen Hemmingercd70f3f2011-12-28 10:37:12 -08001016 if (rtnl_dump_filter(&rth, store_nlmsg, &linfo) < 0) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001017 fprintf(stderr, "Dump terminated\n");
1018 exit(1);
1019 }
1020
Mike Frysingeraf9d4062012-08-13 08:09:52 -07001021 if (filter.family != AF_PACKET) {
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001022 if (filter.oneline)
1023 no_link = 1;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001024
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001025 if (rtnl_wilddump_request(&rth, filter.family, RTM_GETADDR) < 0) {
1026 perror("Cannot send dump request");
1027 exit(1);
1028 }
1029
Stephen Hemmingercd70f3f2011-12-28 10:37:12 -08001030 if (rtnl_dump_filter(&rth, store_nlmsg, &ainfo) < 0) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001031 fprintf(stderr, "Dump terminated\n");
1032 exit(1);
1033 }
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001034
1035 ipaddr_filter(&linfo, &ainfo);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001036 }
1037
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001038 for (l = linfo.head; l; l = l->next) {
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001039 if (no_link || print_linkinfo(NULL, &l->h, stdout) == 0) {
1040 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
1041 if (filter.family != AF_PACKET)
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001042 print_selected_addrinfo(ifi->ifi_index,
1043 ainfo.head, stdout);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001044 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001045 }
Stephen Hemminger8d07e5f2012-07-13 13:36:07 -07001046 fflush(stdout);
1047
1048 free_nlmsg_chain(&ainfo);
1049 free_nlmsg_chain(&linfo);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001050
shemminger351efcd2005-09-01 19:21:50 +00001051 return 0;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001052}
1053
1054int ipaddr_list_link(int argc, char **argv)
1055{
1056 preferred_family = AF_PACKET;
1057 do_link = 1;
1058 return ipaddr_list_or_flush(argc, argv, 0);
1059}
1060
1061void ipaddr_reset_filter(int oneline)
1062{
1063 memset(&filter, 0, sizeof(filter));
1064 filter.oneline = oneline;
1065}
1066
Stephen Hemminger3d866ba2008-03-14 15:30:03 -07001067static int default_scope(inet_prefix *lcl)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001068{
1069 if (lcl->family == AF_INET) {
1070 if (lcl->bytelen >= 1 && *(__u8*)&lcl->data == 127)
1071 return RT_SCOPE_HOST;
1072 }
1073 return 0;
1074}
1075
Stephen Hemminger3d866ba2008-03-14 15:30:03 -07001076static int ipaddr_modify(int cmd, int flags, int argc, char **argv)
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001077{
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001078 struct {
1079 struct nlmsghdr n;
1080 struct ifaddrmsg ifa;
1081 char buf[256];
1082 } req;
1083 char *d = NULL;
1084 char *l = NULL;
net[shemminger]!shemmingerf082b642005-03-30 18:16:10 +00001085 char *lcl_arg = NULL;
Masahide NAKAMURA35546df2006-11-24 12:26:55 +09001086 char *valid_lftp = NULL;
1087 char *preferred_lftp = NULL;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001088 inet_prefix lcl;
1089 inet_prefix peer;
1090 int local_len = 0;
1091 int peer_len = 0;
1092 int brd_len = 0;
1093 int any_len = 0;
1094 int scoped = 0;
Masahide NAKAMURA141bb602006-11-24 12:27:01 +09001095 __u32 preferred_lft = INFINITY_LIFE_TIME;
1096 __u32 valid_lft = INFINITY_LIFE_TIME;
Masahide NAKAMURA35546df2006-11-24 12:26:55 +09001097 struct ifa_cacheinfo cinfo;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001098
1099 memset(&req, 0, sizeof(req));
1100
1101 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
Noriaki TAKAMIYA0aef3662006-11-24 12:26:58 +09001102 req.n.nlmsg_flags = NLM_F_REQUEST | flags;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001103 req.n.nlmsg_type = cmd;
1104 req.ifa.ifa_family = preferred_family;
1105
1106 while (argc > 0) {
1107 if (strcmp(*argv, "peer") == 0 ||
1108 strcmp(*argv, "remote") == 0) {
1109 NEXT_ARG();
1110
1111 if (peer_len)
1112 duparg("peer", *argv);
1113 get_prefix(&peer, *argv, req.ifa.ifa_family);
1114 peer_len = peer.bytelen;
1115 if (req.ifa.ifa_family == AF_UNSPEC)
1116 req.ifa.ifa_family = peer.family;
1117 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
1118 req.ifa.ifa_prefixlen = peer.bitlen;
1119 } else if (matches(*argv, "broadcast") == 0 ||
1120 strcmp(*argv, "brd") == 0) {
1121 inet_prefix addr;
1122 NEXT_ARG();
1123 if (brd_len)
1124 duparg("broadcast", *argv);
1125 if (strcmp(*argv, "+") == 0)
1126 brd_len = -1;
1127 else if (strcmp(*argv, "-") == 0)
1128 brd_len = -2;
1129 else {
1130 get_addr(&addr, *argv, req.ifa.ifa_family);
1131 if (req.ifa.ifa_family == AF_UNSPEC)
1132 req.ifa.ifa_family = addr.family;
1133 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
1134 brd_len = addr.bytelen;
1135 }
1136 } else if (strcmp(*argv, "anycast") == 0) {
1137 inet_prefix addr;
1138 NEXT_ARG();
1139 if (any_len)
1140 duparg("anycast", *argv);
1141 get_addr(&addr, *argv, req.ifa.ifa_family);
1142 if (req.ifa.ifa_family == AF_UNSPEC)
1143 req.ifa.ifa_family = addr.family;
1144 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
1145 any_len = addr.bytelen;
1146 } else if (strcmp(*argv, "scope") == 0) {
shemmingerf332d162005-07-05 22:37:15 +00001147 unsigned scope = 0;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001148 NEXT_ARG();
1149 if (rtnl_rtscope_a2n(&scope, *argv))
1150 invarg(*argv, "invalid scope value.");
1151 req.ifa.ifa_scope = scope;
1152 scoped = 1;
1153 } else if (strcmp(*argv, "dev") == 0) {
1154 NEXT_ARG();
1155 d = *argv;
1156 } else if (strcmp(*argv, "label") == 0) {
1157 NEXT_ARG();
1158 l = *argv;
1159 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l)+1);
Masahide NAKAMURA35546df2006-11-24 12:26:55 +09001160 } else if (matches(*argv, "valid_lft") == 0) {
1161 if (valid_lftp)
1162 duparg("valid_lft", *argv);
1163 NEXT_ARG();
1164 valid_lftp = *argv;
1165 if (set_lifetime(&valid_lft, *argv))
1166 invarg("valid_lft value", *argv);
1167 } else if (matches(*argv, "preferred_lft") == 0) {
1168 if (preferred_lftp)
1169 duparg("preferred_lft", *argv);
1170 NEXT_ARG();
1171 preferred_lftp = *argv;
1172 if (set_lifetime(&preferred_lft, *argv))
1173 invarg("preferred_lft value", *argv);
Noriaki TAKAMIYAbac735c2007-03-08 03:15:43 +09001174 } else if (strcmp(*argv, "home") == 0) {
1175 req.ifa.ifa_flags |= IFA_F_HOMEADDRESS;
1176 } else if (strcmp(*argv, "nodad") == 0) {
1177 req.ifa.ifa_flags |= IFA_F_NODAD;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001178 } else {
1179 if (strcmp(*argv, "local") == 0) {
1180 NEXT_ARG();
1181 }
1182 if (matches(*argv, "help") == 0)
1183 usage();
1184 if (local_len)
1185 duparg2("local", *argv);
net[shemminger]!shemmingerf082b642005-03-30 18:16:10 +00001186 lcl_arg = *argv;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001187 get_prefix(&lcl, *argv, req.ifa.ifa_family);
1188 if (req.ifa.ifa_family == AF_UNSPEC)
1189 req.ifa.ifa_family = lcl.family;
1190 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
1191 local_len = lcl.bytelen;
1192 }
1193 argc--; argv++;
1194 }
1195 if (d == NULL) {
1196 fprintf(stderr, "Not enough information: \"dev\" argument is required.\n");
1197 return -1;
1198 }
1199 if (l && matches(d, l) != 0) {
1200 fprintf(stderr, "\"dev\" (%s) must match \"label\" (%s).\n", d, l);
Michele Petrazzo - Unipex1db61e02010-03-06 08:56:53 +00001201 return -1;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001202 }
1203
net[shemminger]!shemmingerf082b642005-03-30 18:16:10 +00001204 if (peer_len == 0 && local_len) {
1205 if (cmd == RTM_DELADDR && lcl.family == AF_INET && !(lcl.flags & PREFIXLEN_SPECIFIED)) {
1206 fprintf(stderr,
1207 "Warning: Executing wildcard deletion to stay compatible with old scripts.\n" \
1208 " Explicitly specify the prefix length (%s/%d) to avoid this warning.\n" \
1209 " This special behaviour is likely to disappear in further releases,\n" \
1210 " fix your scripts!\n", lcl_arg, local_len*8);
1211 } else {
1212 peer = lcl;
1213 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
1214 }
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001215 }
1216 if (req.ifa.ifa_prefixlen == 0)
1217 req.ifa.ifa_prefixlen = lcl.bitlen;
1218
1219 if (brd_len < 0 && cmd != RTM_DELADDR) {
1220 inet_prefix brd;
1221 int i;
1222 if (req.ifa.ifa_family != AF_INET) {
1223 fprintf(stderr, "Broadcast can be set only for IPv4 addresses\n");
1224 return -1;
1225 }
1226 brd = peer;
1227 if (brd.bitlen <= 30) {
1228 for (i=31; i>=brd.bitlen; i--) {
1229 if (brd_len == -1)
1230 brd.data[0] |= htonl(1<<(31-i));
1231 else
1232 brd.data[0] &= ~htonl(1<<(31-i));
1233 }
1234 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
1235 brd_len = brd.bytelen;
1236 }
1237 }
1238 if (!scoped && cmd != RTM_DELADDR)
1239 req.ifa.ifa_scope = default_scope(&lcl);
1240
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001241 ll_init_map(&rth);
1242
1243 if ((req.ifa.ifa_index = ll_name_to_index(d)) == 0) {
1244 fprintf(stderr, "Cannot find device \"%s\"\n", d);
1245 return -1;
1246 }
1247
Masahide NAKAMURA35546df2006-11-24 12:26:55 +09001248 if (valid_lftp || preferred_lftp) {
1249 if (!valid_lft) {
1250 fprintf(stderr, "valid_lft is zero\n");
1251 return -1;
1252 }
1253 if (valid_lft < preferred_lft) {
1254 fprintf(stderr, "preferred_lft is greater than valid_lft\n");
1255 return -1;
1256 }
1257
1258 memset(&cinfo, 0, sizeof(cinfo));
1259 cinfo.ifa_prefered = preferred_lft;
1260 cinfo.ifa_valid = valid_lft;
1261 addattr_l(&req.n, sizeof(req), IFA_CACHEINFO, &cinfo,
1262 sizeof(cinfo));
1263 }
1264
Stephen Hemmingercd70f3f2011-12-28 10:37:12 -08001265 if (rtnl_talk(&rth, &req.n, 0, 0, NULL) < 0)
Michele Petrazzo - Unipex1db61e02010-03-06 08:56:53 +00001266 return -2;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001267
shemminger351efcd2005-09-01 19:21:50 +00001268 return 0;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001269}
1270
1271int do_ipaddr(int argc, char **argv)
1272{
1273 if (argc < 1)
1274 return ipaddr_list_or_flush(0, NULL, 0);
1275 if (matches(*argv, "add") == 0)
Noriaki TAKAMIYA0aef3662006-11-24 12:26:58 +09001276 return ipaddr_modify(RTM_NEWADDR, NLM_F_CREATE|NLM_F_EXCL, argc-1, argv+1);
1277 if (matches(*argv, "change") == 0 ||
1278 strcmp(*argv, "chg") == 0)
1279 return ipaddr_modify(RTM_NEWADDR, NLM_F_REPLACE, argc-1, argv+1);
1280 if (matches(*argv, "replace") == 0)
1281 return ipaddr_modify(RTM_NEWADDR, NLM_F_CREATE|NLM_F_REPLACE, argc-1, argv+1);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001282 if (matches(*argv, "delete") == 0)
Noriaki TAKAMIYA0aef3662006-11-24 12:26:58 +09001283 return ipaddr_modify(RTM_DELADDR, 0, argc-1, argv+1);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001284 if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
1285 || matches(*argv, "lst") == 0)
1286 return ipaddr_list_or_flush(argc-1, argv+1, 0);
1287 if (matches(*argv, "flush") == 0)
1288 return ipaddr_list_or_flush(argc-1, argv+1, 1);
1289 if (matches(*argv, "help") == 0)
1290 usage();
Alexander Wirtb096fa52007-10-12 10:56:36 +02001291 fprintf(stderr, "Command \"%s\" is unknown, try \"ip addr help\".\n", *argv);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001292 exit(-1);
1293}
1294