]> git.meshlink.io Git - catta/blob - avahi-core/avahi-test.c
* replace AF_UNSPEC by AVAHI_PROTO_UNSPEC in client-test.c
[catta] / avahi-core / avahi-test.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 <sys/socket.h>
27 #include <netinet/in.h>
28 #include <arpa/inet.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <assert.h>
32
33 #include <avahi-common/malloc.h>
34 #include <avahi-common/simple-watch.h>
35 #include <avahi-common/alternative.h>
36 #include <avahi-common/timeval.h>
37
38 #include <avahi-core/core.h>
39 #include <avahi-core/log.h>
40 #include <avahi-core/publish.h>
41 #include <avahi-core/lookup.h>
42 #include <avahi-core/dns-srv-rr.h>
43
44 static AvahiSEntryGroup *group = NULL;
45 static AvahiServer *server = NULL;
46 static char *service_name = NULL;
47
48 static const AvahiPoll *poll_api;
49
50 static void quit_timeout_callback(AvahiTimeout *timeout, void* userdata) {
51     AvahiSimplePoll *simple_poll = userdata;
52
53     avahi_simple_poll_quit(simple_poll);
54 }
55
56 static void dump_line(const char *text, void* userdata) {
57     printf("%s\n", text);
58 }
59
60 static void dump_timeout_callback(AvahiTimeout *timeout, void* userdata) {
61     struct timeval tv;
62     
63     AvahiServer *avahi = userdata;
64     avahi_server_dump(avahi, dump_line, NULL);
65
66     avahi_elapse_time(&tv, 5000, 0);
67     poll_api->timeout_update(timeout, &tv);
68 }
69
70 static const char *browser_event_to_string(AvahiBrowserEvent event) {
71     switch (event) {
72         case AVAHI_BROWSER_NEW : return "NEW";
73         case AVAHI_BROWSER_REMOVE : return "REMOVE";
74         case AVAHI_BROWSER_CACHE_EXHAUSTED : return "CACHE_EXHAUSTED";
75         case AVAHI_BROWSER_ALL_FOR_NOW : return "ALL_FOR_NOW";
76         case AVAHI_BROWSER_FAILURE : return "FAILURE";
77     }
78
79     abort();
80 }
81
82 static const char *resolver_event_to_string(AvahiResolverEvent event) {
83     switch (event) {
84         case AVAHI_RESOLVER_FOUND: return "FOUND";
85         case AVAHI_RESOLVER_FAILURE: return "FAILURE";
86     }
87     abort();
88 }
89
90 static void record_browser_callback(
91     AvahiSRecordBrowser *r,
92     AvahiIfIndex interface,
93     AvahiProtocol protocol,
94     AvahiBrowserEvent event,
95     AvahiRecord *record,
96     AvahiLookupResultFlags flags,
97     void* userdata) {
98     char *t;
99     
100     assert(r);
101
102     if (record) {
103         avahi_log_debug("RB: record [%s] on %i.%i is %s", t = avahi_record_to_string(record), interface, protocol, browser_event_to_string(event));
104         avahi_free(t);
105     } else
106         avahi_log_debug("RB: [%s]", browser_event_to_string(event));
107
108 }
109
110 static void remove_entries(void);
111 static void create_entries(int new_name);
112
113 static void entry_group_callback(AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void* userdata) {
114     avahi_log_debug("entry group state: %i", state); 
115
116     if (state == AVAHI_ENTRY_GROUP_COLLISION) {
117         remove_entries();
118         create_entries(1);
119         avahi_log_debug("Service name conflict, retrying with <%s>", service_name);
120     } else if (state == AVAHI_ENTRY_GROUP_ESTABLISHED) {
121         avahi_log_debug("Service established under name <%s>", service_name);
122     }
123 }
124
125 static void server_callback(AvahiServer *s, AvahiServerState state, void* userdata) {
126
127     server = s;
128     avahi_log_debug("server state: %i", state); 
129     
130     if (state == AVAHI_SERVER_RUNNING) {
131         avahi_log_debug("Server startup complete. Host name is <%s>. Service cookie is %u", avahi_server_get_host_name_fqdn(s), avahi_server_get_local_service_cookie(s));
132         create_entries(0);
133     } else if (state == AVAHI_SERVER_COLLISION) {
134         char *n;
135         remove_entries();
136
137         n = avahi_alternative_host_name(avahi_server_get_host_name(s));
138
139         avahi_log_debug("Host name conflict, retrying with <%s>", n);
140         avahi_server_set_host_name(s, n);
141         avahi_free(n);
142     }
143 }
144
145 static void remove_entries(void) {
146     if (group)
147         avahi_s_entry_group_reset(group);
148 }
149
150 static void create_entries(int new_name) {
151     AvahiAddress a;
152     AvahiRecord *r;
153
154     remove_entries();
155
156     if (!group) 
157         group = avahi_s_entry_group_new(server, entry_group_callback, NULL);
158
159     assert(avahi_s_entry_group_is_empty(group));
160     
161     if (!service_name)
162         service_name = avahi_strdup("Test Service");
163     else if (new_name) {
164         char *n = avahi_alternative_service_name(service_name);
165         avahi_free(service_name);
166         service_name = n;
167     }
168     
169     if (avahi_server_add_service(server, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, service_name, "_http._tcp", NULL, NULL, 80, "foo", NULL) < 0) {
170         avahi_log_error("Failed to add HTTP service");
171         goto fail;
172     }
173
174     if (avahi_server_add_service(server, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, service_name, "_ftp._tcp", NULL, NULL, 21, "foo", NULL) < 0) {
175         avahi_log_error("Failed to add FTP service");
176         goto fail;
177     }
178
179     if (avahi_server_add_service(server, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0,service_name, "_webdav._tcp", NULL, NULL, 80, "foo", NULL) < 0) {
180         avahi_log_error("Failed to add WEBDAV service");
181         goto fail;
182     }
183
184     if (avahi_server_add_dns_server_address(server, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, NULL, AVAHI_DNS_SERVER_RESOLVE, avahi_address_parse("192.168.50.1", AVAHI_PROTO_UNSPEC, &a), 53) < 0) {
185         avahi_log_error("Failed to add new DNS Server address");
186         goto fail;
187     }
188
189     r = avahi_record_new_full("cname.local", AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_CNAME, AVAHI_DEFAULT_TTL);
190     r->data.cname.name = avahi_strdup("cocaine.local");
191     
192     if (avahi_server_add(server, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, r) < 0) {
193         avahi_log_error("Failed to add CNAME record");
194         goto fail;
195     }
196
197     avahi_s_entry_group_commit(group);
198     return;
199
200 fail:
201     if (group)
202         avahi_s_entry_group_free(group);
203
204     group = NULL;
205 }
206
207 static void hnr_callback(
208     AvahiSHostNameResolver *r,
209     AvahiIfIndex iface,
210     AvahiProtocol protocol,
211     AvahiResolverEvent event,
212     const char *hostname,
213     const AvahiAddress *a,
214     AvahiLookupResultFlags flags,
215     void* userdata) {
216     char t[AVAHI_ADDRESS_STR_MAX];
217
218     if (a)
219         avahi_address_snprint(t, sizeof(t), a);
220
221     avahi_log_debug("HNR: (%i.%i) <%s> -> %s [%s]", iface, protocol, hostname, a ? t : "n/a", resolver_event_to_string(event));
222 }
223
224 static void ar_callback(
225     AvahiSAddressResolver *r,
226     AvahiIfIndex iface,
227     AvahiProtocol protocol,
228     AvahiResolverEvent event,
229     const AvahiAddress *a,
230     const char *hostname,
231     AvahiLookupResultFlags flags,
232     void* userdata) {
233     char t[AVAHI_ADDRESS_STR_MAX];
234
235     avahi_address_snprint(t, sizeof(t), a);
236
237     avahi_log_debug("AR: (%i.%i) %s -> <%s> [%s]", iface, protocol, t, hostname ? hostname : "n/a", resolver_event_to_string(event));
238 }
239
240 static void db_callback(
241     AvahiSDomainBrowser *b,
242     AvahiIfIndex iface,
243     AvahiProtocol protocol,
244     AvahiBrowserEvent event,
245     const char *domain,
246     AvahiLookupResultFlags flags,
247     void* userdata) {
248
249     avahi_log_debug("DB: (%i.%i) <%s> [%s]", iface, protocol, domain, browser_event_to_string(event));
250 }
251
252 static void stb_callback(
253     AvahiSServiceTypeBrowser *b,
254     AvahiIfIndex iface,
255     AvahiProtocol protocol,
256     AvahiBrowserEvent event,
257     const char *service_type,
258     const char *domain,
259     AvahiLookupResultFlags flags,
260     void* userdata) {
261
262     avahi_log_debug("STB: (%i.%i) %s in <%s> [%s]", iface, protocol, service_type, domain, browser_event_to_string(event));
263 }
264
265 static void sb_callback(
266     AvahiSServiceBrowser *b,
267     AvahiIfIndex iface,
268     AvahiProtocol protocol,
269     AvahiBrowserEvent event,
270     const char *name,
271     const char *service_type,
272     const char *domain,
273     AvahiLookupResultFlags flags,
274     void* userdata) {
275     avahi_log_debug("SB: (%i.%i) <%s> as %s in <%s> [%s]", iface, protocol, name, service_type, domain, browser_event_to_string(event));
276 }
277
278 static void sr_callback(
279     AvahiSServiceResolver *r,
280     AvahiIfIndex iface,
281     AvahiProtocol protocol,
282     AvahiResolverEvent event,
283     const char *name,
284     const char*service_type,
285     const char*domain_name,
286     const char*hostname,
287     const AvahiAddress *a,
288     uint16_t port,
289     AvahiStringList *txt,
290     AvahiLookupResultFlags flags, 
291     void* userdata) {
292
293     if (event != AVAHI_RESOLVER_FOUND)
294         avahi_log_debug("SR: (%i.%i) <%s> as %s in <%s> [%s]", iface, protocol, name, service_type, domain_name, resolver_event_to_string(event));
295     else {
296         char t[AVAHI_ADDRESS_STR_MAX], *s;
297         
298         avahi_address_snprint(t, sizeof(t), a);
299
300         s = avahi_string_list_to_string(txt);
301         avahi_log_debug("SR: (%i.%i) <%s> as %s in <%s>: %s/%s:%i (%s) [%s]", iface, protocol, name, service_type, domain_name, hostname, t, port, s, resolver_event_to_string(event));
302         avahi_free(s);
303     }
304 }
305
306 static void dsb_callback(
307     AvahiSDNSServerBrowser *b,
308     AvahiIfIndex iface,
309     AvahiProtocol protocol,
310     AvahiBrowserEvent event,
311     const char*hostname,
312     const AvahiAddress *a,
313     uint16_t port,
314     AvahiLookupResultFlags flags,
315     void* userdata) {
316     
317     char t[AVAHI_ADDRESS_STR_MAX] = "n/a";
318     
319     if (a)
320         avahi_address_snprint(t, sizeof(t), a);
321
322     avahi_log_debug("DSB: (%i.%i): %s/%s:%i [%s]", iface, protocol, hostname, t, port, browser_event_to_string(event));
323 }
324
325 int main(int argc, char *argv[]) {
326     AvahiSRecordBrowser *r;
327     AvahiSHostNameResolver *hnr;
328     AvahiSAddressResolver *ar;
329     AvahiKey *k;
330     AvahiServerConfig config;
331     AvahiAddress a;
332     AvahiSDomainBrowser *db;
333     AvahiSServiceTypeBrowser *stb;
334     AvahiSServiceBrowser *sb;
335     AvahiSServiceResolver *sr;
336     AvahiSDNSServerBrowser *dsb;
337     AvahiSimplePoll *simple_poll;
338     int error;
339     struct timeval tv;
340
341     simple_poll = avahi_simple_poll_new();
342     poll_api = avahi_simple_poll_get(simple_poll);
343     
344     avahi_server_config_init(&config);
345
346     avahi_address_parse("192.168.50.1", AVAHI_PROTO_UNSPEC, &config.wide_area_servers[0]);
347     config.n_wide_area_servers = 1;
348     config.enable_wide_area = 1;
349
350     server = avahi_server_new(poll_api, &config, server_callback, NULL, &error);
351     avahi_server_config_free(&config);
352     
353     k = avahi_key_new("_http._tcp.0pointer.de", AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_PTR);
354     r = avahi_s_record_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, k, 0, record_browser_callback, NULL);
355     avahi_key_unref(k);
356
357     hnr = avahi_s_host_name_resolver_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "cname.local", AVAHI_PROTO_UNSPEC, 0, hnr_callback, NULL);
358
359     ar = avahi_s_address_resolver_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, avahi_address_parse("192.168.50.1", AVAHI_PROTO_INET, &a), 0, ar_callback, NULL);
360
361     db = avahi_s_domain_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, NULL, AVAHI_DOMAIN_BROWSER_BROWSE, 0, db_callback, NULL);
362
363     stb = avahi_s_service_type_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, NULL, 0, stb_callback, NULL);
364
365     sb = avahi_s_service_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "_http._tcp", NULL, 0, sb_callback, NULL);
366
367     sr = avahi_s_service_resolver_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "Ecstasy HTTP", "_http._tcp", "local", AVAHI_PROTO_UNSPEC, 0, sr_callback, NULL);
368
369     dsb = avahi_s_dns_server_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "local", AVAHI_DNS_SERVER_RESOLVE, AVAHI_PROTO_UNSPEC, 0, dsb_callback, NULL);
370
371     avahi_elapse_time(&tv, 1000*5, 0);
372     poll_api->timeout_new(poll_api, &tv, dump_timeout_callback, server);
373
374     avahi_elapse_time(&tv, 1000*60, 0);
375     poll_api->timeout_new(poll_api, &tv, quit_timeout_callback, simple_poll);
376
377     avahi_simple_poll_loop(simple_poll);
378
379     avahi_s_record_browser_free(r);
380     avahi_s_host_name_resolver_free(hnr);
381     avahi_s_address_resolver_free(ar);
382     avahi_s_service_type_browser_free(stb);
383     avahi_s_service_browser_free(sb);
384     avahi_s_service_resolver_free(sr);
385     avahi_s_dns_server_browser_free(dsb);
386
387     if (group)
388         avahi_s_entry_group_free(group);   
389
390     if (server)
391         avahi_server_free(server);
392
393     if (simple_poll)
394         avahi_simple_poll_free(simple_poll);
395
396     avahi_free(service_name);
397     
398     return 0;
399 }