f2e340a42b1253d5aff063ec1b85291bd04c3c0b
[oweals/busybox.git] / networking / libiproute / ipaddress.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * ipaddress.c          "ip address".
4  *
5  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
6  *
7  * Authors:     Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
8  *
9  * Changes:
10  *      Laszlo Valko <valko@linux.karinthy.hu> 990223: address label must be zero terminated
11  */
12
13 #include <fnmatch.h>
14 #include <net/if.h>
15 #include <net/if_arp.h>
16
17 #include "ip_common.h"  /* #include "libbb.h" is inside */
18 #include "rt_names.h"
19 #include "utils.h"
20
21 #ifndef IFF_LOWER_UP
22 /* from linux/if.h */
23 #define IFF_LOWER_UP    0x10000         /* driver signals L1 up*/
24 #endif
25
26 typedef struct filter_t {
27         char *label;
28         char *flushb;
29         struct rtnl_handle *rth;
30         int scope, scopemask;
31         int flags, flagmask;
32         int flushp;
33         int flushe;
34         int ifindex;
35         family_t family;
36         smallint showqueue;
37         smallint oneline;
38         smallint up;
39         smallint flushed;
40         inet_prefix pfx;
41 } filter_t;
42
43 #define G_filter (*(filter_t*)&bb_common_bufsiz1)
44
45
46 static void print_link_flags(unsigned flags, unsigned mdown)
47 {
48         static const int flag_masks[] = {
49                 IFF_LOOPBACK, IFF_BROADCAST, IFF_POINTOPOINT,
50                 IFF_MULTICAST, IFF_NOARP, IFF_UP, IFF_LOWER_UP };
51         static const char flag_labels[] ALIGN1 =
52                 "LOOPBACK\0""BROADCAST\0""POINTOPOINT\0"
53                 "MULTICAST\0""NOARP\0""UP\0""LOWER_UP\0";
54
55         bb_putchar('<');
56         flags &= ~IFF_RUNNING;
57 #if 0
58         _PF(ALLMULTI);
59         _PF(PROMISC);
60         _PF(MASTER);
61         _PF(SLAVE);
62         _PF(DEBUG);
63         _PF(DYNAMIC);
64         _PF(AUTOMEDIA);
65         _PF(PORTSEL);
66         _PF(NOTRAILERS);
67 #endif
68         flags = print_flags_separated(flag_masks, flag_labels, flags, ",");
69         if (flags)
70                 printf("%x", flags);
71         if (mdown)
72                 printf(",M-DOWN");
73         printf("> ");
74 }
75
76 static void print_queuelen(char *name)
77 {
78         struct ifreq ifr;
79         int s;
80
81         s = socket(AF_INET, SOCK_STREAM, 0);
82         if (s < 0)
83                 return;
84
85         memset(&ifr, 0, sizeof(ifr));
86         strncpy_IFNAMSIZ(ifr.ifr_name, name);
87         if (ioctl_or_warn(s, SIOCGIFTXQLEN, &ifr) < 0) {
88                 close(s);
89                 return;
90         }
91         close(s);
92
93         if (ifr.ifr_qlen)
94                 printf("qlen %d", ifr.ifr_qlen);
95 }
96
97 static NOINLINE int print_linkinfo(const struct nlmsghdr *n)
98 {
99         struct ifinfomsg *ifi = NLMSG_DATA(n);
100         struct rtattr *tb[IFLA_MAX+1];
101         int len = n->nlmsg_len;
102
103         if (n->nlmsg_type != RTM_NEWLINK && n->nlmsg_type != RTM_DELLINK)
104                 return 0;
105
106         len -= NLMSG_LENGTH(sizeof(*ifi));
107         if (len < 0)
108                 return -1;
109
110         if (G_filter.ifindex && ifi->ifi_index != G_filter.ifindex)
111                 return 0;
112         if (G_filter.up && !(ifi->ifi_flags & IFF_UP))
113                 return 0;
114
115         memset(tb, 0, sizeof(tb));
116         parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
117         if (tb[IFLA_IFNAME] == NULL) {
118                 bb_error_msg("nil ifname");
119                 return -1;
120         }
121         if (G_filter.label
122          && (!G_filter.family || G_filter.family == AF_PACKET)
123          && fnmatch(G_filter.label, RTA_DATA(tb[IFLA_IFNAME]), 0)
124         ) {
125                 return 0;
126         }
127
128         if (n->nlmsg_type == RTM_DELLINK)
129                 printf("Deleted ");
130
131         printf("%d: %s", ifi->ifi_index,
132                 /*tb[IFLA_IFNAME] ? (char*)RTA_DATA(tb[IFLA_IFNAME]) : "<nil>" - we checked tb[IFLA_IFNAME] above*/
133                 (char*)RTA_DATA(tb[IFLA_IFNAME])
134         );
135
136         {
137                 unsigned m_flag = 0;
138                 if (tb[IFLA_LINK]) {
139                         SPRINT_BUF(b1);
140                         int iflink = *(int*)RTA_DATA(tb[IFLA_LINK]);
141                         if (iflink == 0)
142                                 printf("@NONE: ");
143                         else {
144                                 printf("@%s: ", ll_idx_n2a(iflink, b1));
145                                 m_flag = ll_index_to_flags(iflink);
146                                 m_flag = !(m_flag & IFF_UP);
147                         }
148                 } else {
149                         printf(": ");
150                 }
151                 print_link_flags(ifi->ifi_flags, m_flag);
152         }
153
154         if (tb[IFLA_MTU])
155                 printf("mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU]));
156         if (tb[IFLA_QDISC])
157                 printf("qdisc %s ", (char*)RTA_DATA(tb[IFLA_QDISC]));
158 #ifdef IFLA_MASTER
159         if (tb[IFLA_MASTER]) {
160                 SPRINT_BUF(b1);
161                 printf("master %s ", ll_idx_n2a(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1));
162         }
163 #endif
164         if (G_filter.showqueue)
165                 print_queuelen((char*)RTA_DATA(tb[IFLA_IFNAME]));
166
167         if (!G_filter.family || G_filter.family == AF_PACKET) {
168                 SPRINT_BUF(b1);
169                 printf("%c    link/%s ", _SL_, ll_type_n2a(ifi->ifi_type, b1));
170
171                 if (tb[IFLA_ADDRESS]) {
172                         fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_ADDRESS]),
173                                                       RTA_PAYLOAD(tb[IFLA_ADDRESS]),
174                                                       ifi->ifi_type,
175                                                       b1, sizeof(b1)), stdout);
176                 }
177                 if (tb[IFLA_BROADCAST]) {
178                         if (ifi->ifi_flags & IFF_POINTOPOINT)
179                                 printf(" peer ");
180                         else
181                                 printf(" brd ");
182                         fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_BROADCAST]),
183                                                       RTA_PAYLOAD(tb[IFLA_BROADCAST]),
184                                                       ifi->ifi_type,
185                                                       b1, sizeof(b1)), stdout);
186                 }
187         }
188         bb_putchar('\n');
189         /*fflush_all();*/
190         return 0;
191 }
192
193 static int flush_update(void)
194 {
195         if (rtnl_send(G_filter.rth, G_filter.flushb, G_filter.flushp) < 0) {
196                 bb_perror_msg("failed to send flush request");
197                 return -1;
198         }
199         G_filter.flushp = 0;
200         return 0;
201 }
202
203 static int FAST_FUNC print_addrinfo(const struct sockaddr_nl *who UNUSED_PARAM,
204                 struct nlmsghdr *n, void *arg UNUSED_PARAM)
205 {
206         struct ifaddrmsg *ifa = NLMSG_DATA(n);
207         int len = n->nlmsg_len;
208         struct rtattr * rta_tb[IFA_MAX+1];
209         char abuf[256];
210         SPRINT_BUF(b1);
211
212         if (n->nlmsg_type != RTM_NEWADDR && n->nlmsg_type != RTM_DELADDR)
213                 return 0;
214         len -= NLMSG_LENGTH(sizeof(*ifa));
215         if (len < 0) {
216                 bb_error_msg("wrong nlmsg len %d", len);
217                 return -1;
218         }
219
220         if (G_filter.flushb && n->nlmsg_type != RTM_NEWADDR)
221                 return 0;
222
223         memset(rta_tb, 0, sizeof(rta_tb));
224         parse_rtattr(rta_tb, IFA_MAX, IFA_RTA(ifa), n->nlmsg_len - NLMSG_LENGTH(sizeof(*ifa)));
225
226         if (!rta_tb[IFA_LOCAL])
227                 rta_tb[IFA_LOCAL] = rta_tb[IFA_ADDRESS];
228         if (!rta_tb[IFA_ADDRESS])
229                 rta_tb[IFA_ADDRESS] = rta_tb[IFA_LOCAL];
230
231         if (G_filter.ifindex && G_filter.ifindex != ifa->ifa_index)
232                 return 0;
233         if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask)
234                 return 0;
235         if ((G_filter.flags ^ ifa->ifa_flags) & G_filter.flagmask)
236                 return 0;
237         if (G_filter.label) {
238                 const char *label;
239                 if (rta_tb[IFA_LABEL])
240                         label = RTA_DATA(rta_tb[IFA_LABEL]);
241                 else
242                         label = ll_idx_n2a(ifa->ifa_index, b1);
243                 if (fnmatch(G_filter.label, label, 0) != 0)
244                         return 0;
245         }
246         if (G_filter.pfx.family) {
247                 if (rta_tb[IFA_LOCAL]) {
248                         inet_prefix dst;
249                         memset(&dst, 0, sizeof(dst));
250                         dst.family = ifa->ifa_family;
251                         memcpy(&dst.data, RTA_DATA(rta_tb[IFA_LOCAL]), RTA_PAYLOAD(rta_tb[IFA_LOCAL]));
252                         if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen))
253                                 return 0;
254                 }
255         }
256
257         if (G_filter.flushb) {
258                 struct nlmsghdr *fn;
259                 if (NLMSG_ALIGN(G_filter.flushp) + n->nlmsg_len > G_filter.flushe) {
260                         if (flush_update())
261                                 return -1;
262                 }
263                 fn = (struct nlmsghdr*)(G_filter.flushb + NLMSG_ALIGN(G_filter.flushp));
264                 memcpy(fn, n, n->nlmsg_len);
265                 fn->nlmsg_type = RTM_DELADDR;
266                 fn->nlmsg_flags = NLM_F_REQUEST;
267                 fn->nlmsg_seq = ++G_filter.rth->seq;
268                 G_filter.flushp = (((char*)fn) + n->nlmsg_len) - G_filter.flushb;
269                 G_filter.flushed = 1;
270                 return 0;
271         }
272
273         if (n->nlmsg_type == RTM_DELADDR)
274                 printf("Deleted ");
275
276         if (G_filter.oneline)
277                 printf("%u: %s", ifa->ifa_index, ll_index_to_name(ifa->ifa_index));
278         if (ifa->ifa_family == AF_INET)
279                 printf("    inet ");
280         else if (ifa->ifa_family == AF_INET6)
281                 printf("    inet6 ");
282         else
283                 printf("    family %d ", ifa->ifa_family);
284
285         if (rta_tb[IFA_LOCAL]) {
286                 fputs(rt_addr_n2a(ifa->ifa_family,
287                                               RTA_DATA(rta_tb[IFA_LOCAL]),
288                                               abuf, sizeof(abuf)), stdout);
289
290                 if (rta_tb[IFA_ADDRESS] == NULL
291                  || memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0
292                 ) {
293                         printf("/%d ", ifa->ifa_prefixlen);
294                 } else {
295                         printf(" peer %s/%d ",
296                                 rt_addr_n2a(ifa->ifa_family,
297                                             RTA_DATA(rta_tb[IFA_ADDRESS]),
298                                             abuf, sizeof(abuf)),
299                                 ifa->ifa_prefixlen);
300                 }
301         }
302
303         if (rta_tb[IFA_BROADCAST]) {
304                 printf("brd %s ",
305                         rt_addr_n2a(ifa->ifa_family,
306                                     RTA_DATA(rta_tb[IFA_BROADCAST]),
307                                     abuf, sizeof(abuf)));
308         }
309         if (rta_tb[IFA_ANYCAST]) {
310                 printf("any %s ",
311                         rt_addr_n2a(ifa->ifa_family,
312                                     RTA_DATA(rta_tb[IFA_ANYCAST]),
313                                     abuf, sizeof(abuf)));
314         }
315         printf("scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope, b1));
316         if (ifa->ifa_flags & IFA_F_SECONDARY) {
317                 ifa->ifa_flags &= ~IFA_F_SECONDARY;
318                 printf("secondary ");
319         }
320         if (ifa->ifa_flags & IFA_F_TENTATIVE) {
321                 ifa->ifa_flags &= ~IFA_F_TENTATIVE;
322                 printf("tentative ");
323         }
324         if (ifa->ifa_flags & IFA_F_DEPRECATED) {
325                 ifa->ifa_flags &= ~IFA_F_DEPRECATED;
326                 printf("deprecated ");
327         }
328         if (!(ifa->ifa_flags & IFA_F_PERMANENT)) {
329                 printf("dynamic ");
330         } else
331                 ifa->ifa_flags &= ~IFA_F_PERMANENT;
332         if (ifa->ifa_flags)
333                 printf("flags %02x ", ifa->ifa_flags);
334         if (rta_tb[IFA_LABEL])
335                 fputs((char*)RTA_DATA(rta_tb[IFA_LABEL]), stdout);
336         if (rta_tb[IFA_CACHEINFO]) {
337                 struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]);
338                 char buf[128];
339                 bb_putchar(_SL_);
340                 if (ci->ifa_valid == 0xFFFFFFFFU)
341                         sprintf(buf, "valid_lft forever");
342                 else
343                         sprintf(buf, "valid_lft %dsec", ci->ifa_valid);
344                 if (ci->ifa_prefered == 0xFFFFFFFFU)
345                         sprintf(buf+strlen(buf), " preferred_lft forever");
346                 else
347                         sprintf(buf+strlen(buf), " preferred_lft %dsec", ci->ifa_prefered);
348                 printf("       %s", buf);
349         }
350         bb_putchar('\n');
351         /*fflush_all();*/
352         return 0;
353 }
354
355
356 struct nlmsg_list {
357         struct nlmsg_list *next;
358         struct nlmsghdr   h;
359 };
360
361 static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo)
362 {
363         for (; ainfo; ainfo = ainfo->next) {
364                 struct nlmsghdr *n = &ainfo->h;
365                 struct ifaddrmsg *ifa = NLMSG_DATA(n);
366
367                 if (n->nlmsg_type != RTM_NEWADDR)
368                         continue;
369                 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
370                         return -1;
371                 if (ifa->ifa_index != ifindex
372                  || (G_filter.family && G_filter.family != ifa->ifa_family)
373                 ) {
374                         continue;
375                 }
376                 print_addrinfo(NULL, n, NULL);
377         }
378         return 0;
379 }
380
381
382 static int FAST_FUNC store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
383 {
384         struct nlmsg_list **linfo = (struct nlmsg_list**)arg;
385         struct nlmsg_list *h;
386         struct nlmsg_list **lp;
387
388         h = xzalloc(n->nlmsg_len + sizeof(void*));
389
390         memcpy(&h->h, n, n->nlmsg_len);
391         /*h->next = NULL; - xzalloc did it */
392
393         for (lp = linfo; *lp; lp = &(*lp)->next)
394                 continue;
395         *lp = h;
396
397         ll_remember_index(who, n, NULL);
398         return 0;
399 }
400
401 static void ipaddr_reset_filter(int _oneline)
402 {
403         memset(&G_filter, 0, sizeof(G_filter));
404         G_filter.oneline = _oneline;
405 }
406
407 /* Return value becomes exitcode. It's okay to not return at all */
408 int ipaddr_list_or_flush(char **argv, int flush)
409 {
410         static const char option[] ALIGN1 = "to\0""scope\0""up\0""label\0""dev\0";
411
412         struct nlmsg_list *linfo = NULL;
413         struct nlmsg_list *ainfo = NULL;
414         struct nlmsg_list *l;
415         struct rtnl_handle rth;
416         char *filter_dev = NULL;
417         int no_link = 0;
418
419         ipaddr_reset_filter(oneline);
420         G_filter.showqueue = 1;
421
422         if (G_filter.family == AF_UNSPEC)
423                 G_filter.family = preferred_family;
424
425         if (flush) {
426                 if (!*argv) {
427                         bb_error_msg_and_die(bb_msg_requires_arg, "flush");
428                 }
429                 if (G_filter.family == AF_PACKET) {
430                         bb_error_msg_and_die("can't flush link addresses");
431                 }
432         }
433
434         while (*argv) {
435                 const int option_num = index_in_strings(option, *argv);
436                 switch (option_num) {
437                         case 0: /* to */
438                                 NEXT_ARG();
439                                 get_prefix(&G_filter.pfx, *argv, G_filter.family);
440                                 if (G_filter.family == AF_UNSPEC) {
441                                         G_filter.family = G_filter.pfx.family;
442                                 }
443                                 break;
444                         case 1: { /* scope */
445                                 uint32_t scope = 0;
446                                 NEXT_ARG();
447                                 G_filter.scopemask = -1;
448                                 if (rtnl_rtscope_a2n(&scope, *argv)) {
449                                         if (strcmp(*argv, "all") != 0) {
450                                                 invarg(*argv, "scope");
451                                         }
452                                         scope = RT_SCOPE_NOWHERE;
453                                         G_filter.scopemask = 0;
454                                 }
455                                 G_filter.scope = scope;
456                                 break;
457                         }
458                         case 2: /* up */
459                                 G_filter.up = 1;
460                                 break;
461                         case 3: /* label */
462                                 NEXT_ARG();
463                                 G_filter.label = *argv;
464                                 break;
465                         case 4: /* dev */
466                                 NEXT_ARG();
467                         default:
468                                 if (filter_dev) {
469                                         duparg2("dev", *argv);
470                                 }
471                                 filter_dev = *argv;
472                 }
473                 argv++;
474         }
475
476         xrtnl_open(&rth);
477
478         xrtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK);
479         xrtnl_dump_filter(&rth, store_nlmsg, &linfo);
480
481         if (filter_dev) {
482                 G_filter.ifindex = xll_name_to_index(filter_dev);
483         }
484
485         if (flush) {
486                 char flushb[4096-512];
487
488                 G_filter.flushb = flushb;
489                 G_filter.flushp = 0;
490                 G_filter.flushe = sizeof(flushb);
491                 G_filter.rth = &rth;
492
493                 for (;;) {
494                         xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
495                         G_filter.flushed = 0;
496                         xrtnl_dump_filter(&rth, print_addrinfo, NULL);
497                         if (G_filter.flushed == 0) {
498                                 return 0;
499                         }
500                         if (flush_update() < 0) {
501                                 return 1;
502                         }
503                 }
504         }
505
506         if (G_filter.family != AF_PACKET) {
507                 xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR);
508                 xrtnl_dump_filter(&rth, store_nlmsg, &ainfo);
509         }
510
511
512         if (G_filter.family && G_filter.family != AF_PACKET) {
513                 struct nlmsg_list **lp;
514                 lp = &linfo;
515
516                 if (G_filter.oneline)
517                         no_link = 1;
518
519                 while ((l = *lp) != NULL) {
520                         int ok = 0;
521                         struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
522                         struct nlmsg_list *a;
523
524                         for (a = ainfo; a; a = a->next) {
525                                 struct nlmsghdr *n = &a->h;
526                                 struct ifaddrmsg *ifa = NLMSG_DATA(n);
527
528                                 if (ifa->ifa_index != ifi->ifi_index
529                                  || (G_filter.family && G_filter.family != ifa->ifa_family)
530                                 ) {
531                                         continue;
532                                 }
533                                 if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask)
534                                         continue;
535                                 if ((G_filter.flags ^ ifa->ifa_flags) & G_filter.flagmask)
536                                         continue;
537                                 if (G_filter.pfx.family || G_filter.label) {
538                                         struct rtattr *tb[IFA_MAX+1];
539                                         memset(tb, 0, sizeof(tb));
540                                         parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), IFA_PAYLOAD(n));
541                                         if (!tb[IFA_LOCAL])
542                                                 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
543
544                                         if (G_filter.pfx.family && tb[IFA_LOCAL]) {
545                                                 inet_prefix dst;
546                                                 memset(&dst, 0, sizeof(dst));
547                                                 dst.family = ifa->ifa_family;
548                                                 memcpy(&dst.data, RTA_DATA(tb[IFA_LOCAL]), RTA_PAYLOAD(tb[IFA_LOCAL]));
549                                                 if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen))
550                                                         continue;
551                                         }
552                                         if (G_filter.label) {
553                                                 SPRINT_BUF(b1);
554                                                 const char *label;
555                                                 if (tb[IFA_LABEL])
556                                                         label = RTA_DATA(tb[IFA_LABEL]);
557                                                 else
558                                                         label = ll_idx_n2a(ifa->ifa_index, b1);
559                                                 if (fnmatch(G_filter.label, label, 0) != 0)
560                                                         continue;
561                                         }
562                                 }
563
564                                 ok = 1;
565                                 break;
566                         }
567                         if (!ok)
568                                 *lp = l->next;
569                         else
570                                 lp = &l->next;
571                 }
572         }
573
574         for (l = linfo; l; l = l->next) {
575                 if (no_link || print_linkinfo(&l->h) == 0) {
576                         struct ifinfomsg *ifi = NLMSG_DATA(&l->h);
577                         if (G_filter.family != AF_PACKET)
578                                 print_selected_addrinfo(ifi->ifi_index, ainfo);
579                 }
580         }
581
582         return 0;
583 }
584
585 static int default_scope(inet_prefix *lcl)
586 {
587         if (lcl->family == AF_INET) {
588                 if (lcl->bytelen >= 1 && *(uint8_t*)&lcl->data == 127)
589                         return RT_SCOPE_HOST;
590         }
591         return 0;
592 }
593
594 /* Return value becomes exitcode. It's okay to not return at all */
595 static int ipaddr_modify(int cmd, char **argv)
596 {
597         static const char option[] ALIGN1 =
598                 "peer\0""remote\0""broadcast\0""brd\0"
599                 "anycast\0""scope\0""dev\0""label\0""local\0";
600         struct rtnl_handle rth;
601         struct {
602                 struct nlmsghdr  n;
603                 struct ifaddrmsg ifa;
604                 char             buf[256];
605         } req;
606         char *d = NULL;
607         char *l = NULL;
608         inet_prefix lcl;
609         inet_prefix peer;
610         int local_len = 0;
611         int peer_len = 0;
612         int brd_len = 0;
613         int any_len = 0;
614         bool scoped = 0;
615
616         memset(&req, 0, sizeof(req));
617
618         req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
619         req.n.nlmsg_flags = NLM_F_REQUEST;
620         req.n.nlmsg_type = cmd;
621         req.ifa.ifa_family = preferred_family;
622
623         while (*argv) {
624                 const int option_num = index_in_strings(option, *argv);
625                 switch (option_num) {
626                         case 0: /* peer */
627                         case 1: /* remote */
628                                 NEXT_ARG();
629
630                                 if (peer_len) {
631                                         duparg("peer", *argv);
632                                 }
633                                 get_prefix(&peer, *argv, req.ifa.ifa_family);
634                                 peer_len = peer.bytelen;
635                                 if (req.ifa.ifa_family == AF_UNSPEC) {
636                                         req.ifa.ifa_family = peer.family;
637                                 }
638                                 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &peer.data, peer.bytelen);
639                                 req.ifa.ifa_prefixlen = peer.bitlen;
640                                 break;
641                         case 2: /* broadcast */
642                         case 3: /* brd */
643                         {
644                                 inet_prefix addr;
645                                 NEXT_ARG();
646                                 if (brd_len) {
647                                         duparg("broadcast", *argv);
648                                 }
649                                 if (LONE_CHAR(*argv, '+')) {
650                                         brd_len = -1;
651                                 } else if (LONE_DASH(*argv)) {
652                                         brd_len = -2;
653                                 } else {
654                                         get_addr(&addr, *argv, req.ifa.ifa_family);
655                                         if (req.ifa.ifa_family == AF_UNSPEC)
656                                                 req.ifa.ifa_family = addr.family;
657                                         addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen);
658                                         brd_len = addr.bytelen;
659                                 }
660                                 break;
661                         }
662                         case 4: /* anycast */
663                         {
664                                 inet_prefix addr;
665                                 NEXT_ARG();
666                                 if (any_len) {
667                                         duparg("anycast", *argv);
668                                 }
669                                 get_addr(&addr, *argv, req.ifa.ifa_family);
670                                 if (req.ifa.ifa_family == AF_UNSPEC) {
671                                         req.ifa.ifa_family = addr.family;
672                                 }
673                                 addattr_l(&req.n, sizeof(req), IFA_ANYCAST, &addr.data, addr.bytelen);
674                                 any_len = addr.bytelen;
675                                 break;
676                         }
677                         case 5: /* scope */
678                         {
679                                 uint32_t scope = 0;
680                                 NEXT_ARG();
681                                 if (rtnl_rtscope_a2n(&scope, *argv)) {
682                                         invarg(*argv, "scope");
683                                 }
684                                 req.ifa.ifa_scope = scope;
685                                 scoped = 1;
686                                 break;
687                         }
688                         case 6: /* dev */
689                                 NEXT_ARG();
690                                 d = *argv;
691                                 break;
692                         case 7: /* label */
693                                 NEXT_ARG();
694                                 l = *argv;
695                                 addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l)+1);
696                                 break;
697                         case 8: /* local */
698                                 NEXT_ARG();
699                         default:
700                                 if (local_len) {
701                                         duparg2("local", *argv);
702                                 }
703                                 get_prefix(&lcl, *argv, req.ifa.ifa_family);
704                                 if (req.ifa.ifa_family == AF_UNSPEC) {
705                                         req.ifa.ifa_family = lcl.family;
706                                 }
707                                 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &lcl.data, lcl.bytelen);
708                                 local_len = lcl.bytelen;
709                 }
710                 argv++;
711         }
712
713         if (d == NULL) {
714                 bb_error_msg(bb_msg_requires_arg, "\"dev\"");
715                 return -1;
716         }
717         if (l && strncmp(d, l, strlen(d)) != 0) {
718                 bb_error_msg_and_die("\"dev\" (%s) must match \"label\" (%s)", d, l);
719         }
720
721         if (peer_len == 0 && local_len && cmd != RTM_DELADDR) {
722                 peer = lcl;
723                 addattr_l(&req.n, sizeof(req), IFA_ADDRESS, &lcl.data, lcl.bytelen);
724         }
725         if (req.ifa.ifa_prefixlen == 0)
726                 req.ifa.ifa_prefixlen = lcl.bitlen;
727
728         if (brd_len < 0 && cmd != RTM_DELADDR) {
729                 inet_prefix brd;
730                 int i;
731                 if (req.ifa.ifa_family != AF_INET) {
732                         bb_error_msg_and_die("broadcast can be set only for IPv4 addresses");
733                 }
734                 brd = peer;
735                 if (brd.bitlen <= 30) {
736                         for (i=31; i>=brd.bitlen; i--) {
737                                 if (brd_len == -1)
738                                         brd.data[0] |= htonl(1<<(31-i));
739                                 else
740                                         brd.data[0] &= ~htonl(1<<(31-i));
741                         }
742                         addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &brd.data, brd.bytelen);
743                         brd_len = brd.bytelen;
744                 }
745         }
746         if (!scoped && cmd != RTM_DELADDR)
747                 req.ifa.ifa_scope = default_scope(&lcl);
748
749         xrtnl_open(&rth);
750
751         ll_init_map(&rth);
752
753         req.ifa.ifa_index = xll_name_to_index(d);
754
755         if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
756                 return 2;
757
758         return 0;
759 }
760
761 /* Return value becomes exitcode. It's okay to not return at all */
762 int do_ipaddr(char **argv)
763 {
764         static const char commands[] ALIGN1 =
765                 "add\0""delete\0""list\0""show\0""lst\0""flush\0";
766
767         int command_num = 2; /* default command is list */
768
769         if (*argv) {
770                 command_num = index_in_substrings(commands, *argv);
771                 if (command_num < 0 || command_num > 5)
772                         bb_error_msg_and_die("unknown command %s", *argv);
773                 argv++;
774         }
775         if (command_num == 0) /* add */
776                 return ipaddr_modify(RTM_NEWADDR, argv);
777         if (command_num == 1) /* delete */
778                 return ipaddr_modify(RTM_DELADDR, argv);
779         if (command_num == 5) /* flush */
780                 return ipaddr_list_or_flush(argv, 1);
781         /* 2 == list, 3 == show, 4 == lst */
782         return ipaddr_list_or_flush(argv, 0);
783 }