4 This file is part of avahi.
6 avahi is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 avahi is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14 Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with avahi; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
41 #include <sys/resource.h>
43 #include <libdaemon/dfork.h>
44 #include <libdaemon/dsignal.h>
45 #include <libdaemon/dlog.h>
46 #include <libdaemon/dpid.h>
48 #include <avahi-common/malloc.h>
49 #include <avahi-common/simple-watch.h>
50 #include <avahi-common/error.h>
51 #include <avahi-common/alternative.h>
53 #include <avahi-core/core.h>
54 #include <avahi-core/publish.h>
55 #include <avahi-core/dns-srv-rr.h>
56 #include <avahi-core/log.h>
59 #include "simple-protocol.h"
60 #include "static-services.h"
61 #include "ini-file-parser.h"
64 #include "dbus-protocol.h"
67 AvahiServer *avahi_server = NULL;
79 AvahiServerConfig server_config;
80 DaemonCommand command;
85 int fail_on_missing_dbus;
87 int publish_resolv_conf;
88 char ** publish_dns_servers;
92 int rlimit_as_set, rlimit_core_set, rlimit_data_set, rlimit_fsize_set, rlimit_nofile_set, rlimit_stack_set;
93 rlim_t rlimit_as, rlimit_core, rlimit_data, rlimit_fsize, rlimit_nofile, rlimit_stack;
101 #define RESOLV_CONF "/etc/resolv.conf"
103 static AvahiSEntryGroup *dns_servers_entry_group = NULL;
104 static AvahiSEntryGroup *resolv_conf_entry_group = NULL;
106 static char **resolv_conf = NULL;
108 static DaemonConfig config;
110 static int has_prefix(const char *s, const char *prefix) {
115 return strlen(s) >= l && strncmp(s, prefix, l) == 0;
118 static int load_resolv_conf(const DaemonConfig *c) {
123 avahi_strfreev(resolv_conf);
126 if (!(f = fopen(RESOLV_CONF, "r"))) {
127 avahi_log_warn("Failed to open "RESOLV_CONF".");
131 resolv_conf = avahi_new0(char*, AVAHI_MAX_WIDE_AREA_SERVERS+1);
133 while (!feof(f) && i < AVAHI_MAX_WIDE_AREA_SERVERS) {
137 if (!(fgets(ln, sizeof(ln), f)))
140 ln[strcspn(ln, "\r\n#")] = 0;
141 p = ln + strspn(ln, "\t ");
143 if (has_prefix(p, "nameserver")) {
145 p += strspn(p, "\t ");
146 p[strcspn(p, "\t ")] = 0;
147 resolv_conf[i++] = avahi_strdup(p);
156 avahi_strfreev(resolv_conf);
166 static AvahiSEntryGroup* add_dns_servers(AvahiServer *s, AvahiSEntryGroup* g, char **l) {
173 g = avahi_s_entry_group_new(s, NULL, NULL);
175 assert(avahi_s_entry_group_is_empty(g));
177 for (p = l; *p; p++) {
180 if (!avahi_address_parse(*p, AVAHI_PROTO_UNSPEC, &a))
181 avahi_log_warn("Failed to parse address '%s', ignoring.", *p);
183 if (avahi_server_add_dns_server_address(s, g, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, NULL, AVAHI_DNS_SERVER_RESOLVE, &a, 53) < 0) {
184 avahi_s_entry_group_free(g);
185 avahi_log_error("Failed to add DNS server address: %s", avahi_strerror(avahi_server_errno(s)));
190 avahi_s_entry_group_commit(g);
195 static void remove_dns_server_entry_groups(void) {
197 if (resolv_conf_entry_group)
198 avahi_s_entry_group_reset(resolv_conf_entry_group);
200 if (dns_servers_entry_group)
201 avahi_s_entry_group_reset(dns_servers_entry_group);
204 static void update_wide_area_servers(void) {
205 AvahiAddress a[AVAHI_MAX_WIDE_AREA_SERVERS];
209 for (p = resolv_conf; *p && n < AVAHI_MAX_WIDE_AREA_SERVERS; p++) {
210 if (!avahi_address_parse(*p, AVAHI_PROTO_UNSPEC, &a[n]))
211 avahi_log_warn("Failed to parse address '%s', ignoring.", *p);
216 avahi_server_set_wide_area_servers(avahi_server, a, n);
220 static void server_callback(AvahiServer *s, AvahiServerState state, void *userdata) {
221 DaemonConfig *c = userdata;
226 /** This function is possibly called before the global variable
227 * avahi_server has been set, therefore we do it explicitly */
233 dbus_protocol_server_state_changed(state);
236 if (state == AVAHI_SERVER_RUNNING) {
237 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));
238 static_service_add_to_server();
240 remove_dns_server_entry_groups();
242 if (c->publish_resolv_conf && resolv_conf && resolv_conf[0])
243 resolv_conf_entry_group = add_dns_servers(s, resolv_conf_entry_group, resolv_conf);
245 if (c->publish_dns_servers && c->publish_dns_servers[0])
246 dns_servers_entry_group = add_dns_servers(s, dns_servers_entry_group, c->publish_dns_servers);
248 simple_protocol_restart_queries();
250 } else if (state == AVAHI_SERVER_COLLISION) {
253 static_service_remove_from_server();
255 remove_dns_server_entry_groups();
257 n = avahi_alternative_host_name(avahi_server_get_host_name(s));
258 avahi_log_warn("Host name conflict, retrying with <%s>", n);
259 avahi_server_set_host_name(s, n);
264 static void help(FILE *f, const char *argv0) {
267 " -h --help Show this help\n"
268 " -D --daemonize Daemonize after startup (implies -s)\n"
269 " -s --syslog Write log messages to syslog(3) instead of STDERR\n"
270 " -k --kill Kill a running daemon\n"
271 " -r --reload Request a running daemon to reload static services\n"
272 " -c --check Return 0 if a daemon is already running\n"
273 " -V --version Show version\n"
274 " -f --file=FILE Load the specified configuration file instead of\n"
275 " "AVAHI_CONFIG_FILE"\n"
276 " --no-rlimits Don't enforce resource limits\n"
277 " --no-drop-root Don't drop privileges\n"
278 " --debug Increase verbosity\n",
283 static int parse_command_line(DaemonConfig *c, int argc, char *argv[]) {
287 OPTION_NO_RLIMITS = 256,
292 static const struct option long_options[] = {
293 { "help", no_argument, NULL, 'h' },
294 { "daemonize", no_argument, NULL, 'D' },
295 { "kill", no_argument, NULL, 'k' },
296 { "version", no_argument, NULL, 'V' },
297 { "file", required_argument, NULL, 'f' },
298 { "reload", no_argument, NULL, 'r' },
299 { "check", no_argument, NULL, 'c' },
300 { "syslog", no_argument, NULL, 's' },
301 { "no-rlimits", no_argument, NULL, OPTION_NO_RLIMITS },
302 { "no-drop-root", no_argument, NULL, OPTION_NO_DROP_ROOT },
303 { "debug", no_argument, NULL, OPTION_DEBUG },
310 while ((o = getopt_long(argc, argv, "hDkVf:rcs", long_options, NULL)) >= 0) {
317 c->command = DAEMON_HELP;
323 c->command = DAEMON_KILL;
326 c->command = DAEMON_VERSION;
329 avahi_free(c->config_file);
330 c->config_file = avahi_strdup(optarg);
333 c->command = DAEMON_RELOAD;
336 c->command = DAEMON_CHECK;
338 case OPTION_NO_RLIMITS:
341 case OPTION_NO_DROP_ROOT:
348 fprintf(stderr, "Invalid command line argument: %c\n", o);
354 fprintf(stderr, "Too many arguments\n");
361 static int is_yes(const char *s) {
364 return *s == 'y' || *s == 'Y';
367 static int load_config_file(DaemonConfig *c) {
370 AvahiIniFileGroup *g;
374 if (!(f = avahi_ini_file_load(c->config_file ? c->config_file : AVAHI_CONFIG_FILE)))
377 for (g = f->groups; g; g = g->groups_next) {
379 if (strcasecmp(g->name, "server") == 0) {
382 for (p = g->pairs; p; p = p->pairs_next) {
384 if (strcasecmp(p->key, "host-name") == 0) {
385 avahi_free(c->server_config.host_name);
386 c->server_config.host_name = avahi_strdup(p->value);
387 } else if (strcasecmp(p->key, "domain-name") == 0) {
388 avahi_free(c->server_config.domain_name);
389 c->server_config.domain_name = avahi_strdup(p->value);
390 } else if (strcasecmp(p->key, "use-ipv4") == 0)
391 c->server_config.use_ipv4 = is_yes(p->value);
392 else if (strcasecmp(p->key, "use-ipv6") == 0)
393 c->server_config.use_ipv6 = is_yes(p->value);
394 else if (strcasecmp(p->key, "check-response-ttl") == 0)
395 c->server_config.check_response_ttl = is_yes(p->value);
396 else if (strcasecmp(p->key, "use-iff-running") == 0)
397 c->server_config.use_iff_running = is_yes(p->value);
398 else if (strcasecmp(p->key, "disallow-other-stacks") == 0)
399 c->server_config.disallow_other_stacks = is_yes(p->value);
400 else if (strcasecmp(p->key, "enable-dbus") == 0) {
402 if (*(p->value) == 'w' || *(p->value) == 'W') {
403 c->fail_on_missing_dbus = 0;
405 } else if (*(p->value) == 'y' || *(p->value) == 'Y') {
406 c->fail_on_missing_dbus = 1;
411 } else if (strcasecmp(p->key, "drop-root") == 0)
412 c->drop_root = is_yes(p->value);
413 else if (strcasecmp(p->key, "add-service-cookie") == 0)
414 c->server_config.add_service_cookie = is_yes(p->value);
416 avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
421 } else if (strcasecmp(g->name, "publish") == 0) {
424 for (p = g->pairs; p; p = p->pairs_next) {
426 if (strcasecmp(p->key, "publish-addresses") == 0)
427 c->server_config.publish_addresses = is_yes(p->value);
428 else if (strcasecmp(p->key, "publish-hinfo") == 0)
429 c->server_config.publish_hinfo = is_yes(p->value);
430 else if (strcasecmp(p->key, "publish-workstation") == 0)
431 c->server_config.publish_workstation = is_yes(p->value);
432 else if (strcasecmp(p->key, "publish-domain") == 0)
433 c->server_config.publish_domain = is_yes(p->value);
434 else if (strcasecmp(p->key, "publish-resolv-conf-dns-servers") == 0)
435 c->publish_resolv_conf = is_yes(p->value);
436 else if (strcasecmp(p->key, "publish-dns-servers") == 0) {
437 avahi_strfreev(c->publish_dns_servers);
438 c->publish_dns_servers = avahi_split_csv(p->value);
440 avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
445 } else if (strcasecmp(g->name, "wide-area") == 0) {
448 for (p = g->pairs; p; p = p->pairs_next) {
450 if (strcasecmp(p->key, "enable-wide-area") == 0)
451 c->server_config.enable_wide_area = is_yes(p->value);
453 avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
458 } else if (strcasecmp(g->name, "reflector") == 0) {
461 for (p = g->pairs; p; p = p->pairs_next) {
463 if (strcasecmp(p->key, "enable-reflector") == 0)
464 c->server_config.enable_reflector = is_yes(p->value);
465 else if (strcasecmp(p->key, "reflect-ipv") == 0)
466 c->server_config.reflect_ipv = is_yes(p->value);
468 avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
473 } else if (strcasecmp(g->name, "rlimits") == 0) {
476 for (p = g->pairs; p; p = p->pairs_next) {
478 if (strcasecmp(p->key, "rlimit-as") == 0) {
479 c->rlimit_as_set = 1;
480 c->rlimit_as = atoi(p->value);
481 } else if (strcasecmp(p->key, "rlimit-core") == 0) {
482 c->rlimit_core_set = 1;
483 c->rlimit_core = atoi(p->value);
484 } else if (strcasecmp(p->key, "rlimit-data") == 0) {
485 c->rlimit_data_set = 1;
486 c->rlimit_data = atoi(p->value);
487 } else if (strcasecmp(p->key, "rlimit-fsize") == 0) {
488 c->rlimit_fsize_set = 1;
489 c->rlimit_fsize = atoi(p->value);
490 } else if (strcasecmp(p->key, "rlimit-nofile") == 0) {
491 c->rlimit_nofile_set = 1;
492 c->rlimit_nofile = atoi(p->value);
493 } else if (strcasecmp(p->key, "rlimit-stack") == 0) {
494 c->rlimit_stack_set = 1;
495 c->rlimit_stack = atoi(p->value);
497 } else if (strcasecmp(p->key, "rlimit-nproc") == 0) {
498 c->rlimit_nproc_set = 1;
499 c->rlimit_nproc = atoi(p->value);
502 avahi_log_error("Invalid configuration key \"%s\" in group \"%s\"\n", p->key, g->name);
509 avahi_log_error("Invalid configuration file group \"%s\".\n", g->name);
519 avahi_ini_file_free(f);
524 static void log_function(AvahiLogLevel level, const char *txt) {
526 static const int log_level_map[] = {
534 assert(level < AVAHI_LOG_LEVEL_MAX);
537 if (!config.debug && level == AVAHI_LOG_DEBUG)
540 daemon_log(log_level_map[level], "%s", txt);
543 static void dump(const char *text, void* userdata) {
544 avahi_log_info("%s", text);
547 static void signal_callback(AvahiWatch *watch, int fd, AvahiWatchEvent event, void *userdata) {
549 AvahiSimplePoll *simple_poll_api = userdata;
550 const AvahiPoll *poll_api;
553 assert(simple_poll_api);
555 poll_api = avahi_simple_poll_get(simple_poll_api);
557 if ((sig = daemon_signal_next()) <= 0) {
558 avahi_log_error("daemon_signal_next() failed");
559 poll_api->watch_free(watch);
569 sig == SIGINT ? "SIGINT" :
570 (sig == SIGQUIT ? "SIGQUIT" : "SIGTERM"));
571 avahi_simple_poll_quit(simple_poll_api);
575 avahi_log_info("Got SIGHUP, reloading.");
576 static_service_load();
577 static_service_add_to_server();
579 if (resolv_conf_entry_group)
580 avahi_s_entry_group_reset(resolv_conf_entry_group);
582 load_resolv_conf(&config);
584 update_wide_area_servers();
586 if (config.publish_resolv_conf && resolv_conf && resolv_conf[0])
587 resolv_conf_entry_group = add_dns_servers(avahi_server, resolv_conf_entry_group, resolv_conf);
592 avahi_log_info("Got SIGUSR1, dumping record data.");
593 avahi_server_dump(avahi_server, dump, NULL);
597 avahi_log_warn("Got spurious signal, ignoring.");
602 static int run_server(DaemonConfig *c) {
605 AvahiSimplePoll *simple_poll_api;
606 const AvahiPoll *poll_api;
607 AvahiWatch *sig_watch;
611 if (!(simple_poll_api = avahi_simple_poll_new())) {
612 avahi_log_error("Failed to create main loop object.");
616 poll_api = avahi_simple_poll_get(simple_poll_api);
618 if (daemon_signal_init(SIGINT, SIGQUIT, SIGHUP, SIGTERM, SIGUSR1, 0) < 0) {
619 avahi_log_error("Could not register signal handlers (%s).", strerror(errno));
623 if (!(sig_watch = poll_api->watch_new(poll_api, daemon_signal_fd(), AVAHI_WATCH_IN, signal_callback, simple_poll_api))) {
624 avahi_log_error( "Failed to create signal watcher");
628 if (simple_protocol_setup(poll_api) < 0)
630 if (c->enable_dbus) {
632 if (dbus_protocol_setup(poll_api) < 0) {
634 if (c->fail_on_missing_dbus)
637 avahi_log_warn("WARNING: Failed to contact D-BUS daemon, disabling D-BUS support.");
641 avahi_log_warn("WARNING: We are configured to enable D-BUS but it was not compiled in.");
647 static_service_load();
649 if (!(avahi_server = avahi_server_new(poll_api, &c->server_config, server_callback, c, &error))) {
650 avahi_log_error("Failed to create server: %s", avahi_strerror(error));
654 update_wide_area_servers();
657 daemon_retval_send(0);
660 if ((r = avahi_simple_poll_iterate(simple_poll_api, -1)) < 0) {
662 /* We handle signals through an FD, so let's continue */
666 avahi_log_error("poll(): %s", strerror(errno));
676 static_service_remove_from_server();
677 static_service_free_all();
678 remove_dns_server_entry_groups();
680 simple_protocol_shutdown();
684 dbus_protocol_shutdown();
688 avahi_server_free(avahi_server);
690 daemon_signal_done();
693 poll_api->watch_free(sig_watch);
696 avahi_simple_poll_free(simple_poll_api);
698 if (r != 0 && c->daemonize)
699 daemon_retval_send(1);
704 #define set_env(key, value) putenv(avahi_strdup_printf("%s=%s", (key), (value)))
706 static int drop_root(void) {
711 if (!(pw = getpwnam(AVAHI_USER))) {
712 avahi_log_error( "Failed to find user '"AVAHI_USER"'.");
716 if (!(gr = getgrnam(AVAHI_GROUP))) {
717 avahi_log_error( "Failed to find group '"AVAHI_GROUP"'.");
721 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);
723 if (initgroups(AVAHI_USER, gr->gr_gid) != 0) {
724 avahi_log_error("Failed to change group list: %s", strerror(errno));
728 #if defined(HAVE_SETRESGID)
729 r = setresgid(gr->gr_gid, gr->gr_gid, gr->gr_gid);
730 #elif defined(HAVE_SETREGID)
731 r = setregid(gr->gr_gid, gr->gr_gid);
733 if ((r = setgid(gr->gr_gid)) >= 0)
734 r = setegid(gr->gr_gid);
738 avahi_log_error("Failed to change GID: %s", strerror(errno));
742 #if defined(HAVE_SETRESUID)
743 r = setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid);
744 #elif defined(HAVE_SETREUID)
745 r = setreuid(pw->pw_uid, pw->pw_uid);
747 if ((r = setuid(pw->pw_uid)) >= 0)
748 r = seteuid(pw->pw_uid);
752 avahi_log_error("Failed to change UID: %s", strerror(errno));
756 set_env("USER", pw->pw_name);
757 set_env("LOGNAME", pw->pw_name);
758 set_env("HOME", pw->pw_dir);
760 avahi_log_info("Successfully dropped root privileges.");
765 static const char* pid_file_proc(void) {
766 return AVAHI_DAEMON_RUNTIME_DIR"/pid";
769 static int make_runtime_dir(void) {
777 if (!(pw = getpwnam(AVAHI_USER))) {
778 avahi_log_error( "Failed to find user '"AVAHI_USER"'.");
782 if (!(gr = getgrnam(AVAHI_GROUP))) {
783 avahi_log_error( "Failed to find group '"AVAHI_GROUP"'.");
790 if (mkdir(AVAHI_DAEMON_RUNTIME_DIR, 0755) < 0 && errno != EEXIST) {
791 avahi_log_error("mkdir(\""AVAHI_DAEMON_RUNTIME_DIR"\"): %s", strerror(errno));
795 chown(AVAHI_DAEMON_RUNTIME_DIR, pw->pw_uid, gr->gr_gid);
797 if (stat(AVAHI_DAEMON_RUNTIME_DIR, &st) < 0) {
798 avahi_log_error("stat(): %s\n", strerror(errno));
802 if (!S_ISDIR(st.st_mode) || st.st_uid != pw->pw_uid || st.st_gid != gr->gr_gid) {
803 avahi_log_error("Failed to create runtime directory "AVAHI_DAEMON_RUNTIME_DIR".");
815 static void set_one_rlimit(int resource, rlim_t limit, const char *name) {
817 rl.rlim_cur = rl.rlim_max = limit;
819 if (setrlimit(resource, &rl) < 0)
820 avahi_log_warn("setrlimit(%s, {%u, %u}) failed: %s", name, (unsigned) limit, (unsigned) limit, strerror(errno));
823 static void enforce_rlimits(void) {
825 if (config.rlimit_as_set)
826 set_one_rlimit(RLIMIT_AS, config.rlimit_as, "RLIMIT_AS");
827 if (config.rlimit_core_set)
828 set_one_rlimit(RLIMIT_CORE, config.rlimit_core, "RLIMIT_CORE");
829 if (config.rlimit_data_set)
830 set_one_rlimit(RLIMIT_DATA, config.rlimit_data, "RLIMIT_DATA");
831 if (config.rlimit_fsize_set)
832 set_one_rlimit(RLIMIT_FSIZE, config.rlimit_fsize, "RLIMIT_FSIZE");
833 if (config.rlimit_nofile_set)
834 set_one_rlimit(RLIMIT_NOFILE, config.rlimit_nofile, "RLIMIT_NOFILE");
835 if (config.rlimit_stack_set)
836 set_one_rlimit(RLIMIT_STACK, config.rlimit_stack, "RLIMIT_STACK");
838 if (config.rlimit_nproc_set)
839 set_one_rlimit(RLIMIT_NPROC, config.rlimit_nproc, "RLIMIT_NPROC");
842 #ifdef RLIMIT_MEMLOCK
843 /* We don't need locked memory */
844 set_one_rlimit(RLIMIT_MEMLOCK, 0, "RLIMIT_MEMLOCK");
848 #define RANDOM_DEVICE "/dev/urandom"
850 static void init_rand_seed(void) {
854 /* Try to initialize seed from /dev/urandom, to make it a little
855 * less predictable, and to make sure that multiple machines
856 * booted at the same time choose different random seeds. */
857 if ((fd = open(RANDOM_DEVICE, O_RDONLY)) >= 0) {
858 read(fd, &seed, sizeof(seed));
862 /* If the initialization failed by some reason, we add the time to the seed*/
863 seed |= (unsigned) time(NULL);
868 int main(int argc, char *argv[]) {
871 int wrote_pid_file = 0;
873 avahi_set_log_function(log_function);
877 avahi_server_config_init(&config.server_config);
878 config.command = DAEMON_RUN;
879 config.daemonize = 0;
880 config.config_file = NULL;
882 config.enable_dbus = 1;
883 config.fail_on_missing_dbus = 1;
885 config.enable_dbus = 0;
886 config.fail_on_missing_dbus = 0;
888 config.drop_root = 1;
889 config.publish_dns_servers = NULL;
890 config.publish_resolv_conf = 0;
891 config.use_syslog = 0;
892 config.no_rlimits = 0;
895 config.rlimit_as_set = 0;
896 config.rlimit_core_set = 0;
897 config.rlimit_data_set = 0;
898 config.rlimit_fsize_set = 0;
899 config.rlimit_nofile_set = 0;
900 config.rlimit_stack_set = 0;
902 config.rlimit_nproc_set = 0;
905 if ((argv0 = strrchr(argv[0], '/')))
910 daemon_pid_file_ident = (const char *) argv0;
911 daemon_log_ident = (char*) argv0;
912 daemon_pid_file_proc = pid_file_proc;
914 if (parse_command_line(&config, argc, argv) < 0)
917 if (config.command == DAEMON_HELP) {
920 } else if (config.command == DAEMON_VERSION) {
921 printf("%s "PACKAGE_VERSION"\n", argv0);
923 } else if (config.command == DAEMON_KILL) {
924 if (daemon_pid_file_kill_wait(SIGTERM, 5) < 0) {
925 avahi_log_warn("Failed to kill daemon: %s", strerror(errno));
931 } else if (config.command == DAEMON_RELOAD) {
932 if (daemon_pid_file_kill(SIGHUP) < 0) {
933 avahi_log_warn("Failed to kill daemon: %s", strerror(errno));
939 } else if (config.command == DAEMON_CHECK)
940 r = (daemon_pid_file_is_running() >= 0) ? 0 : 1;
941 else if (config.command == DAEMON_RUN) {
944 if (getuid() != 0 && config.drop_root) {
945 avahi_log_error("This program is intended to be run as root.");
949 if ((pid = daemon_pid_file_is_running()) >= 0) {
950 avahi_log_error("Daemon already running on PID %u", pid);
954 if (load_config_file(&config) < 0)
957 if (config.daemonize) {
958 daemon_retval_init();
960 if ((pid = daemon_fork()) < 0)
966 if ((ret = daemon_retval_wait(20)) < 0) {
967 avahi_log_error("Could not recieve return value from daemon process.");
978 if (config.use_syslog || config.daemonize)
979 daemon_log_use = DAEMON_LOG_SYSLOG;
981 if (make_runtime_dir() < 0)
984 if (config.drop_root) {
989 if (daemon_pid_file_create() < 0) {
990 avahi_log_error("Failed to create PID file: %s", strerror(errno));
992 if (config.daemonize)
993 daemon_retval_send(1);
998 if (!config.no_rlimits)
1003 avahi_log_info("%s "PACKAGE_VERSION" starting up.", argv0);
1005 if (run_server(&config) == 0)
1011 if (config.daemonize)
1012 daemon_retval_done();
1014 avahi_server_config_free(&config.server_config);
1015 avahi_free(config.config_file);
1016 avahi_strfreev(config.publish_dns_servers);
1017 avahi_strfreev(resolv_conf);
1020 daemon_pid_file_remove();