Use <pulsecore/socket.h> instead of <sys/socket.h>
[pulseaudio-mirror.git] / src / daemon / main.c
blobde809b1b89786c2589520899e18fb18c164d4a93
1 /***
2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
5 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
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.1 of the License,
10 or (at your option) any later version.
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.
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 ***/
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
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 #include <sys/stat.h>
42 #ifdef HAVE_SYS_MMAN_H
43 #include <sys/mman.h>
44 #endif
46 #ifdef HAVE_PWD_H
47 #include <pwd.h>
48 #endif
49 #ifdef HAVE_GRP_H
50 #include <grp.h>
51 #endif
53 #ifdef HAVE_LIBWRAP
54 #include <syslog.h>
55 #include <tcpd.h>
56 #endif
58 #ifdef HAVE_DBUS
59 #include <dbus/dbus.h>
60 #endif
62 #include <pulse/client-conf.h>
63 #ifdef HAVE_X11
64 #include <pulse/client-conf-x11.h>
65 #endif
66 #include <pulse/mainloop.h>
67 #include <pulse/mainloop-signal.h>
68 #include <pulse/timeval.h>
69 #include <pulse/xmalloc.h>
70 #include <pulse/i18n.h>
72 #include <pulsecore/lock-autospawn.h>
73 #include <pulsecore/socket.h>
74 #include <pulsecore/core-error.h>
75 #include <pulsecore/core-rtclock.h>
76 #include <pulsecore/core.h>
77 #include <pulsecore/memblock.h>
78 #include <pulsecore/module.h>
79 #include <pulsecore/cli-command.h>
80 #include <pulsecore/log.h>
81 #include <pulsecore/core-util.h>
82 #include <pulsecore/sioman.h>
83 #include <pulsecore/cli-text.h>
84 #include <pulsecore/pid.h>
85 #include <pulsecore/namereg.h>
86 #include <pulsecore/random.h>
87 #include <pulsecore/macro.h>
88 #include <pulsecore/mutex.h>
89 #include <pulsecore/thread.h>
90 #include <pulsecore/once.h>
91 #include <pulsecore/shm.h>
92 #include <pulsecore/memtrap.h>
93 #ifdef HAVE_DBUS
94 #include <pulsecore/dbus-shared.h>
95 #endif
96 #include <pulsecore/cpu-arm.h>
97 #include <pulsecore/cpu-x86.h>
99 #include "cmdline.h"
100 #include "cpulimit.h"
101 #include "daemon-conf.h"
102 #include "dumpmodules.h"
103 #include "caps.h"
104 #include "ltdl-bind-now.h"
105 #include "server-lookup.h"
107 #ifdef HAVE_LIBWRAP
108 /* Only one instance of these variables */
109 int allow_severity = LOG_INFO;
110 int deny_severity = LOG_WARNING;
111 #endif
113 #ifdef HAVE_OSS_WRAPPER
114 /* padsp looks for this symbol in the running process and disables
115 * itself if it finds it and it is set to 7 (which is actually a bit
116 * mask). For details see padsp. */
117 int __padsp_disabled__ = 7;
118 #endif
120 #ifdef OS_IS_WIN32
122 static void message_cb(pa_mainloop_api*a, pa_time_event*e, const struct timeval *tv, void *userdata) {
123 MSG msg;
124 struct timeval tvnext;
126 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
127 if (msg.message == WM_QUIT)
128 raise(SIGTERM);
129 else {
130 TranslateMessage(&msg);
131 DispatchMessage(&msg);
135 pa_timeval_add(pa_gettimeofday(&tvnext), 100000);
136 a->rtclock_time_restart(e, &tvnext);
139 #endif
141 static void signal_callback(pa_mainloop_api*m, pa_signal_event *e, int sig, void *userdata) {
142 pa_log_info(_("Got signal %s."), pa_sig2str(sig));
144 switch (sig) {
145 #ifdef SIGUSR1
146 case SIGUSR1:
147 pa_module_load(userdata, "module-cli", NULL);
148 break;
149 #endif
151 #ifdef SIGUSR2
152 case SIGUSR2:
153 pa_module_load(userdata, "module-cli-protocol-unix", NULL);
154 break;
155 #endif
157 #ifdef SIGHUP
158 case SIGHUP: {
159 char *c = pa_full_status_string(userdata);
160 pa_log_notice("%s", c);
161 pa_xfree(c);
162 return;
164 #endif
166 case SIGINT:
167 case SIGTERM:
168 default:
169 pa_log_info(_("Exiting."));
170 m->quit(m, 1);
171 break;
175 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
177 static int change_user(void) {
178 struct passwd *pw;
179 struct group * gr;
180 int r;
182 /* This function is called only in system-wide mode. It creates a
183 * runtime dir in /var/run/ with proper UID/GID and drops privs
184 * afterwards. */
186 if (!(pw = getpwnam(PA_SYSTEM_USER))) {
187 pa_log(_("Failed to find user '%s'."), PA_SYSTEM_USER);
188 return -1;
191 if (!(gr = getgrnam(PA_SYSTEM_GROUP))) {
192 pa_log(_("Failed to find group '%s'."), PA_SYSTEM_GROUP);
193 return -1;
196 pa_log_info(_("Found user '%s' (UID %lu) and group '%s' (GID %lu)."),
197 PA_SYSTEM_USER, (unsigned long) pw->pw_uid,
198 PA_SYSTEM_GROUP, (unsigned long) gr->gr_gid);
200 if (pw->pw_gid != gr->gr_gid) {
201 pa_log(_("GID of user '%s' and of group '%s' don't match."), PA_SYSTEM_USER, PA_SYSTEM_GROUP);
202 return -1;
205 if (strcmp(pw->pw_dir, PA_SYSTEM_RUNTIME_PATH) != 0)
206 pa_log_warn(_("Home directory of user '%s' is not '%s', ignoring."), PA_SYSTEM_USER, PA_SYSTEM_RUNTIME_PATH);
208 if (pa_make_secure_dir(PA_SYSTEM_RUNTIME_PATH, 0755, pw->pw_uid, gr->gr_gid) < 0) {
209 pa_log(_("Failed to create '%s': %s"), PA_SYSTEM_RUNTIME_PATH, pa_cstrerror(errno));
210 return -1;
213 if (pa_make_secure_dir(PA_SYSTEM_STATE_PATH, 0700, pw->pw_uid, gr->gr_gid) < 0) {
214 pa_log(_("Failed to create '%s': %s"), PA_SYSTEM_STATE_PATH, pa_cstrerror(errno));
215 return -1;
218 /* We don't create the config dir here, because we don't need to write to it */
220 if (initgroups(PA_SYSTEM_USER, gr->gr_gid) != 0) {
221 pa_log(_("Failed to change group list: %s"), pa_cstrerror(errno));
222 return -1;
225 #if defined(HAVE_SETRESGID)
226 r = setresgid(gr->gr_gid, gr->gr_gid, gr->gr_gid);
227 #elif defined(HAVE_SETEGID)
228 if ((r = setgid(gr->gr_gid)) >= 0)
229 r = setegid(gr->gr_gid);
230 #elif defined(HAVE_SETREGID)
231 r = setregid(gr->gr_gid, gr->gr_gid);
232 #else
233 #error "No API to drop privileges"
234 #endif
236 if (r < 0) {
237 pa_log(_("Failed to change GID: %s"), pa_cstrerror(errno));
238 return -1;
241 #if defined(HAVE_SETRESUID)
242 r = setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid);
243 #elif defined(HAVE_SETEUID)
244 if ((r = setuid(pw->pw_uid)) >= 0)
245 r = seteuid(pw->pw_uid);
246 #elif defined(HAVE_SETREUID)
247 r = setreuid(pw->pw_uid, pw->pw_uid);
248 #else
249 #error "No API to drop privileges"
250 #endif
252 if (r < 0) {
253 pa_log(_("Failed to change UID: %s"), pa_cstrerror(errno));
254 return -1;
257 pa_set_env("USER", PA_SYSTEM_USER);
258 pa_set_env("USERNAME", PA_SYSTEM_USER);
259 pa_set_env("LOGNAME", PA_SYSTEM_USER);
260 pa_set_env("HOME", PA_SYSTEM_RUNTIME_PATH);
262 /* Relevant for pa_runtime_path() */
263 if (!getenv("PULSE_RUNTIME_PATH"))
264 pa_set_env("PULSE_RUNTIME_PATH", PA_SYSTEM_RUNTIME_PATH);
266 if (!getenv("PULSE_CONFIG_PATH"))
267 pa_set_env("PULSE_CONFIG_PATH", PA_SYSTEM_CONFIG_PATH);
269 if (!getenv("PULSE_STATE_PATH"))
270 pa_set_env("PULSE_STATE_PATH", PA_SYSTEM_STATE_PATH);
272 pa_log_info(_("Successfully dropped root privileges."));
274 return 0;
277 #else /* HAVE_PWD_H && HAVE_GRP_H */
279 static int change_user(void) {
280 pa_log(_("System wide mode unsupported on this platform."));
281 return -1;
284 #endif /* HAVE_PWD_H && HAVE_GRP_H */
286 #ifdef HAVE_SYS_RESOURCE_H
288 static int set_one_rlimit(const pa_rlimit *r, int resource, const char *name) {
289 struct rlimit rl;
290 pa_assert(r);
292 if (!r->is_set)
293 return 0;
295 rl.rlim_cur = rl.rlim_max = r->value;
297 if (setrlimit(resource, &rl) < 0) {
298 pa_log_info(_("setrlimit(%s, (%u, %u)) failed: %s"), name, (unsigned) r->value, (unsigned) r->value, pa_cstrerror(errno));
299 return -1;
302 return 0;
305 static void set_all_rlimits(const pa_daemon_conf *conf) {
306 set_one_rlimit(&conf->rlimit_fsize, RLIMIT_FSIZE, "RLIMIT_FSIZE");
307 set_one_rlimit(&conf->rlimit_data, RLIMIT_DATA, "RLIMIT_DATA");
308 set_one_rlimit(&conf->rlimit_stack, RLIMIT_STACK, "RLIMIT_STACK");
309 set_one_rlimit(&conf->rlimit_core, RLIMIT_CORE, "RLIMIT_CORE");
310 #ifdef RLIMIT_RSS
311 set_one_rlimit(&conf->rlimit_rss, RLIMIT_RSS, "RLIMIT_RSS");
312 #endif
313 #ifdef RLIMIT_NPROC
314 set_one_rlimit(&conf->rlimit_nproc, RLIMIT_NPROC, "RLIMIT_NPROC");
315 #endif
316 #ifdef RLIMIT_NOFILE
317 set_one_rlimit(&conf->rlimit_nofile, RLIMIT_NOFILE, "RLIMIT_NOFILE");
318 #endif
319 #ifdef RLIMIT_MEMLOCK
320 set_one_rlimit(&conf->rlimit_memlock, RLIMIT_MEMLOCK, "RLIMIT_MEMLOCK");
321 #endif
322 #ifdef RLIMIT_AS
323 set_one_rlimit(&conf->rlimit_as, RLIMIT_AS, "RLIMIT_AS");
324 #endif
325 #ifdef RLIMIT_LOCKS
326 set_one_rlimit(&conf->rlimit_locks, RLIMIT_LOCKS, "RLIMIT_LOCKS");
327 #endif
328 #ifdef RLIMIT_SIGPENDING
329 set_one_rlimit(&conf->rlimit_sigpending, RLIMIT_SIGPENDING, "RLIMIT_SIGPENDING");
330 #endif
331 #ifdef RLIMIT_MSGQUEUE
332 set_one_rlimit(&conf->rlimit_msgqueue, RLIMIT_MSGQUEUE, "RLIMIT_MSGQUEUE");
333 #endif
334 #ifdef RLIMIT_NICE
335 set_one_rlimit(&conf->rlimit_nice, RLIMIT_NICE, "RLIMIT_NICE");
336 #endif
337 #ifdef RLIMIT_RTPRIO
338 set_one_rlimit(&conf->rlimit_rtprio, RLIMIT_RTPRIO, "RLIMIT_RTPRIO");
339 #endif
340 #ifdef RLIMIT_RTTIME
341 set_one_rlimit(&conf->rlimit_rttime, RLIMIT_RTTIME, "RLIMIT_RTTIME");
342 #endif
344 #endif
346 static char *check_configured_address(void) {
347 char *default_server = NULL;
348 pa_client_conf *c = pa_client_conf_new();
350 pa_client_conf_load(c, NULL);
351 #ifdef HAVE_X11
352 pa_client_conf_from_x11(c, NULL);
353 #endif
354 pa_client_conf_env(c);
356 if (c->default_server && *c->default_server)
357 default_server = pa_xstrdup(c->default_server);
359 pa_client_conf_free(c);
361 return default_server;
364 #ifdef HAVE_DBUS
365 static pa_dbus_connection *register_dbus_name(pa_core *c, DBusBusType bus, const char* name) {
366 DBusError error;
367 pa_dbus_connection *conn;
369 dbus_error_init(&error);
371 if (!(conn = pa_dbus_bus_get(c, bus, &error)) || dbus_error_is_set(&error)) {
372 pa_log_warn("Unable to contact D-Bus: %s: %s", error.name, error.message);
373 goto fail;
376 if (dbus_bus_request_name(pa_dbus_connection_get(conn), name, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error) == DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) {
377 pa_log_debug("Got %s!", name);
378 return conn;
381 if (dbus_error_is_set(&error))
382 pa_log_error("Failed to acquire %s: %s: %s", name, error.name, error.message);
383 else
384 pa_log_error("D-Bus name %s already taken. Weird shit!", name);
386 /* PA cannot be started twice by the same user and hence we can
387 * ignore mostly the case that a name is already taken. */
389 fail:
390 if (conn)
391 pa_dbus_connection_unref(conn);
393 dbus_error_free(&error);
394 return NULL;
396 #endif
398 int main(int argc, char *argv[]) {
399 pa_core *c = NULL;
400 pa_strbuf *buf = NULL;
401 pa_daemon_conf *conf = NULL;
402 pa_mainloop *mainloop = NULL;
403 char *s;
404 char *configured_address;
405 int r = 0, retval = 1, d = 0;
406 pa_bool_t valid_pid_file = FALSE;
407 pa_bool_t ltdl_init = FALSE;
408 int passed_fd = -1;
409 const char *e;
410 #ifdef HAVE_FORK
411 int daemon_pipe[2] = { -1, -1 };
412 #endif
413 #ifdef OS_IS_WIN32
414 pa_time_event *win32_timer;
415 struct timeval win32_tv;
416 #endif
417 int autospawn_fd = -1;
418 pa_bool_t autospawn_locked = FALSE;
419 #ifdef HAVE_DBUS
420 pa_dbusobj_server_lookup *server_lookup = NULL; /* /org/pulseaudio/server_lookup */
421 pa_dbus_connection *lookup_service_bus = NULL; /* Always the user bus. */
422 pa_dbus_connection *server_bus = NULL; /* The bus where we reserve org.pulseaudio.Server, either the user or the system bus. */
423 pa_bool_t start_server;
424 #endif
426 pa_log_set_ident("pulseaudio");
427 pa_log_set_level(PA_LOG_NOTICE);
428 pa_log_set_flags(PA_LOG_COLORS|PA_LOG_PRINT_FILE|PA_LOG_PRINT_LEVEL, PA_LOG_RESET);
430 #if defined(__linux__) && defined(__OPTIMIZE__)
432 Disable lazy relocations to make usage of external libraries
433 more deterministic for our RT threads. We abuse __OPTIMIZE__ as
434 a check whether we are a debug build or not. This all is
435 admittedly a bit snake-oilish.
438 if (!getenv("LD_BIND_NOW")) {
439 char *rp;
440 char *canonical_rp;
442 /* We have to execute ourselves, because the libc caches the
443 * value of $LD_BIND_NOW on initialization. */
445 pa_set_env("LD_BIND_NOW", "1");
447 if ((canonical_rp = pa_realpath(PA_BINARY))) {
449 if ((rp = pa_readlink("/proc/self/exe"))) {
451 if (pa_streq(rp, canonical_rp))
452 pa_assert_se(execv(rp, argv) == 0);
453 else
454 pa_log_warn("/proc/self/exe does not point to %s, cannot self execute. Are you playing games?", canonical_rp);
456 pa_xfree(rp);
458 } else
459 pa_log_warn("Couldn't read /proc/self/exe, cannot self execute. Running in a chroot()?");
461 pa_xfree(canonical_rp);
463 } else
464 pa_log_warn("Couldn't canonicalize binary path, cannot self execute.");
466 #endif
468 if ((e = getenv("PULSE_PASSED_FD"))) {
469 passed_fd = atoi(e);
471 if (passed_fd <= 2)
472 passed_fd = -1;
475 /* We might be autospawned, in which case have no idea in which
476 * context we have been started. Let's cleanup our execution
477 * context as good as possible */
479 pa_reset_personality();
480 pa_drop_root();
481 pa_close_all(passed_fd, -1);
482 pa_reset_sigs(-1);
483 pa_unblock_sigs(-1);
484 pa_reset_priority();
486 setlocale(LC_ALL, "");
487 pa_init_i18n();
489 conf = pa_daemon_conf_new();
491 if (pa_daemon_conf_load(conf, NULL) < 0)
492 goto finish;
494 if (pa_daemon_conf_env(conf) < 0)
495 goto finish;
497 if (pa_cmdline_parse(conf, argc, argv, &d) < 0) {
498 pa_log(_("Failed to parse command line."));
499 goto finish;
502 pa_log_set_level(conf->log_level);
503 pa_log_set_target(conf->auto_log_target ? PA_LOG_STDERR : conf->log_target);
504 if (conf->log_meta)
505 pa_log_set_flags(PA_LOG_PRINT_META, PA_LOG_SET);
506 if (conf->log_time)
507 pa_log_set_flags(PA_LOG_PRINT_TIME, PA_LOG_SET);
508 pa_log_set_show_backtrace(conf->log_backtrace);
510 #ifdef HAVE_DBUS
511 /* conf->system_instance and conf->local_server_type control almost the
512 * same thing; make them agree about what is requested. */
513 switch (conf->local_server_type) {
514 case PA_SERVER_TYPE_UNSET:
515 conf->local_server_type = conf->system_instance ? PA_SERVER_TYPE_SYSTEM : PA_SERVER_TYPE_USER;
516 break;
517 case PA_SERVER_TYPE_USER:
518 case PA_SERVER_TYPE_NONE:
519 conf->system_instance = FALSE;
520 break;
521 case PA_SERVER_TYPE_SYSTEM:
522 conf->system_instance = TRUE;
523 break;
524 default:
525 pa_assert_not_reached();
528 start_server = conf->local_server_type == PA_SERVER_TYPE_USER || (getuid() == 0 && conf->local_server_type == PA_SERVER_TYPE_SYSTEM);
530 if (!start_server && conf->local_server_type == PA_SERVER_TYPE_SYSTEM) {
531 pa_log_notice(_("System mode refused for non-root user. Only starting the D-Bus server lookup service."));
532 conf->system_instance = FALSE;
534 #endif
536 LTDL_SET_PRELOADED_SYMBOLS();
537 pa_ltdl_init();
538 ltdl_init = TRUE;
540 if (conf->dl_search_path)
541 lt_dlsetsearchpath(conf->dl_search_path);
543 #ifdef OS_IS_WIN32
545 WSADATA data;
546 WSAStartup(MAKEWORD(2, 0), &data);
548 #endif
550 pa_random_seed();
552 switch (conf->cmd) {
553 case PA_CMD_DUMP_MODULES:
554 pa_dump_modules(conf, argc-d, argv+d);
555 retval = 0;
556 goto finish;
558 case PA_CMD_DUMP_CONF: {
560 if (d < argc) {
561 pa_log("Too many arguments.\n");
562 goto finish;
565 s = pa_daemon_conf_dump(conf);
566 fputs(s, stdout);
567 pa_xfree(s);
568 retval = 0;
569 goto finish;
572 case PA_CMD_DUMP_RESAMPLE_METHODS: {
573 int i;
575 if (d < argc) {
576 pa_log("Too many arguments.\n");
577 goto finish;
580 for (i = 0; i < PA_RESAMPLER_MAX; i++)
581 if (pa_resample_method_supported(i))
582 printf("%s\n", pa_resample_method_to_string(i));
584 retval = 0;
585 goto finish;
588 case PA_CMD_HELP :
589 pa_cmdline_help(argv[0]);
590 retval = 0;
591 goto finish;
593 case PA_CMD_VERSION :
595 if (d < argc) {
596 pa_log("Too many arguments.\n");
597 goto finish;
600 printf(PACKAGE_NAME" "PACKAGE_VERSION"\n");
601 retval = 0;
602 goto finish;
604 case PA_CMD_CHECK: {
605 pid_t pid;
607 if (d < argc) {
608 pa_log("Too many arguments.\n");
609 goto finish;
612 if (pa_pid_file_check_running(&pid, "pulseaudio") < 0)
613 pa_log_info(_("Daemon not running"));
614 else {
615 pa_log_info(_("Daemon running as PID %u"), pid);
616 retval = 0;
619 goto finish;
622 case PA_CMD_KILL:
624 if (d < argc) {
625 pa_log("Too many arguments.\n");
626 goto finish;
629 if (pa_pid_file_kill(SIGINT, NULL, "pulseaudio") < 0)
630 pa_log(_("Failed to kill daemon: %s"), pa_cstrerror(errno));
631 else
632 retval = 0;
634 goto finish;
636 case PA_CMD_CLEANUP_SHM:
638 if (d < argc) {
639 pa_log("Too many arguments.\n");
640 goto finish;
643 if (pa_shm_cleanup() >= 0)
644 retval = 0;
646 goto finish;
648 default:
649 pa_assert(conf->cmd == PA_CMD_DAEMON || conf->cmd == PA_CMD_START);
652 if (d < argc) {
653 pa_log("Too many arguments.\n");
654 goto finish;
657 if (getuid() == 0 && !conf->system_instance)
658 pa_log_warn(_("This program is not intended to be run as root (unless --system is specified)."));
659 #ifndef HAVE_DBUS /* A similar, only a notice worthy check was done earlier, if D-Bus is enabled. */
660 else if (getuid() != 0 && conf->system_instance) {
661 pa_log(_("Root privileges required."));
662 goto finish;
664 #endif
666 if (conf->cmd == PA_CMD_START && conf->system_instance) {
667 pa_log(_("--start not supported for system instances."));
668 goto finish;
671 if (conf->cmd == PA_CMD_START && (configured_address = check_configured_address())) {
672 pa_log_notice(_("User-configured server at %s, not autospawning."), configured_address);
673 pa_xfree(configured_address);
674 retval = 0;
675 goto finish;
678 if (conf->system_instance && !conf->disallow_exit)
679 pa_log_warn(_("Running in system mode, but --disallow-exit not set!"));
681 if (conf->system_instance && !conf->disallow_module_loading)
682 pa_log_warn(_("Running in system mode, but --disallow-module-loading not set!"));
684 if (conf->system_instance && !conf->disable_shm) {
685 pa_log_notice(_("Running in system mode, forcibly disabling SHM mode!"));
686 conf->disable_shm = TRUE;
689 if (conf->system_instance && conf->exit_idle_time >= 0) {
690 pa_log_notice(_("Running in system mode, forcibly disabling exit idle time!"));
691 conf->exit_idle_time = -1;
694 if (conf->cmd == PA_CMD_START) {
695 /* If we shall start PA only when it is not running yet, we
696 * first take the autospawn lock to make things
697 * synchronous. */
699 if ((autospawn_fd = pa_autospawn_lock_init()) < 0) {
700 pa_log("Failed to initialize autospawn lock");
701 goto finish;
704 if ((pa_autospawn_lock_acquire(TRUE) < 0)) {
705 pa_log("Failed to acquire autospawn lock");
706 goto finish;
709 autospawn_locked = TRUE;
712 if (conf->daemonize) {
713 pid_t child;
715 if (pa_stdio_acquire() < 0) {
716 pa_log(_("Failed to acquire stdio."));
717 goto finish;
720 #ifdef HAVE_FORK
721 if (pipe(daemon_pipe) < 0) {
722 pa_log(_("pipe() failed: %s"), pa_cstrerror(errno));
723 goto finish;
726 if ((child = fork()) < 0) {
727 pa_log(_("fork() failed: %s"), pa_cstrerror(errno));
728 goto finish;
731 if (child != 0) {
732 ssize_t n;
733 /* Father */
735 pa_assert_se(pa_close(daemon_pipe[1]) == 0);
736 daemon_pipe[1] = -1;
738 if ((n = pa_loop_read(daemon_pipe[0], &retval, sizeof(retval), NULL)) != sizeof(retval)) {
740 if (n < 0)
741 pa_log(_("read() failed: %s"), pa_cstrerror(errno));
743 retval = 1;
746 if (retval)
747 pa_log(_("Daemon startup failed."));
748 else
749 pa_log_info(_("Daemon startup successful."));
751 goto finish;
754 if (autospawn_fd >= 0) {
755 /* The lock file is unlocked from the parent, so we need
756 * to close it in the child */
758 pa_autospawn_lock_release();
759 pa_autospawn_lock_done(TRUE);
761 autospawn_locked = FALSE;
762 autospawn_fd = -1;
765 pa_assert_se(pa_close(daemon_pipe[0]) == 0);
766 daemon_pipe[0] = -1;
767 #endif
769 if (conf->auto_log_target)
770 pa_log_set_target(PA_LOG_SYSLOG);
772 #ifdef HAVE_SETSID
773 if (setsid() < 0) {
774 pa_log(_("setsid() failed: %s"), pa_cstrerror(errno));
775 goto finish;
777 #endif
779 /* We now are a session and process group leader. Let's fork
780 * again and let the father die, so that we'll become a
781 * process that can never acquire a TTY again, in a session and
782 * process group without leader */
784 #ifdef HAVE_FORK
785 if ((child = fork()) < 0) {
786 pa_log(_("fork() failed: %s"), pa_cstrerror(errno));
787 goto finish;
790 if (child != 0) {
791 retval = 0;
792 goto finish;
794 #endif
796 #ifdef SIGTTOU
797 signal(SIGTTOU, SIG_IGN);
798 #endif
799 #ifdef SIGTTIN
800 signal(SIGTTIN, SIG_IGN);
801 #endif
802 #ifdef SIGTSTP
803 signal(SIGTSTP, SIG_IGN);
804 #endif
806 pa_nullify_stdfds();
809 pa_set_env_and_record("PULSE_INTERNAL", "1");
810 pa_assert_se(chdir("/") == 0);
811 umask(0022);
813 #ifdef HAVE_SYS_RESOURCE_H
814 set_all_rlimits(conf);
815 #endif
816 pa_rtclock_hrtimer_enable();
818 pa_raise_priority(conf->nice_level);
820 if (conf->system_instance)
821 if (change_user() < 0)
822 goto finish;
824 pa_set_env_and_record("PULSE_SYSTEM", conf->system_instance ? "1" : "0");
826 pa_log_info(_("This is PulseAudio %s"), PACKAGE_VERSION);
827 pa_log_debug(_("Compilation host: %s"), CANONICAL_HOST);
828 pa_log_debug(_("Compilation CFLAGS: %s"), PA_CFLAGS);
830 s = pa_uname_string();
831 pa_log_debug(_("Running on host: %s"), s);
832 pa_xfree(s);
834 pa_log_debug(_("Found %u CPUs."), pa_ncpus());
836 pa_log_info(_("Page size is %lu bytes"), (unsigned long) PA_PAGE_SIZE);
838 #ifdef HAVE_VALGRIND_MEMCHECK_H
839 pa_log_debug(_("Compiled with Valgrind support: yes"));
840 #else
841 pa_log_debug(_("Compiled with Valgrind support: no"));
842 #endif
844 pa_log_debug(_("Running in valgrind mode: %s"), pa_yes_no(pa_in_valgrind()));
846 pa_log_debug(_("Running in VM: %s"), pa_yes_no(pa_running_in_vm()));
848 #ifdef __OPTIMIZE__
849 pa_log_debug(_("Optimized build: yes"));
850 #else
851 pa_log_debug(_("Optimized build: no"));
852 #endif
854 #ifdef NDEBUG
855 pa_log_debug(_("NDEBUG defined, all asserts disabled."));
856 #elif defined(FASTPATH)
857 pa_log_debug(_("FASTPATH defined, only fast path asserts disabled."));
858 #else
859 pa_log_debug(_("All asserts enabled."));
860 #endif
862 if (!(s = pa_machine_id())) {
863 pa_log(_("Failed to get machine ID"));
864 goto finish;
866 pa_log_info(_("Machine ID is %s."), s);
867 pa_xfree(s);
869 if ((s = pa_session_id())) {
870 pa_log_info(_("Session ID is %s."), s);
871 pa_xfree(s);
874 if (!(s = pa_get_runtime_dir()))
875 goto finish;
876 pa_log_info(_("Using runtime directory %s."), s);
877 pa_xfree(s);
879 if (!(s = pa_get_state_dir()))
880 goto finish;
881 pa_log_info(_("Using state directory %s."), s);
882 pa_xfree(s);
884 pa_log_info(_("Using modules directory %s."), conf->dl_search_path);
886 pa_log_info(_("Running in system mode: %s"), pa_yes_no(pa_in_system_mode()));
888 if (pa_in_system_mode())
889 pa_log_warn(_("OK, so you are running PA in system mode. Please note that you most likely shouldn't be doing that.\n"
890 "If you do it nonetheless then it's your own fault if things don't work as expected.\n"
891 "Please read http://pulseaudio.org/wiki/WhatIsWrongWithSystemMode for an explanation why system mode is usually a bad idea."));
893 if (conf->use_pid_file) {
894 int z;
896 if ((z = pa_pid_file_create("pulseaudio")) != 0) {
898 if (conf->cmd == PA_CMD_START && z > 0) {
899 /* If we are already running and with are run in
900 * --start mode, then let's return this as success. */
902 retval = 0;
903 goto finish;
906 pa_log(_("pa_pid_file_create() failed."));
907 goto finish;
910 valid_pid_file = TRUE;
913 pa_disable_sigpipe();
915 if (pa_rtclock_hrtimer())
916 pa_log_info(_("Fresh high-resolution timers available! Bon appetit!"));
917 else
918 pa_log_info(_("Dude, your kernel stinks! The chef's recommendation today is Linux with high-resolution timers enabled!"));
920 if (conf->lock_memory) {
921 #ifdef HAVE_SYS_MMAN_H
922 if (mlockall(MCL_FUTURE) < 0)
923 pa_log_warn("mlockall() failed: %s", pa_cstrerror(errno));
924 else
925 pa_log_info("Successfully locked process into memory.");
926 #else
927 pa_log_warn("Memory locking requested but not supported on platform.");
928 #endif
931 pa_memtrap_install();
933 pa_assert_se(mainloop = pa_mainloop_new());
935 if (!(c = pa_core_new(pa_mainloop_get_api(mainloop), !conf->disable_shm, conf->shm_size))) {
936 pa_log(_("pa_core_new() failed."));
937 goto finish;
940 c->default_sample_spec = conf->default_sample_spec;
941 c->default_channel_map = conf->default_channel_map;
942 c->default_n_fragments = conf->default_n_fragments;
943 c->default_fragment_size_msec = conf->default_fragment_size_msec;
944 c->sync_volume_safety_margin_usec = conf->sync_volume_safety_margin_usec;
945 c->sync_volume_extra_delay_usec = conf->sync_volume_extra_delay_usec;
946 c->exit_idle_time = conf->exit_idle_time;
947 c->scache_idle_time = conf->scache_idle_time;
948 c->resample_method = conf->resample_method;
949 c->realtime_priority = conf->realtime_priority;
950 c->realtime_scheduling = !!conf->realtime_scheduling;
951 c->disable_remixing = !!conf->disable_remixing;
952 c->disable_lfe_remixing = !!conf->disable_lfe_remixing;
953 c->sync_volume = !!conf->sync_volume;
954 c->running_as_daemon = !!conf->daemonize;
955 c->disallow_exit = conf->disallow_exit;
956 c->flat_volumes = conf->flat_volumes;
957 #ifdef HAVE_DBUS
958 c->server_type = conf->local_server_type;
959 #endif
961 c->cpu_info.cpu_type = PA_CPU_UNDEFINED;
962 if (!getenv("PULSE_NO_SIMD")) {
963 if (pa_cpu_init_x86(&(c->cpu_info.flags.x86)))
964 c->cpu_info.cpu_type = PA_CPU_X86;
965 if (pa_cpu_init_arm(&(c->cpu_info.flags.arm)))
966 c->cpu_info.cpu_type = PA_CPU_ARM;
969 pa_assert_se(pa_signal_init(pa_mainloop_get_api(mainloop)) == 0);
970 pa_signal_new(SIGINT, signal_callback, c);
971 pa_signal_new(SIGTERM, signal_callback, c);
972 #ifdef SIGUSR1
973 pa_signal_new(SIGUSR1, signal_callback, c);
974 #endif
975 #ifdef SIGUSR2
976 pa_signal_new(SIGUSR2, signal_callback, c);
977 #endif
978 #ifdef SIGHUP
979 pa_signal_new(SIGHUP, signal_callback, c);
980 #endif
982 #ifdef OS_IS_WIN32
983 win32_timer = pa_mainloop_get_api(mainloop)->rtclock_time_new(pa_mainloop_get_api(mainloop), pa_gettimeofday(&win32_tv), message_cb, NULL);
984 #endif
986 if (!conf->no_cpu_limit)
987 pa_assert_se(pa_cpu_limit_init(pa_mainloop_get_api(mainloop)) == 0);
989 buf = pa_strbuf_new();
991 #ifdef HAVE_DBUS
992 if (start_server) {
993 #endif
994 if (conf->load_default_script_file) {
995 FILE *f;
997 if ((f = pa_daemon_conf_open_default_script_file(conf))) {
998 r = pa_cli_command_execute_file_stream(c, f, buf, &conf->fail);
999 fclose(f);
1003 if (r >= 0)
1004 r = pa_cli_command_execute(c, conf->script_commands, buf, &conf->fail);
1006 pa_log_error("%s", s = pa_strbuf_tostring_free(buf));
1007 pa_xfree(s);
1009 if (r < 0 && conf->fail) {
1010 pa_log(_("Failed to initialize daemon."));
1011 goto finish;
1014 if (!c->modules || pa_idxset_size(c->modules) == 0) {
1015 pa_log(_("Daemon startup without any loaded modules, refusing to work."));
1016 goto finish;
1018 #ifdef HAVE_DBUS
1019 } else {
1020 /* When we just provide the D-Bus server lookup service, we don't want
1021 * any modules to be loaded. We haven't loaded any so far, so one might
1022 * think there's no way to contact the server, but receiving certain
1023 * signals could still cause modules to load. */
1024 conf->disallow_module_loading = TRUE;
1026 #endif
1028 /* We completed the initial module loading, so let's disable it
1029 * from now on, if requested */
1030 c->disallow_module_loading = !!conf->disallow_module_loading;
1032 #ifdef HAVE_DBUS
1033 if (!conf->system_instance) {
1034 if (!(server_lookup = pa_dbusobj_server_lookup_new(c)))
1035 goto finish;
1036 if (!(lookup_service_bus = register_dbus_name(c, DBUS_BUS_SESSION, "org.PulseAudio1")))
1037 goto finish;
1040 if (start_server && !(server_bus = register_dbus_name(c, conf->system_instance ? DBUS_BUS_SYSTEM : DBUS_BUS_SESSION, "org.pulseaudio.Server")))
1041 goto finish;
1042 #endif
1044 #ifdef HAVE_FORK
1045 if (daemon_pipe[1] >= 0) {
1046 int ok = 0;
1047 pa_loop_write(daemon_pipe[1], &ok, sizeof(ok), NULL);
1048 pa_close(daemon_pipe[1]);
1049 daemon_pipe[1] = -1;
1051 #endif
1053 pa_log_info(_("Daemon startup complete."));
1055 retval = 0;
1056 if (pa_mainloop_run(mainloop, &retval) < 0)
1057 goto finish;
1059 pa_log_info(_("Daemon shutdown initiated."));
1061 finish:
1062 #ifdef HAVE_DBUS
1063 if (server_bus)
1064 pa_dbus_connection_unref(server_bus);
1065 if (lookup_service_bus)
1066 pa_dbus_connection_unref(lookup_service_bus);
1067 if (server_lookup)
1068 pa_dbusobj_server_lookup_free(server_lookup);
1069 #endif
1071 if (autospawn_fd >= 0) {
1072 if (autospawn_locked)
1073 pa_autospawn_lock_release();
1075 pa_autospawn_lock_done(FALSE);
1078 #ifdef OS_IS_WIN32
1079 if (win32_timer)
1080 pa_mainloop_get_api(mainloop)->time_free(win32_timer);
1081 #endif
1083 if (c) {
1084 pa_core_unref(c);
1085 pa_log_info(_("Daemon terminated."));
1088 if (!conf->no_cpu_limit)
1089 pa_cpu_limit_done();
1091 pa_signal_done();
1093 #ifdef HAVE_FORK
1094 if (daemon_pipe[1] >= 0)
1095 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
1097 pa_close_pipe(daemon_pipe);
1098 #endif
1100 if (mainloop)
1101 pa_mainloop_free(mainloop);
1103 if (conf)
1104 pa_daemon_conf_free(conf);
1106 if (valid_pid_file)
1107 pa_pid_file_remove();
1109 /* This has no real purpose except making things valgrind-clean */
1110 pa_unset_env_recorded();
1112 #ifdef OS_IS_WIN32
1113 WSACleanup();
1114 #endif
1116 if (ltdl_init)
1117 pa_ltdl_done();
1119 #ifdef HAVE_DBUS
1120 dbus_shutdown();
1121 #endif
1123 return retval;