]> code.delx.au - pulseaudio/blob - src/daemon/main.c
* add new function pa_check_in_group()
[pulseaudio] / src / daemon / main.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 or (at your option) any later version.
10
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <unistd.h>
27 #include <errno.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <signal.h>
32 #include <stddef.h>
33 #include <assert.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 <pwd.h>
41 #include <grp.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_LIBWRAP
50 #include <syslog.h>
51 #include <tcpd.h>
52 #endif
53
54 #include "../pulsecore/winsock.h"
55
56 #include <pulse/mainloop.h>
57 #include <pulse/mainloop-signal.h>
58 #include <pulse/xmalloc.h>
59
60 #include <pulsecore/core-error.h>
61 #include <pulsecore/core.h>
62 #include <pulsecore/memblock.h>
63 #include <pulsecore/module.h>
64 #include <pulsecore/cli-command.h>
65 #include <pulsecore/log.h>
66 #include <pulsecore/core-util.h>
67 #include <pulsecore/sioman.h>
68 #include <pulsecore/cli-text.h>
69 #include <pulsecore/pid.h>
70 #include <pulsecore/namereg.h>
71 #include <pulsecore/random.h>
72
73 #include "cmdline.h"
74 #include "cpulimit.h"
75 #include "daemon-conf.h"
76 #include "dumpmodules.h"
77 #include "caps.h"
78
79 #ifdef HAVE_LIBWRAP
80 /* Only one instance of these variables */
81 int allow_severity = LOG_INFO;
82 int deny_severity = LOG_WARNING;
83 #endif
84
85 #ifdef HAVE_OSS
86 /* padsp looks for this symbol in the running process and disables
87 * itself if it finds it and it is set to 7 (which is actually a bit
88 * mask). For details see padsp. */
89 int __padsp_disabled__ = 7;
90 #endif
91
92 #ifdef OS_IS_WIN32
93
94 static void message_cb(pa_mainloop_api*a, pa_time_event*e, PA_GCC_UNUSED const struct timeval *tv, void *userdata) {
95 MSG msg;
96 struct timeval tvnext;
97
98 while(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
99 if (msg.message == WM_QUIT)
100 raise(SIGTERM);
101 else {
102 TranslateMessage(&msg);
103 DispatchMessage(&msg);
104 }
105 }
106
107 pa_timeval_add(pa_gettimeofday(&tvnext), 100000);
108 a->time_restart(e, &tvnext);
109 }
110
111 #endif
112
113 static void signal_callback(pa_mainloop_api*m, PA_GCC_UNUSED pa_signal_event *e, int sig, void *userdata) {
114 pa_log_info(__FILE__": Got signal %s.", pa_strsignal(sig));
115
116 switch (sig) {
117 #ifdef SIGUSR1
118 case SIGUSR1:
119 pa_module_load(userdata, "module-cli", NULL);
120 break;
121 #endif
122
123 #ifdef SIGUSR2
124 case SIGUSR2:
125 pa_module_load(userdata, "module-cli-protocol-unix", NULL);
126 break;
127 #endif
128
129 #ifdef SIGHUP
130 case SIGHUP: {
131 char *c = pa_full_status_string(userdata);
132 pa_log_notice("%s", c);
133 pa_xfree(c);
134 return;
135 }
136 #endif
137
138 case SIGINT:
139 case SIGTERM:
140 default:
141 pa_log_info(__FILE__": Exiting.");
142 m->quit(m, 1);
143 break;
144 }
145 }
146
147 static void close_pipe(int p[2]) {
148 if (p[0] != -1)
149 close(p[0]);
150 if (p[1] != -1)
151 close(p[1]);
152 p[0] = p[1] = -1;
153 }
154
155 #define set_env(key, value) putenv(pa_sprintf_malloc("%s=%s", (key), (value)))
156
157 static int change_user(void) {
158 struct passwd *pw;
159 struct group * gr;
160 int r;
161
162 if (!(pw = getpwnam(PA_SYSTEM_USER))) {
163 pa_log(__FILE__": Failed to find user '%s'.", PA_SYSTEM_USER);
164 return -1;
165 }
166
167 if (!(gr = getgrnam(PA_SYSTEM_GROUP))) {
168 pa_log(__FILE__": Failed to find group '%s'.", PA_SYSTEM_GROUP);
169 return -1;
170 }
171
172 pa_log_info(__FILE__": Found user '%s' (UID %lu) and group '%s' (GID %lu).",
173 PA_SYSTEM_USER, (unsigned long) pw->pw_uid,
174 PA_SYSTEM_GROUP, (unsigned long) gr->gr_gid);
175
176 if (pw->pw_gid != gr->gr_gid) {
177 pa_log(__FILE__": GID of user '%s' and of group '%s' don't match.", PA_SYSTEM_USER, PA_SYSTEM_GROUP);
178 return -1;
179 }
180
181 if (strcmp(pw->pw_dir, PA_SYSTEM_RUNTIME_PATH) != 0)
182 pa_log_warn(__FILE__": Warning: home directory of user '%s' is not '%s', ignoring.", PA_SYSTEM_USER, PA_SYSTEM_RUNTIME_PATH);
183
184 if (pa_make_secure_dir(PA_SYSTEM_RUNTIME_PATH, 0755, pw->pw_uid, gr->gr_gid) < 0) {
185 pa_log(__FILE__": Failed to create '%s': %s", PA_SYSTEM_RUNTIME_PATH, pa_cstrerror(errno));
186 return -1;
187 }
188
189 if (initgroups(PA_SYSTEM_USER, gr->gr_gid) != 0) {
190 pa_log(__FILE__": Failed to change group list: %s", pa_cstrerror(errno));
191 return -1;
192 }
193
194 #if defined(HAVE_SETRESGID)
195 r = setresgid(gr->gr_gid, gr->gr_gid, gr->gr_gid);
196 #elif defined(HAVE_SETEGID)
197 if ((r = setgid(gr->gr_gid)) >= 0)
198 r = setegid(gr->gr_gid);
199 #elif defined(HAVE_SETREGID)
200 r = setregid(gr->gr_gid, gr->gr_gid);
201 #else
202 #error "No API to drop priviliges"
203 #endif
204
205 if (r < 0) {
206 pa_log(__FILE__": Failed to change GID: %s", pa_cstrerror(errno));
207 return -1;
208 }
209
210 #if defined(HAVE_SETRESUID)
211 r = setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid);
212 #elif defined(HAVE_SETEUID)
213 if ((r = setuid(pw->pw_uid)) >= 0)
214 r = seteuid(pw->pw_uid);
215 #elif defined(HAVE_SETREUID)
216 r = setreuid(pw->pw_uid, pw->pw_uid);
217 #else
218 #error "No API to drop priviliges"
219 #endif
220
221 if (r < 0) {
222 pa_log(__FILE__": Failed to change UID: %s", pa_cstrerror(errno));
223 return -1;
224 }
225
226 set_env("USER", PA_SYSTEM_USER);
227 set_env("LOGNAME", PA_SYSTEM_GROUP);
228 set_env("HOME", PA_SYSTEM_RUNTIME_PATH);
229
230 /* Relevant for pa_runtime_path() */
231 set_env("PULSE_RUNTIME_PATH", PA_SYSTEM_RUNTIME_PATH);
232 set_env("PULSE_CONFIG_PATH", PA_SYSTEM_RUNTIME_PATH);
233
234 pa_log_info(__FILE__": Successfully dropped root privileges.");
235
236 return 0;
237 }
238
239 static int create_runtime_dir(void) {
240 char fn[PATH_MAX];
241
242 pa_runtime_path(NULL, fn, sizeof(fn));
243
244 if (pa_make_secure_dir(fn, 0700, getuid(), getgid()) < 0) {
245 pa_log(__FILE__": Failed to create '%s': %s", fn, pa_cstrerror(errno));
246 return -1;
247 }
248
249 return 0;
250 }
251
252 int main(int argc, char *argv[]) {
253 pa_core *c;
254 pa_strbuf *buf = NULL;
255 pa_daemon_conf *conf;
256 pa_mainloop *mainloop;
257
258 char *s;
259 int r, retval = 1, d = 0;
260 int daemon_pipe[2] = { -1, -1 };
261 int suid_root;
262 int valid_pid_file = 0;
263
264 #ifdef HAVE_GETUID
265 gid_t gid = (gid_t) -1;
266 #endif
267
268 #ifdef OS_IS_WIN32
269 pa_time_event *timer;
270 struct timeval tv;
271 #endif
272
273 setlocale(LC_ALL, "");
274
275 if (getuid() != 0)
276 pa_limit_caps();
277
278 #ifdef HAVE_GETUID
279 suid_root = getuid() != 0 && geteuid() == 0;
280
281 if (suid_root && (pa_own_uid_in_group(PA_REALTIME_GROUP, &gid) <= 0 || gid >= 1000)) {
282 pa_log_warn(__FILE__": WARNING: called SUID root, but not in group '"PA_REALTIME_GROUP"'.");
283 pa_drop_root();
284 }
285 #else
286 suid_root = 0;
287 #endif
288
289 LTDL_SET_PRELOADED_SYMBOLS();
290
291 r = lt_dlinit();
292 assert(r == 0);
293
294 #ifdef OS_IS_WIN32
295 {
296 WSADATA data;
297 WSAStartup(MAKEWORD(2, 0), &data);
298 }
299 #endif
300
301 pa_random_seed();
302
303 pa_log_set_ident("pulseaudio");
304
305 conf = pa_daemon_conf_new();
306
307 if (pa_daemon_conf_load(conf, NULL) < 0)
308 goto finish;
309
310 if (pa_daemon_conf_env(conf) < 0)
311 goto finish;
312
313 if (pa_cmdline_parse(conf, argc, argv, &d) < 0) {
314 pa_log(__FILE__": failed to parse command line.");
315 goto finish;
316 }
317
318 pa_log_set_maximal_level(conf->log_level);
319 pa_log_set_target(conf->auto_log_target ? PA_LOG_STDERR : conf->log_target, NULL);
320
321 if (conf->high_priority && conf->cmd == PA_CMD_DAEMON)
322 pa_raise_priority();
323
324 if (getuid() != 0)
325 pa_drop_caps();
326
327 if (suid_root)
328 pa_drop_root();
329
330 if (conf->dl_search_path)
331 lt_dlsetsearchpath(conf->dl_search_path);
332
333 switch (conf->cmd) {
334 case PA_CMD_DUMP_MODULES:
335 pa_dump_modules(conf, argc-d, argv+d);
336 retval = 0;
337 goto finish;
338
339 case PA_CMD_DUMP_CONF: {
340 s = pa_daemon_conf_dump(conf);
341 fputs(s, stdout);
342 pa_xfree(s);
343 retval = 0;
344 goto finish;
345 }
346
347 case PA_CMD_HELP :
348 pa_cmdline_help(argv[0]);
349 retval = 0;
350 goto finish;
351
352 case PA_CMD_VERSION :
353 printf(PACKAGE_NAME" "PACKAGE_VERSION"\n");
354 retval = 0;
355 goto finish;
356
357 case PA_CMD_CHECK: {
358 pid_t pid;
359
360 if (pa_pid_file_check_running(&pid) < 0) {
361 pa_log_info(__FILE__": daemon not running");
362 } else {
363 pa_log_info(__FILE__": daemon running as PID %u", pid);
364 retval = 0;
365 }
366
367 goto finish;
368
369 }
370 case PA_CMD_KILL:
371
372 if (pa_pid_file_kill(SIGINT, NULL) < 0)
373 pa_log(__FILE__": failed to kill daemon.");
374 else
375 retval = 0;
376
377 goto finish;
378
379 default:
380 assert(conf->cmd == PA_CMD_DAEMON);
381 }
382
383 if (getuid() == 0 && !conf->system_instance) {
384 pa_log(__FILE__": This program is not intended to be run as root (unless --system is specified).");
385 goto finish;
386 } else if (getuid() != 0 && conf->system_instance) {
387 pa_log(__FILE__": Root priviliges required.");
388 goto finish;
389 }
390
391 if (conf->daemonize) {
392 pid_t child;
393 int tty_fd;
394
395 if (pa_stdio_acquire() < 0) {
396 pa_log(__FILE__": failed to acquire stdio.");
397 goto finish;
398 }
399
400 #ifdef HAVE_FORK
401 if (pipe(daemon_pipe) < 0) {
402 pa_log(__FILE__": failed to create pipe.");
403 goto finish;
404 }
405
406 if ((child = fork()) < 0) {
407 pa_log(__FILE__": fork() failed: %s", pa_cstrerror(errno));
408 goto finish;
409 }
410
411 if (child != 0) {
412 /* Father */
413
414 close(daemon_pipe[1]);
415 daemon_pipe[1] = -1;
416
417 if (pa_loop_read(daemon_pipe[0], &retval, sizeof(retval), NULL) != sizeof(retval)) {
418 pa_log(__FILE__": read() failed: %s", pa_cstrerror(errno));
419 retval = 1;
420 }
421
422 if (retval)
423 pa_log(__FILE__": daemon startup failed.");
424 else
425 pa_log_info(__FILE__": daemon startup successful.");
426
427 goto finish;
428 }
429
430 close(daemon_pipe[0]);
431 daemon_pipe[0] = -1;
432 #endif
433
434 if (conf->auto_log_target)
435 pa_log_set_target(PA_LOG_SYSLOG, NULL);
436
437 #ifdef HAVE_SETSID
438 setsid();
439 #endif
440 #ifdef HAVE_SETPGID
441 setpgid(0,0);
442 #endif
443
444 #ifndef OS_IS_WIN32
445 close(0);
446 close(1);
447 close(2);
448
449 open("/dev/null", O_RDONLY);
450 open("/dev/null", O_WRONLY);
451 open("/dev/null", O_WRONLY);
452 #else
453 FreeConsole();
454 #endif
455
456 #ifdef SIGTTOU
457 signal(SIGTTOU, SIG_IGN);
458 #endif
459 #ifdef SIGTTIN
460 signal(SIGTTIN, SIG_IGN);
461 #endif
462 #ifdef SIGTSTP
463 signal(SIGTSTP, SIG_IGN);
464 #endif
465
466 #ifdef TIOCNOTTY
467 if ((tty_fd = open("/dev/tty", O_RDWR)) >= 0) {
468 ioctl(tty_fd, TIOCNOTTY, (char*) 0);
469 close(tty_fd);
470 }
471 #endif
472 }
473
474 chdir("/");
475 umask(0022);
476
477 if (conf->system_instance) {
478 if (change_user() < 0)
479 goto finish;
480 } else if (create_runtime_dir() < 0)
481 goto finish;
482
483 if (conf->use_pid_file) {
484 if (pa_pid_file_create() < 0) {
485 pa_log(__FILE__": pa_pid_file_create() failed.");
486 #ifdef HAVE_FORK
487 if (conf->daemonize)
488 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
489 #endif
490 goto finish;
491 }
492
493 valid_pid_file = 1;
494 }
495
496 #ifdef SIGPIPE
497 signal(SIGPIPE, SIG_IGN);
498 #endif
499
500 mainloop = pa_mainloop_new();
501 assert(mainloop);
502
503 c = pa_core_new(pa_mainloop_get_api(mainloop));
504 assert(c);
505 c->is_system_instance = !!conf->system_instance;
506
507 r = pa_signal_init(pa_mainloop_get_api(mainloop));
508 assert(r == 0);
509 pa_signal_new(SIGINT, signal_callback, c);
510 pa_signal_new(SIGTERM, signal_callback, c);
511
512 #ifdef SIGUSR1
513 pa_signal_new(SIGUSR1, signal_callback, c);
514 #endif
515 #ifdef SIGUSR2
516 pa_signal_new(SIGUSR2, signal_callback, c);
517 #endif
518 #ifdef SIGHUP
519 pa_signal_new(SIGHUP, signal_callback, c);
520 #endif
521
522 #ifdef OS_IS_WIN32
523 timer = pa_mainloop_get_api(mainloop)->time_new(
524 pa_mainloop_get_api(mainloop), pa_gettimeofday(&tv), message_cb, NULL);
525 assert(timer);
526 #endif
527
528 if (conf->daemonize)
529 c->running_as_daemon = 1;
530
531 oil_init();
532
533 r = pa_cpu_limit_init(pa_mainloop_get_api(mainloop));
534 assert(r == 0);
535
536 buf = pa_strbuf_new();
537 if (conf->default_script_file)
538 r = pa_cli_command_execute_file(c, conf->default_script_file, buf, &conf->fail);
539
540 if (r >= 0)
541 r = pa_cli_command_execute(c, conf->script_commands, buf, &conf->fail);
542 pa_log_error("%s", s = pa_strbuf_tostring_free(buf));
543 pa_xfree(s);
544
545 if (r < 0 && conf->fail) {
546 pa_log(__FILE__": failed to initialize daemon.");
547 #ifdef HAVE_FORK
548 if (conf->daemonize)
549 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
550 #endif
551 } else if (!c->modules || pa_idxset_size(c->modules) == 0) {
552 pa_log(__FILE__": daemon startup without any loaded modules, refusing to work.");
553 #ifdef HAVE_FORK
554 if (conf->daemonize)
555 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
556 #endif
557 } else {
558
559 retval = 0;
560 #ifdef HAVE_FORK
561 if (conf->daemonize)
562 pa_loop_write(daemon_pipe[1], &retval, sizeof(retval), NULL);
563 #endif
564
565 c->disallow_module_loading = conf->disallow_module_loading;
566 c->exit_idle_time = conf->exit_idle_time;
567 c->module_idle_time = conf->module_idle_time;
568 c->scache_idle_time = conf->scache_idle_time;
569 c->resample_method = conf->resample_method;
570
571 if (c->default_sink_name &&
572 pa_namereg_get(c, c->default_sink_name, PA_NAMEREG_SINK, 1) == NULL) {
573 pa_log_error("%s : Fatal error. Default sink name (%s) does not exist in name register.", __FILE__, c->default_sink_name);
574 retval = 1;
575 } else {
576 pa_log_info(__FILE__": Daemon startup complete.");
577 if (pa_mainloop_run(mainloop, &retval) < 0)
578 retval = 1;
579 pa_log_info(__FILE__": Daemon shutdown initiated.");
580 }
581 }
582
583 #ifdef OS_IS_WIN32
584 pa_mainloop_get_api(mainloop)->time_free(timer);
585 #endif
586
587 pa_core_free(c);
588
589 pa_cpu_limit_done();
590 pa_signal_done();
591 pa_mainloop_free(mainloop);
592
593 pa_log_info(__FILE__": Daemon terminated.");
594
595 finish:
596
597 if (conf)
598 pa_daemon_conf_free(conf);
599
600 if (valid_pid_file)
601 pa_pid_file_remove();
602
603 close_pipe(daemon_pipe);
604
605 #ifdef OS_IS_WIN32
606 WSACleanup();
607 #endif
608
609 lt_dlexit();
610
611 return retval;
612 }