add pktinfo to rx path
[project/mdnsd.git] / service.c
1 /*
2 * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License version 2.1
6 * as published by the Free Software Foundation
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14 #include <sys/types.h>
15 #include <arpa/nameser.h>
16 #include <sys/socket.h>
17
18 #include <ifaddrs.h>
19 #include <resolv.h>
20 #include <glob.h>
21 #include <stdio.h>
22 #include <time.h>
23
24 #include <uci.h>
25 #include <uci_blob.h>
26
27 #include <libubus.h>
28 #include <libubox/vlist.h>
29 #include <libubox/uloop.h>
30 #include <libubox/avl-cmp.h>
31 #include <libubox/blobmsg_json.h>
32
33 #include "ubus.h"
34 #include "dns.h"
35 #include "service.h"
36 #include "util.h"
37 #include "interface.h"
38 #include "announce.h"
39
40 enum {
41 SERVICE_SERVICE,
42 SERVICE_PORT,
43 SERVICE_TXT,
44 __SERVICE_MAX,
45 };
46
47 struct service {
48 struct vlist_node node;
49
50 time_t t;
51
52 const char *id;
53 const char *service;
54 const uint8_t *txt;
55 int txt_len;
56 int port;
57 int active;
58 };
59
60 static const struct blobmsg_policy service_policy[__SERVICE_MAX] = {
61 [SERVICE_SERVICE] = { .name = "service", .type = BLOBMSG_TYPE_STRING },
62 [SERVICE_PORT] = { .name = "port", .type = BLOBMSG_TYPE_INT32 },
63 [SERVICE_TXT] = { .name = "txt", .type = BLOBMSG_TYPE_ARRAY },
64 };
65
66 static void
67 service_update(struct vlist_tree *tree, struct vlist_node *node_new,
68 struct vlist_node *node_old);
69
70 static struct blob_buf b;
71 static VLIST_TREE(services, avl_strcmp, service_update, false, false);
72 static char *sdudp = "_services._dns-sd._udp.local";
73 static char *sdtcp = "_services._dns-sd._tcp.local";
74 static int service_init_announce;
75
76 static const char *
77 service_name(const char *domain)
78 {
79 static char buffer[256];
80
81 snprintf(buffer, sizeof(buffer), "%s.%s", mdns_hostname, domain);
82
83 return buffer;
84 }
85
86 static void
87 service_add_ptr(const char *host, int ttl)
88 {
89 int len = dn_comp(host, mdns_buf, sizeof(mdns_buf), NULL, NULL);
90
91 if (len < 1)
92 return;
93
94 dns_add_answer(TYPE_PTR, mdns_buf, len, ttl);
95 }
96
97 static void
98 service_add_srv(struct service *s, int ttl)
99 {
100 struct dns_srv_data *sd = (struct dns_srv_data *) mdns_buf;
101 int len = sizeof(*sd);
102
103 len += dn_comp(mdns_hostname_local, mdns_buf + len, sizeof(mdns_buf) - len, NULL, NULL);
104 if (len <= sizeof(*sd))
105 return;
106
107 sd->port = cpu_to_be16(s->port);
108 dns_add_answer(TYPE_SRV, mdns_buf, len, ttl);
109 }
110
111 #define TOUT_LOOKUP 60
112
113 static int
114 service_timeout(struct service *s)
115 {
116 time_t t = time(NULL);
117
118 if (t - s->t <= TOUT_LOOKUP)
119 return 0;
120
121 s->t = t;
122
123 return 1;
124 }
125
126 void
127 service_reply_a(struct interface *iface, int type, int ttl)
128 {
129 struct ifaddrs *ifap, *ifa;
130 struct sockaddr_in *sa;
131 struct sockaddr_in6 *sa6;
132
133 getifaddrs(&ifap);
134
135 dns_init_answer();
136 for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
137 if (strcmp(ifa->ifa_name, iface->name))
138 continue;
139 if (ifa->ifa_addr->sa_family==AF_INET) {
140 sa = (struct sockaddr_in *) ifa->ifa_addr;
141 dns_add_answer(TYPE_A, (uint8_t *) &sa->sin_addr, 4, ttl);
142 }
143 if (ifa->ifa_addr->sa_family==AF_INET6) {
144 uint8_t ll_prefix[] = {0xfe, 0x80 };
145 sa6 = (struct sockaddr_in6 *) ifa->ifa_addr;
146 if (!memcmp(&sa6->sin6_addr, &ll_prefix, 2))
147 dns_add_answer(TYPE_AAAA, (uint8_t *) &sa6->sin6_addr, 16, ttl);
148 }
149 }
150 dns_send_answer(iface, mdns_hostname_local);
151
152 freeifaddrs(ifap);
153 }
154
155 static void
156 service_reply_single(struct interface *iface, struct service *s, const char *match, int ttl, int force)
157 {
158 const char *host = service_name(s->service);
159 char *service = strstr(host, "._");
160
161 if (!force && (!s->active || !service || !service_timeout(s)))
162 return;
163
164 service++;
165
166 if (match && strcmp(match, s->service))
167 return;
168
169 dns_init_answer();
170 service_add_ptr(service_name(s->service), ttl);
171 dns_send_answer(iface, service);
172
173 dns_init_answer();
174 service_add_srv(s, ttl);
175 if (s->txt && s->txt_len)
176 dns_add_answer(TYPE_TXT, (uint8_t *) s->txt, s->txt_len, ttl);
177 dns_send_answer(iface, host);
178 }
179
180 void
181 service_reply(struct interface *iface, const char *match, int ttl)
182 {
183 struct service *s;
184
185 vlist_for_each_element(&services, s, node)
186 service_reply_single(iface, s, match, ttl, 0);
187
188 if (match)
189 return;
190
191 service_reply_a(iface, TYPE_A, ttl);
192 }
193
194 void
195 service_announce_services(struct interface *iface, const char *service)
196 {
197 struct service *s;
198 int tcp = 1;
199
200 if (!strcmp(service, sdudp))
201 tcp = 0;
202 else if (strcmp(service, sdtcp))
203 return;
204
205 vlist_for_each_element(&services, s, node) {
206 if (!strstr(s->service, "._tcp") && tcp)
207 continue;
208 if (!strstr(s->service, "._udp") && !tcp)
209 continue;
210 s->t = 0;
211 dns_init_answer();
212 service_add_ptr(s->service, announce_ttl);
213 if (tcp)
214 dns_send_answer(iface, sdtcp);
215 else
216 dns_send_answer(iface, sdudp);
217 service_reply(iface, s->service, announce_ttl);
218 }
219 }
220
221 void
222 service_announce(struct interface *iface)
223 {
224 service_announce_services(iface, sdudp);
225 service_announce_services(iface, sdtcp);
226 }
227
228 static void
229 service_update(struct vlist_tree *tree, struct vlist_node *node_new,
230 struct vlist_node *node_old)
231 {
232 struct interface *iface;
233 struct service *s;
234
235 if (!node_old) {
236 s = container_of(node_new, struct service, node);
237 if (service_init_announce)
238 vlist_for_each_element(&interfaces, iface, node) {
239 s->t = 0;
240 service_reply_single(iface, s, NULL, announce_ttl, 1);
241 }
242 return;
243 }
244
245 s = container_of(node_old, struct service, node);
246 if (!node_new && service_init_announce)
247 vlist_for_each_element(&interfaces, iface, node)
248 service_reply_single(iface, s, NULL, 0, 1);
249 free(s);
250 }
251
252 static void
253 service_load_blob(struct blob_attr *b)
254 {
255 struct blob_attr *txt, *_tb[__SERVICE_MAX];
256 struct service *s;
257 char *d_service, *d_id;
258 uint8_t *d_txt;
259 int rem2;
260 int txt_len = 0;
261
262 blobmsg_parse(service_policy, ARRAY_SIZE(service_policy),
263 _tb, blobmsg_data(b), blobmsg_data_len(b));
264 if (!_tb[SERVICE_PORT] || !_tb[SERVICE_SERVICE])
265 return;
266
267 if (_tb[SERVICE_SERVICE])
268 blobmsg_for_each_attr(txt, _tb[SERVICE_TXT], rem2)
269 txt_len += 1 + strlen(blobmsg_get_string(txt));
270
271 s = calloc_a(sizeof(*s),
272 &d_id, strlen(blobmsg_name(b)) + 1,
273 &d_service, strlen(blobmsg_get_string(_tb[SERVICE_SERVICE])) + 1,
274 &d_txt, txt_len);
275 if (!s)
276 return;
277
278 s->port = blobmsg_get_u32(_tb[SERVICE_PORT]);
279 s->id = strcpy(d_id, blobmsg_name(b));
280 s->service = strcpy(d_service, blobmsg_get_string(_tb[SERVICE_SERVICE]));
281 s->active = 1;
282 s->t = 0;
283 s->txt_len = txt_len;
284 s->txt = d_txt;
285
286 if (_tb[SERVICE_SERVICE])
287 blobmsg_for_each_attr(txt, _tb[SERVICE_TXT], rem2) {
288 int len = strlen(blobmsg_get_string(txt));
289 if (!len)
290 return;
291 if (len > 0xff)
292 len = 0xff;
293 *d_txt = len;
294 d_txt++;
295 memcpy(d_txt, blobmsg_get_string(txt), len);
296 d_txt += len;
297 }
298
299 vlist_add(&services, &s->node, s->id);
300 }
301
302 static void
303 service_load(char *path)
304 {
305 struct blob_attr *cur;
306 glob_t gl;
307 int i, rem;
308
309 if (glob(path, GLOB_NOESCAPE | GLOB_MARK, NULL, &gl))
310 return;
311
312 for (i = 0; i < gl.gl_pathc; i++) {
313 blob_buf_init(&b, 0);
314 if (blobmsg_add_json_from_file(&b, gl.gl_pathv[i]))
315 blob_for_each_attr(cur, b.head, rem)
316 service_load_blob(cur);
317 }
318 globfree(&gl);
319 }
320
321 static void
322 service_init_cb(struct ubus_request *req, int type, struct blob_attr *msg)
323 {
324 struct blob_attr *cur;
325 int rem;
326
327 get_hostname();
328
329 vlist_update(&services);
330 service_load("/tmp/run/mdns/*");
331
332 blob_for_each_attr(cur, msg, rem) {
333 struct blob_attr *cur2;
334 int rem2;
335
336 blobmsg_for_each_attr(cur2, cur, rem2) {
337 struct blob_attr *cur3;
338 int rem3;
339
340 if (strcmp(blobmsg_name(cur2), "instances"))
341 continue;
342
343 blobmsg_for_each_attr(cur3, cur2, rem3) {
344 struct blob_attr *cur4;
345 int rem4;
346 int running = 0;
347
348 blobmsg_for_each_attr(cur4, cur3, rem4) {
349 const char *name = blobmsg_name(cur4);
350
351 if (!strcmp(name, "running")) {
352 running = blobmsg_get_bool(cur4);
353 } else if (running && !strcmp(name, "data")) {
354 struct blob_attr *cur5;
355 int rem5;
356
357 blobmsg_for_each_attr(cur5, cur4, rem5) {
358 struct blob_attr *cur6;
359 int rem6;
360
361 if (strcmp(blobmsg_name(cur5), "mdns"))
362 continue;
363
364 blobmsg_for_each_attr(cur6, cur5, rem6)
365 service_load_blob(cur6);
366 }
367 break;
368 }
369 }
370 }
371 }
372 }
373 vlist_flush(&services);
374 }
375
376 void
377 service_init(int announce)
378 {
379 get_hostname();
380
381 service_init_announce = announce;
382 ubus_service_list(service_init_cb);
383 }
384
385 void
386 service_cleanup(void)
387 {
388 vlist_flush(&services);
389 blob_buf_free(&b);
390 }