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