/* PipeWire */ /* SPDX-FileCopyrightText: Copyright © 2021 Wim Taymans */ /* SPDX-License-Identifier: MIT */ #include #include #include #include #include #include #include #include "config.h" #include #include #include #include #include #include #include #include #include "module-protocol-pulse/format.h" #include "module-zeroconf-discover/avahi-poll.h" /** \page page_module_raop_discover PipeWire Module: RAOP Discover * * Automatically creates RAOP (Airplay) sink devices based on zeroconf * information. * * This module will load module-raop-sink for each announced stream that matches * the rule with the create-stream action. * * If no stream.rules are given, it will create a sink for all announced * streams. * * ## Module Options * * Options specific to the behavior of this module * * - `stream.rules` = : match rules, use create-stream actions. See * \ref page_module_raop_sink for module properties. * * ## Example configuration * *\code{.unparsed} * context.modules = [ * { name = libpipewire-raop-discover * args = { * stream.rules = [ * { matches = [ * { raop.ip = "~.*" * #raop.ip.version = 4 | 6 * #raop.ip.version = 4 * #raop.port = 1000 * #raop.name = "" * #raop.hostname = "" * #raop.domain = "" * #raop.device = "" * #raop.transport = "udp" | "tcp" * #raop.encryption.type = "RSA" | "auth_setup" | "none" * #raop.audio.codec = "PCM" | "ALAC" | "AAC" | "AAC-ELD" * #audio.channels = 2 * #audio.format = "S16" | "S24" | "S32" * #audio.rate = 44100 * #device.model = "" * } * ] * actions = { * create-stream = { * #raop.password = "" * stream.props = { * #target.object = "" * #media.class = "Audio/Sink" * } * } * } * } * ] * } * } * ] *\endcode * * ## See also * * \ref page_module_raop_sink */ #define NAME "raop-discover" PW_LOG_TOPIC_STATIC(mod_topic, "mod." NAME); #define PW_LOG_TOPIC_DEFAULT mod_topic #define MODULE_USAGE "( stream.rules=, use create-stream actions )" #define DEFAULT_CREATE_RULES \ "[ { matches = [ { raop.ip = \"~.*\" } ] actions = { create-stream = { } } } ] " static const struct spa_dict_item module_props[] = { { PW_KEY_MODULE_AUTHOR, "Wim Taymans " }, { PW_KEY_MODULE_DESCRIPTION, "Discover remote streams" }, { PW_KEY_MODULE_USAGE, MODULE_USAGE }, { PW_KEY_MODULE_VERSION, PACKAGE_VERSION }, }; #define SERVICE_TYPE_SINK "_raop._tcp" struct impl { struct pw_context *context; struct pw_impl_module *module; struct spa_hook module_listener; struct pw_properties *properties; AvahiPoll *avahi_poll; AvahiClient *client; AvahiServiceBrowser *sink_browser; struct spa_list tunnel_list; }; struct tunnel_info { const char *name; const char *host_name; const char *ip; const char *port; }; #define TUNNEL_INFO(...) ((struct tunnel_info){ __VA_ARGS__ }) struct tunnel { struct spa_list link; struct tunnel_info info; struct pw_impl_module *module; struct spa_hook module_listener; }; static int start_client(struct impl *impl); static struct tunnel *make_tunnel(struct impl *impl, const struct tunnel_info *info) { struct tunnel *t; t = calloc(1, sizeof(*t)); if (t == NULL) return NULL; t->info.name = strdup(info->name); t->info.host_name = strdup(info->host_name); t->info.ip = strdup(info->ip); t->info.port = strdup(info->port); spa_list_append(&impl->tunnel_list, &t->link); return t; } static struct tunnel *find_tunnel(struct impl *impl, const struct tunnel_info *info) { struct tunnel *t; spa_list_for_each(t, &impl->tunnel_list, link) { if (spa_streq(t->info.name, info->name)) return t; } return NULL; } static void free_tunnel(struct tunnel *t) { spa_list_remove(&t->link); if (t->module) pw_impl_module_destroy(t->module); free((char *) t->info.name); free((char *) t->info.host_name); free((char *) t->info.ip); free((char *) t->info.port); free(t); } static void impl_free(struct impl *impl) { struct tunnel *t; spa_list_consume(t, &impl->tunnel_list, link) free_tunnel(t); if (impl->sink_browser) avahi_service_browser_free(impl->sink_browser); if (impl->client) avahi_client_free(impl->client); if (impl->avahi_poll) pw_avahi_poll_free(impl->avahi_poll); pw_properties_free(impl->properties); free(impl); } static void module_destroy(void *data) { struct impl *impl = data; spa_hook_remove(&impl->module_listener); impl_free(impl); } static const struct pw_impl_module_events module_events = { PW_VERSION_IMPL_MODULE_EVENTS, .destroy = module_destroy, }; static bool str_in_list(const char *haystack, const char *delimiters, const char *needle) { const char *s, *state = NULL; size_t len; while ((s = pw_split_walk(haystack, delimiters, &len, &state))) { if (spa_strneq(needle, s, len)) return true; } return false; } static void pw_properties_from_avahi_string(const char *key, const char *value, struct pw_properties *props) { if (spa_streq(key, "device")) { pw_properties_set(props, "raop.device", value); } else if (spa_streq(key, "tp")) { /* transport protocol, "UDP", "TCP", "UDP,TCP" */ if (str_in_list(value, ",", "UDP")) value = "udp"; else if (str_in_list(value, ",", "TCP")) value = "tcp"; pw_properties_set(props, "raop.transport", value); } else if (spa_streq(key, "et")) { /* Supported encryption types: * 0 = none, * 1 = RSA, * 2 = FairPlay, * 3 = MFiSAP, * 4 = FairPlay SAPv2.5. */ if (str_in_list(value, ",", "1")) value = "RSA"; else if (str_in_list(value, ",", "4")) value = "auth_setup"; else value = "none"; pw_properties_set(props, "raop.encryption.type", value); } else if (spa_streq(key, "cn")) { /* Suported audio codecs: * 0 = PCM, * 1 = ALAC, * 2 = AAC, * 3 = AAC ELD. */ if (str_in_list(value, ",", "0")) value = "PCM"; else if (str_in_list(value, ",", "1")) value = "ALAC"; else if (str_in_list(value, ",", "2")) value = "AAC"; else if (str_in_list(value, ",", "2")) value = "AAC-ELD"; else value = "unknown"; pw_properties_set(props, "raop.audio.codec", value); } else if (spa_streq(key, "ch")) { /* Number of channels */ pw_properties_set(props, PW_KEY_AUDIO_CHANNELS, value); } else if (spa_streq(key, "ss")) { /* Sample size */ if (spa_streq(value, "16")) value = "S16"; else if (spa_streq(value, "24")) value = "S24"; else if (spa_streq(value, "32")) value = "S32"; else value = "UNKNOWN"; pw_properties_set(props, PW_KEY_AUDIO_FORMAT, value); } else if (spa_streq(key, "sr")) { /* Sample rate */ pw_properties_set(props, PW_KEY_AUDIO_RATE, value); } else if (spa_streq(key, "am")) { /* Device model */ pw_properties_set(props, "device.model", value); } } static void submodule_destroy(void *data) { struct tunnel *t = data; spa_hook_remove(&t->module_listener); t->module = NULL; } static const struct pw_impl_module_events submodule_events = { PW_VERSION_IMPL_MODULE_EVENTS, .destroy = submodule_destroy, }; struct match_info { struct impl *impl; struct pw_properties *props; struct tunnel *tunnel; bool matched; }; static int create_stream(struct impl *impl, struct pw_properties *props, struct tunnel *t) { FILE *f; char *args; size_t size; int res = 0; struct pw_impl_module *mod; if ((f = open_memstream(&args, &size)) == NULL) { res = -errno; pw_log_error("Can't open memstream: %m"); goto done; } fprintf(f, "{"); pw_properties_serialize_dict(f, &props->dict, 0); fprintf(f, "}"); fclose(f); pw_log_info("loading module args:'%s'", args); mod = pw_context_load_module(impl->context, "libpipewire-module-raop-sink", args, NULL); free(args); if (mod == NULL) { res = -errno; pw_log_error("Can't load module: %m"); goto done; } pw_impl_module_add_listener(mod, &t->module_listener, &submodule_events, t); t->module = mod; done: return res; } static int rule_matched(void *data, const char *location, const char *action, const char *str, size_t len) { struct match_info *i = data; int res = 0; i->matched = true; if (spa_streq(action, "create-stream")) { pw_properties_update_string(i->props, str, len); create_stream(i->impl, i->props, i->tunnel); } return res; } static void resolver_cb(AvahiServiceResolver *r, AvahiIfIndex interface, AvahiProtocol protocol, AvahiResolverEvent event, const char *name, const char *type, const char *domain, const char *host_name, const AvahiAddress *a, uint16_t port, AvahiStringList *txt, AvahiLookupResultFlags flags, void *userdata) { struct impl *impl = userdata; struct tunnel_info tinfo; struct tunnel *t; const char *str, *port_str; AvahiStringList *l; struct pw_properties *props = NULL; char at[AVAHI_ADDRESS_STR_MAX]; if (event != AVAHI_RESOLVER_FOUND) { pw_log_error("Resolving of '%s' failed: %s", name, avahi_strerror(avahi_client_errno(impl->client))); goto done; } avahi_address_snprint(at, sizeof(at), a); props = pw_properties_new(NULL, NULL); if (props == NULL) { pw_log_error("Can't allocate properties: %m"); goto done; } pw_properties_setf(props, "raop.ip", "%s", at); pw_properties_setf(props, "raop.port", "%u", port); pw_properties_setf(props, "raop.name", "%s", name); pw_properties_setf(props, "raop.hostname", "%s", host_name); pw_properties_setf(props, "raop.domain", "%s", domain); for (l = txt; l; l = l->next) { char *key, *value; if (avahi_string_list_get_pair(l, &key, &value, NULL) != 0) break; pw_properties_from_avahi_string(key, value, props); avahi_free(key); avahi_free(value); } port_str = pw_properties_get(props, "raop.port"); tinfo = TUNNEL_INFO(.name = name, .host_name = host_name, .ip = at, .port = port_str); t = find_tunnel(impl, &tinfo); if (t == NULL) t = make_tunnel(impl, &tinfo); if (t == NULL) { pw_log_error("Can't make tunnel: %m"); goto done; } if (t->module != NULL) { pw_log_info("found duplicate mdns entry - skipping tunnel creation"); goto done; } if ((str = pw_properties_get(impl->properties, "stream.rules")) == NULL) str = DEFAULT_CREATE_RULES; if (str != NULL) { struct match_info minfo = { .impl = impl, .props = props, .tunnel = t, }; pw_conf_match_rules(str, strlen(str), NAME, &props->dict, rule_matched, &minfo); if (!minfo.matched) pw_log_info("unmatched service found %s", str); } done: avahi_service_resolver_free(r); pw_properties_free(props); } static void browser_cb(AvahiServiceBrowser *b, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *name, const char *type, const char *domain, AvahiLookupResultFlags flags, void *userdata) { struct impl *impl = userdata; struct tunnel_info info; struct tunnel *t; if (flags & AVAHI_LOOKUP_RESULT_LOCAL) return; info = TUNNEL_INFO(.name = name); t = find_tunnel(impl, &info); switch (event) { case AVAHI_BROWSER_NEW: if (t != NULL) { pw_log_info("found duplicate mdns entry - skipping tunnel creation"); return; } if (!(avahi_service_resolver_new(impl->client, interface, protocol, name, type, domain, AVAHI_PROTO_UNSPEC, 0, resolver_cb, impl))) pw_log_error("can't make service resolver: %s", avahi_strerror(avahi_client_errno(impl->client))); break; case AVAHI_BROWSER_REMOVE: if (t == NULL) return; free_tunnel(t); break; default: break; } } static struct AvahiServiceBrowser *make_browser(struct impl *impl, const char *service_type) { struct AvahiServiceBrowser *s; s = avahi_service_browser_new(impl->client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, service_type, NULL, 0, browser_cb, impl); if (s == NULL) { pw_log_error("can't make browser for %s: %s", service_type, avahi_strerror(avahi_client_errno(impl->client))); } return s; } static void client_callback(AvahiClient *c, AvahiClientState state, void *userdata) { struct impl *impl = userdata; impl->client = c; switch (state) { case AVAHI_CLIENT_S_REGISTERING: case AVAHI_CLIENT_S_RUNNING: case AVAHI_CLIENT_S_COLLISION: if (impl->sink_browser == NULL) impl->sink_browser = make_browser(impl, SERVICE_TYPE_SINK); if (impl->sink_browser == NULL) goto error; break; case AVAHI_CLIENT_FAILURE: if (avahi_client_errno(c) == AVAHI_ERR_DISCONNECTED) start_client(impl); SPA_FALLTHROUGH; case AVAHI_CLIENT_CONNECTING: if (impl->sink_browser) { avahi_service_browser_free(impl->sink_browser); impl->sink_browser = NULL; } break; default: break; } return; error: pw_impl_module_schedule_destroy(impl->module); } static int start_client(struct impl *impl) { int res; if ((impl->client = avahi_client_new(impl->avahi_poll, AVAHI_CLIENT_NO_FAIL, client_callback, impl, &res)) == NULL) { pw_log_error("can't create client: %s", avahi_strerror(res)); pw_impl_module_schedule_destroy(impl->module); return -EIO; } return 0; } static int start_avahi(struct impl *impl) { struct pw_loop *loop; loop = pw_context_get_main_loop(impl->context); impl->avahi_poll = pw_avahi_poll_new(loop); return start_client(impl); } SPA_EXPORT int pipewire__module_init(struct pw_impl_module *module, const char *args) { struct pw_context *context = pw_impl_module_get_context(module); struct pw_properties *props; struct impl *impl; int res; PW_LOG_TOPIC_INIT(mod_topic); impl = calloc(1, sizeof(struct impl)); if (impl == NULL) goto error_errno; pw_log_debug("module %p: new %s", impl, args); if (args == NULL) args = ""; props = pw_properties_new_string(args); if (props == NULL) goto error_errno; spa_list_init(&impl->tunnel_list); impl->module = module; impl->context = context; impl->properties = props; pw_impl_module_add_listener(module, &impl->module_listener, &module_events, impl); pw_impl_module_update_properties(module, &SPA_DICT_INIT_ARRAY(module_props)); start_avahi(impl); return 0; error_errno: res = -errno; if (impl) impl_free(impl); return res; }