source: MondoRescue/branches/2.2.9/mindi-busybox/networking/libiproute/ipaddress.c@ 2887

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