"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 2 | /* |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 3 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 4 | * |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 5 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 6 | * |
| 7 | * Changes: |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 8 | * Laszlo Valko <valko@linux.karinthy.hu> 990223: address label must be zero terminated |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 11 | #include <fnmatch.h> |
Eric Andersen | 8004bb7 | 2003-01-14 08:06:07 +0000 | [diff] [blame] | 12 | #include <net/if.h> |
| 13 | #include <net/if_arp.h> |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 14 | |
Denis Vlasenko | 9a7d38f | 2007-05-31 22:42:12 +0000 | [diff] [blame] | 15 | #include "ip_common.h" /* #include "libbb.h" is inside */ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 16 | #include "rt_names.h" |
| 17 | #include "utils.h" |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 18 | |
Denis Vlasenko | 9b6f4aa | 2008-06-05 14:01:04 +0000 | [diff] [blame] | 19 | #ifndef IFF_LOWER_UP |
| 20 | /* from linux/if.h */ |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 21 | #define IFF_LOWER_UP 0x10000 /* driver signals L1 up */ |
Denis Vlasenko | 9b6f4aa | 2008-06-05 14:01:04 +0000 | [diff] [blame] | 22 | #endif |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 23 | |
Denys Vlasenko | 36659fd | 2010-02-05 14:40:23 +0100 | [diff] [blame] | 24 | struct filter_t { |
Denis Vlasenko | 3e57adb | 2008-05-31 07:33:18 +0000 | [diff] [blame] | 25 | char *label; |
| 26 | char *flushb; |
| 27 | struct rtnl_handle *rth; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 28 | int scope, scopemask; |
| 29 | int flags, flagmask; |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 30 | int flushp; |
| 31 | int flushe; |
Denis Vlasenko | 3e57adb | 2008-05-31 07:33:18 +0000 | [diff] [blame] | 32 | int ifindex; |
| 33 | family_t family; |
| 34 | smallint showqueue; |
| 35 | smallint oneline; |
| 36 | smallint up; |
| 37 | smallint flushed; |
| 38 | inet_prefix pfx; |
Denys Vlasenko | 36659fd | 2010-02-05 14:40:23 +0100 | [diff] [blame] | 39 | } FIX_ALIASING; |
| 40 | typedef struct filter_t filter_t; |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 41 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 42 | #define G_filter (*(filter_t*)&bb_common_bufsiz1) |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 43 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 44 | |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 45 | static void print_link_flags(unsigned flags, unsigned mdown) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 46 | { |
Denis Vlasenko | 53354ac | 2008-06-07 15:10:29 +0000 | [diff] [blame] | 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 | |
Denis Vlasenko | 7d60fc1 | 2008-06-05 06:51:06 +0000 | [diff] [blame] | 54 | bb_putchar('<'); |
Bernhard Reutner-Fischer | 49ee839 | 2010-05-25 09:55:42 +0200 | [diff] [blame] | 55 | if (flags & IFF_UP && !(flags & IFF_RUNNING)) |
| 56 | printf("NO-CARRIER,"); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 57 | flags &= ~IFF_RUNNING; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 |
Denis Vlasenko | 53354ac | 2008-06-07 15:10:29 +0000 | [diff] [blame] | 69 | flags = print_flags_separated(flag_masks, flag_labels, flags, ","); |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 70 | if (flags) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 71 | printf("%x", flags); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 72 | if (mdown) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 73 | printf(",M-DOWN"); |
| 74 | printf("> "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 77 | static void print_queuelen(char *name) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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)); |
Denis Vlasenko | 360d966 | 2008-12-02 18:18:50 +0000 | [diff] [blame] | 87 | strncpy_IFNAMSIZ(ifr.ifr_name, name); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 88 | if (ioctl_or_warn(s, SIOCGIFTXQLEN, &ifr) < 0) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 89 | close(s); |
| 90 | return; |
| 91 | } |
| 92 | close(s); |
| 93 | |
| 94 | if (ifr.ifr_qlen) |
| 95 | printf("qlen %d", ifr.ifr_qlen); |
| 96 | } |
| 97 | |
Denys Vlasenko | adf922e | 2009-10-08 14:35:37 +0200 | [diff] [blame] | 98 | static NOINLINE int print_linkinfo(const struct nlmsghdr *n) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 99 | { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 100 | struct ifinfomsg *ifi = NLMSG_DATA(n); |
Denys Vlasenko | 9037787 | 2010-01-08 09:07:50 +0100 | [diff] [blame] | 101 | struct rtattr *tb[IFLA_MAX+1]; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 102 | int len = n->nlmsg_len; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 111 | if (G_filter.ifindex && ifi->ifi_index != G_filter.ifindex) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 112 | return 0; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 113 | if (G_filter.up && !(ifi->ifi_flags & IFF_UP)) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 119 | bb_error_msg("nil ifname"); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 120 | return -1; |
| 121 | } |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 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) |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 125 | ) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 126 | return 0; |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 127 | } |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 128 | |
| 129 | if (n->nlmsg_type == RTM_DELLINK) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 130 | printf("Deleted "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 131 | |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 132 | printf("%d: %s", ifi->ifi_index, |
Denys Vlasenko | 9037787 | 2010-01-08 09:07:50 +0100 | [diff] [blame] | 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 | ); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 136 | |
Denys Vlasenko | 9037787 | 2010-01-08 09:07:50 +0100 | [diff] [blame] | 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(": "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 151 | } |
Denys Vlasenko | 9037787 | 2010-01-08 09:07:50 +0100 | [diff] [blame] | 152 | print_link_flags(ifi->ifi_flags, m_flag); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 153 | } |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 154 | |
| 155 | if (tb[IFLA_MTU]) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 156 | printf("mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU])); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 157 | if (tb[IFLA_QDISC]) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 158 | printf("qdisc %s ", (char*)RTA_DATA(tb[IFLA_QDISC])); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 159 | #ifdef IFLA_MASTER |
| 160 | if (tb[IFLA_MASTER]) { |
| 161 | SPRINT_BUF(b1); |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 162 | printf("master %s ", ll_idx_n2a(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1)); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 163 | } |
| 164 | #endif |
Bernhard Reutner-Fischer | 49ee839 | 2010-05-25 09:55:42 +0200 | [diff] [blame] | 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, |
Denys Vlasenko | eb29e91 | 2010-05-27 13:35:04 +0200 | [diff] [blame] | 170 | *(uint8_t *)RTA_DATA(tb[IFLA_OPERSTATE]))); |
Bernhard Reutner-Fischer | 49ee839 | 2010-05-25 09:55:42 +0200 | [diff] [blame] | 171 | } |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 172 | if (G_filter.showqueue) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 173 | print_queuelen((char*)RTA_DATA(tb[IFLA_IFNAME])); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 174 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 175 | if (!G_filter.family || G_filter.family == AF_PACKET) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 176 | SPRINT_BUF(b1); |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame] | 177 | printf("%c link/%s ", _SL_, ll_type_n2a(ifi->ifi_type, b1)); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 178 | |
| 179 | if (tb[IFLA_ADDRESS]) { |
Denis Vlasenko | 605b20e | 2007-09-30 16:22:36 +0000 | [diff] [blame] | 180 | fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_ADDRESS]), |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 181 | RTA_PAYLOAD(tb[IFLA_ADDRESS]), |
| 182 | ifi->ifi_type, |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 183 | b1, sizeof(b1)), stdout); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 184 | } |
| 185 | if (tb[IFLA_BROADCAST]) { |
Denis Vlasenko | dfc0740 | 2007-10-29 19:33:26 +0000 | [diff] [blame] | 186 | if (ifi->ifi_flags & IFF_POINTOPOINT) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 187 | printf(" peer "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 188 | else |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 189 | printf(" brd "); |
Denis Vlasenko | 605b20e | 2007-09-30 16:22:36 +0000 | [diff] [blame] | 190 | fputs(ll_addr_n2a(RTA_DATA(tb[IFLA_BROADCAST]), |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 191 | RTA_PAYLOAD(tb[IFLA_BROADCAST]), |
| 192 | ifi->ifi_type, |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 193 | b1, sizeof(b1)), stdout); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 194 | } |
| 195 | } |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 196 | bb_putchar('\n'); |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 197 | /*fflush_all();*/ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 198 | return 0; |
| 199 | } |
| 200 | |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 201 | static int flush_update(void) |
| 202 | { |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 203 | if (rtnl_send(G_filter.rth, G_filter.flushb, G_filter.flushp) < 0) { |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 204 | bb_perror_msg("can't send flush request"); |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 205 | return -1; |
| 206 | } |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 207 | G_filter.flushp = 0; |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 208 | return 0; |
| 209 | } |
| 210 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 211 | static int FAST_FUNC print_addrinfo(const struct sockaddr_nl *who UNUSED_PARAM, |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 212 | struct nlmsghdr *n, void *arg UNUSED_PARAM) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 213 | { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 224 | bb_error_msg("wrong nlmsg len %d", len); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 225 | return -1; |
| 226 | } |
| 227 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 228 | if (G_filter.flushb && n->nlmsg_type != RTM_NEWADDR) |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 229 | return 0; |
| 230 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 239 | if (G_filter.ifindex && G_filter.ifindex != ifa->ifa_index) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 240 | return 0; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 241 | if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 242 | return 0; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 243 | if ((G_filter.flags ^ ifa->ifa_flags) & G_filter.flagmask) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 244 | return 0; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 245 | if (G_filter.label) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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); |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 251 | if (fnmatch(G_filter.label, label, 0) != 0) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 252 | return 0; |
| 253 | } |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 254 | if (G_filter.pfx.family) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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])); |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 260 | if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen)) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 261 | return 0; |
| 262 | } |
| 263 | } |
| 264 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 265 | if (G_filter.flushb) { |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 266 | struct nlmsghdr *fn; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 267 | if (NLMSG_ALIGN(G_filter.flushp) + n->nlmsg_len > G_filter.flushe) { |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 268 | if (flush_update()) |
| 269 | return -1; |
| 270 | } |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 271 | fn = (struct nlmsghdr*)(G_filter.flushb + NLMSG_ALIGN(G_filter.flushp)); |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 272 | memcpy(fn, n, n->nlmsg_len); |
| 273 | fn->nlmsg_type = RTM_DELADDR; |
| 274 | fn->nlmsg_flags = NLM_F_REQUEST; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 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; |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 278 | return 0; |
| 279 | } |
| 280 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 281 | if (n->nlmsg_type == RTM_DELADDR) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 282 | printf("Deleted "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 283 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 284 | if (G_filter.oneline) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 285 | printf("%u: %s", ifa->ifa_index, ll_index_to_name(ifa->ifa_index)); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 286 | if (ifa->ifa_family == AF_INET) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 287 | printf(" inet "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 288 | else if (ifa->ifa_family == AF_INET6) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 289 | printf(" inet6 "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 290 | else |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 291 | printf(" family %d ", ifa->ifa_family); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 292 | |
| 293 | if (rta_tb[IFA_LOCAL]) { |
Denis Vlasenko | 605b20e | 2007-09-30 16:22:36 +0000 | [diff] [blame] | 294 | fputs(rt_addr_n2a(ifa->ifa_family, |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 295 | RTA_DATA(rta_tb[IFA_LOCAL]), |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 296 | abuf, sizeof(abuf)), stdout); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 297 | |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 298 | if (rta_tb[IFA_ADDRESS] == NULL |
| 299 | || memcmp(RTA_DATA(rta_tb[IFA_ADDRESS]), RTA_DATA(rta_tb[IFA_LOCAL]), 4) == 0 |
| 300 | ) { |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 301 | printf("/%d ", ifa->ifa_prefixlen); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 302 | } else { |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 303 | printf(" peer %s/%d ", |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 304 | rt_addr_n2a(ifa->ifa_family, |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 305 | RTA_DATA(rta_tb[IFA_ADDRESS]), |
| 306 | abuf, sizeof(abuf)), |
| 307 | ifa->ifa_prefixlen); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | if (rta_tb[IFA_BROADCAST]) { |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 312 | printf("brd %s ", |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 313 | rt_addr_n2a(ifa->ifa_family, |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 314 | RTA_DATA(rta_tb[IFA_BROADCAST]), |
| 315 | abuf, sizeof(abuf))); |
| 316 | } |
| 317 | if (rta_tb[IFA_ANYCAST]) { |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 318 | printf("any %s ", |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 319 | rt_addr_n2a(ifa->ifa_family, |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 320 | RTA_DATA(rta_tb[IFA_ANYCAST]), |
| 321 | abuf, sizeof(abuf))); |
| 322 | } |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame] | 323 | printf("scope %s ", rtnl_rtscope_n2a(ifa->ifa_scope, b1)); |
Denis Vlasenko | 3e57adb | 2008-05-31 07:33:18 +0000 | [diff] [blame] | 324 | if (ifa->ifa_flags & IFA_F_SECONDARY) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 325 | ifa->ifa_flags &= ~IFA_F_SECONDARY; |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 326 | printf("secondary "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 327 | } |
Denis Vlasenko | 3e57adb | 2008-05-31 07:33:18 +0000 | [diff] [blame] | 328 | if (ifa->ifa_flags & IFA_F_TENTATIVE) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 329 | ifa->ifa_flags &= ~IFA_F_TENTATIVE; |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 330 | printf("tentative "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 331 | } |
Denis Vlasenko | 3e57adb | 2008-05-31 07:33:18 +0000 | [diff] [blame] | 332 | if (ifa->ifa_flags & IFA_F_DEPRECATED) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 333 | ifa->ifa_flags &= ~IFA_F_DEPRECATED; |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 334 | printf("deprecated "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 335 | } |
Denis Vlasenko | 3e57adb | 2008-05-31 07:33:18 +0000 | [diff] [blame] | 336 | if (!(ifa->ifa_flags & IFA_F_PERMANENT)) { |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 337 | printf("dynamic "); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 338 | } else |
| 339 | ifa->ifa_flags &= ~IFA_F_PERMANENT; |
| 340 | if (ifa->ifa_flags) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 341 | printf("flags %02x ", ifa->ifa_flags); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 342 | if (rta_tb[IFA_LABEL]) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 343 | fputs((char*)RTA_DATA(rta_tb[IFA_LABEL]), stdout); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 344 | if (rta_tb[IFA_CACHEINFO]) { |
| 345 | struct ifa_cacheinfo *ci = RTA_DATA(rta_tb[IFA_CACHEINFO]); |
| 346 | char buf[128]; |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 347 | bb_putchar(_SL_); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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); |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 356 | printf(" %s", buf); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 357 | } |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 358 | bb_putchar('\n'); |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 359 | /*fflush_all();*/ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 360 | return 0; |
| 361 | } |
| 362 | |
| 363 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 364 | struct nlmsg_list { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 365 | struct nlmsg_list *next; |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 366 | struct nlmsghdr h; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 367 | }; |
| 368 | |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 369 | static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 370 | { |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 371 | for (; ainfo; ainfo = ainfo->next) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 372 | struct nlmsghdr *n = &ainfo->h; |
| 373 | struct ifaddrmsg *ifa = NLMSG_DATA(n); |
| 374 | |
| 375 | if (n->nlmsg_type != RTM_NEWADDR) |
| 376 | continue; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 377 | if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa))) |
| 378 | return -1; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 379 | if (ifa->ifa_index != ifindex |
| 380 | || (G_filter.family && G_filter.family != ifa->ifa_family) |
| 381 | ) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 382 | continue; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 383 | } |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 384 | print_addrinfo(NULL, n, NULL); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 385 | } |
| 386 | return 0; |
| 387 | } |
| 388 | |
| 389 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 390 | static int FAST_FUNC store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 391 | { |
| 392 | struct nlmsg_list **linfo = (struct nlmsg_list**)arg; |
| 393 | struct nlmsg_list *h; |
| 394 | struct nlmsg_list **lp; |
| 395 | |
Denys Vlasenko | 9037787 | 2010-01-08 09:07:50 +0100 | [diff] [blame] | 396 | h = xzalloc(n->nlmsg_len + sizeof(void*)); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 397 | |
| 398 | memcpy(&h->h, n, n->nlmsg_len); |
Denys Vlasenko | 9037787 | 2010-01-08 09:07:50 +0100 | [diff] [blame] | 399 | /*h->next = NULL; - xzalloc did it */ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 400 | |
Denis Vlasenko | 3e57adb | 2008-05-31 07:33:18 +0000 | [diff] [blame] | 401 | for (lp = linfo; *lp; lp = &(*lp)->next) |
| 402 | continue; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 403 | *lp = h; |
| 404 | |
| 405 | ll_remember_index(who, n, NULL); |
| 406 | return 0; |
| 407 | } |
| 408 | |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 409 | static void ipaddr_reset_filter(int _oneline) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 410 | { |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 411 | memset(&G_filter, 0, sizeof(G_filter)); |
| 412 | G_filter.oneline = _oneline; |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 413 | } |
| 414 | |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 415 | /* Return value becomes exitcode. It's okay to not return at all */ |
Denys Vlasenko | 2e9b551 | 2010-07-24 23:27:38 +0200 | [diff] [blame] | 416 | int FAST_FUNC ipaddr_list_or_flush(char **argv, int flush) |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 417 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 418 | static const char option[] ALIGN1 = "to\0""scope\0""up\0""label\0""dev\0"; |
Rob Landley | 0a7c8ef | 2006-02-22 17:01:00 +0000 | [diff] [blame] | 419 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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); |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 428 | G_filter.showqueue = 1; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 429 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 430 | if (G_filter.family == AF_UNSPEC) |
| 431 | G_filter.family = preferred_family; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 432 | |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 433 | if (flush) { |
Denis Vlasenko | ed6a49c | 2007-11-18 22:56:25 +0000 | [diff] [blame] | 434 | if (!*argv) { |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 435 | bb_error_msg_and_die(bb_msg_requires_arg, "flush"); |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 436 | } |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 437 | if (G_filter.family == AF_PACKET) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 438 | bb_error_msg_and_die("can't flush link addresses"); |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 439 | } |
| 440 | } |
| 441 | |
Denis Vlasenko | ed6a49c | 2007-11-18 22:56:25 +0000 | [diff] [blame] | 442 | while (*argv) { |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 443 | const smalluint key = index_in_strings(option, *argv); |
| 444 | if (key == 0) { /* to */ |
Denys Vlasenko | fd74451 | 2010-07-04 03:55:43 +0200 | [diff] [blame] | 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 | } |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 450 | } else if (key == 1) { /* scope */ |
Denys Vlasenko | fd74451 | 2010-07-04 03:55:43 +0200 | [diff] [blame] | 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"); |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 457 | } |
Denys Vlasenko | fd74451 | 2010-07-04 03:55:43 +0200 | [diff] [blame] | 458 | scope = RT_SCOPE_NOWHERE; |
| 459 | G_filter.scopemask = 0; |
| 460 | } |
| 461 | G_filter.scope = scope; |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 462 | } else if (key == 2) { /* up */ |
Denys Vlasenko | fd74451 | 2010-07-04 03:55:43 +0200 | [diff] [blame] | 463 | G_filter.up = 1; |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 464 | } else if (key == 3) { /* label */ |
Denys Vlasenko | fd74451 | 2010-07-04 03:55:43 +0200 | [diff] [blame] | 465 | NEXT_ARG(); |
| 466 | G_filter.label = *argv; |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 467 | } else { |
| 468 | if (key == 4) /* dev */ |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 469 | NEXT_ARG(); |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 470 | if (filter_dev) |
| 471 | duparg2("dev", *argv); |
| 472 | filter_dev = *argv; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 473 | } |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 474 | argv++; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 475 | } |
| 476 | |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 477 | xrtnl_open(&rth); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 478 | |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 479 | xrtnl_wilddump_request(&rth, preferred_family, RTM_GETLINK); |
| 480 | xrtnl_dump_filter(&rth, store_nlmsg, &linfo); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 481 | |
| 482 | if (filter_dev) { |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 483 | G_filter.ifindex = xll_name_to_index(filter_dev); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 484 | } |
| 485 | |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 486 | if (flush) { |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 487 | char flushb[4096-512]; |
| 488 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 489 | G_filter.flushb = flushb; |
| 490 | G_filter.flushp = 0; |
| 491 | G_filter.flushe = sizeof(flushb); |
| 492 | G_filter.rth = &rth; |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 493 | |
| 494 | for (;;) { |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 495 | xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR); |
| 496 | G_filter.flushed = 0; |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 497 | xrtnl_dump_filter(&rth, print_addrinfo, NULL); |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 498 | if (G_filter.flushed == 0) { |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 499 | return 0; |
| 500 | } |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 501 | if (flush_update() < 0) { |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 502 | return 1; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 503 | } |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 504 | } |
| 505 | } |
| 506 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 507 | if (G_filter.family != AF_PACKET) { |
| 508 | xrtnl_wilddump_request(&rth, G_filter.family, RTM_GETADDR); |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 509 | xrtnl_dump_filter(&rth, store_nlmsg, &ainfo); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 513 | if (G_filter.family && G_filter.family != AF_PACKET) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 514 | struct nlmsg_list **lp; |
Denis Vlasenko | ed6a49c | 2007-11-18 22:56:25 +0000 | [diff] [blame] | 515 | lp = &linfo; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 516 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 517 | if (G_filter.oneline) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 518 | no_link = 1; |
| 519 | |
Denis Vlasenko | ed6a49c | 2007-11-18 22:56:25 +0000 | [diff] [blame] | 520 | while ((l = *lp) != NULL) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 521 | int ok = 0; |
| 522 | struct ifinfomsg *ifi = NLMSG_DATA(&l->h); |
| 523 | struct nlmsg_list *a; |
| 524 | |
Denis Vlasenko | ed6a49c | 2007-11-18 22:56:25 +0000 | [diff] [blame] | 525 | for (a = ainfo; a; a = a->next) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 526 | struct nlmsghdr *n = &a->h; |
| 527 | struct ifaddrmsg *ifa = NLMSG_DATA(n); |
| 528 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 529 | if (ifa->ifa_index != ifi->ifi_index |
| 530 | || (G_filter.family && G_filter.family != ifa->ifa_family) |
| 531 | ) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 532 | continue; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 533 | } |
| 534 | if ((G_filter.scope ^ ifa->ifa_scope) & G_filter.scopemask) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 535 | continue; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 536 | if ((G_filter.flags ^ ifa->ifa_flags) & G_filter.flagmask) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 537 | continue; |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 538 | if (G_filter.pfx.family || G_filter.label) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 | |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 545 | if (G_filter.pfx.family && tb[IFA_LOCAL]) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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])); |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 550 | if (inet_addr_match(&dst, &G_filter.pfx, G_filter.pfx.bitlen)) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 551 | continue; |
| 552 | } |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 553 | if (G_filter.label) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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); |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 560 | if (fnmatch(G_filter.label, label, 0) != 0) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 | |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 575 | for (l = linfo; l; l = l->next) { |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 576 | if (no_link || print_linkinfo(&l->h) == 0) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 577 | struct ifinfomsg *ifi = NLMSG_DATA(&l->h); |
Denys Vlasenko | ffc4bce | 2010-01-26 11:03:16 +0100 | [diff] [blame] | 578 | if (G_filter.family != AF_PACKET) |
Denis Vlasenko | bedfabd | 2008-06-05 05:00:24 +0000 | [diff] [blame] | 579 | print_selected_addrinfo(ifi->ifi_index, ainfo); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 580 | } |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 583 | return 0; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 584 | } |
| 585 | |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 586 | static int default_scope(inet_prefix *lcl) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 587 | { |
| 588 | if (lcl->family == AF_INET) { |
Denis Vlasenko | 98ee06d | 2006-12-31 18:57:37 +0000 | [diff] [blame] | 589 | if (lcl->bytelen >= 1 && *(uint8_t*)&lcl->data == 127) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 590 | return RT_SCOPE_HOST; |
| 591 | } |
| 592 | return 0; |
| 593 | } |
| 594 | |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 595 | /* Return value becomes exitcode. It's okay to not return at all */ |
Denis Vlasenko | ed6a49c | 2007-11-18 22:56:25 +0000 | [diff] [blame] | 596 | static int ipaddr_modify(int cmd, char **argv) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 597 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 598 | static const char option[] ALIGN1 = |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 599 | "peer\0""remote\0""broadcast\0""brd\0" |
| 600 | "anycast\0""scope\0""dev\0""label\0""local\0"; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 601 | struct rtnl_handle rth; |
| 602 | struct { |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 603 | struct nlmsghdr n; |
| 604 | struct ifaddrmsg ifa; |
| 605 | char buf[256]; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 606 | } req; |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 607 | char *d = NULL; |
| 608 | char *l = NULL; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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; |
Bernhard Reutner-Fischer | cd0e80c | 2007-06-20 14:53:49 +0000 | [diff] [blame] | 615 | bool scoped = 0; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 | |
Denis Vlasenko | ed6a49c | 2007-11-18 22:56:25 +0000 | [diff] [blame] | 624 | while (*argv) { |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 625 | const smalluint arg = index_in_strings(option, *argv); |
| 626 | if (arg <= 1) { /* peer, remote */ |
| 627 | NEXT_ARG(); |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 628 | |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 629 | if (peer_len) { |
| 630 | duparg("peer", *argv); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 631 | } |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 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 { |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 650 | get_addr(&addr, *argv, req.ifa.ifa_family); |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 651 | if (req.ifa.ifa_family == AF_UNSPEC) |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 652 | req.ifa.ifa_family = addr.family; |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 653 | addattr_l(&req.n, sizeof(req), IFA_BROADCAST, &addr.data, addr.bytelen); |
| 654 | brd_len = addr.bytelen; |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 655 | } |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 656 | } else if (arg == 4) { /* anycast */ |
| 657 | inet_prefix addr; |
| 658 | NEXT_ARG(); |
| 659 | if (any_len) { |
| 660 | duparg("anycast", *argv); |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 661 | } |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 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; |
Denys Vlasenko | fd74451 | 2010-07-04 03:55:43 +0200 | [diff] [blame] | 682 | addattr_l(&req.n, sizeof(req), IFA_LABEL, l, strlen(l) + 1); |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 683 | } else { |
| 684 | if (arg == 8) /* local */ |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 685 | NEXT_ARG(); |
Bernhard Reutner-Fischer | c5f30c0 | 2010-05-25 18:46:09 +0200 | [diff] [blame] | 686 | if (local_len) { |
| 687 | duparg2("local", *argv); |
| 688 | } |
| 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; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 695 | } |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 696 | argv++; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 697 | } |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 698 | |
Denys Vlasenko | fd74451 | 2010-07-04 03:55:43 +0200 | [diff] [blame] | 699 | if (!d) { |
| 700 | /* There was no "dev IFACE", but we need that */ |
| 701 | bb_error_msg_and_die("need \"dev IFACE\""); |
| 702 | } |
Bernhard Reutner-Fischer | cd0e80c | 2007-06-20 14:53:49 +0000 | [diff] [blame] | 703 | if (l && strncmp(d, l, strlen(d)) != 0) { |
Rob Landley | 0a7c8ef | 2006-02-22 17:01:00 +0000 | [diff] [blame] | 704 | bb_error_msg_and_die("\"dev\" (%s) must match \"label\" (%s)", d, l); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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) { |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 718 | bb_error_msg_and_die("broadcast can be set only for IPv4 addresses"); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 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 | |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 735 | xrtnl_open(&rth); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 736 | |
| 737 | ll_init_map(&rth); |
| 738 | |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 739 | req.ifa.ifa_index = xll_name_to_index(d); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 740 | |
| 741 | if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0) |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 742 | return 2; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 743 | |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 744 | return 0; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 745 | } |
| 746 | |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 747 | /* Return value becomes exitcode. It's okay to not return at all */ |
Denys Vlasenko | 2e9b551 | 2010-07-24 23:27:38 +0200 | [diff] [blame] | 748 | int FAST_FUNC do_ipaddr(char **argv) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 749 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 750 | static const char commands[] ALIGN1 = |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 751 | "add\0""delete\0""list\0""show\0""lst\0""flush\0"; |
Bernhard Reutner-Fischer | cc4493a | 2010-05-25 17:42:01 +0200 | [diff] [blame] | 752 | smalluint cmd = 2; |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 753 | if (*argv) { |
Bernhard Reutner-Fischer | cc4493a | 2010-05-25 17:42:01 +0200 | [diff] [blame] | 754 | cmd = index_in_substrings(commands, *argv); |
| 755 | if (cmd > 5) |
| 756 | bb_error_msg_and_die(bb_msg_invalid_arg, *argv, applet_name); |
Denis Vlasenko | ed6a49c | 2007-11-18 22:56:25 +0000 | [diff] [blame] | 757 | argv++; |
Bernhard Reutner-Fischer | cc4493a | 2010-05-25 17:42:01 +0200 | [diff] [blame] | 758 | if (cmd <= 1) |
| 759 | return ipaddr_modify((cmd == 0) ? RTM_NEWADDR : RTM_DELADDR, argv); |
Glenn L McGrath | 2626ef6 | 2002-12-02 01:40:05 +0000 | [diff] [blame] | 760 | } |
Denis Vlasenko | ed6a49c | 2007-11-18 22:56:25 +0000 | [diff] [blame] | 761 | /* 2 == list, 3 == show, 4 == lst */ |
Bernhard Reutner-Fischer | cc4493a | 2010-05-25 17:42:01 +0200 | [diff] [blame] | 762 | return ipaddr_list_or_flush(argv, cmd == 5); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 763 | } |