2 * Copyright (C) 1997 Andre Noll <maan@tuebingen.mpg.de>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file server.c Paraslash's main server. */
10 * \mainpage Main data structures and selected APIs:
12 * - Senders: \ref sender,
13 * - Audio file selector: \ref afs_info, \ref afs_table,
14 * - Audio format handler: \ref audio_format_handler, \ref afh_info
15 * - Receivers/filters/writers: \ref receiver, \ref receiver_node,
16 * \ref filter, \ref filter_node, \ref writer_node, \ref writer.
17 * - Scheduling: \ref sched.h,
18 * - Buffer trees: \ref buffer_tree.h,
19 * - Sideband API: \ref sideband.h,
20 * - Crypto: \ref crypt.h, \ref crypt_backend.h,
21 * - Error subsystem: \ref error.h,
22 * - Inter process communication: \ref ipc.h,
23 * - Forward error correction: \ref fec.h,
24 * - Daemons: \ref daemon.h,
25 * - Mixer API: \ref mix.h,
26 * - Interactive sessions: \ref interactive.h,
27 * - File descriptors: \ref fd.h,
28 * - Signals: \ref signal.h,
29 * - Networking: \ref net.h,
30 * - Time: \ref time.c,
31 * - Doubly linked lists: \ref list.h.
34 #include <netinet/in.h>
35 #include <sys/socket.h>
39 #include <sys/types.h>
40 #include <arpa/inet.h>
45 #include "server.lsg.h"
58 #include "close_on_fork.h"
64 #include "user_list.h"
68 /** Array of error strings. */
71 __printf_2_3
void (*para_log
)(int, const char*, ...) = daemon_log
;
73 /** Shut down non-authorized connections after that many seconds. */
74 #define ALARM_TIMEOUT 10
77 * Pointer to shared memory area for communication between para_server
78 * and its children. Exported to vss.c, command.c and to afs.
80 struct misc_meta_data
*mmd
;
83 * The active value for all config options of para_server.
85 * It is computed by merging the parse result of the command line options with
86 * the parse result of the config file.
88 struct lls_parse_result
*server_lpr
= NULL
;
90 /* Command line options (no config file options). Used in handle_sighup(). */
91 static struct lls_parse_result
*cmdline_lpr
;
93 /** A random value used in child context for authentication. */
94 uint32_t afs_socket_cookie
;
96 /** The mutex protecting the shared memory area containing the mmd struct. */
99 static struct sched sched
;
100 static struct signal_task
*signal_task
;
102 /** The task responsible for server command handling. */
103 struct server_command_task
{
104 /** TCP port on which para_server listens for connections. */
106 /** Copied from para_server's main function. */
108 /** Argument vector passed to para_server's main function. */
110 /** The command task structure for scheduling. */
115 * Return the list of tasks for the server process.
117 * This is called from \a com_tasks(). The helper is necessary since command
118 * handlers can not access the scheduler structure directly.
120 * \return A dynamically allocated string that must be freed by the caller.
122 char *server_get_tasks(void)
124 return get_task_list(&sched
);
128 * setup shared memory area and get mutex for locking
130 static void init_ipc_or_die(void)
133 int shmid
, ret
= shm_new(sizeof(struct misc_meta_data
));
138 ret
= shm_attach(shmid
, ATTACH_RW
, &shm
);
150 mmd
->num_commands
= 0;
152 mmd
->num_connects
= 0;
153 mmd
->active_connections
= 0;
154 mmd
->vss_status_flags
= VSS_NEXT
;
155 mmd
->new_vss_status_flags
= VSS_NEXT
;
158 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
163 * (Re-)read the server configuration files.
165 * \param reload Whether config file overrides command line.
167 * This function also re-opens the logfile and the user list. On SIGHUP it is
168 * called from both server and afs context.
170 void parse_config_or_die(bool reload
)
173 char *cf
= NULL
, *errctx
= NULL
, *user_list_file
= NULL
;
178 struct lls_parse_result
*cf_lpr
, *merged_lpr
;
179 char *home
= para_homedir();
182 if (OPT_GIVEN(CONFIG_FILE
))
183 cf
= para_strdup(OPT_STRING_VAL(CONFIG_FILE
));
185 cf
= make_message("%s/.paraslash/server.conf", home
);
186 if (!mmd
|| getpid() != mmd
->afs_pid
) {
187 if (OPT_GIVEN(USER_LIST
))
188 user_list_file
= para_strdup(OPT_STRING_VAL(USER_LIST
));
190 user_list_file
= make_message("%s/.paraslash/server.users", home
);
193 ret
= mmap_full_file(cf
, O_RDONLY
, &map
, &sz
, NULL
);
195 if (ret
!= -E_EMPTY
&& ret
!= -ERRNO_TO_PARA_ERROR(ENOENT
))
197 if (ret
== -ERRNO_TO_PARA_ERROR(ENOENT
) && OPT_GIVEN(CONFIG_FILE
))
199 server_lpr
= cmdline_lpr
;
202 ret
= lls(lls_convert_config(map
, sz
, NULL
, &cf_argv
, &errctx
));
203 para_munmap(map
, sz
);
207 ret
= lls(lls_parse(cf_argc
, cf_argv
, CMD_PTR
, &cf_lpr
, &errctx
));
208 lls_free_argv(cf_argv
);
211 if (reload
) /* config file overrides command line */
212 ret
= lls(lls_merge(cf_lpr
, cmdline_lpr
, CMD_PTR
, &merged_lpr
,
214 else /* command line options override config file options */
215 ret
= lls(lls_merge(cmdline_lpr
, cf_lpr
, CMD_PTR
, &merged_lpr
,
217 lls_free_parse_result(cf_lpr
, CMD_PTR
);
220 if (server_lpr
!= cmdline_lpr
)
221 lls_free_parse_result(server_lpr
, CMD_PTR
);
222 server_lpr
= merged_lpr
;
224 daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL
));
225 if (OPT_GIVEN(LOGFILE
)) {
226 daemon_set_logfile(OPT_STRING_VAL(LOGFILE
));
227 daemon_open_log_or_die();
229 if (daemon_init_colors_or_die(OPT_UINT32_VAL(COLOR
), COLOR_AUTO
,
230 COLOR_NO
, OPT_GIVEN(LOGFILE
))) {
232 for (i
= 0; i
< OPT_GIVEN(LOG_COLOR
); i
++)
233 daemon_set_log_color_or_die(lls_string_val(i
,
234 OPT_RESULT(LOG_COLOR
)));
236 daemon_set_flag(DF_LOG_PID
);
237 daemon_set_flag(DF_LOG_LL
);
238 daemon_set_flag(DF_LOG_TIME
);
239 if (OPT_GIVEN(LOG_TIMING
))
240 daemon_set_flag(DF_LOG_TIMING
);
241 daemon_set_priority(OPT_UINT32_VAL(PRIORITY
));
243 init_user_list(user_list_file
);
247 free(user_list_file
);
250 PARA_ERROR_LOG("%s\n", errctx
);
252 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
258 * called when server gets SIGHUP or when client invokes hup command.
260 static void handle_sighup(void)
263 PARA_NOTICE_LOG("SIGHUP\n");
264 parse_config_or_die(true);
266 kill(mmd
->afs_pid
, SIGHUP
);
269 static int signal_post_select(struct sched
*s
, __a_unused
void *context
)
271 int signum
= para_next_signal(&s
->rfds
);
282 int ret
= para_reap_child(&pid
);
285 if (pid
!= mmd
->afs_pid
)
287 PARA_EMERG_LOG("fatal: afs died\n");
292 /* die on sigint/sigterm. Kill all children too. */
295 PARA_EMERG_LOG("terminating on signal %d\n", signum
);
298 * We must wait for afs because afs catches SIGINT/SIGTERM.
299 * Before reacting to the signal, afs might want to use the
300 * shared memory area and the mmd mutex. If we destroy this
301 * mutex too early and afs tries to lock the shared memory
302 * area, the call to mutex_lock() will fail and terminate the
303 * afs process. This leads to dirty osl tables.
305 * There's no such problem with the other children of the
306 * server process (the command handlers) as these reset their
307 * SIGINT/SIGTERM handlers to the default action, i.e. these
308 * processes get killed immediately by the above kill().
310 PARA_INFO_LOG("waiting for afs (pid %d) to die\n",
312 waitpid(mmd
->afs_pid
, NULL
, 0);
314 free(mmd
->afd
.afhi
.chunk_table
);
316 mutex_destroy(mmd_mutex
);
323 static void init_signal_task(void)
325 signal_task
= signal_init_or_die();
326 para_install_sighandler(SIGINT
);
327 para_install_sighandler(SIGTERM
);
328 para_install_sighandler(SIGHUP
);
329 para_install_sighandler(SIGCHLD
);
330 para_sigaction(SIGPIPE
, SIG_IGN
);
331 add_close_on_fork_list(signal_task
->fd
);
332 signal_task
->task
= task_register(&(struct task_info
) {
334 .pre_select
= signal_pre_select
,
335 .post_select
= signal_post_select
,
336 .context
= signal_task
,
341 static void command_pre_select(struct sched
*s
, void *context
)
343 struct server_command_task
*sct
= context
;
344 para_fd_set(sct
->listen_fd
, &s
->rfds
, &s
->max_fileno
);
347 static int command_post_select(struct sched
*s
, void *context
)
349 struct server_command_task
*sct
= context
;
354 uint32_t *chunk_table
;
356 ret
= para_accept(sct
->listen_fd
, &s
->rfds
, NULL
, 0, &new_fd
);
360 mmd
->active_connections
++;
362 * The chunk table is a pointer located in the mmd struct that points
363 * to dynamically allocated memory, i.e. it must be freed by the parent
364 * and the child. However, as the mmd struct is in a shared memory
365 * area, there's no guarantee that after the fork this pointer is still
366 * valid in child context. As it is not used in the child anyway, we
367 * save it to a local variable before the fork and free the memory via
368 * that copy in the child directly after the fork.
370 chunk_table
= mmd
->afd
.afhi
.chunk_table
;
373 ret
= -ERRNO_TO_PARA_ERROR(errno
);
377 /* avoid problems with non-fork-safe PRNGs */
378 unsigned char buf
[16];
379 get_random_bytes_or_die(buf
, sizeof(buf
));
381 /* parent keeps accepting connections */
384 peer_name
= remote_name(new_fd
);
385 PARA_INFO_LOG("accepted connection from %s\n", peer_name
);
386 /* mmd might already have changed at this point */
388 alarm(ALARM_TIMEOUT
);
390 signal_shutdown(signal_task
);
392 * put info on who we are serving into argv[0] to make
393 * client ip visible in top/ps
395 for (i
= sct
->argc
- 1; i
>= 0; i
--)
396 memset(sct
->argv
[i
], 0, strlen(sct
->argv
[i
]));
397 i
= sct
->argc
- 1 - lls_num_inputs(cmdline_lpr
);
398 sprintf(sct
->argv
[i
], "para_server (serving %s)", peer_name
);
399 handle_connect(new_fd
, peer_name
);
403 PARA_CRIT_LOG("%s\n", para_strerror(-ret
));
407 static void init_server_command_task(int argc
, char **argv
)
410 static struct server_command_task server_command_task_struct
,
411 *sct
= &server_command_task_struct
;
413 PARA_NOTICE_LOG("initializing tcp command socket\n");
416 ret
= para_listen_simple(IPPROTO_TCP
, OPT_UINT32_VAL(PORT
));
419 sct
->listen_fd
= ret
;
420 ret
= mark_fd_nonblocking(sct
->listen_fd
);
423 add_close_on_fork_list(sct
->listen_fd
); /* child doesn't need the listener */
424 sct
->task
= task_register(&(struct task_info
) {
425 .name
= "server command",
426 .pre_select
= command_pre_select
,
427 .post_select
= command_post_select
,
432 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
436 static int init_afs(int argc
, char **argv
)
438 int ret
, afs_server_socket
[2];
442 ret
= socketpair(PF_UNIX
, SOCK_STREAM
, 0, afs_server_socket
);
445 get_random_bytes_or_die((unsigned char *)&afs_socket_cookie
,
446 sizeof(afs_socket_cookie
));
450 if (afs_pid
== 0) { /* child (afs) */
453 for (i
= argc
- 1; i
>= 0; i
--)
454 memset(argv
[i
], 0, strlen(argv
[i
]));
455 i
= argc
- lls_num_inputs(cmdline_lpr
) - 1;
456 sprintf(argv
[i
], "para_server (afs)");
457 close(afs_server_socket
[0]);
458 afs_init(afs_socket_cookie
, afs_server_socket
[1]);
460 mmd
->afs_pid
= afs_pid
;
461 close(afs_server_socket
[1]);
462 if (read(afs_server_socket
[0], &c
, 1) <= 0) {
463 PARA_EMERG_LOG("early afs exit\n");
466 ret
= mark_fd_nonblocking(afs_server_socket
[0]);
469 add_close_on_fork_list(afs_server_socket
[0]);
470 PARA_INFO_LOG("afs_socket: %d, afs_socket_cookie: %u\n",
471 afs_server_socket
[0], (unsigned) afs_socket_cookie
);
472 return afs_server_socket
[0];
475 static void handle_help_flags(void)
478 bool d
= OPT_GIVEN(DETAILED_HELP
);
481 help
= lls_long_help(CMD_PTR
);
482 else if (OPT_GIVEN(HELP
))
483 help
= lls_short_help(CMD_PTR
);
486 printf("%s\n", help
);
491 static void server_init(int argc
, char **argv
)
493 int ret
, afs_socket
, daemon_pipe
= -1;
497 /* parse command line options */
498 ret
= lls(lls_parse(argc
, argv
, CMD_PTR
, &cmdline_lpr
, &errctx
));
501 server_lpr
= cmdline_lpr
;
502 daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL
));
503 daemon_drop_privileges_or_die(OPT_STRING_VAL(USER
),
504 OPT_STRING_VAL(GROUP
));
505 version_handle_flag("server", OPT_GIVEN(VERSION
));
507 parse_config_or_die(false);
509 if (OPT_GIVEN(DAEMON
))
510 daemon_pipe
= daemonize(true /* parent waits for SIGTERM */);
511 init_random_seed_or_die();
512 daemon_log_welcome("server");
513 init_ipc_or_die(); /* init mmd struct and mmd->lock */
514 daemon_set_start_time();
515 PARA_NOTICE_LOG("initializing audio format handlers\n");
519 * Although afs uses its own signal handling we must ignore SIGUSR1
520 * _before_ the afs child process gets born by init_afs() below. It's
521 * racy to do this in the child because the parent might send SIGUSR1
522 * before the child gets a chance to ignore this signal.
524 * We also have to block SIGCHLD before the afs process is created
525 * because otherwise para_server does not notice if afs dies before the
526 * SIGCHLD handler has been installed for the parent process by
527 * init_signal_task() below.
529 para_sigaction(SIGUSR1
, SIG_IGN
);
530 para_block_signal(SIGCHLD
);
531 PARA_NOTICE_LOG("initializing the audio file selector\n");
532 afs_socket
= init_afs(argc
, argv
);
534 para_unblock_signal(SIGCHLD
);
535 PARA_NOTICE_LOG("initializing virtual streaming system\n");
536 vss_init(afs_socket
, &sched
);
537 init_server_command_task(argc
, argv
);
538 if (daemon_pipe
>= 0) {
539 if (write(daemon_pipe
, "\0", 1) < 0) {
540 PARA_EMERG_LOG("daemon_pipe: %s", strerror(errno
));
545 PARA_NOTICE_LOG("server init complete\n");
550 PARA_ERROR_LOG("%s\n", errctx
);
551 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
555 static void status_refresh(void)
557 static int prev_uptime
= -1, prev_events
= -1;
558 int uptime
= daemon_get_uptime(now
);
560 if (prev_events
!= mmd
->events
)
562 if (mmd
->new_vss_status_flags
!= mmd
->vss_status_flags
)
564 if (uptime
/ 60 != prev_uptime
/ 60)
570 prev_uptime
= uptime
;
571 prev_events
= mmd
->events
;
572 mmd
->vss_status_flags
= mmd
->new_vss_status_flags
;
573 PARA_DEBUG_LOG("%u events, forcing status update\n", mmd
->events
);
577 static int server_select(int max_fileno
, fd_set
*readfds
, fd_set
*writefds
,
578 struct timeval
*timeout_tv
)
583 mutex_unlock(mmd_mutex
);
584 ret
= para_select(max_fileno
+ 1, readfds
, writefds
, timeout_tv
);
585 mutex_lock(mmd_mutex
);
590 * The main function of para_server.
592 * \param argc Usual argument count.
593 * \param argv Usual argument vector.
595 * \return EXIT_SUCCESS or EXIT_FAILURE.
597 int main(int argc
, char *argv
[])
601 sched
.default_timeout
.tv_sec
= 1;
602 sched
.select_function
= server_select
;
604 server_init(argc
, argv
);
605 mutex_lock(mmd_mutex
);
606 ret
= schedule(&sched
);
607 sched_shutdown(&sched
);
608 lls_free_parse_result(server_lpr
, CMD_PTR
);
609 if (server_lpr
!= cmdline_lpr
)
610 lls_free_parse_result(cmdline_lpr
, CMD_PTR
);
612 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
613 exit(ret
< 0? EXIT_FAILURE
: EXIT_SUCCESS
);