]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - server.c
Merge branch 'refs/heads/t/logo-0.6'
[paraslash.git] / server.c
index caeeba420eb55b8b2775f671b064dfb9b1dee181..43ede2a91b752667ad4090e2742c4a844bf66250 100644 (file)
--- a/server.c
+++ b/server.c
 /*
- * Copyright (C) 1997-2008 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 1997 Andre Noll <maan@tuebingen.mpg.de>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
 
 /** \file server.c Paraslash's main server. */
 
-
 /**
- * \mainpage Paraslash API Reference
- *
- * Starting points for getting an overview are
- *
- * probably:
- *
- *     - The main programs: \ref server.c, \ref audiod.c, \ref client.c,
- *       \ref audioc.c, \ref fsck.c,
- *     - Server: \ref server_command, \ref sender,
- *     - Audio file selector: \ref audio_format_handler, \ref mood, \ref afs_table,
- *     - Client: \ref receiver, \ref receiver_node, \ref filter, \ref filter_node.
- *
- *
- * The gory details, listed by topic:
- *
- *     - Audio format handlers: \ref mp3_afh.c, \ref ogg_afh.c, \ref aac_afh.c,
- *     - Decoders: \ref mp3dec.c, \ref oggdec.c, \ref aacdec.c,
- *     - Volume normalizer: \ref compress.c,
- *     - Output: \ref alsa_write.c, \ref osx_write.c,
- *     - http: \ref http_recv.c, \ref http_send.c,
- *     - ortp: \ref ortp_recv.c, \ref ortp_send.c,
- *     - dccp: \ref dccp_recv.c, \ref dccp_send.c,
- *     - Audio file selector: \ref afs.c, \ref aft.c, \ref mood.c,
- *     - Afs structures: \ref afs_table, \ref audio_file_data,
- *       \ref afs_info \ref afh_info,
- *     - Afs tables: \ref aft.c, \ref mood.c, \ref playlist.c,
- *       \ref attribute.c, \ref score.c,
- *     - The virtual streaming system: \ref vss.c, \ref chunk_queue.c.
+ * \mainpage Main data structures and selected APIs:
  *
- * Lower levels:
- *
- *     - Scheduling: \ref sched.c, \ref sched.h,
- *     - Networking: \ref net.c,
- *     - File descriptors: \ref fd.c,
- *     - Signals: \ref signal.c,
- *     - Daemons: \ref daemon.c,
- *     - Strings: \ref string.c, \ref string.h,
+ *     - Senders: \ref sender,
+ *     - Audio file selector: \ref afs_info, \ref afs_table,
+ *     - Audio format handler: \ref audio_format_handler, \ref afh_info
+ *     - Receivers/filters/writers: \ref receiver, \ref receiver_node,
+ *       \ref filter, \ref filter_node, \ref writer_node, \ref writer.
+ *     - Scheduling: \ref sched.h,
+ *     - Buffer trees: \ref buffer_tree.h,
+ *     - Sideband API: \ref sideband.h,
+ *     - Crypto: \ref crypt.h, \ref crypt_backend.h,
+ *     - Error subsystem: \ref error.h,
+ *     - Inter process communication: \ref ipc.h,
+ *     - Forward error correction: \ref fec.h,
+ *     - Daemons: \ref daemon.h,
+ *     - Mixer API: \ref mix.h,
+ *     - Interactive sessions: \ref interactive.h,
+ *     - File descriptors: \ref fd.h,
+ *     - Signals: \ref signal.h,
+ *     - Networking: \ref net.h,
  *     - Time: \ref time.c,
- *     - Spawning processes: \ref exec.c,
- *     - Inter process communication: \ref ipc.c,
- *     - The object storage layer: \ref osl.c,
- *     - Blob tables: \ref blob.c,
- *     - The error subssystem: \ref error.h.
- *     - Access control for paraslash senders: \ref acl.c, \ref acl.h.
- *
- * Low-level data structures:
- *
- *     - Doubly linked lists: \ref list.h,
- *     - Red-black trees: \ref rbtree.h, \ref rbtree.c,
- *     - Ring buffer: \ref ringbuffer.c, \ref ringbuffer.h,
- *     - Hashing: \ref hash.h, \ref sha1.h, \ref sha1.c,
- *     - Crypto: \ref crypt.c.
- *
+ *     - Doubly linked lists: \ref list.h.
  */
 
+#include <netinet/in.h>
+#include <sys/socket.h>
 #include <signal.h>
+#include <regex.h>
+#include <osl.h>
 #include <sys/types.h>
-#include <dirent.h>
+#include <arpa/inet.h>
+#include <sys/un.h>
+#include <netdb.h>
+#include <lopsub.h>
 
+#include "server.lsg.h"
 #include "para.h"
 #include "error.h"
-#include "server.cmdline.h"
+#include "crypt.h"
 #include "afh.h"
 #include "string.h"
 #include "afs.h"
 #include "server.h"
+#include "list.h"
+#include "send.h"
+#include "sched.h"
 #include "vss.h"
 #include "config.h"
 #include "close_on_fork.h"
-#include "list.h"
-#include "send.h"
 #include "net.h"
 #include "daemon.h"
 #include "ipc.h"
 #include "fd.h"
-#include "sched.h"
 #include "signal.h"
 #include "user_list.h"
+#include "color.h"
+#include "version.h"
+
+/** Array of error strings. */
+DEFINE_PARA_ERRLIST;
 
-/** define the array of error lists needed by para_server */
-INIT_SERVER_ERRLISTS;
+__printf_2_3 void (*para_log)(int, const char*, ...) = daemon_log;
 
-/** shut down non-authorized connections after that many seconds */
+/** Shut down non-authorized connections after that many seconds. */
 #define ALARM_TIMEOUT 10
 
 /**
  * Pointer to shared memory area for communication between para_server
- * and its children. Exported to vss.c. command.c and to afs.
+ * and its children. Exported to vss.c, command.c and to afs.
  */
 struct misc_meta_data *mmd;
 
 /**
- * the configuration of para_server
+ * The active value for all config options of para_server.
  *
- * It also contains the options for the audio file selector, audio format
- * handler and all supported senders.
+ * It is computed by merging the parse result of the command line options with
+ * the parse result of the config file.
  */
-struct server_args_info conf;
+struct lls_parse_result *server_lpr = NULL;
+
+/* Command line options (no config file options). Used in handle_sighup(). */
+static struct lls_parse_result *cmdline_lpr;
+
+/** A random value used in child context for authentication. */
+uint32_t afs_socket_cookie;
 
-/** the file containing user information (public key, permissions) */
-char *user_list_file = NULL;
+/** The mutex protecting the shared memory area containing the mmd struct. */
+int mmd_mutex;
 
-/* global variables for server-internal use */
-static FILE *logfile;
-static int mmd_mutex, mmd_shm_id;
-static int signal_pipe;
+static struct sched sched;
+static struct signal_task *signal_task;
 
+/** The task responsible for server command handling. */
 struct server_command_task {
        /** TCP port on which para_server listens for connections. */
        int listen_fd;
@@ -123,58 +108,38 @@ struct server_command_task {
        /** Argument vector passed to para_server's main function. */
        char **argv;
        /** The command task structure for scheduling. */
-       //struct task task;
-       char dummy;
+       struct task *task;
 };
 
 /**
- * para_server's log function
+ * Return the list of tasks for the server process.
  *
- * \param ll the log level
- * \param fmt the format string describing the log message
+ * This is called from \a com_tasks(). The helper is necessary since command
+ * handlers can not access the scheduler structure directly.
+ *
+ * \return A dynamically allocated string that must be freed by the caller.
  */
-void para_log(int ll, const char* fmt,...)
+char *server_get_tasks(void)
 {
-       va_list argp;
-       FILE *outfd;
-       struct tm *tm;
-       time_t t1;
-       char str[MAXLINE] = "";
-       pid_t mypid;
-
-       if (ll < conf.loglevel_arg)
-               return;
-       outfd = logfile? logfile : stderr;
-       time(&t1);
-       tm = localtime(&t1);
-       strftime(str, MAXLINE, "%b %d %H:%M:%S", tm);
-       fprintf(outfd, "%s ", str);
-       if (conf.loglevel_arg <= INFO)
-               fprintf(outfd, "%i: ", ll);
-       mypid = getpid();
-       if (conf.loglevel_arg <= INFO)
-               fprintf(outfd, "(%d) ", (int)mypid);
-       va_start(argp, fmt);
-       vfprintf(outfd, fmt, argp);
-       va_end(argp);
+       return get_task_list(&sched);
 }
 
 /*
  * setup shared memory area and get mutex for locking
  */
-static void shm_init(void)
+static void init_ipc_or_die(void)
 {
        void *shm;
-       int ret = shm_new(sizeof(struct misc_meta_data));
+       int shmid, ret = shm_new(sizeof(struct misc_meta_data));
 
        if (ret < 0)
                goto err_out;
-
-       ret = shm_attach(ret, ATTACH_RW, &shm);
+       shmid = ret;
+       ret = shm_attach(shmid, ATTACH_RW, &shm);
+       shm_destroy(shmid);
        if (ret < 0)
                goto err_out;
        mmd = shm;
-       mmd_shm_id = ret;
 
        ret = mutex_new();
        if (ret < 0)
@@ -195,103 +160,261 @@ err_out:
 }
 
 /**
- * lock the shared memory area containing the mmd struct
+ * (Re-)read the server configuration files.
  *
- * \sa semop(2), struct misc_meta_data.
- */
-void mmd_lock(void)
-{
-       mutex_lock(mmd_mutex);
-}
-
-/**
- * unlock the shared memory area containing the mmd struct
+ * \param reload Whether config file overrides command line.
  *
- * \sa semop(2), struct misc_meta_data
+ * This function also re-opens the logfile and the user list. On SIGHUP it is
+ * called from both server and afs context.
  */
-
-void mmd_unlock(void)
-{
-       mutex_unlock(mmd_mutex);
-}
-
-static void parse_config(int override)
+void parse_config_or_die(bool reload)
 {
-       char *home = para_homedir();
-       struct stat statbuf;
        int ret;
-       char *cf;
+       char *cf = NULL, *errctx = NULL, *user_list_file = NULL;
+       void *map;
+       size_t sz;
+       int cf_argc;
+       char **cf_argv;
+       struct lls_parse_result *cf_lpr, *merged_lpr;
+       char *home = para_homedir();
 
-       if (conf.config_file_given)
-               cf = para_strdup(conf.config_file_arg);
+       daemon_close_log();
+       if (OPT_GIVEN(CONFIG_FILE))
+               cf = para_strdup(OPT_STRING_VAL(CONFIG_FILE));
        else
                cf = make_message("%s/.paraslash/server.conf", home);
-       free(user_list_file);
-       if (!conf.user_list_given)
-               user_list_file = make_message("%s/.paraslash/server.users", home);
-       else
-               user_list_file = para_strdup(conf.user_list_arg);
-       ret = stat(cf, &statbuf);
-       if (ret && conf.config_file_given) {
-               ret = -1;
-               PARA_EMERG_LOG("can not stat config file %s\n", cf);
-               goto out;
+       if (!mmd || getpid() != mmd->afs_pid) {
+               if (OPT_GIVEN(USER_LIST))
+                       user_list_file = para_strdup(OPT_STRING_VAL(USER_LIST));
+               else
+                       user_list_file = make_message("%s/.paraslash/server.users", home);
        }
-       if (!ret) {
-               int tmp = conf.daemon_given;
-               struct server_cmdline_parser_params params = {
-                       .override = override,
-                       .initialize = 0,
-                       .check_required = 1,
-                       .check_ambiguity = 0,
-                       .print_errors = 1
-               };
-               server_cmdline_parser_config_file(cf, &conf, &params);
-               conf.daemon_given = tmp;
+       free(home);
+       ret = mmap_full_file(cf, O_RDONLY, &map, &sz, NULL);
+       if (ret < 0) {
+               if (ret != -E_EMPTY && ret != -ERRNO_TO_PARA_ERROR(ENOENT))
+                       goto free_cf;
+               if (ret == -ERRNO_TO_PARA_ERROR(ENOENT) && OPT_GIVEN(CONFIG_FILE))
+                       goto free_cf;
+               ret = 0;
+               server_lpr = cmdline_lpr;
+               goto success;
        }
-       if (conf.logfile_given)
-               logfile = open_log(conf.logfile_arg);
+       ret = lls(lls_convert_config(map, sz, NULL, &cf_argv, &errctx));
+       para_munmap(map, sz);
+       if (ret < 0)
+               goto free_cf;
+       cf_argc = ret;
+       ret = lls(lls_parse(cf_argc, cf_argv, CMD_PTR, &cf_lpr, &errctx));
+       lls_free_argv(cf_argv);
+       if (ret < 0)
+               goto free_cf;
+       if (reload) /* config file overrides command line */
+               ret = lls(lls_merge(cf_lpr, cmdline_lpr, CMD_PTR, &merged_lpr,
+                       &errctx));
+       else /* command line options overrride config file options */
+               ret = lls(lls_merge(cmdline_lpr, cf_lpr, CMD_PTR, &merged_lpr,
+                       &errctx));
+       lls_free_parse_result(cf_lpr, CMD_PTR);
+       if (ret < 0)
+               goto free_cf;
+       if (server_lpr != cmdline_lpr)
+               lls_free_parse_result(server_lpr, CMD_PTR);
+       server_lpr = merged_lpr;
+success:
+       daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL));
+       if (OPT_GIVEN(LOGFILE)) {
+               daemon_set_logfile(OPT_STRING_VAL(LOGFILE));
+               daemon_open_log_or_die();
+       }
+       if (daemon_init_colors_or_die(OPT_UINT32_VAL(COLOR), COLOR_AUTO,
+                       COLOR_NO, OPT_GIVEN(LOGFILE))) {
+               int i;
+               for (i = 0; i < OPT_GIVEN(LOG_COLOR); i++)
+                       daemon_set_log_color_or_die(lls_string_val(i,
+                               OPT_RESULT(LOG_COLOR)));
+       }
+       daemon_set_flag(DF_LOG_PID);
+       daemon_set_flag(DF_LOG_LL);
+       daemon_set_flag(DF_LOG_TIME);
+       if (OPT_GIVEN(LOG_TIMING))
+               daemon_set_flag(DF_LOG_TIMING);
+       daemon_set_priority(OPT_UINT32_VAL(PRIORITY));
+       if (user_list_file)
+               init_user_list(user_list_file);
        ret = 1;
-out:
+free_cf:
        free(cf);
-       free(home);
-       if (ret > 0)
-               return;
        free(user_list_file);
-       user_list_file = NULL;
-       exit(EXIT_FAILURE);
+       if (ret < 0) {
+               if (errctx)
+                       PARA_ERROR_LOG("%s\n", errctx);
+               free(errctx);
+               PARA_EMERG_LOG("%s\n", para_strerror(-ret));
+               exit(EXIT_FAILURE);
+       }
 }
 
-static void setup_signal_handling(void)
+/*
+ * called when server gets SIGHUP or when client invokes hup command.
+ */
+static void handle_sighup(void)
 {
-       signal_pipe = para_signal_init(); /* always successful */
 
-       PARA_NOTICE_LOG("setting up signal handlers\n");
-       if (para_install_sighandler(SIGINT) < 0)
-               goto err;
-       if (para_install_sighandler(SIGTERM) < 0)
-               goto err;
-       if (para_install_sighandler(SIGHUP) < 0)
-               goto err;
-       if (para_install_sighandler(SIGCHLD) < 0)
-               goto err;
-       if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
-               goto err;
-       if (signal(SIGUSR1, SIG_IGN) == SIG_ERR)
-               goto err;
-       add_close_on_fork_list(signal_pipe);
-       return;
-err:
-       PARA_EMERG_LOG("could not install signal handlers\n");
-       exit(EXIT_FAILURE);
+       PARA_NOTICE_LOG("SIGHUP\n");
+       parse_config_or_die(true);
+       if (mmd->afs_pid)
+               kill(mmd->afs_pid, SIGHUP);
+}
+
+static int signal_post_select(struct sched *s, __a_unused void *context)
+{
+       int signum = para_next_signal(&s->rfds);
+
+       switch (signum) {
+       case 0:
+               return 0;
+       case SIGHUP:
+               handle_sighup();
+               break;
+       case SIGCHLD:
+               for (;;) {
+                       pid_t pid;
+                       int ret = para_reap_child(&pid);
+                       if (ret <= 0)
+                               break;
+                       if (pid != mmd->afs_pid)
+                               continue;
+                       PARA_EMERG_LOG("fatal: afs died\n");
+                       kill(0, SIGTERM);
+                       goto cleanup;
+               }
+               break;
+       /* die on sigint/sigterm. Kill all children too. */
+       case SIGINT:
+       case SIGTERM:
+               PARA_EMERG_LOG("terminating on signal %d\n", signum);
+               kill(0, SIGTERM);
+               /*
+                * We must wait for afs because afs catches SIGINT/SIGTERM.
+                * Before reacting to the signal, afs might want to use the
+                * shared memory area and the mmd mutex.  If we destroy this
+                * mutex too early and afs tries to lock the shared memory
+                * area, the call to mutex_lock() will fail and terminate the
+                * afs process. This leads to dirty osl tables.
+                *
+                * There's no such problem with the other children of the
+                * server process (the command handlers) as these reset their
+                * SIGINT/SIGTERM handlers to the default action, i.e.  these
+                * processes get killed immediately by the above kill().
+                */
+               PARA_INFO_LOG("waiting for afs (pid %d) to die\n",
+                       (int)mmd->afs_pid);
+               waitpid(mmd->afs_pid, NULL, 0);
+cleanup:
+               free(mmd->afd.afhi.chunk_table);
+               close_listed_fds();
+               mutex_destroy(mmd_mutex);
+               shm_detach(mmd);
+               exit(EXIT_FAILURE);
+       }
+       return 0;
+}
+
+static void init_signal_task(void)
+{
+       signal_task = signal_init_or_die();
+       para_install_sighandler(SIGINT);
+       para_install_sighandler(SIGTERM);
+       para_install_sighandler(SIGHUP);
+       para_install_sighandler(SIGCHLD);
+       para_sigaction(SIGPIPE, SIG_IGN);
+       add_close_on_fork_list(signal_task->fd);
+       signal_task->task = task_register(&(struct task_info) {
+               .name = "signal",
+               .pre_select = signal_pre_select,
+               .post_select = signal_post_select,
+               .context = signal_task,
+
+       }, &sched);
+}
+
+static void command_pre_select(struct sched *s, void *context)
+{
+       struct server_command_task *sct = context;
+       para_fd_set(sct->listen_fd, &s->rfds, &s->max_fileno);
 }
 
-static void init_command_task(struct server_command_task *sct)
+static int command_post_select(struct sched *s, void *context)
+{
+       struct server_command_task *sct = context;
+
+       int new_fd, ret, i;
+       char *peer_name;
+       pid_t child_pid;
+       uint32_t *chunk_table;
+
+       ret = para_accept(sct->listen_fd, &s->rfds, NULL, 0, &new_fd);
+       if (ret <= 0)
+               goto out;
+       peer_name = remote_name(new_fd);
+       PARA_INFO_LOG("got connection from %s, forking\n", peer_name);
+       mmd->num_connects++;
+       mmd->active_connections++;
+       /*
+        * The chunk table is a pointer located in the mmd struct that points
+        * to dynamically allocated memory, i.e. it must be freed by the parent
+        * and the child. However, as the mmd struct is in a shared memory
+        * area, there's no guarantee that after the fork this pointer is still
+        * valid in child context. As it is not used in the child anyway, we
+        * save it to a local variable before the fork and free the memory via
+        * that copy in the child directly after the fork.
+        */
+       chunk_table = mmd->afd.afhi.chunk_table;
+       child_pid = fork();
+       if (child_pid < 0) {
+               ret = -ERRNO_TO_PARA_ERROR(errno);
+               goto out;
+       }
+       if (child_pid) {
+               /* avoid problems with non-fork-safe PRNGs */
+               unsigned char buf[16];
+               get_random_bytes_or_die(buf, sizeof(buf));
+               close(new_fd);
+               /* parent keeps accepting connections */
+               return 0;
+       }
+       /* mmd might already have changed at this point */
+       free(chunk_table);
+       alarm(ALARM_TIMEOUT);
+       close_listed_fds();
+       signal_shutdown(signal_task);
+       /*
+        * put info on who we are serving into argv[0] to make
+        * client ip visible in top/ps
+        */
+       for (i = sct->argc - 1; i >= 0; i--)
+               memset(sct->argv[i], 0, strlen(sct->argv[i]));
+       i = sct->argc - 1 - lls_num_inputs(cmdline_lpr);
+       sprintf(sct->argv[i], "para_server (serving %s)", peer_name);
+       handle_connect(new_fd, peer_name);
+       /* never reached*/
+out:
+       if (ret < 0)
+               PARA_CRIT_LOG("%s\n", para_strerror(-ret));
+       return 0;
+}
+
+static void init_server_command_task(int argc, char **argv)
 {
        int ret;
+       static struct server_command_task server_command_task_struct,
+               *sct = &server_command_task_struct;
 
        PARA_NOTICE_LOG("initializing tcp command socket\n");
-       ret = para_listen(AF_UNSPEC, IPPROTO_TCP, conf.port_arg);
+       sct->argc = argc;
+       sct->argv = argv;
+       ret = para_listen_simple(IPPROTO_TCP, OPT_UINT32_VAL(PORT));
        if (ret < 0)
                goto err;
        sct->listen_fd = ret;
@@ -299,141 +422,157 @@ static void init_command_task(struct server_command_task *sct)
        if (ret < 0)
                goto err;
        add_close_on_fork_list(sct->listen_fd); /* child doesn't need the listener */
+       sct->task = task_register(&(struct task_info) {
+               .name = "server command",
+               .pre_select = command_pre_select,
+               .post_select = command_post_select,
+               .context = sct,
+       }, &sched);
        return;
 err:
        PARA_EMERG_LOG("%s\n", para_strerror(-ret));
        exit(EXIT_FAILURE);
 }
 
-static void init_random_seed(void)
-{
-       unsigned int seed;
-       int fd, ret = para_open("/dev/urandom", O_RDONLY, 0);
-
-       if (ret < 0)
-               goto err;
-       fd = ret;
-       ret = read(fd, &seed, sizeof(seed));
-       if (ret < 0) {
-               ret = -ERRNO_TO_PARA_ERROR(errno);
-               goto out;
-       }
-       if (ret != sizeof(seed)) {
-               ret = -ERRNO_TO_PARA_ERROR(EIO);
-               goto out;
-       }
-       srandom(seed);
-       ret = 1;
-out:
-       close(fd);
-       if (ret >= 0)
-               return;
-err:
-       PARA_EMERG_LOG("can not seed pseudo random number generator: %s\n",
-               para_strerror(-ret));
-       exit(EXIT_FAILURE);
-}
-
-uint32_t afs_socket_cookie;
-int afs_socket;
-static pid_t afs_pid;
-
-static void init_afs(void)
+static int init_afs(int argc, char **argv)
 {
        int ret, afs_server_socket[2];
+       pid_t afs_pid;
+       char c;
 
-       ret = socketpair(PF_UNIX, SOCK_DGRAM, 0, afs_server_socket);
+       ret = socketpair(PF_UNIX, SOCK_STREAM, 0, afs_server_socket);
        if (ret < 0)
                exit(EXIT_FAILURE);
-       afs_socket_cookie = para_random((uint32_t)-1);
+       get_random_bytes_or_die((unsigned char *)&afs_socket_cookie,
+               sizeof(afs_socket_cookie));
        afs_pid = fork();
        if (afs_pid < 0)
                exit(EXIT_FAILURE);
-       if (!afs_pid) { /* child (afs) */
+       if (afs_pid == 0) { /* child (afs) */
+               int i;
+
+               for (i = argc - 1; i >= 0; i--)
+                       memset(argv[i], 0, strlen(argv[i]));
+               i = argc - lls_num_inputs(cmdline_lpr) - 1;
+               sprintf(argv[i], "para_server (afs)");
                close(afs_server_socket[0]);
                afs_init(afs_socket_cookie, afs_server_socket[1]);
        }
+       mmd->afs_pid = afs_pid;
        close(afs_server_socket[1]);
-       afs_socket = afs_server_socket[0];
-       ret = mark_fd_nonblocking(afs_socket);
+       if (read(afs_server_socket[0], &c, 1) <= 0) {
+               PARA_EMERG_LOG("early afs exit\n");
+               exit(EXIT_FAILURE);
+       }
+       ret = mark_fd_nonblocking(afs_server_socket[0]);
        if (ret < 0)
                exit(EXIT_FAILURE);
-       add_close_on_fork_list(afs_socket);
-       PARA_INFO_LOG("afs_socket: %d, afs_socket_cookie: %u\n", afs_socket,
-               (unsigned) afs_socket_cookie);
+       add_close_on_fork_list(afs_server_socket[0]);
+       PARA_INFO_LOG("afs_socket: %d, afs_socket_cookie: %u\n",
+               afs_server_socket[0], (unsigned) afs_socket_cookie);
+       return afs_server_socket[0];
+}
+
+static void handle_help_flags(void)
+{
+       char *help;
+       bool d = OPT_GIVEN(DETAILED_HELP);
+
+       if (d)
+               help = lls_long_help(CMD_PTR);
+       else if (OPT_GIVEN(HELP))
+               help = lls_short_help(CMD_PTR);
+       else
+               return;
+       printf("%s\n", help);
+       free(help);
+       exit(EXIT_SUCCESS);
 }
 
 static void server_init(int argc, char **argv)
 {
-       /* connector's address information */
-       struct server_cmdline_parser_params params = {
-               .override = 0,
-               .initialize = 1,
-               .check_required = 0,
-               .check_ambiguity = 0,
-               .print_errors = 1
-       };
-       init_random_seed();
+       int ret, afs_socket, daemon_pipe = -1;
+       char *errctx;
+
+       valid_fd_012();
        /* parse command line options */
-       server_cmdline_parser_ext(argc, argv, &conf, &params);
-       HANDLE_VERSION_FLAG("server", conf);
-       para_drop_privileges(conf.user_arg, conf.group_arg);
-       /* parse config file, open log and set defaults */
-       parse_config(0);
-       log_welcome("para_server", conf.loglevel_arg);
-       shm_init(); /* init mmd struct */
-       server_uptime(UPTIME_SET); /* reset server uptime */
-       init_user_list(user_list_file);
+       ret = lls(lls_parse(argc, argv, CMD_PTR, &cmdline_lpr, &errctx));
+       if (ret < 0)
+               goto fail;
+       server_lpr = cmdline_lpr;
+       daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL));
+       daemon_drop_privileges_or_die(OPT_STRING_VAL(USER),
+               OPT_STRING_VAL(GROUP));
+       version_handle_flag("server", OPT_GIVEN(VERSION));
+       handle_help_flags();
+       parse_config_or_die(false);
        /* become daemon */
-       if (conf.daemon_given)
-               daemon_init();
+       if (OPT_GIVEN(DAEMON))
+               daemon_pipe = daemonize(true /* parent waits for SIGTERM */);
+       init_random_seed_or_die();
+       daemon_log_welcome("server");
+       init_ipc_or_die(); /* init mmd struct and mmd->lock */
+       daemon_set_start_time();
        PARA_NOTICE_LOG("initializing audio format handlers\n");
        afh_init();
-       mmd->server_pid = getpid();
-       setup_signal_handling();
+
+       /*
+        * Although afs uses its own signal handling we must ignore SIGUSR1
+        * _before_ the afs child process gets born by init_afs() below.  It's
+        * racy to do this in the child because the parent might send SIGUSR1
+        * before the child gets a chance to ignore this signal.
+        *
+        * We also have to block SIGCHLD before the afs process is created
+        * because otherwise para_server does not notice if afs dies before the
+        * SIGCHLD handler has been installed for the parent process by
+        * init_signal_task() below.
+        */
+       para_sigaction(SIGUSR1, SIG_IGN);
+       para_block_signal(SIGCHLD);
        PARA_NOTICE_LOG("initializing the audio file selector\n");
-       init_afs();
+       afs_socket = init_afs(argc, argv);
+       init_signal_task();
+       para_unblock_signal(SIGCHLD);
        PARA_NOTICE_LOG("initializing virtual streaming system\n");
-       vss_init();
-       mmd_lock();
+       init_vss_task(afs_socket, &sched);
+       init_server_command_task(argc, argv);
+       if (daemon_pipe >= 0) {
+               if (write(daemon_pipe, "\0", 1) < 0) {
+                       PARA_EMERG_LOG("daemon_pipe: %s", strerror(errno));
+                       exit(EXIT_FAILURE);
+               }
+               close(daemon_pipe);
+       }
        PARA_NOTICE_LOG("server init complete\n");
-}
-
-/*
- * called when server gets SIGHUP or when client invokes hup command.
- */
-static void handle_sighup(void)
-{
-       PARA_NOTICE_LOG("SIGHUP\n");
-       close_log(logfile); /* gets reopened if necessary by parse_config */
-       logfile = NULL;
-       parse_config(1); /* reopens log */
-       init_user_list(user_list_file); /* reload user list */
-       if (afs_pid)
-               kill(afs_pid, SIGHUP);
+       return;
+fail:
+       assert(ret < 0);
+       if (errctx)
+               PARA_ERROR_LOG("%s\n", errctx);
+       PARA_EMERG_LOG("%s\n", para_strerror(-ret));
+       exit(EXIT_FAILURE);
 }
 
 static void status_refresh(void)
 {
        static int prev_uptime = -1, prev_events = -1;
-       int uptime = server_uptime(UPTIME_GET), ret = 1;
+       int uptime = daemon_get_uptime(now);
 
        if (prev_events != mmd->events)
                goto out;
        if (mmd->new_vss_status_flags != mmd->vss_status_flags)
-               goto out;
+               goto out_inc_events;
        if (uptime / 60 != prev_uptime / 60)
-               goto out;
-       ret = 0;
+               goto out_inc_events;
+       return;
+out_inc_events:
+       mmd->events++;
 out:
        prev_uptime = uptime;
        prev_events = mmd->events;
        mmd->vss_status_flags = mmd->new_vss_status_flags;
-       if (ret) {
-               PARA_DEBUG_LOG("%d events, forcing status update\n",
-                       mmd->events);
-               killpg(0, SIGUSR1);
-       }
+       PARA_DEBUG_LOG("%u events, forcing status update\n", mmd->events);
+       killpg(0, SIGUSR1);
 }
 
 static int server_select(int max_fileno, fd_set *readfds, fd_set *writefds,
@@ -442,124 +581,35 @@ static int server_select(int max_fileno, fd_set *readfds, fd_set *writefds,
        int ret;
 
        status_refresh();
-       mmd_unlock();
+       mutex_unlock(mmd_mutex);
        ret = para_select(max_fileno + 1, readfds, writefds, timeout_tv);
-       mmd_lock();
+       mutex_lock(mmd_mutex);
        return ret;
 }
 
-static void command_pre_select(int *max_fileno, fd_set *rfds, char *dummy_ptr)
-{
-       struct server_command_task *sct = container_of(dummy_ptr, struct server_command_task, dummy);
-       para_fd_set(sct->listen_fd, rfds, max_fileno);
-}
-
-static void command_post_select(fd_set *rfds, char *dummy_ptr)
-{
-       struct server_command_task *sct = container_of(dummy_ptr, struct server_command_task, dummy);
-
-       int new_fd, ret;
-       char *peer_name;
-       pid_t child_pid;
-
-       if (!FD_ISSET(sct->listen_fd, rfds))
-               return;
-       ret = para_accept(sct->listen_fd, NULL, 0);
-       if (ret < 0)
-               goto out;
-       new_fd = ret;
-       peer_name = remote_name(new_fd);
-       PARA_INFO_LOG("got connection from %s, forking\n", peer_name);
-       mmd->num_connects++;
-       mmd->active_connections++;
-       random();
-       child_pid = fork();
-       if (child_pid < 0) {
-               ret = -ERRNO_TO_PARA_ERROR(errno);
-               goto out;
-       }
-       if (child_pid) {
-               close(new_fd);
-               /* parent keeps accepting connections */
-               return;
-       }
-       alarm(ALARM_TIMEOUT);
-       close_listed_fds();
-       para_signal_shutdown();
-       /*
-        * put info on who we are serving into argv[0] to make
-        * client ip visible in top/ps
-        */
-//     for (i = argc - 1; i >= 0; i--)
-//             memset(argv[i], 0, strlen(argv[i]));
-//     sprintf(argv[0], "para_server (serving %s)", peer_name);
-       return handle_connect(new_fd, peer_name);
-out:
-       if (ret < 0)
-               PARA_CRIT_LOG("%s\n", para_strerror(-ret));
-}
-
 /**
- * the main function of para_server
- *
- * \param argc usual argument count
- * \param argv usual argument vector
+ * The main function of para_server.
  *
- * \return EXIT_SUCCESS or EXIT_FAILURE
+ * \param argc Usual argument count.
+ * \param argv Usual argument vector.
  *
+ * \return EXIT_SUCCESS or EXIT_FAILURE.
  */
 int main(int argc, char *argv[])
 {
-       int max_fileno, ret;
-       fd_set rfds, wfds;
-       struct timeval *timeout;
-       struct server_command_task server_command_task_struct;
+       int ret;
 
+       sched.default_timeout.tv_sec = 1;
+       sched.select_function = server_select;
 
-       valid_fd_012();
        server_init(argc, argv);
-       init_command_task(&server_command_task_struct);
-repeat:
-       FD_ZERO(&rfds);
-       FD_ZERO(&wfds);
-       max_fileno = -1;
-       command_pre_select(&max_fileno, &rfds, &server_command_task_struct.dummy);
-       para_fd_set(signal_pipe, &rfds, &max_fileno);
-       timeout = vss_preselect(&rfds, &wfds, &max_fileno);
-       server_select(max_fileno + 1, &rfds, &wfds, timeout);
-       vss_post_select(&rfds, &wfds);
-       if (FD_ISSET(signal_pipe, &rfds)) {
-               int sig;
-               pid_t pid;
-               sig = para_next_signal();
-               switch (sig) {
-               case SIGHUP:
-                       handle_sighup();
-                       break;
-               case SIGCHLD:
-                       for (;;) {
-                               ret = para_reap_child(&pid);
-                               if (ret <= 0)
-                                       break;
-                               if (pid != afs_pid)
-                                       continue;
-                               PARA_EMERG_LOG("fatal: afs died\n");
-                               goto genocide;
-                       }
-                       break;
-               /* die on sigint/sigterm. Kill all children too. */
-               case SIGINT:
-               case SIGTERM:
-                       PARA_EMERG_LOG("terminating on signal %d\n", sig);
-genocide:
-                       kill(0, SIGTERM);
-                       mutex_destroy(mmd_mutex);
-                       shm_detach(mmd);
-                       shm_destroy(mmd_shm_id);
-
-                       exit(EXIT_FAILURE);
-               }
-       }
-       command_post_select(&rfds, &server_command_task_struct.dummy);
-       goto repeat;
+       mutex_lock(mmd_mutex);
+       ret = schedule(&sched);
+       sched_shutdown(&sched);
+       lls_free_parse_result(server_lpr, CMD_PTR);
+       if (server_lpr != cmdline_lpr)
+               lls_free_parse_result(cmdline_lpr, CMD_PTR);
+       if (ret < 0)
+               PARA_EMERG_LOG("%s\n", para_strerror(-ret));
+       exit(ret < 0? EXIT_FAILURE : EXIT_SUCCESS);
 }