]> git.meshlink.io Git - catta/blob - avahi-daemon/simple-protocol.c
ec43049c1005d42efbd374faa170565946a28922
[catta] / avahi-daemon / simple-protocol.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 <sys/socket.h>
28 #include <stdio.h>
29 #include <unistd.h>
30 #include <sys/un.h>
31 #include <errno.h>
32 #include <fcntl.h>
33
34 #include <glib.h>
35
36 #include <avahi-common/llist.h>
37 #include <avahi-core/log.h>
38
39 #include "simple-protocol.h"
40 #include "main.h"
41
42 #define BUFFER_SIZE (20*1024)
43
44 #define CLIENTS_MAX 50
45
46 typedef struct Client Client;
47 typedef struct Server Server;
48
49 typedef enum {
50     CLIENT_IDLE,
51     CLIENT_RESOLVE_HOSTNAME,
52     CLIENT_RESOLVE_ADDRESS,
53     CLIENT_BROWSE_DNS_SERVERS,
54     CLIENT_DEAD
55 } ClientState;
56
57 struct Client {
58     Server *server;
59
60     ClientState state;
61     
62     gint fd;
63     GPollFD poll_fd;
64
65     gchar inbuf[BUFFER_SIZE], outbuf[BUFFER_SIZE];
66     guint inbuf_length, outbuf_length;
67
68     AvahiSHostNameResolver *host_name_resolver;
69     AvahiSAddressResolver *address_resolver;
70     AvahiSDNSServerBrowser *dns_server_browser;
71
72     AvahiProtocol afquery;
73     
74     AVAHI_LLIST_FIELDS(Client, clients);
75 };
76
77 struct Server {
78     GSource source;
79     GMainContext *context;
80     GPollFD poll_fd;
81     gint fd;
82     AVAHI_LLIST_HEAD(Client, clients);
83
84     guint n_clients;
85     gboolean bind_successful;
86 };
87
88 static Server *server = NULL;
89
90 static void client_free(Client *c) {
91     g_assert(c);
92
93     g_assert(c->server->n_clients >= 1);
94     c->server->n_clients--;
95
96     if (c->host_name_resolver)
97         avahi_s_host_name_resolver_free(c->host_name_resolver);
98
99     if (c->address_resolver)
100         avahi_s_address_resolver_free(c->address_resolver);
101
102     if (c->dns_server_browser)
103         avahi_s_dns_server_browser_free(c->dns_server_browser);
104     
105     g_source_remove_poll(&c->server->source, &c->poll_fd);
106     close(c->fd);
107     AVAHI_LLIST_REMOVE(Client, clients, c->server->clients, c);
108     g_free(c);
109 }
110
111 static void client_new(Server *s, int fd) {
112     Client *c;
113
114     g_assert(fd >= 0);
115
116     c = g_new(Client, 1);
117     c->server = s;
118     c->fd = fd;
119     c->state = CLIENT_IDLE;
120
121     c->inbuf_length = c->outbuf_length = 0;
122
123     c->host_name_resolver = NULL;
124     c->address_resolver = NULL;
125     c->dns_server_browser = NULL;
126
127     memset(&c->poll_fd, 0, sizeof(GPollFD));
128     c->poll_fd.fd = fd;
129     c->poll_fd.events = G_IO_IN|G_IO_ERR|G_IO_HUP;
130     g_source_add_poll(&s->source, &c->poll_fd);
131
132     AVAHI_LLIST_PREPEND(Client, clients, s->clients, c);
133     s->n_clients++;
134 }
135
136 static void client_output(Client *c, const guint8*data, guint size) {
137     guint k, m;
138     
139     g_assert(c);
140     g_assert(data);
141
142     if (!size)
143         return;
144
145     k = sizeof(c->outbuf) - c->outbuf_length;
146     m = size > k ? k : size;
147
148     memcpy(c->outbuf + c->outbuf_length, data, m);
149     c->outbuf_length += m;
150
151     c->poll_fd.events |= G_IO_OUT;
152 }
153
154 static void client_output_printf(Client *c, const gchar *format, ...) {
155     gchar *t;
156     va_list ap;
157     
158     va_start(ap, format);
159     t = g_strdup_vprintf(format, ap);
160     va_end(ap);
161
162     client_output(c, (guint8*) t, strlen(t));
163     g_free(t);
164 }
165
166
167 static void host_name_resolver_callback(
168     AvahiSHostNameResolver *r,
169     AvahiIfIndex iface,
170     AvahiProtocol protocol,
171     AvahiResolverEvent event,
172     const char *hostname,
173     const AvahiAddress *a,
174     void* userdata) {
175
176     Client *c = userdata;
177     
178     g_assert(c);
179
180     if (event == AVAHI_RESOLVER_TIMEOUT)
181         client_output_printf(c, "%+i Query timed out\n", AVAHI_ERR_TIMEOUT);
182     else {
183         gchar t[64];
184         avahi_address_snprint(t, sizeof(t), a);
185         client_output_printf(c, "+ %i %u %s %s\n", iface, protocol, hostname, t);
186     }
187
188     c->state = CLIENT_DEAD;
189 }
190
191 static void address_resolver_callback(
192     AvahiSAddressResolver *r,
193     AvahiIfIndex iface,
194     AvahiProtocol protocol,
195     AvahiResolverEvent event,
196     const AvahiAddress *a,
197     const char *hostname,
198     void* userdata) {
199     
200     Client *c = userdata;
201     
202     g_assert(c);
203
204     if (event == AVAHI_RESOLVER_TIMEOUT)
205         client_output_printf(c, "%+i Query timed out\n", AVAHI_ERR_TIMEOUT);
206     else 
207         client_output_printf(c, "+ %i %u %s\n", iface, protocol, hostname);
208
209     c->state = CLIENT_DEAD;
210 }
211
212 static void dns_server_browser_callback(
213     AvahiSDNSServerBrowser *b,
214     AvahiIfIndex interface,
215     AvahiProtocol protocol,
216     AvahiBrowserEvent event,
217     const char *host_name,
218     const AvahiAddress *a,
219     uint16_t port,
220     void* userdata) {
221     
222     Client *c = userdata;
223     gchar t[64];
224     
225     g_assert(c);
226
227     if (!a)
228         return;
229
230     avahi_address_snprint(t, sizeof(t), a);
231     client_output_printf(c, "%c %i %u %s %u\n", event == AVAHI_BROWSER_NEW ? '>' : '<',  interface, protocol, t, port);
232 }
233
234 static void handle_line(Client *c, const gchar *s) {
235     gchar cmd[64], arg[64];
236     gint n_args;
237
238     g_assert(c);
239     g_assert(s);
240
241     if (c->state != CLIENT_IDLE)
242         return;
243
244     if ((n_args = sscanf(s, "%63s %63s", cmd, arg)) < 1 ) {
245         client_output_printf(c, "%+i Failed to parse command, try \"HELP\".\n", AVAHI_ERR_INVALID_OPERATION);
246         c->state = CLIENT_DEAD;
247         return;
248     }
249
250     if (strcmp(cmd, "HELP") == 0) {
251         client_output_printf(c,
252                              "+ Available commands are:\n"
253                              "+      RESOLVE-HOSTNAME <hostname>\n"
254                              "+      RESOLVE-HOSTNAME-IPV6 <hostname>\n"
255                              "+      RESOLVE-HOSTNAME-IPV4 <hostname>\n"
256                              "+      RESOLVE-ADDRESS <address>\n"
257                              "+      BROWSE-DNS-SERVERS\n"
258                              "+      BROWSE-DNS-SERVERS-IPV4\n"
259                              "+      BROWSE-DNS-SERVERS-IPV6\n");
260         c->state = CLIENT_DEAD; }
261     else if (strcmp(cmd, "FUCK") == 0 && n_args == 1) {
262         client_output_printf(c, "+ FUCK: Go fuck yourself!\n");
263         c->state = CLIENT_DEAD;
264     } else if (strcmp(cmd, "RESOLVE-HOSTNAME-IPV4") == 0 && n_args == 2) {
265         c->state = CLIENT_RESOLVE_HOSTNAME;
266         if (!(c->host_name_resolver = avahi_s_host_name_resolver_new(avahi_server, -1, AF_UNSPEC, arg, c->afquery = AF_INET, host_name_resolver_callback, c)))
267             goto fail;
268     } else if (strcmp(cmd, "RESOLVE-HOSTNAME-IPV6") == 0 && n_args == 2) {
269         c->state = CLIENT_RESOLVE_HOSTNAME;
270         if (!(c->host_name_resolver = avahi_s_host_name_resolver_new(avahi_server, -1, AF_UNSPEC, arg, c->afquery = AF_INET6, host_name_resolver_callback, c)))
271             goto fail;
272     } else if (strcmp(cmd, "RESOLVE-HOSTNAME") == 0 && n_args == 2) {
273         c->state = CLIENT_RESOLVE_HOSTNAME;
274         if (!(c->host_name_resolver = avahi_s_host_name_resolver_new(avahi_server, -1, AF_UNSPEC, arg, c->afquery = AF_UNSPEC, host_name_resolver_callback, c)))
275             goto fail;
276     } else if (strcmp(cmd, "RESOLVE-ADDRESS") == 0 && n_args == 2) {
277         AvahiAddress addr;
278         
279         if (!(avahi_address_parse(arg, AF_UNSPEC, &addr))) {
280             client_output_printf(c, "%+i Failed to parse address \"%s\".\n", AVAHI_ERR_INVALID_ADDRESS, arg);
281             c->state = CLIENT_DEAD;
282         } else {
283             c->state = CLIENT_RESOLVE_ADDRESS;
284             if (!(c->address_resolver = avahi_s_address_resolver_new(avahi_server, -1, AF_UNSPEC, &addr, address_resolver_callback, c)))
285                 goto fail;
286         }
287     } else if (strcmp(cmd, "BROWSE-DNS-SERVERS-IPV4") == 0 && n_args == 1) {
288         c->state = CLIENT_BROWSE_DNS_SERVERS;
289         if (!(c->dns_server_browser = avahi_s_dns_server_browser_new(avahi_server, -1, AF_UNSPEC, NULL, AVAHI_DNS_SERVER_RESOLVE, c->afquery = AF_INET, dns_server_browser_callback, c)))
290             goto fail;
291         client_output_printf(c, "+ Browsing ...\n");
292     } else if (strcmp(cmd, "BROWSE-DNS-SERVERS-IPV6") == 0 && n_args == 1) {
293         c->state = CLIENT_BROWSE_DNS_SERVERS;
294         if (!(c->dns_server_browser = avahi_s_dns_server_browser_new(avahi_server, -1, AF_UNSPEC, NULL, AVAHI_DNS_SERVER_RESOLVE, c->afquery = AF_INET6, dns_server_browser_callback, c)))
295             goto fail;
296         client_output_printf(c, "+ Browsing ...\n");
297     } else if (strcmp(cmd, "BROWSE-DNS-SERVERS") == 0 && n_args == 1) {
298         c->state = CLIENT_BROWSE_DNS_SERVERS;
299         if (!(c->dns_server_browser = avahi_s_dns_server_browser_new(avahi_server, -1, AF_UNSPEC, NULL, AVAHI_DNS_SERVER_RESOLVE, c->afquery = AF_UNSPEC, dns_server_browser_callback, c)))
300             goto fail;
301         client_output_printf(c, "+ Browsing ...\n");
302     } else {
303         client_output_printf(c, "%+i Invalid command \"%s\", try \"HELP\".\n", AVAHI_ERR_INVALID_OPERATION, cmd);
304         c->state = CLIENT_DEAD;
305     }
306
307     return;
308
309 fail:
310     client_output_printf(c, "%+i %s\n", avahi_server_errno(avahi_server), avahi_strerror(avahi_server_errno(avahi_server)));
311     c->state = CLIENT_DEAD;
312 }
313
314 static void handle_input(Client *c) {
315     g_assert(c);
316
317     for (;;) {
318         gchar *e;
319         guint k;
320
321         if (!(e = memchr(c->inbuf, '\n', c->inbuf_length)))
322             break;
323
324         k = e - (gchar*) c->inbuf;
325         *e = 0;
326         
327         handle_line(c, c->inbuf);
328         c->inbuf_length -= k + 1;
329         memmove(c->inbuf, e+1, c->inbuf_length);
330     }
331 }
332
333 static void client_work(Client *c) {
334     g_assert(c);
335
336     if ((c->poll_fd.revents & G_IO_IN) && c->inbuf_length < sizeof(c->inbuf)) {
337         ssize_t r;
338         
339         if ((r = read(c->fd, c->inbuf + c->inbuf_length, sizeof(c->inbuf) - c->inbuf_length)) <= 0) {
340             if (r < 0)
341                 avahi_log_warn("read(): %s", strerror(errno));
342             client_free(c);
343             return;
344         }
345
346         c->inbuf_length += r;
347         g_assert(c->inbuf_length <= sizeof(c->inbuf));
348
349         handle_input(c);
350     }
351
352     if ((c->poll_fd.revents & G_IO_OUT) && c->outbuf_length > 0) {
353         ssize_t r;
354
355         if ((r = write(c->fd, c->outbuf, c->outbuf_length)) < 0) {
356             avahi_log_warn("write(): %s", strerror(errno));
357             client_free(c);
358             return;
359         }
360
361         g_assert((guint) r <= c->outbuf_length);
362         c->outbuf_length -= r;
363         
364         if (c->outbuf_length)
365             memmove(c->outbuf, c->outbuf + r, c->outbuf_length - r);
366
367         if (c->outbuf_length == 0 && c->state == CLIENT_DEAD) {
368             client_free(c);
369             return;
370         }
371     }
372
373     c->poll_fd.events =
374         G_IO_ERR |
375         G_IO_HUP |
376         (c->outbuf_length > 0 ? G_IO_OUT : 0) |
377         (c->inbuf_length < sizeof(c->inbuf) ? G_IO_IN : 0);
378 }
379
380 static gboolean prepare_func(GSource *source, gint *timeout) {
381     g_assert(source);
382     g_assert(timeout);
383     
384     *timeout = -1;
385     return FALSE;
386 }
387
388 static gboolean check_func(GSource *source) {
389     Server *s = (Server*) source;
390     Client *c;
391     
392     g_assert(s);
393
394     if (s->poll_fd.revents)
395         return TRUE;
396     
397     for (c = s->clients; c; c = c->clients_next)
398         if (c->poll_fd.revents)
399             return TRUE;
400
401     return FALSE;
402 }
403
404 static gboolean dispatch_func(GSource *source, GSourceFunc callback, gpointer user_data) {
405     Server *s = (Server*) source;
406     Client *c, *n;
407     
408     g_assert(s);
409
410     if (s->poll_fd.revents & G_IO_IN) {
411         gint fd;
412
413         if ((fd = accept(s->fd, NULL, NULL)) < 0)
414             avahi_log_warn("accept(): %s", strerror(errno));
415         else
416             client_new(s, fd);
417     } else if (s->poll_fd.revents)
418         g_error("Invalid revents");
419
420     for (c = s->clients; c; c = n) {
421         n = c->clients_next;
422         if (c->poll_fd.revents)
423             client_work(c);
424     }
425     
426     return TRUE;
427 }
428
429 int simple_protocol_setup(GMainContext *c) {
430     struct sockaddr_un sa;
431     mode_t u;
432
433     static GSourceFuncs source_funcs = {
434         prepare_func,
435         check_func,
436         dispatch_func,
437         NULL,
438         NULL,
439         NULL
440     };
441     
442     g_assert(!server);
443
444     server = (Server*) g_source_new(&source_funcs, sizeof(Server));
445     server->bind_successful = FALSE;
446     server->fd = -1;
447     AVAHI_LLIST_HEAD_INIT(Client, server->clients);
448     g_main_context_ref(server->context = (c ? c : g_main_context_default()));
449     server->clients = NULL;
450
451     u = umask(0000);
452
453     if ((server->fd = socket(PF_LOCAL, SOCK_STREAM, 0)) < 0) {
454         avahi_log_warn("socket(PF_LOCAL, SOCK_STREAM, 0): %s", strerror(errno));
455         goto fail;
456     }
457
458     memset(&sa, 0, sizeof(sa));
459     sa.sun_family = AF_LOCAL;
460     strncpy(sa.sun_path, AVAHI_SOCKET, sizeof(sa.sun_path)-1);
461
462     /* We simply remove existing UNIX sockets under this name. The
463        Avahi daemons makes sure that it runs only once on a host,
464        therefore sockets that already exist are stale and may be
465        removed without any ill effects */
466
467     unlink(AVAHI_SOCKET);
468     
469     if (bind(server->fd, &sa, sizeof(sa)) < 0) {
470         avahi_log_warn("bind(): %s", strerror(errno));
471         goto fail;
472     }
473
474     server->bind_successful = TRUE;
475     
476     if (listen(server->fd, 2) < 0) {
477         avahi_log_warn("listen(): %s", strerror(errno));
478         goto fail;
479     }
480
481     umask(u);
482
483     memset(&server->poll_fd, 0, sizeof(GPollFD));
484     server->poll_fd.fd = server->fd;
485     server->poll_fd.events = G_IO_IN|G_IO_ERR;
486     g_source_add_poll(&server->source, &server->poll_fd);
487
488     g_source_attach(&server->source, server->context);
489     
490     return 0;
491
492 fail:
493     
494     umask(u);
495     simple_protocol_shutdown();
496
497     return -1;
498 }
499
500 void simple_protocol_shutdown(void) {
501
502     if (server) {
503
504         while (server->clients)
505             client_free(server->clients);
506
507         if (server->bind_successful)
508             unlink(AVAHI_SOCKET);
509         
510         if (server->fd >= 0)
511             close(server->fd);
512
513         g_main_context_unref(server->context);
514         
515         g_source_destroy(&server->source);
516         g_source_unref(&server->source);
517
518         server = NULL;
519     }
520 }
521
522 void simple_protocol_restart_queries(void) {
523     Client *c;
524
525     /* Restart queries in case of local domain name changes */
526     
527     g_assert(server);
528
529     for (c = server->clients; c; c = c->clients_next)
530         if (c->state == CLIENT_BROWSE_DNS_SERVERS && c->dns_server_browser) {
531             avahi_s_dns_server_browser_free(c->dns_server_browser);
532             c->dns_server_browser = avahi_s_dns_server_browser_new(avahi_server, -1, AF_UNSPEC, NULL, AVAHI_DNS_SERVER_RESOLVE, c->afquery, dns_server_browser_callback, c);
533         }
534 }
535
536