wget: add TODO
[oweals/busybox.git] / networking / libiproute / ll_map.c
1 /* vi: set sw=4 ts=4: */
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
14 #include "libbb.h"
15 #include <string.h>
16
17 #include "libnetlink.h"
18 #include "ll_map.h"
19
20 #include <sys/socket.h> /* socket() */
21 #include <net/if.h>     /* struct ifreq and co. */
22 #include <sys/ioctl.h>  /* ioctl() & SIOCGIFINDEX */
23
24 struct idxmap {
25         struct idxmap * next;
26         int             index;
27         int             type;
28         int             alen;
29         unsigned        flags;
30         unsigned char   addr[8];
31         char            name[16];
32 };
33
34 static struct idxmap *idxmap[16];
35
36 int ll_remember_index(struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
37 {
38         int h;
39         struct ifinfomsg *ifi = NLMSG_DATA(n);
40         struct idxmap *im, **imp;
41         struct rtattr *tb[IFLA_MAX+1];
42
43         if (n->nlmsg_type != RTM_NEWLINK)
44                 return 0;
45
46         if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifi)))
47                 return -1;
48
49
50         memset(tb, 0, sizeof(tb));
51         parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), IFLA_PAYLOAD(n));
52         if (tb[IFLA_IFNAME] == NULL)
53                 return 0;
54
55         h = ifi->ifi_index&0xF;
56
57         for (imp=&idxmap[h]; (im=*imp)!=NULL; imp = &im->next)
58                 if (im->index == ifi->ifi_index)
59                         break;
60
61         if (im == NULL) {
62                 im = xmalloc(sizeof(*im));
63                 im->next = *imp;
64                 im->index = ifi->ifi_index;
65                 *imp = im;
66         }
67
68         im->type = ifi->ifi_type;
69         im->flags = ifi->ifi_flags;
70         if (tb[IFLA_ADDRESS]) {
71                 int alen;
72                 im->alen = alen = RTA_PAYLOAD(tb[IFLA_ADDRESS]);
73                 if (alen > sizeof(im->addr))
74                         alen = sizeof(im->addr);
75                 memcpy(im->addr, RTA_DATA(tb[IFLA_ADDRESS]), alen);
76         } else {
77                 im->alen = 0;
78                 memset(im->addr, 0, sizeof(im->addr));
79         }
80         strcpy(im->name, RTA_DATA(tb[IFLA_IFNAME]));
81         return 0;
82 }
83
84 const char *ll_idx_n2a(int idx, char *buf)
85 {
86         struct idxmap *im;
87
88         if (idx == 0)
89                 return "*";
90         for (im = idxmap[idx&0xF]; im; im = im->next)
91                 if (im->index == idx)
92                         return im->name;
93         snprintf(buf, 16, "if%d", idx);
94         return buf;
95 }
96
97
98 const char *ll_index_to_name(int idx)
99 {
100         static char nbuf[16];
101
102         return ll_idx_n2a(idx, nbuf);
103 }
104
105 int ll_index_to_type(int idx)
106 {
107         struct idxmap *im;
108
109         if (idx == 0)
110                 return -1;
111         for (im = idxmap[idx&0xF]; im; im = im->next)
112                 if (im->index == idx)
113                         return im->type;
114         return -1;
115 }
116
117 unsigned ll_index_to_flags(int idx)
118 {
119         struct idxmap *im;
120
121         if (idx == 0)
122                 return 0;
123
124         for (im = idxmap[idx&0xF]; im; im = im->next)
125                 if (im->index == idx)
126                         return im->flags;
127         return 0;
128 }
129
130 int ll_name_to_index(char *name)
131 {
132         static char ncache[16];
133         static int icache;
134         struct idxmap *im;
135         int sock_fd;
136         int i;
137
138         if (name == NULL)
139                 return 0;
140         if (icache && strcmp(name, ncache) == 0)
141                 return icache;
142         for (i=0; i<16; i++) {
143                 for (im = idxmap[i]; im; im = im->next) {
144                         if (strcmp(im->name, name) == 0) {
145                                 icache = im->index;
146                                 strcpy(ncache, name);
147                                 return im->index;
148                         }
149                 }
150         }
151         /* We have not found the interface in our cache, but the kernel
152          * may still know about it. One reason is that we may be using
153          * module on-demand loading, which means that the kernel will
154          * load the module and make the interface exist only when
155          * we explicitely request it (check for dev_load() in net/core/dev.c).
156          * I can think of other similar scenario, but they are less common...
157          * Jean II */
158         sock_fd = socket(AF_INET, SOCK_DGRAM, 0);
159         if (sock_fd) {
160                 struct ifreq ifr;
161                 int ret;
162                 strncpy(ifr.ifr_name, name, IFNAMSIZ);
163                 ifr.ifr_ifindex = -1;
164                 ret = ioctl(sock_fd, SIOCGIFINDEX, &ifr);
165                 close(sock_fd);
166                 if (ret >= 0)
167                         /* In theory, we should redump the interface list
168                          * to update our cache, this is left as an exercise
169                          * to the reader... Jean II */
170                         return ifr.ifr_ifindex;
171         }
172         
173         return 0;
174 }
175
176 int ll_init_map(struct rtnl_handle *rth)
177 {
178         if (rtnl_wilddump_request(rth, AF_UNSPEC, RTM_GETLINK) < 0) {
179                 bb_perror_msg_and_die("cannot send dump request");
180         }
181
182         if (rtnl_dump_filter(rth, ll_remember_index, &idxmap, NULL, NULL) < 0) {
183                 bb_error_msg_and_die("dump terminated");
184         }
185         return 0;
186 }