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