e1551617b5af0aa827322be36105836099add3e7
[paraslash.git] / audiod.c
1 /*
2  * Copyright (C) 2005-2006 Andre Noll <noll@mathematik.tu-darmstadt.de>
3  *
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  *
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  *
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 /** \file audiod.c the paraslash's audio daemon */
20
21 #include <sys/time.h> /* gettimeofday */
22 #include "para.h"
23
24 #include "audiod.cmdline.h"
25 #include "list.h"
26 #include "close_on_fork.h"
27 #include "recv.h"
28 #include "filter.h"
29 #include "grab_client.cmdline.h"
30 #include "grab_client.h"
31
32 #include "error.h"
33 #include "audiod.h"
34 #include "net.h"
35 #include "daemon.h"
36 #include "string.h"
37 #include "fd.h"
38
39 /** define the array of error lists needed by para_audiod */
40 INIT_AUDIOD_ERRLISTS;
41 /** define the array containing all supported audio formats */
42 DEFINE_AUDIO_FORMAT_ARRAY;
43
44 /**
45  * the possible modes of operation
46  *
47  * - off: disconnect from para_server
48  * - on: receive status information from para_server and play the audio stream
49  * - sb: only receive status information but not the audio stream
50 */
51 enum {AUDIOD_OFF, AUDIOD_ON, AUDIOD_STANDBY};
52
53 /** defines how to handle one supported audio format */
54 struct audio_format_info {
55 /** pointer to the receiver for this audio format */
56         struct receiver *receiver;
57 /** the receiver configuration */
58         void *receiver_conf;
59 /** the number of filters that should be activated for this audio format */
60         unsigned int num_filters;
61 /** pointer to the array of filters to be activated */
62         struct filter **filters;
63 /** pointer to the array of filter configurations */
64         void **filter_conf;
65 /** output of the last filter is written to stdin of this command */
66         char *write_cmd;
67 /** do not start receiver/filters/writer before this time */
68         struct timeval restart_barrier;
69 };
70
71 /**
72  * describes one instance of a receiver-filter-writer chain
73  *
74  * \sa receier_node, receiver, filter, filter_node, filter_chain_info
75   */
76 struct slot_info {
77 /** number of the audio format in this slot */
78         int format;
79 /** the file descriptor of the writer */
80         int write_fd;
81 /** the process id of the writer */
82         pid_t wpid;
83 /** time of the last successful read from the receiver */
84         struct timeval rtime;
85 /** time the last write to the write fd happend */
86         struct timeval wtime;
87 /** writer start time */
88         struct timeval wstime;
89 /** did we include \a write_fd in the fdset */
90         int  wcheck;
91 /** set to one if we have sent the TERM signal to \a wpid */
92         int wkilled;
93 /** the receiver info associated with this slot */
94         struct receiver_node *receiver_node;
95 /** the active filter chain */
96         struct filter_chain_info *fci;
97 };
98
99 static struct slot_info slot[MAX_STREAM_SLOTS];
100
101 /** defines one command of para_audiod */
102 struct audiod_command {
103 /** the name of the command */
104 const char *name;
105 /** pointer to the function that handles the command */
106 int (*handler)(int, int, char**);
107 int (*line_handler)(int, char*);
108 /** one-line description of the command */
109 const char *description;
110 /** summary of the command line options */
111 const char *synopsis;
112 /** the long help text */
113 const char *help;
114 };
115
116 extern const char *status_item_list[NUM_STAT_ITEMS];
117
118 static int com_grab(int, char *);
119 static int com_cycle(int, int, char **);
120 static int com_help(int, int, char **);
121 static int com_off(int, int, char **);
122 static int com_on(int, int, char **);
123 static int com_sb(int, int, char **);
124 static int com_stat(int, int, char **);
125 static int com_term(int, int, char **);
126 static int stat_pipe = -1, signal_pipe;
127
128 static struct gengetopt_args_info conf;
129 static struct timeval server_stream_start, sa_time_diff;
130 static int playing, current_decoder = -1,
131         audiod_status = AUDIOD_ON, offset_seconds, length_seconds,
132         sa_time_diff_sign = 1, audiod_socket = -1;
133 static char *af_status, /* the audio format announced in server status */
134         *socket_name, *hostname;
135 static char *stat_item_values[NUM_STAT_ITEMS];
136 static FILE *logfile;
137 static const struct timeval restart_delay = {0, 300 * 1000};
138
139 static struct audio_format_info afi[NUM_AUDIO_FORMATS];
140
141 static struct audiod_command cmds[] = {
142 {
143 .name = "cycle",
144 .handler = com_cycle,
145 .description = "switch to next mode",
146 .synopsis = "cycle",
147 .help =
148
149 "on -> standby -> off -> on\n"
150
151 },
152 {
153 .name = "grab",
154 .line_handler = com_grab,
155 .description = "grab the audio stream",
156 .synopsis = "-- grab [grab_options]",
157 .help =
158
159 "grab ('splice') the audio stream at any position in the filter      \n"
160 "chain and send that data back to the client. Try\n"
161 "\t para_audioc -- grab -h\n"
162 "for the list of available options.\n"
163 },
164
165 {
166 .name = "help",
167 .handler = com_help,
168 .description = "display command list or help for given command",
169 .synopsis = "help [command]",
170 .help =
171
172 "When I was younger, so much younger than today, I never needed\n"
173 "anybody's help in any way. But now these days are gone, I'm not so\n"
174 "self assured. Now I find I've changed my mind and opened up the doors.\n"
175 "\n"
176 "                               -- Beatles: Help\n"
177
178 },
179 {
180 .name = "off",
181 .handler = com_off,
182 .description = "deactivate para_audiod",
183 .synopsis = "off",
184 .help =
185
186 "Close connection to para_server and stop all decoders.\n"
187
188 },
189 {
190 .name = "on",
191 .handler = com_on,
192 .description = "activate para_audiod",
193 .synopsis = "on",
194 .help =
195
196 "Establish connection to para_server, retrieve para_server's current\n"
197 "status. If playing, start corresponding decoder. Otherwise stop\n"
198 "all decoders.\n"
199
200 },
201 {
202 .name = "sb",
203 .handler = com_sb,
204 .description = "enter standby mode",
205 .synopsis = "sb",
206 .help =
207
208 "Stop all decoders but leave connection to para_server open.\n"
209
210 },
211 {
212 .name = "stat",
213 .handler = com_stat,
214 .description = "print status information",
215 .synopsis = "stat [item1 ...]",
216 .help =
217
218 "Dump given status items (all if none given) to stdout.\n"
219
220 },
221 {
222 .name = "term",
223 .handler = com_term,
224 .description = "terminate audiod",
225 .synopsis = "term",
226 .help =
227
228 "Stop all decoders, shut down connection to para_server and exit.\n"
229
230 },
231 {
232 .name = NULL,
233 }
234 };
235
236 /** iterate over all slots */
237 #define FOR_EACH_SLOT(slot) for (slot = 0; slot < MAX_STREAM_SLOTS; slot++)
238 /** iterate over all supported audio formats */
239 #define FOR_EACH_AUDIO_FORMAT(af) for (af = 0; af < NUM_AUDIO_FORMATS; af++)
240 /** iterate over the array of all audiod commands */
241 #define FOR_EACH_COMMAND(c) for (c = 0; cmds[c].name; c++)
242
243 /**
244  * get the audio format number
245  * \param name the name of the audio format
246  *
247  * \return The audio format number on success, -E_UNSUPPORTED_AUDIO_FORMAT if
248  * \a name is not a supported audio format.
249  */
250 int get_audio_format_num(char *name)
251 {
252         int i;
253         FOR_EACH_AUDIO_FORMAT(i)
254                 if (!strcmp(name, audio_formats[i]))
255                         return i;
256         return -E_UNSUPPORTED_AUDIO_FORMAT;
257 }
258
259 /*
260  * log function. first argument is loglevel.
261  */
262 void para_log(int ll, const char* fmt,...)
263 {
264         va_list argp;
265         FILE *outfd;
266         struct tm *tm;
267         time_t t1;
268         char str[MAXLINE] = "";
269
270         if (ll < conf.loglevel_arg)
271                 return;
272         outfd = logfile? logfile : stderr;
273         time(&t1);
274         tm = localtime(&t1);
275         strftime(str, MAXLINE, "%b %d %H:%M:%S", tm);
276         fprintf(outfd, "%s %s ", str, hostname);
277         if (conf.loglevel_arg <= INFO)
278                 fprintf(outfd, "%i ", ll);
279         va_start(argp, fmt);
280         vfprintf(outfd, fmt, argp);
281         va_end(argp);
282 }
283
284 static int client_write(int fd, const char *buf)
285 {
286         size_t len = strlen(buf);
287         return write(fd, buf, len) != len? -E_CLIENT_WRITE: 1;
288 }
289
290 static char *get_time_string(struct timeval *newest_stime)
291 {
292         struct timeval now, diff, adj_stream_start, tmp;
293         int total = 0, use_server_time = 1;
294
295         if (!playing) {
296                 if (length_seconds)
297                         return NULL;
298                 return make_message("%s:\n", status_item_list[SI_PLAY_TIME]);
299         }
300         if (audiod_status == AUDIOD_OFF)
301                 goto out;
302         if (sa_time_diff_sign > 0)
303                 tv_diff(&server_stream_start, &sa_time_diff,
304                         &adj_stream_start);
305         else
306                 tv_add(&server_stream_start, &sa_time_diff,
307                         &adj_stream_start);
308         tmp = adj_stream_start;
309         if (newest_stime && audiod_status == AUDIOD_ON) {
310                 tv_diff(newest_stime, &adj_stream_start, &diff);
311                 if (tv2ms(&diff) < 5000) {
312                         tmp = *newest_stime;
313                         use_server_time = 0;
314                 }
315         }
316         gettimeofday(&now, NULL);
317         tv_diff(&now, &tmp, &diff);
318         total = diff.tv_sec + offset_seconds;
319         if (total > length_seconds)
320                 total = length_seconds;
321         if (total < 0)
322                 total = 0;
323 out:
324         return make_message(
325                 "%s:%s%d:%02d [%d:%02d] (%d%%/%d:%02d)\n",
326                 status_item_list[SI_PLAY_TIME],
327                 use_server_time? "~" : "",
328                 total / 60,
329                 total % 60,
330                 (length_seconds - total) / 60,
331                 (length_seconds - total) % 60,
332                 length_seconds? (total * 100 + length_seconds / 2) /
333                         length_seconds : 0,
334                 length_seconds / 60,
335                 length_seconds % 60
336         );
337 }
338
339 __malloc static char *audiod_status_string(void)
340 {
341         const char *status = (audiod_status == AUDIOD_ON)?
342                 "on" : (audiod_status == AUDIOD_OFF)? "off": "sb";
343         return make_message("%s:%s\n", status_item_list[SI_AUDIOD_STATUS], status);
344 }
345
346 static struct timeval *wstime(void)
347 {
348         int i;
349         struct timeval *max = NULL;
350         FOR_EACH_SLOT(i) {
351                 struct slot_info *s = &slot[i];
352                 if (s->wpid <= 0)
353                         continue;
354                 if (max && tv_diff(&s->wstime, max, NULL) <= 0)
355                         continue;
356                 max = &s->wstime;
357         }
358         return max;
359 }
360 __malloc static char *decoder_flags(void)
361 {
362         int i;
363         char decoder_flags[MAX_STREAM_SLOTS + 1];
364
365         FOR_EACH_SLOT(i) {
366                 struct slot_info *s = &slot[i];
367                 char flag = '0';
368                 if (s->receiver_node)
369                         flag += 1;
370                 if (s->wpid > 0)
371                         flag += 2;
372                 decoder_flags[i] = flag;
373         }
374         decoder_flags[MAX_STREAM_SLOTS] = '\0';
375         return make_message("%s:%s\n", status_item_list[SI_DECODER_FLAGS],
376                 decoder_flags);
377 }
378
379 static char *configfile_exists(void)
380 {
381         static char *config_file;
382
383         if (!config_file) {
384                 char *home = para_homedir();
385                 config_file = make_message("%s/.paraslash/audiod.conf", home);
386                 free(home);
387         }
388         return file_exists(config_file)? config_file : NULL;
389 }
390
391 static void setup_signal_handling(void)
392 {
393         signal_pipe = para_signal_init();
394         PARA_INFO_LOG("signal pipe: fd %d\n", signal_pipe);
395         para_install_sighandler(SIGINT);
396         para_install_sighandler(SIGTERM);
397         para_install_sighandler(SIGCHLD);
398         para_install_sighandler(SIGHUP);
399         signal(SIGPIPE, SIG_IGN);
400 }
401
402 static void audiod_status_dump(void)
403 {
404         static char *p_ts, *p_us, *p_as, *p_df;
405         struct timeval *t = wstime();
406         char *us, *tmp = get_time_string(t);
407
408         if (tmp && (!p_ts || strcmp(tmp, p_ts)))
409                 stat_client_write(tmp, SI_PLAY_TIME);
410         free(p_ts);
411         p_ts = tmp;
412
413         us = uptime_str();
414         tmp = make_message("%s:%s\n", status_item_list[SI_AUDIOD_UPTIME], us);
415         free(us);
416         if (!p_us || strcmp(p_us, tmp))
417                 stat_client_write(tmp, SI_AUDIOD_UPTIME);
418         free(p_us);
419         p_us = tmp;
420
421         tmp = audiod_status_string();
422         if (!p_as || strcmp(p_as, tmp))
423                 stat_client_write(tmp, SI_AUDIOD_STATUS);
424         free(p_as);
425         p_as = tmp;
426
427         tmp = decoder_flags();
428         if (!p_df || strcmp(p_df, tmp))
429                 stat_client_write(tmp, SI_DECODER_FLAGS);
430         free(p_df);
431         p_df = tmp;
432 }
433
434 static void clear_slot(int slot_num)
435 {
436         struct slot_info *s = &slot[slot_num];
437
438         PARA_INFO_LOG("clearing slot %d\n", slot_num);
439         memset(s, 0, sizeof(struct slot_info));
440         s->format = -1;
441 }
442
443 static void kill_stream_writer(int slot_num)
444 {
445         struct slot_info *s = &slot[slot_num];
446
447         if (s->format < 0 || s->wkilled || s->wpid <= 0)
448                 return;
449         PARA_DEBUG_LOG("kill -TERM %d (%s stream writer in slot %d)\n",
450                 s->wpid, audio_formats[s->format], slot_num);
451         kill(s->wpid, SIGTERM);
452         s->wkilled = 1;
453         s->fci->error = 1;
454 }
455
456 static void set_restart_barrier(int format, struct timeval *now)
457 {
458         struct timeval tmp;
459
460         if (now)
461                 tmp = *now;
462         else
463                 gettimeofday(&tmp, NULL);
464         tv_add(&tmp, &restart_delay, &afi[format].restart_barrier);
465 }
466
467 static void close_receiver(int slot_num)
468 {
469         struct slot_info *s = &slot[slot_num];
470         struct audio_format_info *a;
471
472         if (s->format < 0 || !s->receiver_node)
473                 return;
474         a = &afi[s->format];
475         PARA_NOTICE_LOG("closing %s recevier in slot %d\n",
476                 audio_formats[s->format] , slot_num);
477         a->receiver->close(s->receiver_node);
478         free(s->receiver_node);
479         s->receiver_node = NULL;
480         set_restart_barrier(s->format, NULL);
481 }
482
483 static void kill_all_decoders(void)
484 {
485         int i;
486
487         FOR_EACH_SLOT(i)
488                 if (slot[i].format >= 0) {
489                         PARA_INFO_LOG("stopping decoder in slot %d\n", i);
490                         kill_stream_writer(i);
491                 }
492 }
493
494 static void check_sigchld(void)
495 {
496         pid_t pid;
497         int i;
498         struct timeval now;
499         gettimeofday(&now, NULL);
500
501 reap_next_child:
502         pid = para_reap_child();
503         if (pid <= 0)
504                 return;
505         FOR_EACH_SLOT(i) {
506                 struct slot_info *s = &slot[i];
507                 long lifetime;
508                 if (s->format < 0)
509                         continue;
510                 if (pid == s->wpid) {
511                         s->wpid = -1;
512                         lifetime = now.tv_sec - s->wstime.tv_sec;
513                         PARA_INFO_LOG("%s stream writer in slot %d died "
514                                 "after %li secs\n",
515                                 audio_formats[s->format], i, lifetime);
516                         set_restart_barrier(s->format, &now);
517                         goto reap_next_child;
518                 }
519         }
520         PARA_CRIT_LOG("para_client died (pid %d)\n", pid);
521         goto reap_next_child;
522 }
523
524 static int get_empty_slot(void)
525 {
526         int i;
527         struct slot_info *s;
528
529         FOR_EACH_SLOT(i) {
530                 s = &slot[i];
531                 if (s->format < 0) {
532                         clear_slot(i);
533                         return i;
534                 }
535                 if (s->write_fd > 0 || s->wpid > 0)
536                         continue;
537                 if (s->receiver_node)
538                         continue;
539                 if (s->fci)
540                         continue;
541                 clear_slot(i);
542                 return i;
543         }
544         return -E_NO_MORE_SLOTS;
545 }
546
547 static int decoder_running(int format)
548 {
549         int i, ret = 0;
550         struct slot_info *s;
551
552         FOR_EACH_SLOT(i) {
553                 s = &slot[i];
554                 if (s->format == format && s->receiver_node)
555                         ret |= 1;
556                 if (s->format == format && s->wpid > 0)
557                         ret |= 2;
558         }
559         return ret;
560 }
561
562 static void close_stat_pipe(void)
563 {
564         int i;
565
566         if (stat_pipe < 0)
567                 return;
568         PARA_NOTICE_LOG("%s", "closing status pipe\n");
569         close(stat_pipe);
570         del_close_on_fork_list(stat_pipe);
571         stat_pipe = -1;
572         kill_all_decoders();
573         for (i = 0; i < NUM_STAT_ITEMS; i++) {
574                 free(stat_item_values[i]);
575                 stat_item_values[i] = NULL;
576         }
577         dump_empty_status();
578         length_seconds = 0;
579         offset_seconds = 0;
580         audiod_status_dump();
581         playing = 0;
582         stat_item_values[SI_STATUS_BAR] = make_message("%s:no connection to para_server\n",
583                 status_item_list[SI_STATUS_BAR]);
584         stat_client_write(stat_item_values[SI_STATUS_BAR], SI_STATUS_BAR);
585 }
586
587 static void __noreturn clean_exit(int status, const char *msg)
588 {
589         PARA_EMERG_LOG("%s\n", msg);
590         kill_all_decoders();
591         if (socket_name)
592                 unlink(socket_name);
593         if (stat_pipe >= 0)
594                 close_stat_pipe();
595         exit(status);
596 }
597
598 __malloc static char *glob_cmd(char *cmd)
599 {
600         char *ret, *replacement;
601         struct timeval tmp, delay, rss; /* real stream start */
602
603         delay.tv_sec = conf.stream_delay_arg / 1000;
604         delay.tv_usec = (conf.stream_delay_arg % 1000) * 1000;
605 //      PARA_INFO_LOG("delay: %lu:%lu\n", delay.tv_sec, delay.tv_usec);
606         if (sa_time_diff_sign < 0)
607                 tv_add(&server_stream_start, &sa_time_diff, &rss);
608         else
609                 tv_diff(&server_stream_start, &sa_time_diff, &rss);
610         tv_add(&rss, &delay, &tmp);
611         replacement = make_message("%lu:%lu",
612                 (long unsigned)tmp.tv_sec,
613                 (long unsigned)tmp.tv_usec);
614         ret = s_a_r(cmd, "STREAM_START", replacement);
615         free(replacement);
616         if (!ret)
617                 goto out;
618         PARA_INFO_LOG("cmd: %s, repl: %s\n", cmd, ret);
619 out:
620         return ret;
621 }
622
623 /** get the number of filters for the given audio format */
624 int num_filters(int audio_format_num)
625 {
626         return afi[audio_format_num].num_filters;
627 }
628
629 static void open_filters(int slot_num)
630 {
631         struct slot_info *s = &slot[slot_num];
632         struct audio_format_info *a = &afi[s->format];
633         int nf = a->num_filters;
634         int i;
635
636         s->fci = para_calloc(sizeof(struct filter_chain_info));
637         INIT_LIST_HEAD(&s->fci->filters);
638         if (!nf)
639                 return;
640         s->fci->inbuf = s->receiver_node->buf;
641         s->fci->in_loaded = &s->receiver_node->loaded;
642         s->fci->outbuf = s->receiver_node->buf;
643         s->fci->out_loaded = &s->receiver_node->loaded;
644         s->fci->eof = &s->receiver_node->eof;
645         for (i = 0; i < nf; i++) {
646                 struct filter_node *fn = para_calloc(sizeof(struct filter_node));
647                 fn->conf = a->filter_conf[i];
648                 fn->fci = s->fci;
649                 fn->filter = a->filters[i];
650                 INIT_LIST_HEAD(&fn->callbacks);
651                 list_add_tail(&fn->node, &s->fci->filters);
652                 fn->filter->open(fn);
653                 PARA_NOTICE_LOG("%s filter %d/%d (%s) started in slot %d\n",
654                         audio_formats[s->format], i + 1,  nf,
655                         fn->filter->name, slot_num);
656                 s->fci->outbuf = fn->buf;
657                 s->fci->out_loaded = &fn->loaded;
658         }
659         PARA_DEBUG_LOG("output buffer for filter chain %p: %p\n", s->fci,
660                 s->fci->outbuf);
661 }
662
663 static struct filter_node *find_filter_node(int slot_num, int format, int filternum)
664 {
665         struct filter_node *fn;
666         int i, j;
667
668         FOR_EACH_SLOT(i) {
669                 struct slot_info *s = &slot[i];
670                 if (s->format < 0 || !s->fci)
671                         continue;
672                 if (slot_num >= 0 && slot_num != i)
673                         continue;
674                 if (format >= 0 && s->format != format)
675                         continue;
676                 if (num_filters(i) < filternum)
677                         continue;
678                 /* success */
679                 j = 1;
680                 list_for_each_entry(fn, &s->fci->filters, node)
681                         if (filternum <= 0 || j++ == filternum)
682                                 break;
683                 return fn;
684         }
685         return NULL;
686 }
687
688 static void start_stream_writer(int slot_num)
689 {
690         int ret, fds[3] = {1, -1, -1};
691         struct slot_info *s = &slot[slot_num];
692         struct audio_format_info *a = &afi[s->format];
693         char *glob = NULL;
694
695         if (a->write_cmd)
696                 glob = glob_cmd(a->write_cmd);
697         if (!glob)
698                 glob = para_strdup("para_write -w alsa");
699         PARA_INFO_LOG("starting stream writer: %s\n", glob);
700         open_filters(slot_num);
701         ret = para_exec_cmdline_pid(&s->wpid, glob, fds);
702         free(glob);
703         if (ret < 0) {
704                 PARA_ERROR_LOG("exec failed (%d)\n", ret);
705                 return;
706         }
707         s->write_fd = fds[0];
708         add_close_on_fork_list(s->write_fd);
709         /* we write to this fd in do_select, so we need non-blocking */
710         mark_fd_nonblock(s->write_fd);
711         gettimeofday(&s->wstime, NULL);
712         current_decoder = slot_num;
713         activate_inactive_grab_clients(slot_num, s->format, &s->fci->filters);
714 }
715
716 static void open_receiver(int format)
717 {
718         struct audio_format_info *a = &afi[format];
719         struct slot_info *s;
720         int ret, slot_num;
721
722         slot_num = get_empty_slot();
723         if (slot_num < 0)
724                 clean_exit(EXIT_FAILURE, PARA_STRERROR(-slot_num));
725         s = &slot[slot_num];
726         s->format = format;
727         gettimeofday(&s->rtime, NULL);
728         s->wtime = s->rtime;
729         s->receiver_node = para_calloc(sizeof(struct receiver_node));
730         s->receiver_node->conf = a->receiver_conf;
731         ret = a->receiver->open(s->receiver_node);
732         if (ret < 0) {
733                 PARA_ERROR_LOG("failed to open receiver (%s)\n",
734                         PARA_STRERROR(-ret));
735                 free(s->receiver_node);
736                 s->receiver_node = NULL;
737                 return;
738         }
739         PARA_NOTICE_LOG("started %s: %s receiver in slot %d\n",
740                 audio_formats[s->format], a->receiver->name, slot_num);
741 }
742
743 static int is_frozen(int format)
744 {
745         struct timeval now;
746         struct audio_format_info *a = &afi[format];
747
748         gettimeofday(&now, NULL);
749         return (tv_diff(&now, &a->restart_barrier, NULL) > 0)? 0 : 1;
750 }
751
752 static void start_current_receiver(void)
753 {
754         int i;
755
756         if (!af_status)
757                 return;
758         i = get_audio_format_num(af_status);
759         if (i < 0)
760                 return;
761         if ((decoder_running(i) & 1) || is_frozen(i))
762                 return;
763         open_receiver(i);
764 }
765
766 static void compute_time_diff(const struct timeval *status_time)
767 {
768         struct timeval now, tmp, diff;
769         static int count;
770         int sign;
771         const struct timeval max_deviation = {0, 500 * 1000};
772         const int time_smooth = 5;
773
774         gettimeofday(&now, NULL);
775         sign = tv_diff(status_time, &now, &diff);
776 //              PARA_NOTICE_LOG("%s: sign = %i, sa_time_diff_sign = %i\n", __func__,
777 //                      sign, sa_time_diff_sign);
778         if (!count) {
779                 sa_time_diff_sign = sign;
780                 sa_time_diff = diff;
781                 count++;
782                 return;
783         }
784         if (count > 5) {
785                 int s = tv_diff(&diff, &sa_time_diff, &tmp);
786                 if (tv_diff(&max_deviation, &tmp, NULL) < 0)
787                         PARA_WARNING_LOG("time diff jump: %lims\n",
788                                 s * tv2ms(&tmp));
789         }
790         count++;
791         sa_time_diff_sign = tv_convex_combination(
792                 sa_time_diff_sign * time_smooth, &sa_time_diff,
793                 count > 10? sign : sign * time_smooth, &diff,
794                 &tmp);
795         sa_time_diff = tmp;
796         PARA_INFO_LOG("time diff (cur/avg): %s%lums/%s%lums\n",
797                 sign > 0? "+" : "-",
798                 tv2ms(&diff),
799                 sa_time_diff_sign ? "+" : "-",
800                 tv2ms(&sa_time_diff)
801         );
802 }
803
804 static void check_stat_line(char *line)
805 {
806         int itemnum;
807         size_t ilen = 0;
808         long unsigned sec, usec;
809         char *tmp;
810
811 //      PARA_INFO_LOG("line: %s\n", line);
812         if (!line)
813                 return;
814         itemnum = stat_line_valid(line);
815         if (itemnum < 0) {
816                 PARA_WARNING_LOG("invalid status line: %s\n", line);
817                 return;
818         }
819         tmp = make_message("%s\n", line);
820         stat_client_write(tmp, itemnum);
821         free(tmp);
822         free(stat_item_values[itemnum]);
823         stat_item_values[itemnum] = para_strdup(line);
824         ilen = strlen(status_item_list[itemnum]);
825         switch (itemnum) {
826         case SI_STATUS:
827                 playing = strstr(line, "playing")? 1 : 0;
828                 break;
829         case SI_FORMAT:
830                 free(af_status);
831                 af_status = para_strdup(line + ilen + 1);
832                 break;
833         case SI_OFFSET:
834                 offset_seconds = atoi(line + ilen + 1);
835                 break;
836         case SI_LENGTH:
837                 length_seconds = atoi(line + ilen + 1);
838                 break;
839         case SI_STREAM_START:
840                 if (sscanf(line + ilen + 1, "%lu.%lu", &sec, &usec) == 2) {
841                         server_stream_start.tv_sec = sec;
842                         server_stream_start.tv_usec = usec;
843                 }
844                 break;
845         case SI_CURRENT_TIME:
846                 if (sscanf(line + ilen + 1, "%lu.%lu", &sec, &usec) == 2) {
847                         struct timeval tv = {sec, usec};
848                         compute_time_diff(&tv);
849                 }
850                 break;
851         }
852 }
853
854 static void handle_signal(int sig)
855 {
856         switch (sig) {
857         case SIGCHLD:
858                 return check_sigchld();
859         case SIGINT:
860         case SIGTERM:
861         case SIGHUP:
862                 PARA_EMERG_LOG("terminating on signal %d\n", sig);
863                 clean_exit(EXIT_FAILURE, "caught deadly signal");
864                 return;
865         }
866 }
867
868 static void check_timeouts(void)
869 {
870         struct timeval now;
871         int slot_num, timeout = conf.stream_timeout_arg;
872
873         gettimeofday(&now, NULL);
874         FOR_EACH_SLOT(slot_num) {
875                 struct slot_info *s = &slot[slot_num];
876                 if (s->format < 0)
877                         continue;
878                 /* check read time */
879                 if (s->receiver_node &&
880                         now.tv_sec > s->rtime.tv_sec + timeout) {
881                         PARA_INFO_LOG("%s input buffer (slot %d) not ready\n",
882                                 audio_formats[s->format], slot_num);
883                         if (s->fci)
884                                 s->fci->error = 42;
885                         else
886                                 close_receiver(slot_num);
887                 }
888                 /* check write time */
889                 if (s->wpid > 0 && !s->wkilled &&
890                         now.tv_sec > s->wtime.tv_sec + timeout) {
891                         PARA_INFO_LOG("%s output buffer (slot %d) not ready\n",
892                                 audio_formats[s->format], slot_num);
893                         if (s->fci)
894                                 s->fci->error = 42;
895                 }
896         }
897 }
898
899 static size_t get_loaded_bytes(int slot_num)
900 {
901         size_t loaded = 0;
902         struct slot_info *s = &slot[slot_num];
903         struct receiver_node *rn = s->receiver_node;
904
905         if (s->format < 0)
906                 goto out;
907
908         if (afi[s->format].num_filters) {
909                 if (s->fci)
910                         loaded = *s->fci->out_loaded;
911         } else {
912                 if (rn)
913                         loaded = rn->loaded;
914         }
915 out:
916         return loaded;
917 }
918
919
920 static void close_decoder_if_idle(int slot_num)
921 {
922         struct slot_info *s = &slot[slot_num];
923         struct receiver_node *rn = s->receiver_node;
924
925         if (s->format < 0)
926                 return;
927         if (!s->fci)
928                 return;
929         if (!rn->eof && !s->fci->error && s->wpid > 0)
930                 return;
931         if (!s->fci->error && s->wpid > 0) { /* eof */
932                 if (filter_io(s->fci) > 0)
933                         return;
934                 if (get_loaded_bytes(slot_num))
935                         return;
936         }
937         if (s->write_fd > 0) {
938                 PARA_INFO_LOG("err: %d\n", s->fci->error);
939                 PARA_INFO_LOG("slot %d: closing write fd %d\n", slot_num,
940                         s->write_fd);
941                 close(s->write_fd);
942                 del_close_on_fork_list(s->write_fd);
943                 s->write_fd = -1;
944         }
945         if (s->wpid > 0)
946                 return; /* wait until writer dies before closing filters */
947         PARA_INFO_LOG("closing all filters in slot %d (filter_chain %p)\n",
948                 slot_num, s->fci);
949         close_filters(s->fci);
950         free(s->fci);
951         close_receiver(slot_num);
952         clear_slot(slot_num);
953 }
954
955 static void set_stream_fds(fd_set *wfds, int *max_fileno)
956 {
957         int i;
958
959         check_timeouts();
960         FOR_EACH_SLOT(i) {
961                 struct slot_info *s = &slot[i];
962                 struct audio_format_info *a;
963                 struct receiver_node *rn;
964
965                 close_decoder_if_idle(i);
966                 s->wcheck = 0;
967                 if (s->format < 0)
968                         continue;
969                 a = &afi[s->format];
970                 rn = s->receiver_node;
971                 if (rn && rn->loaded && !s->wpid) {
972                         PARA_INFO_LOG("no writer in slot %d\n", i);
973                         start_stream_writer(i);
974                 }
975                 if (s->write_fd <= 0)
976                         continue;
977                 if (!get_loaded_bytes(i))
978                         continue;
979                 para_fd_set(s->write_fd, wfds, max_fileno);
980                 s->wcheck = 1;
981         }
982 }
983
984 static int write_audio_data(int slot_num)
985 {
986         struct slot_info *s = &slot[slot_num];
987         struct audio_format_info *a = &afi[s->format];
988         struct receiver_node *rn = s->receiver_node;
989         int rv;
990         char **buf;
991         size_t *len;
992
993         if (a->num_filters) {
994                 buf = &s->fci->outbuf;
995                 len = s->fci->out_loaded;
996         } else {
997                 buf = &rn->buf;
998                 len = &rn->loaded;
999         }
1000         PARA_DEBUG_LOG("writing %p (%zd bytes)\n", *buf, *len);
1001         rv = write(s->write_fd, *buf, *len);
1002         PARA_DEBUG_LOG("wrote %d/%zd\n", rv, *len);
1003         if (rv < 0) {
1004                 PARA_WARNING_LOG("write error in slot %d (fd %d): %s\n",
1005                         slot_num, s->write_fd, strerror(errno));
1006                 *len = 0;
1007                 s->fci->error = E_WRITE_AUDIO_DATA;
1008         } else if (rv != *len) {
1009                 PARA_DEBUG_LOG("partial %s write (%i/%zd) for slot %d\n",
1010                         audio_formats[s->format], rv, *len, slot_num);
1011                 *len -= rv;
1012                 memmove(*buf, *buf + rv, *len);
1013         } else
1014                 *len = 0;
1015         if (rv > 0)
1016                 gettimeofday(&s->wtime, NULL);
1017         return rv;
1018 }
1019
1020 static void slot_io(fd_set *wfds)
1021 {
1022         int ret, i;
1023
1024         FOR_EACH_SLOT(i) {
1025                 struct slot_info *s = &slot[i];
1026                 struct receiver_node *rn = s->receiver_node;
1027
1028                 if (rn && rn->loaded)
1029                         gettimeofday(&s->rtime, NULL);
1030                 if (s->format >= 0 && s->write_fd > 0 && s->fci) {
1031                         ret = filter_io(s->fci);
1032                         if (ret < 0)
1033                                 s->fci->error = -ret;
1034 //                      PARA_DEBUG_LOG("slot %d, filter io %d bytes, check write: %d, loaded: %d/%d, eof: %d\n",
1035 //                               i, ret, s->wcheck, rn->loaded, *s->fci->out_loaded, rn->eof);
1036                 }
1037                 if (s->write_fd <= 0 || !s->wcheck || !FD_ISSET(s->write_fd, wfds))
1038                         continue;
1039                 write_audio_data(i);
1040         }
1041 }
1042
1043 static int parse_stream_command(const char *txt, char **cmd)
1044 {
1045         char *p = strchr(txt, ':');
1046         int i;
1047
1048         if (!p)
1049                 return -E_MISSING_COLON;
1050         p++;
1051         FOR_EACH_AUDIO_FORMAT(i) {
1052                 if (strncmp(txt, audio_formats[i], strlen(audio_formats[i])))
1053                         continue;
1054                 *cmd = p;
1055                 return i;
1056         }
1057         return -E_UNSUPPORTED_AUDIO_FORMAT;
1058 }
1059
1060 static int add_filter(int format, char *cmdline)
1061 {
1062         struct audio_format_info *a = &afi[format];
1063         int filter_num, nf = a->num_filters;
1064
1065         filter_num = check_filter_arg(cmdline, &a->filter_conf[nf]);
1066         if (filter_num < 0)
1067                 return filter_num;
1068         a->filters[nf] = &filters[filter_num];
1069         a->num_filters++;
1070         PARA_INFO_LOG("%s filter %d: %s\n", audio_formats[format], nf + 1,
1071                 a->filters[nf]->name);
1072         return filter_num;
1073 }
1074
1075 static int setup_default_filters(void)
1076 {
1077         int i, ret = 1;
1078
1079         FOR_EACH_AUDIO_FORMAT(i) {
1080                 struct audio_format_info *a = &afi[i];
1081                 char *tmp;
1082                 int j;
1083                 if (a->num_filters)
1084                         continue;
1085                 /* add "dec" to audio format name */
1086                 tmp = make_message("%sdec", audio_formats[i]);
1087                 for (j = 0; filters[j].name; j++)
1088                         if (!strcmp(tmp, filters[j].name))
1089                                 break;
1090                 free(tmp);
1091                 ret = -E_UNSUPPORTED_FILTER;
1092                 if (!filters[j].name)
1093                         goto out;
1094                 tmp = para_strdup(filters[j].name);
1095                 ret = add_filter(i, tmp);
1096                 free(tmp);
1097                 if (ret < 0)
1098                         goto out;
1099                 PARA_INFO_LOG("%s -> default filter: %s\n", audio_formats[i],
1100                         filters[j].name);
1101                 ret = add_filter(i, "wav");
1102                 if (ret < 0)
1103                         goto out;
1104                 PARA_INFO_LOG("%s -> default filter: wav\n", audio_formats[i]);
1105         }
1106 out:
1107         return ret;
1108 }
1109
1110 static int init_stream_io(void)
1111 {
1112         int i, ret, receiver_num, nf;
1113         char *cmd;
1114
1115         for (i = 0; i < conf.stream_write_cmd_given; i++) {
1116                 ret = parse_stream_command(conf.stream_write_cmd_arg[i], &cmd);
1117                 if (ret < 0)
1118                         goto out;
1119                 afi[ret].write_cmd = para_strdup(cmd);
1120                 PARA_INFO_LOG("%s write command: %s\n", audio_formats[ret], afi[ret].write_cmd);
1121         }
1122         for (i = 0; receivers[i].name; i++) {
1123                 PARA_INFO_LOG("initializing %s receiver\n", receivers[i].name);
1124                 receivers[i].init(&receivers[i]);
1125         }
1126         for (i = 0; i < conf.receiver_given; i++) {
1127                 char *arg = conf.receiver_arg[i];
1128                 char *recv = strchr(arg, ':');
1129                 ret = -E_MISSING_COLON;
1130                 if (!recv)
1131                         goto out;
1132                 *recv = '\0';
1133                 recv++;
1134                 ret = get_audio_format_num(arg);
1135                 if (ret < 0)
1136                         goto out;
1137                 afi[ret].receiver_conf = check_receiver_arg(recv, &receiver_num);
1138                 if (!afi[ret].receiver_conf) {
1139                         ret = -E_RECV_SYNTAX;
1140                         goto out;
1141                 }
1142                 afi[ret].receiver = &receivers[receiver_num];
1143         }
1144         /* use the first available receiver with no arguments
1145          * for those audio formats for which no receiver
1146          * was specified
1147          */
1148         cmd = para_strdup(receivers[0].name);
1149         FOR_EACH_AUDIO_FORMAT(i) {
1150                 struct audio_format_info *a = &afi[i];
1151                 if (a->receiver_conf)
1152                         continue;
1153                 a->receiver_conf = check_receiver_arg(cmd, &receiver_num);
1154                 if (!a->receiver_conf)
1155                         return -E_RECV_SYNTAX;
1156                 a->receiver = &receivers[receiver_num];
1157         }
1158         free(cmd);
1159         /* filters */
1160         filter_init(filters);
1161         nf = PARA_MAX(2,  conf.filter_given) + 1;
1162         PARA_INFO_LOG("allocating space for %d filters\n", nf);
1163         FOR_EACH_AUDIO_FORMAT(i) {
1164                 afi[i].filter_conf = para_malloc(nf * sizeof(char *));
1165                 afi[i].filters = para_malloc(nf * sizeof(struct filter *));
1166         }
1167         if (!conf.no_default_filters_given)
1168                 return setup_default_filters();
1169         for (i = 0; i < conf.filter_given; i++) {
1170                 char *arg = conf.filter_arg[i];
1171                 char *filter_name = strchr(arg, ':');
1172                 ret = -E_MISSING_COLON;
1173                 if (!filter_name)
1174                         goto out;
1175                 *filter_name = '\0';
1176                 filter_name++;
1177                 ret = get_audio_format_num(arg);
1178                 if (ret < 0)
1179                         goto out;
1180                 ret = add_filter(ret, filter_name);
1181                 if (ret < 0)
1182                         goto out;
1183         }
1184         ret = 1;
1185 out:
1186         return ret;
1187 }
1188
1189 static int dump_commands(int fd)
1190 {
1191         char *buf = para_strdup(""), *tmp = NULL;
1192         int i;
1193         ssize_t ret;
1194
1195         FOR_EACH_COMMAND(i) {
1196                 tmp = make_message("%s%s\t%s\n", buf, cmds[i].name,
1197                         cmds[i].description);
1198                 free(buf);
1199                 buf = tmp;
1200         }
1201         ret = client_write(fd, buf);
1202         free(buf);
1203         return ret;
1204 }
1205
1206 /*
1207  * command handlers don't close their fd on errors (ret < 0) so that
1208  * its caller can send an error message. Otherwise (ret >= 0) it's up
1209  * to each individual command to close the fd if necessary.
1210  */
1211
1212 static int com_help(int fd, int argc, char **argv)
1213 {
1214         int i, ret;
1215         char *buf;
1216         const char *dflt = "No such command. Available commands:\n";
1217
1218         if (argc < 2) {
1219                 ret = dump_commands(fd);
1220                 goto out;
1221         }
1222         FOR_EACH_COMMAND(i) {
1223                 if (strcmp(cmds[i].name, argv[1]))
1224                         continue;
1225                 buf = make_message(
1226                         "NAME\n\t%s -- %s\n"
1227                         "SYNOPSIS\n\tpara_audioc %s\n"
1228                         "DESCRIPTION\n%s\n",
1229                         argv[1],
1230                         cmds[i].description,
1231                         cmds[i].synopsis,
1232                         cmds[i].help
1233                 );
1234                 ret = client_write(fd, buf);
1235                 free(buf);
1236                 goto out;
1237         }
1238         ret = client_write(fd, dflt);
1239         if (ret > 0)
1240                 ret = dump_commands(fd);
1241 out:
1242         if (ret >= 0)
1243                 close(fd);
1244         return ret;
1245 }
1246
1247 static int com_stat(int fd, __a_unused int argc, __a_unused char **argv)
1248 {
1249         int i, ret;
1250         char *buf = NULL;
1251         long unsigned mask = ~0LU;
1252
1253         if (argc > 1) {
1254                 mask = 0;
1255                 for (i = 1; i < argc; i++) {
1256                         ret = stat_item_valid(argv[i]);
1257                         if (ret < 0)
1258                                 return ret;
1259                         mask |= (1 << ret);
1260                 }
1261         }
1262         PARA_INFO_LOG("mask: 0x%lx\n", mask);
1263         if (mask & (1 << SI_PLAY_TIME)) {
1264                 struct timeval *t = wstime();
1265                 char *ts = get_time_string(t);
1266                 if (ts) {
1267                         ret = client_write(fd, ts);
1268                         if (ret < 0)
1269                                 goto out;
1270                         free(ts);
1271                 }
1272         }
1273         if (mask & (1 << SI_AUDIOD_UPTIME)) {
1274                 char *tmp, *us = uptime_str();
1275                 tmp = make_message("%s:%s\n",
1276                         status_item_list[SI_AUDIOD_UPTIME], us);
1277                 free(us);
1278                 ret = client_write(fd, tmp);
1279                 if (ret < 0)
1280                         goto out;
1281                 free(tmp);
1282         }
1283         if (mask & (1 << SI_AUDIOD_STATUS)) {
1284                 char *s = audiod_status_string();
1285                 ret = client_write(fd, s);
1286                 if (ret < 0)
1287                         goto out;
1288                 free(s);
1289         }
1290         if (mask & (1 << SI_DECODER_FLAGS)) {
1291                 char *df =decoder_flags();
1292                 ret = client_write(fd, df);
1293                 if (ret < 0)
1294                         goto out;
1295                 free(df);
1296         }
1297
1298         for (i = 0; i < NUM_STAT_ITEMS; i++) {
1299                 char *tmp, *v;
1300                 if (!((1 << i) & mask))
1301                         continue;
1302                 v = stat_item_values[i];
1303                 tmp = make_message("%s%s%s", buf? buf: "",
1304                         v? v : "", v? "\n" : "");
1305                 free(buf);
1306                 buf = tmp;
1307         }
1308         ret = client_write(fd, buf);
1309 out:
1310         if (ret > 0)
1311                 ret = stat_client_add(fd, mask);
1312         free(buf);
1313         return ret;
1314 }
1315
1316 #if 0
1317 static char *list_filters(void)
1318 {
1319         int i, j;
1320         char *tmp, *msg = make_message("format\tnum\tcmd\n");
1321
1322         FOR_EACH_AUDIO_FORMAT(i) {
1323                 for (j = 0; j < afi[i].num_filters; j++) {
1324                         tmp = make_message("%s\t%i\t%s\n",
1325                                 afi[i].name, j, afi[i].filter_cmds[j]);
1326                         msg = para_strcat(msg, tmp);
1327                         free(tmp);
1328                 }
1329                 tmp = make_message("%s\t%i\t%s\n", afi[i].name,
1330                         j, afi[i].write_cmd);
1331                 msg = para_strcat(msg, tmp);
1332                 free(tmp);
1333         }
1334         return msg;
1335 }
1336 #endif
1337
1338
1339 static int com_grab(int fd, char *cmdline)
1340 {
1341         struct grab_client *gc;
1342         struct filter_node *fn;
1343         int i, err;
1344         char *msg;
1345
1346         gc = grab_client_new(fd, cmdline, &err);
1347         if (!gc)
1348                 goto err_out;
1349         fn = find_filter_node(gc->conf->slot_arg, gc->audio_format_num, gc->conf->filter_num_arg);
1350         if (fn)
1351                 activate_grab_client(gc, fn);
1352         return 1;
1353 err_out:
1354         if (err != -E_GC_HELP_GIVEN && err != -E_GC_VERSION_GIVEN)
1355                 return err;
1356         if (err == -E_GC_HELP_GIVEN) {
1357                 msg = make_message("%s\n\n", grab_client_args_info_usage);
1358                 for (i = 0; grab_client_args_info_help[i]; i++) {
1359                         char *tmp = make_message("%s%s\n", msg,
1360                                 grab_client_args_info_help[i]);
1361                         free(msg);
1362                         msg = tmp;
1363                 }
1364         } else
1365                 msg = make_message("%s %s\n",
1366                         GRAB_CLIENT_CMDLINE_PARSER_PACKAGE,
1367                         GRAB_CLIENT_CMDLINE_PARSER_VERSION);
1368         err = client_write(fd, msg);
1369         free(msg);
1370         if (err < 0)
1371                 return err;
1372         close(fd);
1373         return 1;
1374 }
1375
1376 static int __noreturn com_term(int fd, __a_unused int argc, __a_unused char **argv)
1377 {
1378         close(fd);
1379         clean_exit(EXIT_SUCCESS, "terminating on user request");
1380 }
1381
1382 static int com_on(int fd, __a_unused int argc, __a_unused char **argv)
1383 {
1384         audiod_status = AUDIOD_ON;
1385         close(fd);
1386         return 1;
1387 }
1388
1389 static int com_off(int fd, __a_unused int argc, __a_unused char **argv)
1390 {
1391         audiod_status = AUDIOD_OFF;
1392         close(fd);
1393         return 1;
1394 }
1395
1396 static int com_sb(int fd, __a_unused int argc, __a_unused char **argv)
1397 {
1398         audiod_status = AUDIOD_STANDBY;
1399         close(fd);
1400         return 1;
1401 }
1402
1403 static int com_cycle(int fd, int argc, char **argv)
1404 {
1405         switch (audiod_status) {
1406                 case  AUDIOD_ON:
1407                         return com_sb(fd, argc, argv);
1408                         break;
1409                 case  AUDIOD_OFF:
1410                         return com_on(fd, argc, argv);
1411                         break;
1412                 case  AUDIOD_STANDBY:
1413                         return com_off(fd, argc, argv);
1414                         break;
1415         }
1416         close(fd);
1417         return 1;
1418 }
1419
1420 static int check_perms(uid_t uid)
1421 {
1422         int i;
1423
1424         if (!conf.user_allow_given)
1425                 return 1;
1426         for (i = 0; i < conf.user_allow_given; i++)
1427                 if (uid == conf.user_allow_arg[i])
1428                         return 1;
1429         return -E_UCRED_PERM;
1430 }
1431
1432 static int handle_connect(void)
1433 {
1434         int i, argc, ret, clifd = -1;
1435         char *cmd = NULL, *p, *buf = para_calloc(MAXLINE), **argv = NULL;
1436         struct sockaddr_un unix_addr;
1437
1438         ret = para_accept(audiod_socket, &unix_addr, sizeof(struct sockaddr_un));
1439         if (ret < 0)
1440                 goto out;
1441         clifd = ret;
1442         ret = recv_cred_buffer(clifd, buf, MAXLINE - 1);
1443         if (ret < 0)
1444                 goto out;
1445         PARA_INFO_LOG("connection from user %i, buf: %s\n",  ret, buf);
1446         ret = check_perms(ret);
1447         if (ret < 0)
1448                 goto out;
1449         ret = -E_INVALID_AUDIOD_CMD;
1450         cmd = para_strdup(buf);
1451         p = strchr(cmd, '\n');
1452         if (!p)
1453                 p = "";
1454         else {
1455                 *p = '\0';
1456                 p++;
1457         }
1458         for (i = 0; cmds[i].name; i++) {
1459                 int j;
1460                 if (strcmp(cmds[i].name, cmd))
1461                         continue;
1462                 if (cmds[i].handler) {
1463                         argc = split_args(buf, &argv, "\n");
1464                         PARA_INFO_LOG("argv[0]: %s, argc= %d\n", argv[0], argc);
1465                         ret = cmds[i].handler(clifd, argc, argv);
1466                         goto out;
1467                 }
1468                 for (j = 0; p[j]; j++)
1469                         if (p[j] == '\n')
1470                                 p[j] = ' ';
1471                 PARA_INFO_LOG("cmd: %s, options: %s\n", cmd, p);
1472                 ret = cmds[i].line_handler(clifd, p);
1473                 goto out;
1474         }
1475         ret = -E_INVALID_AUDIOD_CMD; /* cmd not found */
1476 out:
1477         free(cmd);
1478         free(buf);
1479         free(argv);
1480         if (clifd > 0 && ret < 0 && ret != -E_CLIENT_WRITE) {
1481                 char *tmp = make_message("%s\n", PARA_STRERROR(-ret));
1482                 client_write(clifd, tmp);
1483                 free(tmp);
1484                 close(clifd);
1485         }
1486         return ret;
1487 }
1488
1489 static void audiod_get_socket(void)
1490 {
1491         struct sockaddr_un unix_addr;
1492
1493         if (conf.socket_given)
1494                 socket_name = para_strdup(conf.socket_arg);
1495         else {
1496                 char *hn = para_hostname();
1497                 socket_name = make_message("/var/paraslash/audiod_socket.%s",
1498                         hn);
1499                 free(hn);
1500         }
1501         PARA_NOTICE_LOG("connecting to local socket %s\n", socket_name);
1502         if (conf.force_given)
1503                 unlink(socket_name);
1504         audiod_socket = create_pf_socket(socket_name, &unix_addr,
1505                         S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IWOTH);
1506         if (audiod_socket < 0) {
1507                 PARA_EMERG_LOG("%s", "can not connect to socket\n");
1508                 exit(EXIT_FAILURE); /* do not unlink socket */
1509         }
1510         if (listen(audiod_socket, 5) < 0) {
1511                 PARA_EMERG_LOG("%s", "can not listen on socket\n");
1512                 exit(EXIT_FAILURE); /* do not unlink socket */
1513         }
1514         add_close_on_fork_list(audiod_socket);
1515 }
1516
1517 static int open_stat_pipe(void)
1518 {
1519         int ret, fd[3] = {-1, 1, 0};
1520         pid_t pid;
1521         ret = para_exec_cmdline_pid(&pid, BINDIR "/para_client stat", fd);
1522         if (ret >= 0) {
1523                 ret = fd[1];
1524                 PARA_NOTICE_LOG("stat pipe opened, fd %d\n", ret);
1525                 add_close_on_fork_list(ret);
1526         } else
1527                 clean_exit(EXIT_FAILURE, "failed to open status pipe");
1528         return ret;
1529 }
1530
1531 static void audiod_pre_select(fd_set *rfds, fd_set *wfds, struct timeval *tv,
1532                 int *max_fileno)
1533 {
1534         int i, ret;
1535
1536         FOR_EACH_SLOT(i) {
1537                 struct slot_info *s = &slot[i];
1538                 struct audio_format_info *a;
1539                 struct receiver_node *rn = s->receiver_node;
1540                 if (s->format < 0 || !rn)
1541                         continue;
1542                 a = &afi[s->format];
1543                 ret = a->receiver->pre_select(rn, rfds, wfds, tv);
1544 //              PARA_NOTICE_LOG("%s preselect: %d\n", a->receiver->name, ret);
1545                 *max_fileno = PARA_MAX(*max_fileno, ret);
1546         }
1547 }
1548 static void audiod_post_select(int select_ret, fd_set *rfds, fd_set *wfds)
1549 {
1550         int i, ret;
1551
1552         FOR_EACH_SLOT(i) {
1553                 struct slot_info *s = &slot[i];
1554                 struct audio_format_info *a;
1555                 struct receiver_node *rn = s->receiver_node;
1556                 if (s->format < 0 || !rn || rn->eof)
1557                         continue;
1558                 a = &afi[s->format];
1559                 ret = a->receiver->post_select(rn, select_ret, rfds, wfds);
1560                 if (ret <= 0) {
1561                         if (ret)
1562                                 PARA_ERROR_LOG("%s post select failed: %s (slot %d)\n",
1563                                 a->receiver->name, PARA_STRERROR(-ret), i);
1564                         else
1565                                 PARA_INFO_LOG("eof in slot %d\n", i);
1566                         rn->eof = 1;
1567                 }
1568                 if (ret < 0 && s->fci)
1569                         s->fci->error = ret;
1570         }
1571 }
1572
1573 /* TODO: move everything before the select call to pre_select() */
1574 static void __noreturn audiod_mainloop(void)
1575 {
1576         fd_set rfds, wfds;
1577         int ret, max_fileno, sbo = 0;
1578         char status_buf[STRINGSIZE] = "";
1579         struct timeval tv;
1580 repeat:
1581         FD_ZERO(&wfds);
1582         FD_ZERO(&rfds);
1583         max_fileno = -1;
1584         /* always check signal pipe and the local socket */
1585         para_fd_set(signal_pipe, &rfds, &max_fileno);
1586         para_fd_set(audiod_socket, &rfds, &max_fileno);
1587
1588         if (audiod_status != AUDIOD_ON)
1589                 kill_all_decoders();
1590         else if (playing)
1591                 start_current_receiver();
1592
1593         set_stream_fds(&wfds, &max_fileno);
1594         /* status pipe */
1595         if (stat_pipe >= 0 && audiod_status == AUDIOD_OFF)
1596                 close_stat_pipe();
1597         if (stat_pipe < 0 && audiod_status != AUDIOD_OFF) {
1598                 stat_pipe = open_stat_pipe();
1599                 sbo = 0;
1600                 status_buf[0] = '\0';
1601         }
1602         if (stat_pipe >= 0 && audiod_status != AUDIOD_OFF)
1603                 para_fd_set(stat_pipe, &rfds, &max_fileno);
1604         /* local socket */
1605         tv.tv_sec = 0;
1606         tv.tv_usec = 200 * 1000;
1607         audiod_pre_select(&rfds, &wfds, &tv, &max_fileno);
1608         ret = para_select(max_fileno + 1, &rfds, &wfds, &tv);
1609         if (ret < 0)
1610                 goto repeat;
1611         if (audiod_status != AUDIOD_OFF)
1612                 audiod_status_dump();
1613         audiod_post_select(ret, &rfds, &wfds);
1614         /* read status pipe */
1615         if (stat_pipe >=0 && FD_ISSET(stat_pipe, &rfds)) {
1616                 ret = read(stat_pipe, status_buf + sbo, STRINGSIZE - 1 - sbo);
1617                 if (ret <= 0) {
1618                         close_stat_pipe();
1619                         /* avoid busy loop if server is down */
1620                         while (sleep(1) > 0)
1621                                 ; /* try again*/
1622                 } else {
1623                         status_buf[ret + sbo] = '\0';
1624                         sbo = for_each_line(status_buf, ret + sbo,
1625                                 &check_stat_line);
1626                 }
1627         }
1628         slot_io(&wfds);
1629         if (FD_ISSET(audiod_socket, &rfds)) {
1630                 ret = handle_connect();
1631                 if (ret < 0) {
1632                         PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret));
1633                 }
1634         }
1635         /* signals */
1636         if (FD_ISSET(signal_pipe, &rfds)) {
1637                 int sig_nr = para_next_signal();
1638                 if (sig_nr > 0)
1639                         handle_signal(sig_nr);
1640         }
1641         goto repeat;
1642 }
1643
1644 static void set_initial_status(void)
1645 {
1646         audiod_status = AUDIOD_ON;
1647         if (!conf.mode_given)
1648                 return;
1649         if (!strcmp(conf.mode_arg, "sb")) {
1650                 audiod_status = AUDIOD_STANDBY;
1651                 return;
1652         }
1653         if (!strcmp(conf.mode_arg, "off")) {
1654                 audiod_status = AUDIOD_OFF;
1655                 return;
1656         }
1657         if (strcmp(conf.mode_arg, "on"))
1658                 PARA_WARNING_LOG("%s", "invalid mode\n");
1659 }
1660
1661 int __noreturn main(int argc, char *argv[])
1662 {
1663         char *cf;
1664         int i;
1665
1666         valid_fd_012();
1667         hostname = para_hostname();
1668         cmdline_parser(argc, argv, &conf);
1669         para_drop_privileges(conf.user_arg, conf.group_arg);
1670         cf = configfile_exists();
1671         if (cf) {
1672                 if (cmdline_parser_configfile(cf, &conf, 0, 0, 0)) {
1673                         PARA_EMERG_LOG("%s", "parse error in config file\n");
1674                         exit(EXIT_FAILURE);
1675                 }
1676         }
1677         if (conf.logfile_given)
1678                 logfile = open_log(conf.logfile_arg);
1679         log_welcome("para_audiod", conf.loglevel_arg);
1680         i = init_stream_io();
1681         if (i < 0) {
1682                 PARA_EMERG_LOG("init stream io error: %s\n", PARA_STRERROR(-i));
1683                 exit(EXIT_FAILURE);
1684         }
1685         server_uptime(UPTIME_SET);
1686         set_initial_status();
1687         FOR_EACH_SLOT(i)
1688                 clear_slot(i);
1689         init_grabbing();
1690         setup_signal_handling();
1691         if (conf.daemon_given)
1692                 daemon_init();
1693         audiod_get_socket(); /* doesn't return on errors */
1694         audiod_mainloop();
1695 }