forked from analogdevicesinc/libiio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dns_sd.c
300 lines (256 loc) · 7.02 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
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
* libiio - Library for interfacing industrial I/O (IIO) devices
*
* Copyright (C) 2014-2020 Analog Devices, Inc.
* Author: Robin Getz <[email protected]>
* Matej Kenda <[email protected]>
*
* Some of this is insipred from libavahi's example:
* https://avahi.org/doxygen/html/client-browse-services_8c-example.html
* which is also LGPL 2.1 or later.
*/
#include "debug.h"
#include "dns_sd.h"
#include "iio-lock.h"
#include "iio-private.h"
#include <errno.h>
#ifdef _WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <netdb.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
#endif
#ifdef _WIN32
#define close(s) closesocket(s)
#endif
static void dnssd_free_discovery_data(struct dns_sd_discovery_data *d)
{
free(d->hostname);
free(d->address);
free(d);
}
/* Some functions for handling common linked list operations */
static void dnssd_remove_node(struct dns_sd_discovery_data **ddata, int n)
{
struct dns_sd_discovery_data *d, *ndata, *ldata, *tdata;
int i;
d = *ddata;
ldata = NULL;
if (n == 0) {
tdata = d->next;
dnssd_free_discovery_data(d);
d = tdata;
} else {
for (i = 0, ndata = d; ndata->next != NULL; ndata = ndata->next) {
if (i == n) {
/* Could be NULL or node, both are OK */
tdata = ndata->next;
/* free the node to be removed */
dnssd_free_discovery_data(ndata);
/* snip it out */
ldata->next = tdata;
break;
}
ldata = ndata;
i++;
}
if (i < n)
IIO_ERROR("dnssd_remove_node call when %i exceeds list length (%i)\n", n, i);
}
*ddata = d;
}
/* The only way to support scan context from the network is when
* DNS Service Discovery is turned on
*/
static int dnssd_fill_context_info(struct iio_context_info *info,
char *hostname, char *addr_str, int port)
{
struct iio_context *ctx;
char uri[sizeof("ip:") + MAXHOSTNAMELEN + sizeof (":65535") + 1];
char description[255], *p;
const char *hw_model, *serial;
unsigned int i;
ctx = network_create_context(addr_str);
if (!ctx) {
IIO_ERROR("No context at %s\n", addr_str);
return -ENOMEM;
}
if (port == IIOD_PORT)
iio_snprintf(uri, sizeof(uri), "ip:%s", hostname);
else
iio_snprintf(uri, sizeof(uri), "ip:%s:%d", hostname, port);
hw_model = iio_context_get_attr_value(ctx, "hw_model");
serial = iio_context_get_attr_value(ctx, "hw_serial");
if (hw_model && serial) {
iio_snprintf(description, sizeof(description), "%s (%s), serial=%s",
addr_str, hw_model, serial);
} else if (hw_model) {
iio_snprintf(description, sizeof(description), "%s %s", addr_str, hw_model);
} else if (serial) {
iio_snprintf(description, sizeof(description), "%s %s", addr_str, serial);
} else if (iio_context_get_devices_count(ctx) == 0) {
iio_snprintf(description, sizeof(description), "%s", ctx->description);
} else {
iio_snprintf(description, sizeof(description), "%s (", addr_str);
p = description + strlen(description);
for (i = 0; i < iio_context_get_devices_count(ctx) - 1; i++) {
const struct iio_device *dev = iio_context_get_device(ctx, i);
const char *name = iio_device_get_name(dev);
if (name) {
iio_snprintf(p, sizeof(description) - strlen(description) -1,
"%s,", name);
p += strlen(p);
}
}
p--;
*p = ')';
}
iio_context_destroy(ctx);
info->uri = iio_strdup(uri);
if (!info->uri)
return -ENOMEM;
info->description = iio_strdup(description);
if (!info->description) {
free(info->uri);
return -ENOMEM;
}
return 0;
}
/*
* remove the ones in the list that you can't connect to
* This is sort of silly, but we have seen non-iio devices advertised
* and discovered on the network. Oh well....
*/
void port_knock_discovery_data(struct dns_sd_discovery_data **ddata)
{
struct dns_sd_discovery_data *d, *ndata;
int i, ret;
d = *ddata;
iio_mutex_lock(d->lock);
for (i = 0, ndata = d; ndata->next != NULL; ) {
char port_str[6];
struct addrinfo hints, *res, *rp;
int fd;
bool found = false;
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
iio_snprintf(port_str, sizeof(port_str), "%hu", ndata->port);
ret = getaddrinfo(ndata->addr_str, port_str, &hints, &res);
/* getaddrinfo() returns a list of address structures */
if (ret) {
IIO_DEBUG("Unable to find host ('%s'): %s\n",
ndata->hostname,
gai_strerror(ret));
} else {
for (rp = res; rp != NULL; rp = rp->ai_next) {
fd = create_socket(rp);
if (fd < 0) {
IIO_DEBUG("Unable to open %s%s socket ('%s:%d' %s)\n",
rp->ai_family == AF_INET ? "ipv4" : "",
rp->ai_family == AF_INET6? "ipv6" : "",
ndata->hostname, ndata->port, ndata->addr_str);
} else {
close(fd);
IIO_DEBUG("Something %s%s at '%s:%d' %s)\n",
rp->ai_family == AF_INET ? "ipv4" : "",
rp->ai_family == AF_INET6? "ipv6" : "",
ndata->hostname, ndata->port, ndata->addr_str);
found = true;
}
}
}
freeaddrinfo(res);
ndata = ndata->next;
if (found) {
i++;
} else {
dnssd_remove_node(&d, i);
}
}
iio_mutex_unlock(d->lock);
*ddata = d;
return;
}
void remove_dup_discovery_data(struct dns_sd_discovery_data **ddata)
{
struct dns_sd_discovery_data *d, *ndata, *mdata;
int i, j;
d = *ddata;
if (!d)
return;
if (!d->next)
return;
iio_mutex_lock(d->lock);
for (i = 0, ndata = d; ndata->next != NULL; ndata = ndata->next) {
for (j = i + 1, mdata = ndata->next; mdata->next != NULL; mdata = mdata->next) {
if (!strcmp(mdata->hostname, ndata->hostname) &&
!strcmp(mdata->addr_str, ndata->addr_str)){
IIO_DEBUG("Removing duplicate in list: '%s'\n",
ndata->hostname);
dnssd_remove_node(&d, j);
}
j++;
}
i++;
}
iio_mutex_unlock(d->lock);
*ddata = d;
}
int dnssd_context_scan(struct iio_scan_result *scan_result)
{
struct dns_sd_discovery_data *ddata, *ndata;
struct iio_context_info *info;
int ret = 0;
ret = dnssd_find_hosts(&ddata);
/* if we return an error when no devices are found, then other scans will fail */
if (ret == -ENXIO) {
ret = 0;
goto fail;
}
if (ret < 0)
goto fail;
for (ndata = ddata; ndata->next != NULL; ndata = ndata->next) {
info = iio_scan_result_add(scan_result);
if (!info) {
IIO_ERROR("Out of memory when adding new scan result\n");
ret = -ENOMEM;
break;
}
ret = dnssd_fill_context_info(info,
ndata->hostname, ndata->addr_str,ndata->port);
if (ret < 0) {
IIO_DEBUG("Failed to add %s (%s) err: %d\n", ndata->hostname, ndata->addr_str, ret);
break;
}
}
fail:
dnssd_free_all_discovery_data(ddata);
return ret;
}
int dnssd_discover_host(char *addr_str, size_t addr_len, uint16_t *port)
{
struct dns_sd_discovery_data *ddata;
int ret = 0;
ret = dnssd_find_hosts(&ddata);
if (ret < 0)
goto host_fail;
if (ddata) {
*port = ddata->port;
iio_strlcpy(addr_str, ddata->addr_str, addr_len);
}
host_fail:
dnssd_free_all_discovery_data(ddata);
/* negative error codes, 0 for no data */
return ret;
}
void dnssd_free_all_discovery_data(struct dns_sd_discovery_data *d)
{
while (d)
dnssd_remove_node(&d, 0);
}