]> git.meshlink.io Git - catta/blob - avahi-core/avahi-test.c
* hide some more files
[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
31 #include <avahi-core/core.h>
32 #include <avahi-core/log.h>
33
34 static AvahiEntryGroup *group = NULL;
35 static AvahiServer *server = NULL;
36 static gchar *service_name = NULL;
37
38 static gboolean quit_timeout(gpointer data) {
39     g_main_loop_quit(data);
40     return FALSE;
41 }
42
43 static gboolean dump_timeout(gpointer data) {
44     AvahiServer *Avahi = data;
45     avahi_server_dump(Avahi, stdout);
46     return TRUE;
47 }
48
49 static void record_browser_callback(AvahiRecordBrowser *r, gint interface, guchar protocol, AvahiBrowserEvent event, AvahiRecord *record, gpointer userdata) {
50     gchar *t;
51     
52     g_assert(r);
53     g_assert(record);
54     g_assert(interface > 0);
55     g_assert(protocol != AVAHI_PROTO_UNSPEC);
56
57     avahi_log_debug("SUBSCRIPTION: record [%s] on %i.%i is %s", t = avahi_record_to_string(record), interface, protocol,
58               event == AVAHI_BROWSER_NEW ? "new" : "remove");
59
60     g_free(t);
61 }
62
63 static void remove_entries(void);
64 static void create_entries(gboolean new_name);
65
66 static void entry_group_callback(AvahiServer *s, AvahiEntryGroup *g, AvahiEntryGroupState state, gpointer userdata) {
67     avahi_log_debug("entry group state: %i", state); 
68
69     if (state == AVAHI_ENTRY_GROUP_COLLISION) {
70         remove_entries();
71         create_entries(TRUE);
72         avahi_log_debug("Service name conflict, retrying with <%s>", service_name);
73     } else if (state == AVAHI_ENTRY_GROUP_ESTABLISHED) {
74         avahi_log_debug("Service established under name <%s>", service_name);
75     }
76 }
77
78 static void server_callback(AvahiServer *s, AvahiServerState state, gpointer userdata) {
79
80      avahi_log_debug("server state: %i", state); 
81     
82     if (state == AVAHI_SERVER_RUNNING) {
83         avahi_log_debug("Server startup complete.  Host name is <%s>", avahi_server_get_host_name_fqdn(s));
84         create_entries(FALSE);
85     } else if (state == AVAHI_SERVER_COLLISION) {
86         gchar *n;
87         remove_entries();
88
89         n = avahi_alternative_host_name(avahi_server_get_host_name(s));
90
91         avahi_log_debug("Host name conflict, retrying with <%s>", n);
92         avahi_server_set_host_name(s, n);
93         g_free(n);
94     }
95 }
96
97 static void remove_entries(void) {
98     if (group)
99         avahi_entry_group_free(group);
100
101     group = NULL;
102 }
103
104 static void create_entries(gboolean new_name) {
105     AvahiAddress a;
106     remove_entries();
107     
108     group = avahi_entry_group_new(server, entry_group_callback, NULL);   
109     
110     if (!service_name)
111         service_name = g_strdup("Test Service");
112     else if (new_name) {
113         gchar *n = avahi_alternative_service_name(service_name);
114         g_free(service_name);
115         service_name = n;
116     }
117     
118     if (avahi_server_add_service(server, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "_http._tcp", service_name, NULL, NULL, 80, "foo", NULL) < 0) {
119         avahi_log_error("Failed to add HTTP service");
120         goto fail;
121     }
122
123     if (avahi_server_add_service(server, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "_ftp._tcp", service_name, NULL, NULL, 21, "foo", NULL) < 0) {
124         avahi_log_error("Failed to add FTP service");
125         goto fail;
126     }
127
128     if (avahi_server_add_service(server, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "_webdav._tcp", service_name, NULL, NULL, 80, "foo", NULL) < 0) {
129         avahi_log_error("Failed to add WEBDAV service");
130         goto fail;
131     }
132
133     if (avahi_server_add_dns_server_address(server, group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, NULL, AVAHI_DNS_SERVER_RESOLVE, avahi_address_parse("192.168.50.1", AVAHI_PROTO_UNSPEC, &a), 53) < 0) {
134         avahi_log_error("Failed to add new DNS Server address");
135         goto fail;
136     }
137
138     avahi_entry_group_commit(group);
139     return;
140
141 fail:
142     if (group)
143         avahi_entry_group_free(group);
144
145     group = NULL;
146 }
147
148 static void hnr_callback(AvahiHostNameResolver *r, gint iface, guchar protocol, AvahiBrowserEvent event, const gchar *hostname, const AvahiAddress *a, gpointer userdata) {
149     gchar t[64];
150
151     if (a)
152         avahi_address_snprint(t, sizeof(t), a);
153
154     avahi_log_debug("HNR: (%i.%i) <%s> -> %s [%s]", iface, protocol, hostname, a ? t : "n/a", event == AVAHI_RESOLVER_FOUND ? "found" : "timeout");
155 }
156
157 static void ar_callback(AvahiAddressResolver *r, gint iface, guchar protocol, AvahiBrowserEvent event, const AvahiAddress *a, const gchar *hostname, gpointer userdata) {
158     gchar t[64];
159
160     avahi_address_snprint(t, sizeof(t), a);
161
162     avahi_log_debug("AR: (%i.%i) %s -> <%s> [%s]", iface, protocol, t, hostname ? hostname : "n/a", event == AVAHI_RESOLVER_FOUND ? "found" : "timeout");
163 }
164
165 static void db_callback(AvahiDomainBrowser *b, gint iface, guchar protocol, AvahiBrowserEvent event, const gchar *domain, gpointer userdata) {
166
167     avahi_log_debug("DB: (%i.%i) <%s> [%s]", iface, protocol, domain, event == AVAHI_BROWSER_NEW ? "new" : "remove");
168 }
169
170 static void stb_callback(AvahiServiceTypeBrowser *b, gint iface, guchar protocol, AvahiBrowserEvent event, const gchar *service_type, const gchar *domain, gpointer userdata) {
171
172     avahi_log_debug("STB: (%i.%i) %s in <%s> [%s]", iface, protocol, service_type, domain, event == AVAHI_BROWSER_NEW ? "new" : "remove");
173 }
174
175 static void sb_callback(AvahiServiceBrowser *b, gint iface, guchar protocol, AvahiBrowserEvent event, const gchar *name, const gchar *service_type, const gchar *domain, gpointer userdata) {
176    avahi_log_debug("SB: (%i.%i) <%s> as %s in <%s> [%s]", iface, protocol, name, service_type, domain, event == AVAHI_BROWSER_NEW ? "new" : "remove");
177 }
178
179
180 static void sr_callback(AvahiServiceResolver *r, gint iface, guchar protocol, AvahiBrowserEvent event, const gchar *service_name, const gchar*service_type, const gchar*domain_name, const gchar*hostname, const AvahiAddress *a, guint16 port, AvahiStringList *txt, gpointer userdata) {
181
182     if (event == AVAHI_RESOLVER_TIMEOUT)
183         avahi_log_debug("SR: (%i.%i) <%s> as %s in <%s> [timeout]", iface, protocol, service_name, service_type, domain_name);
184     else {
185         gchar t[64], *s;
186         
187         avahi_address_snprint(t, sizeof(t), a);
188
189         s = avahi_string_list_to_string(txt);
190         avahi_log_debug("SR: (%i.%i) <%s> as %s in <%s>: %s/%s:%i (%s) [found]", iface, protocol, service_name, service_type, domain_name, hostname, t, port, s);
191         g_free(s);
192     }
193 }
194
195 static void dsb_callback(AvahiDNSServerBrowser *b, gint iface, guchar protocol, AvahiBrowserEvent event, const gchar*hostname, const AvahiAddress *a, guint16 port, gpointer userdata) {
196     gchar t[64];
197     avahi_address_snprint(t, sizeof(t), a);
198     avahi_log_debug("DSB: (%i.%i): %s/%s:%i [%s]", iface, protocol, hostname, t, port, event == AVAHI_BROWSER_NEW ? "new" : "remove");
199 }
200
201 int main(int argc, char *argv[]) {
202     GMainLoop *loop = NULL;
203     AvahiRecordBrowser *r;
204     AvahiHostNameResolver *hnr;
205     AvahiAddressResolver *ar;
206     AvahiKey *k;
207     AvahiServerConfig config;
208     AvahiAddress a;
209     AvahiDomainBrowser *db;
210     AvahiServiceTypeBrowser *stb;
211     AvahiServiceBrowser *sb;
212     AvahiServiceResolver *sr;
213     AvahiDNSServerBrowser *dsb;
214     
215     avahi_server_config_init(&config);
216 /*     config.host_name = g_strdup("test"); */
217     server = avahi_server_new(NULL, &config, server_callback, NULL);
218     avahi_server_config_free(&config);
219
220     k = avahi_key_new("_http._tcp.local", AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_PTR);
221     r = avahi_record_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, k, record_browser_callback, NULL);
222     avahi_key_unref(k);
223
224     hnr = avahi_host_name_resolver_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "codes-CompUTER.local", AVAHI_PROTO_UNSPEC, hnr_callback, NULL);
225
226     ar = avahi_address_resolver_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, avahi_address_parse("192.168.50.15", AVAHI_PROTO_INET, &a), ar_callback, NULL);
227
228     db = avahi_domain_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, NULL, AVAHI_DOMAIN_BROWSER_BROWSE, db_callback, NULL);
229
230     stb = avahi_service_type_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, NULL, stb_callback, NULL);
231
232     sb = avahi_service_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "_http._tcp", NULL, sb_callback, NULL);
233
234     sr = avahi_service_resolver_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "Ecstasy HTTP", "_http._tcp", "local", AVAHI_PROTO_UNSPEC, sr_callback, NULL);
235
236     dsb = avahi_dns_server_browser_new(server, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, "local", AVAHI_DNS_SERVER_RESOLVE, AVAHI_PROTO_UNSPEC, dsb_callback, NULL);
237
238     
239     g_timeout_add(1000*5, dump_timeout, server);
240     g_timeout_add(1000*60, quit_timeout, loop);     
241     
242     loop = g_main_loop_new(NULL, FALSE);
243     g_main_loop_run(loop);
244     g_main_loop_unref(loop);
245
246     avahi_record_browser_free(r);
247     avahi_host_name_resolver_free(hnr);
248     avahi_address_resolver_free(ar);
249     avahi_service_type_browser_free(stb);
250     avahi_service_browser_free(sb);
251     avahi_service_resolver_free(sr);
252     avahi_dns_server_browser_free(dsb);
253
254     if (group)
255         avahi_entry_group_free(group);   
256
257     if (server)
258         avahi_server_free(server);
259
260     g_free(service_name);
261     
262     return 0;
263 }