"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 | /* |
| 3 | * ll_map.c |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 7 | * as published by the Free Software Foundation; either version |
| 8 | * 2 of the License, or (at your option) any later version. |
| 9 | * |
| 10 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 11 | * |
| 12 | */ |
| 13 | |
Denis Vlasenko | 9a7d38f | 2007-05-31 22:42:12 +0000 | [diff] [blame] | 14 | #include <net/if.h> /* struct ifreq and co. */ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 15 | |
Denis Vlasenko | 9a7d38f | 2007-05-31 22:42:12 +0000 | [diff] [blame] | 16 | #include "libbb.h" |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 17 | #include "libnetlink.h" |
Bernhard Reutner-Fischer | 1d62d3b | 2005-10-08 20:47:15 +0000 | [diff] [blame] | 18 | #include "ll_map.h" |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 19 | |
Denis Vlasenko | 7935a5a | 2006-09-30 00:18:16 +0000 | [diff] [blame] | 20 | struct idxmap { |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 21 | struct idxmap *next; |
| 22 | int index; |
| 23 | int type; |
| 24 | int alen; |
| 25 | unsigned flags; |
| 26 | unsigned char addr[8]; |
| 27 | char name[16]; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | static struct idxmap *idxmap[16]; |
| 31 | |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 32 | static struct idxmap *find_by_index(int idx) |
| 33 | { |
| 34 | struct idxmap *im; |
| 35 | |
| 36 | for (im = idxmap[idx & 0xF]; im; im = im->next) |
| 37 | if (im->index == idx) |
| 38 | return im; |
| 39 | return NULL; |
| 40 | } |
| 41 | |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame^] | 42 | int ll_remember_index(struct sockaddr_nl *who ATTRIBUTE_UNUSED, |
| 43 | struct nlmsghdr *n, |
| 44 | void *arg ATTRIBUTE_UNUSED) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 45 | { |
| 46 | int h; |
| 47 | struct ifinfomsg *ifi = NLMSG_DATA(n); |
| 48 | struct idxmap *im, **imp; |
| 49 | struct rtattr *tb[IFLA_MAX+1]; |
| 50 | |
| 51 | if (n->nlmsg_type != RTM_NEWLINK) |
| 52 | return 0; |
| 53 | |
| 54 | if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifi))) |
| 55 | return -1; |
| 56 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 57 | memset(tb, 0, sizeof(tb)); |
| 58 | parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), IFLA_PAYLOAD(n)); |
| 59 | if (tb[IFLA_IFNAME] == NULL) |
| 60 | return 0; |
| 61 | |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 62 | h = ifi->ifi_index & 0xF; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 63 | |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 64 | for (imp = &idxmap[h]; (im = *imp) != NULL; imp = &im->next) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 65 | if (im->index == ifi->ifi_index) |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 66 | goto found; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 67 | |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 68 | im = xmalloc(sizeof(*im)); |
| 69 | im->next = *imp; |
| 70 | im->index = ifi->ifi_index; |
| 71 | *imp = im; |
| 72 | found: |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 73 | im->type = ifi->ifi_type; |
| 74 | im->flags = ifi->ifi_flags; |
| 75 | if (tb[IFLA_ADDRESS]) { |
| 76 | int alen; |
| 77 | im->alen = alen = RTA_PAYLOAD(tb[IFLA_ADDRESS]); |
| 78 | if (alen > sizeof(im->addr)) |
| 79 | alen = sizeof(im->addr); |
| 80 | memcpy(im->addr, RTA_DATA(tb[IFLA_ADDRESS]), alen); |
| 81 | } else { |
| 82 | im->alen = 0; |
| 83 | memset(im->addr, 0, sizeof(im->addr)); |
| 84 | } |
| 85 | strcpy(im->name, RTA_DATA(tb[IFLA_IFNAME])); |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | const char *ll_idx_n2a(int idx, char *buf) |
| 90 | { |
| 91 | struct idxmap *im; |
| 92 | |
| 93 | if (idx == 0) |
| 94 | return "*"; |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 95 | im = find_by_index(idx); |
| 96 | if (im) |
| 97 | return im->name; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 98 | snprintf(buf, 16, "if%d", idx); |
| 99 | return buf; |
| 100 | } |
| 101 | |
| 102 | |
| 103 | const char *ll_index_to_name(int idx) |
| 104 | { |
| 105 | static char nbuf[16]; |
| 106 | |
| 107 | return ll_idx_n2a(idx, nbuf); |
| 108 | } |
| 109 | |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 110 | #ifdef UNUSED |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 111 | int ll_index_to_type(int idx) |
| 112 | { |
| 113 | struct idxmap *im; |
| 114 | |
| 115 | if (idx == 0) |
| 116 | return -1; |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 117 | im = find_by_index(idx); |
| 118 | if (im) |
| 119 | return im->type; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 120 | return -1; |
| 121 | } |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 122 | #endif |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 123 | |
| 124 | unsigned ll_index_to_flags(int idx) |
| 125 | { |
| 126 | struct idxmap *im; |
| 127 | |
| 128 | if (idx == 0) |
| 129 | return 0; |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 130 | im = find_by_index(idx); |
| 131 | if (im) |
| 132 | return im->flags; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 133 | return 0; |
| 134 | } |
| 135 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 136 | int xll_name_to_index(const char *const name) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 137 | { |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 138 | int ret = 0; |
| 139 | int sock_fd; |
| 140 | |
| 141 | /* caching is not warranted - no users which repeatedly call it */ |
| 142 | #ifdef UNUSED |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 143 | static char ncache[16]; |
| 144 | static int icache; |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 145 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 146 | struct idxmap *im; |
| 147 | int i; |
| 148 | |
| 149 | if (name == NULL) |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 150 | goto out; |
| 151 | if (icache && strcmp(name, ncache) == 0) { |
| 152 | ret = icache; |
| 153 | goto out; |
| 154 | } |
Denis Vlasenko | 540a2a1 | 2007-04-07 01:14:45 +0000 | [diff] [blame] | 155 | for (i = 0; i < 16; i++) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 156 | for (im = idxmap[i]; im; im = im->next) { |
| 157 | if (strcmp(im->name, name) == 0) { |
| 158 | icache = im->index; |
| 159 | strcpy(ncache, name); |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 160 | ret = im->index; |
| 161 | goto out; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | } |
Denis Vlasenko | 7935a5a | 2006-09-30 00:18:16 +0000 | [diff] [blame] | 165 | /* We have not found the interface in our cache, but the kernel |
| 166 | * may still know about it. One reason is that we may be using |
| 167 | * module on-demand loading, which means that the kernel will |
| 168 | * load the module and make the interface exist only when |
| 169 | * we explicitely request it (check for dev_load() in net/core/dev.c). |
| 170 | * I can think of other similar scenario, but they are less common... |
| 171 | * Jean II */ |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 172 | #endif |
| 173 | |
Denis Vlasenko | 7935a5a | 2006-09-30 00:18:16 +0000 | [diff] [blame] | 174 | sock_fd = socket(AF_INET, SOCK_DGRAM, 0); |
| 175 | if (sock_fd) { |
| 176 | struct ifreq ifr; |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 177 | int tmp; |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 178 | |
Denis Vlasenko | 7935a5a | 2006-09-30 00:18:16 +0000 | [diff] [blame] | 179 | strncpy(ifr.ifr_name, name, IFNAMSIZ); |
| 180 | ifr.ifr_ifindex = -1; |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 181 | tmp = ioctl(sock_fd, SIOCGIFINDEX, &ifr); |
Denis Vlasenko | 7935a5a | 2006-09-30 00:18:16 +0000 | [diff] [blame] | 182 | close(sock_fd); |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 183 | if (tmp >= 0) |
Denis Vlasenko | 7935a5a | 2006-09-30 00:18:16 +0000 | [diff] [blame] | 184 | /* In theory, we should redump the interface list |
| 185 | * to update our cache, this is left as an exercise |
| 186 | * to the reader... Jean II */ |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 187 | ret = ifr.ifr_ifindex; |
Denis Vlasenko | 7935a5a | 2006-09-30 00:18:16 +0000 | [diff] [blame] | 188 | } |
Denis Vlasenko | 08a6118 | 2007-06-19 12:11:20 +0000 | [diff] [blame] | 189 | /* out:*/ |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 190 | if (ret <= 0) |
| 191 | bb_error_msg_and_die("cannot find device \"%s\"", name); |
| 192 | return ret; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | int ll_init_map(struct rtnl_handle *rth) |
| 196 | { |
Bernhard Reutner-Fischer | b290889 | 2007-04-12 11:34:39 +0000 | [diff] [blame] | 197 | xrtnl_wilddump_request(rth, AF_UNSPEC, RTM_GETLINK); |
| 198 | xrtnl_dump_filter(rth, ll_remember_index, &idxmap); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 199 | return 0; |
| 200 | } |