4 This file is part of avahi.
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.
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.
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
27 #include <sys/socket.h>
36 #include <avahi-core/llist.h>
37 #include <avahi-core/log.h>
39 #include "simple-protocol.h"
42 #define BUFFER_SIZE (20*1024)
44 #define UNIX_SOCKET AVAHI_RUNTIME_DIR "/socket"
46 #define CLIENTS_MAX 50
48 typedef struct Client Client;
49 typedef struct Server Server;
53 CLIENT_RESOLVE_HOSTNAME,
54 CLIENT_RESOLVE_ADDRESS,
55 CLIENT_BROWSE_DNS_SERVERS,
67 gchar inbuf[BUFFER_SIZE], outbuf[BUFFER_SIZE];
68 guint inbuf_length, outbuf_length;
70 AvahiHostNameResolver *host_name_resolver;
71 AvahiAddressResolver *address_resolver;
72 AvahiDNSServerBrowser *dns_server_browser;
74 AvahiProtocol afquery;
76 AVAHI_LLIST_FIELDS(Client, clients);
81 GMainContext *context;
84 AVAHI_LLIST_HEAD(Client, clients);
87 gboolean bind_successful;
90 static Server *server = NULL;
92 static void client_free(Client *c) {
95 g_assert(c->server->n_clients >= 1);
96 c->server->n_clients--;
98 if (c->host_name_resolver)
99 avahi_host_name_resolver_free(c->host_name_resolver);
101 if (c->address_resolver)
102 avahi_address_resolver_free(c->address_resolver);
104 if (c->dns_server_browser)
105 avahi_dns_server_browser_free(c->dns_server_browser);
107 g_source_remove_poll(&c->server->source, &c->poll_fd);
109 AVAHI_LLIST_REMOVE(Client, clients, c->server->clients, c);
113 static void client_new(Server *s, int fd) {
118 c = g_new(Client, 1);
121 c->state = CLIENT_IDLE;
123 c->inbuf_length = c->outbuf_length = 0;
125 c->host_name_resolver = NULL;
126 c->address_resolver = NULL;
127 c->dns_server_browser = NULL;
129 memset(&c->poll_fd, 0, sizeof(GPollFD));
131 c->poll_fd.events = G_IO_IN|G_IO_ERR|G_IO_HUP;
132 g_source_add_poll(&s->source, &c->poll_fd);
134 AVAHI_LLIST_PREPEND(Client, clients, s->clients, c);
138 static void client_output(Client *c, const guint8*data, guint size) {
147 k = sizeof(c->outbuf) - c->outbuf_length;
148 m = size > k ? k : size;
150 memcpy(c->outbuf + c->outbuf_length, data, m);
151 c->outbuf_length += m;
153 c->poll_fd.events |= G_IO_OUT;
156 static void client_output_printf(Client *c, gchar *format, ...) {
160 va_start(ap, format);
161 t = g_strdup_vprintf(format, ap);
164 client_output(c, (guint8*) t, strlen(t));
169 static void host_name_resolver_callback(AvahiHostNameResolver *r, gint iface, guchar protocol, AvahiBrowserEvent event, const gchar *hostname, const AvahiAddress *a, gpointer userdata) {
170 Client *c = userdata;
175 if (event == AVAHI_RESOLVER_TIMEOUT)
176 client_output_printf(c, "- Query timed out\n");
179 avahi_address_snprint(t, sizeof(t), a);
180 client_output_printf(c, "+ %i %u %s %s\n", iface, protocol, hostname, t);
183 c->state = CLIENT_DEAD;
186 static void address_resolver_callback(AvahiAddressResolver *r, gint iface, guchar protocol, AvahiBrowserEvent event, const AvahiAddress *a, const gchar *hostname, gpointer userdata) {
187 Client *c = userdata;
192 if (event == AVAHI_RESOLVER_TIMEOUT)
193 client_output_printf(c, "- Query timed out\n");
195 client_output_printf(c, "+ %i %u %s\n", iface, protocol, hostname);
197 c->state = CLIENT_DEAD;
200 static void dns_server_browser_callback(AvahiDNSServerBrowser *b, gint interface, guchar protocol, AvahiBrowserEvent event, const gchar *host_name, const AvahiAddress *a, guint16 port, gpointer userdata) {
201 Client *c = userdata;
209 avahi_address_snprint(t, sizeof(t), a);
210 client_output_printf(c, "%c %i %u %s %u\n", event == AVAHI_BROWSER_NEW ? '>' : '<', interface, protocol, t, port);
213 static void handle_line(Client *c, const gchar *s) {
214 gchar cmd[64], arg[64];
220 if (c->state != CLIENT_IDLE)
223 if ((n_args = sscanf(s, "%63s %63s", cmd, arg)) < 1 ) {
224 client_output_printf(c, "- Failed to parse command, try \"HELP\".\n");
225 c->state = CLIENT_DEAD;
229 if (strcmp(cmd, "HELP") == 0) {
230 client_output_printf(c,
231 "+ Available commands are:\n"
232 "+ RESOLVE-HOSTNAME <hostname>\n"
233 "+ RESOLVE-HOSTNAME-IPV6 <hostname>\n"
234 "+ RESOLVE-HOSTNAME-IPV4 <hostname>\n"
235 "+ RESOLVE-ADDRESS <address>\n"
236 "+ BROWSE-DNS-SERVERS\n"
237 "+ BROWSE-DNS-SERVERS-IPV4\n"
238 "+ BROWSE-DNS-SERVERS-IPV6\n");
239 c->state = CLIENT_DEAD; }
240 else if (strcmp(cmd, "FUCK") == 0 && n_args == 1) {
241 client_output_printf(c, "FUCK: Go fuck yourself!\n");
242 c->state = CLIENT_DEAD;
243 } else if (strcmp(cmd, "RESOLVE-HOSTNAME-IPV4") == 0 && n_args == 2) {
244 c->state = CLIENT_RESOLVE_HOSTNAME;
245 c->host_name_resolver = avahi_host_name_resolver_new(avahi_server, -1, AF_UNSPEC, arg, c->afquery = AF_INET, host_name_resolver_callback, c);
246 } else if (strcmp(cmd, "RESOLVE-HOSTNAME-IPV6") == 0 && n_args == 2) {
247 c->state = CLIENT_RESOLVE_HOSTNAME;
248 c->host_name_resolver = avahi_host_name_resolver_new(avahi_server, -1, AF_UNSPEC, arg, c->afquery = AF_INET6, host_name_resolver_callback, c);
249 } else if (strcmp(cmd, "RESOLVE-HOSTNAME") == 0 && n_args == 2) {
250 c->state = CLIENT_RESOLVE_HOSTNAME;
251 c->host_name_resolver = avahi_host_name_resolver_new(avahi_server, -1, AF_UNSPEC, arg, c->afquery = AF_UNSPEC, host_name_resolver_callback, c);
252 } else if (strcmp(cmd, "RESOLVE-ADDRESS") == 0 && n_args == 2) {
255 if (!(avahi_address_parse(arg, AF_UNSPEC, &addr))) {
256 client_output_printf(c, "- Failed to parse address \"%s\".\n", arg);
257 c->state = CLIENT_DEAD;
259 c->state = CLIENT_RESOLVE_ADDRESS;
260 c->address_resolver = avahi_address_resolver_new(avahi_server, -1, AF_UNSPEC, &addr, address_resolver_callback, c);
262 } else if (strcmp(cmd, "BROWSE-DNS-SERVERS-IPV4") == 0 && n_args == 1) {
263 c->state = CLIENT_BROWSE_DNS_SERVERS;
264 c->dns_server_browser = avahi_dns_server_browser_new(avahi_server, -1, AF_UNSPEC, NULL, AVAHI_DNS_SERVER_RESOLVE, c->afquery = AF_INET, dns_server_browser_callback, c);
265 client_output_printf(c, "+ Browsing ...\n");
266 } else if (strcmp(cmd, "BROWSE-DNS-SERVERS-IPV6") == 0 && n_args == 1) {
267 c->state = CLIENT_BROWSE_DNS_SERVERS;
268 c->dns_server_browser = avahi_dns_server_browser_new(avahi_server, -1, AF_UNSPEC, NULL, AVAHI_DNS_SERVER_RESOLVE, c->afquery = AF_INET6, dns_server_browser_callback, c);
269 client_output_printf(c, "+ Browsing ...\n");
270 } else if (strcmp(cmd, "BROWSE-DNS-SERVERS") == 0 && n_args == 1) {
271 c->state = CLIENT_BROWSE_DNS_SERVERS;
272 c->dns_server_browser = avahi_dns_server_browser_new(avahi_server, -1, AF_UNSPEC, NULL, AVAHI_DNS_SERVER_RESOLVE, c->afquery = AF_UNSPEC, dns_server_browser_callback, c);
273 client_output_printf(c, "+ Browsing ...\n");
275 client_output_printf(c, "- Invalid command \"%s\", try \"HELP\".\n", cmd);
276 c->state = CLIENT_DEAD;
280 static void handle_input(Client *c) {
287 if (!(e = memchr(c->inbuf, '\n', c->inbuf_length)))
290 k = e - (gchar*) c->inbuf;
293 handle_line(c, c->inbuf);
294 c->inbuf_length -= k + 1;
295 memmove(c->inbuf, e+1, c->inbuf_length);
299 static void client_work(Client *c) {
302 if ((c->poll_fd.revents & G_IO_IN) && c->inbuf_length < sizeof(c->inbuf)) {
305 if ((r = read(c->fd, c->inbuf + c->inbuf_length, sizeof(c->inbuf) - c->inbuf_length)) <= 0) {
307 avahi_log_warn("read(): %s", strerror(errno));
312 c->inbuf_length += r;
313 g_assert(c->inbuf_length <= sizeof(c->inbuf));
318 if ((c->poll_fd.revents & G_IO_OUT) && c->outbuf_length > 0) {
321 if ((r = write(c->fd, c->outbuf, c->outbuf_length)) < 0) {
322 avahi_log_warn("write(): %s", strerror(errno));
327 g_assert((guint) r <= c->outbuf_length);
328 c->outbuf_length -= r;
330 if (c->outbuf_length)
331 memmove(c->outbuf, c->outbuf + r, c->outbuf_length - r);
333 if (c->outbuf_length == 0 && c->state == CLIENT_DEAD) {
342 (c->outbuf_length > 0 ? G_IO_OUT : 0) |
343 (c->inbuf_length < sizeof(c->inbuf) ? G_IO_IN : 0);
346 static gboolean prepare_func(GSource *source, gint *timeout) {
354 static gboolean check_func(GSource *source) {
355 Server *s = (Server*) source;
360 if (s->poll_fd.revents)
363 for (c = s->clients; c; c = c->clients_next)
364 if (c->poll_fd.revents)
370 static gboolean dispatch_func(GSource *source, GSourceFunc callback, gpointer user_data) {
371 Server *s = (Server*) source;
376 if (s->poll_fd.revents & G_IO_IN) {
379 if ((fd = accept(s->fd, NULL, NULL)) < 0)
380 avahi_log_warn("accept(): %s", strerror(errno));
383 } else if (s->poll_fd.revents)
384 g_error("Invalid revents");
386 for (c = s->clients; c; c = n) {
388 if (c->poll_fd.revents)
395 int simple_protocol_setup(GMainContext *c) {
396 struct sockaddr_un sa;
399 static GSourceFuncs source_funcs = {
410 server = (Server*) g_source_new(&source_funcs, sizeof(Server));
411 server->bind_successful = FALSE;
413 AVAHI_LLIST_HEAD_INIT(Client, server->clients);
414 g_main_context_ref(server->context = (c ? c : g_main_context_default()));
415 server->clients = NULL;
419 if ((server->fd = socket(PF_LOCAL, SOCK_STREAM, 0)) < 0) {
420 avahi_log_warn("socket(PF_LOCAL, SOCK_STREAM, 0): %s", strerror(errno));
424 memset(&sa, 0, sizeof(sa));
425 sa.sun_family = AF_LOCAL;
426 strncpy(sa.sun_path, UNIX_SOCKET, sizeof(sa.sun_path)-1);
428 /* We simply remove existing UNIX sockets under this name. The
429 Avahi daemons makes sure that it runs only once on a host,
430 therefore sockets that already exist are stale and may be
431 removed without any ill effects */
435 if (bind(server->fd, &sa, sizeof(sa)) < 0) {
436 avahi_log_warn("bind(): %s", strerror(errno));
440 server->bind_successful = TRUE;
442 if (listen(server->fd, 2) < 0) {
443 avahi_log_warn("listen(): %s", strerror(errno));
449 memset(&server->poll_fd, 0, sizeof(GPollFD));
450 server->poll_fd.fd = server->fd;
451 server->poll_fd.events = G_IO_IN|G_IO_ERR;
452 g_source_add_poll(&server->source, &server->poll_fd);
454 g_source_attach(&server->source, server->context);
461 simple_protocol_shutdown();
466 void simple_protocol_shutdown(void) {
470 while (server->clients)
471 client_free(server->clients);
473 if (server->bind_successful)
479 g_main_context_unref(server->context);
481 g_source_destroy(&server->source);
482 g_source_unref(&server->source);
488 void simple_protocol_restart_queries(void) {
491 /* Restart queries in case of local domain name changes */
495 for (c = server->clients; c; c = c->clients_next)
496 if (c->state == CLIENT_BROWSE_DNS_SERVERS && c->dns_server_browser) {
497 avahi_dns_server_browser_free(c->dns_server_browser);
498 c->dns_server_browser = avahi_dns_server_browser_new(avahi_server, -1, AF_UNSPEC, NULL, AVAHI_DNS_SERVER_RESOLVE, c->afquery, dns_server_browser_callback, c);