2008-12-30 16:43:58 +01:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 The Music Player Daemon Project
|
2008-12-30 16:43:58 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-12-30 16:43:58 +01:00
|
|
|
*/
|
|
|
|
|
2021-02-24 12:36:44 +01:00
|
|
|
#include "Bonjour.hxx"
|
|
|
|
#include "Internal.hxx"
|
2020-10-14 14:24:16 +02:00
|
|
|
#include "event/SocketEvent.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "util/Domain.hxx"
|
|
|
|
#include "Log.hxx"
|
2018-08-20 16:19:17 +02:00
|
|
|
#include "util/Compiler.h"
|
2008-12-30 16:43:58 +01:00
|
|
|
|
|
|
|
#include <dns_sd.h>
|
|
|
|
|
2014-10-10 22:30:38 +02:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
static constexpr Domain bonjour_domain("bonjour");
|
2008-12-30 16:43:58 +01:00
|
|
|
|
2021-02-24 13:39:30 +01:00
|
|
|
class BonjourHelper final {
|
2013-01-27 22:32:10 +01:00
|
|
|
DNSServiceRef service_ref;
|
|
|
|
|
2020-10-14 14:24:16 +02:00
|
|
|
SocketEvent socket_event;
|
|
|
|
|
2013-01-27 22:32:10 +01:00
|
|
|
public:
|
2021-02-24 13:39:30 +01:00
|
|
|
BonjourHelper(EventLoop &_loop, DNSServiceRef _service_ref)
|
2020-10-14 14:24:16 +02:00
|
|
|
:service_ref(_service_ref),
|
2021-01-23 12:06:49 +01:00
|
|
|
socket_event(_loop,
|
2021-01-23 12:13:05 +01:00
|
|
|
BIND_THIS_METHOD(OnSocketReady),
|
|
|
|
SocketDescriptor(DNSServiceRefSockFD(service_ref)))
|
2020-10-14 14:24:16 +02:00
|
|
|
{
|
|
|
|
socket_event.ScheduleRead();
|
2013-01-27 22:32:10 +01:00
|
|
|
}
|
|
|
|
|
2021-02-24 13:39:30 +01:00
|
|
|
~BonjourHelper() {
|
2013-01-27 22:32:10 +01:00
|
|
|
DNSServiceRefDeallocate(service_ref);
|
|
|
|
}
|
|
|
|
|
2021-02-24 13:46:26 +01:00
|
|
|
BonjourHelper(const BonjourHelper &) = delete;
|
|
|
|
BonjourHelper &operator=(const BonjourHelper &) = delete;
|
|
|
|
|
2021-01-23 12:06:49 +01:00
|
|
|
void Cancel() noexcept {
|
|
|
|
socket_event.Cancel();
|
|
|
|
}
|
|
|
|
|
2013-01-27 22:32:10 +01:00
|
|
|
protected:
|
2017-11-10 20:20:07 +01:00
|
|
|
/* virtual methods from class SocketMonitor */
|
2021-01-23 12:06:49 +01:00
|
|
|
void OnSocketReady([[maybe_unused]] unsigned flags) noexcept {
|
2013-01-27 22:32:10 +01:00
|
|
|
DNSServiceProcessResult(service_ref);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-02-24 13:39:30 +01:00
|
|
|
static BonjourHelper *bonjour_monitor;
|
2008-12-30 16:43:58 +01:00
|
|
|
|
2008-12-30 16:45:49 +01:00
|
|
|
static void
|
2020-03-12 20:56:11 +01:00
|
|
|
dnsRegisterCallback([[maybe_unused]] DNSServiceRef sdRef,
|
|
|
|
[[maybe_unused]] DNSServiceFlags flags,
|
2008-12-30 16:45:49 +01:00
|
|
|
DNSServiceErrorType errorCode, const char *name,
|
2020-03-12 20:56:11 +01:00
|
|
|
[[maybe_unused]] const char *regtype,
|
|
|
|
[[maybe_unused]] const char *domain,
|
|
|
|
[[maybe_unused]] void *context)
|
2008-12-30 16:43:58 +01:00
|
|
|
{
|
|
|
|
if (errorCode != kDNSServiceErr_NoError) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(bonjour_domain,
|
|
|
|
"Failed to register zeroconf service");
|
2008-12-30 16:43:58 +01:00
|
|
|
|
2013-01-27 22:32:10 +01:00
|
|
|
bonjour_monitor->Cancel();
|
2008-12-30 16:43:58 +01:00
|
|
|
} else {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(bonjour_domain,
|
|
|
|
"Registered zeroconf service with name '%s'",
|
|
|
|
name);
|
2008-12-30 16:43:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-27 22:18:45 +01:00
|
|
|
void
|
2021-02-24 06:36:14 +01:00
|
|
|
BonjourInit(EventLoop &loop, const char *service_name, unsigned port)
|
2008-12-30 16:43:58 +01:00
|
|
|
{
|
2013-01-27 22:32:10 +01:00
|
|
|
DNSServiceRef dnsReference;
|
2008-12-30 16:43:58 +01:00
|
|
|
DNSServiceErrorType error = DNSServiceRegister(&dnsReference,
|
2013-01-27 22:18:45 +01:00
|
|
|
0, 0, service_name,
|
2013-10-19 18:19:03 +02:00
|
|
|
SERVICE_TYPE, nullptr, nullptr,
|
2021-02-24 06:36:14 +01:00
|
|
|
htons(port), 0,
|
2013-10-19 18:19:03 +02:00
|
|
|
nullptr,
|
2008-12-30 16:43:58 +01:00
|
|
|
dnsRegisterCallback,
|
2013-10-19 18:19:03 +02:00
|
|
|
nullptr);
|
2008-12-30 16:43:58 +01:00
|
|
|
|
|
|
|
if (error != kDNSServiceErr_NoError) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(bonjour_domain,
|
|
|
|
"Failed to register zeroconf service");
|
2008-12-30 16:43:58 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-24 13:39:30 +01:00
|
|
|
bonjour_monitor = new BonjourHelper(loop, dnsReference);
|
2008-12-30 16:43:58 +01:00
|
|
|
}
|
|
|
|
|
2013-01-27 22:18:45 +01:00
|
|
|
void
|
|
|
|
BonjourDeinit()
|
2008-12-30 16:43:58 +01:00
|
|
|
{
|
2013-01-27 22:32:10 +01:00
|
|
|
delete bonjour_monitor;
|
2008-12-30 16:43:58 +01:00
|
|
|
}
|