]> git.meshlink.io Git - catta/blob - avahi-daemon/main.c
add new config options "publish-aaaa-on-ipv4=" and "publish-a-on-ipv6="
[catta] / avahi-daemon / main.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 <getopt.h>
28 #include <string.h>
29 #include <signal.h>
30 #include <errno.h>
31 #include <string.h>
32 #include <unistd.h>
33 #include <grp.h>
34 #include <pwd.h>
35 #include <sys/stat.h>
36 #include <stdio.h>
37 #include <fcntl.h>
38 #include <time.h>
39 #include <stdlib.h>
40 #include <sys/time.h>
41 #include <sys/resource.h>
42 #include <sys/socket.h>
43
44 #include <libdaemon/dfork.h>
45 #include <libdaemon/dsignal.h>
46 #include <libdaemon/dlog.h>
47 #include <libdaemon/dpid.h>
48
49 #include <avahi-common/malloc.h>
50 #include <avahi-common/simple-watch.h>
51 #include <avahi-common/error.h>
52 #include <avahi-common/alternative.h>
53 #include <avahi-common/domain.h>
54
55 #include <avahi-core/core.h>
56 #include <avahi-core/publish.h>
57 #include <avahi-core/dns-srv-rr.h>
58 #include <avahi-core/log.h>
59
60 #ifdef ENABLE_CHROOT
61 #include "chroot.h"
62 #include "caps.h"
63 #endif
64
65 #include "setproctitle.h"
66 #include "main.h"
67 #include "simple-protocol.h"
68 #include "static-services.h"
69 #include "static-hosts.h"
70 #include "ini-file-parser.h"
71
72 #ifdef HAVE_DBUS
73 #include "dbus-protocol.h"
74 #endif
75
76 AvahiServer *avahi_server = NULL;
77 AvahiSimplePoll *simple_poll_api = NULL;
78 static char *argv0 = NULL;
79 int nss_support = 0;
80
81 typedef enum {
82     DAEMON_RUN,
83     DAEMON_KILL,
84     DAEMON_VERSION,
85     DAEMON_HELP,
86     DAEMON_RELOAD,
87     DAEMON_CHECK
88 } DaemonCommand;
89
90 typedef struct {
91     AvahiServerConfig server_config;
92     DaemonCommand command;
93     int daemonize;
94     int use_syslog;
95     char *config_file;
96 #ifdef HAVE_DBUS
97     int enable_dbus;
98     int fail_on_missing_dbus;
99 #endif
100     int drop_root;
101     int set_rlimits;
102 #ifdef ENABLE_CHROOT
103     int use_chroot;
104 #endif
105     int modify_proc_title;
106
107     int disable_user_service_publishing;
108     int publish_resolv_conf;
109     char ** publish_dns_servers;
110     int debug;
111
112     int rlimit_as_set, rlimit_core_set, rlimit_data_set, rlimit_fsize_set, rlimit_nofile_set, rlimit_stack_set;
113     rlim_t rlimit_as, rlimit_core, rlimit_data, rlimit_fsize, rlimit_nofile, rlimit_stack;
114
115 #ifdef RLIMIT_NPROC
116     int rlimit_nproc_set;
117     rlim_t rlimit_nproc;
118 #endif
119 } DaemonConfig;
120
121 #define RESOLV_CONF "/etc/resolv.conf"
122
123 static AvahiSEntryGroup *dns_servers_entry_group = NULL;
124 static AvahiSEntryGroup *resolv_conf_entry_group = NULL;
125
126 static char **resolv_conf = NULL;
127
128 static DaemonConfig config;
129
130 static int has_prefix(const char *s, const char *prefix) {
131     size_t l;
132
133     l = strlen(prefix);
134     
135     return strlen(s) >= l && strncmp(s, prefix, l) == 0;
136 }
137
138 static int load_resolv_conf(void) {
139     int ret = -1;
140     FILE *f;
141     int i = 0;
142     
143     avahi_strfreev(resolv_conf);
144     resolv_conf = NULL;
145
146 #ifdef ENABLE_CHROOT
147     f = avahi_chroot_helper_get_file(RESOLV_CONF);
148 #else
149     f = fopen(RESOLV_CONF, "r");
150 #endif
151     
152     if (!f) {
153         avahi_log_warn("Failed to open "RESOLV_CONF": %s", strerror(errno));
154         goto finish;
155     }
156
157     resolv_conf = avahi_new0(char*, AVAHI_WIDE_AREA_SERVERS_MAX+1);
158
159     while (!feof(f) && i < AVAHI_WIDE_AREA_SERVERS_MAX) {
160         char ln[128];
161         char *p;
162
163         if (!(fgets(ln, sizeof(ln), f)))
164             break;
165
166         ln[strcspn(ln, "\r\n#")] = 0;
167         p = ln + strspn(ln, "\t ");
168
169         if (has_prefix(p, "nameserver")) {
170             p += 10;
171             p += strspn(p, "\t ");
172             p[strcspn(p, "\t ")] = 0;
173             resolv_conf[i++] = avahi_strdup(p);
174         }
175     }
176
177     ret = 0;
178
179 finish:
180
181     if (ret != 0) {
182         avahi_strfreev(resolv_conf);
183         resolv_conf = NULL;
184     }
185         
186     if (f)
187         fclose(f);
188
189     return ret;
190 }
191
192 static AvahiSEntryGroup* add_dns_servers(AvahiServer *s, AvahiSEntryGroup* g, char **l) {
193     char **p;
194
195     assert(s);
196     assert(l);
197
198     if (!g) 
199         g = avahi_s_entry_group_new(s, NULL, NULL);
200
201     assert(avahi_s_entry_group_is_empty(g));
202
203     for (p = l; *p; p++) {
204         AvahiAddress a;
205         
206         if (!avahi_address_parse(*p, AVAHI_PROTO_UNSPEC, &a))
207             avahi_log_warn("Failed to parse address '%s', ignoring.", *p);
208         else
209             if (avahi_server_add_dns_server_address(s, g, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, NULL, AVAHI_DNS_SERVER_RESOLVE, &a, 53) < 0) {
210                 avahi_s_entry_group_free(g);
211                 avahi_log_error("Failed to add DNS server address: %s", avahi_strerror(avahi_server_errno(s)));
212                 return NULL;
213             }
214     }
215
216     avahi_s_entry_group_commit(g);
217
218     return g;
219 }
220
221 static void remove_dns_server_entry_groups(void) {
222
223     if (resolv_conf_entry_group)
224         avahi_s_entry_group_reset(resolv_conf_entry_group);
225     
226     if (dns_servers_entry_group) 
227         avahi_s_entry_group_reset(dns_servers_entry_group);
228 }
229
230 static void update_wide_area_servers(void) {
231     AvahiAddress a[AVAHI_WIDE_AREA_SERVERS_MAX];
232     unsigned n = 0;
233     char **p;
234
235     if (!resolv_conf) {
236         avahi_server_set_wide_area_servers(avahi_server, NULL, 0);
237         return;
238     }
239
240     for (p = resolv_conf; *p && n < AVAHI_WIDE_AREA_SERVERS_MAX; p++) {
241         if (!avahi_address_parse(*p, AVAHI_PROTO_UNSPEC, &a[n]))
242             avahi_log_warn("Failed to parse address '%s', ignoring.", *p);
243         else
244             n++;
245     }
246
247     avahi_server_set_wide_area_servers(avahi_server, a, n);
248 }
249
250 static void server_callback(AvahiServer *s, AvahiServerState state, void *userdata) {
251     DaemonConfig *c = userdata;
252     
253     assert(s);
254     assert(c);
255
256     /* This function is possibly called before the global variable
257      * avahi_server has been set, therefore we do it explicitly */
258
259     avahi_server = s;
260     
261 #ifdef HAVE_DBUS
262     if (c->enable_dbus && state != AVAHI_SERVER_INVALID && state != AVAHI_SERVER_FAILURE)
263         dbus_protocol_server_state_changed(state);
264 #endif
265
266     switch (state) {
267         case AVAHI_SERVER_RUNNING:
268             avahi_log_info("Server startup complete. Host name is %s. Local service cookie is %u.", avahi_server_get_host_name_fqdn(s), avahi_server_get_local_service_cookie(s));
269             
270             avahi_set_proc_title(argv0, "%s: running [%s]", argv0, avahi_server_get_host_name_fqdn(s));
271             
272             static_service_add_to_server();
273             static_hosts_add_to_server();
274             
275             remove_dns_server_entry_groups();
276             
277             if (c->publish_resolv_conf && resolv_conf && resolv_conf[0])
278                 resolv_conf_entry_group = add_dns_servers(s, resolv_conf_entry_group, resolv_conf);
279             
280             if (c->publish_dns_servers && c->publish_dns_servers[0])
281                 dns_servers_entry_group = add_dns_servers(s, dns_servers_entry_group, c->publish_dns_servers);
282             
283             simple_protocol_restart_queries();
284             break;
285             
286         case AVAHI_SERVER_COLLISION: {
287             char *n;
288             
289             avahi_set_proc_title(argv0, "%s: collision", argv0);
290             
291             static_service_remove_from_server();
292             static_hosts_remove_from_server();
293             remove_dns_server_entry_groups();
294
295             n = avahi_alternative_host_name(avahi_server_get_host_name(s));
296             avahi_log_warn("Host name conflict, retrying with <%s>", n);
297             avahi_server_set_host_name(s, n);
298             avahi_free(n);
299
300             break;
301         }
302
303         case AVAHI_SERVER_FAILURE:
304
305             avahi_log_error("Server error: %s", avahi_strerror(avahi_server_errno(s)));
306             avahi_simple_poll_quit(simple_poll_api);
307             break;
308
309         case AVAHI_SERVER_REGISTERING:
310
311             avahi_set_proc_title(argv0, "%s: registering [%s]", argv0, avahi_server_get_host_name_fqdn(s));
312             
313             static_service_remove_from_server();
314             static_hosts_remove_from_server();
315             remove_dns_server_entry_groups();
316             
317             break;
318
319         case AVAHI_SERVER_INVALID:
320             break;
321             
322     }
323 }
324
325 static void help(FILE *f) {
326     fprintf(f,
327             "%s [options]\n"
328             "    -h --help          Show this help\n"
329             "    -D --daemonize     Daemonize after startup (implies -s)\n"
330             "    -s --syslog        Write log messages to syslog(3) instead of STDERR\n"
331             "    -k --kill          Kill a running daemon\n"
332             "    -r --reload        Request a running daemon to reload static services\n"
333             "    -c --check         Return 0 if a daemon is already running\n"
334             "    -V --version       Show version\n"
335             "    -f --file=FILE     Load the specified configuration file instead of\n"
336             "                       "AVAHI_CONFIG_FILE"\n"
337             "       --no-rlimits    Don't enforce resource limits\n"
338             "       --no-drop-root  Don't drop privileges\n"
339 #ifdef ENABLE_CHROOT            
340             "       --no-chroot     Don't chroot()\n"
341 #endif            
342             "       --no-proc-title Don't modify process title\n"
343             "       --debug         Increase verbosity\n",
344             argv0);
345 }
346
347
348 static int parse_command_line(DaemonConfig *c, int argc, char *argv[]) {
349     int o;
350
351     enum {
352         OPTION_NO_RLIMITS = 256,
353         OPTION_NO_DROP_ROOT,
354 #ifdef ENABLE_CHROOT        
355         OPTION_NO_CHROOT,
356 #endif
357         OPTION_NO_PROC_TITLE,
358         OPTION_DEBUG
359     };
360     
361     static const struct option long_options[] = {
362         { "help",           no_argument,       NULL, 'h' },
363         { "daemonize",      no_argument,       NULL, 'D' },
364         { "kill",           no_argument,       NULL, 'k' },
365         { "version",        no_argument,       NULL, 'V' },
366         { "file",           required_argument, NULL, 'f' },
367         { "reload",         no_argument,       NULL, 'r' },
368         { "check",          no_argument,       NULL, 'c' },
369         { "syslog",         no_argument,       NULL, 's' },
370         { "no-rlimits",     no_argument,       NULL, OPTION_NO_RLIMITS },
371         { "no-drop-root",   no_argument,       NULL, OPTION_NO_DROP_ROOT },
372 #ifdef ENABLE_CHROOT
373         { "no-chroot",      no_argument,       NULL, OPTION_NO_CHROOT },
374 #endif
375         { "no-proc-title",  no_argument,       NULL, OPTION_NO_PROC_TITLE },
376         { "debug",          no_argument,       NULL, OPTION_DEBUG },
377         { NULL, 0, NULL, 0 }
378     };
379
380     assert(c);
381
382     opterr = 0;
383     while ((o = getopt_long(argc, argv, "hDkVf:rcs", long_options, NULL)) >= 0) {
384
385         switch(o) {
386             case 's':
387                 c->use_syslog = 1;
388                 break;
389             case 'h':
390                 c->command = DAEMON_HELP;
391                 break;
392             case 'D':
393                 c->daemonize = 1;
394                 break;
395             case 'k':
396                 c->command = DAEMON_KILL;
397                 break;
398             case 'V':
399                 c->command = DAEMON_VERSION;
400                 break;
401             case 'f':
402                 avahi_free(c->config_file);
403                 c->config_file = avahi_strdup(optarg);
404                 break;
405             case 'r':
406                 c->command = DAEMON_RELOAD;
407                 break;
408             case 'c':
409                 c->command = DAEMON_CHECK;
410                 break;
411             case OPTION_NO_RLIMITS:
412                 c->set_rlimits = 0;
413                 break;
414             case OPTION_NO_DROP_ROOT:
415                 c->drop_root = 0;
416                 break;
417 #ifdef ENABLE_CHROOT
418             case OPTION_NO_CHROOT:
419                 c->use_chroot = 0;
420                 break;
421 #endif
422             case OPTION_NO_PROC_TITLE:
423                 c->modify_proc_title = 0;
424                 break;
425             case OPTION_DEBUG:
426                 c->debug = 1;
427                 break;
428             default:
429                 fprintf(stderr, "Invalid command line argument: %s\n", argv[optind-1]);
430                 return -1;
431         }
432     }
433
434     if (optind < argc) {
435         fprintf(stderr, "Too many arguments\n");
436         return -1;
437     }
438         
439     return 0;
440 }
441
442 static int is_yes(const char *s) {
443     assert(s);
444     
445     return *s == 'y' || *s == 'Y' || *s == '1' || *s == 't' || *s == 'T';
446 }
447
448 static int load_config_file(DaemonConfig *c) {
449     int r = -1;
450     AvahiIniFile *f;
451     AvahiIniFileGroup *g;
452
453     assert(c);
454
455     if (!(f = avahi_ini_file_load(c->config_file ? c->config_file : AVAHI_CONFIG_FILE)))
456         goto finish;
457     
458     for (g = f->groups; g; g = g->groups_next) {
459         
460         if (strcasecmp(g->name, "server") == 0) {
461             AvahiIniFilePair *p;
462
463             for (p = g->pairs; p; p = p->pairs_next) {
464
465                 if (strcasecmp(p->key, "host-name") == 0) {
466                     avahi_free(c->server_config.host_name);
467                     c->server_config.host_name = avahi_strdup(p->value);
468                 } else if (strcasecmp(p->key, "domain-name") == 0) {
469                     avahi_free(c->server_config.domain_name);
470                     c->server_config.domain_name = avahi_strdup(p->value);
471                 } else if (strcasecmp(p->key, "browse-domains") == 0) {
472                     char **e, **t;
473
474                     e = avahi_split_csv(p->value);
475                     
476                     for (t = e; *t; t++) {
477                         char cleaned[AVAHI_DOMAIN_NAME_MAX];
478
479                         if (!avahi_normalize_name(*t, cleaned, sizeof(cleaned))) {
480                             avahi_log_error("Invalid domain name \"%s\" for key \"%s\" in group \"%s\"\n", *t, p->key, g->name);
481                             avahi_strfreev(e);
482                             goto finish;
483                         }
484
485                         c->server_config.browse_domains = avahi_string_list_add(c->server_config.browse_domains, cleaned);
486                     }
487                     
488                     avahi_strfreev(e);
489                 } else if (strcasecmp(p->key, "use-ipv4") == 0)
490                     c->server_config.use_ipv4 = is_yes(p->value);
491                 else if (strcasecmp(p->key, "use-ipv6") == 0)
492                     c->server_config.use_ipv6 = is_yes(p->value);
493                 else if (strcasecmp(p->key, "check-response-ttl") == 0)
494                     c->server_config.check_response_ttl = is_yes(p->value);
495                 else if (strcasecmp(p->key, "allow-point-to-point") == 0)
496                     c->server_config.allow_point_to_point = is_yes(p->value);
497                 else if (strcasecmp(p->key, "use-iff-running") == 0)
498                     c->server_config.use_iff_running = is_yes(p->value);
499                 else if (strcasecmp(p->key, "disallow-other-stacks") == 0)
500                     c->server_config.disallow_other_stacks = is_yes(p->value);
501 #ifdef HAVE_DBUS
502                 else if (strcasecmp(p->key, "enable-dbus") == 0) {
503
504                     if (*(p->value) == 'w' || *(p->value) == 'W') {
505                         c->fail_on_missing_dbus = 0;
506                         c->enable_dbus = 1;
507                     } else if (*(p->value) == 'y' || *(p->value) == 'Y') {
508                         c->fail_on_missing_dbus = 1;
509                         c->enable_dbus = 1;
510                     } else {
511                         c->enable_dbus = 0;
512                     }
513                 }
514 #endif
515                 else {
516                     avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
517                     goto finish;
518                 }
519             }
520             
521         } else if (strcasecmp(g->name, "publish") == 0) {
522             AvahiIniFilePair *p;
523
524             for (p = g->pairs; p; p = p->pairs_next) {
525                 
526                 if (strcasecmp(p->key, "publish-addresses") == 0)
527                     c->server_config.publish_addresses = is_yes(p->value);
528                 else if (strcasecmp(p->key, "publish-hinfo") == 0)
529                     c->server_config.publish_hinfo = is_yes(p->value);
530                 else if (strcasecmp(p->key, "publish-workstation") == 0)
531                     c->server_config.publish_workstation = is_yes(p->value);
532                 else if (strcasecmp(p->key, "publish-domain") == 0)
533                     c->server_config.publish_domain = is_yes(p->value);
534                 else if (strcasecmp(p->key, "publish-resolv-conf-dns-servers") == 0)
535                     c->publish_resolv_conf = is_yes(p->value);
536                 else if (strcasecmp(p->key, "disable-publishing") == 0)
537                     c->server_config.disable_publishing = is_yes(p->value);
538                 else if (strcasecmp(p->key, "disable-user-service-publishing") == 0)
539                     c->disable_user_service_publishing = is_yes(p->value);
540                 else if (strcasecmp(p->key, "add-service-cookie") == 0)
541                     c->server_config.add_service_cookie = is_yes(p->value);
542                 else if (strcasecmp(p->key, "publish-dns-servers") == 0) {
543                     avahi_strfreev(c->publish_dns_servers);
544                     c->publish_dns_servers = avahi_split_csv(p->value);
545                 } else if (strcasecmp(p->key, "publish-a-on-ipv6") == 0)
546                     c->server_config.publish_a_on_ipv6 = is_yes(p->value);
547                 else if (strcasecmp(p->key, "publish-aaaa-on-ipv4") == 0)
548                     c->server_config.publish_aaaa_on_ipv4 = is_yes(p->value);
549                 else {
550                     avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
551                     goto finish;
552                 }
553             }
554
555         } else if (strcasecmp(g->name, "wide-area") == 0) {
556             AvahiIniFilePair *p;
557
558             for (p = g->pairs; p; p = p->pairs_next) {
559                 
560                 if (strcasecmp(p->key, "enable-wide-area") == 0)
561                     c->server_config.enable_wide_area = is_yes(p->value);
562                 else {
563                     avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
564                     goto finish;
565                 }
566             }
567             
568         } else if (strcasecmp(g->name, "reflector") == 0) {
569             AvahiIniFilePair *p;
570
571             for (p = g->pairs; p; p = p->pairs_next) {
572                 
573                 if (strcasecmp(p->key, "enable-reflector") == 0)
574                     c->server_config.enable_reflector = is_yes(p->value);
575                 else if (strcasecmp(p->key, "reflect-ipv") == 0)
576                     c->server_config.reflect_ipv = is_yes(p->value);
577                 else {
578                     avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
579                     goto finish;
580                 }
581             }
582             
583         } else if (strcasecmp(g->name, "rlimits") == 0) {
584             AvahiIniFilePair *p;
585
586             for (p = g->pairs; p; p = p->pairs_next) {
587                 
588                 if (strcasecmp(p->key, "rlimit-as") == 0) {
589                     c->rlimit_as_set = 1;
590                     c->rlimit_as = atoi(p->value);
591                 } else if (strcasecmp(p->key, "rlimit-core") == 0) {
592                     c->rlimit_core_set = 1;
593                     c->rlimit_core = atoi(p->value);
594                 } else if (strcasecmp(p->key, "rlimit-data") == 0) {
595                     c->rlimit_data_set = 1;
596                     c->rlimit_data = atoi(p->value);
597                 } else if (strcasecmp(p->key, "rlimit-fsize") == 0) {
598                     c->rlimit_fsize_set = 1;
599                     c->rlimit_fsize = atoi(p->value);
600                 } else if (strcasecmp(p->key, "rlimit-nofile") == 0) {
601                     c->rlimit_nofile_set = 1;
602                     c->rlimit_nofile = atoi(p->value);
603                 } else if (strcasecmp(p->key, "rlimit-stack") == 0) {
604                     c->rlimit_stack_set = 1;
605                     c->rlimit_stack = atoi(p->value);
606                 } else if (strcasecmp(p->key, "rlimit-nproc") == 0) {
607 #ifdef RLIMIT_NPROC
608                     c->rlimit_nproc_set = 1;
609                     c->rlimit_nproc = atoi(p->value);
610 #else
611                     avahi_log_error("Ignoring configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
612 #endif
613                 } else {
614                     avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
615                     goto finish;
616                 }
617
618             }
619             
620         } else {
621             avahi_log_error("Invalid configuration file group \"%s\".\n", g->name);
622             goto finish;
623         }
624     }
625
626     r = 0;
627
628 finish:
629
630     if (f)
631         avahi_ini_file_free(f);
632     
633     return r;
634 }
635
636 static void log_function(AvahiLogLevel level, const char *txt) {
637
638     static const int log_level_map[] = {
639         LOG_ERR,
640         LOG_WARNING,
641         LOG_NOTICE,
642         LOG_INFO,
643         LOG_DEBUG
644     };
645     
646     assert(level < AVAHI_LOG_LEVEL_MAX);
647     assert(txt);
648
649     if (!config.debug && level == AVAHI_LOG_DEBUG)
650         return;
651
652     daemon_log(log_level_map[level], "%s", txt);
653 }
654
655 static void dump(const char *text, AVAHI_GCC_UNUSED void* userdata) {
656     avahi_log_info("%s", text);
657 }
658
659 static void signal_callback(AvahiWatch *watch, AVAHI_GCC_UNUSED int fd, AVAHI_GCC_UNUSED AvahiWatchEvent event, AVAHI_GCC_UNUSED void *userdata) {
660     int sig;
661     const AvahiPoll *poll_api;
662     
663     assert(watch);
664     assert(simple_poll_api);
665
666     poll_api = avahi_simple_poll_get(simple_poll_api);
667
668     if ((sig = daemon_signal_next()) <= 0) {
669         avahi_log_error("daemon_signal_next() failed");
670         poll_api->watch_free(watch);
671         return;
672     }
673
674     switch (sig) {
675         case SIGINT:
676         case SIGQUIT:
677         case SIGTERM:
678             avahi_log_info(
679                 "Got %s, quitting.",
680                 sig == SIGINT ? "SIGINT" :
681                 (sig == SIGQUIT ? "SIGQUIT" : "SIGTERM"));
682             avahi_simple_poll_quit(simple_poll_api);
683             break;
684
685         case SIGHUP:
686             avahi_log_info("Got SIGHUP, reloading.");
687 #ifdef ENABLE_CHROOT
688             static_service_load(config.use_chroot);
689             static_hosts_load(config.use_chroot);
690 #else
691             static_service_load(0);
692             static_hosts_load(0);
693 #endif            
694             static_service_add_to_server();
695             static_hosts_add_to_server();
696
697             if (resolv_conf_entry_group)
698                 avahi_s_entry_group_reset(resolv_conf_entry_group);
699
700             load_resolv_conf();
701
702             update_wide_area_servers();
703             
704             if (config.publish_resolv_conf && resolv_conf && resolv_conf[0])
705                 resolv_conf_entry_group = add_dns_servers(avahi_server, resolv_conf_entry_group, resolv_conf);
706
707             break;
708
709         case SIGUSR1:
710             avahi_log_info("Got SIGUSR1, dumping record data.");
711             avahi_server_dump(avahi_server, dump, NULL);
712             break;
713
714         default:
715             avahi_log_warn("Got spurious signal, ignoring.");
716             break;
717     }
718 }
719
720 /* Imported from ../avahi-client/nss-check.c */
721 int avahi_nss_support(void);
722
723 static int run_server(DaemonConfig *c) {
724     int r = -1;
725     int error;
726     const AvahiPoll *poll_api = NULL;
727     AvahiWatch *sig_watch = NULL;
728     int retval_is_sent = 0;
729
730     assert(c);
731
732     if (!(nss_support = avahi_nss_support()))
733         avahi_log_warn("WARNING: No NSS support for mDNS detected, consider installing nss-mdns!");
734
735     if (!(simple_poll_api = avahi_simple_poll_new())) {
736         avahi_log_error("Failed to create main loop object.");
737         goto finish;
738     }
739
740     poll_api = avahi_simple_poll_get(simple_poll_api);
741
742     if (daemon_signal_init(SIGINT, SIGQUIT, SIGHUP, SIGTERM, SIGUSR1, 0) < 0) {
743         avahi_log_error("Could not register signal handlers (%s).", strerror(errno));
744         goto finish;
745     }
746
747     if (!(sig_watch = poll_api->watch_new(poll_api, daemon_signal_fd(), AVAHI_WATCH_IN, signal_callback, simple_poll_api))) {
748         avahi_log_error( "Failed to create signal watcher");
749         goto finish;
750     }
751
752     if (simple_protocol_setup(poll_api) < 0)
753         goto finish;
754
755 #ifdef HAVE_DBUS
756     if (c->enable_dbus) {
757         if (dbus_protocol_setup(poll_api, config.disable_user_service_publishing, !c->fail_on_missing_dbus
758 #ifdef ENABLE_CHROOT
759                                 && !config.use_chroot
760 #endif
761             ) < 0) {
762
763             avahi_log_warn("WARNING: Failed to contact D-Bus daemon.");
764
765             if (c->fail_on_missing_dbus)
766                 goto finish;
767         }
768     }
769 #endif
770
771 #ifdef ENABLE_CHROOT
772
773     if (config.drop_root && config.use_chroot) {
774         if (chroot(AVAHI_CONFIG_DIR) < 0) {
775             avahi_log_error("Failed to chroot(): %s", strerror(errno));
776             goto finish;
777         }
778         
779         avahi_log_info("Successfully called chroot().");
780         chdir("/");
781         
782         if (avahi_caps_drop_all() < 0) {
783             avahi_log_error("Failed to drop capabilities.");
784             goto finish;
785         }
786         avahi_log_info("Successfully dropped remaining capabilities.");
787     }
788     
789 #endif
790
791     load_resolv_conf();
792 #ifdef ENABLE_CHROOT
793     static_service_load(config.use_chroot);
794     static_hosts_load(config.use_chroot);
795 #else
796     static_service_load(0);
797     static_hosts_load(0);
798 #endif
799
800     if (!(avahi_server = avahi_server_new(poll_api, &c->server_config, server_callback, c, &error))) {
801         avahi_log_error("Failed to create server: %s", avahi_strerror(error));
802         goto finish;
803     }
804
805     update_wide_area_servers();
806
807     if (c->daemonize) {
808         daemon_retval_send(0);
809         retval_is_sent = 1;
810     }
811
812     for (;;) {
813         if ((r = avahi_simple_poll_iterate(simple_poll_api, -1)) < 0) {
814
815             /* We handle signals through an FD, so let's continue */
816             if (errno == EINTR)
817                 continue;
818             
819             avahi_log_error("poll(): %s", strerror(errno));
820             goto finish;
821         } else if (r > 0)
822             /* Quit */
823             break;
824     }
825     
826
827 finish:
828     
829     static_service_remove_from_server();
830     static_service_free_all();
831
832     static_hosts_remove_from_server();
833     static_hosts_free_all();
834
835     remove_dns_server_entry_groups();
836     
837     simple_protocol_shutdown();
838
839 #ifdef HAVE_DBUS
840     if (c->enable_dbus)
841         dbus_protocol_shutdown();
842 #endif
843
844     if (avahi_server) {
845         avahi_server_free(avahi_server);
846         avahi_server = NULL;
847     }
848
849     daemon_signal_done();
850
851     if (sig_watch)
852         poll_api->watch_free(sig_watch);
853
854     if (simple_poll_api) {
855         avahi_simple_poll_free(simple_poll_api);
856         simple_poll_api = NULL;
857     }
858
859     if (!retval_is_sent && c->daemonize)
860         daemon_retval_send(1);
861     
862     return r;
863 }
864
865 #define set_env(key, value) putenv(avahi_strdup_printf("%s=%s", (key), (value)))
866
867 static int drop_root(void) {
868     struct passwd *pw;
869     struct group * gr;
870     int r;
871     
872     if (!(pw = getpwnam(AVAHI_USER))) {
873         avahi_log_error( "Failed to find user '"AVAHI_USER"'.");
874         return -1;
875     }
876
877     if (!(gr = getgrnam(AVAHI_GROUP))) {
878         avahi_log_error( "Failed to find group '"AVAHI_GROUP"'.");
879         return -1;
880     }
881
882     avahi_log_info("Found user '"AVAHI_USER"' (UID %lu) and group '"AVAHI_GROUP"' (GID %lu).", (unsigned long) pw->pw_uid, (unsigned long) gr->gr_gid);
883
884     if (initgroups(AVAHI_USER, gr->gr_gid) != 0) {
885         avahi_log_error("Failed to change group list: %s", strerror(errno));
886         return -1;
887     }
888
889 #if defined(HAVE_SETRESGID)
890     r = setresgid(gr->gr_gid, gr->gr_gid, gr->gr_gid);
891 #elif defined(HAVE_SETEGID)
892     if ((r = setgid(gr->gr_gid)) >= 0)
893         r = setegid(gr->gr_gid);
894 #elif defined(HAVE_SETREGID)
895     r = setregid(gr->gr_gid, gr->gr_gid);
896 #else
897 #error "No API to drop priviliges"
898 #endif
899
900     if (r < 0) {
901         avahi_log_error("Failed to change GID: %s", strerror(errno));
902         return -1;
903     }
904
905 #if defined(HAVE_SETRESUID)
906     r = setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid);
907 #elif defined(HAVE_SETEUID)
908     if ((r = setuid(pw->pw_uid)) >= 0)
909         r = seteuid(pw->pw_uid);
910 #elif defined(HAVE_SETREUID)
911     r = setreuid(pw->pw_uid, pw->pw_uid);
912 #else
913 #error "No API to drop priviliges"
914 #endif
915
916     if (r < 0) {
917         avahi_log_error("Failed to change UID: %s", strerror(errno));
918         return -1;
919     }
920
921     set_env("USER", pw->pw_name);
922     set_env("LOGNAME", pw->pw_name);
923     set_env("HOME", pw->pw_dir);
924
925     avahi_log_info("Successfully dropped root privileges.");
926
927     return 0;
928 }
929
930 static const char* pid_file_proc(void) {
931     return AVAHI_DAEMON_RUNTIME_DIR"/pid";
932 }
933
934 static int make_runtime_dir(void) {
935     int r = -1;
936     mode_t u;
937     int reset_umask = 0;
938     struct passwd *pw;
939     struct group * gr;
940     struct stat st;
941
942     if (!(pw = getpwnam(AVAHI_USER))) {
943         avahi_log_error( "Failed to find user '"AVAHI_USER"'.");
944         goto fail;
945     }
946
947     if (!(gr = getgrnam(AVAHI_GROUP))) {
948         avahi_log_error( "Failed to find group '"AVAHI_GROUP"'.");
949         goto fail;
950     }
951
952     u = umask(0000);
953     reset_umask = 1;
954     
955     if (mkdir(AVAHI_DAEMON_RUNTIME_DIR, 0755) < 0 && errno != EEXIST) {
956         avahi_log_error("mkdir(\""AVAHI_DAEMON_RUNTIME_DIR"\"): %s", strerror(errno));
957         goto fail;
958     }
959     
960     chown(AVAHI_DAEMON_RUNTIME_DIR, pw->pw_uid, gr->gr_gid);
961
962     if (stat(AVAHI_DAEMON_RUNTIME_DIR, &st) < 0) {
963         avahi_log_error("stat(): %s\n", strerror(errno));
964         goto fail;
965     }
966
967     if (!S_ISDIR(st.st_mode) || st.st_uid != pw->pw_uid || st.st_gid != gr->gr_gid) {
968         avahi_log_error("Failed to create runtime directory "AVAHI_DAEMON_RUNTIME_DIR".");
969         goto fail;
970     }
971
972     r = 0;
973
974 fail:
975     if (reset_umask)
976         umask(u);
977     return r;
978 }
979
980 static void set_one_rlimit(int resource, rlim_t limit, const char *name) {
981     struct rlimit rl;
982     rl.rlim_cur = rl.rlim_max = limit;
983
984     if (setrlimit(resource, &rl) < 0)
985         avahi_log_warn("setrlimit(%s, {%u, %u}) failed: %s", name, (unsigned) limit, (unsigned) limit, strerror(errno));
986 }
987
988 static void enforce_rlimits(void) {
989 #ifdef RLIMIT_AS
990     if (config.rlimit_as_set)
991         set_one_rlimit(RLIMIT_AS, config.rlimit_as, "RLIMIT_AS");
992 #endif
993     if (config.rlimit_core_set)
994         set_one_rlimit(RLIMIT_CORE, config.rlimit_core, "RLIMIT_CORE");
995     if (config.rlimit_data_set)
996         set_one_rlimit(RLIMIT_DATA, config.rlimit_data, "RLIMIT_DATA");
997     if (config.rlimit_fsize_set)
998         set_one_rlimit(RLIMIT_FSIZE, config.rlimit_fsize, "RLIMIT_FSIZE");
999     if (config.rlimit_nofile_set)
1000         set_one_rlimit(RLIMIT_NOFILE, config.rlimit_nofile, "RLIMIT_NOFILE");
1001     if (config.rlimit_stack_set)
1002         set_one_rlimit(RLIMIT_STACK, config.rlimit_stack, "RLIMIT_STACK");
1003 #ifdef RLIMIT_NPROC
1004     if (config.rlimit_nproc_set)
1005         set_one_rlimit(RLIMIT_NPROC, config.rlimit_nproc, "RLIMIT_NPROC");
1006 #endif
1007
1008     /* the sysctl() call from iface-pfroute.c needs locked memory on FreeBSD */
1009 #if defined(RLIMIT_MEMLOCK) && !defined(__FreeBSD__)
1010     /* We don't need locked memory */
1011     set_one_rlimit(RLIMIT_MEMLOCK, 0, "RLIMIT_MEMLOCK");
1012 #endif
1013 }
1014
1015 #define RANDOM_DEVICE "/dev/urandom"
1016
1017 static void init_rand_seed(void) {
1018     int fd;
1019     unsigned seed = 0;
1020
1021     /* Try to initialize seed from /dev/urandom, to make it a little
1022      * less predictable, and to make sure that multiple machines
1023      * booted at the same time choose different random seeds.  */
1024     if ((fd = open(RANDOM_DEVICE, O_RDONLY)) >= 0) {
1025         read(fd, &seed, sizeof(seed));
1026         close(fd);
1027     }
1028
1029     /* If the initialization failed by some reason, we add the time to the seed*/
1030     seed ^= (unsigned) time(NULL);
1031
1032     srand(seed);
1033 }
1034
1035 int main(int argc, char *argv[]) {
1036     int r = 255;
1037     int wrote_pid_file = 0;
1038
1039     avahi_set_log_function(log_function);
1040
1041     init_rand_seed();
1042     
1043     avahi_server_config_init(&config.server_config);
1044     config.command = DAEMON_RUN;
1045     config.daemonize = 0;
1046     config.config_file = NULL;
1047 #ifdef HAVE_DBUS
1048     config.enable_dbus = 1;
1049     config.fail_on_missing_dbus = 1;
1050 #endif
1051     
1052     config.drop_root = 1;
1053     config.set_rlimits = 1;
1054 #ifdef ENABLE_CHROOT
1055     config.use_chroot = 1;
1056 #endif
1057     config.modify_proc_title = 1;
1058
1059     config.disable_user_service_publishing = 0;
1060     config.publish_dns_servers = NULL;
1061     config.publish_resolv_conf = 0;
1062     config.use_syslog = 0;
1063     config.debug = 0;
1064     config.rlimit_as_set = 0;
1065     config.rlimit_core_set = 0;
1066     config.rlimit_data_set = 0;
1067     config.rlimit_fsize_set = 0;
1068     config.rlimit_nofile_set = 0;
1069     config.rlimit_stack_set = 0;
1070 #ifdef RLIMIT_NPROC
1071     config.rlimit_nproc_set = 0;
1072 #endif
1073     
1074     if ((argv0 = strrchr(argv[0], '/')))
1075         argv0 = avahi_strdup(argv0 + 1);
1076     else
1077         argv0 = avahi_strdup(argv[0]);
1078
1079     daemon_pid_file_ident = (const char *) argv0;
1080     daemon_log_ident = (char*) argv0;
1081     daemon_pid_file_proc = pid_file_proc;
1082     
1083     if (parse_command_line(&config, argc, argv) < 0)
1084         goto finish;
1085
1086     if (config.modify_proc_title)
1087         avahi_init_proc_title(argc, argv);
1088
1089 #ifdef ENABLE_CHROOT
1090     config.use_chroot = config.use_chroot && config.drop_root;
1091 #endif
1092     
1093     if (config.command == DAEMON_HELP) {
1094         help(stdout);
1095         r = 0;
1096     } else if (config.command == DAEMON_VERSION) {
1097         printf("%s "PACKAGE_VERSION"\n", argv0);
1098         r = 0;
1099     } else if (config.command == DAEMON_KILL) {
1100         if (daemon_pid_file_kill_wait(SIGTERM, 5) < 0) {
1101             avahi_log_warn("Failed to kill daemon: %s", strerror(errno));
1102             goto finish;
1103         }
1104
1105         r = 0;
1106
1107     } else if (config.command == DAEMON_RELOAD) {
1108         if (daemon_pid_file_kill(SIGHUP) < 0) {
1109             avahi_log_warn("Failed to kill daemon: %s", strerror(errno));
1110             goto finish;
1111         }
1112
1113         r = 0;
1114         
1115     } else if (config.command == DAEMON_CHECK)
1116         r = (daemon_pid_file_is_running() >= 0) ? 0 : 1;
1117     else if (config.command == DAEMON_RUN) {
1118         pid_t pid;
1119
1120         if (getuid() != 0 && config.drop_root) {
1121             avahi_log_error("This program is intended to be run as root.");
1122             goto finish;
1123         }
1124         
1125         if ((pid = daemon_pid_file_is_running()) >= 0) {
1126             avahi_log_error("Daemon already running on PID %u", pid);
1127             goto finish;
1128         }
1129
1130         if (load_config_file(&config) < 0)
1131             goto finish;
1132         
1133         if (config.daemonize) {
1134             daemon_retval_init();
1135             
1136             if ((pid = daemon_fork()) < 0)
1137                 goto finish;
1138             else if (pid != 0) {
1139                 int ret;
1140                 /** Parent **/
1141
1142                 if ((ret = daemon_retval_wait(20)) < 0) {
1143                     avahi_log_error("Could not receive return value from daemon process.");
1144                     goto finish;
1145                 }
1146
1147                 r = ret;
1148                 goto finish;
1149             }
1150
1151             /* Child */
1152         }
1153
1154         if (config.use_syslog || config.daemonize)
1155             daemon_log_use = DAEMON_LOG_SYSLOG;
1156
1157         if (make_runtime_dir() < 0)
1158             goto finish;
1159
1160         if (config.drop_root) {
1161 #ifdef ENABLE_CHROOT
1162             if (config.use_chroot)
1163                 if (avahi_caps_reduce() < 0)
1164                     goto finish;
1165 #endif
1166             
1167             if (drop_root() < 0)
1168                 goto finish;
1169
1170 #ifdef ENABLE_CHROOT
1171             if (config.use_chroot)
1172                 if (avahi_caps_reduce2() < 0)
1173                     goto finish;
1174 #endif
1175         }
1176
1177         if (daemon_pid_file_create() < 0) {
1178             avahi_log_error("Failed to create PID file: %s", strerror(errno));
1179
1180             if (config.daemonize)
1181                 daemon_retval_send(1);
1182             goto finish;
1183         } else
1184             wrote_pid_file = 1;
1185
1186         if (config.set_rlimits)
1187             enforce_rlimits();
1188
1189         chdir("/");
1190
1191 #ifdef ENABLE_CHROOT
1192         if (config.drop_root && config.use_chroot)
1193             if (avahi_chroot_helper_start(argv0) < 0) {
1194                 avahi_log_error("failed to start chroot() helper daemon.");
1195                 goto finish;
1196             }
1197 #endif
1198         avahi_log_info("%s "PACKAGE_VERSION" starting up.", argv0);
1199
1200         avahi_set_proc_title(argv0, "%s: starting up", argv0);
1201         
1202         if (run_server(&config) == 0)
1203             r = 0;
1204     }
1205         
1206 finish:
1207
1208     if (config.daemonize)
1209         daemon_retval_done();
1210
1211     avahi_server_config_free(&config.server_config);
1212     avahi_free(config.config_file);
1213     avahi_strfreev(config.publish_dns_servers);
1214     avahi_strfreev(resolv_conf);
1215
1216     if (wrote_pid_file) {
1217 #ifdef ENABLE_CHROOT
1218         avahi_chroot_helper_unlink(pid_file_proc());
1219 #else
1220         daemon_pid_file_remove();
1221 #endif
1222     }
1223
1224 #ifdef ENABLE_CHROOT
1225     avahi_chroot_helper_shutdown();
1226 #endif
1227
1228     avahi_free(argv0);
1229     
1230     return r;
1231 }