blob: 71e8fb6a7bc7809b3d6a6d5757b3f320082bf614 [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 */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000010#include <fnmatch.h>
Eric Andersen8004bb72003-01-14 08:06:07 +000011#include <net/if.h>
12#include <net/if_arp.h>
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000013
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000014#include "ip_common.h" /* #include "libbb.h" is inside */
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020015#include "common_bufsiz.h"
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;
Denys Vlasenko028c5aa2019-05-22 13:54:46 +020026 /* Flush cmd buf. If !NULL, print_addrinfo() constructs flush commands in it */
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000027 char *flushb;
28 struct rtnl_handle *rth;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000029 int scope, scopemask;
30 int flags, flagmask;
Glenn L McGrathd66370c2003-01-13 21:40:38 +000031 int flushp;
32 int flushe;
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000033 int ifindex;
34 family_t family;
35 smallint showqueue;
36 smallint oneline;
37 smallint up;
Denys Vlasenko028c5aa2019-05-22 13:54:46 +020038 /* Misnomer. Does not mean "flushed something" */
39 /* More like "flush commands were constructed by print_addrinfo()" */
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000040 smallint flushed;
41 inet_prefix pfx;
Denys Vlasenko36659fd2010-02-05 14:40:23 +010042} FIX_ALIASING;
43typedef struct filter_t filter_t;
Denis Vlasenko540a2a12007-04-07 01:14:45 +000044
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020045#define G_filter (*(filter_t*)bb_common_bufsiz1)
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +020046#define INIT_G() do { setup_common_bufsiz(); } while (0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000047
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000048static void print_link_flags(unsigned flags, unsigned mdown)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000049{
Denis Vlasenko53354ac2008-06-07 15:10:29 +000050 static const int flag_masks[] = {
51 IFF_LOOPBACK, IFF_BROADCAST, IFF_POINTOPOINT,
52 IFF_MULTICAST, IFF_NOARP, IFF_UP, IFF_LOWER_UP };
53 static const char flag_labels[] ALIGN1 =
54 "LOOPBACK\0""BROADCAST\0""POINTOPOINT\0"
55 "MULTICAST\0""NOARP\0""UP\0""LOWER_UP\0";
56
Denis Vlasenko7d60fc12008-06-05 06:51:06 +000057 bb_putchar('<');
Bernhard Reutner-Fischer49ee8392010-05-25 09:55:42 +020058 if (flags & IFF_UP && !(flags & IFF_RUNNING))
59 printf("NO-CARRIER,");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000060 flags &= ~IFF_RUNNING;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000061#if 0
62 _PF(ALLMULTI);
63 _PF(PROMISC);
64 _PF(MASTER);
65 _PF(SLAVE);
66 _PF(DEBUG);
67 _PF(DYNAMIC);
68 _PF(AUTOMEDIA);
69 _PF(PORTSEL);
70 _PF(NOTRAILERS);
71#endif
Denis Vlasenko53354ac2008-06-07 15:10:29 +000072 flags = print_flags_separated(flag_masks, flag_labels, flags, ",");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000073 if (flags)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000074 printf("%x", flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000075 if (mdown)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000076 printf(",M-DOWN");
77 printf("> ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000078}
79
Glenn L McGrath2626ef62002-12-02 01:40:05 +000080static void print_queuelen(char *name)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000081{
82 struct ifreq ifr;
83 int s;
84
85 s = socket(AF_INET, SOCK_STREAM, 0);
86 if (s < 0)
87 return;
88
89 memset(&ifr, 0, sizeof(ifr));
Denis Vlasenko360d9662008-12-02 18:18:50 +000090 strncpy_IFNAMSIZ(ifr.ifr_name, name);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +000091 if (ioctl_or_warn(s, SIOCGIFTXQLEN, &ifr) < 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000092 close(s);
93 return;
94 }
95 close(s);
96
97 if (ifr.ifr_qlen)
98 printf("qlen %d", ifr.ifr_qlen);
99}
100
Denys Vlasenkoadf922e2009-10-08 14:35:37 +0200101static NOINLINE int print_linkinfo(const struct nlmsghdr *n)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000102{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000103 struct ifinfomsg *ifi = NLMSG_DATA(n);
Denys Vlasenko90377872010-01-08 09:07:50 +0100104 struct rtattr *tb[IFLA_MAX+1];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000105 int len = n->nlmsg_len;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000106
107 if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
108 return 0;
109
110 len -= NLMSG_LENGTH(sizeof(*ifi));
111 if (len < 0)
112 return -1;
113
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100114 if (G_filter.ifindex && ifi->ifi_index != G_filter.ifindex)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000115 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100116 if (G_filter.up && !(ifi->ifi_flags & IFF_UP))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000117 return 0;
118
Denys Vlasenko68ae5422018-02-08 08:42:37 +0100119 //memset(tb, 0, sizeof(tb)); - parse_rtattr does this
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000120 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
121 if (tb[IFLA_IFNAME] == NULL) {
James Byrne69374872019-07-02 11:35:03 +0200122 bb_simple_error_msg("nil ifname");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000123 return -1;
124 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100125 if (G_filter.label
126 && (!G_filter.family || G_filter.family == AF_PACKET)
127 && fnmatch(G_filter.label, RTA_DATA(tb[IFLA_IFNAME]), 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000128 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000129 return 0;
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000130 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000131
132 if (n->nlmsg_type == RTM_DELLINK)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000133 printf("Deleted ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000134
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000135 printf("%d: %s", ifi->ifi_index,
Denys Vlasenko90377872010-01-08 09:07:50 +0100136 /*tb[IFLA_IFNAME] ? (char*)RTA_DATA(tb[IFLA_IFNAME]) : "<nil>" - we checked tb[IFLA_IFNAME] above*/
137 (char*)RTA_DATA(tb[IFLA_IFNAME])
138 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000139
Denys Vlasenko90377872010-01-08 09:07:50 +0100140 {
141 unsigned m_flag = 0;
142 if (tb[IFLA_LINK]) {
Denys Vlasenko90377872010-01-08 09:07:50 +0100143 int iflink = *(int*)RTA_DATA(tb[IFLA_LINK]);
144 if (iflink == 0)
145 printf("@NONE: ");
146 else {
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200147 printf("@%s: ", ll_index_to_name(iflink));
Denys Vlasenko90377872010-01-08 09:07:50 +0100148 m_flag = ll_index_to_flags(iflink);
149 m_flag = !(m_flag & IFF_UP);
150 }
151 } else {
152 printf(": ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000153 }
Denys Vlasenko90377872010-01-08 09:07:50 +0100154 print_link_flags(ifi->ifi_flags, m_flag);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000155 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000156
157 if (tb[IFLA_MTU])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000158 printf("mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU]));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000159 if (tb[IFLA_QDISC])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000160 printf("qdisc %s ", (char*)RTA_DATA(tb[IFLA_QDISC]));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000161#ifdef IFLA_MASTER
162 if (tb[IFLA_MASTER]) {
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200163 printf("master %s ", ll_index_to_name(*(int*)RTA_DATA(tb[IFLA_MASTER])));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000164 }
165#endif
Stefan Seyfriedda4441c2011-02-21 17:29:59 +0100166/* IFLA_OPERSTATE was added to kernel with the same commit as IFF_DORMANT */
167#ifdef IFF_DORMANT
Bernhard Reutner-Fischer49ee8392010-05-25 09:55:42 +0200168 if (tb[IFLA_OPERSTATE]) {
169 static const char operstate_labels[] ALIGN1 =
170 "UNKNOWN\0""NOTPRESENT\0""DOWN\0""LOWERLAYERDOWN\0"
171 "TESTING\0""DORMANT\0""UP\0";
172 printf("state %s ", nth_string(operstate_labels,
Denys Vlasenkoeb29e912010-05-27 13:35:04 +0200173 *(uint8_t *)RTA_DATA(tb[IFLA_OPERSTATE])));
Bernhard Reutner-Fischer49ee8392010-05-25 09:55:42 +0200174 }
Stefan Seyfriedda4441c2011-02-21 17:29:59 +0100175#endif
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100176 if (G_filter.showqueue)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000177 print_queuelen((char*)RTA_DATA(tb[IFLA_IFNAME]));
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000178
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100179 if (!G_filter.family || G_filter.family == AF_PACKET) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000180 SPRINT_BUF(b1);
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200181 printf("%c link/%s ", _SL_, ll_type_n2a(ifi->ifi_type, b1));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000182
183 if (tb[IFLA_ADDRESS]) {
Denis Vlasenko605b20e2007-09-30 16:22:36 +0000184 fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_ADDRESS]),
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000185 RTA_PAYLOAD(tb[IFLA_ADDRESS]),
186 ifi->ifi_type,
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000187 b1, sizeof(b1)), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000188 }
189 if (tb[IFLA_BROADCAST]) {
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000190 if (ifi->ifi_flags & IFF_POINTOPOINT)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000191 printf(" peer ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000192 else
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000193 printf(" brd ");
Denis Vlasenko605b20e2007-09-30 16:22:36 +0000194 fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_BROADCAST]),
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000195 RTA_PAYLOAD(tb[IFLA_BROADCAST]),
196 ifi->ifi_type,
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000197 b1, sizeof(b1)), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000198 }
199 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000200 bb_putchar('\n');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100201 /*fflush_all();*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000202 return 0;
203}
204
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000205static int flush_update(void)
206{
Denys Vlasenko028c5aa2019-05-22 13:54:46 +0200207 if (rtnl_send_check(G_filter.rth, G_filter.flushb, G_filter.flushp) < 0) {
James Byrne69374872019-07-02 11:35:03 +0200208 bb_simple_perror_msg("can't send flush request");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000209 return -1;
210 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100211 G_filter.flushp = 0;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000212 return 0;
213}
214
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200215static int FAST_FUNC print_addrinfo(const struct sockaddr_nl *who UNUSED_PARAM,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000216 struct nlmsghdr *n, void *arg UNUSED_PARAM)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000217{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000218 struct ifaddrmsg *ifa = NLMSG_DATA(n);
219 int len = n->nlmsg_len;
Christian Eggers31d34f32020-06-29 17:57:25 +0200220 unsigned int ifa_flags;
Denys Vlasenko926d8012015-10-14 13:56:42 +0200221 struct rtattr *rta_tb[IFA_MAX+1];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000222
223 if (n->nlmsg_type != RTM_NEWADDR && n->nlmsg_type != RTM_DELADDR)
224 return 0;
225 len -= NLMSG_LENGTH(sizeof(*ifa));
226 if (len < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000227 bb_error_msg("wrong nlmsg len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000228 return -1;
229 }
230
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100231 if (G_filter.flushb && n->nlmsg_type != RTM_NEWADDR)
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000232 return 0;
233
Denys Vlasenko68ae5422018-02-08 08:42:37 +0100234 //memset(rta_tb, 0, sizeof(rta_tb)); - parse_rtattr does this
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000235 parse_rtattr(rta_tb, IFA_MAX, IFA_RTA(ifa), n->nlmsg_len - NLMSG_LENGTH(sizeof(*ifa)));
236
Christian Eggers31d34f32020-06-29 17:57:25 +0200237 ifa_flags = rta_tb[IFA_FLAGS] ? *(__u32*)RTA_DATA(rta_tb[IFA_FLAGS]) : ifa->ifa_flags;
238
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000239 if (!rta_tb[IFA_LOCAL])
240 rta_tb[IFA_LOCAL] = rta_tb[IFA_ADDRESS];
241 if (!rta_tb[IFA_ADDRESS])
242 rta_tb[IFA_ADDRESS] = rta_tb[IFA_LOCAL];
243
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100244 if (G_filter.ifindex && G_filter.ifindex != ifa->ifa_index)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000245 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100246 if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000247 return 0;
Christian Eggers31d34f32020-06-29 17:57:25 +0200248 if ((G_filter.flags ^ ifa_flags) & G_filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000249 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100250 if (G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000251 const char *label;
252 if (rta_tb[IFA_LABEL])
253 label = RTA_DATA(rta_tb[IFA_LABEL]);
254 else
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200255 label = ll_index_to_name(ifa->ifa_index);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100256 if (fnmatch(G_filter.label, label, 0) != 0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000257 return 0;
258 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100259 if (G_filter.pfx.family) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000260 if (rta_tb[IFA_LOCAL]) {
261 inet_prefix dst;
262 memset(&dst, 0, sizeof(dst));
263 dst.family = ifa->ifa_family;
264 memcpy(&dst.data, RTA_DATA(rta_tb[IFA_LOCAL]), RTA_PAYLOAD(rta_tb[IFA_LOCAL]));
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100265 if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000266 return 0;
267 }
268 }
269
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100270 if (G_filter.flushb) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000271 struct nlmsghdr *fn;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100272 if (NLMSG_ALIGN(G_filter.flushp) + n->nlmsg_len > G_filter.flushe) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000273 if (flush_update())
274 return -1;
275 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100276 fn = (struct nlmsghdr*)(G_filter.flushb + NLMSG_ALIGN(G_filter.flushp));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000277 memcpy(fn, n, n->nlmsg_len);
278 fn->nlmsg_type = RTM_DELADDR;
279 fn->nlmsg_flags = NLM_F_REQUEST;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100280 fn->nlmsg_seq = ++G_filter.rth->seq;
281 G_filter.flushp = (((char*)fn) + n->nlmsg_len) - G_filter.flushb;
282 G_filter.flushed = 1;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000283 return 0;
284 }
285
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000286 if (n->nlmsg_type == RTM_DELADDR)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000287 printf("Deleted ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000288
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100289 if (G_filter.oneline)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000290 printf("%u: %s", ifa->ifa_index, ll_index_to_name(ifa->ifa_index));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000291 if (ifa->ifa_family == AF_INET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000292 printf(" inet ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000293 else if (ifa->ifa_family == AF_INET6)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000294 printf(" inet6 ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000295 else
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000296 printf(" family %d ", ifa->ifa_family);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000297
298 if (rta_tb[IFA_LOCAL]) {
Denys Vlasenko926d8012015-10-14 13:56:42 +0200299 fputs(rt_addr_n2a(ifa->ifa_family, RTA_DATA(rta_tb[IFA_LOCAL])),
300 stdout
301 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000302
Denis Vlasenko76140a72009-03-05 09:21:57 +0000303 if (rta_tb[IFA_ADDRESS] == NULL
304 || memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0
305 ) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000306 printf("/%d ", ifa->ifa_prefixlen);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000307 } else {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000308 printf(" peer %s/%d ",
Denys Vlasenko926d8012015-10-14 13:56:42 +0200309 rt_addr_n2a(ifa->ifa_family, RTA_DATA(rta_tb[IFA_ADDRESS])),
310 ifa->ifa_prefixlen
311 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000312 }
313 }
314
315 if (rta_tb[IFA_BROADCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000316 printf("brd %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_BROADCAST]))
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100319 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000320 }
321 if (rta_tb[IFA_ANYCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000322 printf("any %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000323 rt_addr_n2a(ifa->ifa_family,
Denys Vlasenko926d8012015-10-14 13:56:42 +0200324 RTA_DATA(rta_tb[IFA_ANYCAST]))
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100325 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000326 }
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200327 printf("scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope));
Christian Eggers31d34f32020-06-29 17:57:25 +0200328 if (ifa_flags & IFA_F_SECONDARY) {
329 ifa_flags &= ~IFA_F_SECONDARY;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000330 printf("secondary ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000331 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200332 if (ifa_flags & IFA_F_TENTATIVE) {
333 ifa_flags &= ~IFA_F_TENTATIVE;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000334 printf("tentative ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000335 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200336 if (ifa_flags & IFA_F_DADFAILED) {
337 ifa_flags &= ~IFA_F_DADFAILED;
Kaarle Ritvanen1c952ba2018-12-31 19:52:32 +0200338 printf("dadfailed ");
339 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200340 if (ifa_flags & IFA_F_DEPRECATED) {
341 ifa_flags &= ~IFA_F_DEPRECATED;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000342 printf("deprecated ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000343 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200344 if (!(ifa_flags & IFA_F_PERMANENT)) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000345 printf("dynamic ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000346 } else
Christian Eggers31d34f32020-06-29 17:57:25 +0200347 ifa_flags &= ~IFA_F_PERMANENT;
348 if (ifa_flags & IFA_F_NOPREFIXROUTE) {
349 ifa_flags &= ~IFA_F_NOPREFIXROUTE;
350 printf("noprefixroute ");
351 }
352 if (ifa_flags)
353 printf("flags %02x ", ifa_flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000354 if (rta_tb[IFA_LABEL])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000355 fputs((char*)RTA_DATA(rta_tb[IFA_LABEL]), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000356 if (rta_tb[IFA_CACHEINFO]) {
357 struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]);
358 char buf[128];
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000359 bb_putchar(_SL_);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000360 if (ci->ifa_valid == 0xFFFFFFFFU)
361 sprintf(buf, "valid_lft forever");
362 else
363 sprintf(buf, "valid_lft %dsec", ci->ifa_valid);
364 if (ci->ifa_prefered == 0xFFFFFFFFU)
365 sprintf(buf+strlen(buf), " preferred_lft forever");
366 else
367 sprintf(buf+strlen(buf), " preferred_lft %dsec", ci->ifa_prefered);
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000368 printf(" %s", buf);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000369 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000370 bb_putchar('\n');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100371 /*fflush_all();*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000372 return 0;
373}
374
375
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200376struct nlmsg_list {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000377 struct nlmsg_list *next;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200378 struct nlmsghdr h;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000379};
380
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000381static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000382{
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000383 for (; ainfo; ainfo = ainfo->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000384 struct nlmsghdr *n = &ainfo->h;
385 struct ifaddrmsg *ifa = NLMSG_DATA(n);
386
387 if (n->nlmsg_type != RTM_NEWADDR)
388 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000389 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
390 return -1;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100391 if (ifa->ifa_index != ifindex
392 || (G_filter.family && G_filter.family != ifa->ifa_family)
393 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000394 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100395 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000396 print_addrinfo(NULL, n, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000397 }
398 return 0;
399}
400
401
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200402static int FAST_FUNC store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000403{
404 struct nlmsg_list **linfo = (struct nlmsg_list**)arg;
405 struct nlmsg_list *h;
406 struct nlmsg_list **lp;
407
Denys Vlasenko90377872010-01-08 09:07:50 +0100408 h = xzalloc(n->nlmsg_len + sizeof(void*));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000409
410 memcpy(&h->h, n, n->nlmsg_len);
Denys Vlasenko90377872010-01-08 09:07:50 +0100411 /*h->next = NULL; - xzalloc did it */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000412
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000413 for (lp = linfo; *lp; lp = &(*lp)->next)
414 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000415 *lp = h;
416
417 ll_remember_index(who, n, NULL);
418 return 0;
419}
420
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000421static void ipaddr_reset_filter(int _oneline)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000422{
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100423 memset(&G_filter, 0, sizeof(G_filter));
424 G_filter.oneline = _oneline;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000425}
426
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000427/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +0200428int FAST_FUNC ipaddr_list_or_flush(char **argv, int flush)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000429{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000430 static const char option[] ALIGN1 = "to\0""scope\0""up\0""label\0""dev\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000431
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000432 struct nlmsg_list *linfo = NULL;
433 struct nlmsg_list *ainfo = NULL;
434 struct nlmsg_list *l;
435 struct rtnl_handle rth;
436 char *filter_dev = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000437
438 ipaddr_reset_filter(oneline);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100439 G_filter.showqueue = 1;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000440
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100441 if (G_filter.family == AF_UNSPEC)
442 G_filter.family = preferred_family;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000443
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000444 if (flush) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000445 if (!*argv) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000446 bb_error_msg_and_die(bb_msg_requires_arg, "flush");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000447 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100448 if (G_filter.family == AF_PACKET) {
James Byrne69374872019-07-02 11:35:03 +0200449 bb_simple_error_msg_and_die("can't flush link addresses");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000450 }
451 }
452
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000453 while (*argv) {
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200454 const smalluint key = index_in_strings(option, *argv);
455 if (key == 0) { /* to */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200456 NEXT_ARG();
457 get_prefix(&G_filter.pfx, *argv, G_filter.family);
458 if (G_filter.family == AF_UNSPEC) {
459 G_filter.family = G_filter.pfx.family;
460 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200461 } else if (key == 1) { /* scope */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200462 uint32_t scope = 0;
463 NEXT_ARG();
464 G_filter.scopemask = -1;
465 if (rtnl_rtscope_a2n(&scope, *argv)) {
466 if (strcmp(*argv, "all") != 0) {
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200467 invarg_1_to_2(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000468 }
Denys Vlasenkofd744512010-07-04 03:55:43 +0200469 scope = RT_SCOPE_NOWHERE;
470 G_filter.scopemask = 0;
471 }
472 G_filter.scope = scope;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200473 } else if (key == 2) { /* up */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200474 G_filter.up = 1;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200475 } else if (key == 3) { /* label */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200476 NEXT_ARG();
477 G_filter.label = *argv;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200478 } else {
479 if (key == 4) /* dev */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000480 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200481 if (filter_dev)
482 duparg2("dev", *argv);
483 filter_dev = *argv;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000484 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000485 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000486 }
487
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000488 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000489
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000490 xrtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK);
491 xrtnl_dump_filter(&rth, store_nlmsg, &linfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000492
493 if (filter_dev) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100494 G_filter.ifindex = xll_name_to_index(filter_dev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000495 }
496
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000497 if (flush) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000498 char flushb[4096-512];
499
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100500 G_filter.flushb = flushb;
501 G_filter.flushp = 0;
502 G_filter.flushe = sizeof(flushb);
503 G_filter.rth = &rth;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000504
505 for (;;) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100506 xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
507 G_filter.flushed = 0;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000508 xrtnl_dump_filter(&rth, print_addrinfo, NULL);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100509 if (G_filter.flushed == 0) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000510 return 0;
511 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100512 if (flush_update() < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000513 return 1;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100514 }
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000515 }
516 }
517
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100518 if (G_filter.family != AF_PACKET) {
519 xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000520 xrtnl_dump_filter(&rth, store_nlmsg, &ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000521 }
522
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100523 if (G_filter.family && G_filter.family != AF_PACKET) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000524 struct nlmsg_list **lp;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000525 lp = &linfo;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000526
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000527 while ((l = *lp) != NULL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000528 int ok = 0;
529 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
530 struct nlmsg_list *a;
531
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000532 for (a = ainfo; a; a = a->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000533 struct nlmsghdr *n = &a->h;
534 struct ifaddrmsg *ifa = NLMSG_DATA(n);
535
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100536 if (ifa->ifa_index != ifi->ifi_index
537 || (G_filter.family && G_filter.family != ifa->ifa_family)
538 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000539 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100540 }
541 if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000542 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100543 if ((G_filter.flags ^ ifa->ifa_flags) & G_filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000544 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100545 if (G_filter.pfx.family || G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000546 struct rtattr *tb[IFA_MAX+1];
Denys Vlasenko68ae5422018-02-08 08:42:37 +0100547 //memset(tb, 0, sizeof(tb)); - parse_rtattr does this
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000548 parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
549 if (!tb[IFA_LOCAL])
550 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
551
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100552 if (G_filter.pfx.family && tb[IFA_LOCAL]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000553 inet_prefix dst;
554 memset(&dst, 0, sizeof(dst));
555 dst.family = ifa->ifa_family;
556 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100557 if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000558 continue;
559 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100560 if (G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000561 const char *label;
562 if (tb[IFA_LABEL])
563 label = RTA_DATA(tb[IFA_LABEL]);
564 else
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200565 label = ll_index_to_name(ifa->ifa_index);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100566 if (fnmatch(G_filter.label, label, 0) != 0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000567 continue;
568 }
569 }
570
571 ok = 1;
572 break;
573 }
574 if (!ok)
575 *lp = l->next;
576 else
577 lp = &l->next;
578 }
579 }
580
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000581 for (l = linfo; l; l = l->next) {
Stefan Sørensenbb3a9532019-03-30 18:24:46 +0100582 if ((oneline && G_filter.family != AF_PACKET)
Denys Vlasenkodb169f22018-03-08 15:55:07 +0100583 /* ^^^^^^^^^ "ip -oneline a" does not print link info */
Denys Vlasenko13f42042019-04-29 00:34:07 +0200584 || (print_linkinfo(&l->h) == 0)
Denys Vlasenkodb169f22018-03-08 15:55:07 +0100585 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000586 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100587 if (G_filter.family != AF_PACKET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000588 print_selected_addrinfo(ifi->ifi_index, ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000589 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000590 }
591
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000592 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000593}
594
Christian Eggers8a485b02020-06-29 17:57:26 +0200595static void set_lifetime(unsigned int *lifetime, char *argv, const char *errmsg)
596{
597 if (strcmp(argv, "forever") == 0)
598 *lifetime = INFINITY_LIFE_TIME;
599 else
600 *lifetime = get_u32(argv, errmsg);
601}
602
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000603static int default_scope(inet_prefix *lcl)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000604{
605 if (lcl->family == AF_INET) {
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000606 if (lcl->bytelen >= 1 && *(uint8_t*)&lcl->data == 127)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000607 return RT_SCOPE_HOST;
608 }
609 return 0;
610}
611
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000612/* Return value becomes exitcode. It's okay to not return at all */
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300613static int ipaddr_modify(int cmd, int flags, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000614{
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200615 /* If you add stuff here, update ipaddr_full_usage */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000616 static const char option[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000617 "peer\0""remote\0""broadcast\0""brd\0"
Christian Eggers8a485b02020-06-29 17:57:26 +0200618 "anycast\0""valid_lft\0""preferred_lft\0"
619 "scope\0""dev\0""label\0""noprefixroute\0""local\0";
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200620#define option_peer option
621#define option_broadcast (option + sizeof("peer") + sizeof("remote"))
622#define option_anycast (option_broadcast + sizeof("broadcast") + sizeof("brd"))
Christian Eggers8a485b02020-06-29 17:57:26 +0200623#define option_valid_lft (option_anycast + sizeof("anycast"))
624#define option_pref_lft (option_valid_lft + sizeof("valid_lft"))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000625 struct rtnl_handle rth;
626 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000627 struct nlmsghdr n;
628 struct ifaddrmsg ifa;
629 char buf[256];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000630 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000631 char *d = NULL;
632 char *l = NULL;
Christian Eggers8a485b02020-06-29 17:57:26 +0200633 char *valid_lftp = NULL;
634 char *preferred_lftp = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000635 inet_prefix lcl;
636 inet_prefix peer;
637 int local_len = 0;
638 int peer_len = 0;
639 int brd_len = 0;
640 int any_len = 0;
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000641 bool scoped = 0;
Christian Eggers8a485b02020-06-29 17:57:26 +0200642 __u32 valid_lft = INFINITY_LIFE_TIME;
643 __u32 preferred_lft = INFINITY_LIFE_TIME;
Christian Eggers31d34f32020-06-29 17:57:25 +0200644 unsigned int ifa_flags = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000645
646 memset(&req, 0, sizeof(req));
647
648 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300649 req.n.nlmsg_flags = NLM_F_REQUEST | flags;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000650 req.n.nlmsg_type = cmd;
651 req.ifa.ifa_family = preferred_family;
652
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000653 while (*argv) {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200654 unsigned arg = index_in_strings(option, *argv);
655 /* if search fails, "local" is assumed */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000656
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200657 if (arg <= 1) { /* peer, remote */
Christian Eggers8a485b02020-06-29 17:57:26 +0200658 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200659 if (peer_len) {
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200660 duparg(option_peer, *argv);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000661 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200662 get_prefix(&peer, *argv, req.ifa.ifa_family);
663 peer_len = peer.bytelen;
664 if (req.ifa.ifa_family == AF_UNSPEC) {
665 req.ifa.ifa_family = peer.family;
666 }
667 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
668 req.ifa.ifa_prefixlen = peer.bitlen;
669 } else if (arg <= 3) { /* broadcast, brd */
670 inet_prefix addr;
Christian Eggers8a485b02020-06-29 17:57:26 +0200671 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200672 if (brd_len) {
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200673 duparg(option_broadcast, *argv);
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200674 }
675 if (LONE_CHAR(*argv, '+')) {
676 brd_len = -1;
677 } else if (LONE_DASH(*argv)) {
678 brd_len = -2;
679 } else {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000680 get_addr(&addr, *argv, req.ifa.ifa_family);
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200681 if (req.ifa.ifa_family == AF_UNSPEC)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000682 req.ifa.ifa_family = addr.family;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200683 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
684 brd_len = addr.bytelen;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000685 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200686 } else if (arg == 4) { /* anycast */
687 inet_prefix addr;
Christian Eggers8a485b02020-06-29 17:57:26 +0200688 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200689 if (any_len) {
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200690 duparg(option_anycast, *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000691 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200692 get_addr(&addr, *argv, req.ifa.ifa_family);
693 if (req.ifa.ifa_family == AF_UNSPEC) {
694 req.ifa.ifa_family = addr.family;
695 }
696 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
697 any_len = addr.bytelen;
Christian Eggers8a485b02020-06-29 17:57:26 +0200698 } else if (arg == 5) { /* valid_lft */
699 if (valid_lftp)
700 duparg(option_valid_lft, *argv);
701 NEXT_ARG();
702 valid_lftp = *argv;
703 set_lifetime(&valid_lft, *argv, option_valid_lft);
704 } else if (arg == 6) { /* preferred_lft */
705 if (preferred_lftp)
706 duparg(option_pref_lft, *argv);
707 NEXT_ARG();
708 preferred_lftp = *argv;
709 set_lifetime(&preferred_lft, *argv, option_pref_lft);
710 } else if (arg == 7) { /* scope */
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200711 uint32_t scope = 0;
Christian Eggers8a485b02020-06-29 17:57:26 +0200712 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200713 if (rtnl_rtscope_a2n(&scope, *argv)) {
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200714 invarg_1_to_2(*argv, "scope");
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200715 }
716 req.ifa.ifa_scope = scope;
717 scoped = 1;
Christian Eggers8a485b02020-06-29 17:57:26 +0200718 } else if (arg == 8) { /* dev */
719 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200720 d = *argv;
Christian Eggers8a485b02020-06-29 17:57:26 +0200721 } else if (arg == 9) { /* label */
722 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200723 l = *argv;
Denys Vlasenkofd744512010-07-04 03:55:43 +0200724 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l) + 1);
Christian Eggers8a485b02020-06-29 17:57:26 +0200725 } else if (arg == 10) { /* noprefixroute */
Christian Eggers31d34f32020-06-29 17:57:25 +0200726 ifa_flags |= IFA_F_NOPREFIXROUTE;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200727 } else {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200728 /* local (specified or assumed) */
Christian Eggers8a485b02020-06-29 17:57:26 +0200729 if ((int)arg >= 0)
730 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200731 if (local_len) {
732 duparg2("local", *argv);
733 }
734 get_prefix(&lcl, *argv, req.ifa.ifa_family);
735 if (req.ifa.ifa_family == AF_UNSPEC) {
736 req.ifa.ifa_family = lcl.family;
737 }
738 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
739 local_len = lcl.bytelen;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000740 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000741 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000742 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000743
Christian Eggers31d34f32020-06-29 17:57:25 +0200744 if (ifa_flags <= 0xff)
745 req.ifa.ifa_flags = ifa_flags;
746 else
747 addattr32(&req.n, sizeof(req), IFA_FLAGS, ifa_flags);
748
Denys Vlasenkofd744512010-07-04 03:55:43 +0200749 if (!d) {
750 /* There was no "dev IFACE", but we need that */
James Byrne69374872019-07-02 11:35:03 +0200751 bb_simple_error_msg_and_die("need \"dev IFACE\"");
Denys Vlasenkofd744512010-07-04 03:55:43 +0200752 }
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100753 if (l && !is_prefixed_with(l, d)) {
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000754 bb_error_msg_and_die("\"dev\" (%s) must match \"label\" (%s)", d, l);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000755 }
756
757 if (peer_len == 0 && local_len && cmd != RTM_DELADDR) {
758 peer = lcl;
759 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
760 }
761 if (req.ifa.ifa_prefixlen == 0)
762 req.ifa.ifa_prefixlen = lcl.bitlen;
763
764 if (brd_len < 0 && cmd != RTM_DELADDR) {
765 inet_prefix brd;
766 int i;
767 if (req.ifa.ifa_family != AF_INET) {
James Byrne69374872019-07-02 11:35:03 +0200768 bb_simple_error_msg_and_die("broadcast can be set only for IPv4 addresses");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000769 }
770 brd = peer;
771 if (brd.bitlen <= 30) {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200772 for (i = 31; i >= brd.bitlen; i--) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000773 if (brd_len == -1)
774 brd.data[0] |= htonl(1<<(31-i));
775 else
776 brd.data[0] &= ~htonl(1<<(31-i));
777 }
778 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
779 brd_len = brd.bytelen;
780 }
781 }
782 if (!scoped && cmd != RTM_DELADDR)
783 req.ifa.ifa_scope = default_scope(&lcl);
784
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000785 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000786
787 ll_init_map(&rth);
788
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000789 req.ifa.ifa_index = xll_name_to_index(d);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000790
Christian Eggers8a485b02020-06-29 17:57:26 +0200791 if (valid_lftp || preferred_lftp) {
792 struct ifa_cacheinfo cinfo = {};
793
794 if (!valid_lft) {
795 fprintf(stderr, "valid_lft is zero\n");
796 return 1;
797 }
798 if (valid_lft < preferred_lft) {
799 fprintf(stderr, "preferred_lft is greater than valid_lft\n");
800 return 1;
801 }
802
803 cinfo.ifa_prefered = preferred_lft;
804 cinfo.ifa_valid = valid_lft;
805 addattr_l(&req.n, sizeof(req), IFA_CACHEINFO, &cinfo,
806 sizeof(cinfo));
807 }
808
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000809 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000810 return 2;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000811
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000812 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000813}
814
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000815/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +0200816int FAST_FUNC do_ipaddr(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000817{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000818 static const char commands[] ALIGN1 =
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300819 /* 0 1 2 3 4 5 6 7 8 */
820 "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 +0200821 int cmd = 2;
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200822
823 INIT_G();
824
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000825 if (*argv) {
Bernhard Reutner-Fischercc4493a2010-05-25 17:42:01 +0200826 cmd = index_in_substrings(commands, *argv);
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200827 if (cmd < 0)
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200828 invarg_1_to_2(*argv, applet_name);
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000829 argv++;
Denys Vlasenkodb31c632015-07-01 18:36:06 +0200830 if (cmd <= 4) {
831 return ipaddr_modify(
832 /*cmd:*/ cmd == 4 ? RTM_DELADDR : RTM_NEWADDR,
833 /*flags:*/
834 cmd == 0 ? NLM_F_CREATE|NLM_F_EXCL : /* add */
835 cmd == 1 || cmd == 2 ? NLM_F_REPLACE : /* change */
836 cmd == 3 ? NLM_F_CREATE|NLM_F_REPLACE : /* replace */
837 0 /* delete */
838 , argv);
839 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000840 }
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300841 return ipaddr_list_or_flush(argv, cmd == 8);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000842}