blob: 17a838411327eefaf369192b6f093d3ba598b614 [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 Vlasenkoec9a5e62020-12-29 17:33:22 +010024/* for old uclibc */
Denys Vlasenko77a51a22020-12-29 16:53:11 +010025#ifndef IFA_F_NOPREFIXROUTE
26# define IFA_FLAGS 8
Denys Vlasenko77a51a22020-12-29 16:53:11 +010027# define IFA_F_NOPREFIXROUTE 0x200
Denys Vlasenkoec9a5e62020-12-29 17:33:22 +010028enum { /* can't do this with preporcessor, IFA_MAX is an (enum - 1), not preprocessor constant */
29 REAL_IFA_MAX = (IFA_MAX >= IFA_FLAGS) ? IFA_MAX : IFA_FLAGS,
30};
31# undef IFA_MAX
32# define IFA_MAX REAL_IFA_MAX
Denys Vlasenko77a51a22020-12-29 16:53:11 +010033#endif
34
Denys Vlasenko36659fd2010-02-05 14:40:23 +010035struct filter_t {
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000036 char *label;
Denys Vlasenko028c5aa2019-05-22 13:54:46 +020037 /* Flush cmd buf. If !NULL, print_addrinfo() constructs flush commands in it */
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000038 char *flushb;
39 struct rtnl_handle *rth;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000040 int scope, scopemask;
41 int flags, flagmask;
Glenn L McGrathd66370c2003-01-13 21:40:38 +000042 int flushp;
43 int flushe;
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000044 int ifindex;
45 family_t family;
46 smallint showqueue;
47 smallint oneline;
48 smallint up;
Denys Vlasenko028c5aa2019-05-22 13:54:46 +020049 /* Misnomer. Does not mean "flushed something" */
50 /* More like "flush commands were constructed by print_addrinfo()" */
Denis Vlasenko3e57adb2008-05-31 07:33:18 +000051 smallint flushed;
52 inet_prefix pfx;
Denys Vlasenko36659fd2010-02-05 14:40:23 +010053} FIX_ALIASING;
54typedef struct filter_t filter_t;
Denis Vlasenko540a2a12007-04-07 01:14:45 +000055
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020056#define G_filter (*(filter_t*)bb_common_bufsiz1)
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +020057#define INIT_G() do { setup_common_bufsiz(); } while (0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000058
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000059static void print_link_flags(unsigned flags, unsigned mdown)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000060{
Denis Vlasenko53354ac2008-06-07 15:10:29 +000061 static const int flag_masks[] = {
62 IFF_LOOPBACK, IFF_BROADCAST, IFF_POINTOPOINT,
63 IFF_MULTICAST, IFF_NOARP, IFF_UP, IFF_LOWER_UP };
64 static const char flag_labels[] ALIGN1 =
65 "LOOPBACK\0""BROADCAST\0""POINTOPOINT\0"
66 "MULTICAST\0""NOARP\0""UP\0""LOWER_UP\0";
67
Denis Vlasenko7d60fc12008-06-05 06:51:06 +000068 bb_putchar('<');
Bernhard Reutner-Fischer49ee8392010-05-25 09:55:42 +020069 if (flags & IFF_UP && !(flags & IFF_RUNNING))
70 printf("NO-CARRIER,");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000071 flags &= ~IFF_RUNNING;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000072#if 0
73 _PF(ALLMULTI);
74 _PF(PROMISC);
75 _PF(MASTER);
76 _PF(SLAVE);
77 _PF(DEBUG);
78 _PF(DYNAMIC);
79 _PF(AUTOMEDIA);
80 _PF(PORTSEL);
81 _PF(NOTRAILERS);
82#endif
Denis Vlasenko53354ac2008-06-07 15:10:29 +000083 flags = print_flags_separated(flag_masks, flag_labels, flags, ",");
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000084 if (flags)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000085 printf("%x", flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000086 if (mdown)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +000087 printf(",M-DOWN");
88 printf("> ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000089}
90
Glenn L McGrath2626ef62002-12-02 01:40:05 +000091static void print_queuelen(char *name)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000092{
93 struct ifreq ifr;
94 int s;
95
96 s = socket(AF_INET, SOCK_STREAM, 0);
97 if (s < 0)
98 return;
99
100 memset(&ifr, 0, sizeof(ifr));
Denis Vlasenko360d9662008-12-02 18:18:50 +0000101 strncpy_IFNAMSIZ(ifr.ifr_name, name);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000102 if (ioctl_or_warn(s, SIOCGIFTXQLEN, &ifr) < 0) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000103 close(s);
104 return;
105 }
106 close(s);
107
108 if (ifr.ifr_qlen)
109 printf("qlen %d", ifr.ifr_qlen);
110}
111
Denys Vlasenkoadf922e2009-10-08 14:35:37 +0200112static NOINLINE int print_linkinfo(const struct nlmsghdr *n)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000113{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000114 struct ifinfomsg *ifi = NLMSG_DATA(n);
Denys Vlasenko90377872010-01-08 09:07:50 +0100115 struct rtattr *tb[IFLA_MAX+1];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000116 int len = n->nlmsg_len;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000117
118 if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
119 return 0;
120
121 len -= NLMSG_LENGTH(sizeof(*ifi));
122 if (len < 0)
123 return -1;
124
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100125 if (G_filter.ifindex && ifi->ifi_index != G_filter.ifindex)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000126 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100127 if (G_filter.up && !(ifi->ifi_flags & IFF_UP))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000128 return 0;
129
Denys Vlasenko68ae5422018-02-08 08:42:37 +0100130 //memset(tb, 0, sizeof(tb)); - parse_rtattr does this
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000131 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
132 if (tb[IFLA_IFNAME] == NULL) {
James Byrne69374872019-07-02 11:35:03 +0200133 bb_simple_error_msg("nil ifname");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000134 return -1;
135 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100136 if (G_filter.label
137 && (!G_filter.family || G_filter.family == AF_PACKET)
138 && fnmatch(G_filter.label, RTA_DATA(tb[IFLA_IFNAME]), 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000139 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000140 return 0;
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000141 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000142
143 if (n->nlmsg_type == RTM_DELLINK)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000144 printf("Deleted ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000145
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000146 printf("%d: %s", ifi->ifi_index,
Denys Vlasenko90377872010-01-08 09:07:50 +0100147 /*tb[IFLA_IFNAME] ? (char*)RTA_DATA(tb[IFLA_IFNAME]) : "<nil>" - we checked tb[IFLA_IFNAME] above*/
148 (char*)RTA_DATA(tb[IFLA_IFNAME])
149 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000150
Denys Vlasenko90377872010-01-08 09:07:50 +0100151 {
152 unsigned m_flag = 0;
153 if (tb[IFLA_LINK]) {
Denys Vlasenko90377872010-01-08 09:07:50 +0100154 int iflink = *(int*)RTA_DATA(tb[IFLA_LINK]);
155 if (iflink == 0)
156 printf("@NONE: ");
157 else {
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200158 printf("@%s: ", ll_index_to_name(iflink));
Denys Vlasenko90377872010-01-08 09:07:50 +0100159 m_flag = ll_index_to_flags(iflink);
160 m_flag = !(m_flag & IFF_UP);
161 }
162 } else {
163 printf(": ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000164 }
Denys Vlasenko90377872010-01-08 09:07:50 +0100165 print_link_flags(ifi->ifi_flags, m_flag);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000166 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000167
168 if (tb[IFLA_MTU])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000169 printf("mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU]));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000170 if (tb[IFLA_QDISC])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000171 printf("qdisc %s ", (char*)RTA_DATA(tb[IFLA_QDISC]));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000172#ifdef IFLA_MASTER
173 if (tb[IFLA_MASTER]) {
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200174 printf("master %s ", ll_index_to_name(*(int*)RTA_DATA(tb[IFLA_MASTER])));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000175 }
176#endif
Stefan Seyfriedda4441c2011-02-21 17:29:59 +0100177/* IFLA_OPERSTATE was added to kernel with the same commit as IFF_DORMANT */
178#ifdef IFF_DORMANT
Bernhard Reutner-Fischer49ee8392010-05-25 09:55:42 +0200179 if (tb[IFLA_OPERSTATE]) {
180 static const char operstate_labels[] ALIGN1 =
181 "UNKNOWN\0""NOTPRESENT\0""DOWN\0""LOWERLAYERDOWN\0"
182 "TESTING\0""DORMANT\0""UP\0";
183 printf("state %s ", nth_string(operstate_labels,
Denys Vlasenkoeb29e912010-05-27 13:35:04 +0200184 *(uint8_t *)RTA_DATA(tb[IFLA_OPERSTATE])));
Bernhard Reutner-Fischer49ee8392010-05-25 09:55:42 +0200185 }
Stefan Seyfriedda4441c2011-02-21 17:29:59 +0100186#endif
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100187 if (G_filter.showqueue)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000188 print_queuelen((char*)RTA_DATA(tb[IFLA_IFNAME]));
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000189
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100190 if (!G_filter.family || G_filter.family == AF_PACKET) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000191 SPRINT_BUF(b1);
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200192 printf("%c link/%s ", _SL_, ll_type_n2a(ifi->ifi_type, b1));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000193
194 if (tb[IFLA_ADDRESS]) {
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100195 fputs_stdout(ll_addr_n2a(RTA_DATA(tb[IFLA_ADDRESS]),
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000196 RTA_PAYLOAD(tb[IFLA_ADDRESS]),
197 ifi->ifi_type,
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100198 b1, sizeof(b1)));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000199 }
200 if (tb[IFLA_BROADCAST]) {
Denis Vlasenkodfc07402007-10-29 19:33:26 +0000201 if (ifi->ifi_flags & IFF_POINTOPOINT)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000202 printf(" peer ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000203 else
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000204 printf(" brd ");
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100205 fputs_stdout(ll_addr_n2a(RTA_DATA(tb[IFLA_BROADCAST]),
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000206 RTA_PAYLOAD(tb[IFLA_BROADCAST]),
207 ifi->ifi_type,
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100208 b1, sizeof(b1)));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000209 }
210 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000211 bb_putchar('\n');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100212 /*fflush_all();*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000213 return 0;
214}
215
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000216static int flush_update(void)
217{
Denys Vlasenko028c5aa2019-05-22 13:54:46 +0200218 if (rtnl_send_check(G_filter.rth, G_filter.flushb, G_filter.flushp) < 0) {
James Byrne69374872019-07-02 11:35:03 +0200219 bb_simple_perror_msg("can't send flush request");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000220 return -1;
221 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100222 G_filter.flushp = 0;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000223 return 0;
224}
225
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200226static int FAST_FUNC print_addrinfo(const struct sockaddr_nl *who UNUSED_PARAM,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000227 struct nlmsghdr *n, void *arg UNUSED_PARAM)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000228{
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000229 struct ifaddrmsg *ifa = NLMSG_DATA(n);
230 int len = n->nlmsg_len;
Christian Eggers31d34f32020-06-29 17:57:25 +0200231 unsigned int ifa_flags;
Denys Vlasenko926d8012015-10-14 13:56:42 +0200232 struct rtattr *rta_tb[IFA_MAX+1];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000233
234 if (n->nlmsg_type != RTM_NEWADDR && n->nlmsg_type != RTM_DELADDR)
235 return 0;
236 len -= NLMSG_LENGTH(sizeof(*ifa));
237 if (len < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000238 bb_error_msg("wrong nlmsg len %d", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000239 return -1;
240 }
241
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100242 if (G_filter.flushb && n->nlmsg_type != RTM_NEWADDR)
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000243 return 0;
244
Denys Vlasenko68ae5422018-02-08 08:42:37 +0100245 //memset(rta_tb, 0, sizeof(rta_tb)); - parse_rtattr does this
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000246 parse_rtattr(rta_tb, IFA_MAX, IFA_RTA(ifa), n->nlmsg_len - NLMSG_LENGTH(sizeof(*ifa)));
247
Christian Eggers31d34f32020-06-29 17:57:25 +0200248 ifa_flags = rta_tb[IFA_FLAGS] ? *(__u32*)RTA_DATA(rta_tb[IFA_FLAGS]) : ifa->ifa_flags;
249
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000250 if (!rta_tb[IFA_LOCAL])
251 rta_tb[IFA_LOCAL] = rta_tb[IFA_ADDRESS];
252 if (!rta_tb[IFA_ADDRESS])
253 rta_tb[IFA_ADDRESS] = rta_tb[IFA_LOCAL];
254
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100255 if (G_filter.ifindex && G_filter.ifindex != ifa->ifa_index)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000256 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100257 if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000258 return 0;
Christian Eggers31d34f32020-06-29 17:57:25 +0200259 if ((G_filter.flags ^ ifa_flags) & G_filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000260 return 0;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100261 if (G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000262 const char *label;
263 if (rta_tb[IFA_LABEL])
264 label = RTA_DATA(rta_tb[IFA_LABEL]);
265 else
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200266 label = ll_index_to_name(ifa->ifa_index);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100267 if (fnmatch(G_filter.label, label, 0) != 0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000268 return 0;
269 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100270 if (G_filter.pfx.family) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000271 if (rta_tb[IFA_LOCAL]) {
272 inet_prefix dst;
273 memset(&dst, 0, sizeof(dst));
274 dst.family = ifa->ifa_family;
275 memcpy(&dst.data, RTA_DATA(rta_tb[IFA_LOCAL]), RTA_PAYLOAD(rta_tb[IFA_LOCAL]));
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100276 if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000277 return 0;
278 }
279 }
280
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100281 if (G_filter.flushb) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000282 struct nlmsghdr *fn;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100283 if (NLMSG_ALIGN(G_filter.flushp) + n->nlmsg_len > G_filter.flushe) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000284 if (flush_update())
285 return -1;
286 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100287 fn = (struct nlmsghdr*)(G_filter.flushb + NLMSG_ALIGN(G_filter.flushp));
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000288 memcpy(fn, n, n->nlmsg_len);
289 fn->nlmsg_type = RTM_DELADDR;
290 fn->nlmsg_flags = NLM_F_REQUEST;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100291 fn->nlmsg_seq = ++G_filter.rth->seq;
292 G_filter.flushp = (((char*)fn) + n->nlmsg_len) - G_filter.flushb;
293 G_filter.flushed = 1;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000294 return 0;
295 }
296
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000297 if (n->nlmsg_type == RTM_DELADDR)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000298 printf("Deleted ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000299
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100300 if (G_filter.oneline)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000301 printf("%u: %s", ifa->ifa_index, ll_index_to_name(ifa->ifa_index));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000302 if (ifa->ifa_family == AF_INET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000303 printf(" inet ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000304 else if (ifa->ifa_family == AF_INET6)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000305 printf(" inet6 ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000306 else
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000307 printf(" family %d ", ifa->ifa_family);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000308
309 if (rta_tb[IFA_LOCAL]) {
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100310 fputs_stdout(rt_addr_n2a(ifa->ifa_family, RTA_DATA(rta_tb[IFA_LOCAL])));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000311
Denis Vlasenko76140a72009-03-05 09:21:57 +0000312 if (rta_tb[IFA_ADDRESS] == NULL
313 || memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0
314 ) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000315 printf("/%d ", ifa->ifa_prefixlen);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000316 } else {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000317 printf(" peer %s/%d ",
Denys Vlasenko926d8012015-10-14 13:56:42 +0200318 rt_addr_n2a(ifa->ifa_family, RTA_DATA(rta_tb[IFA_ADDRESS])),
319 ifa->ifa_prefixlen
320 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000321 }
322 }
323
324 if (rta_tb[IFA_BROADCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000325 printf("brd %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000326 rt_addr_n2a(ifa->ifa_family,
Denys Vlasenko926d8012015-10-14 13:56:42 +0200327 RTA_DATA(rta_tb[IFA_BROADCAST]))
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100328 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000329 }
330 if (rta_tb[IFA_ANYCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000331 printf("any %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000332 rt_addr_n2a(ifa->ifa_family,
Denys Vlasenko926d8012015-10-14 13:56:42 +0200333 RTA_DATA(rta_tb[IFA_ANYCAST]))
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100334 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000335 }
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200336 printf("scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope));
Christian Eggers31d34f32020-06-29 17:57:25 +0200337 if (ifa_flags & IFA_F_SECONDARY) {
338 ifa_flags &= ~IFA_F_SECONDARY;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000339 printf("secondary ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000340 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200341 if (ifa_flags & IFA_F_TENTATIVE) {
342 ifa_flags &= ~IFA_F_TENTATIVE;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000343 printf("tentative ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000344 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200345 if (ifa_flags & IFA_F_DADFAILED) {
346 ifa_flags &= ~IFA_F_DADFAILED;
Kaarle Ritvanen1c952ba2018-12-31 19:52:32 +0200347 printf("dadfailed ");
348 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200349 if (ifa_flags & IFA_F_DEPRECATED) {
350 ifa_flags &= ~IFA_F_DEPRECATED;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000351 printf("deprecated ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000352 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200353 if (!(ifa_flags & IFA_F_PERMANENT)) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000354 printf("dynamic ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000355 } else
Christian Eggers31d34f32020-06-29 17:57:25 +0200356 ifa_flags &= ~IFA_F_PERMANENT;
357 if (ifa_flags & IFA_F_NOPREFIXROUTE) {
358 ifa_flags &= ~IFA_F_NOPREFIXROUTE;
359 printf("noprefixroute ");
360 }
361 if (ifa_flags)
362 printf("flags %02x ", ifa_flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000363 if (rta_tb[IFA_LABEL])
Ron Yorstoncad3fc72021-02-03 20:47:14 +0100364 fputs_stdout((char*)RTA_DATA(rta_tb[IFA_LABEL]));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000365 if (rta_tb[IFA_CACHEINFO]) {
366 struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]);
367 char buf[128];
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000368 bb_putchar(_SL_);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000369 if (ci->ifa_valid == 0xFFFFFFFFU)
370 sprintf(buf, "valid_lft forever");
371 else
372 sprintf(buf, "valid_lft %dsec", ci->ifa_valid);
373 if (ci->ifa_prefered == 0xFFFFFFFFU)
374 sprintf(buf+strlen(buf), " preferred_lft forever");
375 else
376 sprintf(buf+strlen(buf), " preferred_lft %dsec", ci->ifa_prefered);
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000377 printf(" %s", buf);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000378 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000379 bb_putchar('\n');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100380 /*fflush_all();*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000381 return 0;
382}
383
384
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200385struct nlmsg_list {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000386 struct nlmsg_list *next;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200387 struct nlmsghdr h;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000388};
389
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000390static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000391{
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000392 for (; ainfo; ainfo = ainfo->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000393 struct nlmsghdr *n = &ainfo->h;
394 struct ifaddrmsg *ifa = NLMSG_DATA(n);
395
396 if (n->nlmsg_type != RTM_NEWADDR)
397 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000398 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
399 return -1;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100400 if (ifa->ifa_index != ifindex
401 || (G_filter.family && G_filter.family != ifa->ifa_family)
402 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000403 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100404 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000405 print_addrinfo(NULL, n, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000406 }
407 return 0;
408}
409
410
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200411static int FAST_FUNC store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000412{
413 struct nlmsg_list **linfo = (struct nlmsg_list**)arg;
414 struct nlmsg_list *h;
415 struct nlmsg_list **lp;
416
Denys Vlasenko90377872010-01-08 09:07:50 +0100417 h = xzalloc(n->nlmsg_len + sizeof(void*));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000418
419 memcpy(&h->h, n, n->nlmsg_len);
Denys Vlasenko90377872010-01-08 09:07:50 +0100420 /*h->next = NULL; - xzalloc did it */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000421
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000422 for (lp = linfo; *lp; lp = &(*lp)->next)
423 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000424 *lp = h;
425
426 ll_remember_index(who, n, NULL);
427 return 0;
428}
429
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000430static void ipaddr_reset_filter(int _oneline)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000431{
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100432 memset(&G_filter, 0, sizeof(G_filter));
433 G_filter.oneline = _oneline;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000434}
435
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000436/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +0200437int FAST_FUNC ipaddr_list_or_flush(char **argv, int flush)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000438{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000439 static const char option[] ALIGN1 = "to\0""scope\0""up\0""label\0""dev\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000440
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000441 struct nlmsg_list *linfo = NULL;
442 struct nlmsg_list *ainfo = NULL;
443 struct nlmsg_list *l;
444 struct rtnl_handle rth;
445 char *filter_dev = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000446
447 ipaddr_reset_filter(oneline);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100448 G_filter.showqueue = 1;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000449
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100450 if (G_filter.family == AF_UNSPEC)
451 G_filter.family = preferred_family;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000452
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000453 if (flush) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000454 if (!*argv) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000455 bb_error_msg_and_die(bb_msg_requires_arg, "flush");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000456 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100457 if (G_filter.family == AF_PACKET) {
James Byrne69374872019-07-02 11:35:03 +0200458 bb_simple_error_msg_and_die("can't flush link addresses");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000459 }
460 }
461
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000462 while (*argv) {
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200463 const smalluint key = index_in_strings(option, *argv);
464 if (key == 0) { /* to */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200465 NEXT_ARG();
466 get_prefix(&G_filter.pfx, *argv, G_filter.family);
467 if (G_filter.family == AF_UNSPEC) {
468 G_filter.family = G_filter.pfx.family;
469 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200470 } else if (key == 1) { /* scope */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200471 uint32_t scope = 0;
472 NEXT_ARG();
473 G_filter.scopemask = -1;
474 if (rtnl_rtscope_a2n(&scope, *argv)) {
475 if (strcmp(*argv, "all") != 0) {
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200476 invarg_1_to_2(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000477 }
Denys Vlasenkofd744512010-07-04 03:55:43 +0200478 scope = RT_SCOPE_NOWHERE;
479 G_filter.scopemask = 0;
480 }
481 G_filter.scope = scope;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200482 } else if (key == 2) { /* up */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200483 G_filter.up = 1;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200484 } else if (key == 3) { /* label */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200485 NEXT_ARG();
486 G_filter.label = *argv;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200487 } else {
488 if (key == 4) /* dev */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000489 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200490 if (filter_dev)
491 duparg2("dev", *argv);
492 filter_dev = *argv;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000493 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000494 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000495 }
496
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000497 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000498
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000499 xrtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK);
500 xrtnl_dump_filter(&rth, store_nlmsg, &linfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000501
502 if (filter_dev) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100503 G_filter.ifindex = xll_name_to_index(filter_dev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000504 }
505
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000506 if (flush) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000507 char flushb[4096-512];
508
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100509 G_filter.flushb = flushb;
510 G_filter.flushp = 0;
511 G_filter.flushe = sizeof(flushb);
512 G_filter.rth = &rth;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000513
514 for (;;) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100515 xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
516 G_filter.flushed = 0;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000517 xrtnl_dump_filter(&rth, print_addrinfo, NULL);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100518 if (G_filter.flushed == 0) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000519 return 0;
520 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100521 if (flush_update() < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000522 return 1;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100523 }
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000524 }
525 }
526
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100527 if (G_filter.family != AF_PACKET) {
528 xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000529 xrtnl_dump_filter(&rth, store_nlmsg, &ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000530 }
531
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100532 if (G_filter.family && G_filter.family != AF_PACKET) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000533 struct nlmsg_list **lp;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000534 lp = &linfo;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000535
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000536 while ((l = *lp) != NULL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000537 int ok = 0;
538 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
539 struct nlmsg_list *a;
540
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000541 for (a = ainfo; a; a = a->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000542 struct nlmsghdr *n = &a->h;
543 struct ifaddrmsg *ifa = NLMSG_DATA(n);
544
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100545 if (ifa->ifa_index != ifi->ifi_index
546 || (G_filter.family && G_filter.family != ifa->ifa_family)
547 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000548 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100549 }
550 if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000551 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100552 if ((G_filter.flags ^ ifa->ifa_flags) & G_filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000553 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100554 if (G_filter.pfx.family || G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000555 struct rtattr *tb[IFA_MAX+1];
Denys Vlasenko68ae5422018-02-08 08:42:37 +0100556 //memset(tb, 0, sizeof(tb)); - parse_rtattr does this
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000557 parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
558 if (!tb[IFA_LOCAL])
559 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
560
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100561 if (G_filter.pfx.family && tb[IFA_LOCAL]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000562 inet_prefix dst;
563 memset(&dst, 0, sizeof(dst));
564 dst.family = ifa->ifa_family;
565 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100566 if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000567 continue;
568 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100569 if (G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000570 const char *label;
571 if (tb[IFA_LABEL])
572 label = RTA_DATA(tb[IFA_LABEL]);
573 else
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200574 label = ll_index_to_name(ifa->ifa_index);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100575 if (fnmatch(G_filter.label, label, 0) != 0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000576 continue;
577 }
578 }
579
580 ok = 1;
581 break;
582 }
583 if (!ok)
584 *lp = l->next;
585 else
586 lp = &l->next;
587 }
588 }
589
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000590 for (l = linfo; l; l = l->next) {
Stefan Sørensenbb3a9532019-03-30 18:24:46 +0100591 if ((oneline && G_filter.family != AF_PACKET)
Denys Vlasenkodb169f22018-03-08 15:55:07 +0100592 /* ^^^^^^^^^ "ip -oneline a" does not print link info */
Denys Vlasenko13f42042019-04-29 00:34:07 +0200593 || (print_linkinfo(&l->h) == 0)
Denys Vlasenkodb169f22018-03-08 15:55:07 +0100594 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000595 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100596 if (G_filter.family != AF_PACKET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000597 print_selected_addrinfo(ifi->ifi_index, ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000598 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000599 }
600
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000601 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000602}
603
Christian Eggers8a485b02020-06-29 17:57:26 +0200604static void set_lifetime(unsigned int *lifetime, char *argv, const char *errmsg)
605{
606 if (strcmp(argv, "forever") == 0)
607 *lifetime = INFINITY_LIFE_TIME;
608 else
609 *lifetime = get_u32(argv, errmsg);
610}
611
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000612static int default_scope(inet_prefix *lcl)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000613{
614 if (lcl->family == AF_INET) {
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000615 if (lcl->bytelen >= 1 && *(uint8_t*)&lcl->data == 127)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000616 return RT_SCOPE_HOST;
617 }
618 return 0;
619}
620
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000621/* Return value becomes exitcode. It's okay to not return at all */
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300622static int ipaddr_modify(int cmd, int flags, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000623{
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200624 /* If you add stuff here, update ipaddr_full_usage */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000625 static const char option[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000626 "peer\0""remote\0""broadcast\0""brd\0"
Christian Eggers8a485b02020-06-29 17:57:26 +0200627 "anycast\0""valid_lft\0""preferred_lft\0"
628 "scope\0""dev\0""label\0""noprefixroute\0""local\0";
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200629#define option_peer option
630#define option_broadcast (option + sizeof("peer") + sizeof("remote"))
631#define option_anycast (option_broadcast + sizeof("broadcast") + sizeof("brd"))
Christian Eggers8a485b02020-06-29 17:57:26 +0200632#define option_valid_lft (option_anycast + sizeof("anycast"))
633#define option_pref_lft (option_valid_lft + sizeof("valid_lft"))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000634 struct rtnl_handle rth;
635 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000636 struct nlmsghdr n;
637 struct ifaddrmsg ifa;
638 char buf[256];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000639 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000640 char *d = NULL;
641 char *l = NULL;
Christian Eggers8a485b02020-06-29 17:57:26 +0200642 char *valid_lftp = NULL;
643 char *preferred_lftp = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000644 inet_prefix lcl;
645 inet_prefix peer;
646 int local_len = 0;
647 int peer_len = 0;
648 int brd_len = 0;
649 int any_len = 0;
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000650 bool scoped = 0;
Christian Eggers8a485b02020-06-29 17:57:26 +0200651 __u32 valid_lft = INFINITY_LIFE_TIME;
652 __u32 preferred_lft = INFINITY_LIFE_TIME;
Christian Eggers31d34f32020-06-29 17:57:25 +0200653 unsigned int ifa_flags = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000654
655 memset(&req, 0, sizeof(req));
656
657 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300658 req.n.nlmsg_flags = NLM_F_REQUEST | flags;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000659 req.n.nlmsg_type = cmd;
660 req.ifa.ifa_family = preferred_family;
661
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000662 while (*argv) {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200663 unsigned arg = index_in_strings(option, *argv);
664 /* if search fails, "local" is assumed */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000665
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200666 if (arg <= 1) { /* peer, remote */
Christian Eggers8a485b02020-06-29 17:57:26 +0200667 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200668 if (peer_len) {
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200669 duparg(option_peer, *argv);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000670 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200671 get_prefix(&peer, *argv, req.ifa.ifa_family);
672 peer_len = peer.bytelen;
673 if (req.ifa.ifa_family == AF_UNSPEC) {
674 req.ifa.ifa_family = peer.family;
675 }
676 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
677 req.ifa.ifa_prefixlen = peer.bitlen;
678 } else if (arg <= 3) { /* broadcast, brd */
679 inet_prefix addr;
Christian Eggers8a485b02020-06-29 17:57:26 +0200680 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200681 if (brd_len) {
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200682 duparg(option_broadcast, *argv);
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200683 }
684 if (LONE_CHAR(*argv, '+')) {
685 brd_len = -1;
686 } else if (LONE_DASH(*argv)) {
687 brd_len = -2;
688 } else {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000689 get_addr(&addr, *argv, req.ifa.ifa_family);
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200690 if (req.ifa.ifa_family == AF_UNSPEC)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000691 req.ifa.ifa_family = addr.family;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200692 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
693 brd_len = addr.bytelen;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000694 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200695 } else if (arg == 4) { /* anycast */
696 inet_prefix addr;
Christian Eggers8a485b02020-06-29 17:57:26 +0200697 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200698 if (any_len) {
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200699 duparg(option_anycast, *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000700 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200701 get_addr(&addr, *argv, req.ifa.ifa_family);
702 if (req.ifa.ifa_family == AF_UNSPEC) {
703 req.ifa.ifa_family = addr.family;
704 }
705 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
706 any_len = addr.bytelen;
Christian Eggers8a485b02020-06-29 17:57:26 +0200707 } else if (arg == 5) { /* valid_lft */
708 if (valid_lftp)
709 duparg(option_valid_lft, *argv);
710 NEXT_ARG();
711 valid_lftp = *argv;
712 set_lifetime(&valid_lft, *argv, option_valid_lft);
713 } else if (arg == 6) { /* preferred_lft */
714 if (preferred_lftp)
715 duparg(option_pref_lft, *argv);
716 NEXT_ARG();
717 preferred_lftp = *argv;
718 set_lifetime(&preferred_lft, *argv, option_pref_lft);
719 } else if (arg == 7) { /* scope */
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200720 uint32_t scope = 0;
Christian Eggers8a485b02020-06-29 17:57:26 +0200721 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200722 if (rtnl_rtscope_a2n(&scope, *argv)) {
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200723 invarg_1_to_2(*argv, "scope");
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200724 }
725 req.ifa.ifa_scope = scope;
726 scoped = 1;
Christian Eggers8a485b02020-06-29 17:57:26 +0200727 } else if (arg == 8) { /* dev */
728 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200729 d = *argv;
Christian Eggers8a485b02020-06-29 17:57:26 +0200730 } else if (arg == 9) { /* label */
731 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200732 l = *argv;
Denys Vlasenkofd744512010-07-04 03:55:43 +0200733 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l) + 1);
Christian Eggers8a485b02020-06-29 17:57:26 +0200734 } else if (arg == 10) { /* noprefixroute */
Christian Eggers31d34f32020-06-29 17:57:25 +0200735 ifa_flags |= IFA_F_NOPREFIXROUTE;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200736 } else {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200737 /* local (specified or assumed) */
Christian Eggers8a485b02020-06-29 17:57:26 +0200738 if ((int)arg >= 0)
739 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200740 if (local_len) {
741 duparg2("local", *argv);
742 }
743 get_prefix(&lcl, *argv, req.ifa.ifa_family);
744 if (req.ifa.ifa_family == AF_UNSPEC) {
745 req.ifa.ifa_family = lcl.family;
746 }
747 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
748 local_len = lcl.bytelen;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000749 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000750 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000751 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000752
Christian Eggers31d34f32020-06-29 17:57:25 +0200753 if (ifa_flags <= 0xff)
754 req.ifa.ifa_flags = ifa_flags;
755 else
756 addattr32(&req.n, sizeof(req), IFA_FLAGS, ifa_flags);
757
Denys Vlasenkofd744512010-07-04 03:55:43 +0200758 if (!d) {
759 /* There was no "dev IFACE", but we need that */
James Byrne69374872019-07-02 11:35:03 +0200760 bb_simple_error_msg_and_die("need \"dev IFACE\"");
Denys Vlasenkofd744512010-07-04 03:55:43 +0200761 }
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100762 if (l && !is_prefixed_with(l, d)) {
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000763 bb_error_msg_and_die("\"dev\" (%s) must match \"label\" (%s)", d, l);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000764 }
765
766 if (peer_len == 0 && local_len && cmd != RTM_DELADDR) {
767 peer = lcl;
768 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
769 }
770 if (req.ifa.ifa_prefixlen == 0)
771 req.ifa.ifa_prefixlen = lcl.bitlen;
772
773 if (brd_len < 0 && cmd != RTM_DELADDR) {
774 inet_prefix brd;
775 int i;
776 if (req.ifa.ifa_family != AF_INET) {
James Byrne69374872019-07-02 11:35:03 +0200777 bb_simple_error_msg_and_die("broadcast can be set only for IPv4 addresses");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000778 }
779 brd = peer;
780 if (brd.bitlen <= 30) {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200781 for (i = 31; i >= brd.bitlen; i--) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000782 if (brd_len == -1)
783 brd.data[0] |= htonl(1<<(31-i));
784 else
785 brd.data[0] &= ~htonl(1<<(31-i));
786 }
787 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
788 brd_len = brd.bytelen;
789 }
790 }
791 if (!scoped && cmd != RTM_DELADDR)
792 req.ifa.ifa_scope = default_scope(&lcl);
793
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000794 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000795
796 ll_init_map(&rth);
797
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000798 req.ifa.ifa_index = xll_name_to_index(d);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000799
Christian Eggers8a485b02020-06-29 17:57:26 +0200800 if (valid_lftp || preferred_lftp) {
801 struct ifa_cacheinfo cinfo = {};
802
803 if (!valid_lft) {
804 fprintf(stderr, "valid_lft is zero\n");
805 return 1;
806 }
807 if (valid_lft < preferred_lft) {
808 fprintf(stderr, "preferred_lft is greater than valid_lft\n");
809 return 1;
810 }
811
812 cinfo.ifa_prefered = preferred_lft;
813 cinfo.ifa_valid = valid_lft;
814 addattr_l(&req.n, sizeof(req), IFA_CACHEINFO, &cinfo,
815 sizeof(cinfo));
816 }
817
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000818 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000819 return 2;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000820
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000821 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000822}
823
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000824/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +0200825int FAST_FUNC do_ipaddr(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000826{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000827 static const char commands[] ALIGN1 =
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300828 /* 0 1 2 3 4 5 6 7 8 */
829 "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 +0200830 int cmd = 2;
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200831
832 INIT_G();
833
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000834 if (*argv) {
Bernhard Reutner-Fischercc4493a2010-05-25 17:42:01 +0200835 cmd = index_in_substrings(commands, *argv);
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200836 if (cmd < 0)
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200837 invarg_1_to_2(*argv, applet_name);
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000838 argv++;
Denys Vlasenkodb31c632015-07-01 18:36:06 +0200839 if (cmd <= 4) {
840 return ipaddr_modify(
841 /*cmd:*/ cmd == 4 ? RTM_DELADDR : RTM_NEWADDR,
842 /*flags:*/
843 cmd == 0 ? NLM_F_CREATE|NLM_F_EXCL : /* add */
844 cmd == 1 || cmd == 2 ? NLM_F_REPLACE : /* change */
845 cmd == 3 ? NLM_F_CREATE|NLM_F_REPLACE : /* replace */
846 0 /* delete */
847 , argv);
848 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000849 }
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300850 return ipaddr_list_or_flush(argv, cmd == 8);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000851}