Merge branch 'refs/heads/t/logo'
[paraslash.git] / audiod.c
1 /* Copyright (C) 2005 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
2
3 /** \file audiod.c The paraslash's audio daemon. */
4
5 #include <netinet/in.h>
6 #include <sys/socket.h>
7 #include <regex.h>
8 #include <sys/types.h>
9 #include <arpa/inet.h>
10 #include <sys/un.h>
11 #include <netdb.h>
12 #include <signal.h>
13 #include <pwd.h>
14 #include <lopsub.h>
15
16 #include "audiod.lsg.h"
17 #include "recv_cmd.lsg.h"
18 #include "para.h"
19 #include "error.h"
20 #include "lsu.h"
21 #include "crypt.h"
22 #include "list.h"
23 #include "sched.h"
24 #include "buffer_tree.h"
25 #include "recv.h"
26 #include "filter.h"
27 #include "grab_client.h"
28 #include "client.h"
29 #include "audiod.h"
30 #include "net.h"
31 #include "daemon.h"
32 #include "string.h"
33 #include "fd.h"
34 #include "write.h"
35 #include "signal.h"
36 #include "version.h"
37
38 /** Array of error strings. */
39 DEFINE_PARA_ERRLIST;
40
41 static struct lls_parse_result *lpr;
42 #define CMD_PTR (lls_cmd(0, audiod_suite))
43 #define OPT_RESULT(_name) (lls_opt_result(LSG_AUDIOD_PARA_AUDIOD_OPT_ ## _name, lpr))
44 #define OPT_GIVEN(_name) (lls_opt_given(OPT_RESULT(_name)))
45 #define OPT_STRING_VAL(_name) (lls_string_val(0, OPT_RESULT(_name)))
46 #define OPT_UINT32_VAL(_name) (lls_uint32_val(0, OPT_RESULT(_name)))
47 #define ENUM_STRING_VAL(_name) (lls_enum_string_val(OPT_UINT32_VAL(_name), \
48         lls_opt(LSG_AUDIOD_PARA_AUDIOD_OPT_ ## _name, CMD_PTR)))
49
50 __printf_2_3 void (*para_log)(int, const char*, ...) = daemon_log;
51 /** define the array containing all supported audio formats */
52 const char *audio_formats[] = {AUDIOD_AUDIO_FORMAT_ARRAY NULL};
53
54 /** Defines how audiod handles one supported audio format. */
55 struct audio_format_info {
56         /** the receiver for this audio format */
57         int receiver_num;
58         /** Parsed receiver command line. */
59         struct lls_parse_result *receiver_lpr;
60         /** the number of filters that should be activated for this audio format */
61         unsigned int num_filters;
62         /** Array of filter numbers to be activated. */
63         unsigned *filter_nums;
64         /** Pointer to the array of filter configurations. */
65         void **filter_conf;
66         /** Parsed filter command line, one parse result per filter. */
67         struct lls_parse_result **filter_lpr;
68         /** the number of filters that should be activated for this audio format */
69         unsigned int num_writers;
70         /** Array of writer IDs to be activated. */
71         int *wids;
72         /** Parsed writer command line(s) */
73         struct lls_parse_result **writer_lpr;
74         /** do not start receiver/filters/writer before this time */
75         struct timeval restart_barrier;
76 };
77
78 /* Describes one instance of a receiver-filter-writer chain. */
79 struct slot_info {
80         /* Number of the audio format in this slot. */
81         int format;
82         /* The stream_start status item announced by para_server.  */
83         struct timeval server_stream_start;
84         /* The offset status item announced by para_server. */
85         unsigned offset_seconds;
86         /* The seconds_total status item announced by para_server. */
87         unsigned seconds_total;
88         /* The receiver info associated with this slot. */
89         struct receiver_node *receiver_node;
90         /* The array of filter nodes. */
91         struct filter_node *fns;
92         /* The array of writers attached to the last filter. */
93         struct writer_node *wns;
94 };
95
96 #define RECEIVER_CMD(_a) lls_cmd((_a)->receiver_num, recv_cmd_suite)
97 #define RECEIVER(_a) ((const struct receiver *)lls_user_data(RECEIVER_CMD(_a)))
98
99 /** Maximal number of simultaneous instances. */
100 #define MAX_STREAM_SLOTS 5
101
102 /** Iterate over all slots. */
103 #define FOR_EACH_SLOT(_slot) for (_slot = 0; _slot < MAX_STREAM_SLOTS; _slot++)
104
105 /**
106  * para_audiod uses \p MAX_STREAM_SLOTS different slots, each of which may
107  * be associated with a receiver/filter/writer triple. This array holds all
108  * information on the status of these slots.
109  */
110 struct slot_info slot[MAX_STREAM_SLOTS];
111
112 /** The vss status flags audiod is interested in. */
113 enum vss_status_flags {
114         /** Whether the 'N' flag is set. */
115         VSS_STATUS_FLAG_NEXT = 1,
116         /** The 'P' flag is set. */
117         VSS_STATUS_FLAG_PLAYING = 2,
118 };
119
120 /**
121  * The scheduler instance of para_audiod.
122  *
123  * This is needed also in audiod_command.c (for the tasks command), so it can
124  * not be made static.
125  */
126 struct sched sched = {.max_fileno = 0};
127
128 /* The task for obtaining para_server's status (para_client stat). */
129 struct status_task {
130         /** The associated task structure of audiod. */
131         struct task *task;
132         /** Client data associated with the stat task. */
133         struct client_task *ct;
134         /** Do not restart client command until this time. */
135         struct timeval restart_barrier;
136         /** Last time we received status data from para_server. */
137         struct timeval last_status_read;
138         size_t min_iqs;
139         /** The offset value announced by para_server. */
140         int offset_seconds;
141         /** The length of the current audio file as announced by para_server. */
142         int length_seconds;
143         /** The start of the current stream from the view of para_server. */
144         struct timeval server_stream_start;
145         /** The average time deviation between para_server and para_audiod. */
146         struct timeval sa_time_diff;
147         /** Whether client time is ahead of server time. */
148         int sa_time_diff_sign;
149         /** The 'P' and the 'N' flags as announced by para_server. */
150         enum vss_status_flags vss_status;
151         /** Number of times the clock difference is to be checked. */
152         unsigned clock_diff_count;
153         /** When to start the next check for clock difference. */
154         struct timeval clock_diff_barrier;
155         /** Number of the audio format as announced by para_server. */
156         int current_audio_format_num;
157         /* The status task btrn is the child of the client task. */
158         struct btr_node *btrn;
159 };
160
161 /** The array of status items sent by para_server. */
162 char *stat_item_values[NUM_STAT_ITEMS] = {NULL};
163
164 /**
165  * The current mode of operation (AUDIOD_OFF, AUDIOD_ON or AUDIOD_STANDBY).
166  * Set by the on/off/cycle commands.
167  */
168 int audiod_status = AUDIOD_ON;
169
170 static char *socket_name;
171 static struct audio_format_info afi[NUM_AUDIO_FORMATS];
172 static struct signal_task *signal_task;
173 static struct status_task status_task_struct;
174 static uid_t *uid_whitelist;
175
176 /**
177  * The task that calls the status command of para_server.
178  *
179  * \sa \ref struct status_task.
180  */
181 static struct status_task *stat_task = &status_task_struct;
182
183 struct command_task {
184         /** The local listening socket. */
185         int fd;
186         /** The associated task structure. */
187         struct task *task;
188 };
189
190 /** Iterate over all supported audio formats. */
191 #define FOR_EACH_AUDIO_FORMAT(af) for (af = 0; af < NUM_AUDIO_FORMATS; af++)
192
193 /**
194  * Get the audio format number.
195  *
196  * \param name The name of the audio format.
197  *
198  * \return The audio format number on success, -E_UNSUPPORTED_AUDIO_FORMAT if
199  * \a name is not a supported audio format.
200  */
201 static int get_audio_format_num(const char *name)
202 {
203         int i;
204
205         while (para_isspace(*name))
206                 name++;
207         FOR_EACH_AUDIO_FORMAT(i)
208                 if (!strcmp(name, audio_formats[i]))
209                         return i;
210         return -E_UNSUPPORTED_AUDIO_FORMAT;
211 }
212
213 /**
214  * Return the flags for the \a decoder_flags status item.
215  *
216  * Allocates a string which contains one octal digit per slot.  Bit zero (value
217  * 1) is set if a receiver is active. Bit one (value 2) and bit three (value 4)
218  * have the analogous meaning for filter and writer, respectively.
219  *
220  * \return String that must be freed by the caller.
221  */
222 __malloc char *audiod_get_decoder_flags(void)
223 {
224         int i;
225         char flags[MAX_STREAM_SLOTS + 1];
226
227         FOR_EACH_SLOT(i) {
228                 struct slot_info *s = &slot[i];
229                 char flag = '0';
230                 if (s->receiver_node)
231                         flag += 1;
232                 if (s->fns)
233                         flag += 2;
234                 if (s->wns)
235                         flag += 4;
236                 flags[i] = flag;
237         }
238         flags[MAX_STREAM_SLOTS] = '\0';
239         return para_strdup(flags);
240 }
241
242 static int get_matching_audio_format_nums(const char *re)
243 {
244         int i, ret;
245         regex_t preg;
246
247         ret = para_regcomp(&preg, re, REG_EXTENDED | REG_NOSUB);
248         if (ret < 0)
249                 return ret;
250         ret = 0;
251         FOR_EACH_AUDIO_FORMAT(i)
252                 if (regexec(&preg, audio_formats[i], 0, NULL, 0) != REG_NOMATCH)
253                         ret |= (1 << i);
254         regfree(&preg);
255         return ret;
256 }
257
258 static int get_play_time_slot_num(void)
259 {
260         int i, oldest_slot = -1;
261         struct timeval oldest_wstime = {0, 0};
262
263         FOR_EACH_SLOT(i) {
264                 struct slot_info *s = &slot[i];
265                 struct timeval wstime;
266                 if (!s->wns || !s->wns[0].btrn)
267                         continue;
268                 btr_get_node_start(s->wns[0].btrn, &wstime);
269                 if (oldest_slot >= 0 && tv_diff(&wstime, &oldest_wstime, NULL) > 0)
270                         continue;
271                 oldest_wstime = wstime;
272                 oldest_slot = i;
273         }
274         return oldest_slot;
275 }
276
277 /**
278  * Compute the play time based on information of the current slot.
279  *
280  * This computes a string of the form "0:07 [3:33] (3%/3:40)" using information
281  * from the status items received from para_server and the start time of the
282  * (first) writer of the current slot.
283  *
284  * It has to take into account that the stream was probably not started at
285  * the beginning of the file, that the clock between the server and the client
286  * host may differ and that playback of the stream was delayed, e.g. because
287  * the prebuffer filter is used in the filter configuration.
288  *
289  * If no writer is active, for example because para_audiod runs in standby
290  * mode, an approximation based only on the status items is computed and the
291  * returned string is prefixed with "~".
292  *
293  * \return A string that must be freed by the caller.
294  */
295 char *get_time_string(void)
296 {
297         int ret, seconds = 0, length = stat_task->length_seconds;
298         struct timeval *tmp, sum, sss, /* server stream start */
299                 rstime, /* receiver start time */
300                 wstime, /* writer start time */
301                 wtime, /* now - writer start */
302                 rskip; /* receiver start - sss */
303         int slot_num = get_play_time_slot_num();
304         struct slot_info *s = slot_num < 0? NULL : &slot[slot_num];
305         bool writer_active = s && s->wns && s->wns[0].btrn;
306         char *msg;
307
308         if (audiod_status == AUDIOD_OFF)
309                 goto empty;
310         if (stat_task->server_stream_start.tv_sec == 0) {
311                 if (stat_task->vss_status & VSS_STATUS_FLAG_PLAYING)
312                         goto out; /* server is about to change file */
313                 if (length > 0) /* paused */
314                         return NULL;
315                 goto empty; /* stopped */
316         }
317         /*
318          * Valid status items and playing, set length and tmp to the stream
319          * start. We use the writer start time from the slot info and fall back
320          * to the info from current status items if no writer is active yet.
321          */
322         tmp = &stat_task->server_stream_start;
323         if (writer_active) {
324                 btr_get_node_start(s->wns[0].btrn, &wstime);
325                 if (wstime.tv_sec != 0) { /* writer wrote something */
326                         if (s->server_stream_start.tv_sec == 0) {
327                                 /* copy status info to slot */
328                                 s->server_stream_start = stat_task->server_stream_start;
329                                 s->offset_seconds = stat_task->offset_seconds;
330                                 s->seconds_total = stat_task->length_seconds;
331                         }
332                         length = s->seconds_total;
333                         tmp = &s->server_stream_start;
334                 }
335         }
336         if (stat_task->sa_time_diff_sign > 0)
337                 tv_diff(tmp, &stat_task->sa_time_diff, &sss);
338         else
339                 tv_add(tmp, &stat_task->sa_time_diff, &sss);
340         if (!writer_active) {
341                 struct timeval diff;
342                 tv_diff(now, &sss, &diff);
343                 seconds = diff.tv_sec + stat_task->offset_seconds;
344                 goto out;
345         }
346         tv_diff(now, &wstime, &wtime);
347         //PARA_CRIT_LOG("offset %d\n", s->offset_seconds);
348         seconds = s->offset_seconds;
349         if (s->receiver_node->btrn) {
350                 btr_get_node_start(s->receiver_node->btrn, &rstime);
351                 ret = tv_diff(&rstime, &sss, &rskip);
352                 if (ret > 0 && rskip.tv_sec > 2) {
353                         /* audiod was started in the middle of the stream */
354                         tv_add(&wtime, &rskip, &sum);
355                         seconds += sum.tv_sec;
356                 } else
357                         seconds += wtime.tv_sec;
358         } else
359                 seconds += wtime.tv_sec;
360 out:
361         seconds = PARA_MIN(seconds, length);
362         seconds = PARA_MAX(seconds, 0);
363         msg = make_message(
364                 "%s%d:%02d [%d:%02d] (%d%%/%d:%02d)",
365                 s? "" : "~",
366                 seconds / 60,
367                 seconds % 60,
368                 (length - seconds) / 60,
369                 (length - seconds) % 60,
370                 length? (seconds * 100 + length / 2) / length : 0,
371                 length / 60,
372                 length % 60
373         );
374         //PARA_DEBUG_LOG("slot %d: %s\n", slot_num, msg);
375         return msg;
376 empty:
377         return para_strdup(NULL);
378 }
379
380 static void parse_config_or_die(void)
381 {
382         int i, ret;
383         uint32_t n;
384
385         ret = lsu_merge_config_file_options(OPT_STRING_VAL(CONFIG_FILE),
386                 "audiod.conf", &lpr, CMD_PTR, audiod_suite, 0U /* flags */);
387         if (ret < 0) {
388                 PARA_EMERG_LOG("failed to parse config file: %s\n",
389                         para_strerror(-ret));
390                 exit(EXIT_FAILURE);
391         }
392         daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL));
393         n = OPT_GIVEN(USER_ALLOW);
394         if (n == 0)
395                 return;
396         uid_whitelist = para_malloc(n * sizeof(uid_t));
397         for (i = 0; i < n; i++) {
398                 const char *arg = lls_string_val(i, OPT_RESULT(USER_ALLOW));
399                 int32_t val;
400                 struct passwd *pw;
401                 ret = para_atoi32(arg, &val);
402                 if (ret >= 0) {
403                         uid_whitelist[i] = val;
404                         continue;
405                 }
406                 pw = getpwnam(arg);
407                 if (!pw) {
408                         PARA_EMERG_LOG("invalid username: %s\n", arg);
409                         exit(EXIT_FAILURE);
410                 }
411                 uid_whitelist[i] = pw->pw_uid;
412         }
413 }
414
415 static void setup_signal_handling(void)
416 {
417         signal_task = signal_init_or_die();
418         para_install_sighandler(SIGINT);
419         para_install_sighandler(SIGTERM);
420         para_install_sighandler(SIGHUP);
421         para_sigaction(SIGPIPE, SIG_IGN);
422 }
423
424 static void clear_slot(int slot_num)
425 {
426         struct slot_info *s = &slot[slot_num];
427
428         PARA_INFO_LOG("clearing slot %d\n", slot_num);
429         memset(s, 0, sizeof(struct slot_info));
430         s->format = -1;
431 }
432
433 static void close_receiver(int slot_num)
434 {
435         struct slot_info *s = &slot[slot_num];
436         struct audio_format_info *a;
437
438         if (s->format < 0 || !s->receiver_node)
439                 return;
440         a = &afi[s->format];
441         PARA_NOTICE_LOG("closing %s receiver in slot %d\n",
442                 audio_formats[s->format], slot_num);
443         RECEIVER(a)->close(s->receiver_node);
444         btr_remove_node(&s->receiver_node->btrn);
445         task_reap(&s->receiver_node->task);
446         free(s->receiver_node);
447         s->receiver_node = NULL;
448         if (audiod_status == AUDIOD_ON)
449                 stat_task->current_audio_format_num = -1;
450         tv_add(now, &(struct timeval)EMBRACE(0, 200 * 1000),
451                 &a->restart_barrier);
452 }
453
454 static void writer_cleanup(struct writer_node *wn)
455 {
456         if (!wn)
457                 return;
458         PARA_INFO_LOG("closing %s\n", writer_name(wn->wid));
459         writer_get(wn->wid)->close(wn);
460         btr_remove_node(&wn->btrn);
461         task_reap(&wn->task);
462 }
463
464 static void close_writers(struct slot_info *s)
465 {
466         struct audio_format_info *a;
467         int i;
468
469         if (s->format < 0)
470                 return;
471         assert(s->wns);
472         a = afi + s->format;
473         if (a->num_writers == 0)
474                 writer_cleanup(s->wns);
475         else {
476                 for (i = 0; i < a->num_writers; i++)
477                         writer_cleanup(s->wns + i);
478         }
479         free(s->wns);
480         s->wns = NULL;
481 }
482
483 static void close_filters(struct slot_info *s)
484 {
485         int i;
486         struct audio_format_info *a = afi + s->format;
487         if (a->num_filters == 0)
488                 return;
489         for (i = a->num_filters - 1; i >= 0; i--) {
490                 struct filter_node *fn = s->fns + i;
491                 const struct filter *f;
492
493                 if (!fn)
494                         continue;
495                 f = filter_get(fn->filter_num);
496                 if (f->close)
497                         f->close(fn);
498                 btr_remove_node(&fn->btrn);
499                 task_reap(&fn->task);
500         }
501         free(s->fns);
502         s->fns = NULL;
503 }
504
505 static void notify_receivers(int error)
506 {
507         int i;
508
509         FOR_EACH_SLOT(i) {
510                 struct slot_info *s = slot + i;
511                 if (s->format < 0)
512                         continue;
513                 if (!s->receiver_node)
514                         continue;
515                 task_notify(s->receiver_node->task, error);
516         }
517 }
518
519 static int get_empty_slot(void)
520 {
521         int i;
522         struct slot_info *s;
523
524         FOR_EACH_SLOT(i) {
525                 s = &slot[i];
526                 if (s->format < 0) {
527                         clear_slot(i);
528                         return i;
529                 }
530                 if (s->wns || s->receiver_node || s->fns)
531                         continue;
532                 clear_slot(i);
533                 return i;
534         }
535         return -E_NO_MORE_SLOTS;
536 }
537
538 static void open_filters(struct slot_info *s)
539 {
540         struct audio_format_info *a = afi + s->format;
541         struct filter_node *fn;
542         int nf = a->num_filters;
543         struct btr_node *parent;
544         int i;
545
546         if (nf == 0)
547                 return;
548         PARA_INFO_LOG("opening %s filters\n", audio_formats[s->format]);
549         assert(s->fns == NULL);
550         s->fns = para_calloc(nf * sizeof(struct filter_node));
551         parent = s->receiver_node->btrn;
552         for (i = 0; i < nf; i++) {
553                 char buf[20];
554                 const char *name;
555                 const struct filter *f = filter_get(a->filter_nums[i]);
556                 fn = s->fns + i;
557                 fn->filter_num = a->filter_nums[i];
558                 fn->conf = a->filter_conf[i];
559                 fn->lpr = a->filter_lpr[i];
560                 name = filter_name(fn->filter_num);
561                 fn->btrn = btr_new_node(&(struct btr_node_description)
562                         EMBRACE(.name = name, .parent = parent,
563                                 .handler = f->execute, .context = fn));
564
565                 if (f->open)
566                         f->open(fn);
567                 sprintf(buf, "%s (slot %d)", name, (int)(s - slot));
568                 fn->task = task_register(&(struct task_info) {
569                         .name = buf,
570                         .pre_select = f->pre_select,
571                         .post_select = f->post_select,
572                         .context = fn,
573                 }, &sched);
574                 parent = fn->btrn;
575                 PARA_NOTICE_LOG("%s filter %d/%d (%s) started in slot %d\n",
576                         audio_formats[s->format], i,  nf, name, (int)(s - slot));
577         }
578 }
579
580 static void open_writers(struct slot_info *s)
581 {
582         int i;
583         struct audio_format_info *a = afi + s->format;
584         struct writer_node *wn;
585         struct btr_node *parent = s->fns[a->num_filters - 1].btrn;
586
587         assert(s->wns == NULL);
588         s->wns = para_calloc(PARA_MAX(1U, a->num_writers)
589                 * sizeof(struct writer_node));
590         for (i = 0; i < a->num_writers; i++) {
591                 wn = s->wns + i;
592                 wn->wid = a->wids[i];
593                 wn->lpr = a->writer_lpr[i];
594                 register_writer_node(wn, parent, &sched);
595                 PARA_NOTICE_LOG("%s writer started in slot %d\n",
596                         writer_name(a->wids[i]), (int)(s - slot));
597         }
598 }
599
600 /* returns slot num on success */
601 static int open_receiver(int format)
602 {
603         struct audio_format_info *a = &afi[format];
604         struct slot_info *s;
605         int ret, slot_num;
606         const struct receiver *r = RECEIVER(a);
607         const char *name = lls_command_name(RECEIVER_CMD(a));
608         struct receiver_node *rn;
609
610         tv_add(now, &(struct timeval)EMBRACE(2, 0), &a->restart_barrier);
611         ret = get_empty_slot();
612         if (ret < 0)
613                 return ret;
614         slot_num = ret;
615         rn = para_calloc(sizeof(*rn));
616         rn->receiver = r;
617         rn->lpr = a->receiver_lpr;
618         rn->btrn = btr_new_node(&(struct btr_node_description)
619                 EMBRACE(.name = name, .context = rn));
620         ret = r->open(rn);
621         if (ret < 0) {
622                 PARA_ERROR_LOG("could not open %s receiver\n", name);
623                 btr_remove_node(&rn->btrn);
624                 free(rn);
625                 return ret;
626         }
627         s = &slot[slot_num];
628         s->format = format;
629         s->receiver_node = rn;
630         PARA_NOTICE_LOG("started %s: %s receiver in slot %d\n",
631                 audio_formats[format], name, slot_num);
632         rn->task = task_register(&(struct task_info) {
633                 .name = name,
634                 .pre_select = r->pre_select,
635                 .post_select = r->post_select,
636                 .context = rn,
637         }, &sched);
638         return slot_num;
639 }
640
641 static bool receiver_running(void)
642 {
643         int i;
644         long unsigned ss1 = stat_task->server_stream_start.tv_sec;
645
646         FOR_EACH_SLOT(i) {
647                 struct slot_info *s = &slot[i];
648                 long unsigned ss2 = s->server_stream_start.tv_sec;
649
650                 if (!s->receiver_node)
651                         continue;
652                 if (task_status(s->receiver_node->task) >= 0)
653                         return true;
654                 if (ss1 == ss2)
655                         return true;
656         }
657         return false;
658 }
659
660 /**
661  * Return the root node of the current buffer tree.
662  *
663  * This is only used for stream grabbing.
664  *
665  * \return \p NULL if no slot is currently active. If more than one buffer tree
666  * exists, the node corresponding to the most recently started receiver is
667  * returned.
668  */
669 struct btr_node *audiod_get_btr_root(void)
670 {
671         int i, newest_slot = -1;
672         struct timeval newest_rstime = {0, 0};
673
674         FOR_EACH_SLOT(i) {
675                 struct slot_info *s = &slot[i];
676                 struct timeval rstime;
677                 if (!s->receiver_node)
678                         continue;
679                 if (task_status(s->receiver_node->task) < 0)
680                         continue;
681                 btr_get_node_start(s->receiver_node->btrn, &rstime);
682                 if (newest_slot >= 0 && tv_diff(&rstime, &newest_rstime, NULL) < 0)
683                         continue;
684                 newest_rstime = rstime;
685                 newest_slot = i;
686         }
687         if (newest_slot == -1)
688                 return NULL;
689         return slot[newest_slot].receiver_node->btrn;
690 }
691
692 /* whether a new instance of a decoder should be started. */
693 static bool must_start_decoder(void)
694 {
695         int cafn = stat_task->current_audio_format_num;
696         unsigned vs = stat_task->vss_status;
697
698         if (audiod_status != AUDIOD_ON)
699                 return false;
700         if (cafn < 0)
701                 return false;
702         if (!stat_task->ct)
703                 return false;
704         if (vs & VSS_STATUS_FLAG_NEXT)
705                 return false;
706         if (!(vs & VSS_STATUS_FLAG_PLAYING))
707                 return false;
708         if (receiver_running())
709                 return false;
710         if (tv_diff(now, &afi[cafn].restart_barrier, NULL) < 0)
711                 return false;
712         return true;
713 }
714
715 static void compute_time_diff(const struct timeval *status_time)
716 {
717         struct timeval tmp, diff;
718         static unsigned count;
719         int sign, sa_time_diff_sign = stat_task->sa_time_diff_sign;
720         const struct timeval max_deviation = {0, 500 * 1000};
721         const int time_smooth = 5;
722
723         sign = tv_diff(status_time, now, &diff);
724 //              PARA_NOTICE_LOG("%s: sign = %i, sa_time_diff_sign = %i\n", __func__,
725 //                      sign, sa_time_diff_sign);
726         if (!count) {
727                 sa_time_diff_sign = sign;
728                 stat_task->sa_time_diff = diff;
729                 count++;
730                 goto out;
731         }
732         if (count > 5) {
733                 int s = tv_diff(&diff, &stat_task->sa_time_diff, &tmp);
734                 if (tv_diff(&max_deviation, &tmp, NULL) < 0)
735                         PARA_WARNING_LOG("time diff jump: %lums\n",
736                                 s * tv2ms(&tmp));
737         }
738         count++;
739         sa_time_diff_sign = tv_convex_combination(
740                 sa_time_diff_sign * time_smooth, &stat_task->sa_time_diff,
741                 count > 10? sign : sign * time_smooth, &diff,
742                 &tmp);
743         stat_task->sa_time_diff = tmp;
744         PARA_INFO_LOG("time diff (cur/avg): %s%lums/%s%lums\n",
745                 sign < 0? "-" : "+",
746                 tv2ms(&diff),
747                 sa_time_diff_sign < 0? "-" : "+",
748                 tv2ms(&stat_task->sa_time_diff)
749         );
750 out:
751         stat_task->sa_time_diff_sign = sa_time_diff_sign;
752 }
753
754 static int update_item(int itemnum, char *buf)
755 {
756         long unsigned sec, usec;
757
758         if (stat_task->clock_diff_count && itemnum != SI_current_time)
759                 return 1;
760         free(stat_item_values[itemnum]);
761         stat_item_values[itemnum] = para_strdup(buf);
762         stat_client_write_item(itemnum);
763         switch (itemnum) {
764         case SI_status_flags:
765                 stat_task->vss_status = 0;
766                 if (strchr(buf, 'N'))
767                         stat_task->vss_status |= VSS_STATUS_FLAG_NEXT;
768                 if (strchr(buf, 'P'))
769                         stat_task->vss_status |= VSS_STATUS_FLAG_PLAYING;
770                 break;
771         case SI_offset:
772                 stat_task->offset_seconds = atoi(buf);
773                 break;
774         case SI_seconds_total:
775                 stat_task->length_seconds = atoi(buf);
776                 break;
777         case SI_stream_start:
778                 if (sscanf(buf, "%lu.%lu", &sec, &usec) == 2) {
779                         stat_task->server_stream_start.tv_sec = sec;
780                         stat_task->server_stream_start.tv_usec = usec;
781                 }
782                 break;
783         case SI_current_time:
784                 if (sscanf(buf, "%lu.%lu", &sec, &usec) == 2) {
785                         struct timeval tv = {sec, usec};
786                         compute_time_diff(&tv);
787                 }
788                 break;
789         case SI_format:
790                 stat_task->current_audio_format_num
791                         = get_audio_format_num(buf);
792         }
793         return 1;
794 }
795
796 static int parse_stream_command(const char *txt, const char **cmd)
797 {
798         int ret, len;
799         char *re, *p = strchr(txt, ':');
800
801         if (!p)
802                 return -E_MISSING_COLON;
803         *cmd = p + 1;
804         len = p - txt;
805         re = para_malloc(len + 1);
806         strncpy(re, txt, len);
807         re[len] = '\0';
808         ret = get_matching_audio_format_nums(re);
809         free(re);
810         return ret;
811 }
812
813 static int add_filter(int format, const char *cmdline)
814 {
815         struct audio_format_info *a = &afi[format];
816         int filter_num, nf = a->num_filters;
817         void *cfg;
818         struct lls_parse_result *flpr;
819
820         filter_num = filter_setup(cmdline, &cfg, &flpr);
821         a->filter_lpr = para_realloc(a->filter_lpr,
822                 (nf + 1) * sizeof(flpr));
823         a->filter_conf = para_realloc(a->filter_conf,
824                 (nf + 1) * sizeof(void *));
825         a->filter_nums = para_realloc(a->filter_nums,
826                 (nf + 1) * sizeof(unsigned));
827
828         a->filter_nums[nf] = filter_num;
829         a->filter_conf[nf] = cfg;
830         a->filter_lpr[nf] = flpr;
831         a->num_filters++;
832         PARA_INFO_LOG("%s filter %d: %s\n", audio_formats[format], nf,
833                 filter_name(filter_num));
834         return filter_num;
835 }
836
837 static int parse_writer_args(void)
838 {
839         int i, ret;
840         const char *cmd;
841         struct audio_format_info *a;
842
843         for (i = 0; i < OPT_GIVEN(WRITER); i++) {
844                 int j, nw, af_mask;
845
846                 ret = parse_stream_command(lls_string_val(i,
847                         OPT_RESULT(WRITER)), &cmd);
848                 if (ret < 0)
849                         return ret;
850                 af_mask = ret;
851                 FOR_EACH_AUDIO_FORMAT(j) {
852                         a = afi + j;
853                         if ((af_mask & (1 << j)) == 0) /* no match */
854                                 continue;
855                         nw = a->num_writers;
856                         a->wids = para_realloc(a->wids, (nw + 1) * sizeof(int));
857                         a->writer_lpr = para_realloc(a->writer_lpr,
858                                 (nw + 1) * sizeof(struct lls_parse_result *));
859                         a->wids[nw] = check_writer_arg_or_die(cmd,
860                                 a->writer_lpr + nw);
861                         PARA_INFO_LOG("%s writer #%d: %s\n", audio_formats[j],
862                                 nw, writer_name(a->wids[nw]));
863                         a->num_writers++;
864                 }
865         }
866         /* Use default writer for audio formats which are not yet set up. */
867         FOR_EACH_AUDIO_FORMAT(i) {
868                 a = afi + i;
869                 if (a->num_writers > 0)
870                         continue; /* already set up */
871                 a->num_writers = 1;
872                 a->wids = para_malloc(sizeof(int));
873                 a->writer_lpr = para_malloc(sizeof(struct lls_parse_result *));
874                 a->wids[0] = check_writer_arg_or_die(NULL, a->writer_lpr);
875                 PARA_INFO_LOG("%s writer: %s (default)\n", audio_formats[i],
876                         writer_name(a->wids[0]));
877         }
878         return 1;
879 }
880
881 static int parse_receiver_args(void)
882 {
883         int i, ret;
884         const char *arg;
885         struct audio_format_info *a;
886
887         FOR_EACH_AUDIO_FORMAT(i)
888                 afi[i].receiver_num = -1;
889         for (i = OPT_GIVEN(RECEIVER) - 1; i >= 0; i--) {
890                 int j, af_mask;
891
892                 ret = parse_stream_command(lls_string_val(i,
893                         OPT_RESULT(RECEIVER)), &arg);
894                 if (ret < 0)
895                         goto out;
896                 af_mask = ret;
897                 FOR_EACH_AUDIO_FORMAT(j) {
898                         a = afi + j;
899                         if ((af_mask & (1 << j)) == 0) /* no match */
900                                 continue;
901                         /*
902                          * If multiple receivers are given for this audio format, the
903                          * last one wins and we have to free the previous receiver
904                          * config here. Since we are iterating backwards, the winning
905                          * receiver arg is in fact the first one given.
906                          */
907                         lls_free_parse_result(a->receiver_lpr, RECEIVER_CMD(a));
908                         a->receiver_num = check_receiver_arg(arg, &a->receiver_lpr);
909                 }
910         }
911         /*
912          * Use the default receiver for those audio formats for which no
913          * receiver was specified.
914          */
915         FOR_EACH_AUDIO_FORMAT(i) {
916                 a = afi + i;
917                 if (a->receiver_num >= 0)
918                         continue;
919                 a->receiver_num = check_receiver_arg(NULL, &a->receiver_lpr);
920         }
921         FOR_EACH_AUDIO_FORMAT(i) {
922                 a = afi + i;
923                 PARA_INFO_LOG("receiving %s streams via %s receiver\n",
924                         audio_formats[i], lls_command_name(RECEIVER_CMD(a)));
925         }
926         ret = 1;
927 out:
928         return ret;
929 }
930
931 static int init_default_filters(void)
932 {
933         int i, ret = 1;
934
935         FOR_EACH_AUDIO_FORMAT(i) {
936                 struct audio_format_info *a = &afi[i];
937                 const char *name = lls_command_name(RECEIVER_CMD(a));
938                 char *tmp;
939                 int j;
940
941                 if (a->num_filters)
942                         continue; /* no default -- nothing to to */
943                 /*
944                  * udp and dccp streams are fec-encoded, so add fecdec as the
945                  * first filter.
946                  */
947                 if (strcmp(name, "udp") == 0 || strcmp(name, "dccp") == 0) {
948                         tmp = para_strdup("fecdec");
949                         add_filter(i, tmp);
950                         free(tmp);
951                         if (ret < 0)
952                                 goto out;
953                 }
954                 /* add "dec" to audio format name */
955                 tmp = make_message("%sdec", audio_formats[i]);
956                 for (j = 1; filter_get(j); j++)
957                         if (!strcmp(tmp, filter_name(j)))
958                                 break;
959                 free(tmp);
960                 ret = -E_UNSUPPORTED_FILTER;
961                 if (!filter_get(j))
962                         goto out;
963                 tmp = para_strdup(filter_name(j));
964                 ret = add_filter(i, tmp);
965                 free(tmp);
966                 if (ret < 0)
967                         goto out;
968                 PARA_INFO_LOG("%s -> default filter: %s\n", audio_formats[i],
969                         filter_name(j));
970         }
971 out:
972         return ret;
973 }
974
975 static int parse_filter_args(void)
976 {
977         int i, j, ret, af_mask, num_matches;
978
979         for (i = 0; i < OPT_GIVEN(FILTER); i++) {
980                 const char *arg;
981                 ret = parse_stream_command(lls_string_val(i,
982                         OPT_RESULT(FILTER)), &arg);
983                 if (ret < 0)
984                         goto out;
985                 af_mask = ret;
986                 num_matches = 0;
987                 FOR_EACH_AUDIO_FORMAT(j) {
988                         if ((af_mask & (1 << j)) == 0) /* no match */
989                                 continue;
990                         ret = add_filter(j, arg);
991                         if (ret < 0)
992                                 goto out;
993                         num_matches++;
994                 }
995                 if (num_matches == 0)
996                         PARA_WARNING_LOG("ignoring filter spec: %s\n",
997                                 lls_string_val(i, OPT_RESULT(FILTER)));
998         }
999         ret = init_default_filters(); /* use default values for the rest */
1000 out:
1001         return ret;
1002 }
1003
1004 static int parse_stream_args(void)
1005 {
1006         int ret;
1007
1008         ret = parse_receiver_args();
1009         if (ret < 0)
1010                 return ret;
1011         ret = parse_filter_args();
1012         if (ret < 0)
1013                 return ret;
1014         ret = parse_writer_args();
1015         if (ret < 0)
1016                 return ret;
1017         return 1;
1018 }
1019
1020 /* does not unlink socket on errors */
1021 static void init_local_socket(struct command_task *ct)
1022 {
1023         if (OPT_GIVEN(SOCKET))
1024                 socket_name = para_strdup(OPT_STRING_VAL(SOCKET));
1025         else {
1026                 char *hn = para_hostname();
1027                 socket_name = make_message("/var/paraslash/audiod_socket.%s",
1028                         hn);
1029                 free(hn);
1030         }
1031         PARA_NOTICE_LOG("local socket: %s\n", socket_name);
1032         if (OPT_GIVEN(FORCE))
1033                 unlink(socket_name);
1034         ct->fd = create_local_socket(socket_name);
1035         if (ct->fd >= 0)
1036                 return;
1037         PARA_EMERG_LOG("%s\n", para_strerror(-ct->fd));
1038         exit(EXIT_FAILURE);
1039 }
1040
1041 static int signal_post_select(struct sched *s, void *context)
1042 {
1043         struct signal_task *st = context;
1044         int ret, signum;
1045
1046         ret = task_get_notification(st->task);
1047         if (ret < 0)
1048                 return ret;
1049         signum = para_next_signal(&s->rfds);
1050         switch (signum) {
1051         case SIGINT:
1052         case SIGTERM:
1053         case SIGHUP:
1054                 PARA_NOTICE_LOG("received signal %d\n", signum);
1055                 task_notify_all(s, E_AUDIOD_SIGNAL);
1056                 return -E_AUDIOD_SIGNAL;
1057         }
1058         return 0;
1059 }
1060
1061 static void command_pre_select(struct sched *s, void *context)
1062 {
1063         struct command_task *ct = context;
1064         para_fd_set(ct->fd, &s->rfds, &s->max_fileno);
1065 }
1066
1067 static int command_post_select(struct sched *s, void *context)
1068 {
1069         int ret;
1070         struct command_task *ct = context;
1071         static struct timeval last_status_dump;
1072         struct timeval tmp, delay;
1073         bool force = false;
1074
1075         ret = task_get_notification(ct->task);
1076         if (ret < 0)
1077                 return ret;
1078         ret = handle_connect(ct->fd, &s->rfds);
1079         if (ret < 0) {
1080                 PARA_ERROR_LOG("%s\n", para_strerror(-ret));
1081                 if (ret == -E_AUDIOD_TERM) {
1082                         task_notify_all(s, -ret);
1083                         return ret;
1084                 }
1085         } else if (ret > 0)
1086                 force = true;
1087         if (force == true)
1088                 goto dump;
1089
1090         /* if last status dump was less than 500ms ago, do nothing */
1091         delay.tv_sec = 0;
1092         delay.tv_usec = 500 * 1000;
1093         tv_add(&last_status_dump, &delay, &tmp);
1094         if (tv_diff(now, &tmp, NULL) < 0)
1095                 return 0;
1096
1097         /*
1098          * If last status dump was more than 5s ago, force update. Otherwise,
1099          * update only those items that have changed.
1100          */
1101         delay.tv_sec = 5;
1102         delay.tv_usec = 0;
1103         tv_add(&last_status_dump, &delay, &tmp);
1104         if (tv_diff(now, &tmp, NULL) > 0)
1105                 force = true;
1106 dump:
1107         audiod_status_dump(force);
1108         last_status_dump = *now;
1109         return 1;
1110 }
1111
1112 static void init_command_task(struct command_task *ct)
1113 {
1114         init_local_socket(ct); /* doesn't return on errors */
1115
1116         ct->task = task_register(&(struct task_info) {
1117                 .name = "command",
1118                 .pre_select = command_pre_select,
1119                 .post_select = command_post_select,
1120                 .context = ct,
1121         }, &sched);
1122 }
1123
1124 static void close_stat_pipe(void)
1125 {
1126         if (!stat_task->ct)
1127                 return;
1128         task_reap(&stat_task->ct->task);
1129         client_close(stat_task->ct);
1130         stat_task->ct = NULL;
1131         clear_and_dump_items();
1132         stat_task->length_seconds = 0;
1133         stat_task->offset_seconds = 0;
1134         stat_task->vss_status = 0;
1135         stat_task->current_audio_format_num = -1;
1136         audiod_status_dump(true);
1137 }
1138
1139 /* avoid busy loop if server is down */
1140 static void set_stat_task_restart_barrier(unsigned seconds)
1141 {
1142         struct timeval delay = {seconds, 0};
1143         tv_add(now, &delay, &stat_task->restart_barrier);
1144 }
1145
1146 static bool must_close_slot(int slot_num)
1147 {
1148         struct slot_info *s = &slot[slot_num];
1149         struct audio_format_info *a = afi + s->format;
1150         int i;
1151
1152         if (s->format < 0)
1153                 return false;
1154         if (s->receiver_node && task_status(s->receiver_node->task) >= 0)
1155                 return false;
1156         for (i = 0; i < a->num_filters; i++)
1157                 if (s->fns && task_status(s->fns[i].task) >= 0)
1158                         return false;
1159         if (a->num_writers > 0) {
1160                 for (i = 0; i < a->num_writers; i++)
1161                         if (s->wns && task_status(s->wns[i].task) >= 0)
1162                                 return false;
1163         } else {
1164                 if (s->wns && task_status(s->wns[0].task) >= 0)
1165                         return false;
1166         }
1167         return true;
1168 }
1169
1170 static void close_slot(int slot_num)
1171 {
1172         struct slot_info *s = slot + slot_num;
1173
1174         PARA_INFO_LOG("closing slot %d\n", slot_num);
1175         close_writers(s);
1176         close_filters(s);
1177         close_receiver(slot_num);
1178         clear_slot(slot_num);
1179 }
1180
1181 static void close_unused_slots(void)
1182 {
1183         int i;
1184         bool dump = false;
1185
1186         FOR_EACH_SLOT(i)
1187                 if (must_close_slot(i)) {
1188                         close_slot(i);
1189                         dump = true;
1190                 }
1191         if (dump)
1192                 audiod_status_dump(true);
1193 }
1194
1195 /*
1196  * Cleanup all resources.
1197  *
1198  * This performs various cleanups, removes the audiod socket and closes the
1199  * connection to para_server.
1200  */
1201 static void audiod_cleanup(void)
1202 {
1203         if (socket_name)
1204                 unlink(socket_name);
1205         close_stat_pipe();
1206         close_unused_slots();
1207         close_stat_clients();
1208         free(uid_whitelist);
1209 }
1210
1211 /*
1212  * Check if any receivers/filters/writers need to be started and do so if
1213  * necessary.
1214  */
1215 static void start_stop_decoders(void)
1216 {
1217         int ret;
1218         struct slot_info *sl;
1219
1220         close_unused_slots();
1221         if (audiod_status != AUDIOD_ON ||
1222                         !(stat_task->vss_status & VSS_STATUS_FLAG_PLAYING))
1223                 return notify_receivers(E_NOT_PLAYING);
1224         if (!must_start_decoder())
1225                 return;
1226         ret = open_receiver(stat_task->current_audio_format_num);
1227         if (ret < 0) {
1228                 PARA_ERROR_LOG("%s\n", para_strerror(-ret));
1229                 return;
1230         }
1231         sl = slot + ret;
1232         open_filters(sl);
1233         open_writers(sl);
1234         activate_grab_clients(&sched);
1235         btr_log_tree(sl->receiver_node->btrn, LL_NOTICE);
1236         audiod_status_dump(true);
1237 }
1238
1239 static void status_pre_select(struct sched *s, void *context)
1240 {
1241         struct status_task *st = context;
1242         int i, ret, cafn = stat_task->current_audio_format_num;
1243
1244         if (must_start_decoder())
1245                 goto min_delay;
1246         FOR_EACH_SLOT(i)
1247                 if (must_close_slot(i))
1248                         goto min_delay;
1249         ret = btr_node_status(st->btrn, st->min_iqs, BTR_NT_LEAF);
1250         if (ret > 0)
1251                 goto min_delay;
1252         if (st->ct && audiod_status == AUDIOD_OFF)
1253                 goto min_delay;
1254         if (!st->ct && audiod_status != AUDIOD_OFF)
1255                 sched_request_barrier_or_min_delay(&st->restart_barrier, s);
1256         if (cafn >= 0)
1257                 sched_request_barrier(&afi[cafn].restart_barrier, s);
1258         /*
1259          * If para_server is playing we'd like to have a smooth time display
1260          * even if we are running in standby mode. So we request a timeout that
1261          * expires at the next full second.
1262          */
1263         if (stat_task->vss_status & VSS_STATUS_FLAG_PLAYING)
1264                 sched_request_timeout_ms(1000 - now->tv_usec / 1000, s);
1265         return;
1266 min_delay:
1267         sched_min_delay(s);
1268 }
1269
1270 /* restart the client task if necessary */
1271 static int status_post_select(struct sched *s, void *context)
1272 {
1273         struct status_task *st = context;
1274         int ret;
1275
1276         ret = task_get_notification(st->task);
1277         if (ret < 0)
1278                 return ret;
1279         if (audiod_status == AUDIOD_OFF) {
1280                 if (!st->ct)
1281                         goto out;
1282                 if (task_status(st->ct->task) >= 0) {
1283                         task_notify(st->ct->task, E_AUDIOD_OFF);
1284                         goto out;
1285                 }
1286                 close_stat_pipe();
1287                 st->clock_diff_count = OPT_UINT32_VAL(CLOCK_DIFF_COUNT);
1288                 goto out;
1289         }
1290         if (st->ct) {
1291                 char *buf;
1292                 size_t sz;
1293
1294                 ret = btr_node_status(st->btrn, st->min_iqs, BTR_NT_LEAF);
1295                 if (ret < 0) {
1296                         close_stat_pipe();
1297                         goto out;
1298                 }
1299                 if (st->ct->status != CL_EXECUTING)
1300                         goto out;
1301                 if (ret == 0) {
1302                         struct timeval diff;
1303                         tv_diff(now, &st->last_status_read, &diff);
1304                         if (diff.tv_sec > 61)
1305                                 task_notify(st->ct->task, E_STATUS_TIMEOUT);
1306                         goto out;
1307                 }
1308                 btr_merge(st->btrn, st->min_iqs);
1309                 sz = btr_next_buffer(st->btrn, &buf);
1310                 ret = for_each_stat_item(buf, sz, update_item);
1311                 if (ret < 0) {
1312                         task_notify(st->ct->task, -ret);
1313                         goto out;
1314                 }
1315                 if (sz != ret) {
1316                         btr_consume(st->btrn, sz - ret);
1317                         st->last_status_read = *now;
1318                         st->min_iqs = 0;
1319                 } else /* current status item crosses buffers */
1320                         st->min_iqs = sz + 1;
1321                 goto out;
1322         }
1323         btr_drain(st->btrn);
1324         st->current_audio_format_num = -1;
1325         if (tv_diff(now, &st->restart_barrier, NULL) < 0)
1326                 goto out;
1327         if (st->clock_diff_count) { /* get status only one time */
1328                 char *argv[] = {"audiod", "--", "stat", "-p", "-n=1", NULL};
1329                 int argc = 5;
1330                 PARA_INFO_LOG("clock diff count: %u\n", st->clock_diff_count);
1331                 st->clock_diff_count--;
1332                 client_open(argc, argv, &st->ct, NULL, NULL, st->btrn, s);
1333                 set_stat_task_restart_barrier(2);
1334
1335         } else {
1336                 char *argv[] = {"audiod", "--", "stat", "-p", NULL};
1337                 int argc = 4;
1338                 client_open(argc, argv, &st->ct, NULL, NULL, st->btrn, s);
1339                 set_stat_task_restart_barrier(5);
1340         }
1341         free(stat_item_values[SI_basename]);
1342         stat_item_values[SI_basename] = para_strdup(
1343                 "no connection to para_server");
1344         stat_client_write_item(SI_basename);
1345         st->last_status_read = *now;
1346 out:
1347         start_stop_decoders();
1348         return 0;
1349 }
1350
1351 static void init_status_task(struct status_task *st)
1352 {
1353         memset(st, 0, sizeof(struct status_task));
1354         st->sa_time_diff_sign = 1;
1355         st->clock_diff_count = OPT_UINT32_VAL(CLOCK_DIFF_COUNT);
1356         st->current_audio_format_num = -1;
1357         st->btrn = btr_new_node(&(struct btr_node_description)
1358                 EMBRACE(.name = "stat"));
1359
1360         stat_task->task = task_register(&(struct task_info) {
1361                 .name = "stat",
1362                 .pre_select = status_pre_select,
1363                 .post_select = status_post_select,
1364                 .context = stat_task,
1365         }, &sched);
1366 }
1367
1368 static void set_initial_status(void)
1369 {
1370         audiod_status = AUDIOD_ON;
1371         if (!OPT_GIVEN(MODE))
1372                 return;
1373         if (!strcmp(OPT_STRING_VAL(MODE), "sb")) {
1374                 audiod_status = AUDIOD_STANDBY;
1375                 return;
1376         }
1377         if (!strcmp(OPT_STRING_VAL(MODE), "off")) {
1378                 audiod_status = AUDIOD_OFF;
1379                 return;
1380         }
1381         if (strcmp(OPT_STRING_VAL(MODE), "on"))
1382                 PARA_WARNING_LOG("invalid mode\n");
1383 }
1384
1385 /**
1386  * Lookup the given UID in the whitelist.
1387  *
1388  * The whitelist is the array of arguments to the --user-allow opion. If the
1389  * option was not given, the array is empty, in which case the check succeeds.
1390  *
1391  * \param uid User ID to look up.
1392  *
1393  * \return True if --user-allow was not given, or if uid matches an element of
1394  * the whitelist.
1395  */
1396 bool uid_is_whitelisted(uid_t uid)
1397 {
1398         int i;
1399
1400         if (!OPT_GIVEN(USER_ALLOW))
1401                 return true;
1402         for (i = 0; i < OPT_GIVEN(USER_ALLOW); i++)
1403                 if (uid == uid_whitelist[i])
1404                         return true;
1405         return false;
1406 }
1407
1408 static void handle_help_flags(void)
1409 {
1410         char *help;
1411         bool d = OPT_GIVEN(DETAILED_HELP);
1412
1413         if (d)
1414                 help = lls_long_help(CMD_PTR);
1415         else if (OPT_GIVEN(HELP))
1416                 help = lls_short_help(CMD_PTR);
1417         else
1418                 return;
1419         printf("%s\n", help);
1420         free(help);
1421         print_receiver_helps(d);
1422         print_filter_helps(d);
1423         print_writer_helps(d);
1424         exit(EXIT_SUCCESS);
1425 }
1426
1427 /**
1428  * the main function of para_audiod
1429  *
1430  * \param argc usual argument count
1431  * \param argv usual argument vector
1432  *
1433  * \return EXIT_SUCCESS or EXIT_FAILURE
1434  *
1435  * \sa para_audiod(1)
1436  * */
1437 int main(int argc, char *argv[])
1438 {
1439         int ret, i;
1440         struct command_task command_task_struct, *cmd_task = &command_task_struct;
1441         char *errctx;
1442
1443         valid_fd_012();
1444         ret = lls(lls_parse(argc, argv, CMD_PTR, &lpr, &errctx));
1445         if (ret < 0)
1446                 goto out;
1447         daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL));
1448         daemon_drop_privileges_or_die(OPT_STRING_VAL(USER),
1449                 OPT_STRING_VAL(GROUP));
1450         version_handle_flag("audiod", OPT_GIVEN(VERSION));
1451         handle_help_flags();
1452         parse_config_or_die();
1453         crypt_init();
1454         daemon_set_priority(OPT_UINT32_VAL(PRIORITY));
1455         if (daemon_init_colors_or_die(OPT_UINT32_VAL(COLOR), COLOR_AUTO,
1456                         COLOR_NO, OPT_GIVEN(LOGFILE))) {
1457                 for (i = 0; i < OPT_GIVEN(LOG_COLOR); i++)
1458                         daemon_set_log_color_or_die(lls_string_val(i,
1459                                 OPT_RESULT(LOG_COLOR)));
1460         }
1461         daemon_set_flag(DF_LOG_TIME);
1462         daemon_set_flag(DF_LOG_HOSTNAME);
1463         daemon_set_flag(DF_LOG_LL);
1464         if (OPT_GIVEN(LOG_TIMING))
1465                 daemon_set_flag(DF_LOG_TIMING);
1466         if (OPT_GIVEN(LOGFILE)) {
1467                 daemon_set_logfile(OPT_STRING_VAL(LOGFILE));
1468                 daemon_open_log_or_die();
1469         }
1470         ret = parse_stream_args();
1471         if (ret < 0) {
1472                 PARA_EMERG_LOG("%s\n", para_strerror(-ret));
1473                 exit(EXIT_FAILURE);
1474         }
1475         daemon_log_welcome("audiod");
1476         daemon_set_start_time();
1477         set_initial_status();
1478         FOR_EACH_SLOT(i)
1479                 clear_slot(i);
1480         setup_signal_handling();
1481
1482         init_status_task(stat_task);
1483         init_command_task(cmd_task);
1484
1485         if (OPT_GIVEN(DAEMON))
1486                 daemonize(false /* parent exits immediately */);
1487
1488         signal_task->task = task_register(&(struct task_info) {
1489                 .name = "signal",
1490                 .pre_select = signal_pre_select,
1491                 .post_select = signal_post_select,
1492                 .context = signal_task,
1493         }, &sched);
1494
1495         sched.default_timeout.tv_sec = 2;
1496         sched.default_timeout.tv_usec = 999 * 1000;
1497         ret = schedule(&sched);
1498         audiod_cleanup();
1499         sched_shutdown(&sched);
1500         signal_shutdown(signal_task);
1501         crypt_shutdown();
1502 out:
1503         lls_free_parse_result(lpr, CMD_PTR);
1504         if (errctx)
1505                 PARA_ERROR_LOG("%s\n", errctx);
1506         if (ret < 0)
1507                 PARA_EMERG_LOG("%s\n", para_strerror(-ret));
1508         return ret < 0? EXIT_FAILURE : EXIT_SUCCESS;
1509 }