]> code.delx.au - pulseaudio/blob - src/daemon/main.c
get rid of svn $ keywords
[pulseaudio] / src / daemon / main.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2004-2006 Lennart Poettering
5 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
6
7 PulseAudio is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published
9 by the Free Software Foundation; either version 2 of the License,
10 or (at your option) any later version.
11
12 PulseAudio is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public License
18 along with PulseAudio; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 USA.
21 ***/
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <unistd.h>
28 #include <errno.h>
29 #include <string.h>
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <signal.h>
33 #include <stddef.h>
34 #include <ltdl.h>
35 #include <limits.h>
36 #include <fcntl.h>
37 #include <unistd.h>
38 #include <locale.h>
39 #include <sys/types.h>
40
41 #include <liboil/liboil.h>
42
43 #ifdef HAVE_SYS_IOCTL_H
44 #include <sys/ioctl.h>
45 #endif
46
47 #ifdef HAVE_PWD_H
48 #include <pwd.h>
49 #endif
50 #ifdef HAVE_GRP_H
51 #include <grp.h>
52 #endif
53
54 #ifdef HAVE_LIBWRAP
55 #include <syslog.h>
56 #include <tcpd.h>
57 #endif
58
59 #ifdef HAVE_DBUS
60 #include <dbus/dbus.h>
61 #endif
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/winsock.h>
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 #include <pulsecore/shm.h>
88
89 #include "cmdline.h"
90 #include "cpulimit.h"
91 #include "daemon-conf.h"
92 #include "dumpmodules.h"
93 #include "caps.h"
94 #include "ltdl-bind-now.h"
95 #include "polkit.h"
96
97 #define AUTOSPAWN_LOCK "autospawn.lock"
98
99 #ifdef HAVE_LIBWRAP
100 /* Only one instance of these variables */
101 int allow_severity = LOG_INFO;
102 int deny_severity = LOG_WARNING;
103 #endif
104
105 #ifdef HAVE_OSS
106 /* padsp looks for this symbol in the running process and disables
107 * itself if it finds it and it is set to 7 (which is actually a bit
108 * mask). For details see padsp. */
109 int __padsp_disabled__ = 7;
110 #endif
111
112 #ifdef OS_IS_WIN32
113
114 static void message_cb(pa_mainloop_api*a, pa_time_event*e, PA_GCC_UNUSED const struct timeval *tv, void *userdata) {
115 MSG msg;
116 struct timeval tvnext;
117
118 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
119 if (msg.message == WM_QUIT)
120 raise(SIGTERM);
121 else {
122 TranslateMessage(&msg);
123 DispatchMessage(&msg);
124 }
125 }
126
127 pa_timeval_add(pa_gettimeofday(&tvnext), 100000);
128 a->time_restart(e, &tvnext);
129 }
130
131 #endif
132
133 static void signal_callback(pa_mainloop_api*m, PA_GCC_UNUSED pa_signal_event *e, int sig, void *userdata) {
134 pa_log_info("Got signal %s.", pa_sig2str(sig));
135
136 switch (sig) {
137 #ifdef SIGUSR1
138 case SIGUSR1:
139 pa_module_load(userdata, "module-cli", NULL);
140 break;
141 #endif
142
143 #ifdef SIGUSR2
144 case SIGUSR2:
145 pa_module_load(userdata, "module-cli-protocol-unix", NULL);
146 break;
147 #endif
148
149 #ifdef SIGHUP
150 case SIGHUP: {
151 char *c = pa_full_status_string(userdata);
152 pa_log_notice("%s", c);
153 pa_xfree(c);
154 return;
155 }
156 #endif
157
158 case SIGINT:
159 case SIGTERM:
160 default:
161 pa_log_info("Exiting.");
162 m->quit(m, 1);
163 break;
164 }
165 }
166
167 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
168
169 static int change_user(void) {
170 struct passwd *pw;
171 struct group * gr;
172 int r;
173
174 /* This function is called only in system-wide mode. It creates a
175 * runtime dir in /var/run/ with proper UID/GID and drops privs
176 * afterwards. */
177
178 if (!(pw = getpwnam(PA_SYSTEM_USER))) {
179 pa_log("Failed to find user '%s'.", PA_SYSTEM_USER);
180 return -1;
181 }
182
183 if (!(gr = getgrnam(PA_SYSTEM_GROUP))) {
184 pa_log("Failed to find group '%s'.", PA_SYSTEM_GROUP);
185 return -1;
186 }
187
188 pa_log_info("Found user '%s' (UID %lu) and group '%s' (GID %lu).",
189 PA_SYSTEM_USER, (unsigned long) pw->pw_uid,
190 PA_SYSTEM_GROUP, (unsigned long) gr->gr_gid);
191
192 if (pw->pw_gid != gr->gr_gid) {
193 pa_log("GID of user '%s' and of group '%s' don't match.", PA_SYSTEM_USER, PA_SYSTEM_GROUP);
194 return -1;
195 }
196
197 if (strcmp(pw->pw_dir, PA_SYSTEM_RUNTIME_PATH) != 0)
198 pa_log_warn("Warning: home directory of user '%s' is not '%s', ignoring.", PA_SYSTEM_USER, PA_SYSTEM_RUNTIME_PATH);
199
200 if (pa_make_secure_dir(PA_SYSTEM_RUNTIME_PATH, 0755, pw->pw_uid, gr->gr_gid) < 0) {
201 pa_log("Failed to create '%s': %s", PA_SYSTEM_RUNTIME_PATH, pa_cstrerror(errno));
202 return -1;
203 }
204
205 if (pa_make_secure_dir(PA_SYSTEM_STATE_PATH, 0700, pw->pw_uid, gr->gr_gid) < 0) {
206 pa_log("Failed to create '%s': %s", PA_SYSTEM_STATE_PATH, pa_cstrerror(errno));
207 return -1;
208 }
209
210 /* We don't create the config dir here, because we don't need to write to it */
211
212 if (initgroups(PA_SYSTEM_USER, gr->gr_gid) != 0) {
213 pa_log("Failed to change group list: %s", pa_cstrerror(errno));
214 return -1;
215 }
216
217 #if defined(HAVE_SETRESGID)
218 r = setresgid(gr->gr_gid, gr->gr_gid, gr->gr_gid);
219 #elif defined(HAVE_SETEGID)
220 if ((r = setgid(gr->gr_gid)) >= 0)
221 r = setegid(gr->gr_gid);
222 #elif defined(HAVE_SETREGID)
223 r = setregid(gr->gr_gid, gr->gr_gid);
224 #else
225 #error "No API to drop priviliges"
226 #endif
227
228 if (r < 0) {
229 pa_log("Failed to change GID: %s", pa_cstrerror(errno));
230 return -1;
231 }
232
233 #if defined(HAVE_SETRESUID)
234 r = setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid);
235 #elif defined(HAVE_SETEUID)
236 if ((r = setuid(pw->pw_uid)) >= 0)
237 r = seteuid(pw->pw_uid);
238 #elif defined(HAVE_SETREUID)
239 r = setreuid(pw->pw_uid, pw->pw_uid);
240 #else
241 #error "No API to drop priviliges"
242 #endif
243
244 if (r < 0) {
245 pa_log("Failed to change UID: %s", pa_cstrerror(errno));
246 return -1;
247 }
248
249 pa_set_env("USER", PA_SYSTEM_USER);
250 pa_set_env("USERNAME", PA_SYSTEM_USER);
251 pa_set_env("LOGNAME", PA_SYSTEM_USER);
252 pa_set_env("HOME", PA_SYSTEM_RUNTIME_PATH);
253
254 /* Relevant for pa_runtime_path() */
255 pa_set_env("PULSE_RUNTIME_PATH", PA_SYSTEM_RUNTIME_PATH);
256 pa_set_env("PULSE_CONFIG_PATH", PA_SYSTEM_CONFIG_PATH);
257 pa_set_env("PULSE_STATE_PATH", PA_SYSTEM_STATE_PATH);
258
259 pa_log_info("Successfully dropped root privileges.");
260
261 return 0;
262 }
263
264 #else /* HAVE_PWD_H && HAVE_GRP_H */
265
266 static int change_user(void) {
267 pa_log("System wide mode unsupported on this platform.");
268 return -1;
269 }
270
271 #endif /* HAVE_PWD_H && HAVE_GRP_H */
272
273 #ifdef HAVE_SYS_RESOURCE_H
274
275 static int set_one_rlimit(const pa_rlimit *r, int resource, const char *name) {
276 struct rlimit rl;
277 pa_assert(r);
278
279 if (!r->is_set)
280 return 0;
281
282 rl.rlim_cur = rl.rlim_max = r->value;
283
284 if (setrlimit(resource, &rl) < 0) {
285 pa_log_info("setrlimit(%s, (%u, %u)) failed: %s", name, (unsigned) r->value, (unsigned) r->value, pa_cstrerror(errno));
286 return -1;
287 }
288
289 return 0;
290 }
291
292 static void set_all_rlimits(const pa_daemon_conf *conf) {
293 set_one_rlimit(&conf->rlimit_fsize, RLIMIT_FSIZE, "RLIMIT_FSIZE");
294 set_one_rlimit(&conf->rlimit_data, RLIMIT_DATA, "RLIMIT_DATA");
295 set_one_rlimit(&conf->rlimit_stack, RLIMIT_STACK, "RLIMIT_STACK");
296 set_one_rlimit(&conf->rlimit_core, RLIMIT_CORE, "RLIMIT_CORE");
297 set_one_rlimit(&conf->rlimit_rss, RLIMIT_RSS, "RLIMIT_RSS");
298 #ifdef RLIMIT_NPROC
299 set_one_rlimit(&conf->rlimit_nproc, RLIMIT_NPROC, "RLIMIT_NPROC");
300 #endif
301 set_one_rlimit(&conf->rlimit_nofile, RLIMIT_NOFILE, "RLIMIT_NOFILE");
302 #ifdef RLIMIT_MEMLOCK
303 set_one_rlimit(&conf->rlimit_memlock, RLIMIT_MEMLOCK, "RLIMIT_MEMLOCK");
304 #endif
305 set_one_rlimit(&conf->rlimit_as, RLIMIT_AS, "RLIMIT_AS");
306 #ifdef RLIMIT_LOCKS
307 set_one_rlimit(&conf->rlimit_locks, RLIMIT_LOCKS, "RLIMIT_LOCKS");
308 #endif
309 #ifdef RLIMIT_SIGPENDING
310 set_one_rlimit(&conf->rlimit_sigpending, RLIMIT_SIGPENDING, "RLIMIT_SIGPENDING");
311 #endif
312 #ifdef RLIMIT_MSGQUEUE
313 set_one_rlimit(&conf->rlimit_msgqueue, RLIMIT_MSGQUEUE, "RLIMIT_MSGQUEUE");
314 #endif
315 #ifdef RLIMIT_NICE
316 set_one_rlimit(&conf->rlimit_nice, RLIMIT_NICE, "RLIMIT_NICE");
317 #endif
318 #ifdef RLIMIT_RTPRIO
319 set_one_rlimit(&conf->rlimit_rtprio, RLIMIT_RTPRIO, "RLIMIT_RTPRIO");
320 #endif
321 #ifdef RLIMIT_RTTIME
322 set_one_rlimit(&conf->rlimit_rttime, RLIMIT_RTTIME, "RLIMIT_RTTIME");
323 #endif
324 }
325 #endif
326
327 int main(int argc, char *argv[]) {
328 pa_core *c = NULL;
329 pa_strbuf *buf = NULL;
330 pa_daemon_conf *conf = NULL;
331 pa_mainloop *mainloop = NULL;
332 char *s;
333 int r = 0, retval = 1, d = 0;
334 pa_bool_t suid_root, real_root;
335 pa_bool_t valid_pid_file = FALSE;
336 gid_t gid = (gid_t) -1;
337 pa_bool_t ltdl_init = FALSE;
338 int passed_fd = -1;
339 const char *e;
340 #ifdef HAVE_FORK
341 int daemon_pipe[2] = { -1, -1 };
342 #endif
343 #ifdef OS_IS_WIN32
344 pa_time_event *win32_timer;
345 struct timeval win32_tv;
346 #endif
347 char *lf = NULL;
348 int autospawn_lock_fd = -1;
349
350 #if defined(__linux__) && defined(__OPTIMIZE__)
351 /*
352 Disable lazy relocations to make usage of external libraries
353 more deterministic for our RT threads. We abuse __OPTIMIZE__ as
354 a check whether we are a debug build or not.
355 */
356
357 if (!getenv("LD_BIND_NOW")) {
358 char *rp;
359
360 /* We have to execute ourselves, because the libc caches the
361 * value of $LD_BIND_NOW on initialization. */
362
363 pa_set_env("LD_BIND_NOW", "1");
364 pa_assert_se(rp = pa_readlink("/proc/self/exe"));
365 pa_assert_se(execv(rp, argv) == 0);
366 }
367 #endif
368
369 #ifdef HAVE_GETUID
370 real_root = getuid() == 0;
371 suid_root = !real_root && geteuid() == 0;
372 #else
373 real_root = FALSE;
374 suid_root = FALSE;
375 #endif
376
377 if (suid_root) {
378 /* Drop all capabilities except CAP_SYS_NICE */
379 pa_limit_caps();
380
381 /* Drop priviliges, but keep CAP_SYS_NICE */
382 pa_drop_root();
383
384 /* After dropping root, the effective set is reset, hence,
385 * let's raise it again */
386 pa_limit_caps();
387
388 /* When capabilities are not supported we will not be able to
389 * aquire RT sched anymore. But yes, that's the way it is. It
390 * is just too risky tun let PA run as root all the time. */
391 }
392
393 if ((e = getenv("PULSE_PASSED_FD"))) {
394 passed_fd = atoi(e);
395
396 if (passed_fd <= 2)
397 passed_fd = -1;
398 }
399
400 pa_close_all(passed_fd, -1);
401
402 pa_reset_sigs(-1);
403 pa_unblock_sigs(-1);
404
405 /* At this point, we are a normal user, possibly with CAP_NICE if
406 * we were started SUID. If we are started as normal root, than we
407 * still are normal root. */
408
409 setlocale(LC_ALL, "");
410 pa_log_set_maximal_level(PA_LOG_INFO);
411 pa_log_set_ident("pulseaudio");
412
413 conf = pa_daemon_conf_new();
414
415 if (pa_daemon_conf_load(conf, NULL) < 0)
416 goto finish;
417
418 if (pa_daemon_conf_env(conf) < 0)
419 goto finish;
420
421 if (pa_cmdline_parse(conf, argc, argv, &d) < 0) {
422 pa_log("Failed to parse command line.");
423 goto finish;
424 }
425
426 pa_log_set_maximal_level(conf->log_level);
427 pa_log_set_target(conf->auto_log_target ? PA_LOG_STDERR : conf->log_target, NULL);
428
429 if (suid_root) {
430 pa_bool_t allow_realtime, allow_high_priority;
431
432 /* Ok, we're suid root, so let's better not enable high prio
433 * or RT by default */
434
435 allow_high_priority = allow_realtime = FALSE;
436
437 if (conf->high_priority || conf->realtime_scheduling)
438 if (pa_own_uid_in_group(PA_REALTIME_GROUP, &gid) > 0) {
439 pa_log_info("We're in the group '"PA_REALTIME_GROUP"', allowing real-time and high-priority scheduling.");
440 allow_realtime = conf->realtime_scheduling;
441 allow_high_priority = conf->high_priority;
442 }
443
444 #ifdef HAVE_POLKIT
445 if (conf->high_priority && !allow_high_priority) {
446 if (pa_polkit_check("org.pulseaudio.acquire-high-priority") > 0) {
447 pa_log_info("PolicyKit grants us acquire-high-priority privilege.");
448 allow_high_priority = TRUE;
449 } else
450 pa_log_info("PolicyKit refuses acquire-high-priority privilege.");
451 }
452
453 if (conf->realtime_scheduling && !allow_realtime) {
454 if (pa_polkit_check("org.pulseaudio.acquire-real-time") > 0) {
455 pa_log_info("PolicyKit grants us acquire-real-time privilege.");
456 allow_realtime = TRUE;
457 } else
458 pa_log_info("PolicyKit refuses acquire-real-time privilege.");
459 }
460 #endif
461
462 if (!allow_high_priority && !allow_realtime) {
463
464 /* OK, there's no further need to keep CAP_NICE. Hence
465 * let's give it up early */
466
467 pa_drop_caps();
468 suid_root = FALSE;
469
470 if (conf->high_priority || conf->realtime_scheduling)
471 pa_log_notice("Called SUID root and real-time/high-priority scheduling was requested in the configuration. However, we lack the necessary priviliges:\n"
472 "We are not in group '"PA_REALTIME_GROUP"' and PolicyKit refuse to grant us priviliges. Dropping SUID again.\n"
473 "For enabling real-time scheduling please acquire the appropriate PolicyKit priviliges, or become a member of '"PA_REALTIME_GROUP"', or increase the RLIMIT_NICE/RLIMIT_RTPRIO resource limits for this user.");
474 }
475 }
476
477 #ifdef HAVE_SYS_RESOURCE_H
478 /* Reset resource limits. If we are run as root (for system mode)
479 * this might end up increasing the limits, which is intended
480 * behaviour. For all other cases, i.e. started as normal user, or
481 * SUID root at this point we should have no CAP_SYS_RESOURCE and
482 * increasing the limits thus should fail. Which is, too, intended
483 * behaviour */
484
485 set_all_rlimits(conf);
486 #endif
487
488 if (conf->high_priority && !pa_can_high_priority())
489 pa_log_warn("High-priority scheduling enabled in configuration but not allowed by policy.");
490
491 if (conf->high_priority && (conf->cmd == PA_CMD_DAEMON || conf->cmd == PA_CMD_START))
492 pa_raise_priority(conf->nice_level);
493
494 if (suid_root) {
495 pa_bool_t drop;
496
497 drop = (conf->cmd != PA_CMD_DAEMON && conf->cmd != PA_CMD_START) || !conf->realtime_scheduling;
498
499 #ifdef RLIMIT_RTPRIO
500 if (!drop) {
501 struct rlimit rl;
502 /* At this point we still have CAP_NICE if we were loaded
503 * SUID root. If possible let's acquire RLIMIT_RTPRIO
504 * instead and give CAP_NICE up. */
505
506 if (getrlimit(RLIMIT_RTPRIO, &rl) >= 0) {
507
508 if (rl.rlim_cur >= 9)
509 drop = TRUE;
510 else {
511 rl.rlim_max = rl.rlim_cur = 9;
512
513 if (setrlimit(RLIMIT_RTPRIO, &rl) >= 0) {
514 pa_log_info("Successfully increased RLIMIT_RTPRIO");
515 drop = TRUE;
516 } else
517 pa_log_warn("RLIMIT_RTPRIO failed: %s", pa_cstrerror(errno));
518 }
519 }
520 }
521 #endif
522
523 if (drop) {
524 pa_log_info("Giving up CAP_NICE");
525 pa_drop_caps();
526 suid_root = FALSE;
527 }
528 }
529
530 if (conf->realtime_scheduling && !pa_can_realtime())
531 pa_log_warn("Real-time scheduling enabled in configuration but not allowed by policy.");
532
533 LTDL_SET_PRELOADED_SYMBOLS();
534 pa_ltdl_init();
535 ltdl_init = TRUE;
536
537 if (conf->dl_search_path)
538 lt_dlsetsearchpath(conf->dl_search_path);
539
540 #ifdef OS_IS_WIN32
541 {
542 WSADATA data;
543 WSAStartup(MAKEWORD(2, 0), &data);
544 }
545 #endif
546
547 pa_random_seed();
548
549 switch (conf->cmd) {
550 case PA_CMD_DUMP_MODULES:
551 pa_dump_modules(conf, argc-d, argv+d);
552 retval = 0;
553 goto finish;
554
555 case PA_CMD_DUMP_CONF: {
556 s = pa_daemon_conf_dump(conf);
557 fputs(s, stdout);
558 pa_xfree(s);
559 retval = 0;
560 goto finish;
561 }
562
563 case PA_CMD_DUMP_RESAMPLE_METHODS: {
564 int i;
565
566 for (i = 0; i < PA_RESAMPLER_MAX; i++)
567 if (pa_resample_method_supported(i))
568 printf("%s\n", pa_resample_method_to_string(i));
569
570 goto finish;
571 }
572
573 case PA_CMD_HELP :
574 pa_cmdline_help(argv[0]);
575 retval = 0;
576 goto finish;
577
578 case PA_CMD_VERSION :
579 printf(PACKAGE_NAME" "PACKAGE_VERSION"\n");
580 retval = 0;
581 goto finish;
582
583 case PA_CMD_CHECK: {
584 pid_t pid;
585
586 if (pa_pid_file_check_running(&pid, "pulseaudio") < 0)
587 pa_log_info("Daemon not running");
588 else {
589 pa_log_info("Daemon running as PID %u", pid);
590 retval = 0;
591 }
592
593 goto finish;
594
595 }
596 case PA_CMD_KILL:
597
598 if (pa_pid_file_kill(SIGINT, NULL, "pulseaudio") < 0)
599 pa_log("Failed to kill daemon.");
600 else
601 retval = 0;
602
603 goto finish;
604
605 case PA_CMD_CLEANUP_SHM:
606
607 if (pa_shm_cleanup() >= 0)
608 retval = 0;
609
610 goto finish;
611
612 default:
613 pa_assert(conf->cmd == PA_CMD_DAEMON || conf->cmd == PA_CMD_START);
614 }
615
616 if (real_root && !conf->system_instance)
617 pa_log_warn("This program is not intended to be run as root (unless --system is specified).");
618 else if (!real_root && conf->system_instance) {
619 pa_log("Root priviliges required.");
620 goto finish;
621 }
622
623 if (conf->cmd == PA_CMD_START) {
624 /* If we shall start PA only when it is not running yet, we
625 * first take the autospawn lock to make things
626 * synchronous. */
627
628 lf = pa_runtime_path(AUTOSPAWN_LOCK);
629 autospawn_lock_fd = pa_lock_lockfile(lf);
630 }
631
632 if (conf->daemonize) {
633 pid_t child;
634 int tty_fd;
635
636 if (pa_stdio_acquire() < 0) {
637 pa_log("Failed to acquire stdio.");
638 goto finish;
639 }
640
641 #ifdef HAVE_FORK
642 if (pipe(daemon_pipe) < 0) {
643 pa_log("pipe failed: %s", pa_cstrerror(errno));
644 goto finish;
645 }
646
647 if ((child = fork()) < 0) {
648 pa_log("fork() failed: %s", pa_cstrerror(errno));
649 goto finish;
650 }
651
652 if (child != 0) {
653 ssize_t n;
654 /* Father */
655
656 pa_assert_se(pa_close(daemon_pipe[1]) == 0);
657 daemon_pipe[1] = -1;
658
659 if ((n = pa_loop_read(daemon_pipe[0], &retval, sizeof(retval), NULL)) != sizeof(retval)) {
660
661 if (n < 0)
662 pa_log("read() failed: %s", pa_cstrerror(errno));
663
664 retval = 1;
665 }
666
667 if (retval)
668 pa_log("Daemon startup failed.");
669 else
670 pa_log_info("Daemon startup successful.");
671
672 goto finish;
673 }
674
675 if (autospawn_lock_fd >= 0) {
676 /* The lock file is unlocked from the parent, so we need
677 * to close it in the child */
678
679 pa_close(autospawn_lock_fd);
680 autospawn_lock_fd = -1;
681 }
682
683 pa_assert_se(pa_close(daemon_pipe[0]) == 0);
684 daemon_pipe[0] = -1;
685 #endif
686
687 if (conf->auto_log_target)
688 pa_log_set_target(PA_LOG_SYSLOG, NULL);
689
690 #ifdef HAVE_SETSID
691 setsid();
692 #endif
693 #ifdef HAVE_SETPGID
694 setpgid(0,0);
695 #endif
696
697 #ifndef OS_IS_WIN32
698 pa_close(0);
699 pa_close(1);
700 pa_close(2);
701
702 pa_assert_se(open("/dev/null", O_RDONLY) == 0);
703 pa_assert_se(open("/dev/null", O_WRONLY) == 1);
704 pa_assert_se(open("/dev/null", O_WRONLY) == 2);
705 #else
706 FreeConsole();
707 #endif
708
709 #ifdef SIGTTOU
710 signal(SIGTTOU, SIG_IGN);
711 #endif
712 #ifdef SIGTTIN
713 signal(SIGTTIN, SIG_IGN);
714 #endif
715 #ifdef SIGTSTP
716 signal(SIGTSTP, SIG_IGN);
717 #endif
718
719 #ifdef TIOCNOTTY
720 if ((tty_fd = open("/dev/tty", O_RDWR)) >= 0) {
721 ioctl(tty_fd, TIOCNOTTY, (char*) 0);
722 pa_assert_se(pa_close(tty_fd) == 0);
723 }
724 #endif
725 }
726
727 pa_set_env("PULSE_INTERNAL", "1");
728 pa_assert_se(chdir("/") == 0);
729 umask(0022);
730
731 if (conf->system_instance)
732 if (change_user() < 0)
733 goto finish;
734
735 pa_set_env("PULSE_SYSTEM", conf->system_instance ? "1" : "0");
736
737 pa_log_info("This is PulseAudio " PACKAGE_VERSION);
738 pa_log_info("Page size is %lu bytes", (unsigned long) PA_PAGE_SIZE);
739 if (!(s = pa_get_runtime_dir()))
740 goto finish;
741 pa_log_info("Using runtime directory %s.", s);
742 pa_xfree(s);
743 if (!(s = pa_get_state_dir()))
744 pa_log_info("Using state directory %s.", s);
745 pa_xfree(s);
746
747 pa_log_info("Running in system mode: %s", pa_yes_no(pa_in_system_mode()));
748
749 if (conf->use_pid_file) {
750 int z;
751
752 if ((z = pa_pid_file_create("pulseaudio")) != 0) {
753
754 if (conf->cmd == PA_CMD_START && z > 0) {
755 /* If we are already running and with are run in
756 * --start mode, then let's return this as success. */
757
758 pa_log_info("z=%i rock!", z);
759
760 retval = 0;
761 goto finish;
762 }
763
764 pa_log("pa_pid_file_create() failed.");
765 goto finish;
766 }
767
768 valid_pid_file = TRUE;
769 }
770
771 #ifdef SIGPIPE
772 signal(SIGPIPE, SIG_IGN);
773 #endif
774
775 if (pa_rtclock_hrtimer())
776 pa_log_info("Fresh high-resolution timers available! Bon appetit!");
777 else
778 pa_log_info("Dude, your kernel stinks! The chef's recommendation today is Linux with high-resolution timers enabled!");
779
780 #ifdef SIGRTMIN
781 /* Valgrind uses SIGRTMAX. To easy debugging we don't use it here */
782 pa_rtsig_configure(SIGRTMIN, SIGRTMAX-1);
783 #endif
784
785 pa_assert_se(mainloop = pa_mainloop_new());
786
787 if (!(c = pa_core_new(pa_mainloop_get_api(mainloop), !conf->disable_shm))) {
788 pa_log("pa_core_new() failed.");
789 goto finish;
790 }
791
792 c->default_sample_spec = conf->default_sample_spec;
793 c->default_n_fragments = conf->default_n_fragments;
794 c->default_fragment_size_msec = conf->default_fragment_size_msec;
795 c->exit_idle_time = conf->exit_idle_time;
796 c->module_idle_time = conf->module_idle_time;
797 c->scache_idle_time = conf->scache_idle_time;
798 c->resample_method = conf->resample_method;
799 c->realtime_priority = conf->realtime_priority;
800 c->realtime_scheduling = !!conf->realtime_scheduling;
801 c->disable_remixing = !!conf->disable_remixing;
802 c->running_as_daemon = !!conf->daemonize;
803
804 pa_assert_se(pa_signal_init(pa_mainloop_get_api(mainloop)) == 0);
805 pa_signal_new(SIGINT, signal_callback, c);
806 pa_signal_new(SIGTERM, signal_callback, c);
807 #ifdef SIGUSR1
808 pa_signal_new(SIGUSR1, signal_callback, c);
809 #endif
810 #ifdef SIGUSR2
811 pa_signal_new(SIGUSR2, signal_callback, c);
812 #endif
813 #ifdef SIGHUP
814 pa_signal_new(SIGHUP, signal_callback, c);
815 #endif
816
817 #ifdef OS_IS_WIN32
818 win32_timer = pa_mainloop_get_api(mainloop)->time_new(pa_mainloop_get_api(mainloop), pa_gettimeofday(&win32_tv), message_cb, NULL);
819 #endif
820
821 oil_init();
822
823 if (!conf->no_cpu_limit)
824 pa_assert_se(pa_cpu_limit_init(pa_mainloop_get_api(mainloop)) == 0);
825
826 buf = pa_strbuf_new();
827 if (conf->load_default_script_file) {
828 FILE *f;
829
830 if ((f = pa_daemon_conf_open_default_script_file(conf))) {
831 r = pa_cli_command_execute_file_stream(c, f, buf, &conf->fail);
832 fclose(f);
833 }
834 }
835
836 if (r >= 0)
837 r = pa_cli_command_execute(c, conf->script_commands, buf, &conf->fail);
838
839 pa_log_error("%s", s = pa_strbuf_tostring_free(buf));
840 pa_xfree(s);
841
842 /* We completed the initial module loading, so let's disable it
843 * from now on, if requested */
844 c->disallow_module_loading = !!conf->disallow_module_loading;
845
846 if (r < 0 && conf->fail) {
847 pa_log("Failed to initialize daemon.");
848 goto finish;
849 }
850
851 if (!c->modules || pa_idxset_size(c->modules) == 0) {
852 pa_log("Daemon startup without any loaded modules, refusing to work.");
853 goto finish;
854 }
855
856 if (c->default_sink_name && !pa_namereg_get(c, c->default_sink_name, PA_NAMEREG_SINK, TRUE) && conf->fail) {
857 pa_log_error("Default sink name (%s) does not exist in name register.", c->default_sink_name);
858 goto finish;
859 }
860
861 #ifdef HAVE_FORK
862 if (daemon_pipe[1] >= 0) {
863 int ok = 0;
864 pa_loop_write(daemon_pipe[1], &ok, sizeof(ok), NULL);
865 pa_close(daemon_pipe[1]);
866 daemon_pipe[1] = -1;
867 }
868 #endif
869
870 pa_log_info("Daemon startup complete.");
871
872 retval = 0;
873 if (pa_mainloop_run(mainloop, &retval) < 0)
874 goto finish;
875
876 pa_log_info("Daemon shutdown initiated.");
877
878 finish:
879
880 if (autospawn_lock_fd >= 0)
881 pa_unlock_lockfile(lf, autospawn_lock_fd);
882
883 if (lf)
884 pa_xfree(lf);
885
886 #ifdef OS_IS_WIN32
887 if (win32_timer)
888 pa_mainloop_get_api(mainloop)->time_free(win32_timer);
889 #endif
890
891 if (c) {
892 pa_core_unref(c);
893 pa_log_info("Daemon terminated.");
894 }
895
896 if (!conf->no_cpu_limit)
897 pa_cpu_limit_done();
898
899 pa_signal_done();
900
901 #ifdef HAVE_FORK
902 if (daemon_pipe[1] >= 0)
903 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
904
905 pa_close_pipe(daemon_pipe);
906 #endif
907
908 if (mainloop)
909 pa_mainloop_free(mainloop);
910
911 if (conf)
912 pa_daemon_conf_free(conf);
913
914 if (valid_pid_file)
915 pa_pid_file_remove();
916
917 #ifdef OS_IS_WIN32
918 WSACleanup();
919 #endif
920
921 if (ltdl_init)
922 pa_ltdl_done();
923
924 #ifdef HAVE_DBUS
925 dbus_shutdown();
926 #endif
927
928 return retval;
929 }