blob: 5c975d8c5198eb2669c1eaebf510d7a10565f48b [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00002/*
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00004 *
Denys Vlasenkofb132e42010-10-29 11:46:52 +02005 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00006 *
7 * Changes:
Denys Vlasenkofb132e42010-10-29 11:46:52 +02008 * Laszlo Valko <valko@linux.karinthy.hu> 990223: address label must be zero terminated
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00009 */
10
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000011#include <fnmatch.h>
Eric Andersen8004bb72003-01-14 08:06:07 +000012#include <net/if.h>
13#include <net/if_arp.h>
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000014
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000015#include "ip_common.h" /* #include "libbb.h" is inside */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000016#include "rt_names.h"
17#include "utils.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000018
Denis Vlasenko9b6f4aa2008-06-05 14:01:04 +000019#ifndef IFF_LOWER_UP
20/* from linux/if.h */
Denys Vlasenkofb132e42010-10-29 11:46:52 +020021#define IFF_LOWER_UP 0x10000 /* driver signals L1 up */
Denis Vlasenko9b6f4aa2008-06-05 14:01:04 +000022#endif
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000023
Denys Vlasenko36659fd2010-02-05 14:40:23 +010024struct filter_t {
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000025 char *label;
26 char *flushb;
27 struct rtnl_handle *rth;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000028 int scope, scopemask;
29 int flags, flagmask;
Glenn L McGrathd66370c2003-01-13 21:40:38 +000030 int flushp;
31 int flushe;
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000032 int ifindex;
33 family_t family;
34 smallint showqueue;
35 smallint oneline;
36 smallint up;
37 smallint flushed;
38 inet_prefix pfx;
Denys Vlasenko36659fd2010-02-05 14:40:23 +010039} FIX_ALIASING;
40typedef struct filter_t filter_t;
Denis Vlasenko540a2a12007-04-07 01:14:45 +000041
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +010042#define G_filter (*(filter_t*)&bb_common_bufsiz1)
Denis Vlasenko540a2a12007-04-07 01:14:45 +000043
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000044
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000045static void print_link_flags(unsigned flags, unsigned mdown)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000046{
Denis Vlasenko53354ac2008-06-07 15:10:29 +000047 static const int flag_masks[] = {
48 IFF_LOOPBACK, IFF_BROADCAST, IFF_POINTOPOINT,
49 IFF_MULTICAST, IFF_NOARP, IFF_UP, IFF_LOWER_UP };
50 static const char flag_labels[] ALIGN1 =
51 "LOOPBACK\0""BROADCAST\0""POINTOPOINT\0"
52 "MULTICAST\0""NOARP\0""UP\0""LOWER_UP\0";
53
Denis Vlasenko7d60fc12008-06-05 06:51:06 +000054 bb_putchar('<');
Bernhard Reutner-Fischer49ee8392010-05-25 09:55:42 +020055 if (flags & IFF_UP && !(flags & IFF_RUNNING))
56 printf("NO-CARRIER,");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000057 flags &= ~IFF_RUNNING;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000058#if 0
59 _PF(ALLMULTI);
60 _PF(PROMISC);
61 _PF(MASTER);
62 _PF(SLAVE);
63 _PF(DEBUG);
64 _PF(DYNAMIC);
65 _PF(AUTOMEDIA);
66 _PF(PORTSEL);
67 _PF(NOTRAILERS);
68#endif
Denis Vlasenko53354ac2008-06-07 15:10:29 +000069 flags = print_flags_separated(flag_masks, flag_labels, flags, ",");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000070 if (flags)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000071 printf("%x", flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000072 if (mdown)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000073 printf(",M-DOWN");
74 printf("> ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000075}
76
Glenn L McGrath2626ef62002-12-02 01:40:05 +000077static void print_queuelen(char *name)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000078{
79 struct ifreq ifr;
80 int s;
81
82 s = socket(AF_INET, SOCK_STREAM, 0);
83 if (s < 0)
84 return;
85
86 memset(&ifr, 0, sizeof(ifr));
Denis Vlasenko360d9662008-12-02 18:18:50 +000087 strncpy_IFNAMSIZ(ifr.ifr_name, name);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000088 if (ioctl_or_warn(s, SIOCGIFTXQLEN, &ifr) < 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000089 close(s);
90 return;
91 }
92 close(s);
93
94 if (ifr.ifr_qlen)
95 printf("qlen %d", ifr.ifr_qlen);
96}
97
Denys Vlasenkoadf922e2009-10-08 14:35:37 +020098static NOINLINE int print_linkinfo(const struct nlmsghdr *n)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000099{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000100 struct ifinfomsg *ifi = NLMSG_DATA(n);
Denys Vlasenko90377872010-01-08 09:07:50 +0100101 struct rtattr *tb[IFLA_MAX+1];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000102 int len = n->nlmsg_len;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000103
104 if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
105 return 0;
106
107 len -= NLMSG_LENGTH(sizeof(*ifi));
108 if (len < 0)
109 return -1;
110
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100111 if (G_filter.ifindex && ifi->ifi_index != G_filter.ifindex)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000112 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100113 if (G_filter.up && !(ifi->ifi_flags & IFF_UP))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000114 return 0;
115
116 memset(tb, 0, sizeof(tb));
117 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
118 if (tb[IFLA_IFNAME] == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 bb_error_msg("nil ifname");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000120 return -1;
121 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100122 if (G_filter.label
123 && (!G_filter.family || G_filter.family == AF_PACKET)
124 && fnmatch(G_filter.label, RTA_DATA(tb[IFLA_IFNAME]), 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000125 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000126 return 0;
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000127 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000128
129 if (n->nlmsg_type == RTM_DELLINK)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000130 printf("Deleted ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000131
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000132 printf("%d: %s", ifi->ifi_index,
Denys Vlasenko90377872010-01-08 09:07:50 +0100133 /*tb[IFLA_IFNAME] ? (char*)RTA_DATA(tb[IFLA_IFNAME]) : "<nil>" - we checked tb[IFLA_IFNAME] above*/
134 (char*)RTA_DATA(tb[IFLA_IFNAME])
135 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000136
Denys Vlasenko90377872010-01-08 09:07:50 +0100137 {
138 unsigned m_flag = 0;
139 if (tb[IFLA_LINK]) {
Denys Vlasenko90377872010-01-08 09:07:50 +0100140 int iflink = *(int*)RTA_DATA(tb[IFLA_LINK]);
141 if (iflink == 0)
142 printf("@NONE: ");
143 else {
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200144 printf("@%s: ", ll_index_to_name(iflink));
Denys Vlasenko90377872010-01-08 09:07:50 +0100145 m_flag = ll_index_to_flags(iflink);
146 m_flag = !(m_flag & IFF_UP);
147 }
148 } else {
149 printf(": ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000150 }
Denys Vlasenko90377872010-01-08 09:07:50 +0100151 print_link_flags(ifi->ifi_flags, m_flag);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000152 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000153
154 if (tb[IFLA_MTU])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000155 printf("mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU]));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000156 if (tb[IFLA_QDISC])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000157 printf("qdisc %s ", (char*)RTA_DATA(tb[IFLA_QDISC]));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000158#ifdef IFLA_MASTER
159 if (tb[IFLA_MASTER]) {
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200160 printf("master %s ", ll_index_to_name(*(int*)RTA_DATA(tb[IFLA_MASTER])));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000161 }
162#endif
Stefan Seyfriedda4441c2011-02-21 17:29:59 +0100163/* IFLA_OPERSTATE was added to kernel with the same commit as IFF_DORMANT */
164#ifdef IFF_DORMANT
Bernhard Reutner-Fischer49ee8392010-05-25 09:55:42 +0200165 if (tb[IFLA_OPERSTATE]) {
166 static const char operstate_labels[] ALIGN1 =
167 "UNKNOWN\0""NOTPRESENT\0""DOWN\0""LOWERLAYERDOWN\0"
168 "TESTING\0""DORMANT\0""UP\0";
169 printf("state %s ", nth_string(operstate_labels,
Denys Vlasenkoeb29e912010-05-27 13:35:04 +0200170 *(uint8_t *)RTA_DATA(tb[IFLA_OPERSTATE])));
Bernhard Reutner-Fischer49ee8392010-05-25 09:55:42 +0200171 }
Stefan Seyfriedda4441c2011-02-21 17:29:59 +0100172#endif
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100173 if (G_filter.showqueue)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000174 print_queuelen((char*)RTA_DATA(tb[IFLA_IFNAME]));
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000175
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100176 if (!G_filter.family || G_filter.family == AF_PACKET) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000177 SPRINT_BUF(b1);
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200178 printf("%c link/%s ", _SL_, ll_type_n2a(ifi->ifi_type, b1));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000179
180 if (tb[IFLA_ADDRESS]) {
Denis Vlasenko605b20e2007-09-30 16:22:36 +0000181 fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_ADDRESS]),
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000182 RTA_PAYLOAD(tb[IFLA_ADDRESS]),
183 ifi->ifi_type,
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000184 b1, sizeof(b1)), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000185 }
186 if (tb[IFLA_BROADCAST]) {
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000187 if (ifi->ifi_flags & IFF_POINTOPOINT)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000188 printf(" peer ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000189 else
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000190 printf(" brd ");
Denis Vlasenko605b20e2007-09-30 16:22:36 +0000191 fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_BROADCAST]),
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000192 RTA_PAYLOAD(tb[IFLA_BROADCAST]),
193 ifi->ifi_type,
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000194 b1, sizeof(b1)), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000195 }
196 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000197 bb_putchar('\n');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100198 /*fflush_all();*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000199 return 0;
200}
201
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000202static int flush_update(void)
203{
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100204 if (rtnl_send(G_filter.rth, G_filter.flushb, G_filter.flushp) < 0) {
Denys Vlasenko651a2692010-03-23 16:25:17 +0100205 bb_perror_msg("can't send flush request");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000206 return -1;
207 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100208 G_filter.flushp = 0;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000209 return 0;
210}
211
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200212static int FAST_FUNC print_addrinfo(const struct sockaddr_nl *who UNUSED_PARAM,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000213 struct nlmsghdr *n, void *arg UNUSED_PARAM)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000214{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000215 struct ifaddrmsg *ifa = NLMSG_DATA(n);
216 int len = n->nlmsg_len;
Denys Vlasenko926d8012015-10-14 13:56:42 +0200217 struct rtattr *rta_tb[IFA_MAX+1];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000218
219 if (n->nlmsg_type != RTM_NEWADDR && n->nlmsg_type != RTM_DELADDR)
220 return 0;
221 len -= NLMSG_LENGTH(sizeof(*ifa));
222 if (len < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000223 bb_error_msg("wrong nlmsg len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000224 return -1;
225 }
226
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100227 if (G_filter.flushb && n->nlmsg_type != RTM_NEWADDR)
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000228 return 0;
229
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000230 memset(rta_tb, 0, sizeof(rta_tb));
231 parse_rtattr(rta_tb, IFA_MAX, IFA_RTA(ifa), n->nlmsg_len - NLMSG_LENGTH(sizeof(*ifa)));
232
233 if (!rta_tb[IFA_LOCAL])
234 rta_tb[IFA_LOCAL] = rta_tb[IFA_ADDRESS];
235 if (!rta_tb[IFA_ADDRESS])
236 rta_tb[IFA_ADDRESS] = rta_tb[IFA_LOCAL];
237
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100238 if (G_filter.ifindex && G_filter.ifindex != ifa->ifa_index)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000239 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100240 if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000241 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100242 if ((G_filter.flags ^ ifa->ifa_flags) & G_filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000243 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100244 if (G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000245 const char *label;
246 if (rta_tb[IFA_LABEL])
247 label = RTA_DATA(rta_tb[IFA_LABEL]);
248 else
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200249 label = ll_index_to_name(ifa->ifa_index);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100250 if (fnmatch(G_filter.label, label, 0) != 0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000251 return 0;
252 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100253 if (G_filter.pfx.family) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000254 if (rta_tb[IFA_LOCAL]) {
255 inet_prefix dst;
256 memset(&dst, 0, sizeof(dst));
257 dst.family = ifa->ifa_family;
258 memcpy(&dst.data, RTA_DATA(rta_tb[IFA_LOCAL]), RTA_PAYLOAD(rta_tb[IFA_LOCAL]));
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100259 if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000260 return 0;
261 }
262 }
263
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100264 if (G_filter.flushb) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000265 struct nlmsghdr *fn;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100266 if (NLMSG_ALIGN(G_filter.flushp) + n->nlmsg_len > G_filter.flushe) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000267 if (flush_update())
268 return -1;
269 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100270 fn = (struct nlmsghdr*)(G_filter.flushb + NLMSG_ALIGN(G_filter.flushp));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000271 memcpy(fn, n, n->nlmsg_len);
272 fn->nlmsg_type = RTM_DELADDR;
273 fn->nlmsg_flags = NLM_F_REQUEST;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100274 fn->nlmsg_seq = ++G_filter.rth->seq;
275 G_filter.flushp = (((char*)fn) + n->nlmsg_len) - G_filter.flushb;
276 G_filter.flushed = 1;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000277 return 0;
278 }
279
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000280 if (n->nlmsg_type == RTM_DELADDR)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000281 printf("Deleted ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000282
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100283 if (G_filter.oneline)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000284 printf("%u: %s", ifa->ifa_index, ll_index_to_name(ifa->ifa_index));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000285 if (ifa->ifa_family == AF_INET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000286 printf(" inet ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000287 else if (ifa->ifa_family == AF_INET6)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000288 printf(" inet6 ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000289 else
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000290 printf(" family %d ", ifa->ifa_family);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000291
292 if (rta_tb[IFA_LOCAL]) {
Denys Vlasenko926d8012015-10-14 13:56:42 +0200293 fputs(rt_addr_n2a(ifa->ifa_family, RTA_DATA(rta_tb[IFA_LOCAL])),
294 stdout
295 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000296
Denis Vlasenko76140a72009-03-05 09:21:57 +0000297 if (rta_tb[IFA_ADDRESS] == NULL
298 || memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0
299 ) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000300 printf("/%d ", ifa->ifa_prefixlen);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000301 } else {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000302 printf(" peer %s/%d ",
Denys Vlasenko926d8012015-10-14 13:56:42 +0200303 rt_addr_n2a(ifa->ifa_family, RTA_DATA(rta_tb[IFA_ADDRESS])),
304 ifa->ifa_prefixlen
305 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000306 }
307 }
308
309 if (rta_tb[IFA_BROADCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000310 printf("brd %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000311 rt_addr_n2a(ifa->ifa_family,
Denys Vlasenko926d8012015-10-14 13:56:42 +0200312 RTA_DATA(rta_tb[IFA_BROADCAST]))
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100313 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000314 }
315 if (rta_tb[IFA_ANYCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000316 printf("any %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000317 rt_addr_n2a(ifa->ifa_family,
Denys Vlasenko926d8012015-10-14 13:56:42 +0200318 RTA_DATA(rta_tb[IFA_ANYCAST]))
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100319 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000320 }
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200321 printf("scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope));
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000322 if (ifa->ifa_flags & IFA_F_SECONDARY) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000323 ifa->ifa_flags &= ~IFA_F_SECONDARY;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000324 printf("secondary ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000325 }
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000326 if (ifa->ifa_flags & IFA_F_TENTATIVE) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000327 ifa->ifa_flags &= ~IFA_F_TENTATIVE;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000328 printf("tentative ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000329 }
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000330 if (ifa->ifa_flags & IFA_F_DEPRECATED) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000331 ifa->ifa_flags &= ~IFA_F_DEPRECATED;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000332 printf("deprecated ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000333 }
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000334 if (!(ifa->ifa_flags & IFA_F_PERMANENT)) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000335 printf("dynamic ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000336 } else
337 ifa->ifa_flags &= ~IFA_F_PERMANENT;
338 if (ifa->ifa_flags)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000339 printf("flags %02x ", ifa->ifa_flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000340 if (rta_tb[IFA_LABEL])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000341 fputs((char*)RTA_DATA(rta_tb[IFA_LABEL]), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000342 if (rta_tb[IFA_CACHEINFO]) {
343 struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]);
344 char buf[128];
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000345 bb_putchar(_SL_);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000346 if (ci->ifa_valid == 0xFFFFFFFFU)
347 sprintf(buf, "valid_lft forever");
348 else
349 sprintf(buf, "valid_lft %dsec", ci->ifa_valid);
350 if (ci->ifa_prefered == 0xFFFFFFFFU)
351 sprintf(buf+strlen(buf), " preferred_lft forever");
352 else
353 sprintf(buf+strlen(buf), " preferred_lft %dsec", ci->ifa_prefered);
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000354 printf(" %s", buf);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000355 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000356 bb_putchar('\n');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100357 /*fflush_all();*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000358 return 0;
359}
360
361
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200362struct nlmsg_list {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000363 struct nlmsg_list *next;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200364 struct nlmsghdr h;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000365};
366
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000367static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000368{
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000369 for (; ainfo; ainfo = ainfo->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000370 struct nlmsghdr *n = &ainfo->h;
371 struct ifaddrmsg *ifa = NLMSG_DATA(n);
372
373 if (n->nlmsg_type != RTM_NEWADDR)
374 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000375 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
376 return -1;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100377 if (ifa->ifa_index != ifindex
378 || (G_filter.family && G_filter.family != ifa->ifa_family)
379 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000380 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100381 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000382 print_addrinfo(NULL, n, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000383 }
384 return 0;
385}
386
387
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200388static int FAST_FUNC store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000389{
390 struct nlmsg_list **linfo = (struct nlmsg_list**)arg;
391 struct nlmsg_list *h;
392 struct nlmsg_list **lp;
393
Denys Vlasenko90377872010-01-08 09:07:50 +0100394 h = xzalloc(n->nlmsg_len + sizeof(void*));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000395
396 memcpy(&h->h, n, n->nlmsg_len);
Denys Vlasenko90377872010-01-08 09:07:50 +0100397 /*h->next = NULL; - xzalloc did it */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000398
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000399 for (lp = linfo; *lp; lp = &(*lp)->next)
400 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000401 *lp = h;
402
403 ll_remember_index(who, n, NULL);
404 return 0;
405}
406
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000407static void ipaddr_reset_filter(int _oneline)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000408{
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100409 memset(&G_filter, 0, sizeof(G_filter));
410 G_filter.oneline = _oneline;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000411}
412
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000413/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +0200414int FAST_FUNC ipaddr_list_or_flush(char **argv, int flush)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000415{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000416 static const char option[] ALIGN1 = "to\0""scope\0""up\0""label\0""dev\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000417
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000418 struct nlmsg_list *linfo = NULL;
419 struct nlmsg_list *ainfo = NULL;
420 struct nlmsg_list *l;
421 struct rtnl_handle rth;
422 char *filter_dev = NULL;
423 int no_link = 0;
424
425 ipaddr_reset_filter(oneline);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100426 G_filter.showqueue = 1;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000427
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100428 if (G_filter.family == AF_UNSPEC)
429 G_filter.family = preferred_family;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000430
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000431 if (flush) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000432 if (!*argv) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000433 bb_error_msg_and_die(bb_msg_requires_arg, "flush");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000434 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100435 if (G_filter.family == AF_PACKET) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100436 bb_error_msg_and_die("can't flush link addresses");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000437 }
438 }
439
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000440 while (*argv) {
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200441 const smalluint key = index_in_strings(option, *argv);
442 if (key == 0) { /* to */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200443 NEXT_ARG();
444 get_prefix(&G_filter.pfx, *argv, G_filter.family);
445 if (G_filter.family == AF_UNSPEC) {
446 G_filter.family = G_filter.pfx.family;
447 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200448 } else if (key == 1) { /* scope */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200449 uint32_t scope = 0;
450 NEXT_ARG();
451 G_filter.scopemask = -1;
452 if (rtnl_rtscope_a2n(&scope, *argv)) {
453 if (strcmp(*argv, "all") != 0) {
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200454 invarg_1_to_2(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000455 }
Denys Vlasenkofd744512010-07-04 03:55:43 +0200456 scope = RT_SCOPE_NOWHERE;
457 G_filter.scopemask = 0;
458 }
459 G_filter.scope = scope;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200460 } else if (key == 2) { /* up */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200461 G_filter.up = 1;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200462 } else if (key == 3) { /* label */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200463 NEXT_ARG();
464 G_filter.label = *argv;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200465 } else {
466 if (key == 4) /* dev */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000467 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200468 if (filter_dev)
469 duparg2("dev", *argv);
470 filter_dev = *argv;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000471 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000472 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000473 }
474
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000475 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000476
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000477 xrtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK);
478 xrtnl_dump_filter(&rth, store_nlmsg, &linfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000479
480 if (filter_dev) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100481 G_filter.ifindex = xll_name_to_index(filter_dev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000482 }
483
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000484 if (flush) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000485 char flushb[4096-512];
486
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100487 G_filter.flushb = flushb;
488 G_filter.flushp = 0;
489 G_filter.flushe = sizeof(flushb);
490 G_filter.rth = &rth;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000491
492 for (;;) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100493 xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
494 G_filter.flushed = 0;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000495 xrtnl_dump_filter(&rth, print_addrinfo, NULL);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100496 if (G_filter.flushed == 0) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000497 return 0;
498 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100499 if (flush_update() < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000500 return 1;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100501 }
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000502 }
503 }
504
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100505 if (G_filter.family != AF_PACKET) {
506 xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000507 xrtnl_dump_filter(&rth, store_nlmsg, &ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000508 }
509
510
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100511 if (G_filter.family && G_filter.family != AF_PACKET) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000512 struct nlmsg_list **lp;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000513 lp = &linfo;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000514
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100515 if (G_filter.oneline)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000516 no_link = 1;
517
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000518 while ((l = *lp) != NULL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000519 int ok = 0;
520 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
521 struct nlmsg_list *a;
522
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000523 for (a = ainfo; a; a = a->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000524 struct nlmsghdr *n = &a->h;
525 struct ifaddrmsg *ifa = NLMSG_DATA(n);
526
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100527 if (ifa->ifa_index != ifi->ifi_index
528 || (G_filter.family && G_filter.family != ifa->ifa_family)
529 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000530 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100531 }
532 if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000533 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100534 if ((G_filter.flags ^ ifa->ifa_flags) & G_filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000535 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100536 if (G_filter.pfx.family || G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000537 struct rtattr *tb[IFA_MAX+1];
538 memset(tb, 0, sizeof(tb));
539 parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
540 if (!tb[IFA_LOCAL])
541 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
542
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100543 if (G_filter.pfx.family && tb[IFA_LOCAL]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000544 inet_prefix dst;
545 memset(&dst, 0, sizeof(dst));
546 dst.family = ifa->ifa_family;
547 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100548 if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000549 continue;
550 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100551 if (G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000552 const char *label;
553 if (tb[IFA_LABEL])
554 label = RTA_DATA(tb[IFA_LABEL]);
555 else
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200556 label = ll_index_to_name(ifa->ifa_index);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100557 if (fnmatch(G_filter.label, label, 0) != 0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000558 continue;
559 }
560 }
561
562 ok = 1;
563 break;
564 }
565 if (!ok)
566 *lp = l->next;
567 else
568 lp = &l->next;
569 }
570 }
571
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000572 for (l = linfo; l; l = l->next) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000573 if (no_link || print_linkinfo(&l->h) == 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000574 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100575 if (G_filter.family != AF_PACKET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000576 print_selected_addrinfo(ifi->ifi_index, ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000577 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000578 }
579
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000580 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000581}
582
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000583static int default_scope(inet_prefix *lcl)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000584{
585 if (lcl->family == AF_INET) {
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000586 if (lcl->bytelen >= 1 && *(uint8_t*)&lcl->data == 127)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000587 return RT_SCOPE_HOST;
588 }
589 return 0;
590}
591
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000592/* Return value becomes exitcode. It's okay to not return at all */
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300593static int ipaddr_modify(int cmd, int flags, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000594{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000595 static const char option[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000596 "peer\0""remote\0""broadcast\0""brd\0"
597 "anycast\0""scope\0""dev\0""label\0""local\0";
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000598 struct rtnl_handle rth;
599 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000600 struct nlmsghdr n;
601 struct ifaddrmsg ifa;
602 char buf[256];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000603 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000604 char *d = NULL;
605 char *l = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000606 inet_prefix lcl;
607 inet_prefix peer;
608 int local_len = 0;
609 int peer_len = 0;
610 int brd_len = 0;
611 int any_len = 0;
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000612 bool scoped = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000613
614 memset(&req, 0, sizeof(req));
615
616 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300617 req.n.nlmsg_flags = NLM_F_REQUEST | flags;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000618 req.n.nlmsg_type = cmd;
619 req.ifa.ifa_family = preferred_family;
620
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000621 while (*argv) {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200622 unsigned arg = index_in_strings(option, *argv);
623 /* if search fails, "local" is assumed */
624 if ((int)arg >= 0)
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200625 NEXT_ARG();
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000626
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200627 if (arg <= 1) { /* peer, remote */
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200628 if (peer_len) {
629 duparg("peer", *argv);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000630 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200631 get_prefix(&peer, *argv, req.ifa.ifa_family);
632 peer_len = peer.bytelen;
633 if (req.ifa.ifa_family == AF_UNSPEC) {
634 req.ifa.ifa_family = peer.family;
635 }
636 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
637 req.ifa.ifa_prefixlen = peer.bitlen;
638 } else if (arg <= 3) { /* broadcast, brd */
639 inet_prefix addr;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200640 if (brd_len) {
641 duparg("broadcast", *argv);
642 }
643 if (LONE_CHAR(*argv, '+')) {
644 brd_len = -1;
645 } else if (LONE_DASH(*argv)) {
646 brd_len = -2;
647 } else {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000648 get_addr(&addr, *argv, req.ifa.ifa_family);
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200649 if (req.ifa.ifa_family == AF_UNSPEC)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000650 req.ifa.ifa_family = addr.family;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200651 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
652 brd_len = addr.bytelen;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000653 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200654 } else if (arg == 4) { /* anycast */
655 inet_prefix addr;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200656 if (any_len) {
657 duparg("anycast", *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000658 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200659 get_addr(&addr, *argv, req.ifa.ifa_family);
660 if (req.ifa.ifa_family == AF_UNSPEC) {
661 req.ifa.ifa_family = addr.family;
662 }
663 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
664 any_len = addr.bytelen;
665 } else if (arg == 5) { /* scope */
666 uint32_t scope = 0;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200667 if (rtnl_rtscope_a2n(&scope, *argv)) {
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200668 invarg_1_to_2(*argv, "scope");
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200669 }
670 req.ifa.ifa_scope = scope;
671 scoped = 1;
672 } else if (arg == 6) { /* dev */
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200673 d = *argv;
674 } else if (arg == 7) { /* label */
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200675 l = *argv;
Denys Vlasenkofd744512010-07-04 03:55:43 +0200676 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l) + 1);
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200677 } else {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200678 /* local (specified or assumed) */
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200679 if (local_len) {
680 duparg2("local", *argv);
681 }
682 get_prefix(&lcl, *argv, req.ifa.ifa_family);
683 if (req.ifa.ifa_family == AF_UNSPEC) {
684 req.ifa.ifa_family = lcl.family;
685 }
686 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
687 local_len = lcl.bytelen;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000688 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000689 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000690 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000691
Denys Vlasenkofd744512010-07-04 03:55:43 +0200692 if (!d) {
693 /* There was no "dev IFACE", but we need that */
694 bb_error_msg_and_die("need \"dev IFACE\"");
695 }
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100696 if (l && !is_prefixed_with(l, d)) {
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000697 bb_error_msg_and_die("\"dev\" (%s) must match \"label\" (%s)", d, l);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000698 }
699
700 if (peer_len == 0 && local_len && cmd != RTM_DELADDR) {
701 peer = lcl;
702 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
703 }
704 if (req.ifa.ifa_prefixlen == 0)
705 req.ifa.ifa_prefixlen = lcl.bitlen;
706
707 if (brd_len < 0 && cmd != RTM_DELADDR) {
708 inet_prefix brd;
709 int i;
710 if (req.ifa.ifa_family != AF_INET) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000711 bb_error_msg_and_die("broadcast can be set only for IPv4 addresses");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000712 }
713 brd = peer;
714 if (brd.bitlen <= 30) {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200715 for (i = 31; i >= brd.bitlen; i--) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000716 if (brd_len == -1)
717 brd.data[0] |= htonl(1<<(31-i));
718 else
719 brd.data[0] &= ~htonl(1<<(31-i));
720 }
721 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
722 brd_len = brd.bytelen;
723 }
724 }
725 if (!scoped && cmd != RTM_DELADDR)
726 req.ifa.ifa_scope = default_scope(&lcl);
727
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000728 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000729
730 ll_init_map(&rth);
731
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000732 req.ifa.ifa_index = xll_name_to_index(d);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000733
734 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000735 return 2;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000736
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000737 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000738}
739
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000740/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +0200741int FAST_FUNC do_ipaddr(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000742{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000743 static const char commands[] ALIGN1 =
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300744 /* 0 1 2 3 4 5 6 7 8 */
745 "add\0""change\0""chg\0""replace\0""delete\0""list\0""show\0""lst\0""flush\0";
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200746 int cmd = 2;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000747 if (*argv) {
Bernhard Reutner-Fischercc4493a2010-05-25 17:42:01 +0200748 cmd = index_in_substrings(commands, *argv);
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200749 if (cmd < 0)
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200750 invarg_1_to_2(*argv, applet_name);
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000751 argv++;
Denys Vlasenkodb31c632015-07-01 18:36:06 +0200752 if (cmd <= 4) {
753 return ipaddr_modify(
754 /*cmd:*/ cmd == 4 ? RTM_DELADDR : RTM_NEWADDR,
755 /*flags:*/
756 cmd == 0 ? NLM_F_CREATE|NLM_F_EXCL : /* add */
757 cmd == 1 || cmd == 2 ? NLM_F_REPLACE : /* change */
758 cmd == 3 ? NLM_F_CREATE|NLM_F_REPLACE : /* replace */
759 0 /* delete */
760 , argv);
761 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000762 }
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300763 return ipaddr_list_or_flush(argv, cmd == 8);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000764}