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
30 #include <sys/types.h>
31 #include <sys/socket.h>
32 #include <netinet/in.h>
34 #include <avahi-common/error.h>
35 #include <avahi-common/malloc.h>
36 #include <avahi-common/domain.h>
44 #include "multicast-lookup.h"
47 void avahi_interface_address_update_rrs(AvahiInterfaceAddress *a, int remove_rrs) {
48 AvahiInterfaceMonitor *m;
53 if (m->list_complete &&
54 avahi_interface_address_is_relevant(a) &&
55 avahi_interface_is_relevant(a->interface) &&
57 m->server->config.publish_addresses &&
58 (m->server->state == AVAHI_SERVER_RUNNING ||
59 m->server->state == AVAHI_SERVER_REGISTERING)) {
61 /* Fill the entry group */
63 a->entry_group = avahi_s_entry_group_new(m->server, avahi_host_rr_entry_group_callback, NULL);
65 if (!a->entry_group) /* OOM */
68 if (avahi_s_entry_group_is_empty(a->entry_group)) {
69 char t[AVAHI_ADDRESS_STR_MAX];
72 p = (a->interface->protocol == AVAHI_PROTO_INET && m->server->config.publish_a_on_ipv6) ||
73 (a->interface->protocol == AVAHI_PROTO_INET6 && m->server->config.publish_aaaa_on_ipv4) ? AVAHI_PROTO_UNSPEC : a->interface->protocol;
75 avahi_address_snprint(t, sizeof(t), &a->address);
76 avahi_log_info("Registering new address record for %s on %s.%s.", t, a->interface->hardware->name, p == AVAHI_PROTO_UNSPEC ? "*" : avahi_proto_to_string(p));
78 if (avahi_server_add_address(m->server, a->entry_group, a->interface->hardware->index, p, 0, NULL, &a->address) < 0) {
79 avahi_log_warn(__FILE__": avahi_server_add_address() failed: %s", avahi_strerror(m->server->error));
80 avahi_s_entry_group_free(a->entry_group);
81 a->entry_group = NULL;
85 avahi_s_entry_group_commit(a->entry_group);
89 /* Clear the entry group */
91 if (a->entry_group && !avahi_s_entry_group_is_empty(a->entry_group)) {
92 char t[AVAHI_ADDRESS_STR_MAX];
93 avahi_address_snprint(t, sizeof(t), &a->address);
95 if (avahi_s_entry_group_get_state(a->entry_group) == AVAHI_ENTRY_GROUP_REGISTERING &&
96 m->server->state == AVAHI_SERVER_REGISTERING)
97 avahi_server_decrease_host_rr_pending(m->server);
99 avahi_log_info("Withdrawing address record for %s on %s.", t, a->interface->hardware->name);
101 avahi_s_entry_group_reset(a->entry_group);
106 void avahi_interface_update_rrs(AvahiInterface *i, int remove_rrs) {
107 AvahiInterfaceAddress *a;
111 for (a = i->addresses; a; a = a->address_next)
112 avahi_interface_address_update_rrs(a, remove_rrs);
115 void avahi_hw_interface_update_rrs(AvahiHwInterface *hw, int remove_rrs) {
117 AvahiInterfaceMonitor *m;
122 for (i = hw->interfaces; i; i = i->by_hardware_next)
123 avahi_interface_update_rrs(i, remove_rrs);
125 if (m->list_complete &&
127 m->server->config.publish_workstation &&
128 (m->server->state == AVAHI_SERVER_RUNNING)) {
130 if (!hw->entry_group)
131 hw->entry_group = avahi_s_entry_group_new(m->server, avahi_host_rr_entry_group_callback, NULL);
133 if (!hw->entry_group)
136 if (avahi_s_entry_group_is_empty(hw->entry_group)) {
137 char name[AVAHI_LABEL_MAX], mac[256];
139 avahi_format_mac_address(mac, sizeof(mac), hw->mac_address, hw->mac_address_size);
140 snprintf(name, sizeof(name), "%s [%s]", m->server->host_name, mac);
142 if (avahi_server_add_service(m->server, hw->entry_group, hw->index, AVAHI_PROTO_UNSPEC, 0, name, "_workstation._tcp", NULL, NULL, 9, NULL) < 0) {
143 avahi_log_warn(__FILE__": avahi_server_add_service() failed: %s", avahi_strerror(m->server->error));
144 avahi_s_entry_group_free(hw->entry_group);
145 hw->entry_group = NULL;
147 avahi_s_entry_group_commit(hw->entry_group);
152 if (hw->entry_group && !avahi_s_entry_group_is_empty(hw->entry_group)) {
154 if (avahi_s_entry_group_get_state(hw->entry_group) == AVAHI_ENTRY_GROUP_REGISTERING)
155 avahi_server_decrease_host_rr_pending(m->server);
157 avahi_s_entry_group_reset(hw->entry_group);
162 void avahi_interface_monitor_update_rrs(AvahiInterfaceMonitor *m, int remove_rrs) {
163 AvahiHwInterface *hw;
167 for (hw = m->hw_interfaces; hw; hw = hw->hardware_next)
168 avahi_hw_interface_update_rrs(hw, remove_rrs);
171 static int interface_mdns_mcast_join(AvahiInterface *i, int join) {
172 char at[AVAHI_ADDRESS_STR_MAX];
176 if (!!join == !!i->mcast_joined)
179 if ((i->protocol == AVAHI_PROTO_INET6 && i->monitor->server->fd_ipv6 < 0) ||
180 (i->protocol == AVAHI_PROTO_INET && i->monitor->server->fd_ipv4 < 0))
184 AvahiInterfaceAddress *a;
186 /* Look if there's an address with global scope */
187 for (a = i->addresses; a; a = a->address_next)
191 /* No address with a global scope has been found, so let's use
196 /* Hmm, there is no address available. */
200 i->local_mcast_address = a->address;
203 avahi_log_info("%s mDNS multicast group on interface %s.%s with address %s.",
204 join ? "Joining" : "Leaving",
206 avahi_proto_to_string(i->protocol),
207 avahi_address_snprint(at, sizeof(at), &i->local_mcast_address));
209 if (i->protocol == AVAHI_PROTO_INET6)
210 r = avahi_mdns_mcast_join_ipv6(i->monitor->server->fd_ipv6, &i->local_mcast_address.data.ipv6, i->hardware->index, join);
212 assert(i->protocol == AVAHI_PROTO_INET);
214 r = avahi_mdns_mcast_join_ipv4(i->monitor->server->fd_ipv4, &i->local_mcast_address.data.ipv4, i->hardware->index, join);
220 i->mcast_joined = join;
225 static int interface_mdns_mcast_rejoin(AvahiInterface *i) {
226 AvahiInterfaceAddress *a, *usable = NULL, *found = NULL;
229 if (!i->mcast_joined)
232 /* Check whether old address we joined with is still available. If
233 * not, rejoin using an other address. */
235 for (a = i->addresses; a; a = a->address_next) {
236 if (a->global_scope && !usable)
239 if (avahi_address_cmp(&a->address, &i->local_mcast_address) == 0) {
242 /* No action necessary: the address still exists and
243 * has global scope. */
250 if (found && !usable)
251 /* No action necessary: the address still exists and no better one has been found */
254 interface_mdns_mcast_join(i, 0);
255 return interface_mdns_mcast_join(i, 1);
258 void avahi_interface_address_free(AvahiInterfaceAddress *a) {
260 assert(a->interface);
262 avahi_interface_address_update_rrs(a, 1);
263 AVAHI_LLIST_REMOVE(AvahiInterfaceAddress, address, a->interface->addresses, a);
266 avahi_s_entry_group_free(a->entry_group);
268 interface_mdns_mcast_rejoin(a->interface);
273 void avahi_interface_free(AvahiInterface *i, int send_goodbye) {
276 /* Handle goodbyes and remove announcers */
277 avahi_goodbye_interface(i->monitor->server, i, send_goodbye, 1);
278 avahi_response_scheduler_force(i->response_scheduler);
279 assert(!i->announcers);
282 interface_mdns_mcast_join(i, 0);
284 /* Remove queriers */
285 avahi_querier_free_all(i);
286 avahi_hashmap_free(i->queriers_by_key);
288 /* Remove local RRs */
289 avahi_interface_update_rrs(i, 1);
292 avahi_interface_address_free(i->addresses);
294 avahi_response_scheduler_free(i->response_scheduler);
295 avahi_query_scheduler_free(i->query_scheduler);
296 avahi_probe_scheduler_free(i->probe_scheduler);
297 avahi_cache_free(i->cache);
299 AVAHI_LLIST_REMOVE(AvahiInterface, interface, i->monitor->interfaces, i);
300 AVAHI_LLIST_REMOVE(AvahiInterface, by_hardware, i->hardware->interfaces, i);
305 void avahi_hw_interface_free(AvahiHwInterface *hw, int send_goodbye) {
308 avahi_hw_interface_update_rrs(hw, 1);
310 while (hw->interfaces)
311 avahi_interface_free(hw->interfaces, send_goodbye);
314 avahi_s_entry_group_free(hw->entry_group);
316 AVAHI_LLIST_REMOVE(AvahiHwInterface, hardware, hw->monitor->hw_interfaces, hw);
317 avahi_hashmap_remove(hw->monitor->hashmap, &hw->index);
319 avahi_free(hw->name);
323 AvahiInterface* avahi_interface_new(AvahiInterfaceMonitor *m, AvahiHwInterface *hw, AvahiProtocol protocol) {
328 assert(AVAHI_PROTO_VALID(protocol));
330 if (!(i = avahi_new(AvahiInterface, 1)))
335 i->protocol = protocol;
339 AVAHI_LLIST_HEAD_INIT(AvahiInterfaceAddress, i->addresses);
340 AVAHI_LLIST_HEAD_INIT(AvahiAnnouncer, i->announcers);
342 AVAHI_LLIST_HEAD_INIT(AvahiQuerier, i->queriers);
343 i->queriers_by_key = avahi_hashmap_new((AvahiHashFunc) avahi_key_hash, (AvahiEqualFunc) avahi_key_equal, NULL, NULL);
345 i->cache = avahi_cache_new(m->server, i);
346 i->response_scheduler = avahi_response_scheduler_new(i);
347 i->query_scheduler = avahi_query_scheduler_new(i);
348 i->probe_scheduler = avahi_probe_scheduler_new(i);
350 if (!i->cache || !i->response_scheduler || !i->query_scheduler || !i->probe_scheduler)
353 AVAHI_LLIST_PREPEND(AvahiInterface, by_hardware, hw->interfaces, i);
354 AVAHI_LLIST_PREPEND(AvahiInterface, interface, m->interfaces, i);
362 avahi_cache_free(i->cache);
363 if (i->response_scheduler)
364 avahi_response_scheduler_free(i->response_scheduler);
365 if (i->query_scheduler)
366 avahi_query_scheduler_free(i->query_scheduler);
367 if (i->probe_scheduler)
368 avahi_probe_scheduler_free(i->probe_scheduler);
374 AvahiHwInterface *avahi_hw_interface_new(AvahiInterfaceMonitor *m, AvahiIfIndex idx) {
375 AvahiHwInterface *hw;
378 assert(AVAHI_IF_VALID(idx));
380 if (!(hw = avahi_new(AvahiHwInterface, 1)))
388 hw->mac_address_size = 0;
389 hw->entry_group = NULL;
391 AVAHI_LLIST_HEAD_INIT(AvahiInterface, hw->interfaces);
392 AVAHI_LLIST_PREPEND(AvahiHwInterface, hardware, m->hw_interfaces, hw);
394 avahi_hashmap_insert(m->hashmap, &hw->index, hw);
396 if (m->server->fd_ipv4 >= 0 || m->server->config.publish_a_on_ipv6)
397 avahi_interface_new(m, hw, AVAHI_PROTO_INET);
398 if (m->server->fd_ipv6 >= 0 || m->server->config.publish_aaaa_on_ipv4)
399 avahi_interface_new(m, hw, AVAHI_PROTO_INET6);
404 AvahiInterfaceAddress *avahi_interface_address_new(AvahiInterfaceMonitor *m, AvahiInterface *i, const AvahiAddress *addr, unsigned prefix_len) {
405 AvahiInterfaceAddress *a;
410 if (!(a = avahi_new(AvahiInterfaceAddress, 1)))
416 a->prefix_len = prefix_len;
418 a->entry_group = NULL;
420 AVAHI_LLIST_PREPEND(AvahiInterfaceAddress, address, i->addresses, a);
425 void avahi_interface_check_relevant(AvahiInterface *i) {
427 AvahiInterfaceMonitor *m;
432 b = avahi_interface_is_relevant(i);
434 if (m->list_complete && b && !i->announcing) {
435 interface_mdns_mcast_join(i, 1);
437 if (i->mcast_joined) {
438 avahi_log_info("New relevant interface %s.%s for mDNS.", i->hardware->name, avahi_proto_to_string(i->protocol));
441 avahi_announce_interface(m->server, i);
442 avahi_multicast_lookup_engine_new_interface(m->server->multicast_lookup_engine, i);
445 } else if (!b && i->announcing) {
446 avahi_log_info("Interface %s.%s no longer relevant for mDNS.", i->hardware->name, avahi_proto_to_string(i->protocol));
448 interface_mdns_mcast_join(i, 0);
450 avahi_goodbye_interface(m->server, i, 0, 1);
451 avahi_querier_free_all(i);
453 avahi_response_scheduler_clear(i->response_scheduler);
454 avahi_query_scheduler_clear(i->query_scheduler);
455 avahi_probe_scheduler_clear(i->probe_scheduler);
456 avahi_cache_flush(i->cache);
461 interface_mdns_mcast_rejoin(i);
464 void avahi_hw_interface_check_relevant(AvahiHwInterface *hw) {
469 for (i = hw->interfaces; i; i = i->by_hardware_next)
470 avahi_interface_check_relevant(i);
473 void avahi_interface_monitor_check_relevant(AvahiInterfaceMonitor *m) {
478 for (i = m->interfaces; i; i = i->interface_next)
479 avahi_interface_check_relevant(i);
482 AvahiInterfaceMonitor *avahi_interface_monitor_new(AvahiServer *s) {
483 AvahiInterfaceMonitor *m = NULL;
485 if (!(m = avahi_new0(AvahiInterfaceMonitor, 1)))
486 return NULL; /* OOM */
489 m->list_complete = 0;
490 m->hashmap = avahi_hashmap_new(avahi_int_hash, avahi_int_equal, NULL, NULL);
492 AVAHI_LLIST_HEAD_INIT(AvahiInterface, m->interfaces);
493 AVAHI_LLIST_HEAD_INIT(AvahiHwInterface, m->hw_interfaces);
495 if (avahi_interface_monitor_init_osdep(m) < 0)
501 avahi_interface_monitor_free(m);
505 void avahi_interface_monitor_free(AvahiInterfaceMonitor *m) {
508 while (m->hw_interfaces)
509 avahi_hw_interface_free(m->hw_interfaces, 1);
511 assert(!m->interfaces);
513 avahi_interface_monitor_free_osdep(m);
516 avahi_hashmap_free(m->hashmap);
522 AvahiInterface* avahi_interface_monitor_get_interface(AvahiInterfaceMonitor *m, AvahiIfIndex idx, AvahiProtocol protocol) {
523 AvahiHwInterface *hw;
528 assert(protocol != AVAHI_PROTO_UNSPEC);
530 if (!(hw = avahi_interface_monitor_get_hw_interface(m, idx)))
533 for (i = hw->interfaces; i; i = i->by_hardware_next)
534 if (i->protocol == protocol)
540 AvahiHwInterface* avahi_interface_monitor_get_hw_interface(AvahiInterfaceMonitor *m, AvahiIfIndex idx) {
544 return avahi_hashmap_lookup(m->hashmap, &idx);
547 AvahiInterfaceAddress* avahi_interface_monitor_get_address(AvahiInterfaceMonitor *m, AvahiInterface *i, const AvahiAddress *raddr) {
548 AvahiInterfaceAddress *ia;
554 for (ia = i->addresses; ia; ia = ia->address_next)
555 if (avahi_address_cmp(&ia->address, raddr) == 0)
561 void avahi_interface_send_packet_unicast(AvahiInterface *i, AvahiDnsPacket *p, const AvahiAddress *a, uint16_t port) {
568 assert(!a || a->proto == i->protocol);
570 if (i->protocol == AVAHI_PROTO_INET && i->monitor->server->fd_ipv4 >= 0)
571 avahi_send_dns_packet_ipv4(i->monitor->server->fd_ipv4, i->hardware->index, p, i->mcast_joined ? &i->local_mcast_address.data.ipv4 : NULL, a ? &a->data.ipv4 : NULL, port);
572 else if (i->protocol == AVAHI_PROTO_INET6 && i->monitor->server->fd_ipv6 >= 0)
573 avahi_send_dns_packet_ipv6(i->monitor->server->fd_ipv6, i->hardware->index, p, i->mcast_joined ? &i->local_mcast_address.data.ipv6 : NULL, a ? &a->data.ipv6 : NULL, port);
576 void avahi_interface_send_packet(AvahiInterface *i, AvahiDnsPacket *p) {
580 avahi_interface_send_packet_unicast(i, p, NULL, 0);
583 int avahi_interface_post_query(AvahiInterface *i, AvahiKey *key, int immediately, unsigned *ret_id) {
590 return avahi_query_scheduler_post(i->query_scheduler, key, immediately, ret_id);
593 int avahi_interface_withraw_query(AvahiInterface *i, unsigned id) {
595 return avahi_query_scheduler_withdraw_by_id(i->query_scheduler, id);
598 int avahi_interface_post_response(AvahiInterface *i, AvahiRecord *record, int flush_cache, const AvahiAddress *querier, int immediately) {
605 return avahi_response_scheduler_post(i->response_scheduler, record, flush_cache, querier, immediately);
608 int avahi_interface_post_probe(AvahiInterface *i, AvahiRecord *record, int immediately) {
615 return avahi_probe_scheduler_post(i->probe_scheduler, record, immediately);
618 int avahi_dump_caches(AvahiInterfaceMonitor *m, AvahiDumpCallback callback, void* userdata) {
622 for (i = m->interfaces; i; i = i->interface_next) {
623 if (avahi_interface_is_relevant(i)) {
625 snprintf(ln, sizeof(ln), ";;; INTERFACE %s.%s ;;;", i->hardware->name, avahi_proto_to_string(i->protocol));
626 callback(ln, userdata);
627 if (avahi_cache_dump(i->cache, callback, userdata) < 0)
635 int avahi_interface_is_relevant(AvahiInterface *i) {
636 AvahiInterfaceAddress *a;
640 if (!i->hardware->flags_ok)
643 for (a = i->addresses; a; a = a->address_next)
644 if (avahi_interface_address_is_relevant(a))
650 int avahi_interface_address_is_relevant(AvahiInterfaceAddress *a) {
651 AvahiInterfaceAddress *b;
654 /* Publish public IP addresses */
659 /* Publish link local IP addresses if they are the only ones on the link */
660 for (b = a->interface->addresses; b; b = b->address_next) {
674 int avahi_interface_match(AvahiInterface *i, AvahiIfIndex idx, AvahiProtocol protocol) {
677 if (idx != AVAHI_IF_UNSPEC && idx != i->hardware->index)
680 if (protocol != AVAHI_PROTO_UNSPEC && protocol != i->protocol)
686 void avahi_interface_monitor_walk(AvahiInterfaceMonitor *m, AvahiIfIndex interface, AvahiProtocol protocol, AvahiInterfaceMonitorWalkCallback callback, void* userdata) {
690 if (interface != AVAHI_IF_UNSPEC) {
691 if (protocol != AVAHI_PROTO_UNSPEC) {
694 if ((i = avahi_interface_monitor_get_interface(m, interface, protocol)))
695 callback(m, i, userdata);
698 AvahiHwInterface *hw;
701 if ((hw = avahi_interface_monitor_get_hw_interface(m, interface)))
702 for (i = hw->interfaces; i; i = i->by_hardware_next)
703 if (avahi_interface_match(i, interface, protocol))
704 callback(m, i, userdata);
710 for (i = m->interfaces; i; i = i->interface_next)
711 if (avahi_interface_match(i, interface, protocol))
712 callback(m, i, userdata);
717 int avahi_address_is_local(AvahiInterfaceMonitor *m, const AvahiAddress *a) {
719 AvahiInterfaceAddress *ia;
723 for (i = m->interfaces; i; i = i->interface_next)
724 for (ia = i->addresses; ia; ia = ia->address_next)
725 if (avahi_address_cmp(a, &ia->address) == 0)
731 int avahi_interface_address_on_link(AvahiInterface *i, const AvahiAddress *a) {
732 AvahiInterfaceAddress *ia;
737 if (a->proto != i->protocol)
740 for (ia = i->addresses; ia; ia = ia->address_next) {
742 if (a->proto == AVAHI_PROTO_INET) {
745 m = ~(((uint32_t) -1) >> ia->prefix_len);
747 if ((ntohl(a->data.ipv4.address) & m) == (ntohl(ia->address.data.ipv4.address) & m))
752 assert(a->proto == AVAHI_PROTO_INET6);
756 for (j = 0; j < 16; j++) {
770 if ((a->data.ipv6.address[j] & m) != (ia->address.data.ipv6.address[j] & m))
779 int avahi_interface_has_address(AvahiInterfaceMonitor *m, AvahiIfIndex iface, const AvahiAddress *a) {
781 AvahiInterfaceAddress *j;
784 assert(iface != AVAHI_IF_UNSPEC);
787 if (!(i = avahi_interface_monitor_get_interface(m, iface, a->proto)))
790 for (j = i->addresses; j; j = j->address_next)
791 if (avahi_address_cmp(a, &j->address) == 0)
797 AvahiIfIndex avahi_find_interface_for_address(AvahiInterfaceMonitor *m, const AvahiAddress *a) {
801 /* Some stupid OS don't support passing the interface index when a
802 * packet is received. We have to work around that limitation by
803 * looking for an interface that has the incoming address
804 * attached. This is sometimes ambiguous, but we have to live with
807 for (i = m->interfaces; i; i = i->interface_next) {
808 AvahiInterfaceAddress *ai;
810 if (i->protocol != a->proto)
813 for (ai = i->addresses; ai; ai = ai->address_next)
814 if (avahi_address_cmp(a, &ai->address) == 0)
815 return i->hardware->index;
818 return AVAHI_IF_UNSPEC;