blob: eb9b0a4ffc9d99312e301c5128aa30797faeaddd [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00002/*
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 Vlasenko9a7d38f2007-05-31 22:42:12 +000014//#include <sys/socket.h> /* socket() */
15#include <net/if.h> /* struct ifreq and co. */
16//#include <sys/ioctl.h> /* ioctl() & SIOCGIFINDEX */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000017
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000018#include "libbb.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000019#include "libnetlink.h"
Bernhard Reutner-Fischer1d62d3b2005-10-08 20:47:15 +000020#include "ll_map.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000021
Denis Vlasenko7935a5a2006-09-30 00:18:16 +000022struct idxmap {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000023 struct idxmap * next;
24 int index;
25 int type;
26 int alen;
27 unsigned flags;
28 unsigned char addr[8];
29 char name[16];
30};
31
32static struct idxmap *idxmap[16];
33
34int ll_remember_index(struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
35{
36 int h;
37 struct ifinfomsg *ifi = NLMSG_DATA(n);
38 struct idxmap *im, **imp;
39 struct rtattr *tb[IFLA_MAX+1];
40
41 if (n->nlmsg_type != RTM_NEWLINK)
42 return 0;
43
44 if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifi)))
45 return -1;
46
47
48 memset(tb, 0, sizeof(tb));
49 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), IFLA_PAYLOAD(n));
50 if (tb[IFLA_IFNAME] == NULL)
51 return 0;
52
53 h = ifi->ifi_index&0xF;
54
Denis Vlasenko540a2a12007-04-07 01:14:45 +000055 for (imp = &idxmap[h]; (im = *imp) != NULL; imp = &im->next)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000056 if (im->index == ifi->ifi_index)
57 break;
58
59 if (im == NULL) {
Rob Landleya6e131d2006-05-29 06:43:55 +000060 im = xmalloc(sizeof(*im));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000061 im->next = *imp;
62 im->index = ifi->ifi_index;
63 *imp = im;
64 }
65
66 im->type = ifi->ifi_type;
67 im->flags = ifi->ifi_flags;
68 if (tb[IFLA_ADDRESS]) {
69 int alen;
70 im->alen = alen = RTA_PAYLOAD(tb[IFLA_ADDRESS]);
71 if (alen > sizeof(im->addr))
72 alen = sizeof(im->addr);
73 memcpy(im->addr, RTA_DATA(tb[IFLA_ADDRESS]), alen);
74 } else {
75 im->alen = 0;
76 memset(im->addr, 0, sizeof(im->addr));
77 }
78 strcpy(im->name, RTA_DATA(tb[IFLA_IFNAME]));
79 return 0;
80}
81
82const char *ll_idx_n2a(int idx, char *buf)
83{
84 struct idxmap *im;
85
86 if (idx == 0)
87 return "*";
Denis Vlasenko540a2a12007-04-07 01:14:45 +000088 for (im = idxmap[idx & 0xF]; im; im = im->next)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000089 if (im->index == idx)
90 return im->name;
91 snprintf(buf, 16, "if%d", idx);
92 return buf;
93}
94
95
96const char *ll_index_to_name(int idx)
97{
98 static char nbuf[16];
99
100 return ll_idx_n2a(idx, nbuf);
101}
102
103int ll_index_to_type(int idx)
104{
105 struct idxmap *im;
106
107 if (idx == 0)
108 return -1;
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000109 for (im = idxmap[idx & 0xF]; im; im = im->next)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000110 if (im->index == idx)
111 return im->type;
112 return -1;
113}
114
115unsigned ll_index_to_flags(int idx)
116{
117 struct idxmap *im;
118
119 if (idx == 0)
120 return 0;
121
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000122 for (im = idxmap[idx & 0xF]; im; im = im->next)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000123 if (im->index == idx)
124 return im->flags;
125 return 0;
126}
127
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000128// TODO: caching is not warranted - no users which repeatedly call it
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000129int xll_name_to_index(const char * const name)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000130{
131 static char ncache[16];
132 static int icache;
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000133
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000134 struct idxmap *im;
Denis Vlasenko7935a5a2006-09-30 00:18:16 +0000135 int sock_fd;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000136 int i;
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000137 int ret = 0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000138
139 if (name == NULL)
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000140 goto out;
141 if (icache && strcmp(name, ncache) == 0) {
142 ret = icache;
143 goto out;
144 }
Denis Vlasenko540a2a12007-04-07 01:14:45 +0000145 for (i = 0; i < 16; i++) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000146 for (im = idxmap[i]; im; im = im->next) {
147 if (strcmp(im->name, name) == 0) {
148 icache = im->index;
149 strcpy(ncache, name);
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000150 ret = im->index;
151 goto out;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000152 }
153 }
154 }
Denis Vlasenko7935a5a2006-09-30 00:18:16 +0000155 /* We have not found the interface in our cache, but the kernel
156 * may still know about it. One reason is that we may be using
157 * module on-demand loading, which means that the kernel will
158 * load the module and make the interface exist only when
159 * we explicitely request it (check for dev_load() in net/core/dev.c).
160 * I can think of other similar scenario, but they are less common...
161 * Jean II */
162 sock_fd = socket(AF_INET, SOCK_DGRAM, 0);
163 if (sock_fd) {
164 struct ifreq ifr;
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000165 int tmp;
Denis Vlasenko7935a5a2006-09-30 00:18:16 +0000166 strncpy(ifr.ifr_name, name, IFNAMSIZ);
167 ifr.ifr_ifindex = -1;
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000168 tmp = ioctl(sock_fd, SIOCGIFINDEX, &ifr);
Denis Vlasenko7935a5a2006-09-30 00:18:16 +0000169 close(sock_fd);
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000170 if (tmp >= 0)
Denis Vlasenko7935a5a2006-09-30 00:18:16 +0000171 /* In theory, we should redump the interface list
172 * to update our cache, this is left as an exercise
173 * to the reader... Jean II */
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000174 ret = ifr.ifr_ifindex;
Denis Vlasenko7935a5a2006-09-30 00:18:16 +0000175 }
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000176out:
177 if (ret <= 0)
178 bb_error_msg_and_die("cannot find device \"%s\"", name);
179 return ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000180}
181
182int ll_init_map(struct rtnl_handle *rth)
183{
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000184 xrtnl_wilddump_request(rth, AF_UNSPEC, RTM_GETLINK);
185 xrtnl_dump_filter(rth, ll_remember_index, &idxmap);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000186 return 0;
187}