]> code.delx.au - pulseaudio/blob - src/daemon/main.c
remaining s/assert/pa_assert/ and refcnt.h modernizations
[pulseaudio] / src / daemon / main.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 Copyright 2004-2006 Lennart Poettering
7 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
8
9 PulseAudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
13
14 PulseAudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with PulseAudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #endif
28
29 #include <unistd.h>
30 #include <errno.h>
31 #include <string.h>
32 #include <stdlib.h>
33 #include <stdio.h>
34 #include <signal.h>
35 #include <stddef.h>
36 #include <ltdl.h>
37 #include <limits.h>
38 #include <fcntl.h>
39 #include <unistd.h>
40 #include <locale.h>
41 #include <sys/types.h>
42
43 #include <liboil/liboil.h>
44
45 #ifdef HAVE_SYS_IOCTL_H
46 #include <sys/ioctl.h>
47 #endif
48
49 #ifdef HAVE_PWD_H
50 #include <pwd.h>
51 #endif
52 #ifdef HAVE_GRP_H
53 #include <grp.h>
54 #endif
55
56 #ifdef HAVE_LIBWRAP
57 #include <syslog.h>
58 #include <tcpd.h>
59 #endif
60
61 #include "../pulsecore/winsock.h"
62
63 #include <pulse/mainloop.h>
64 #include <pulse/mainloop-signal.h>
65 #include <pulse/timeval.h>
66 #include <pulse/xmalloc.h>
67
68 #include <pulsecore/core-error.h>
69 #include <pulsecore/core.h>
70 #include <pulsecore/memblock.h>
71 #include <pulsecore/module.h>
72 #include <pulsecore/cli-command.h>
73 #include <pulsecore/log.h>
74 #include <pulsecore/core-util.h>
75 #include <pulsecore/sioman.h>
76 #include <pulsecore/cli-text.h>
77 #include <pulsecore/pid.h>
78 #include <pulsecore/namereg.h>
79 #include <pulsecore/random.h>
80 #include <pulsecore/rtsig.h>
81 #include <pulsecore/rtclock.h>
82 #include <pulsecore/macro.h>
83 #include <pulsecore/mutex.h>
84 #include <pulsecore/thread.h>
85 #include <pulsecore/once.h>
86
87 #include "cmdline.h"
88 #include "cpulimit.h"
89 #include "daemon-conf.h"
90 #include "dumpmodules.h"
91 #include "caps.h"
92
93 #ifdef HAVE_LIBWRAP
94 /* Only one instance of these variables */
95 int allow_severity = LOG_INFO;
96 int deny_severity = LOG_WARNING;
97 #endif
98
99 #ifdef HAVE_OSS
100 /* padsp looks for this symbol in the running process and disables
101 * itself if it finds it and it is set to 7 (which is actually a bit
102 * mask). For details see padsp. */
103 int __padsp_disabled__ = 7;
104 #endif
105
106 #ifdef OS_IS_WIN32
107
108 static void message_cb(pa_mainloop_api*a, pa_time_event*e, PA_GCC_UNUSED const struct timeval *tv, void *userdata) {
109 MSG msg;
110 struct timeval tvnext;
111
112 while(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
113 if (msg.message == WM_QUIT)
114 raise(SIGTERM);
115 else {
116 TranslateMessage(&msg);
117 DispatchMessage(&msg);
118 }
119 }
120
121 pa_timeval_add(pa_gettimeofday(&tvnext), 100000);
122 a->time_restart(e, &tvnext);
123 }
124
125 #endif
126
127 static void signal_callback(pa_mainloop_api*m, PA_GCC_UNUSED pa_signal_event *e, int sig, void *userdata) {
128 pa_log_info("Got signal %s.", pa_strsignal(sig));
129
130 switch (sig) {
131 #ifdef SIGUSR1
132 case SIGUSR1:
133 pa_module_load(userdata, "module-cli", NULL);
134 break;
135 #endif
136
137 #ifdef SIGUSR2
138 case SIGUSR2:
139 pa_module_load(userdata, "module-cli-protocol-unix", NULL);
140 break;
141 #endif
142
143 #ifdef SIGHUP
144 case SIGHUP: {
145 char *c = pa_full_status_string(userdata);
146 pa_log_notice("%s", c);
147 pa_xfree(c);
148 return;
149 }
150 #endif
151
152 case SIGINT:
153 case SIGTERM:
154 default:
155 pa_log_info("Exiting.");
156 m->quit(m, 1);
157 break;
158 }
159 }
160
161 static void close_pipe(int p[2]) {
162 if (p[0] != -1)
163 close(p[0]);
164 if (p[1] != -1)
165 close(p[1]);
166 p[0] = p[1] = -1;
167 }
168
169 #define set_env(key, value) putenv(pa_sprintf_malloc("%s=%s", (key), (value)))
170
171 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
172
173 static int change_user(void) {
174 struct passwd *pw;
175 struct group * gr;
176 int r;
177
178 /* This function is called only in system-wide mode. It creates a
179 * runtime dir in /var/run/ with proper UID/GID and drops privs
180 * afterwards. */
181
182 if (!(pw = getpwnam(PA_SYSTEM_USER))) {
183 pa_log("Failed to find user '%s'.", PA_SYSTEM_USER);
184 return -1;
185 }
186
187 if (!(gr = getgrnam(PA_SYSTEM_GROUP))) {
188 pa_log("Failed to find group '%s'.", PA_SYSTEM_GROUP);
189 return -1;
190 }
191
192 pa_log_info("Found user '%s' (UID %lu) and group '%s' (GID %lu).",
193 PA_SYSTEM_USER, (unsigned long) pw->pw_uid,
194 PA_SYSTEM_GROUP, (unsigned long) gr->gr_gid);
195
196 if (pw->pw_gid != gr->gr_gid) {
197 pa_log("GID of user '%s' and of group '%s' don't match.", PA_SYSTEM_USER, PA_SYSTEM_GROUP);
198 return -1;
199 }
200
201 if (strcmp(pw->pw_dir, PA_SYSTEM_RUNTIME_PATH) != 0)
202 pa_log_warn("Warning: home directory of user '%s' is not '%s', ignoring.", PA_SYSTEM_USER, PA_SYSTEM_RUNTIME_PATH);
203
204 if (pa_make_secure_dir(PA_SYSTEM_RUNTIME_PATH, 0755, pw->pw_uid, gr->gr_gid) < 0) {
205 pa_log("Failed to create '%s': %s", PA_SYSTEM_RUNTIME_PATH, pa_cstrerror(errno));
206 return -1;
207 }
208
209 if (initgroups(PA_SYSTEM_USER, gr->gr_gid) != 0) {
210 pa_log("Failed to change group list: %s", pa_cstrerror(errno));
211 return -1;
212 }
213
214 #if defined(HAVE_SETRESGID)
215 r = setresgid(gr->gr_gid, gr->gr_gid, gr->gr_gid);
216 #elif defined(HAVE_SETEGID)
217 if ((r = setgid(gr->gr_gid)) >= 0)
218 r = setegid(gr->gr_gid);
219 #elif defined(HAVE_SETREGID)
220 r = setregid(gr->gr_gid, gr->gr_gid);
221 #else
222 #error "No API to drop priviliges"
223 #endif
224
225 if (r < 0) {
226 pa_log("Failed to change GID: %s", pa_cstrerror(errno));
227 return -1;
228 }
229
230 #if defined(HAVE_SETRESUID)
231 r = setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid);
232 #elif defined(HAVE_SETEUID)
233 if ((r = setuid(pw->pw_uid)) >= 0)
234 r = seteuid(pw->pw_uid);
235 #elif defined(HAVE_SETREUID)
236 r = setreuid(pw->pw_uid, pw->pw_uid);
237 #else
238 #error "No API to drop priviliges"
239 #endif
240
241 if (r < 0) {
242 pa_log("Failed to change UID: %s", pa_cstrerror(errno));
243 return -1;
244 }
245
246 set_env("USER", PA_SYSTEM_USER);
247 set_env("LOGNAME", PA_SYSTEM_GROUP);
248 set_env("HOME", PA_SYSTEM_RUNTIME_PATH);
249
250 /* Relevant for pa_runtime_path() */
251 set_env("PULSE_RUNTIME_PATH", PA_SYSTEM_RUNTIME_PATH);
252 set_env("PULSE_CONFIG_PATH", PA_SYSTEM_RUNTIME_PATH);
253
254 pa_log_info("Successfully dropped root privileges.");
255
256 return 0;
257 }
258
259 #else /* HAVE_PWD_H && HAVE_GRP_H */
260
261 static int change_user(void) {
262 pa_log("System wide mode unsupported on this platform.");
263 return -1;
264 }
265
266 #endif /* HAVE_PWD_H && HAVE_GRP_H */
267
268 static int create_runtime_dir(void) {
269 char fn[PATH_MAX];
270
271 pa_runtime_path(NULL, fn, sizeof(fn));
272
273 /* This function is called only when the daemon is started in
274 * per-user mode. We create the runtime directory somewhere in
275 * /tmp/ with the current UID/GID */
276
277 if (pa_make_secure_dir(fn, 0700, (uid_t)-1, (gid_t)-1) < 0) {
278 pa_log("Failed to create '%s': %s", fn, pa_cstrerror(errno));
279 return -1;
280 }
281
282 return 0;
283 }
284
285 #ifdef HAVE_SYS_RESOURCE_H
286
287 static void set_one_rlimit(const pa_rlimit *r, int resource, const char *name) {
288 struct rlimit rl;
289 pa_assert(r);
290
291 if (!r->is_set)
292 return;
293
294 rl.rlim_cur = rl.rlim_max = r->value;
295
296 if (setrlimit(resource, &rl) < 0)
297 pa_log_warn("setrlimit(%s, (%u, %u)) failed: %s", name, (unsigned) r->value, (unsigned) r->value, pa_cstrerror(errno));
298 }
299
300 static void set_all_rlimits(const pa_daemon_conf *conf) {
301 set_one_rlimit(&conf->rlimit_as, RLIMIT_AS, "RLIMIT_AS");
302 set_one_rlimit(&conf->rlimit_core, RLIMIT_CORE, "RLIMIT_CORE");
303 set_one_rlimit(&conf->rlimit_data, RLIMIT_DATA, "RLIMIT_DATA");
304 set_one_rlimit(&conf->rlimit_fsize, RLIMIT_FSIZE, "RLIMIT_FSIZE");
305 set_one_rlimit(&conf->rlimit_nofile, RLIMIT_NOFILE, "RLIMIT_NOFILE");
306 set_one_rlimit(&conf->rlimit_stack, RLIMIT_STACK, "RLIMIT_STACK");
307 #ifdef RLIMIT_NPROC
308 set_one_rlimit(&conf->rlimit_nproc, RLIMIT_NPROC, "RLIMIT_NPROC");
309 #endif
310 #ifdef RLIMIT_MEMLOCK
311 set_one_rlimit(&conf->rlimit_memlock, RLIMIT_MEMLOCK, "RLIMIT_MEMLOCK");
312 #endif
313 }
314 #endif
315
316 static pa_mutex *libtool_mutex = NULL;
317
318 static void libtool_lock(void) {
319 pa_mutex_lock(libtool_mutex);
320 }
321
322 static void libtool_unlock(void) {
323 pa_mutex_unlock(libtool_mutex);
324 }
325
326 PA_STATIC_TLS_DECLARE_NO_FREE(libtool_tls);
327
328 static void libtool_set_error(const char * error) {
329 PA_STATIC_TLS_SET(libtool_tls, (char*) error);
330 }
331
332 static const char *libtool_get_error(void) {
333 return PA_STATIC_TLS_GET(libtool_tls);
334 }
335
336 static void libtool_init(void) {
337 pa_assert_se(libtool_mutex = pa_mutex_new(1));
338 pa_assert_se(lt_dlmutex_register(libtool_lock, libtool_unlock, libtool_set_error, libtool_get_error) == 0);
339 pa_assert_se(lt_dlinit() == 0);
340 }
341
342 static void libtool_done(void) {
343 pa_assert_se(lt_dlexit() == 0);
344 pa_mutex_free(libtool_mutex);
345 libtool_mutex = NULL;
346 }
347
348 int main(int argc, char *argv[]) {
349 pa_core *c = NULL;
350 pa_strbuf *buf = NULL;
351 pa_daemon_conf *conf = NULL;
352 pa_mainloop *mainloop = NULL;
353
354 char *s;
355 int r, retval = 1, d = 0;
356 int daemon_pipe[2] = { -1, -1 };
357 int suid_root, real_root;
358 int valid_pid_file = 0;
359
360 gid_t gid = (gid_t) -1;
361
362 #ifdef OS_IS_WIN32
363 pa_time_event *timer;
364 struct timeval tv;
365 #endif
366
367 #ifdef HAVE_GETUID
368 real_root = getuid() == 0;
369 suid_root = !real_root && geteuid() == 0;
370 #else
371 real_root = 0;
372 suid_root = 0;
373 #endif
374
375 if (suid_root) {
376 /* Drop all capabilities except CAP_SYS_NICE */
377 pa_limit_caps();
378
379 /* Drop priviliges, but keep CAP_SYS_NICE */
380 pa_drop_root();
381
382 /* After dropping root, the effective set is reset, hence,
383 * let's raise it again */
384 pa_limit_caps();
385
386 /* When capabilities are not supported we will not be able to
387 * aquire RT sched anymore. But yes, that's the way it is. It
388 * is just too risky tun let PA run as root all the time. */
389 }
390
391 setlocale(LC_ALL, "");
392
393 if (suid_root && (pa_own_uid_in_group(PA_REALTIME_GROUP, &gid) <= 0)) {
394 pa_log_info("Warning: Called SUID root, but not in group '"PA_REALTIME_GROUP"'. "
395 "For enabling real-time scheduling please become a member of '"PA_REALTIME_GROUP"' , or increase the RLIMIT_RTPRIO user limit.");
396 pa_drop_caps();
397 pa_drop_root();
398 suid_root = real_root = 0;
399 }
400
401 LTDL_SET_PRELOADED_SYMBOLS();
402
403 libtool_init();
404
405 #ifdef OS_IS_WIN32
406 {
407 WSADATA data;
408 WSAStartup(MAKEWORD(2, 0), &data);
409 }
410 #endif
411
412 pa_random_seed();
413
414 pa_log_set_ident("pulseaudio");
415
416 conf = pa_daemon_conf_new();
417
418 if (pa_daemon_conf_load(conf, NULL) < 0)
419 goto finish;
420
421 if (pa_daemon_conf_env(conf) < 0)
422 goto finish;
423
424 if (pa_cmdline_parse(conf, argc, argv, &d) < 0) {
425 pa_log("failed to parse command line.");
426 goto finish;
427 }
428
429 pa_log_set_maximal_level(conf->log_level);
430 pa_log_set_target(conf->auto_log_target ? PA_LOG_STDERR : conf->log_target, NULL);
431
432 if (conf->high_priority && conf->cmd == PA_CMD_DAEMON)
433 pa_raise_priority();
434
435 if (suid_root && (conf->cmd != PA_CMD_DAEMON || !conf->high_priority)) {
436 pa_drop_caps();
437 pa_drop_root();
438 }
439
440 if (conf->dl_search_path)
441 lt_dlsetsearchpath(conf->dl_search_path);
442
443 switch (conf->cmd) {
444 case PA_CMD_DUMP_MODULES:
445 pa_dump_modules(conf, argc-d, argv+d);
446 retval = 0;
447 goto finish;
448
449 case PA_CMD_DUMP_CONF: {
450 s = pa_daemon_conf_dump(conf);
451 fputs(s, stdout);
452 pa_xfree(s);
453 retval = 0;
454 goto finish;
455 }
456
457 case PA_CMD_DUMP_RESAMPLE_METHODS: {
458 int i;
459
460 for (i = 0; i < PA_RESAMPLER_MAX; i++)
461 if (pa_resample_method_supported(i))
462 printf("%s\n", pa_resample_method_to_string(i));
463
464 goto finish;
465 }
466
467 case PA_CMD_HELP :
468 pa_cmdline_help(argv[0]);
469 retval = 0;
470 goto finish;
471
472 case PA_CMD_VERSION :
473 printf(PACKAGE_NAME" "PACKAGE_VERSION"\n");
474 retval = 0;
475 goto finish;
476
477 case PA_CMD_CHECK: {
478 pid_t pid;
479
480 if (pa_pid_file_check_running(&pid) < 0) {
481 pa_log_info("daemon not running");
482 } else {
483 pa_log_info("daemon running as PID %u", pid);
484 retval = 0;
485 }
486
487 goto finish;
488
489 }
490 case PA_CMD_KILL:
491
492 if (pa_pid_file_kill(SIGINT, NULL) < 0)
493 pa_log("failed to kill daemon.");
494 else
495 retval = 0;
496
497 goto finish;
498
499 default:
500 pa_assert(conf->cmd == PA_CMD_DAEMON);
501 }
502
503 if (real_root && !conf->system_instance) {
504 pa_log_warn("This program is not intended to be run as root (unless --system is specified).");
505 } else if (!real_root && conf->system_instance) {
506 pa_log("Root priviliges required.");
507 goto finish;
508 }
509
510 if (conf->daemonize) {
511 pid_t child;
512 int tty_fd;
513
514 if (pa_stdio_acquire() < 0) {
515 pa_log("failed to acquire stdio.");
516 goto finish;
517 }
518
519 #ifdef HAVE_FORK
520 if (pipe(daemon_pipe) < 0) {
521 pa_log("failed to create pipe.");
522 goto finish;
523 }
524
525 if ((child = fork()) < 0) {
526 pa_log("fork() failed: %s", pa_cstrerror(errno));
527 goto finish;
528 }
529
530 if (child != 0) {
531 /* Father */
532
533 close(daemon_pipe[1]);
534 daemon_pipe[1] = -1;
535
536 if (pa_loop_read(daemon_pipe[0], &retval, sizeof(retval), NULL) != sizeof(retval)) {
537 pa_log("read() failed: %s", pa_cstrerror(errno));
538 retval = 1;
539 }
540
541 if (retval)
542 pa_log("daemon startup failed.");
543 else
544 pa_log_info("daemon startup successful.");
545
546 goto finish;
547 }
548
549 close(daemon_pipe[0]);
550 daemon_pipe[0] = -1;
551 #endif
552
553 if (conf->auto_log_target)
554 pa_log_set_target(PA_LOG_SYSLOG, NULL);
555
556 #ifdef HAVE_SETSID
557 setsid();
558 #endif
559 #ifdef HAVE_SETPGID
560 setpgid(0,0);
561 #endif
562
563 #ifndef OS_IS_WIN32
564 close(0);
565 close(1);
566 close(2);
567
568 open("/dev/null", O_RDONLY);
569 open("/dev/null", O_WRONLY);
570 open("/dev/null", O_WRONLY);
571 #else
572 FreeConsole();
573 #endif
574
575 #ifdef SIGTTOU
576 signal(SIGTTOU, SIG_IGN);
577 #endif
578 #ifdef SIGTTIN
579 signal(SIGTTIN, SIG_IGN);
580 #endif
581 #ifdef SIGTSTP
582 signal(SIGTSTP, SIG_IGN);
583 #endif
584
585 #ifdef TIOCNOTTY
586 if ((tty_fd = open("/dev/tty", O_RDWR)) >= 0) {
587 ioctl(tty_fd, TIOCNOTTY, (char*) 0);
588 close(tty_fd);
589 }
590 #endif
591 }
592
593 pa_assert_se(chdir("/") == 0);
594 umask(0022);
595
596 if (conf->system_instance) {
597 if (change_user() < 0)
598 goto finish;
599 } else if (create_runtime_dir() < 0)
600 goto finish;
601
602 if (conf->use_pid_file) {
603 if (pa_pid_file_create() < 0) {
604 pa_log("pa_pid_file_create() failed.");
605 #ifdef HAVE_FORK
606 if (conf->daemonize)
607 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
608 #endif
609 goto finish;
610 }
611
612 valid_pid_file = 1;
613 }
614
615 #ifdef HAVE_SYS_RESOURCE_H
616 set_all_rlimits(conf);
617 #endif
618
619 #ifdef SIGPIPE
620 signal(SIGPIPE, SIG_IGN);
621 #endif
622
623 pa_log_info("Page size is %lu bytes", (unsigned long) PA_PAGE_SIZE);
624
625 if (pa_rtclock_hrtimer())
626 pa_log_info("Fresh high-resolution timers available! Bon appetit!");
627 else
628 pa_log_info("Dude, your kernel stinks! The chef's recommendation today is Linux with high-resolution timers enabled!");
629
630 pa_rtsig_configure(SIGRTMIN+10, SIGRTMAX);
631
632 pa_assert_se(mainloop = pa_mainloop_new());
633
634 if (!(c = pa_core_new(pa_mainloop_get_api(mainloop), !conf->disable_shm))) {
635 pa_log("pa_core_new() failed.");
636 goto finish;
637 }
638
639 c->is_system_instance = !!conf->system_instance;
640 c->high_priority = !!conf->high_priority;
641 c->default_sample_spec = conf->default_sample_spec;
642 c->default_n_fragments = conf->default_n_fragments;
643 c->default_fragment_size_msec = conf->default_fragment_size_msec;
644 c->disallow_module_loading = conf->disallow_module_loading;
645 c->exit_idle_time = conf->exit_idle_time;
646 c->module_idle_time = conf->module_idle_time;
647 c->scache_idle_time = conf->scache_idle_time;
648 c->resample_method = conf->resample_method;
649
650 pa_assert_se(pa_signal_init(pa_mainloop_get_api(mainloop)) == 0);
651 pa_signal_new(SIGINT, signal_callback, c);
652 pa_signal_new(SIGTERM, signal_callback, c);
653
654 #ifdef SIGUSR1
655 pa_signal_new(SIGUSR1, signal_callback, c);
656 #endif
657 #ifdef SIGUSR2
658 pa_signal_new(SIGUSR2, signal_callback, c);
659 #endif
660 #ifdef SIGHUP
661 pa_signal_new(SIGHUP, signal_callback, c);
662 #endif
663
664 #ifdef OS_IS_WIN32
665 pa_assert_se(timer = pa_mainloop_get_api(mainloop)->time_new(pa_mainloop_get_api(mainloop), pa_gettimeofday(&tv), message_cb, NULL));
666 #endif
667
668 if (conf->daemonize)
669 c->running_as_daemon = 1;
670
671 oil_init();
672
673 if (!conf->no_cpu_limit)
674 pa_assert_se(pa_cpu_limit_init(pa_mainloop_get_api(mainloop)) == 0);
675
676 buf = pa_strbuf_new();
677 if (conf->default_script_file)
678 r = pa_cli_command_execute_file(c, conf->default_script_file, buf, &conf->fail);
679
680 if (r >= 0)
681 r = pa_cli_command_execute(c, conf->script_commands, buf, &conf->fail);
682 pa_log_error("%s", s = pa_strbuf_tostring_free(buf));
683 pa_xfree(s);
684
685 if (r < 0 && conf->fail) {
686 pa_log("failed to initialize daemon.");
687 #ifdef HAVE_FORK
688 if (conf->daemonize)
689 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
690 #endif
691 } else if (!c->modules || pa_idxset_size(c->modules) == 0) {
692 pa_log("daemon startup without any loaded modules, refusing to work.");
693 #ifdef HAVE_FORK
694 if (conf->daemonize)
695 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
696 #endif
697 } else {
698
699 retval = 0;
700 #ifdef HAVE_FORK
701 if (conf->daemonize)
702 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
703 #endif
704
705 if (c->default_sink_name &&
706 pa_namereg_get(c, c->default_sink_name, PA_NAMEREG_SINK, 1) == NULL) {
707 pa_log_error("%s : Fatal error. Default sink name (%s) does not exist in name register.", __FILE__, c->default_sink_name);
708 retval = 1;
709 } else {
710 pa_log_info("Daemon startup complete.");
711 if (pa_mainloop_run(mainloop, &retval) < 0)
712 retval = 1;
713 pa_log_info("Daemon shutdown initiated.");
714 }
715 }
716
717 #ifdef OS_IS_WIN32
718 pa_mainloop_get_api(mainloop)->time_free(timer);
719 #endif
720
721 pa_core_unref(c);
722
723 if (!conf->no_cpu_limit)
724 pa_cpu_limit_done();
725
726 pa_signal_done();
727
728 pa_log_info("Daemon terminated.");
729
730 finish:
731
732 if (mainloop)
733 pa_mainloop_free(mainloop);
734
735 if (conf)
736 pa_daemon_conf_free(conf);
737
738 if (valid_pid_file)
739 pa_pid_file_remove();
740
741 close_pipe(daemon_pipe);
742
743 #ifdef OS_IS_WIN32
744 WSACleanup();
745 #endif
746
747 libtool_done();
748
749 return retval;
750 }