]> git.meshlink.io Git - catta/blob - avahi-core/resolve-service.c
fix some issues with host-name/address/service resolving
[catta] / avahi-core / resolve-service.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
6   avahi is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as
8   published by the Free Software Foundation; either version 2.1 of the
9   License, or (at your option) any later version.
10  
11   avahi is distributed in the hope that it will be useful, but WITHOUT
12   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14   Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public
17   License along with avahi; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29
30 #include <avahi-common/domain.h>
31 #include <avahi-common/timeval.h>
32 #include <avahi-common/malloc.h>
33 #include <avahi-common/error.h>
34
35 #include "browse.h"
36
37 #define TIMEOUT_MSEC 1000
38
39 struct AvahiSServiceResolver {
40     AvahiServer *server;
41     char *service_name;
42     char *service_type;
43     char *domain_name;
44     AvahiProtocol address_protocol;
45
46     AvahiIfIndex interface;
47     AvahiProtocol protocol;
48
49     AvahiSRecordBrowser *record_browser_srv;
50     AvahiSRecordBrowser *record_browser_txt;
51     AvahiSRecordBrowser *record_browser_a;
52     AvahiSRecordBrowser *record_browser_aaaa;
53
54     AvahiRecord *srv_record, *txt_record, *address_record;
55     
56     AvahiSServiceResolverCallback callback;
57     void* userdata;
58
59     AvahiTimeEvent *time_event;
60
61     AVAHI_LLIST_FIELDS(AvahiSServiceResolver, resolver);
62 };
63
64 static void finish(AvahiSServiceResolver *r, AvahiResolverEvent event) {
65     assert(r);
66
67     if (r->time_event) {
68         avahi_time_event_free(r->time_event);
69         r->time_event = NULL;
70     }
71
72     if (event == AVAHI_RESOLVER_TIMEOUT)
73         r->callback(r, r->interface, r->protocol, event, r->service_name, r->service_type, r->domain_name, NULL, NULL, 0, NULL, r->userdata);
74     else {
75         AvahiAddress a;
76         char sn[256], st[256];
77         size_t i;
78
79         assert(event == AVAHI_RESOLVER_FOUND);
80         
81         assert(r->srv_record);
82         assert(r->txt_record);
83         assert(r->address_record);
84         
85         switch (r->address_record->key->type) {
86             case AVAHI_DNS_TYPE_A:
87                 a.family = AVAHI_PROTO_INET;
88                 a.data.ipv4 = r->address_record->data.a.address;
89                 break;
90                 
91             case AVAHI_DNS_TYPE_AAAA:
92                 a.family = AVAHI_PROTO_INET6;
93                 a.data.ipv6 = r->address_record->data.aaaa.address;
94                 break;
95                 
96             default:
97                 assert(0);
98         }
99
100         snprintf(sn, sizeof(sn), r->service_name);
101         snprintf(st, sizeof(st), r->service_type);
102
103         if ((i = strlen(sn)) > 0 && sn[i-1] == '.')
104             sn[i-1] = 0;
105
106         if ((i = strlen(st)) > 0 && st[i-1] == '.')
107             st[i-1] = 0;
108
109         r->callback(r, r->interface, r->protocol, event, sn, st, r->domain_name, r->srv_record->data.srv.name, &a, r->srv_record->data.srv.port, r->txt_record->data.txt.string_list, r->userdata);
110     }
111 }
112
113 static void time_event_callback(AvahiTimeEvent *e, void *userdata) {
114     AvahiSServiceResolver *r = userdata;
115     
116     assert(e);
117     assert(r);
118
119     finish(r, AVAHI_RESOLVER_TIMEOUT);
120 }
121
122 static void start_timeout(AvahiSServiceResolver *r) {
123     struct timeval tv;
124     assert(r);
125
126     if (r->time_event)
127         return;
128     
129     avahi_elapse_time(&tv, TIMEOUT_MSEC, 0);
130     r->time_event = avahi_time_event_new(r->server->time_event_queue, &tv, time_event_callback, r);
131 }
132
133 static void record_browser_callback(AvahiSRecordBrowser*rr, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, AvahiRecord *record, void* userdata) {
134     AvahiSServiceResolver *r = userdata;
135
136     assert(rr);
137     assert(record);
138     assert(r);
139
140     if (event == AVAHI_BROWSER_NEW) {
141         int changed = 0;
142
143         if (r->interface > 0 && interface != r->interface)
144             return;
145         
146         if (r->protocol != AVAHI_PROTO_UNSPEC && protocol != r->protocol)
147             return;
148         
149         if (r->interface <= 0)
150             r->interface = interface;
151         
152         if (r->protocol == AVAHI_PROTO_UNSPEC)
153             r->protocol = protocol;
154         
155         switch (record->key->type) {
156             case AVAHI_DNS_TYPE_SRV:
157                 if (!r->srv_record) {
158                     r->srv_record = avahi_record_ref(record);
159                     changed = 1;
160                     
161                     assert(!r->record_browser_a && !r->record_browser_aaaa);
162                     
163                     if (r->address_protocol == AVAHI_PROTO_INET || r->address_protocol == AVAHI_PROTO_UNSPEC) {
164                         AvahiKey *k = avahi_key_new(r->srv_record->data.srv.name, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_A);
165                         r->record_browser_a = avahi_s_record_browser_new(r->server, r->interface, r->protocol, k, record_browser_callback, r);
166                         avahi_key_unref(k);
167                     } 
168                     
169                     if (r->address_protocol == AVAHI_PROTO_INET6 || r->address_protocol == AVAHI_PROTO_UNSPEC) {
170                         AvahiKey *k = avahi_key_new(r->srv_record->data.srv.name, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_AAAA);
171                         r->record_browser_aaaa = avahi_s_record_browser_new(r->server, r->interface, r->protocol, k, record_browser_callback, r);
172                         avahi_key_unref(k);
173                     }
174                 }
175                 break;
176                 
177             case AVAHI_DNS_TYPE_TXT:
178                 if (!r->txt_record) {
179                     r->txt_record = avahi_record_ref(record);
180                     changed = 1;
181                 }
182                 break;
183                 
184             case AVAHI_DNS_TYPE_A:
185             case AVAHI_DNS_TYPE_AAAA:
186                 if (!r->address_record) {
187                     r->address_record = avahi_record_ref(record);
188                     changed = 1;
189                 }
190                 break;
191                 
192             default:
193                 abort();
194         }
195
196
197         if (changed && r->txt_record && r->srv_record && r->address_record)
198             finish(r, AVAHI_RESOLVER_FOUND);
199
200     } else {
201         assert(event == AVAHI_BROWSER_REMOVE);
202
203         
204         switch (record->key->type) {
205             case AVAHI_DNS_TYPE_SRV:
206
207                 if (r->srv_record && avahi_record_equal_no_ttl(record, r->srv_record)) {
208                     avahi_record_unref(r->srv_record);
209                     r->srv_record = NULL;
210
211                     /** Look for a replacement */
212                     avahi_s_record_browser_restart(r->record_browser_srv);
213                     start_timeout(r);
214                 }
215                 
216                 break;
217
218             case AVAHI_DNS_TYPE_TXT:
219
220                 if (r->txt_record && avahi_record_equal_no_ttl(record, r->txt_record)) {
221                     avahi_record_unref(r->txt_record);
222                     r->txt_record = NULL;
223
224                     /** Look for a replacement */
225                     avahi_s_record_browser_restart(r->record_browser_txt);
226                     start_timeout(r);
227                 }
228                 break;
229
230             case AVAHI_DNS_TYPE_A:
231             case AVAHI_DNS_TYPE_AAAA:
232
233                 if (r->address_record && avahi_record_equal_no_ttl(record, r->address_record)) {
234                     avahi_record_unref(r->address_record);
235                     r->address_record = NULL;
236
237                     /** Look for a replacement */
238                     if (r->record_browser_aaaa)
239                         avahi_s_record_browser_restart(r->record_browser_aaaa);
240                     if (r->record_browser_a)
241                         avahi_s_record_browser_restart(r->record_browser_a);
242                     start_timeout(r);
243                 }
244                 break;
245
246             default:
247                 abort();
248         }
249     }
250 }
251
252 AvahiSServiceResolver *avahi_s_service_resolver_new(AvahiServer *server, AvahiIfIndex interface, AvahiProtocol protocol, const char *name, const char *type, const char *domain, AvahiProtocol aprotocol, AvahiSServiceResolverCallback callback, void* userdata) {
253     AvahiSServiceResolver *r;
254     AvahiKey *k;
255     char t[256], *n;
256     size_t l;
257     
258     assert(server);
259     assert(name);
260     assert(type);
261     assert(callback);
262
263     assert(aprotocol == AVAHI_PROTO_UNSPEC || aprotocol == AVAHI_PROTO_INET || aprotocol == AVAHI_PROTO_INET6);
264
265     if (!avahi_is_valid_service_name(name)) {
266         avahi_server_set_errno(server, AVAHI_ERR_INVALID_SERVICE_NAME);
267         return NULL;
268     }
269
270     if (!avahi_is_valid_service_type(type)) {
271         avahi_server_set_errno(server, AVAHI_ERR_INVALID_SERVICE_TYPE);
272         return NULL;
273     }
274
275     if (!avahi_is_valid_domain_name(domain)) {
276         avahi_server_set_errno(server, AVAHI_ERR_INVALID_DOMAIN_NAME);
277         return NULL;
278     }
279     
280     if (!(r = avahi_new(AvahiSServiceResolver, 1))) {
281         avahi_server_set_errno(server, AVAHI_ERR_NO_MEMORY);
282         return NULL;
283     }
284     
285     r->server = server;
286     r->service_name = avahi_strdup(name);
287     r->service_type = avahi_normalize_name(type);
288     r->domain_name = avahi_normalize_name(domain);
289     r->callback = callback;
290     r->userdata = userdata;
291     r->address_protocol = aprotocol;
292     r->srv_record = r->txt_record = r->address_record = NULL;
293     r->interface = interface;
294     r->protocol = protocol;
295     
296     n = t;
297     l = sizeof(t);
298     avahi_escape_label((const uint8_t*) name, strlen(name), &n, &l);
299     snprintf(n, l, ".%s.%s", r->service_type, r->domain_name);
300
301     r->time_event = NULL;
302     start_timeout(r);
303     
304     AVAHI_LLIST_PREPEND(AvahiSServiceResolver, resolver, server->service_resolvers, r);
305
306     r->record_browser_a = r->record_browser_aaaa = r->record_browser_srv = r->record_browser_txt = NULL;
307     
308     k = avahi_key_new(t, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_SRV);
309     r->record_browser_srv = avahi_s_record_browser_new(server, interface, protocol, k, record_browser_callback, r);
310     avahi_key_unref(k);
311
312     if (!r->record_browser_srv) {
313         avahi_s_service_resolver_free(r);
314         return NULL;
315     }
316     
317     k = avahi_key_new(t, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_TXT);
318     r->record_browser_txt = avahi_s_record_browser_new(server, interface, protocol, k, record_browser_callback, r);
319     avahi_key_unref(k);
320
321     if (!r->record_browser_txt) {
322         avahi_s_service_resolver_free(r);
323         return NULL;
324     }
325
326     return r;
327 }
328
329 void avahi_s_service_resolver_free(AvahiSServiceResolver *r) {
330     assert(r);
331
332     AVAHI_LLIST_REMOVE(AvahiSServiceResolver, resolver, r->server->service_resolvers, r);
333
334     if (r->time_event)
335         avahi_time_event_free(r->time_event);
336     
337     if (r->record_browser_srv)
338         avahi_s_record_browser_free(r->record_browser_srv);
339     if (r->record_browser_txt)
340         avahi_s_record_browser_free(r->record_browser_txt);
341     if (r->record_browser_a)
342         avahi_s_record_browser_free(r->record_browser_a);
343     if (r->record_browser_aaaa)
344         avahi_s_record_browser_free(r->record_browser_aaaa);
345
346     if (r->srv_record)
347         avahi_record_unref(r->srv_record);
348     if (r->txt_record)
349         avahi_record_unref(r->txt_record);
350     if (r->address_record)
351         avahi_record_unref(r->address_record);
352     
353     avahi_free(r->service_name);
354     avahi_free(r->service_type);
355     avahi_free(r->domain_name);
356     avahi_free(r);
357 }