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