]> git.meshlink.io Git - catta/blob - avahi-core/iface-pfroute.c
* fix a bug
[catta] / avahi-core / iface-pfroute.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
6   avahi is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as
8   published by the Free Software Foundation; either version 2.1 of the
9   License, or (at your option) any later version.
10  
11   avahi is distributed in the hope that it will be useful, but WITHOUT
12   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14   Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public
17   License along with avahi; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <avahi-common/malloc.h>
27
28 #include <string.h>
29 #include <unistd.h>
30 #include <errno.h>
31
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <sys/sysctl.h>
35
36 #include <net/route.h>
37 #include <net/if.h>
38 #include <net/if_dl.h>
39 #include <netinet/in.h>
40
41 #include "log.h"
42 #include "iface.h"
43 #include "iface-pfroute.h"
44 #include "util.h"
45
46 static int bitcount (unsigned int n)  
47 {  
48   int count=0 ;
49   while (n)
50     {
51       count++ ;
52       n &= (n - 1) ;
53     }
54   return count ;
55 }
56
57 static void rtm_info(struct rt_msghdr *rtm, AvahiInterfaceMonitor *m)
58 {
59   AvahiHwInterface *hw;
60   struct if_msghdr *ifm = (struct if_msghdr *)rtm;
61   struct sockaddr_dl *sdl = (struct sockaddr_dl *)(ifm + 1);
62   
63   if (sdl->sdl_family != AF_LINK)
64     return;
65   
66   if (ifm->ifm_addrs == 0 && ifm->ifm_index > 0) {
67     if (!(hw = avahi_interface_monitor_get_hw_interface(m, (AvahiIfIndex) ifm->ifm_index)))
68       return;
69     avahi_hw_interface_free(hw, 0);
70     return;
71   }
72   
73   if (!(hw = avahi_interface_monitor_get_hw_interface(m, ifm->ifm_index)))
74     if (!(hw = avahi_hw_interface_new(m, (AvahiIfIndex) ifm->ifm_index)))
75       return; /* OOM */
76   
77   hw->flags_ok =
78     (ifm->ifm_flags & IFF_UP) &&
79     (!m->server->config.use_iff_running || (ifm->ifm_flags & IFF_RUNNING)) &&
80     !(ifm->ifm_flags & IFF_LOOPBACK) &&
81     (ifm->ifm_flags & IFF_MULTICAST) &&
82     !(ifm->ifm_flags & IFF_POINTOPOINT);
83   
84   avahi_free(hw->name);
85   hw->name = avahi_strndup(sdl->sdl_data, sdl->sdl_nlen);
86       
87   hw->mtu = ifm->ifm_data.ifi_mtu;
88   
89   hw->mac_address_size = sdl->sdl_alen;
90   if (hw->mac_address_size > AVAHI_MAX_MAC_ADDRESS)
91     hw->mac_address_size = AVAHI_MAX_MAC_ADDRESS;
92   
93   memcpy(hw->mac_address, sdl->sdl_data + sdl->sdl_nlen, hw->mac_address_size);
94   
95   avahi_log_debug("======\n name: %s\n index:%d\n mtu:%d\n mac:%s\n flags_ok:%d\n======", 
96                   hw->name, hw->index, 
97                   hw->mtu, 
98                   avahi_format_mac_address(hw->mac_address, hw->mac_address_size),
99                   hw->flags_ok);
100   
101   avahi_hw_interface_check_relevant(hw);
102   avahi_hw_interface_update_rrs(hw, 0);
103 }
104
105 #define ROUNDUP(a) \
106      ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
107 #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
108
109 static void rtm_addr(struct rt_msghdr *rtm, AvahiInterfaceMonitor *m)
110 {
111   AvahiInterface *iface;
112   AvahiAddress raddr;
113   int raddr_valid = 0;
114   struct ifa_msghdr *ifam = (struct ifa_msghdr *) rtm;
115   char *cp = (char *)(ifam + 1);
116   int addrs = ifam->ifam_addrs;
117   int i;
118   int prefixlen = 0;
119   struct sockaddr *sa  =NULL;
120
121   if(((struct sockaddr *)cp)->sa_family != AF_INET && ((struct sockaddr *)cp)->sa_family != AF_INET6)
122     return;
123
124   if (!(iface = avahi_interface_monitor_get_interface(m, (AvahiIfIndex) ifam->ifam_index, avahi_af_to_proto(((struct sockaddr *)cp)->sa_family))))
125     return;
126
127   raddr.proto = avahi_af_to_proto(((struct sockaddr *)cp)->sa_family);
128   
129   for(i = 0; addrs != 0 && i < RTAX_MAX; addrs &= ~(1<<i), i++)
130     {
131       if (!(addrs & 1<<i))
132         continue;
133       sa = (struct sockaddr *)cp;
134       if (sa->sa_len == 0) 
135         continue;
136       switch(sa->sa_family) {
137       case AF_INET:
138         switch (1<<i) {
139         case RTA_NETMASK:
140           prefixlen = bitcount(((struct sockaddr_in *)sa)->sin_addr.s_addr);
141           break;
142         case RTA_IFA:
143           memcpy(raddr.data.data, &((struct sockaddr_in *)sa)->sin_addr,  sizeof(struct in_addr));
144           raddr_valid = 1;
145         default:
146           break;
147         }
148       case AF_INET6:
149         break;
150       default:
151         break;
152       }
153 #ifdef SA_SIZE
154       cp += SA_SIZE(sa);
155 #else
156       ADVANCE(cp, sa);
157 #endif
158     }
159
160   if (!raddr_valid)
161     return;
162
163   if(rtm->rtm_type == RTM_NEWADDR)
164     {
165       AvahiInterfaceAddress *addriface;
166       if (!(addriface = avahi_interface_monitor_get_address(m, iface, &raddr)))
167         if (!(addriface = avahi_interface_address_new(m, iface, &raddr, prefixlen)))
168           return; /* OOM */
169       /*       FIXME */
170       /*       addriface->global_scope = ifaddrmsg->ifa_scope == RT_SCOPE_UNIVERSE || ifaddrmsg->ifa_scope == RT_SCOPE_SITE; */
171       addriface->global_scope = 1;
172     }
173   else
174     {
175       AvahiInterfaceAddress *addriface;
176       assert(rtm->rtm_type == RTM_DELADDR);
177       if (!(addriface = avahi_interface_monitor_get_address(m, iface, &raddr)))
178         return;
179       avahi_interface_address_free(addriface);
180     }
181   
182   avahi_interface_check_relevant(iface);
183   avahi_interface_update_rrs(iface, 0);
184 }
185
186 static void parse_rtmsg(struct rt_msghdr *rtm, int msglen, AvahiInterfaceMonitor *m)
187 {
188   assert(m);
189   assert(rtm);
190   
191   if (rtm->rtm_version != RTM_VERSION) {
192     avahi_log_warn("routing message version %d not understood",
193                    rtm->rtm_version);
194     return;
195   }
196
197   switch (rtm->rtm_type) {
198   case RTM_IFINFO:
199     rtm_info(rtm,m);
200     break;
201   case RTM_NEWADDR:
202   case RTM_DELADDR:
203     rtm_addr(rtm,m);
204     break;
205   default:
206     break;
207   }
208 }
209
210 static void socket_event(AvahiWatch *w, int fd, AvahiWatchEvent event,void *userdata) {
211   AvahiInterfaceMonitor *m = (AvahiInterfaceMonitor *)userdata;
212   AvahiPfRoute *nl = m->osdep.pfroute;
213     ssize_t bytes;
214     char msg[2048];
215
216     assert(m);
217     assert(w);
218     assert(nl);
219     assert(fd == nl->fd);
220
221     do {
222       time_t now = time(NULL);
223       if((bytes = recv(nl->fd, msg, 2048, MSG_DONTWAIT)) < 0) {
224         if (errno == EAGAIN || errno == EINTR)
225           return;
226         avahi_log_error(__FILE__": recv() failed: %s", strerror(errno));
227         return;
228       }
229
230       avahi_log_debug("socket_event: got message of size %d on %s", (int)bytes, ctime(&now));
231       parse_rtmsg((struct rt_msghdr *)msg, bytes ,m);
232     }
233     while (bytes > 0);
234 }
235
236 int avahi_interface_monitor_init_osdep(AvahiInterfaceMonitor *m) {
237     int fd = -1;
238     m->osdep.pfroute = NULL;
239
240     assert(m);
241
242     if ((fd = socket(PF_ROUTE, SOCK_RAW, AF_UNSPEC)) < 0) {
243         avahi_log_error(__FILE__": socket(PF_ROUTE): %s", strerror(errno));
244         goto fail;
245     }
246
247     if (!(m->osdep.pfroute = avahi_new(AvahiPfRoute , 1))) {
248         avahi_log_error(__FILE__": avahi_new() failed.");
249         goto fail;
250     }
251     m->osdep.pfroute->fd = fd;
252
253     if (!(m->osdep.pfroute->watch = m->server->poll_api->watch_new(m->server->poll_api, 
254                                                                    m->osdep.pfroute->fd, 
255                                                                    AVAHI_WATCH_IN, 
256                                                                    socket_event, 
257                                                                    m))) {
258       avahi_log_error(__FILE__": Failed to create watch.");
259       goto fail;
260     }
261     
262     return 0;
263
264 fail:
265
266     if (m->osdep.pfroute) {
267       if (m->osdep.pfroute->watch)
268         m->server->poll_api->watch_free(m->osdep.pfroute->watch);
269       
270       if (fd >= 0)
271         close(fd);
272       
273       m->osdep.pfroute = NULL;
274     }
275
276     return -1;
277 }
278
279 void avahi_interface_monitor_free_osdep(AvahiInterfaceMonitor *m) {
280     assert(m);
281
282     if (m->osdep.pfroute) {
283       if (m->osdep.pfroute->watch)
284         m->server->poll_api->watch_free(m->osdep.pfroute->watch);
285       
286       if (m->osdep.pfroute->fd >= 0)
287         close(m->osdep.pfroute->fd);
288
289       avahi_free(m->osdep.pfroute);
290       m->osdep.pfroute = NULL;
291     }
292 }
293
294 void avahi_interface_monitor_sync(AvahiInterfaceMonitor *m) {
295   size_t needed;
296   int mib[6];
297   char *buf, *lim, *next, count = 0;
298   struct rt_msghdr *rtm;
299
300   assert(m);
301   
302  retry2:
303   mib[0] = CTL_NET;
304   mib[1] = PF_ROUTE;
305   mib[2] = 0;             /* protocol */
306   mib[3] = 0;             /* wildcard address family */
307   mib[4] = NET_RT_IFLIST;
308   mib[5] = 0;             /* no flags */
309   if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
310     return;
311   if ((buf = avahi_malloc(needed)) == NULL)
312     return;
313   if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) {
314     if (errno == ENOMEM && count++ < 10) {
315       sleep(1);
316       avahi_free(buf);
317       goto retry2;
318     }
319   }
320   lim = buf + needed;
321   for (next = buf; next < lim; next += rtm->rtm_msglen) {
322     rtm = (struct rt_msghdr *)next;
323     parse_rtmsg(rtm, rtm->rtm_msglen, m);
324   }
325   
326   m->list_complete = 1;
327   avahi_interface_monitor_check_relevant(m);
328   avahi_interface_monitor_update_rrs(m, 0);
329   avahi_log_info("Network interface enumeration completed.");
330 }