-
Notifications
You must be signed in to change notification settings - Fork 320
/
Copy pathdns-sd.c
368 lines (320 loc) · 9.15 KB
/
dns-sd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
// SPDX-license-identifier: LGPL-v2-or-later
/*
* libiio - Library for interfacing industrial I/O (IIO) devices
*
* Copyright (C) 2021 Analog Devices, Inc.
* Author: Paul Cercueil <[email protected]>
*/
#include "debug.h"
#include "dns-sd.h"
#include "ops.h"
#include "thread-pool.h"
#include <iio/iio.h>
#include <avahi-common/thread-watch.h>
#include <avahi-common/error.h>
#include <avahi-common/alternative.h>
#include <avahi-common/malloc.h>
#include <avahi-client/client.h>
#include <avahi-client/publish.h>
#include <avahi-common/domain.h>
#include <ifaddrs.h>
#include <net/if.h>
#include <stddef.h>
#include <time.h>
/***
* Parts of the avahi code are borrowed from the client-publish-service.c
* https://www.avahi.org/doxygen/html/client-publish-service_8c-example.html
* which is an example in the avahi library. Copyright Lennart Poettering
* released under the LGPL 2.1 or (at your option) any later version.
*/
/* Global Data */
static struct avahi_data {
AvahiThreadedPoll *poll;
AvahiClient *client;
AvahiEntryGroup *group;
char * name;
uint16_t port;
} avahi;
static void create_services(AvahiClient *c);
static AvahiClient * client_new(void);
static void client_free()
{
/* This also frees the entry group, if any. */
if (avahi.client) {
avahi_client_free(avahi.client);
avahi.client = NULL;
avahi.group = NULL;
}
}
static void shutdown_avahi()
{
/* Stop the avahi client, if it's running. */
if (avahi.poll)
avahi_threaded_poll_stop(avahi.poll);
/* Clean up the avahi objects. The order is significant. */
client_free();
if (avahi.poll) {
avahi_threaded_poll_free(avahi.poll);
avahi.poll = NULL;
}
if (avahi.name) {
IIO_INFO("Avahi: Removing service '%s'\n", avahi.name);
avahi_free(avahi.name);
avahi.name = NULL;
}
}
static void __avahi_group_cb(AvahiEntryGroup *group,
AvahiEntryGroupState state, void *d)
{
/* Called whenever the entry group state changes */
if (!group) {
IIO_ERROR("__avahi_group_cb with no valid group\n");
return;
}
avahi.group = group;
switch (state) {
case AVAHI_ENTRY_GROUP_ESTABLISHED :
IIO_INFO("Avahi: Service '%s:%hu' successfully established.\n",
avahi.name, avahi.port);
break;
case AVAHI_ENTRY_GROUP_COLLISION : {
char *n;
/* A service name collision, pick a new name */
n = avahi_alternative_service_name(avahi.name);
avahi_free(avahi.name);
avahi.name = n;
IIO_INFO("Avahi: Group Service name collision, renaming service to '%s:%hu'\n",
avahi.name, avahi.port);
create_services(avahi_entry_group_get_client(group));
break;
}
case AVAHI_ENTRY_GROUP_FAILURE :
IIO_ERROR("Entry group failure: %s\n",
avahi_strerror(avahi_client_errno(
avahi_entry_group_get_client(group))));
break;
case AVAHI_ENTRY_GROUP_UNCOMMITED:
/* This is normal,
* since we commit things in the create_services()
*/
IIO_DEBUG("Avahi: Group uncommitted\n");
break;
case AVAHI_ENTRY_GROUP_REGISTERING:
IIO_DEBUG("Avahi: Group registering\n");
break;
}
}
static void __avahi_client_cb(AvahiClient *client,
AvahiClientState state, void *d)
{
if (!client) {
IIO_ERROR("__avahi_client_cb with no valid client\n");
return;
}
switch (state) {
case AVAHI_CLIENT_S_RUNNING:
/* Same as AVAHI_SERVER_RUNNING */
IIO_DEBUG("Avahi: create services\n");
/* The server has startup successfully, so create our services */
create_services(client);
break;
case AVAHI_CLIENT_FAILURE:
if (avahi_client_errno(client) != AVAHI_ERR_DISCONNECTED) {
IIO_ERROR("Avahi: Client failure: %s\n",
avahi_strerror(avahi_client_errno(client)));
break;
}
IIO_INFO("Avahi: server disconnected\n");
avahi_client_free(client);
avahi.group = NULL;
avahi.client = client_new();
break;
case AVAHI_CLIENT_S_COLLISION:
/* Same as AVAHI_SERVER_COLLISION */
/* When the server is back in AVAHI_SERVER_RUNNING state
* we will register them again with the new host name. */
IIO_DEBUG("Avahi: Client collision\n");
/* Let's drop our registered services.*/
if (avahi.group)
avahi_entry_group_reset(avahi.group);
break;
case AVAHI_CLIENT_S_REGISTERING:
/* Same as AVAHI_SERVER_REGISTERING */
IIO_DEBUG("Avahi: Client group reset\n");
if (avahi.group)
avahi_entry_group_reset(avahi.group);
break;
case AVAHI_CLIENT_CONNECTING:
IIO_DEBUG("Avahi: Client Connecting\n");
break;
}
/* NOTE: group is freed by avahi_client_free */
}
static AvahiClient * client_new(void)
{
int ret;
AvahiClient * client;
client = avahi_client_new(avahi_threaded_poll_get(avahi.poll),
AVAHI_CLIENT_NO_FAIL, __avahi_client_cb, NULL, &ret);
/* No Daemon is handled by the avahi_start thread */
if (!client && ret != AVAHI_ERR_NO_DAEMON) {
IIO_ERROR("Avahi: failure creating client: %s (%d)\n",
avahi_strerror(ret), ret);
}
return client;
}
static void create_services(AvahiClient *c)
{
int ret;
if (!c) {
IIO_ERROR("create_services called with no valid client\n");
goto fail;
}
if (!avahi.group) {
avahi.group = avahi_entry_group_new(c, __avahi_group_cb, NULL);
if (!avahi.group) {
IIO_ERROR("avahi_entry_group_new() failed: %s\n",
avahi_strerror(avahi_client_errno(c)));
goto fail;
}
}
if (!avahi_entry_group_is_empty(avahi.group)) {
IIO_DEBUG("Avahi group not empty\n");
return;
}
ret = avahi_entry_group_add_service(avahi.group,
AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC,
0, avahi.name, "_iio._tcp", NULL, NULL, avahi.port, NULL);
if (ret < 0) {
if (ret == AVAHI_ERR_COLLISION) {
char *n;
n = avahi_alternative_service_name(avahi.name);
avahi_free(avahi.name);
avahi.name = n;
IIO_DEBUG("Service name collision, renaming service to '%s'\n",
avahi.name);
avahi_entry_group_reset(avahi.group);
create_services(c);
return;
}
IIO_ERROR("Failed to add _iio._tcp service: %s\n", avahi_strerror(ret));
goto fail;
}
ret = avahi_entry_group_commit(avahi.group);
if (ret < 0) {
IIO_ERROR("Failed to commit entry group: %s\n", avahi_strerror(ret));
goto fail;
}
IIO_INFO("Avahi: Registered '%s:%hu' to ZeroConf server %s\n",
avahi.name, avahi.port, avahi_client_get_version_string(c));
return;
fail:
avahi_entry_group_reset(avahi.group);
}
#define IIOD_ON "iiod on "
#define TIMEOUT 20
static void start_avahi_thd(struct thread_pool *pool, void *d)
{
char label[AVAHI_LABEL_MAX];
char host[AVAHI_LABEL_MAX - sizeof(IIOD_ON)];
struct timespec ts;
int ret, net = 0;
ts.tv_nsec = 0;
ts.tv_sec = 1;
/*
* Try to make sure the network is up before letting avahi
* know we are here, and advertising on the network.
* However, if we are on the last try before we timeout,
* ignore some prerequisites, and just assume it will be
* OK later (if someone boots, and later plugs in USB <-> ethernet).
*/
while(true) {
struct ifaddrs *ifaddr = 0;
struct ifaddrs *ifa = 0;
if (!net && ts.tv_sec < TIMEOUT) {
/* Ensure networking is alive */
ret = getifaddrs(&ifaddr);
if (ret)
goto again;
/* Make sure at least one practical interface is up and ready */
for (ifa = ifaddr; ifa; ifa = ifa->ifa_next) {
/* no address */
if (!ifa->ifa_addr)
continue;
/* Interface is running, think ifup */
if (!(ifa->ifa_flags & IFF_UP))
continue;
/* supports multicast (i.e. MDNS) */
if (!(ifa->ifa_flags & IFF_MULTICAST))
continue;
/* Interface is not a loopback interface */
if ((ifa->ifa_flags & IFF_LOOPBACK))
continue;
IIO_INFO("found applicable network for mdns on %s\n", ifa->ifa_name);
net++;
}
freeifaddrs(ifaddr);
if (!net)
goto again;
}
/* Get the hostname, which on uClibc, can return (none)
* rather than fail/zero length string, like on glibc */
ret = gethostname(host, sizeof(host));
if (ret || !host[0] || (ts.tv_sec < TIMEOUT && (!strcmp(host, "none") ||
!strcmp(host, "(none)"))))
goto again;
snprintf(label, sizeof(label), "%s%s", IIOD_ON, host);
if (!avahi.name)
avahi.name = avahi_strdup(label);
if (!avahi.name)
break;
if (!avahi.poll)
avahi.poll = avahi_threaded_poll_new();
if (!avahi.poll) {
goto again;
}
if (!avahi.client)
avahi.client = client_new();
if (avahi.client)
break;
again:
IIO_INFO("Avahi didn't start, try again in %ld seconds later\n",
(long)ts.tv_sec);
nanosleep(&ts, NULL);
ts.tv_sec++;
/* If it hasn't started in 20 times over 210 seconds (3.5 min),
* it is not going to, so stop
*/
if (ts.tv_sec > TIMEOUT)
break;
}
if (avahi.client && avahi.poll) {
avahi_threaded_poll_start(avahi.poll);
IIO_INFO("Avahi: Started.\n");
} else {
shutdown_avahi();
IIO_INFO("Avahi: Failed to start.\n");
}
}
void start_avahi(struct thread_pool *pool, uint16_t port)
{
int ret;
IIO_INFO("Attempting to start Avahi\n");
avahi.poll = NULL;
avahi.client = NULL;
avahi.group = NULL;
avahi.name = NULL;
avahi.port = port;
/* In case dbus, or avahi daemon are not started, we create a thread
* that tries a few times to attach, if it can't within the first
* minute, it gives up.
*/
ret = thread_pool_add_thread(pool, start_avahi_thd, NULL, "avahi_thd");
if (ret)
IIO_PERROR(ret, "Failed to create new Avahi thread");
}
void stop_avahi(void)
{
shutdown_avahi();
IIO_INFO("Avahi: Stopped\n");
}