Skip to content

Commit feb1034

Browse files
committed
Implement DNS-SD publishing of KISS over TCP service on Linux and Mac
This allows client applications to locate the IP addresses and the port of the KISS TCP service, allowing the end user to just select a Dire Wolf from a list instead of trying to guess its dynamic IP address and typing it in manually. This is especially convenient on mobile devices. On Linux, the standard Avahi daemon is used via dbus and the avahi-client library. Building with it requires installing the development header package; README.md is updated accordingly. On Mac, the MacOS dnssd API is used: https://developer.apple.com/documentation/dnssd?language=objc I don't have Windows, but more recent Windows 10 builds apparently have a working DNS-SD mDNS implementation that can be used on 64-bit builds.
1 parent 8ac14f8 commit feb1034

12 files changed

+524
-4
lines changed

CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ elseif(APPLE)
156156
set(CMAKE_MACOSX_RPATH ON)
157157
message(STATUS "RPATH support: ${CMAKE_MACOSX_RPATH}")
158158

159+
# just blindly enable dns-sd
160+
set(USE_MACOS_DNSSD ON)
161+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_MACOS_DNSSD")
162+
159163
elseif (WIN32)
160164
if(NOT VS2015 AND NOT VS2017)
161165
message(FATAL_ERROR "You must use Microsoft Visual Studio 2015 or 2017 as compiler")
@@ -276,6 +280,11 @@ if(LINUX)
276280
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_CM108")
277281
endif()
278282

283+
find_package(Avahi)
284+
if(AVAHI_CLIENT_FOUND)
285+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_AVAHI_CLIENT")
286+
endif()
287+
279288
elseif (NOT WIN32 AND NOT CYGWIN)
280289
find_package(Portaudio REQUIRED)
281290
if(PORTAUDIO_FOUND)

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,17 @@ On Debian / Ubuntu / Raspbian / Raspberry Pi OS:
131131
sudo apt-get install cmake
132132
sudo apt-get install libasound2-dev
133133
sudo apt-get install libudev-dev
134+
sudo apt-get install libavahi-client-dev
134135

135136
Or on Red Hat / Fedora / CentOS:
136137

137-
sudo yum install git
138-
sudo yum install gcc
139-
sudo yum install gcc-c++
140-
sudo yum install make
138+
sudo yum install git
139+
sudo yum install gcc
140+
sudo yum install gcc-c++
141+
sudo yum install make
141142
sudo yum install alsa-lib-devel
142143
sudo yum install libudev-devel
144+
sudo yum install avahi-devel
143145

144146
CentOS 6 & 7 currently have cmake 2.8 but we need 3.1 or later.
145147
First you need to enable the EPEL repository. Add a symlink if you don't already have the older version and want to type cmake rather than cmake3.

cmake/modules/FindAvahi.cmake

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
find_library(AVAHI_COMMON_LIBRARY NAMES avahi-common PATHS ${PC_AVAHI_CLIENT_LIBRARY_DIRS})
3+
if(AVAHI_COMMON_LIBRARY)
4+
set(AVAHI_COMMON_FOUND TRUE)
5+
endif()
6+
7+
find_library(AVAHI_CLIENT_LIBRARY NAMES avahi-client PATHS ${PC_AVAHI_CLIENT_LIBRARY_DIRS})
8+
if(AVAHI_CLIENT_LIBRARY)
9+
set(AVAHI_CLIENT_FOUND TRUE)
10+
endif()
11+
12+
FIND_PACKAGE_HANDLE_STANDARD_ARGS(AVAHI DEFAULT_MSG AVAHI_COMMON_FOUND AVAHI_CLIENT_FOUND)
13+
14+
if (AVAHI_FOUND)
15+
set(AVAHI_INCLUDE_DIRS ${AVAHI_UI_INCLUDE_DIR})
16+
set(AVAHI_LIBRARIES ${AVAHI_COMMON_LIBRARY} ${AVAHI_CLIENT_LIBRARY})
17+
endif()
18+
19+
mark_as_advanced(AVAHI_INCLUDE_DIRS AVAHI_LIBRARIES)

src/CMakeLists.txt

+13
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ if(LINUX)
9696
cm108.c
9797
)
9898
endif()
99+
if(AVAHI_CLIENT_FOUND)
100+
list(APPEND direwolf_SOURCES
101+
dns_sd_common.c
102+
dns_sd_avahi.c
103+
)
104+
endif()
99105
elseif(WIN32 OR CYGWIN) # windows
100106
list(APPEND direwolf_SOURCES
101107
audio_win.c
@@ -111,6 +117,12 @@ if(LINUX)
111117
list(APPEND direwolf_SOURCES
112118
audio_portaudio.c
113119
)
120+
if(USE_MACOS_DNSSD)
121+
list(APPEND direwolf_SOURCES
122+
dns_sd_common.c
123+
dns_sd_macos.c
124+
)
125+
endif()
114126
endif()
115127

116128
add_executable(direwolf
@@ -127,6 +139,7 @@ target_link_libraries(direwolf
127139
${ALSA_LIBRARIES}
128140
${UDEV_LIBRARIES}
129141
${PORTAUDIO_LIBRARIES}
142+
${AVAHI_LIBRARIES}
130143
)
131144

132145
if(WIN32 OR CYGWIN)

src/config.c

+39
Original file line numberDiff line numberDiff line change
@@ -856,6 +856,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
856856
p_misc_config->enable_kiss_pt = 0; /* -p option */
857857
p_misc_config->kiss_copy = 0;
858858

859+
p_misc_config->dns_sd_enabled = 1;
860+
859861
/* Defaults from http://info.aprs.net/index.php?title=SmartBeaconing */
860862

861863
p_misc_config->sb_configured = 0; /* TRUE if SmartBeaconing is configured. */
@@ -4564,6 +4566,43 @@ void config_init (char *fname, struct audio_s *p_audio_config,
45644566
}
45654567

45664568

4569+
/*
4570+
* DNSSD - Enable or disable (1/0) dns-sd, DNS Service Discovery announcements
4571+
* DNSSDNAME - Set DNS-SD service name, defaults to "Dire Wolf on <hostname>"
4572+
*/
4573+
4574+
else if (strcasecmp(t, "DNSSD") == 0) {
4575+
int n;
4576+
t = split(NULL,0);
4577+
if (t == NULL) {
4578+
text_color_set(DW_COLOR_ERROR);
4579+
dw_printf ("Line %d: Missing integer value for DNSSD command.\n", line);
4580+
continue;
4581+
}
4582+
n = atoi(t);
4583+
if (n == 0 || n == 1) {
4584+
p_misc_config->dns_sd_enabled = n;
4585+
} else {
4586+
p_misc_config->dns_sd_enabled = 0;
4587+
text_color_set(DW_COLOR_ERROR);
4588+
dw_printf ("Line %d: Invalid integer value for DNSSD. Disabling dns-sd.\n", line);
4589+
}
4590+
}
4591+
4592+
else if (strcasecmp(t, "DNSSDNAME") == 0) {
4593+
t = split(NULL, 1);
4594+
if (t == NULL) {
4595+
text_color_set(DW_COLOR_ERROR);
4596+
dw_printf ("Line %d: Missing service name for DNSSDNAME.\n", line);
4597+
continue;
4598+
}
4599+
else {
4600+
strlcpy(p_misc_config->dns_sd_name, t, sizeof(p_misc_config->dns_sd_name));
4601+
}
4602+
}
4603+
4604+
4605+
45674606
/*
45684607
* GPSNMEA - Device name for reading from GPS receiver.
45694608
*/

src/config.h

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ struct misc_config_s {
8888

8989
char log_path[80]; /* Either directory or full file name depending on above. */
9090

91+
int dns_sd_enabled; /* DNS Service Discovery announcement enabled. */
92+
char dns_sd_name[64]; /* Name announced on dns-sd; defaults to "Dire Wolf on <hostname>" */
93+
9194
int sb_configured; /* TRUE if SmartBeaconing is configured. */
9295
int sb_fast_speed; /* MPH */
9396
int sb_fast_rate; /* seconds */

src/direwolf.c

+6
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
#include "dtime_now.h"
126126
#include "fx25.h"
127127
#include "dwsock.h"
128+
#include "dns_sd_dw.h"
128129

129130

130131
//static int idx_decoded = 0;
@@ -944,6 +945,11 @@ int main (int argc, char *argv[])
944945
server_init (&audio_config, &misc_config);
945946
kissnet_init (&misc_config);
946947

948+
#if (USE_AVAHI_CLIENT|USE_MACOS_DNSSD)
949+
if (misc_config.kiss_port > 0 && misc_config.dns_sd_enabled)
950+
dns_sd_announce(&misc_config);
951+
#endif
952+
947953
/*
948954
* Create a pseudo terminal and KISS TNC emulator.
949955
*/

0 commit comments

Comments
 (0)