]> code.delx.au - pulseaudio/blob - src/daemon/main.c
drop initial libtool_lock() call since this is a debian-specific borkage
[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 <assert.h>
37 #include <ltdl.h>
38 #include <limits.h>
39 #include <fcntl.h>
40 #include <unistd.h>
41 #include <locale.h>
42 #include <sys/types.h>
43
44 #include <liboil/liboil.h>
45
46 #ifdef HAVE_SYS_IOCTL_H
47 #include <sys/ioctl.h>
48 #endif
49
50 #ifdef HAVE_PWD_H
51 #include <pwd.h>
52 #endif
53 #ifdef HAVE_GRP_H
54 #include <grp.h>
55 #endif
56
57 #ifdef HAVE_LIBWRAP
58 #include <syslog.h>
59 #include <tcpd.h>
60 #endif
61
62 #include "../pulsecore/winsock.h"
63
64 #include <pulse/mainloop.h>
65 #include <pulse/mainloop-signal.h>
66 #include <pulse/timeval.h>
67 #include <pulse/xmalloc.h>
68
69 #include <pulsecore/core-error.h>
70 #include <pulsecore/core.h>
71 #include <pulsecore/memblock.h>
72 #include <pulsecore/module.h>
73 #include <pulsecore/cli-command.h>
74 #include <pulsecore/log.h>
75 #include <pulsecore/core-util.h>
76 #include <pulsecore/sioman.h>
77 #include <pulsecore/cli-text.h>
78 #include <pulsecore/pid.h>
79 #include <pulsecore/namereg.h>
80 #include <pulsecore/random.h>
81 #include <pulsecore/rtsig.h>
82 #include <pulsecore/rtclock.h>
83 #include <pulsecore/macro.h>
84 #include <pulsecore/mutex.h>
85 #include <pulsecore/thread.h>
86 #include <pulsecore/once.h>
87
88 #include "cmdline.h"
89 #include "cpulimit.h"
90 #include "daemon-conf.h"
91 #include "dumpmodules.h"
92 #include "caps.h"
93
94 #ifdef HAVE_LIBWRAP
95 /* Only one instance of these variables */
96 int allow_severity = LOG_INFO;
97 int deny_severity = LOG_WARNING;
98 #endif
99
100 #ifdef HAVE_OSS
101 /* padsp looks for this symbol in the running process and disables
102 * itself if it finds it and it is set to 7 (which is actually a bit
103 * mask). For details see padsp. */
104 int __padsp_disabled__ = 7;
105 #endif
106
107 #ifdef OS_IS_WIN32
108
109 static void message_cb(pa_mainloop_api*a, pa_time_event*e, PA_GCC_UNUSED const struct timeval *tv, void *userdata) {
110 MSG msg;
111 struct timeval tvnext;
112
113 while(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
114 if (msg.message == WM_QUIT)
115 raise(SIGTERM);
116 else {
117 TranslateMessage(&msg);
118 DispatchMessage(&msg);
119 }
120 }
121
122 pa_timeval_add(pa_gettimeofday(&tvnext), 100000);
123 a->time_restart(e, &tvnext);
124 }
125
126 #endif
127
128 static void signal_callback(pa_mainloop_api*m, PA_GCC_UNUSED pa_signal_event *e, int sig, void *userdata) {
129 pa_log_info("Got signal %s.", pa_strsignal(sig));
130
131 switch (sig) {
132 #ifdef SIGUSR1
133 case SIGUSR1:
134 pa_module_load(userdata, "module-cli", NULL);
135 break;
136 #endif
137
138 #ifdef SIGUSR2
139 case SIGUSR2:
140 pa_module_load(userdata, "module-cli-protocol-unix", NULL);
141 break;
142 #endif
143
144 #ifdef SIGHUP
145 case SIGHUP: {
146 char *c = pa_full_status_string(userdata);
147 pa_log_notice("%s", c);
148 pa_xfree(c);
149 return;
150 }
151 #endif
152
153 case SIGINT:
154 case SIGTERM:
155 default:
156 pa_log_info("Exiting.");
157 m->quit(m, 1);
158 break;
159 }
160 }
161
162 static void close_pipe(int p[2]) {
163 if (p[0] != -1)
164 close(p[0]);
165 if (p[1] != -1)
166 close(p[1]);
167 p[0] = p[1] = -1;
168 }
169
170 #define set_env(key, value) putenv(pa_sprintf_malloc("%s=%s", (key), (value)))
171
172 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
173
174 static int change_user(void) {
175 struct passwd *pw;
176 struct group * gr;
177 int r;
178
179 /* This function is called only in system-wide mode. It creates a
180 * runtime dir in /var/run/ with proper UID/GID and drops privs
181 * afterwards. */
182
183 if (!(pw = getpwnam(PA_SYSTEM_USER))) {
184 pa_log("Failed to find user '%s'.", PA_SYSTEM_USER);
185 return -1;
186 }
187
188 if (!(gr = getgrnam(PA_SYSTEM_GROUP))) {
189 pa_log("Failed to find group '%s'.", PA_SYSTEM_GROUP);
190 return -1;
191 }
192
193 pa_log_info("Found user '%s' (UID %lu) and group '%s' (GID %lu).",
194 PA_SYSTEM_USER, (unsigned long) pw->pw_uid,
195 PA_SYSTEM_GROUP, (unsigned long) gr->gr_gid);
196
197 if (pw->pw_gid != gr->gr_gid) {
198 pa_log("GID of user '%s' and of group '%s' don't match.", PA_SYSTEM_USER, PA_SYSTEM_GROUP);
199 return -1;
200 }
201
202 if (strcmp(pw->pw_dir, PA_SYSTEM_RUNTIME_PATH) != 0)
203 pa_log_warn("Warning: home directory of user '%s' is not '%s', ignoring.", PA_SYSTEM_USER, PA_SYSTEM_RUNTIME_PATH);
204
205 if (pa_make_secure_dir(PA_SYSTEM_RUNTIME_PATH, 0755, pw->pw_uid, gr->gr_gid) < 0) {
206 pa_log("Failed to create '%s': %s", PA_SYSTEM_RUNTIME_PATH, pa_cstrerror(errno));
207 return -1;
208 }
209
210 if (initgroups(PA_SYSTEM_USER, gr->gr_gid) != 0) {
211 pa_log("Failed to change group list: %s", pa_cstrerror(errno));
212 return -1;
213 }
214
215 #if defined(HAVE_SETRESGID)
216 r = setresgid(gr->gr_gid, gr->gr_gid, gr->gr_gid);
217 #elif defined(HAVE_SETEGID)
218 if ((r = setgid(gr->gr_gid)) >= 0)
219 r = setegid(gr->gr_gid);
220 #elif defined(HAVE_SETREGID)
221 r = setregid(gr->gr_gid, gr->gr_gid);
222 #else
223 #error "No API to drop priviliges"
224 #endif
225
226 if (r < 0) {
227 pa_log("Failed to change GID: %s", pa_cstrerror(errno));
228 return -1;
229 }
230
231 #if defined(HAVE_SETRESUID)
232 r = setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid);
233 #elif defined(HAVE_SETEUID)
234 if ((r = setuid(pw->pw_uid)) >= 0)
235 r = seteuid(pw->pw_uid);
236 #elif defined(HAVE_SETREUID)
237 r = setreuid(pw->pw_uid, pw->pw_uid);
238 #else
239 #error "No API to drop priviliges"
240 #endif
241
242 if (r < 0) {
243 pa_log("Failed to change UID: %s", pa_cstrerror(errno));
244 return -1;
245 }
246
247 set_env("USER", PA_SYSTEM_USER);
248 set_env("LOGNAME", PA_SYSTEM_GROUP);
249 set_env("HOME", PA_SYSTEM_RUNTIME_PATH);
250
251 /* Relevant for pa_runtime_path() */
252 set_env("PULSE_RUNTIME_PATH", PA_SYSTEM_RUNTIME_PATH);
253 set_env("PULSE_CONFIG_PATH", PA_SYSTEM_RUNTIME_PATH);
254
255 pa_log_info("Successfully dropped root privileges.");
256
257 return 0;
258 }
259
260 #else /* HAVE_PWD_H && HAVE_GRP_H */
261
262 static int change_user(void) {
263 pa_log("System wide mode unsupported on this platform.");
264 return -1;
265 }
266
267 #endif /* HAVE_PWD_H && HAVE_GRP_H */
268
269 static int create_runtime_dir(void) {
270 char fn[PATH_MAX];
271
272 pa_runtime_path(NULL, fn, sizeof(fn));
273
274 /* This function is called only when the daemon is started in
275 * per-user mode. We create the runtime directory somewhere in
276 * /tmp/ with the current UID/GID */
277
278 if (pa_make_secure_dir(fn, 0700, (uid_t)-1, (gid_t)-1) < 0) {
279 pa_log("Failed to create '%s': %s", fn, pa_cstrerror(errno));
280 return -1;
281 }
282
283 return 0;
284 }
285
286 #ifdef HAVE_SYS_RESOURCE_H
287
288 static void set_one_rlimit(const pa_rlimit *r, int resource, const char *name) {
289 struct rlimit rl;
290 assert(r);
291
292 if (!r->is_set)
293 return;
294
295 rl.rlim_cur = rl.rlim_max = r->value;
296
297 if (setrlimit(resource, &rl) < 0)
298 pa_log_warn("setrlimit(%s, (%u, %u)) failed: %s", name, (unsigned) r->value, (unsigned) r->value, pa_cstrerror(errno));
299 }
300
301 static void set_all_rlimits(const pa_daemon_conf *conf) {
302 set_one_rlimit(&conf->rlimit_as, RLIMIT_AS, "RLIMIT_AS");
303 set_one_rlimit(&conf->rlimit_core, RLIMIT_CORE, "RLIMIT_CORE");
304 set_one_rlimit(&conf->rlimit_data, RLIMIT_DATA, "RLIMIT_DATA");
305 set_one_rlimit(&conf->rlimit_fsize, RLIMIT_FSIZE, "RLIMIT_FSIZE");
306 set_one_rlimit(&conf->rlimit_nofile, RLIMIT_NOFILE, "RLIMIT_NOFILE");
307 set_one_rlimit(&conf->rlimit_stack, RLIMIT_STACK, "RLIMIT_STACK");
308 #ifdef RLIMIT_NPROC
309 set_one_rlimit(&conf->rlimit_nproc, RLIMIT_NPROC, "RLIMIT_NPROC");
310 #endif
311 #ifdef RLIMIT_MEMLOCK
312 set_one_rlimit(&conf->rlimit_memlock, RLIMIT_MEMLOCK, "RLIMIT_MEMLOCK");
313 #endif
314 }
315 #endif
316
317 static pa_mutex *libtool_mutex = NULL;
318
319 static void libtool_lock(void) {
320 pa_mutex_lock(libtool_mutex);
321 }
322
323 static void libtool_unlock(void) {
324 pa_mutex_unlock(libtool_mutex);
325 }
326
327 PA_STATIC_TLS_DECLARE(libtool_tls, NULL);
328
329 static void libtool_set_error(const char * error) {
330 pa_tls_set(PA_STATIC_TLS_GET(libtool_tls), (char*) error);
331 }
332
333 static const char *libtool_get_error(void) {
334 return pa_tls_get(PA_STATIC_TLS_GET(libtool_tls));
335 }
336
337 static void libtool_init(void) {
338 pa_assert_se(libtool_mutex = pa_mutex_new(1));
339 pa_assert_se(lt_dlmutex_register(libtool_lock, libtool_unlock, libtool_set_error, libtool_get_error) == 0);
340 pa_assert_se(lt_dlinit() == 0);
341 }
342
343 static void libtool_done(void) {
344 pa_assert_se(lt_dlexit() == 0);
345 pa_mutex_free(libtool_mutex);
346 libtool_mutex = NULL;
347 }
348
349 int main(int argc, char *argv[]) {
350 pa_core *c = NULL;
351 pa_strbuf *buf = NULL;
352 pa_daemon_conf *conf = NULL;
353 pa_mainloop *mainloop = NULL;
354
355 char *s;
356 int r, retval = 1, d = 0;
357 int daemon_pipe[2] = { -1, -1 };
358 int suid_root, real_root;
359 int valid_pid_file = 0;
360
361 gid_t gid = (gid_t) -1;
362
363 #ifdef OS_IS_WIN32
364 pa_time_event *timer;
365 struct timeval tv;
366 #endif
367
368 #ifdef HAVE_GETUID
369 real_root = getuid() == 0;
370 suid_root = !real_root && geteuid() == 0;
371 #else
372 real_root = 0;
373 suid_root = 0;
374 #endif
375
376 if (suid_root) {
377 /* Drop all capabilities except CAP_SYS_NICE */
378 pa_limit_caps();
379
380 /* Drop priviliges, but keep CAP_SYS_NICE */
381 pa_drop_root();
382
383 /* After dropping root, the effective set is reset, hence,
384 * let's raise it again */
385 pa_limit_caps();
386
387 /* When capabilities are not supported we will not be able to
388 * aquire RT sched anymore. But yes, that's the way it is. It
389 * is just too risky tun let PA run as root all the time. */
390 }
391
392 setlocale(LC_ALL, "");
393
394 if (suid_root && (pa_own_uid_in_group(PA_REALTIME_GROUP, &gid) <= 0)) {
395 pa_log_warn("WARNING: called SUID root, but not in group '"PA_REALTIME_GROUP"'.");
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 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 mainloop = pa_mainloop_new();
633 assert(mainloop);
634
635 if (!(c = pa_core_new(pa_mainloop_get_api(mainloop), !conf->disable_shm))) {
636 pa_log("pa_core_new() failed.");
637 goto finish;
638 }
639
640 c->is_system_instance = !!conf->system_instance;
641 c->high_priority = !!conf->high_priority;
642 c->default_sample_spec = conf->default_sample_spec;
643 c->default_n_fragments = conf->default_n_fragments;
644 c->default_fragment_size_msec = conf->default_fragment_size_msec;
645 c->disallow_module_loading = conf->disallow_module_loading;
646 c->exit_idle_time = conf->exit_idle_time;
647 c->module_idle_time = conf->module_idle_time;
648 c->scache_idle_time = conf->scache_idle_time;
649 c->resample_method = conf->resample_method;
650
651 pa_assert_se(pa_signal_init(pa_mainloop_get_api(mainloop)) == 0);
652 pa_signal_new(SIGINT, signal_callback, c);
653 pa_signal_new(SIGTERM, signal_callback, c);
654
655 #ifdef SIGUSR1
656 pa_signal_new(SIGUSR1, signal_callback, c);
657 #endif
658 #ifdef SIGUSR2
659 pa_signal_new(SIGUSR2, signal_callback, c);
660 #endif
661 #ifdef SIGHUP
662 pa_signal_new(SIGHUP, signal_callback, c);
663 #endif
664
665 #ifdef OS_IS_WIN32
666 timer = pa_mainloop_get_api(mainloop)->time_new(
667 pa_mainloop_get_api(mainloop), pa_gettimeofday(&tv), message_cb, NULL);
668 assert(timer);
669 #endif
670
671 if (conf->daemonize)
672 c->running_as_daemon = 1;
673
674 oil_init();
675
676 if (!conf->no_cpu_limit) {
677 r = pa_cpu_limit_init(pa_mainloop_get_api(mainloop));
678 assert(r == 0);
679 }
680
681 buf = pa_strbuf_new();
682 if (conf->default_script_file)
683 r = pa_cli_command_execute_file(c, conf->default_script_file, buf, &conf->fail);
684
685 if (r >= 0)
686 r = pa_cli_command_execute(c, conf->script_commands, buf, &conf->fail);
687 pa_log_error("%s", s = pa_strbuf_tostring_free(buf));
688 pa_xfree(s);
689
690 if (r < 0 && conf->fail) {
691 pa_log("failed to initialize daemon.");
692 #ifdef HAVE_FORK
693 if (conf->daemonize)
694 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
695 #endif
696 } else if (!c->modules || pa_idxset_size(c->modules) == 0) {
697 pa_log("daemon startup without any loaded modules, refusing to work.");
698 #ifdef HAVE_FORK
699 if (conf->daemonize)
700 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
701 #endif
702 } else {
703
704 retval = 0;
705 #ifdef HAVE_FORK
706 if (conf->daemonize)
707 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
708 #endif
709
710 if (c->default_sink_name &&
711 pa_namereg_get(c, c->default_sink_name, PA_NAMEREG_SINK, 1) == NULL) {
712 pa_log_error("%s : Fatal error. Default sink name (%s) does not exist in name register.", __FILE__, c->default_sink_name);
713 retval = 1;
714 } else {
715 pa_log_info("Daemon startup complete.");
716 if (pa_mainloop_run(mainloop, &retval) < 0)
717 retval = 1;
718 pa_log_info("Daemon shutdown initiated.");
719 }
720 }
721
722 #ifdef OS_IS_WIN32
723 pa_mainloop_get_api(mainloop)->time_free(timer);
724 #endif
725
726 pa_core_unref(c);
727
728 if (!conf->no_cpu_limit)
729 pa_cpu_limit_done();
730
731 pa_signal_done();
732
733 pa_log_info("Daemon terminated.");
734
735 finish:
736
737 if (mainloop)
738 pa_mainloop_free(mainloop);
739
740 if (conf)
741 pa_daemon_conf_free(conf);
742
743 if (valid_pid_file)
744 pa_pid_file_remove();
745
746 close_pipe(daemon_pipe);
747
748 #ifdef OS_IS_WIN32
749 WSACleanup();
750 #endif
751
752 libtool_done();
753
754 return retval;
755 }