blob: dfd84c00058ac34625dc6d5a07364ac07a5cdffa [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]) {
Denis Vlasenko605b20e2007-09-30 16:22:36 +0000195 fputs(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,
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000198 b1, sizeof(b1)), stdout);
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 ");
Denis Vlasenko605b20e2007-09-30 16:22:36 +0000205 fputs(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,
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000208 b1, sizeof(b1)), stdout);
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]) {
Denys Vlasenko926d8012015-10-14 13:56:42 +0200310 fputs(rt_addr_n2a(ifa->ifa_family, RTA_DATA(rta_tb[IFA_LOCAL])),
311 stdout
312 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000313
Denis Vlasenko76140a72009-03-05 09:21:57 +0000314 if (rta_tb[IFA_ADDRESS] == NULL
315 || memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0
316 ) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000317 printf("/%d ", ifa->ifa_prefixlen);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000318 } else {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000319 printf(" peer %s/%d ",
Denys Vlasenko926d8012015-10-14 13:56:42 +0200320 rt_addr_n2a(ifa->ifa_family, RTA_DATA(rta_tb[IFA_ADDRESS])),
321 ifa->ifa_prefixlen
322 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000323 }
324 }
325
326 if (rta_tb[IFA_BROADCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000327 printf("brd %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000328 rt_addr_n2a(ifa->ifa_family,
Denys Vlasenko926d8012015-10-14 13:56:42 +0200329 RTA_DATA(rta_tb[IFA_BROADCAST]))
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100330 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000331 }
332 if (rta_tb[IFA_ANYCAST]) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000333 printf("any %s ",
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000334 rt_addr_n2a(ifa->ifa_family,
Denys Vlasenko926d8012015-10-14 13:56:42 +0200335 RTA_DATA(rta_tb[IFA_ANYCAST]))
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100336 );
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000337 }
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200338 printf("scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope));
Christian Eggers31d34f32020-06-29 17:57:25 +0200339 if (ifa_flags & IFA_F_SECONDARY) {
340 ifa_flags &= ~IFA_F_SECONDARY;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000341 printf("secondary ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000342 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200343 if (ifa_flags & IFA_F_TENTATIVE) {
344 ifa_flags &= ~IFA_F_TENTATIVE;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000345 printf("tentative ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000346 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200347 if (ifa_flags & IFA_F_DADFAILED) {
348 ifa_flags &= ~IFA_F_DADFAILED;
Kaarle Ritvanen1c952ba2018-12-31 19:52:32 +0200349 printf("dadfailed ");
350 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200351 if (ifa_flags & IFA_F_DEPRECATED) {
352 ifa_flags &= ~IFA_F_DEPRECATED;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000353 printf("deprecated ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000354 }
Christian Eggers31d34f32020-06-29 17:57:25 +0200355 if (!(ifa_flags & IFA_F_PERMANENT)) {
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000356 printf("dynamic ");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000357 } else
Christian Eggers31d34f32020-06-29 17:57:25 +0200358 ifa_flags &= ~IFA_F_PERMANENT;
359 if (ifa_flags & IFA_F_NOPREFIXROUTE) {
360 ifa_flags &= ~IFA_F_NOPREFIXROUTE;
361 printf("noprefixroute ");
362 }
363 if (ifa_flags)
364 printf("flags %02x ", ifa_flags);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000365 if (rta_tb[IFA_LABEL])
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000366 fputs((char*)RTA_DATA(rta_tb[IFA_LABEL]), stdout);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000367 if (rta_tb[IFA_CACHEINFO]) {
368 struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]);
369 char buf[128];
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000370 bb_putchar(_SL_);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000371 if (ci->ifa_valid == 0xFFFFFFFFU)
372 sprintf(buf, "valid_lft forever");
373 else
374 sprintf(buf, "valid_lft %dsec", ci->ifa_valid);
375 if (ci->ifa_prefered == 0xFFFFFFFFU)
376 sprintf(buf+strlen(buf), " preferred_lft forever");
377 else
378 sprintf(buf+strlen(buf), " preferred_lft %dsec", ci->ifa_prefered);
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000379 printf(" %s", buf);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000380 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000381 bb_putchar('\n');
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100382 /*fflush_all();*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000383 return 0;
384}
385
386
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200387struct nlmsg_list {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000388 struct nlmsg_list *next;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200389 struct nlmsghdr h;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000390};
391
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000392static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000393{
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000394 for (; ainfo; ainfo = ainfo->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000395 struct nlmsghdr *n = &ainfo->h;
396 struct ifaddrmsg *ifa = NLMSG_DATA(n);
397
398 if (n->nlmsg_type != RTM_NEWADDR)
399 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000400 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
401 return -1;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100402 if (ifa->ifa_index != ifindex
403 || (G_filter.family && G_filter.family != ifa->ifa_family)
404 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000405 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100406 }
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000407 print_addrinfo(NULL, n, NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000408 }
409 return 0;
410}
411
412
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200413static int FAST_FUNC store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000414{
415 struct nlmsg_list **linfo = (struct nlmsg_list**)arg;
416 struct nlmsg_list *h;
417 struct nlmsg_list **lp;
418
Denys Vlasenko90377872010-01-08 09:07:50 +0100419 h = xzalloc(n->nlmsg_len + sizeof(void*));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000420
421 memcpy(&h->h, n, n->nlmsg_len);
Denys Vlasenko90377872010-01-08 09:07:50 +0100422 /*h->next = NULL; - xzalloc did it */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000423
Denis Vlasenko3e57adb2008-05-31 07:33:18 +0000424 for (lp = linfo; *lp; lp = &(*lp)->next)
425 continue;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000426 *lp = h;
427
428 ll_remember_index(who, n, NULL);
429 return 0;
430}
431
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000432static void ipaddr_reset_filter(int _oneline)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000433{
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100434 memset(&G_filter, 0, sizeof(G_filter));
435 G_filter.oneline = _oneline;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000436}
437
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000438/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +0200439int FAST_FUNC ipaddr_list_or_flush(char **argv, int flush)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000440{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000441 static const char option[] ALIGN1 = "to\0""scope\0""up\0""label\0""dev\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000442
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000443 struct nlmsg_list *linfo = NULL;
444 struct nlmsg_list *ainfo = NULL;
445 struct nlmsg_list *l;
446 struct rtnl_handle rth;
447 char *filter_dev = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000448
449 ipaddr_reset_filter(oneline);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100450 G_filter.showqueue = 1;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000451
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100452 if (G_filter.family == AF_UNSPEC)
453 G_filter.family = preferred_family;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000454
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000455 if (flush) {
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000456 if (!*argv) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000457 bb_error_msg_and_die(bb_msg_requires_arg, "flush");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000458 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100459 if (G_filter.family == AF_PACKET) {
James Byrne69374872019-07-02 11:35:03 +0200460 bb_simple_error_msg_and_die("can't flush link addresses");
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000461 }
462 }
463
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000464 while (*argv) {
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200465 const smalluint key = index_in_strings(option, *argv);
466 if (key == 0) { /* to */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200467 NEXT_ARG();
468 get_prefix(&G_filter.pfx, *argv, G_filter.family);
469 if (G_filter.family == AF_UNSPEC) {
470 G_filter.family = G_filter.pfx.family;
471 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200472 } else if (key == 1) { /* scope */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200473 uint32_t scope = 0;
474 NEXT_ARG();
475 G_filter.scopemask = -1;
476 if (rtnl_rtscope_a2n(&scope, *argv)) {
477 if (strcmp(*argv, "all") != 0) {
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200478 invarg_1_to_2(*argv, "scope");
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000479 }
Denys Vlasenkofd744512010-07-04 03:55:43 +0200480 scope = RT_SCOPE_NOWHERE;
481 G_filter.scopemask = 0;
482 }
483 G_filter.scope = scope;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200484 } else if (key == 2) { /* up */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200485 G_filter.up = 1;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200486 } else if (key == 3) { /* label */
Denys Vlasenkofd744512010-07-04 03:55:43 +0200487 NEXT_ARG();
488 G_filter.label = *argv;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200489 } else {
490 if (key == 4) /* dev */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000491 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200492 if (filter_dev)
493 duparg2("dev", *argv);
494 filter_dev = *argv;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000495 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000496 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000497 }
498
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000499 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000500
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000501 xrtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK);
502 xrtnl_dump_filter(&rth, store_nlmsg, &linfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000503
504 if (filter_dev) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100505 G_filter.ifindex = xll_name_to_index(filter_dev);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000506 }
507
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000508 if (flush) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000509 char flushb[4096-512];
510
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100511 G_filter.flushb = flushb;
512 G_filter.flushp = 0;
513 G_filter.flushe = sizeof(flushb);
514 G_filter.rth = &rth;
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000515
516 for (;;) {
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100517 xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
518 G_filter.flushed = 0;
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000519 xrtnl_dump_filter(&rth, print_addrinfo, NULL);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100520 if (G_filter.flushed == 0) {
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000521 return 0;
522 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100523 if (flush_update() < 0) {
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000524 return 1;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100525 }
Glenn L McGrathd66370c2003-01-13 21:40:38 +0000526 }
527 }
528
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100529 if (G_filter.family != AF_PACKET) {
530 xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000531 xrtnl_dump_filter(&rth, store_nlmsg, &ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000532 }
533
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100534 if (G_filter.family && G_filter.family != AF_PACKET) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000535 struct nlmsg_list **lp;
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000536 lp = &linfo;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000537
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000538 while ((l = *lp) != NULL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000539 int ok = 0;
540 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
541 struct nlmsg_list *a;
542
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000543 for (a = ainfo; a; a = a->next) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000544 struct nlmsghdr *n = &a->h;
545 struct ifaddrmsg *ifa = NLMSG_DATA(n);
546
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100547 if (ifa->ifa_index != ifi->ifi_index
548 || (G_filter.family && G_filter.family != ifa->ifa_family)
549 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000550 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100551 }
552 if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000553 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100554 if ((G_filter.flags ^ ifa->ifa_flags) & G_filter.flagmask)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000555 continue;
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100556 if (G_filter.pfx.family || G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000557 struct rtattr *tb[IFA_MAX+1];
Denys Vlasenko68ae5422018-02-08 08:42:37 +0100558 //memset(tb, 0, sizeof(tb)); - parse_rtattr does this
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000559 parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
560 if (!tb[IFA_LOCAL])
561 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
562
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100563 if (G_filter.pfx.family && tb[IFA_LOCAL]) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000564 inet_prefix dst;
565 memset(&dst, 0, sizeof(dst));
566 dst.family = ifa->ifa_family;
567 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100568 if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000569 continue;
570 }
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100571 if (G_filter.label) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000572 const char *label;
573 if (tb[IFA_LABEL])
574 label = RTA_DATA(tb[IFA_LABEL]);
575 else
Denys Vlasenko3d8d5e82015-10-08 13:02:28 +0200576 label = ll_index_to_name(ifa->ifa_index);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100577 if (fnmatch(G_filter.label, label, 0) != 0)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000578 continue;
579 }
580 }
581
582 ok = 1;
583 break;
584 }
585 if (!ok)
586 *lp = l->next;
587 else
588 lp = &l->next;
589 }
590 }
591
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000592 for (l = linfo; l; l = l->next) {
Stefan Sørensenbb3a9532019-03-30 18:24:46 +0100593 if ((oneline && G_filter.family != AF_PACKET)
Denys Vlasenkodb169f22018-03-08 15:55:07 +0100594 /* ^^^^^^^^^ "ip -oneline a" does not print link info */
Denys Vlasenko13f42042019-04-29 00:34:07 +0200595 || (print_linkinfo(&l->h) == 0)
Denys Vlasenkodb169f22018-03-08 15:55:07 +0100596 ) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000597 struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
Denys Vlasenkoffc4bce2010-01-26 11:03:16 +0100598 if (G_filter.family != AF_PACKET)
Denis Vlasenkobedfabd2008-06-05 05:00:24 +0000599 print_selected_addrinfo(ifi->ifi_index, ainfo);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000600 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000601 }
602
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000603 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000604}
605
Christian Eggers8a485b02020-06-29 17:57:26 +0200606static void set_lifetime(unsigned int *lifetime, char *argv, const char *errmsg)
607{
608 if (strcmp(argv, "forever") == 0)
609 *lifetime = INFINITY_LIFE_TIME;
610 else
611 *lifetime = get_u32(argv, errmsg);
612}
613
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000614static int default_scope(inet_prefix *lcl)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000615{
616 if (lcl->family == AF_INET) {
Denis Vlasenko98ee06d2006-12-31 18:57:37 +0000617 if (lcl->bytelen >= 1 && *(uint8_t*)&lcl->data == 127)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000618 return RT_SCOPE_HOST;
619 }
620 return 0;
621}
622
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000623/* Return value becomes exitcode. It's okay to not return at all */
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300624static int ipaddr_modify(int cmd, int flags, char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000625{
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200626 /* If you add stuff here, update ipaddr_full_usage */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000627 static const char option[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000628 "peer\0""remote\0""broadcast\0""brd\0"
Christian Eggers8a485b02020-06-29 17:57:26 +0200629 "anycast\0""valid_lft\0""preferred_lft\0"
630 "scope\0""dev\0""label\0""noprefixroute\0""local\0";
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200631#define option_peer option
632#define option_broadcast (option + sizeof("peer") + sizeof("remote"))
633#define option_anycast (option_broadcast + sizeof("broadcast") + sizeof("brd"))
Christian Eggers8a485b02020-06-29 17:57:26 +0200634#define option_valid_lft (option_anycast + sizeof("anycast"))
635#define option_pref_lft (option_valid_lft + sizeof("valid_lft"))
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000636 struct rtnl_handle rth;
637 struct {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000638 struct nlmsghdr n;
639 struct ifaddrmsg ifa;
640 char buf[256];
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000641 } req;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000642 char *d = NULL;
643 char *l = NULL;
Christian Eggers8a485b02020-06-29 17:57:26 +0200644 char *valid_lftp = NULL;
645 char *preferred_lftp = NULL;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000646 inet_prefix lcl;
647 inet_prefix peer;
648 int local_len = 0;
649 int peer_len = 0;
650 int brd_len = 0;
651 int any_len = 0;
Bernhard Reutner-Fischercd0e80c2007-06-20 14:53:49 +0000652 bool scoped = 0;
Christian Eggers8a485b02020-06-29 17:57:26 +0200653 __u32 valid_lft = INFINITY_LIFE_TIME;
654 __u32 preferred_lft = INFINITY_LIFE_TIME;
Christian Eggers31d34f32020-06-29 17:57:25 +0200655 unsigned int ifa_flags = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000656
657 memset(&req, 0, sizeof(req));
658
659 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300660 req.n.nlmsg_flags = NLM_F_REQUEST | flags;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000661 req.n.nlmsg_type = cmd;
662 req.ifa.ifa_family = preferred_family;
663
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000664 while (*argv) {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200665 unsigned arg = index_in_strings(option, *argv);
666 /* if search fails, "local" is assumed */
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000667
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200668 if (arg <= 1) { /* peer, remote */
Christian Eggers8a485b02020-06-29 17:57:26 +0200669 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200670 if (peer_len) {
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200671 duparg(option_peer, *argv);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000672 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200673 get_prefix(&peer, *argv, req.ifa.ifa_family);
674 peer_len = peer.bytelen;
675 if (req.ifa.ifa_family == AF_UNSPEC) {
676 req.ifa.ifa_family = peer.family;
677 }
678 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
679 req.ifa.ifa_prefixlen = peer.bitlen;
680 } else if (arg <= 3) { /* broadcast, brd */
681 inet_prefix addr;
Christian Eggers8a485b02020-06-29 17:57:26 +0200682 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200683 if (brd_len) {
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200684 duparg(option_broadcast, *argv);
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200685 }
686 if (LONE_CHAR(*argv, '+')) {
687 brd_len = -1;
688 } else if (LONE_DASH(*argv)) {
689 brd_len = -2;
690 } else {
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000691 get_addr(&addr, *argv, req.ifa.ifa_family);
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200692 if (req.ifa.ifa_family == AF_UNSPEC)
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000693 req.ifa.ifa_family = addr.family;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200694 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
695 brd_len = addr.bytelen;
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000696 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200697 } else if (arg == 4) { /* anycast */
698 inet_prefix addr;
Christian Eggers8a485b02020-06-29 17:57:26 +0200699 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200700 if (any_len) {
Denys Vlasenko4eaa0f72017-04-07 18:14:46 +0200701 duparg(option_anycast, *argv);
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000702 }
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200703 get_addr(&addr, *argv, req.ifa.ifa_family);
704 if (req.ifa.ifa_family == AF_UNSPEC) {
705 req.ifa.ifa_family = addr.family;
706 }
707 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
708 any_len = addr.bytelen;
Christian Eggers8a485b02020-06-29 17:57:26 +0200709 } else if (arg == 5) { /* valid_lft */
710 if (valid_lftp)
711 duparg(option_valid_lft, *argv);
712 NEXT_ARG();
713 valid_lftp = *argv;
714 set_lifetime(&valid_lft, *argv, option_valid_lft);
715 } else if (arg == 6) { /* preferred_lft */
716 if (preferred_lftp)
717 duparg(option_pref_lft, *argv);
718 NEXT_ARG();
719 preferred_lftp = *argv;
720 set_lifetime(&preferred_lft, *argv, option_pref_lft);
721 } else if (arg == 7) { /* scope */
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200722 uint32_t scope = 0;
Christian Eggers8a485b02020-06-29 17:57:26 +0200723 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200724 if (rtnl_rtscope_a2n(&scope, *argv)) {
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200725 invarg_1_to_2(*argv, "scope");
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200726 }
727 req.ifa.ifa_scope = scope;
728 scoped = 1;
Christian Eggers8a485b02020-06-29 17:57:26 +0200729 } else if (arg == 8) { /* dev */
730 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200731 d = *argv;
Christian Eggers8a485b02020-06-29 17:57:26 +0200732 } else if (arg == 9) { /* label */
733 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200734 l = *argv;
Denys Vlasenkofd744512010-07-04 03:55:43 +0200735 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l) + 1);
Christian Eggers8a485b02020-06-29 17:57:26 +0200736 } else if (arg == 10) { /* noprefixroute */
Christian Eggers31d34f32020-06-29 17:57:25 +0200737 ifa_flags |= IFA_F_NOPREFIXROUTE;
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200738 } else {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200739 /* local (specified or assumed) */
Christian Eggers8a485b02020-06-29 17:57:26 +0200740 if ((int)arg >= 0)
741 NEXT_ARG();
Bernhard Reutner-Fischerc5f30c02010-05-25 18:46:09 +0200742 if (local_len) {
743 duparg2("local", *argv);
744 }
745 get_prefix(&lcl, *argv, req.ifa.ifa_family);
746 if (req.ifa.ifa_family == AF_UNSPEC) {
747 req.ifa.ifa_family = lcl.family;
748 }
749 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
750 local_len = lcl.bytelen;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000751 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000752 argv++;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000753 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000754
Christian Eggers31d34f32020-06-29 17:57:25 +0200755 if (ifa_flags <= 0xff)
756 req.ifa.ifa_flags = ifa_flags;
757 else
758 addattr32(&req.n, sizeof(req), IFA_FLAGS, ifa_flags);
759
Denys Vlasenkofd744512010-07-04 03:55:43 +0200760 if (!d) {
761 /* There was no "dev IFACE", but we need that */
James Byrne69374872019-07-02 11:35:03 +0200762 bb_simple_error_msg_and_die("need \"dev IFACE\"");
Denys Vlasenkofd744512010-07-04 03:55:43 +0200763 }
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100764 if (l && !is_prefixed_with(l, d)) {
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000765 bb_error_msg_and_die("\"dev\" (%s) must match \"label\" (%s)", d, l);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000766 }
767
768 if (peer_len == 0 && local_len && cmd != RTM_DELADDR) {
769 peer = lcl;
770 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
771 }
772 if (req.ifa.ifa_prefixlen == 0)
773 req.ifa.ifa_prefixlen = lcl.bitlen;
774
775 if (brd_len < 0 && cmd != RTM_DELADDR) {
776 inet_prefix brd;
777 int i;
778 if (req.ifa.ifa_family != AF_INET) {
James Byrne69374872019-07-02 11:35:03 +0200779 bb_simple_error_msg_and_die("broadcast can be set only for IPv4 addresses");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000780 }
781 brd = peer;
782 if (brd.bitlen <= 30) {
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200783 for (i = 31; i >= brd.bitlen; i--) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000784 if (brd_len == -1)
785 brd.data[0] |= htonl(1<<(31-i));
786 else
787 brd.data[0] &= ~htonl(1<<(31-i));
788 }
789 addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
790 brd_len = brd.bytelen;
791 }
792 }
793 if (!scoped && cmd != RTM_DELADDR)
794 req.ifa.ifa_scope = default_scope(&lcl);
795
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000796 xrtnl_open(&rth);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000797
798 ll_init_map(&rth);
799
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000800 req.ifa.ifa_index = xll_name_to_index(d);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000801
Christian Eggers8a485b02020-06-29 17:57:26 +0200802 if (valid_lftp || preferred_lftp) {
803 struct ifa_cacheinfo cinfo = {};
804
805 if (!valid_lft) {
806 fprintf(stderr, "valid_lft is zero\n");
807 return 1;
808 }
809 if (valid_lft < preferred_lft) {
810 fprintf(stderr, "preferred_lft is greater than valid_lft\n");
811 return 1;
812 }
813
814 cinfo.ifa_prefered = preferred_lft;
815 cinfo.ifa_valid = valid_lft;
816 addattr_l(&req.n, sizeof(req), IFA_CACHEINFO, &cinfo,
817 sizeof(cinfo));
818 }
819
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000820 if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000821 return 2;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000822
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000823 return 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000824}
825
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000826/* Return value becomes exitcode. It's okay to not return at all */
Denys Vlasenko2e9b5512010-07-24 23:27:38 +0200827int FAST_FUNC do_ipaddr(char **argv)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000828{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000829 static const char commands[] ALIGN1 =
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300830 /* 0 1 2 3 4 5 6 7 8 */
831 "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 +0200832 int cmd = 2;
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200833
834 INIT_G();
835
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000836 if (*argv) {
Bernhard Reutner-Fischercc4493a2010-05-25 17:42:01 +0200837 cmd = index_in_substrings(commands, *argv);
Denys Vlasenko9b58fe92013-07-15 05:15:46 +0200838 if (cmd < 0)
Denys Vlasenko0f296a32015-10-14 13:21:01 +0200839 invarg_1_to_2(*argv, applet_name);
Denis Vlasenkoed6a49c2007-11-18 22:56:25 +0000840 argv++;
Denys Vlasenkodb31c632015-07-01 18:36:06 +0200841 if (cmd <= 4) {
842 return ipaddr_modify(
843 /*cmd:*/ cmd == 4 ? RTM_DELADDR : RTM_NEWADDR,
844 /*flags:*/
845 cmd == 0 ? NLM_F_CREATE|NLM_F_EXCL : /* add */
846 cmd == 1 || cmd == 2 ? NLM_F_REPLACE : /* change */
847 cmd == 3 ? NLM_F_CREATE|NLM_F_REPLACE : /* replace */
848 0 /* delete */
849 , argv);
850 }
Glenn L McGrath2626ef62002-12-02 01:40:05 +0000851 }
Michael Tokarev6a7cd3d2015-05-20 16:27:44 +0300852 return ipaddr_list_or_flush(argv, cmd == 8);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000853}