4 This file is part of avahi.
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.
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.
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
27 #include <sys/socket.h>
28 #include <asm/types.h>
29 #include <linux/netlink.h>
30 #include <linux/rtnetlink.h>
42 static void update_address_rr(AvahiInterfaceMonitor *m, AvahiInterfaceAddress *a, gboolean remove) {
46 if (avahi_interface_address_relevant(a) &&
48 m->server->config.publish_addresses &&
49 (m->server->state == AVAHI_SERVER_RUNNING ||
50 m->server->state == AVAHI_SERVER_REGISTERING)) {
52 if (!a->entry_group) {
53 a->entry_group = avahi_entry_group_new(m->server, avahi_host_rr_entry_group_callback, NULL);
54 if (avahi_server_add_address(m->server, a->entry_group, a->interface->hardware->index, a->interface->protocol, 0, NULL, &a->address) < 0) {
55 avahi_log_warn(__FILE__": avahi_server_add_address() failed.");
56 avahi_entry_group_free(a->entry_group);
57 a->entry_group = NULL;
59 avahi_entry_group_commit(a->entry_group);
65 if (avahi_entry_group_get_state(a->entry_group) == AVAHI_ENTRY_GROUP_REGISTERING)
66 avahi_server_decrease_host_rr_pending(m->server);
68 avahi_entry_group_free(a->entry_group);
69 a->entry_group = NULL;
74 static void update_interface_rr(AvahiInterfaceMonitor *m, AvahiInterface *i, gboolean remove) {
75 AvahiInterfaceAddress *a;
80 for (a = i->addresses; a; a = a->address_next)
81 update_address_rr(m, a, remove);
84 static void update_hw_interface_rr(AvahiInterfaceMonitor *m, AvahiHwInterface *hw, gboolean remove) {
90 for (i = hw->interfaces; i; i = i->by_hardware_next)
91 update_interface_rr(m, i, remove);
94 m->server->config.publish_workstation &&
95 (m->server->state == AVAHI_SERVER_RUNNING ||
96 m->server->state == AVAHI_SERVER_REGISTERING)) {
98 if (!hw->entry_group) {
100 gchar *t = avahi_format_mac_address(hw->mac_address, hw->mac_address_size);
101 name = g_strdup_printf("%s [%s]", m->server->host_name, t);
104 hw->entry_group = avahi_entry_group_new(m->server, avahi_host_rr_entry_group_callback, NULL);
105 if (avahi_server_add_service(m->server, hw->entry_group, hw->index, AVAHI_PROTO_UNSPEC, "_workstation._tcp", name, NULL, NULL, 9, NULL) < 0) {
106 avahi_log_warn(__FILE__": avahi_server_add_service() failed.");
107 avahi_entry_group_free(hw->entry_group);
108 hw->entry_group = NULL;
110 avahi_entry_group_commit(hw->entry_group);
117 if (hw->entry_group) {
119 if (avahi_entry_group_get_state(hw->entry_group) == AVAHI_ENTRY_GROUP_REGISTERING)
120 avahi_server_decrease_host_rr_pending(m->server);
122 avahi_entry_group_free(hw->entry_group);
123 hw->entry_group = NULL;
128 static void free_address(AvahiInterfaceMonitor *m, AvahiInterfaceAddress *a) {
131 g_assert(a->interface);
133 update_address_rr(m, a, TRUE);
134 AVAHI_LLIST_REMOVE(AvahiInterfaceAddress, address, a->interface->addresses, a);
139 static void free_interface(AvahiInterfaceMonitor *m, AvahiInterface *i, gboolean send_goodbye) {
143 avahi_goodbye_interface(m->server, i, send_goodbye);
144 avahi_response_scheduler_force(i->response_scheduler);
146 g_assert(!i->announcements);
148 update_interface_rr(m, i, TRUE);
151 free_address(m, i->addresses);
153 avahi_response_scheduler_free(i->response_scheduler);
154 avahi_query_scheduler_free(i->query_scheduler);
155 avahi_probe_scheduler_free(i->probe_scheduler);
156 avahi_cache_free(i->cache);
158 AVAHI_LLIST_REMOVE(AvahiInterface, interface, m->interfaces, i);
159 AVAHI_LLIST_REMOVE(AvahiInterface, by_hardware, i->hardware->interfaces, i);
164 static void free_hw_interface(AvahiInterfaceMonitor *m, AvahiHwInterface *hw, gboolean send_goodbye) {
168 update_hw_interface_rr(m, hw, TRUE);
170 while (hw->interfaces)
171 free_interface(m, hw->interfaces, send_goodbye);
173 AVAHI_LLIST_REMOVE(AvahiHwInterface, hardware, m->hw_interfaces, hw);
174 g_hash_table_remove(m->hash_table, &hw->index);
180 static AvahiInterfaceAddress* get_address(AvahiInterfaceMonitor *m, AvahiInterface *i, const AvahiAddress *raddr) {
181 AvahiInterfaceAddress *ia;
187 for (ia = i->addresses; ia; ia = ia->address_next)
188 if (avahi_address_cmp(&ia->address, raddr) == 0)
194 static int netlink_list_items(AvahiNetlink *nl, guint16 type, guint *ret_seq) {
196 struct rtgenmsg *gen;
199 memset(&req, 0, sizeof(req));
200 n = (struct nlmsghdr*) req;
201 n->nlmsg_len = NLMSG_LENGTH(sizeof(struct rtgenmsg));
202 n->nlmsg_type = type;
203 n->nlmsg_flags = NLM_F_ROOT/*|NLM_F_MATCH*/|NLM_F_REQUEST;
207 memset(gen, 0, sizeof(struct rtgenmsg));
208 gen->rtgen_family = AF_UNSPEC;
210 return avahi_netlink_send(nl, n, ret_seq);
213 static void new_interface(AvahiInterfaceMonitor *m, AvahiHwInterface *hw, AvahiProtocol protocol) {
218 g_assert(protocol != AVAHI_PROTO_UNSPEC);
220 i = g_new(AvahiInterface, 1);
223 i->protocol = protocol;
224 i->announcing = FALSE;
226 AVAHI_LLIST_HEAD_INIT(AvahiInterfaceAddress, i->addresses);
227 AVAHI_LLIST_HEAD_INIT(AvahiAnnouncement, i->announcements);
229 i->cache = avahi_cache_new(m->server, i);
230 i->response_scheduler = avahi_response_scheduler_new(i);
231 i->query_scheduler = avahi_query_scheduler_new(i);
232 i->probe_scheduler = avahi_probe_scheduler_new(i);
234 AVAHI_LLIST_PREPEND(AvahiInterface, by_hardware, hw->interfaces, i);
235 AVAHI_LLIST_PREPEND(AvahiInterface, interface, m->interfaces, i);
238 static void check_interface_relevant(AvahiInterfaceMonitor *m, AvahiInterface *i) {
244 b = avahi_interface_relevant(i);
246 if (b && !i->announcing) {
247 avahi_log_debug("New relevant interface %s.%i (#%i)", i->hardware->name, i->protocol, i->hardware->index);
249 if (i->protocol == AVAHI_PROTO_INET)
250 avahi_mdns_mcast_join_ipv4(i->hardware->index, m->server->fd_ipv4);
251 if (i->protocol == AVAHI_PROTO_INET6)
252 avahi_mdns_mcast_join_ipv6(i->hardware->index, m->server->fd_ipv6);
254 i->announcing = TRUE;
255 avahi_announce_interface(m->server, i);
256 avahi_browser_new_interface(m->server, i);
257 } else if (!b && i->announcing) {
258 avahi_log_debug("Interface %s.%i no longer relevant", i->hardware->name, i->protocol);
260 if (i->protocol == AVAHI_PROTO_INET)
261 avahi_mdns_mcast_leave_ipv4(i->hardware->index, m->server->fd_ipv4);
262 if (i->protocol == AVAHI_PROTO_INET6)
263 avahi_mdns_mcast_leave_ipv6(i->hardware->index, m->server->fd_ipv6);
265 avahi_goodbye_interface(m->server, i, FALSE);
266 avahi_response_scheduler_clear(i->response_scheduler);
267 avahi_query_scheduler_clear(i->query_scheduler);
268 avahi_probe_scheduler_clear(i->probe_scheduler);
269 avahi_cache_flush(i->cache);
271 i->announcing = FALSE;
275 static void check_hw_interface_relevant(AvahiInterfaceMonitor *m, AvahiHwInterface *hw) {
281 for (i = hw->interfaces; i; i = i->by_hardware_next)
282 check_interface_relevant(m, i);
285 static void callback(AvahiNetlink *nl, struct nlmsghdr *n, gpointer userdata) {
286 AvahiInterfaceMonitor *m = userdata;
290 g_assert(m->netlink == nl);
292 if (n->nlmsg_type == RTM_NEWLINK) {
293 struct ifinfomsg *ifinfomsg = NLMSG_DATA(n);
294 AvahiHwInterface *hw;
295 struct rtattr *a = NULL;
298 if (ifinfomsg->ifi_family != AF_UNSPEC)
301 if (!(hw = g_hash_table_lookup(m->hash_table, &ifinfomsg->ifi_index))) {
302 hw = g_new(AvahiHwInterface, 1);
307 hw->index = ifinfomsg->ifi_index;
308 hw->mac_address_size = 0;
309 hw->entry_group = NULL;
311 AVAHI_LLIST_HEAD_INIT(AvahiInterface, hw->interfaces);
312 AVAHI_LLIST_PREPEND(AvahiHwInterface, hardware, m->hw_interfaces, hw);
314 g_hash_table_insert(m->hash_table, &hw->index, hw);
316 if (m->server->fd_ipv4 >= 0)
317 new_interface(m, hw, AVAHI_PROTO_INET);
318 if (m->server->fd_ipv6 >= 0)
319 new_interface(m, hw, AVAHI_PROTO_INET6);
322 hw->flags = ifinfomsg->ifi_flags;
324 l = NLMSG_PAYLOAD(n, sizeof(struct ifinfomsg));
325 a = IFLA_RTA(ifinfomsg);
327 while (RTA_OK(a, l)) {
328 switch(a->rta_type) {
331 hw->name = g_strndup(RTA_DATA(a), RTA_PAYLOAD(a));
335 g_assert(RTA_PAYLOAD(a) == sizeof(unsigned int));
336 hw->mtu = *((unsigned int*) RTA_DATA(a));
340 hw->mac_address_size = RTA_PAYLOAD(a);
341 if (hw->mac_address_size > AVAHI_MAX_MAC_ADDRESS)
342 hw->mac_address_size = AVAHI_MAX_MAC_ADDRESS;
344 memcpy(hw->mac_address, RTA_DATA(a), hw->mac_address_size);
355 update_hw_interface_rr(m, hw, FALSE);
356 check_hw_interface_relevant(m, hw);
358 } else if (n->nlmsg_type == RTM_DELLINK) {
359 struct ifinfomsg *ifinfomsg = NLMSG_DATA(n);
360 AvahiHwInterface *hw;
362 if (ifinfomsg->ifi_family != AF_UNSPEC)
365 if (!(hw = avahi_interface_monitor_get_hw_interface(m, ifinfomsg->ifi_index)))
368 update_hw_interface_rr(m, hw, TRUE);
369 free_hw_interface(m, hw, FALSE);
371 } else if (n->nlmsg_type == RTM_NEWADDR || n->nlmsg_type == RTM_DELADDR) {
373 struct ifaddrmsg *ifaddrmsg = NLMSG_DATA(n);
375 struct rtattr *a = NULL;
378 gboolean raddr_valid = FALSE;
380 if (ifaddrmsg->ifa_family != AVAHI_PROTO_INET && ifaddrmsg->ifa_family != AVAHI_PROTO_INET6)
383 if (!(i = (AvahiInterface*) avahi_interface_monitor_get_interface(m, ifaddrmsg->ifa_index, ifaddrmsg->ifa_family)))
386 raddr.family = ifaddrmsg->ifa_family;
388 l = NLMSG_PAYLOAD(n, sizeof(struct ifaddrmsg));
389 a = IFA_RTA(ifaddrmsg);
391 while (RTA_OK(a, l)) {
393 switch(a->rta_type) {
395 if ((raddr.family == AVAHI_PROTO_INET6 && RTA_PAYLOAD(a) != 16) ||
396 (raddr.family == AVAHI_PROTO_INET && RTA_PAYLOAD(a) != 4))
399 memcpy(raddr.data.data, RTA_DATA(a), RTA_PAYLOAD(a));
414 if (n->nlmsg_type == RTM_NEWADDR) {
415 AvahiInterfaceAddress *addr;
417 if (!(addr = get_address(m, i, &raddr))) {
418 addr = g_new(AvahiInterfaceAddress, 1);
420 addr->address = raddr;
422 addr->entry_group = NULL;
424 AVAHI_LLIST_PREPEND(AvahiInterfaceAddress, address, i->addresses, addr);
427 addr->flags = ifaddrmsg->ifa_flags;
428 addr->scope = ifaddrmsg->ifa_scope;
429 addr->prefix_len = ifaddrmsg->ifa_prefixlen;
431 update_address_rr(m, addr, FALSE);
432 check_interface_relevant(m, i);
434 AvahiInterfaceAddress *addr;
436 if (!(addr = get_address(m, i, &raddr)))
439 update_address_rr(m, addr, TRUE);
440 free_address(m, addr);
442 check_interface_relevant(m, i);
445 } else if (n->nlmsg_type == NLMSG_DONE) {
447 if (m->list == LIST_IFACE) {
450 if (netlink_list_items(m->netlink, RTM_GETADDR, &m->query_addr_seq) < 0)
451 avahi_log_warn("NETLINK: Failed to list addrs: %s", strerror(errno));
456 avahi_log_debug("Enumeration complete");
459 } else if (n->nlmsg_type == NLMSG_ERROR && (n->nlmsg_seq == m->query_link_seq || n->nlmsg_seq == m->query_addr_seq)) {
460 struct nlmsgerr *e = NLMSG_DATA (n);
463 avahi_log_warn("NETLINK: Failed to browse: %s", strerror(-e->error));
467 AvahiInterfaceMonitor *avahi_interface_monitor_new(AvahiServer *s) {
468 AvahiInterfaceMonitor *m = NULL;
470 m = g_new0(AvahiInterfaceMonitor, 1);
472 if (!(m->netlink = avahi_netlink_new(s->context, G_PRIORITY_DEFAULT-10, RTMGRP_LINK|RTMGRP_IPV4_IFADDR|RTMGRP_IPV6_IFADDR, callback, m)))
475 m->hash_table = g_hash_table_new(g_int_hash, g_int_equal);
477 AVAHI_LLIST_HEAD_INIT(AvahiInterface, m->interfaces);
478 AVAHI_LLIST_HEAD_INIT(AvahiHwInterface, m->hw_interfaces);
480 if (netlink_list_items(m->netlink, RTM_GETLINK, &m->query_link_seq) < 0)
483 m->list = LIST_IFACE;
488 avahi_interface_monitor_free(m);
492 void avahi_interface_monitor_sync(AvahiInterfaceMonitor *m) {
495 while (m->list != LIST_DONE) {
496 if (!avahi_netlink_work(m->netlink, TRUE))
501 void avahi_interface_monitor_free(AvahiInterfaceMonitor *m) {
504 while (m->hw_interfaces)
505 free_hw_interface(m, m->hw_interfaces, TRUE);
507 g_assert(!m->interfaces);
511 avahi_netlink_free(m->netlink);
514 g_hash_table_destroy(m->hash_table);
520 AvahiInterface* avahi_interface_monitor_get_interface(AvahiInterfaceMonitor *m, AvahiIfIndex index, AvahiProtocol protocol) {
521 AvahiHwInterface *hw;
526 g_assert(protocol != AVAHI_PROTO_UNSPEC);
528 if (!(hw = avahi_interface_monitor_get_hw_interface(m, index)))
531 for (i = hw->interfaces; i; i = i->by_hardware_next)
532 if (i->protocol == protocol)
538 AvahiHwInterface* avahi_interface_monitor_get_hw_interface(AvahiInterfaceMonitor *m, AvahiIfIndex index) {
542 return g_hash_table_lookup(m->hash_table, &index);
546 void avahi_interface_send_packet_unicast(AvahiInterface *i, AvahiDnsPacket *p, const AvahiAddress *a, guint16 port) {
551 if (!avahi_interface_relevant(i))
554 g_assert(!a || a->family == i->protocol);
557 /* avahi_log_debug("unicast sending on '%s.%i' to %s:%u", i->hardware->name, i->protocol, avahi_address_snprint(t, sizeof(t), a), port); */
559 /* avahi_log_debug("multicast sending on '%s.%i'", i->hardware->name, i->protocol); */
561 if (i->protocol == AVAHI_PROTO_INET && i->monitor->server->fd_ipv4 >= 0)
562 avahi_send_dns_packet_ipv4(i->monitor->server->fd_ipv4, i->hardware->index, p, a ? &a->data.ipv4 : NULL, port);
563 else if (i->protocol == AVAHI_PROTO_INET6 && i->monitor->server->fd_ipv6 >= 0)
564 avahi_send_dns_packet_ipv6(i->monitor->server->fd_ipv6, i->hardware->index, p, a ? &a->data.ipv6 : NULL, port);
567 void avahi_interface_send_packet(AvahiInterface *i, AvahiDnsPacket *p) {
571 avahi_interface_send_packet_unicast(i, p, NULL, 0);
574 gboolean avahi_interface_post_query(AvahiInterface *i, AvahiKey *key, gboolean immediately) {
578 if (avahi_interface_relevant(i))
579 return avahi_query_scheduler_post(i->query_scheduler, key, immediately);
584 gboolean avahi_interface_post_response(AvahiInterface *i, AvahiRecord *record, gboolean flush_cache, const AvahiAddress *querier, gboolean immediately) {
588 if (avahi_interface_relevant(i))
589 return avahi_response_scheduler_post(i->response_scheduler, record, flush_cache, querier, immediately);
594 gboolean avahi_interface_post_probe(AvahiInterface *i, AvahiRecord *record, gboolean immediately) {
598 if (avahi_interface_relevant(i))
599 return avahi_probe_scheduler_post(i->probe_scheduler, record, immediately);
604 void avahi_dump_caches(AvahiInterfaceMonitor *m, FILE *f) {
608 for (i = m->interfaces; i; i = i->interface_next) {
609 if (avahi_interface_relevant(i)) {
610 fprintf(f, "\n;;; INTERFACE %s.%i ;;;\n", i->hardware->name, i->protocol);
611 avahi_cache_dump(i->cache, f);
617 gboolean avahi_interface_relevant(AvahiInterface *i) {
618 AvahiInterfaceAddress *a;
619 gboolean relevant_address;
623 relevant_address = FALSE;
625 for (a = i->addresses; a; a = a->address_next)
626 if (avahi_interface_address_relevant(a)) {
627 relevant_address = TRUE;
631 /* avahi_log_debug("%p. iface-relevant: %i %i %i %i %i %i", i, relevant_address, */
632 /* (i->hardware->flags & IFF_UP), */
633 /* (i->hardware->flags & IFF_RUNNING), */
634 /* !(i->hardware->flags & IFF_LOOPBACK), */
635 /* (i->hardware->flags & IFF_MULTICAST), */
636 /* !(i->hardware->flags & IFF_POINTOPOINT)); */
639 (i->hardware->flags & IFF_UP) &&
640 (!i->monitor->server->config.use_iff_running || (i->hardware->flags & IFF_RUNNING)) &&
641 !(i->hardware->flags & IFF_LOOPBACK) &&
642 (i->hardware->flags & IFF_MULTICAST) &&
643 !(i->hardware->flags & IFF_POINTOPOINT) &&
647 gboolean avahi_interface_address_relevant(AvahiInterfaceAddress *a) {
650 return a->scope == RT_SCOPE_UNIVERSE;
654 gboolean avahi_interface_match(AvahiInterface *i, AvahiIfIndex index, AvahiProtocol protocol) {
657 if (index > 0 && index != i->hardware->index)
660 if (protocol != AVAHI_PROTO_UNSPEC && protocol != i->protocol)
666 void avahi_interface_monitor_walk(AvahiInterfaceMonitor *m, AvahiIfIndex interface, AvahiProtocol protocol, AvahiInterfaceMonitorWalkCallback callback, gpointer userdata) {
671 if (protocol != AVAHI_PROTO_UNSPEC) {
674 if ((i = avahi_interface_monitor_get_interface(m, interface, protocol)))
675 callback(m, i, userdata);
678 AvahiHwInterface *hw;
681 if ((hw = avahi_interface_monitor_get_hw_interface(m, interface)))
682 for (i = hw->interfaces; i; i = i->by_hardware_next)
683 if (avahi_interface_match(i, interface, protocol))
684 callback(m, i, userdata);
690 for (i = m->interfaces; i; i = i->interface_next)
691 if (avahi_interface_match(i, interface, protocol))
692 callback(m, i, userdata);
696 void avahi_update_host_rrs(AvahiInterfaceMonitor *m, gboolean remove) {
697 AvahiHwInterface *hw;
701 for (hw = m->hw_interfaces; hw; hw = hw->hardware_next)
702 update_hw_interface_rr(m, hw, remove);
705 gboolean avahi_address_is_local(AvahiInterfaceMonitor *m, const AvahiAddress *a) {
707 AvahiInterfaceAddress *ia;
711 for (i = m->interfaces; i; i = i->interface_next)
712 for (ia = i->addresses; ia; ia = ia->address_next)
713 if (avahi_address_cmp(a, &ia->address) == 0)
719 gboolean avahi_interface_address_on_link(AvahiInterface *i, const AvahiAddress *a) {
720 AvahiInterfaceAddress *ia;
725 if (a->family != i->protocol)
728 for (ia = i->addresses; ia; ia = ia->address_next) {
730 if (a->family == AVAHI_PROTO_INET) {
733 m = ~(((guint32) -1) >> ia->prefix_len);
735 if ((g_ntohl(a->data.ipv4.address) & m) == (g_ntohl(ia->address.data.ipv4.address) & m))
740 g_assert(a->family == AVAHI_PROTO_INET6);
744 for (i = 0; i < 16; i++) {
758 if ((a->data.ipv6.address[i] & m) != (ia->address.data.ipv6.address[i] & m))