/* * Embedded Avahi client. This file is part of Shairport. * Copyright (c) James Laird 2013 * Additions for metadata and for detecting IPv6 Copyright (c) Mike Brady 2015--2019 * All rights reserved. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include "config.h" #include "common.h" #include "mdns.h" #include "rtsp.h" #ifdef CONFIG_DACP_CLIENT #include "dacp.h" #endif #include #include #include #include #include #include #include #include #define check_avahi_response(debugLevelArg, veryUnLikelyArgumentName) \ { \ int rc = veryUnLikelyArgumentName; \ if (rc) \ debug(debugLevelArg, "avahi call response %d at __FILE__, __LINE__)", rc); \ } typedef struct { AvahiServiceBrowser *service_browser; char *dacp_id; } dacp_browser_struct; dacp_browser_struct private_dbs; // static AvahiServiceBrowser *sb = NULL; static AvahiClient *client = NULL; // static AvahiClient *service_client = NULL; static AvahiEntryGroup *group = NULL; static AvahiThreadedPoll *tpoll = NULL; // static AvahiThreadedPoll *service_poll = NULL; static char *service_name = NULL; static int port = 0; static void resolve_callback(AvahiServiceResolver *r, AVAHI_GCC_UNUSED AvahiIfIndex interface, AVAHI_GCC_UNUSED AvahiProtocol protocol, AvahiResolverEvent event, const char *name, const char *type, const char *domain, __attribute__((unused)) const char *host_name, __attribute__((unused)) const AvahiAddress *address, uint16_t port, __attribute__((unused)) AvahiStringList *txt, __attribute__((unused)) AvahiLookupResultFlags flags, void *userdata) { // debug(1,"resolve_callback, event %d.", event); assert(r); dacp_browser_struct *dbs = (dacp_browser_struct *)userdata; /* Called whenever a service has been resolved successfully or timed out */ switch (event) { case AVAHI_RESOLVER_FAILURE: debug(2, "(Resolver) Failed to resolve service '%s' of type '%s' in domain '%s': %s.", name, type, domain, avahi_strerror(avahi_client_errno(avahi_service_resolver_get_client(r)))); break; case AVAHI_RESOLVER_FOUND: { // char a[AVAHI_ADDRESS_STR_MAX], *t; debug(3, "resolve_callback: Service '%s' of type '%s' in domain '%s':", name, type, domain); if (dbs->dacp_id) { char *dacpid = strstr(name, "iTunes_Ctrl_"); if (dacpid) { dacpid += strlen("iTunes_Ctrl_"); while (*dacpid == '0') dacpid++; // skip any leading zeroes if (strcmp(dacpid, dbs->dacp_id) == 0) { debug(3, "resolve_callback: client dacp_id \"%s\" dacp port: %u.", dbs->dacp_id, port); #ifdef CONFIG_DACP_CLIENT dacp_monitor_port_update_callback(dacpid, port); #endif #ifdef CONFIG_METADATA char portstring[20]; memset(portstring, 0, sizeof(portstring)); snprintf(portstring, sizeof(portstring), "%u", port); send_ssnc_metadata('dapo', strdup(portstring), strlen(portstring), 0); #endif } } else { debug(1, "Resolve callback: Can't see a DACP string in a DACP Record!"); } } } } // debug(1,"service resolver freed by resolve_callback"); avahi_service_resolver_free(r); } static void browse_callback(AvahiServiceBrowser *b, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *name, const char *type, const char *domain, AVAHI_GCC_UNUSED AvahiLookupResultFlags flags, void *userdata) { // debug(1,"browse_callback, event %d.", event); assert(b); /* Called whenever a new services becomes available on the LAN or is removed from the LAN */ switch (event) { case AVAHI_BROWSER_FAILURE: warn("avahi: browser failure.", avahi_strerror(avahi_client_errno(avahi_service_browser_get_client(b)))); avahi_threaded_poll_quit(tpoll); break; case AVAHI_BROWSER_NEW: // debug(1, "browse_callback: avahi_service_resolver_new for service '%s' of type '%s' in domain // '%s'.", name, type, domain); /* We ignore the returned resolver object. In the callback function we free it. If the server is terminated before the callback function is called the server will free the resolver for us. */ if (!(avahi_service_resolver_new(client, interface, protocol, name, type, domain, AVAHI_PROTO_UNSPEC, 0, resolve_callback, userdata))) debug(1, "Failed to resolve service '%s': %s.", name, avahi_strerror(avahi_client_errno(client))); break; case AVAHI_BROWSER_REMOVE: debug(2, "(Browser) REMOVE: service '%s' of type '%s' in domain '%s'.", name, type, domain); #ifdef CONFIG_DACP_CLIENT dacp_browser_struct *dbs = (dacp_browser_struct *)userdata; char *dacpid = strstr(name, "iTunes_Ctrl_"); if (dacpid) { dacpid += strlen("iTunes_Ctrl_"); while (*dacpid == '0') dacpid++; // skip any leading zeroes if ((dbs->dacp_id) && (strcmp(dacpid, dbs->dacp_id) == 0)) dacp_monitor_port_update_callback(dbs->dacp_id, 0); // say the port is withdrawn } else { debug(1, "Browse callback: Can't see a DACP string in a DACP Record!"); } #endif break; case AVAHI_BROWSER_ALL_FOR_NOW: case AVAHI_BROWSER_CACHE_EXHAUSTED: // debug(1, "(Browser) %s.", event == AVAHI_BROWSER_CACHE_EXHAUSTED ? "CACHE_EXHAUSTED" : // "ALL_FOR_NOW"); break; } } static void register_service(AvahiClient *c); static void egroup_callback(AvahiEntryGroup *g, AvahiEntryGroupState state, AVAHI_GCC_UNUSED void *userdata) { // debug(1,"egroup_callback, state %d.", state); switch (state) { case AVAHI_ENTRY_GROUP_ESTABLISHED: /* The entry group has been established successfully */ debug(2, "avahi: service '%s' successfully added.", service_name); break; case AVAHI_ENTRY_GROUP_COLLISION: { char *n; /* A service name collision with a remote service * happened. Let's pick a new name */ debug(2, "avahi name collision -- look for another"); n = avahi_alternative_service_name(service_name); if (service_name) avahi_free(service_name); else debug(1, "avahi attempt to free a NULL service name"); service_name = n; debug(2, "avahi: service name collision, renaming service to '%s'", service_name); /* And recreate the services */ register_service(avahi_entry_group_get_client(g)); break; } case AVAHI_ENTRY_GROUP_FAILURE: debug(1, "avahi: entry group failure: %s", avahi_strerror(avahi_client_errno(avahi_entry_group_get_client(g)))); break; case AVAHI_ENTRY_GROUP_UNCOMMITED: debug(2, "avahi: service '%s' group is not yet committed.", service_name); break; case AVAHI_ENTRY_GROUP_REGISTERING: debug(2, "avahi: service '%s' group is registering.", service_name); break; default: debug(1, "avahi: unhandled egroup state: %d", state); break; } } static void register_service(AvahiClient *c) { if (!group) group = avahi_entry_group_new(c, egroup_callback, NULL); if (!group) debug(1, "avahi: avahi_entry_group_new failed"); else { // debug(2, "register_service -- go ahead and register."); if (!avahi_entry_group_is_empty(group)) return; int ret; AvahiIfIndex selected_interface; if (config.interface != NULL) selected_interface = config.interface_index; else selected_interface = AVAHI_IF_UNSPEC; #ifdef CONFIG_METADATA if (config.metadata_enabled) { ret = avahi_entry_group_add_service(group, selected_interface, AVAHI_PROTO_UNSPEC, 0, service_name, config.regtype, NULL, NULL, port, MDNS_RECORD_WITH_METADATA, NULL); if (ret == 0) debug(2, "avahi: request to add \"%s\" service with metadata", config.regtype); } else { #endif ret = avahi_entry_group_add_service(group, selected_interface, AVAHI_PROTO_UNSPEC, 0, service_name, config.regtype, NULL, NULL, port, MDNS_RECORD_WITHOUT_METADATA, NULL); if (ret == 0) debug(2, "avahi: request to add \"%s\" service without metadata", config.regtype); #ifdef CONFIG_METADATA } #endif if (ret < 0) debug(1, "avahi: avahi_entry_group_add_service failed"); else { ret = avahi_entry_group_commit(group); if (ret < 0) debug(1, "avahi: avahi_entry_group_commit failed"); } } } static void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UNUSED void *userdata) { // debug(1,"client_callback, state %d.", state); int err; switch (state) { case AVAHI_CLIENT_S_REGISTERING: if (group) check_avahi_response(1, avahi_entry_group_reset(group)); break; case AVAHI_CLIENT_S_RUNNING: register_service(c); break; case AVAHI_CLIENT_FAILURE: err = avahi_client_errno(c); debug(1, "avahi: client failure: %s", avahi_strerror(err)); if (err == AVAHI_ERR_DISCONNECTED) { debug(1, "avahi client -- we have been disconnected, so let's reconnect."); /* We have been disconnected, so lets reconnect */ if (c) avahi_client_free(c); else debug(1, "Attempt to free NULL avahi client"); c = NULL; group = NULL; if (!(client = avahi_client_new(avahi_threaded_poll_get(tpoll), AVAHI_CLIENT_NO_FAIL, client_callback, userdata, &err))) { warn("avahi: failed to create client object: %s", avahi_strerror(err)); avahi_threaded_poll_quit(tpoll); } } else { warn("avahi: client failure: %s", avahi_strerror(err)); avahi_threaded_poll_quit(tpoll); } break; case AVAHI_CLIENT_S_COLLISION: debug(2, "avahi: state is AVAHI_CLIENT_S_COLLISION...needs a rename: %s", service_name); break; case AVAHI_CLIENT_CONNECTING: debug(2, "avahi: received AVAHI_CLIENT_CONNECTING"); break; default: debug(1, "avahi: unexpected and unhandled avahi client state: %d", state); break; } } static int avahi_register(char *srvname, int srvport) { // debug(1, "avahi_register."); service_name = strdup(srvname); port = srvport; int err; if (!(tpoll = avahi_threaded_poll_new())) { warn("couldn't create avahi threaded tpoll!"); return -1; } if (!(client = avahi_client_new(avahi_threaded_poll_get(tpoll), AVAHI_CLIENT_NO_FAIL, client_callback, NULL, &err))) { warn("couldn't create avahi client: %s!", avahi_strerror(err)); return -1; } if (avahi_threaded_poll_start(tpoll) < 0) { warn("couldn't start avahi tpoll thread"); return -1; } return 0; } static void avahi_unregister(void) { // debug(1, "avahi_unregister."); if (tpoll) { debug(2, "avahi: stop the threaded poll."); avahi_threaded_poll_stop(tpoll); if (client) { debug(2, "avahi: free the client."); avahi_client_free(client); client = NULL; } else { debug(1, "avahi attempting to unregister a NULL client"); } debug(2, "avahi: free the threaded poll."); avahi_threaded_poll_free(tpoll); tpoll = NULL; } else { debug(1, "No avahi threaded poll."); } if (service_name) { debug(2, "avahi: free the service name."); free(service_name); } else debug(1, "avahi attempt to free NULL service name"); service_name = NULL; } void avahi_dacp_monitor_start(void) { // debug(1, "avahi_dacp_monitor_start."); memset((void *)&private_dbs, 0, sizeof(dacp_browser_struct)); debug(1, "avahi_dacp_monitor_start Avahi DACP monitor successfully started"); return; } void avahi_dacp_monitor_set_id(const char *dacp_id) { // debug(1, "avahi_dacp_monitor_set_id: Search for DACP ID \"%s\".", t); dacp_browser_struct *dbs = &private_dbs; if (dbs->dacp_id) free(dbs->dacp_id); if (dacp_id == NULL) dbs->dacp_id = NULL; else { char *t = strdup(dacp_id); if (t) { dbs->dacp_id = t; avahi_threaded_poll_lock(tpoll); if (dbs->service_browser) avahi_service_browser_free(dbs->service_browser); if (!(dbs->service_browser = avahi_service_browser_new(client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "_dacp._tcp", NULL, 0, browse_callback, (void *)dbs))) { warn("failed to create avahi service browser: %s\n", avahi_strerror(avahi_client_errno(client))); } avahi_threaded_poll_unlock(tpoll); } else { warn("avahi_dacp_set_id: can not allocate a dacp_id string in dacp_browser_struct."); } } } void avahi_dacp_monitor_stop() { // debug(1, "avahi_dacp_monitor_stop"); dacp_browser_struct *dbs = &private_dbs; // stop and dispose of everything avahi_threaded_poll_lock(tpoll); if (dbs->service_browser) { avahi_service_browser_free(dbs->service_browser); dbs->service_browser = NULL; } avahi_threaded_poll_unlock(tpoll); free(dbs->dacp_id); debug(2, "avahi_dacp_monitor_stop Avahi DACP monitor successfully stopped"); } mdns_backend mdns_avahi = {.name = "avahi", .mdns_register = avahi_register, .mdns_unregister = avahi_unregister, .mdns_dacp_monitor_start = avahi_dacp_monitor_start, .mdns_dacp_monitor_set_id = avahi_dacp_monitor_set_id, .mdns_dacp_monitor_stop = avahi_dacp_monitor_stop};