server: Exit cleanly on SIGINT/SIGTERM.
[paraslash.git] / server.c
1 /* Copyright (C) 1997 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
2
3 /** \file server.c Paraslash's main server. */
4
5 /**
6  * \mainpage Main data structures and selected APIs:
7  *
8  *      - Senders: \ref sender,
9  *      - Audio file selector: \ref afs_info, \ref afs_table,
10  *      - Audio format handler: \ref audio_format_handler, \ref afh_info
11  *      - Receivers/filters/writers: \ref receiver, \ref receiver_node,
12  *        \ref filter, \ref filter_node, \ref writer_node, \ref writer.
13  *      - Scheduling: \ref sched.h,
14  *      - Buffer trees: \ref buffer_tree.h,
15  *      - Sideband API: \ref sideband.h,
16  *      - Crypto: \ref crypt.h, \ref crypt_backend.h,
17  *      - Error subsystem: \ref error.h,
18  *      - Inter process communication: \ref ipc.h,
19  *      - Forward error correction: \ref fec.h,
20  *      - Daemons: \ref daemon.h,
21  *      - Mixer API: \ref mix.h,
22  *      - Interactive sessions: \ref interactive.h,
23  *      - File descriptors: \ref fd.h,
24  *      - Signals: \ref signal.h,
25  *      - Networking: \ref net.h,
26  *      - Time: \ref time.c,
27  *      - Doubly linked lists: \ref list.h.
28  */
29
30 #include <netinet/in.h>
31 #include <sys/socket.h>
32 #include <signal.h>
33 #include <regex.h>
34 #include <osl.h>
35 #include <sys/types.h>
36 #include <arpa/inet.h>
37 #include <sys/un.h>
38 #include <netdb.h>
39 #include <lopsub.h>
40
41 #include "server.lsg.h"
42 #include "para.h"
43 #include "error.h"
44 #include "crypt.h"
45 #include "afh.h"
46 #include "string.h"
47 #include "afs.h"
48 #include "server.h"
49 #include "list.h"
50 #include "send.h"
51 #include "sched.h"
52 #include "vss.h"
53 #include "config.h"
54 #include "close_on_fork.h"
55 #include "net.h"
56 #include "daemon.h"
57 #include "ipc.h"
58 #include "fd.h"
59 #include "signal.h"
60 #include "user_list.h"
61 #include "color.h"
62 #include "version.h"
63
64 /** Array of error strings. */
65 DEFINE_PARA_ERRLIST;
66
67 __printf_2_3 void (*para_log)(int, const char*, ...) = daemon_log;
68
69 /** Shut down non-authorized connections after that many seconds. */
70 #define ALARM_TIMEOUT 10
71
72 /**
73  * Pointer to shared memory area for communication between para_server
74  * and its children. Exported to vss.c, command.c and to afs.
75  */
76 struct misc_meta_data *mmd;
77
78 /**
79  * The active value for all config options of para_server.
80  *
81  * It is computed by merging the parse result of the command line options with
82  * the parse result of the config file.
83  */
84 struct lls_parse_result *server_lpr = NULL;
85
86 /* Command line options (no config file options). Used in handle_sighup(). */
87 static struct lls_parse_result *cmdline_lpr;
88
89 /**
90  * A random number used to "authenticate" the afs connection.
91  *
92  * para_server picks this number by random before it forks the afs process. The
93  * command handlers know this number as well and write it to the afs socket,
94  * together with the id of the shared memory area which contains the payload of
95  * the afs command. A local process has to know this number to abuse the afs
96  * service provided by the local socket.
97  */
98 uint32_t afs_socket_cookie;
99
100 /** The mutex protecting the shared memory area containing the mmd struct. */
101 int mmd_mutex;
102
103 static struct sched sched;
104 static struct signal_task *signal_task;
105
106 /** The process id of the audio file selector process. */
107 pid_t afs_pid = 0;
108
109 /* The the main server process (parent of afs and the command handlers). */
110 static pid_t server_pid;
111
112 /**
113  * Tell whether the executing process is a command handler.
114  *
115  * Cleanup on exit must be performed differently for command handlers.
116  *
117  * \return True if the pid of the executing process is neither the server pid
118  * nor the afs pid.
119  */
120 bool process_is_command_handler(void)
121 {
122         pid_t pid = getpid();
123
124         return pid != afs_pid && pid != server_pid;
125 }
126
127 /** The task responsible for server command handling. */
128 struct server_command_task {
129         /** TCP port on which para_server listens for connections. */
130         int listen_fd;
131         /* File descriptor for the accepted socket. */
132         int child_fd;
133         /** Copied from para_server's main function. */
134         int argc;
135         /** Argument vector passed to para_server's main function. */
136         char **argv;
137         /** The command task structure for scheduling. */
138         struct task *task;
139 };
140
141 /**
142  * Return the list of tasks for the server process.
143  *
144  * This is called from \a com_tasks(). The helper is necessary since command
145  * handlers can not access the scheduler structure directly.
146  *
147  * \return A dynamically allocated string that must be freed by the caller.
148  */
149 char *server_get_tasks(void)
150 {
151         return get_task_list(&sched);
152 }
153
154 /*
155  * setup shared memory area and get mutex for locking
156  */
157 static void init_ipc_or_die(void)
158 {
159         void *shm;
160         int shmid, ret = shm_new(sizeof(struct misc_meta_data));
161
162         if (ret < 0)
163                 goto err_out;
164         shmid = ret;
165         ret = shm_attach(shmid, ATTACH_RW, &shm);
166         shm_destroy(shmid);
167         if (ret < 0)
168                 goto err_out;
169         mmd = shm;
170
171         ret = mutex_new();
172         if (ret < 0)
173                 goto err_out;
174         mmd_mutex = ret;
175
176         mmd->num_played = 0;
177         mmd->num_commands = 0;
178         mmd->events = 0;
179         mmd->num_connects = 0;
180         mmd->active_connections = 0;
181         mmd->vss_status_flags = VSS_NEXT;
182         mmd->new_vss_status_flags = VSS_NEXT;
183         return;
184 err_out:
185         PARA_EMERG_LOG("%s\n", para_strerror(-ret));
186         exit(EXIT_FAILURE);
187 }
188
189 /**
190  * (Re-)read the server configuration files.
191  *
192  * \param reload Whether config file overrides command line.
193  *
194  * This function also re-opens the logfile and the user list. On SIGHUP it is
195  * called from both server and afs context.
196  */
197 void parse_config_or_die(bool reload)
198 {
199         int ret;
200         char *cf = NULL, *errctx = NULL, *user_list_file = NULL;
201         void *map;
202         size_t sz;
203         int cf_argc;
204         char **cf_argv;
205         struct lls_parse_result *cf_lpr, *merged_lpr;
206         char *home = para_homedir();
207
208         if (OPT_GIVEN(CONFIG_FILE))
209                 cf = para_strdup(OPT_STRING_VAL(CONFIG_FILE));
210         else
211                 cf = make_message("%s/.paraslash/server.conf", home);
212         if (!mmd || getpid() != afs_pid) {
213                 if (OPT_GIVEN(USER_LIST))
214                         user_list_file = para_strdup(OPT_STRING_VAL(USER_LIST));
215                 else
216                         user_list_file = make_message("%s/.paraslash/server.users", home);
217         }
218         free(home);
219         ret = mmap_full_file(cf, O_RDONLY, &map, &sz, NULL);
220         if (ret < 0) {
221                 if (ret != -E_EMPTY && ret != -ERRNO_TO_PARA_ERROR(ENOENT))
222                         goto free_cf;
223                 if (ret == -ERRNO_TO_PARA_ERROR(ENOENT) && OPT_GIVEN(CONFIG_FILE))
224                         goto free_cf;
225                 server_lpr = cmdline_lpr;
226                 goto success;
227         }
228         ret = lls(lls_convert_config(map, sz, NULL, &cf_argv, &errctx));
229         para_munmap(map, sz);
230         if (ret < 0)
231                 goto free_cf;
232         cf_argc = ret;
233         ret = lls(lls_parse(cf_argc, cf_argv, CMD_PTR, &cf_lpr, &errctx));
234         lls_free_argv(cf_argv);
235         if (ret < 0)
236                 goto free_cf;
237         if (reload) /* config file overrides command line */
238                 ret = lls(lls_merge(cf_lpr, cmdline_lpr, CMD_PTR, &merged_lpr,
239                         &errctx));
240         else /* command line options override config file options */
241                 ret = lls(lls_merge(cmdline_lpr, cf_lpr, CMD_PTR, &merged_lpr,
242                         &errctx));
243         lls_free_parse_result(cf_lpr, CMD_PTR);
244         if (ret < 0)
245                 goto free_cf;
246         if (server_lpr != cmdline_lpr)
247                 lls_free_parse_result(server_lpr, CMD_PTR);
248         server_lpr = merged_lpr;
249 success:
250         daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL));
251         if (OPT_GIVEN(LOGFILE)) {
252                 daemon_set_logfile(OPT_STRING_VAL(LOGFILE));
253                 daemon_open_log_or_die();
254         }
255         if (daemon_init_colors_or_die(OPT_UINT32_VAL(COLOR), COLOR_AUTO,
256                         COLOR_NO, OPT_GIVEN(LOGFILE))) {
257                 int i;
258                 for (i = 0; i < OPT_GIVEN(LOG_COLOR); i++)
259                         daemon_set_log_color_or_die(lls_string_val(i,
260                                 OPT_RESULT(LOG_COLOR)));
261         }
262         daemon_set_flag(DF_LOG_PID);
263         daemon_set_flag(DF_LOG_LL);
264         daemon_set_flag(DF_LOG_TIME);
265         if (OPT_GIVEN(LOG_TIMING))
266                 daemon_set_flag(DF_LOG_TIMING);
267         daemon_set_priority(OPT_UINT32_VAL(PRIORITY));
268         if (user_list_file)
269                 init_user_list(user_list_file);
270         ret = 1;
271 free_cf:
272         free(cf);
273         free(user_list_file);
274         if (ret < 0) {
275                 if (errctx)
276                         PARA_ERROR_LOG("%s\n", errctx);
277                 free(errctx);
278                 PARA_EMERG_LOG("%s\n", para_strerror(-ret));
279                 exit(EXIT_FAILURE);
280         }
281 }
282
283 /*
284  * called when server gets SIGHUP or when client invokes hup command.
285  */
286 static void handle_sighup(void)
287 {
288
289         PARA_NOTICE_LOG("SIGHUP\n");
290         parse_config_or_die(true);
291         if (afs_pid != 0)
292                 kill(afs_pid, SIGHUP);
293 }
294
295 static int signal_post_select(struct sched *s, __a_unused void *context)
296 {
297         int ret, signum;
298
299         ret = task_get_notification(signal_task->task);
300         if (ret < 0)
301                 return ret;
302         signum = para_next_signal(&s->rfds);
303         switch (signum) {
304         case 0:
305                 return 0;
306         case SIGHUP:
307                 handle_sighup();
308                 break;
309         case SIGCHLD:
310                 for (;;) {
311                         pid_t pid;
312                         ret = para_reap_child(&pid);
313                         if (ret <= 0)
314                                 break;
315                         if (pid != afs_pid)
316                                 continue;
317                         PARA_EMERG_LOG("fatal: afs died\n");
318                         kill(0, SIGTERM);
319                         goto cleanup;
320                 }
321                 break;
322         /* die on sigint/sigterm. Kill all children too. */
323         case SIGINT:
324         case SIGTERM:
325                 PARA_EMERG_LOG("terminating on signal %d\n", signum);
326                 kill(0, SIGTERM);
327                 /*
328                  * We must wait for all of our children to die. For the afs
329                  * process or a command handler might want to use the
330                  * shared memory area and the mmd mutex.  If we destroy this
331                  * mutex too early and afs tries to lock the shared memory
332                  * area, the call to mutex_lock() will fail and terminate the
333                  * afs process. This leads to dirty osl tables.
334                  */
335                 PARA_INFO_LOG("waiting for child processes to die\n");
336                 mutex_unlock(mmd_mutex);
337                 while (wait(NULL) != -1 || errno != ECHILD)
338                         ; /* still at least one child alive */
339                 mutex_lock(mmd_mutex);
340 cleanup:
341                 free(mmd->afd.afhi.chunk_table);
342                 task_notify_all(s, E_DEADLY_SIGNAL);
343                 return -E_DEADLY_SIGNAL;
344         }
345         return 0;
346 }
347
348 static void init_signal_task(void)
349 {
350         signal_task = signal_init_or_die();
351         para_install_sighandler(SIGINT);
352         para_install_sighandler(SIGTERM);
353         para_install_sighandler(SIGHUP);
354         para_install_sighandler(SIGCHLD);
355         para_sigaction(SIGPIPE, SIG_IGN);
356         add_close_on_fork_list(signal_task->fd);
357         signal_task->task = task_register(&(struct task_info) {
358                 .name = "signal",
359                 .pre_select = signal_pre_select,
360                 .post_select = signal_post_select,
361                 .context = signal_task,
362
363         }, &sched);
364 }
365
366 static void command_pre_select(struct sched *s, void *context)
367 {
368         struct server_command_task *sct = context;
369         para_fd_set(sct->listen_fd, &s->rfds, &s->max_fileno);
370 }
371
372 static int command_post_select(struct sched *s, void *context)
373 {
374         struct server_command_task *sct = context;
375         int new_fd, ret, i;
376         char *peer_name;
377         pid_t child_pid;
378         uint32_t *chunk_table;
379
380         ret = task_get_notification(sct->task);
381         if (ret < 0)
382                 return ret;
383         ret = para_accept(sct->listen_fd, &s->rfds, NULL, 0, &new_fd);
384         if (ret <= 0)
385                 goto out;
386         mmd->num_connects++;
387         mmd->active_connections++;
388         /*
389          * The chunk table is a pointer located in the mmd struct that points
390          * to dynamically allocated memory, i.e. it must be freed by the parent
391          * and the child. However, as the mmd struct is in a shared memory
392          * area, there's no guarantee that after the fork this pointer is still
393          * valid in child context. As it is not used in the child anyway, we
394          * save it to a local variable before the fork and free the memory via
395          * that copy in the child directly after the fork.
396          */
397         chunk_table = mmd->afd.afhi.chunk_table;
398         child_pid = fork();
399         if (child_pid < 0) {
400                 ret = -ERRNO_TO_PARA_ERROR(errno);
401                 goto out;
402         }
403         if (child_pid) {
404                 /* avoid problems with non-fork-safe PRNGs */
405                 unsigned char buf[16];
406                 get_random_bytes_or_die(buf, sizeof(buf));
407                 close(new_fd);
408                 /* parent keeps accepting connections */
409                 return 0;
410         }
411         peer_name = remote_name(new_fd);
412         PARA_INFO_LOG("accepted connection from %s\n", peer_name);
413         /* mmd might already have changed at this point */
414         free(chunk_table);
415         sct->child_fd = new_fd;
416         /*
417          * put info on who we are serving into argv[0] to make
418          * client ip visible in top/ps
419          */
420         for (i = sct->argc - 1; i >= 0; i--)
421                 memset(sct->argv[i], 0, strlen(sct->argv[i]));
422         i = sct->argc - 1 - lls_num_inputs(cmdline_lpr);
423         sprintf(sct->argv[i], "para_server (serving %s)", peer_name);
424         /* ask other tasks to terminate */
425         task_notify_all(s, E_CHILD_CONTEXT);
426         /*
427          * After we return, the scheduler calls server_select() with a minimal
428          * timeout value, because the remaining tasks have a notification
429          * pending. Next it calls the ->post_select method of these tasks,
430          * which will return negative in view of the notification. This causes
431          * schedule() to return as there are no more runnable tasks.
432          *
433          * Note that semaphores are not inherited across a fork(), so we don't
434          * hold the lock at this point. Since server_select() drops the lock
435          * prior to calling para_select(), we need to acquire it here.
436          */
437         mutex_lock(mmd_mutex);
438         return -E_CHILD_CONTEXT;
439 out:
440         if (ret < 0)
441                 PARA_CRIT_LOG("%s\n", para_strerror(-ret));
442         return 0;
443 }
444
445 static void init_server_command_task(struct server_command_task *sct,
446                 int argc, char **argv)
447 {
448         int ret;
449
450         PARA_NOTICE_LOG("initializing tcp command socket\n");
451         sct->child_fd = -1;
452         sct->argc = argc;
453         sct->argv = argv;
454         ret = para_listen_simple(IPPROTO_TCP, OPT_UINT32_VAL(PORT));
455         if (ret < 0)
456                 goto err;
457         sct->listen_fd = ret;
458         ret = mark_fd_nonblocking(sct->listen_fd);
459         if (ret < 0)
460                 goto err;
461         add_close_on_fork_list(sct->listen_fd); /* child doesn't need the listener */
462         sct->task = task_register(&(struct task_info) {
463                 .name = "server command",
464                 .pre_select = command_pre_select,
465                 .post_select = command_post_select,
466                 .context = sct,
467         }, &sched);
468         return;
469 err:
470         PARA_EMERG_LOG("%s\n", para_strerror(-ret));
471         exit(EXIT_FAILURE);
472 }
473
474 static int init_afs(int argc, char **argv)
475 {
476         int ret, afs_server_socket[2];
477         char c;
478
479         ret = socketpair(PF_UNIX, SOCK_STREAM, 0, afs_server_socket);
480         if (ret < 0)
481                 exit(EXIT_FAILURE);
482         get_random_bytes_or_die((unsigned char *)&afs_socket_cookie,
483                 sizeof(afs_socket_cookie));
484         afs_pid = fork();
485         if (afs_pid < 0)
486                 exit(EXIT_FAILURE);
487         if (afs_pid == 0) { /* child (afs) */
488                 int i;
489
490                 afs_pid = getpid();
491                 for (i = argc - 1; i >= 0; i--)
492                         memset(argv[i], 0, strlen(argv[i]));
493                 i = argc - lls_num_inputs(cmdline_lpr) - 1;
494                 sprintf(argv[i], "para_server (afs)");
495                 close(afs_server_socket[0]);
496                 afs_init(afs_server_socket[1]);
497         }
498         close(afs_server_socket[1]);
499         if (read(afs_server_socket[0], &c, 1) <= 0) {
500                 PARA_EMERG_LOG("early afs exit\n");
501                 exit(EXIT_FAILURE);
502         }
503         ret = mark_fd_nonblocking(afs_server_socket[0]);
504         if (ret < 0)
505                 exit(EXIT_FAILURE);
506         add_close_on_fork_list(afs_server_socket[0]);
507         PARA_INFO_LOG("afs_socket: %d, afs_socket_cookie: %u\n",
508                 afs_server_socket[0], (unsigned) afs_socket_cookie);
509         return afs_server_socket[0];
510 }
511
512 static void handle_help_flags(void)
513 {
514         char *help;
515         bool d = OPT_GIVEN(DETAILED_HELP);
516
517         if (d)
518                 help = lls_long_help(CMD_PTR);
519         else if (OPT_GIVEN(HELP))
520                 help = lls_short_help(CMD_PTR);
521         else
522                 return;
523         printf("%s\n", help);
524         free(help);
525         exit(EXIT_SUCCESS);
526 }
527
528 static void server_init(int argc, char **argv, struct server_command_task *sct)
529 {
530         int ret, afs_socket, daemon_pipe = -1;
531         char *errctx;
532
533         valid_fd_012();
534         /* parse command line options */
535         ret = lls(lls_parse(argc, argv, CMD_PTR, &cmdline_lpr, &errctx));
536         if (ret < 0)
537                 goto fail;
538         server_lpr = cmdline_lpr;
539         daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL));
540         daemon_drop_privileges_or_die(OPT_STRING_VAL(USER),
541                 OPT_STRING_VAL(GROUP));
542         version_handle_flag("server", OPT_GIVEN(VERSION));
543         handle_help_flags();
544         parse_config_or_die(false);
545         /* become daemon */
546         if (OPT_GIVEN(DAEMON))
547                 daemon_pipe = daemonize(true /* parent waits for SIGTERM */);
548         server_pid = getpid();
549         init_random_seed_or_die();
550         daemon_log_welcome("server");
551         init_ipc_or_die(); /* init mmd struct and mmd->lock */
552         daemon_set_start_time();
553         PARA_NOTICE_LOG("initializing audio format handlers\n");
554         afh_init();
555
556         /*
557          * Although afs uses its own signal handling we must ignore SIGUSR1
558          * _before_ the afs child process gets born by init_afs() below.  It's
559          * racy to do this in the child because the parent might send SIGUSR1
560          * before the child gets a chance to ignore this signal.
561          *
562          * We also have to block SIGCHLD before the afs process is created
563          * because otherwise para_server does not notice if afs dies before the
564          * SIGCHLD handler has been installed for the parent process by
565          * init_signal_task() below.
566          */
567         para_sigaction(SIGUSR1, SIG_IGN);
568         para_block_signal(SIGCHLD);
569         PARA_NOTICE_LOG("initializing the audio file selector\n");
570         afs_socket = init_afs(argc, argv);
571         init_signal_task();
572         para_unblock_signal(SIGCHLD);
573         PARA_NOTICE_LOG("initializing virtual streaming system\n");
574         vss_init(afs_socket, &sched);
575         init_server_command_task(sct, argc, argv);
576         if (daemon_pipe >= 0) {
577                 if (write(daemon_pipe, "\0", 1) < 0) {
578                         PARA_EMERG_LOG("daemon_pipe: %s", strerror(errno));
579                         exit(EXIT_FAILURE);
580                 }
581                 close(daemon_pipe);
582         }
583         PARA_NOTICE_LOG("server init complete\n");
584         return;
585 fail:
586         assert(ret < 0);
587         if (errctx)
588                 PARA_ERROR_LOG("%s\n", errctx);
589         PARA_EMERG_LOG("%s\n", para_strerror(-ret));
590         exit(EXIT_FAILURE);
591 }
592
593 static void status_refresh(void)
594 {
595         static int prev_uptime = -1, prev_events = -1;
596         int uptime = daemon_get_uptime(now);
597
598         if (prev_events != mmd->events)
599                 goto out;
600         if (mmd->new_vss_status_flags != mmd->vss_status_flags)
601                 goto out_inc_events;
602         if (uptime / 60 != prev_uptime / 60)
603                 goto out_inc_events;
604         return;
605 out_inc_events:
606         mmd->events++;
607 out:
608         prev_uptime = uptime;
609         prev_events = mmd->events;
610         mmd->vss_status_flags = mmd->new_vss_status_flags;
611         PARA_DEBUG_LOG("%u events, forcing status update\n", mmd->events);
612         killpg(0, SIGUSR1);
613 }
614
615 static int server_select(int max_fileno, fd_set *readfds, fd_set *writefds,
616                 struct timeval *timeout_tv)
617 {
618         int ret;
619
620         status_refresh();
621         mutex_unlock(mmd_mutex);
622         ret = para_select(max_fileno + 1, readfds, writefds, timeout_tv);
623         mutex_lock(mmd_mutex);
624         return ret;
625 }
626
627 /**
628  * The main function of para_server.
629  *
630  * \param argc Usual argument count.
631  * \param argv Usual argument vector.
632  *
633  * \return EXIT_SUCCESS or EXIT_FAILURE.
634  */
635 int main(int argc, char *argv[])
636 {
637         int ret;
638         struct server_command_task server_command_task_struct,
639                 *sct = &server_command_task_struct;
640
641         sched.default_timeout.tv_sec = 1;
642         sched.select_function = server_select;
643
644         server_init(argc, argv, sct);
645         mutex_lock(mmd_mutex);
646         ret = schedule(&sched);
647         /*
648          * We hold the mmd lock: it was re-acquired in server_select()
649          * after the select call.
650          */
651         mutex_unlock(mmd_mutex);
652         sched_shutdown(&sched);
653         signal_shutdown(signal_task);
654         if (!process_is_command_handler()) { /* parent (server) */
655                 mutex_destroy(mmd_mutex);
656                 shm_detach(mmd);
657                 if (ret < 0)
658                         PARA_EMERG_LOG("%s\n", para_strerror(-ret));
659         } else {
660                 alarm(ALARM_TIMEOUT);
661                 close_listed_fds();
662                 ret = handle_connect(sct->child_fd);
663         }
664         vss_shutdown();
665         shm_detach(mmd);
666         lls_free_parse_result(server_lpr, CMD_PTR);
667         if (server_lpr != cmdline_lpr)
668                 lls_free_parse_result(cmdline_lpr, CMD_PTR);
669         exit(ret < 0? EXIT_FAILURE : EXIT_SUCCESS);
670 }