2 * Copyright (C) 2005-2006 Andre Noll <noll@mathematik.tu-darmstadt.de>
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.
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.
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.
19 /** \file audiod.c the paraslash's audio daemon */
23 #include "audiod.cmdline.h"
25 #include "close_on_fork.h"
29 #include "grab_client.cmdline.h"
30 #include "grab_client.h"
39 #include "write_common.h"
41 /** define the array of error lists needed by para_audiod */
43 /** define the array containing all supported audio formats */
44 DEFINE_AUDIO_FORMAT_ARRAY
;
47 * the possible modes of operation
49 * - off: disconnect from para_server
50 * - on: receive status information from para_server and play the audio stream
51 * - sb: only receive status information but not the audio stream
53 enum {AUDIOD_OFF
, AUDIOD_ON
, AUDIOD_STANDBY
};
55 /** defines how to handle one supported audio format */
56 struct audio_format_info
{
57 /** pointer to the receiver for this audio format */
58 struct receiver
*receiver
;
59 /** the receiver configuration */
61 /** the number of filters that should be activated for this audio format */
62 unsigned int num_filters
;
63 /** pointer to the array of filters to be activated */
64 struct filter
**filters
;
65 /** pointer to the array of filter configurations */
67 /** the number of filters that should be activated for this audio format */
68 unsigned int num_writers
;
69 /** pointer to the array of writers to be activated */
70 struct writer
**writers
;
71 /** pointer to the array of writer configurations */
73 /** do not start receiver/filters/writer before this time */
74 struct timeval restart_barrier
;
78 * describes one instance of a receiver-filter-writer chain
80 * \sa receier_node, receiver, filter, filter_node, filter_chain, writer,
81 * writer_node, writer_node_group.
84 /** number of the audio format in this slot */
86 /** writer start time */
87 struct timeval wstime
;
88 /** the receiver info associated with this slot */
89 struct receiver_node
*receiver_node
;
90 /** the active filter chain */
91 struct filter_chain
*fc
;
92 /** the active writer node group */
93 struct writer_node_group
*wng
;
95 static struct slot_info slot
[MAX_STREAM_SLOTS
];
97 extern const char *status_item_list
[NUM_STAT_ITEMS
];
99 static struct gengetopt_args_info conf
;
100 static struct timeval server_stream_start
, sa_time_diff
;
101 static int playing
, current_decoder
= -1,
102 audiod_status
= AUDIOD_ON
, offset_seconds
, length_seconds
,
103 sa_time_diff_sign
= 1;
104 static char *af_status
, /* the audio format announced in server status */
105 *socket_name
, *hostname
;
106 static char *stat_item_values
[NUM_STAT_ITEMS
];
107 static FILE *logfile
;
108 static const struct timeval restart_delay
= {0, 200 * 1000};
109 static struct audio_format_info afi
[NUM_AUDIO_FORMATS
];
110 static struct timeval
*now
;
112 static struct signal_task signal_task_struct
, *sig_task
= &signal_task_struct
;
115 * the task for handling audiod commands
117 * \sa struct task, struct sched
119 struct command_task
{
120 /** the local listening socket */
122 /** the associated task structure */
127 * the task for audiod's child (para_client stat)
129 * \sa struct task, struct sched
132 /** the output of the stat command is read from this fd */
134 /** stat data is stored here */
135 char buf
[STRINGSIZE
];
136 /** number of bytes loaded in \a buf */
138 /** the associated task structure */
140 /** do not restart client command until this time */
141 struct timeval restart_barrier
;
143 static struct status_task status_task_struct
, *stat_task
= &status_task_struct
;
151 /** defines one command of para_audiod */
152 struct audiod_command
{
153 /** the name of the command */
155 /** pointer to the function that handles the command */
156 int (*handler
)(int, int, char**);
158 * if the command prefers to handle the full line (rather than the usual
159 * argv[] array), it stores a pointer to the corresponding line handling
160 * function here. In this case, the above \a handler pointer must be NULL.
162 int (*line_handler
)(int, char*);
163 /** one-line description of the command */
164 const char *description
;
165 /** summary of the command line options */
166 const char *synopsis
;
167 /** the long help text */
170 static int com_grab(int, char *);
171 static int com_cycle(int, int, char **);
172 static int com_help(int, int, char **);
173 static int com_kill(int, int, char **);
174 static int com_off(int, int, char **);
175 static int com_on(int, int, char **);
176 static int com_sb(int, int, char **);
177 static int com_stat(int, int, char **);
178 static int com_tasks(int, int, char **);
179 static int com_term(int, int, char **);
180 static struct audiod_command cmds
[] = {
183 .handler
= com_cycle
,
184 .description
= "switch to next mode",
188 "on -> standby -> off -> on\n"
193 .line_handler
= com_grab
,
194 .description
= "grab the audio stream",
195 .synopsis
= "-- grab [grab_options]",
198 "grab ('splice') the audio stream at any position in the filter \n"
199 "chain and send that data back to the client. Try\n"
200 "\t para_audioc -- grab -h\n"
201 "for the list of available options.\n"
207 .description
= "display command list or help for given command",
208 .synopsis
= "help [command]",
211 "When I was younger, so much younger than today, I never needed\n"
212 "anybody's help in any way. But now these days are gone, I'm not so\n"
213 "self assured. Now I find I've changed my mind and opened up the doors.\n"
215 " -- Beatles: Help\n"
221 .description
= "kill an active audiod task",
222 .synopsis
= "kill task_id [task_id ...]",
225 "call sched_unregister() and the event_handler of the given task(s)\n"
231 .description
= "deactivate para_audiod",
235 "Close connection to para_server and stop all decoders.\n"
241 .description
= "activate para_audiod",
245 "Establish connection to para_server, retrieve para_server's current\n"
246 "status. If playing, start corresponding decoder. Otherwise stop\n"
253 .description
= "enter standby mode",
257 "Stop all decoders but leave connection to para_server open.\n"
263 .description
= "print status information",
264 .synopsis
= "stat [item1 ...]",
267 "Dump given status items (all if none given) to stdout.\n"
272 .handler
= com_tasks
,
273 .description
= "list current tasks",
277 "print the list of task ids together with the status of each task\n"
283 .description
= "terminate audiod",
287 "Stop all decoders, shut down connection to para_server and exit.\n"
295 /** iterate over all slots */
296 #define FOR_EACH_SLOT(_slot) for (_slot = 0; _slot < MAX_STREAM_SLOTS; _slot++)
297 /** iterate over all supported audio formats */
298 #define FOR_EACH_AUDIO_FORMAT(af) for (af = 0; af < NUM_AUDIO_FORMATS; af++)
299 /** iterate over the array of all audiod commands */
300 #define FOR_EACH_COMMAND(c) for (c = 0; cmds[c].name; c++)
303 * get the audio format number
304 * \param name the name of the audio format
306 * \return The audio format number on success, -E_UNSUPPORTED_AUDIO_FORMAT if
307 * \a name is not a supported audio format.
309 int get_audio_format_num(char *name
)
312 FOR_EACH_AUDIO_FORMAT(i
)
313 if (!strcmp(name
, audio_formats
[i
]))
315 return -E_UNSUPPORTED_AUDIO_FORMAT
;
319 * log function. first argument is loglevel.
321 void para_log(int ll
, const char* fmt
,...)
327 char str
[MAXLINE
] = "";
329 if (ll
< conf
.loglevel_arg
)
331 outfd
= logfile
? logfile
: stderr
;
334 strftime(str
, MAXLINE
, "%b %d %H:%M:%S", tm
);
335 fprintf(outfd
, "%s %s ", str
, hostname
);
336 if (conf
.loglevel_arg
<= INFO
)
337 fprintf(outfd
, "%i ", ll
);
339 vfprintf(outfd
, fmt
, argp
);
343 static int client_write(int fd
, const char *buf
)
345 size_t len
= strlen(buf
);
346 return write(fd
, buf
, len
) != len
? -E_CLIENT_WRITE
: 1;
349 static char *get_time_string(struct timeval
*newest_stime
)
351 struct timeval diff
, adj_stream_start
, tmp
;
352 int total
= 0, use_server_time
= 1;
357 return make_message("%s:\n", status_item_list
[SI_PLAY_TIME
]);
359 if (audiod_status
== AUDIOD_OFF
)
361 if (sa_time_diff_sign
> 0)
362 tv_diff(&server_stream_start
, &sa_time_diff
,
365 tv_add(&server_stream_start
, &sa_time_diff
,
367 tmp
= adj_stream_start
;
368 if (newest_stime
&& audiod_status
== AUDIOD_ON
) {
369 tv_diff(newest_stime
, &adj_stream_start
, &diff
);
370 if (tv2ms(&diff
) < 5000) {
375 tv_diff(now
, &tmp
, &diff
);
376 total
= diff
.tv_sec
+ offset_seconds
;
377 if (total
> length_seconds
)
378 total
= length_seconds
;
383 "%s:%s%d:%02d [%d:%02d] (%d%%/%d:%02d)\n",
384 status_item_list
[SI_PLAY_TIME
],
385 use_server_time
? "~" : "",
388 (length_seconds
- total
) / 60,
389 (length_seconds
- total
) % 60,
390 length_seconds
? (total
* 100 + length_seconds
/ 2) /
397 __malloc
static char *audiod_status_string(void)
399 const char *status
= (audiod_status
== AUDIOD_ON
)?
400 "on" : (audiod_status
== AUDIOD_OFF
)? "off": "sb";
401 return make_message("%s:%s\n", status_item_list
[SI_AUDIOD_STATUS
], status
);
404 static struct timeval
*wstime(void)
407 struct timeval
*max
= NULL
;
409 struct slot_info
*s
= &slot
[i
];
412 if (max
&& tv_diff(&s
->wstime
, max
, NULL
) <= 0)
418 __malloc
static char *decoder_flags(void)
421 char decoder_flags
[MAX_STREAM_SLOTS
+ 1];
424 struct slot_info
*s
= &slot
[i
];
426 if (s
->receiver_node
)
430 decoder_flags
[i
] = flag
;
432 decoder_flags
[MAX_STREAM_SLOTS
] = '\0';
433 return make_message("%s:%s\n", status_item_list
[SI_DECODER_FLAGS
],
437 static char *configfile_exists(void)
439 static char *config_file
;
442 char *home
= para_homedir();
443 config_file
= make_message("%s/.paraslash/audiod.conf", home
);
446 return file_exists(config_file
)? config_file
: NULL
;
449 static void setup_signal_handling(void)
451 sig_task
->fd
= para_signal_init();
452 PARA_INFO_LOG("signal pipe: fd %d\n", sig_task
->fd
);
453 para_install_sighandler(SIGINT
);
454 para_install_sighandler(SIGTERM
);
455 para_install_sighandler(SIGCHLD
);
456 para_install_sighandler(SIGHUP
);
457 para_install_sighandler(SIGPIPE
);
458 // signal(SIGPIPE, SIG_IGN);
461 static void audiod_status_dump(void)
463 static char *p_ts
, *p_us
, *p_as
, *p_df
;
464 struct timeval
*t
= wstime();
465 char *us
, *tmp
= get_time_string(t
);
467 if (tmp
&& (!p_ts
|| strcmp(tmp
, p_ts
)))
468 stat_client_write(tmp
, SI_PLAY_TIME
);
473 tmp
= make_message("%s:%s\n", status_item_list
[SI_AUDIOD_UPTIME
], us
);
475 if (!p_us
|| strcmp(p_us
, tmp
))
476 stat_client_write(tmp
, SI_AUDIOD_UPTIME
);
480 tmp
= audiod_status_string();
481 if (!p_as
|| strcmp(p_as
, tmp
))
482 stat_client_write(tmp
, SI_AUDIOD_STATUS
);
486 tmp
= decoder_flags();
487 if (!p_df
|| strcmp(p_df
, tmp
))
488 stat_client_write(tmp
, SI_DECODER_FLAGS
);
493 static void clear_slot(int slot_num
)
495 struct slot_info
*s
= &slot
[slot_num
];
497 PARA_INFO_LOG("clearing slot %d\n", slot_num
);
498 memset(s
, 0, sizeof(struct slot_info
));
502 static void close_receiver(int slot_num
)
504 struct slot_info
*s
= &slot
[slot_num
];
505 struct audio_format_info
*a
;
507 if (s
->format
< 0 || !s
->receiver_node
)
510 PARA_NOTICE_LOG("closing %s receiver in slot %d (eof = %d)\n",
511 audio_formats
[s
->format
] , slot_num
, s
->receiver_node
->eof
);
512 // if (!s->receiver_node->eof)
513 // unregister_task(&s->receiver_node->task);
514 a
->receiver
->close(s
->receiver_node
);
515 free(s
->receiver_node
);
516 s
->receiver_node
= NULL
;
517 /* set restart barrier */
518 tv_add(now
, &restart_delay
, &afi
[s
->format
].restart_barrier
);
521 static void kill_all_decoders(void)
526 struct slot_info
*s
= &slot
[i
];
527 if (s
->wng
&& !s
->wng
->eof
) {
528 PARA_INFO_LOG("unregistering writer node group in slot %d\n",
530 wng_unregister(s
->wng
);
533 if (s
->fc
&& !s
->fc
->eof
) {
534 PARA_INFO_LOG("unregistering filter chain in slot %d\n", i
);
535 unregister_task(&s
->fc
->task
);
538 if (s
->receiver_node
&& !s
->receiver_node
->eof
) {
539 PARA_INFO_LOG("unregistering receiver_node in slot %d\n", i
);
540 unregister_task(&s
->receiver_node
->task
);
541 s
->receiver_node
->eof
= 1;
546 static int get_empty_slot(void)
557 if (s
->wng
|| s
->receiver_node
|| s
->fc
)
562 return -E_NO_MORE_SLOTS
;
565 static int decoder_running(int format
)
572 if (s
->format
== format
&& s
->receiver_node
)
574 if (s
->format
== format
&& s
->wng
)
580 static void close_stat_pipe(void)
584 if (stat_task
->fd
< 0)
586 PARA_NOTICE_LOG("%s", "closing status pipe\n");
587 close(stat_task
->fd
);
588 del_close_on_fork_list(stat_task
->fd
);
590 // kill_all_decoders();
591 for (i
= 0; i
< NUM_STAT_ITEMS
; i
++) {
592 free(stat_item_values
[i
]);
593 stat_item_values
[i
] = NULL
;
598 audiod_status_dump();
600 stat_item_values
[SI_STATUS_BAR
] = make_message(
601 "%s:no connection to para_server\n",
602 status_item_list
[SI_STATUS_BAR
]);
603 stat_client_write(stat_item_values
[SI_STATUS_BAR
], SI_STATUS_BAR
);
606 static void __noreturn
clean_exit(int status
, const char *msg
)
608 PARA_EMERG_LOG("%s\n", msg
);
611 if (stat_task
->fd
>= 0)
617 * get the number of filters
619 * \param audio_format_num the number identifying the audio format
621 * \return the number of filters for the given audio format
625 int num_filters(int audio_format_num
)
627 return afi
[audio_format_num
].num_filters
;
630 static void filter_event_handler(struct task
*t
)
632 PARA_NOTICE_LOG("%s\n", PARA_STRERROR(-t
->ret
));
633 struct filter_chain
*fc
= t
->private_data
;
638 static void open_filters(int slot_num
)
640 struct slot_info
*s
= &slot
[slot_num
];
641 struct audio_format_info
*a
= &afi
[s
->format
];
642 int nf
= a
->num_filters
;
648 PARA_INFO_LOG("opening %s filters\n", audio_formats
[s
->format
]);
649 s
->fc
= para_calloc(sizeof(struct filter_chain
));
650 INIT_LIST_HEAD(&s
->fc
->filters
);
651 s
->fc
->inbuf
= s
->receiver_node
->buf
;
652 s
->fc
->in_loaded
= &s
->receiver_node
->loaded
;
653 s
->fc
->input_eof
= &s
->receiver_node
->eof
;
654 s
->fc
->task
.pre_select
= filter_pre_select
;
655 s
->fc
->task
.event_handler
= filter_event_handler
;
656 s
->fc
->task
.private_data
= s
->fc
;
659 s
->receiver_node
->output_eof
= &s
->fc
->eof
;
660 sprintf(s
->fc
->task
.status
, "filter chain");
661 for (i
= 0; i
< nf
; i
++) {
662 struct filter_node
*fn
= para_calloc(sizeof(struct filter_node
));
663 fn
->conf
= a
->filter_conf
[i
];
665 fn
->filter
= a
->filters
[i
];
666 INIT_LIST_HEAD(&fn
->callbacks
);
667 list_add_tail(&fn
->node
, &s
->fc
->filters
);
668 fn
->filter
->open(fn
);
669 PARA_NOTICE_LOG("%s filter %d/%d (%s) started in slot %d\n",
670 audio_formats
[s
->format
], i
+ 1, nf
,
671 fn
->filter
->name
, slot_num
);
672 s
->fc
->outbuf
= fn
->buf
;
673 s
->fc
->out_loaded
= &fn
->loaded
;
675 register_task(&s
->fc
->task
);
678 static struct filter_node
*find_filter_node(int slot_num
, int format
, int filternum
)
680 struct filter_node
*fn
;
684 struct slot_info
*s
= &slot
[i
];
685 if (s
->format
< 0 || !s
->fc
)
687 if (slot_num
>= 0 && slot_num
!= i
)
689 if (format
>= 0 && s
->format
!= format
)
691 if (num_filters(i
) < filternum
)
695 list_for_each_entry(fn
, &s
->fc
->filters
, node
)
696 if (filternum
<= 0 || j
++ == filternum
)
703 static void wng_event_handler(struct task
*t
)
705 struct writer_node_group
*wng
= t
->private_data
;
707 PARA_INFO_LOG("%s\n", PARA_STRERROR(-t
->ret
));
712 static void open_writers(int slot_num
)
715 struct slot_info
*s
= &slot
[slot_num
];
716 struct audio_format_info
*a
= &afi
[s
->format
];
718 PARA_INFO_LOG("opening %s writers\n", audio_formats
[s
->format
]);
720 s
->wng
= setup_default_wng();
722 s
->wng
= wng_new(a
->num_writers
);
724 s
->wng
->buf
= s
->fc
->outbuf
;
725 s
->wng
->loaded
= s
->fc
->out_loaded
;
726 s
->wng
->input_eof
= &s
->fc
->eof
;
727 s
->wng
->channels
= &s
->fc
->channels
;
728 s
->wng
->samplerate
= &s
->fc
->samplerate
;
729 s
->fc
->output_eof
= &s
->wng
->eof
;
730 PARA_INFO_LOG("samplerate: %d\n", *s
->wng
->samplerate
);
732 s
->wng
->buf
= s
->receiver_node
->buf
;
733 s
->wng
->loaded
= &s
->receiver_node
->loaded
;
734 s
->wng
->input_eof
= &s
->receiver_node
->eof
;
736 s
->wng
->task
.event_handler
= wng_event_handler
;
737 for (i
= 0; i
< a
->num_writers
; i
++) {
738 s
->wng
->writer_nodes
[i
].conf
= a
->writer_conf
[i
];
739 s
->wng
->writer_nodes
[i
].writer
= a
->writers
[i
];
741 ret
= wng_open(s
->wng
);
743 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret
));
747 current_decoder
= slot_num
;
748 activate_inactive_grab_clients(slot_num
, s
->format
, &s
->fc
->filters
);
751 static void rn_event_handler(struct task
*t
)
753 struct receiver_node
*rn
= t
->private_data
;
755 PARA_NOTICE_LOG("%s\n", PARA_STRERROR(-t
->ret
));
760 static void open_receiver(int format
)
762 struct audio_format_info
*a
= &afi
[format
];
765 struct receiver_node
*rn
;
767 slot_num
= get_empty_slot();
769 clean_exit(EXIT_FAILURE
, PARA_STRERROR(-slot_num
));
772 s
->receiver_node
= para_calloc(sizeof(struct receiver_node
));
773 rn
= s
->receiver_node
;
774 rn
->receiver
= a
->receiver
;
775 rn
->conf
= a
->receiver_conf
;
776 ret
= a
->receiver
->open(s
->receiver_node
);
778 PARA_ERROR_LOG("failed to open receiver (%s)\n",
779 PARA_STRERROR(-ret
));
780 free(s
->receiver_node
);
781 s
->receiver_node
= NULL
;
784 PARA_NOTICE_LOG("started %s: %s receiver in slot %d\n",
785 audio_formats
[s
->format
], a
->receiver
->name
, slot_num
);
786 rn
->task
.private_data
= s
->receiver_node
;
787 rn
->task
.pre_select
= a
->receiver
->pre_select
;
788 rn
->task
.post_select
= a
->receiver
->post_select
;
789 rn
->task
.event_handler
= rn_event_handler
;
790 sprintf(rn
->task
.status
, "%s receiver node", rn
->receiver
->name
);
791 register_task(&rn
->task
);
794 static int open_current_receiver(struct sched
*s
)
801 i
= get_audio_format_num(af_status
);
804 if (decoder_running(i
))
806 if (tv_diff(now
, &afi
[i
].restart_barrier
, &diff
) < 0) {
814 static void compute_time_diff(const struct timeval
*status_time
)
816 struct timeval tmp
, diff
;
819 const struct timeval max_deviation
= {0, 500 * 1000};
820 const int time_smooth
= 5;
822 sign
= tv_diff(status_time
, now
, &diff
);
823 // PARA_NOTICE_LOG("%s: sign = %i, sa_time_diff_sign = %i\n", __func__,
824 // sign, sa_time_diff_sign);
826 sa_time_diff_sign
= sign
;
832 int s
= tv_diff(&diff
, &sa_time_diff
, &tmp
);
833 if (tv_diff(&max_deviation
, &tmp
, NULL
) < 0)
834 PARA_WARNING_LOG("time diff jump: %lims\n",
838 sa_time_diff_sign
= tv_convex_combination(
839 sa_time_diff_sign
* time_smooth
, &sa_time_diff
,
840 count
> 10? sign
: sign
* time_smooth
, &diff
,
843 PARA_DEBUG_LOG("time diff (cur/avg): %s%lums/%s%lums\n",
846 sa_time_diff_sign
? "+" : "-",
851 static void check_stat_line(char *line
)
855 long unsigned sec
, usec
;
858 // PARA_INFO_LOG("line: %s\n", line);
861 itemnum
= stat_line_valid(line
);
863 PARA_WARNING_LOG("invalid status line: %s\n", line
);
866 tmp
= make_message("%s\n", line
);
867 stat_client_write(tmp
, itemnum
);
869 free(stat_item_values
[itemnum
]);
870 stat_item_values
[itemnum
] = para_strdup(line
);
871 ilen
= strlen(status_item_list
[itemnum
]);
874 playing
= strstr(line
, "playing")? 1 : 0;
878 af_status
= para_strdup(line
+ ilen
+ 1);
881 offset_seconds
= atoi(line
+ ilen
+ 1);
884 length_seconds
= atoi(line
+ ilen
+ 1);
886 case SI_STREAM_START
:
887 if (sscanf(line
+ ilen
+ 1, "%lu.%lu", &sec
, &usec
) == 2) {
888 server_stream_start
.tv_sec
= sec
;
889 server_stream_start
.tv_usec
= usec
;
892 case SI_CURRENT_TIME
:
893 if (sscanf(line
+ ilen
+ 1, "%lu.%lu", &sec
, &usec
) == 2) {
894 struct timeval tv
= {sec
, usec
};
895 compute_time_diff(&tv
);
901 static void handle_signal(int sig
)
906 pid_t pid
= para_reap_child();
909 PARA_CRIT_LOG("para_client died (pid %d)\n", pid
);
914 PARA_EMERG_LOG("terminating on signal %d\n", sig
);
915 clean_exit(EXIT_FAILURE
, "caught deadly signal");
920 static void try_to_close_slot(int slot_num
)
922 struct slot_info
*s
= &slot
[slot_num
];
926 if (s
->receiver_node
&& !s
->receiver_node
->eof
)
928 if (s
->fc
&& !s
->fc
->eof
)
930 if (s
->wng
&& !s
->wng
->eof
)
932 PARA_INFO_LOG("closing slot %d \n", slot_num
);
934 close_filters(s
->fc
);
936 close_receiver(slot_num
);
937 clear_slot(slot_num
);
941 * Check if any receivers/filters/writers need to be started and do so if
942 * neccessary. Since the pre_select function didn't have a chance yet to put
943 * file descriptors into the fd sets given by s, make the upcoming select()
944 * return immediately to avoid a long timeout in case we started something.
946 static void audiod_pre_select(struct sched
*s
, __a_unused
struct task
*t
)
949 struct timeval min_delay
= {0, 1};
953 if (audiod_status
!= AUDIOD_ON
|| !playing
)
954 return kill_all_decoders();
955 if (open_current_receiver(s
))
956 s
->timeout
= min_delay
;
958 struct slot_info
*sl
= &slot
[i
];
959 struct audio_format_info
*a
;
963 a
= &afi
[sl
->format
];
964 if (!sl
->receiver_node
)
966 if (!a
->num_filters
) {
967 if (sl
->receiver_node
->loaded
&& !sl
->wng
) {
969 s
->timeout
= min_delay
;
973 if (sl
->receiver_node
->loaded
&& !sl
->fc
) {
975 s
->timeout
= min_delay
;
978 if (sl
->fc
&& *sl
->fc
->out_loaded
&& !sl
->wng
) {
980 s
->timeout
= min_delay
;
985 static void audiod_post_select(struct sched
*s
, __a_unused
struct task
*t
)
989 /* save away the current time for other users */
993 try_to_close_slot(i
);
996 static void init_audiod_task(struct task
*t
)
998 t
->pre_select
= audiod_pre_select
;
999 t
->post_select
= audiod_post_select
;
1000 t
->event_handler
= NULL
;
1001 t
->private_data
= t
;
1002 sprintf(t
->status
, "audiod task");
1005 static int parse_stream_command(const char *txt
, char **cmd
)
1007 char *p
= strchr(txt
, ':');
1011 return -E_MISSING_COLON
;
1013 FOR_EACH_AUDIO_FORMAT(i
) {
1014 if (strncmp(txt
, audio_formats
[i
], strlen(audio_formats
[i
])))
1019 return -E_UNSUPPORTED_AUDIO_FORMAT
;
1022 static int add_filter(int format
, char *cmdline
)
1024 struct audio_format_info
*a
= &afi
[format
];
1025 int filter_num
, nf
= a
->num_filters
;
1027 filter_num
= check_filter_arg(cmdline
, &a
->filter_conf
[nf
]);
1030 a
->filters
[nf
] = &filters
[filter_num
];
1032 PARA_INFO_LOG("%s filter %d: %s\n", audio_formats
[format
], nf
+ 1,
1033 a
->filters
[nf
]->name
);
1037 static int init_writers(void)
1041 struct audio_format_info
*a
;
1043 init_supported_writers();
1044 nw
= PARA_MAX(1, conf
.writer_given
);
1045 PARA_INFO_LOG("maximal number of writers: %d\n", nw
);
1046 FOR_EACH_AUDIO_FORMAT(i
) {
1048 a
->writer_conf
= para_malloc(nw
* sizeof(void *));
1049 a
->writers
= para_malloc(nw
* sizeof(struct writer
*));
1052 for (i
= 0; i
< conf
.writer_given
; i
++) {
1055 ret
= parse_stream_command(conf
.writer_arg
[i
], &cmd
);
1059 nw
= a
->num_writers
;
1060 wconf
= check_writer_arg(cmd
, &writer_num
);
1065 a
->writers
[nw
] = &writers
[writer_num
];
1066 a
->writer_conf
[nw
] = wconf
;
1067 PARA_INFO_LOG("%s writer #%d: %s\n", audio_formats
[ret
],
1068 nw
, writer_names
[writer_num
]);
1076 static int init_receivers(void)
1078 int i
, ret
, receiver_num
;
1080 struct audio_format_info
*a
;
1082 for (i
= 0; receivers
[i
].name
; i
++) {
1083 PARA_INFO_LOG("initializing %s receiver\n", receivers
[i
].name
);
1084 receivers
[i
].init(&receivers
[i
]);
1086 for (i
= 0; i
< conf
.receiver_given
; i
++) {
1087 char *arg
= conf
.receiver_arg
[i
];
1088 char *recv
= strchr(arg
, ':');
1089 ret
= -E_MISSING_COLON
;
1094 ret
= get_audio_format_num(arg
);
1097 afi
[ret
].receiver_conf
= check_receiver_arg(recv
, &receiver_num
);
1098 if (!afi
[ret
].receiver_conf
) {
1099 ret
= -E_RECV_SYNTAX
;
1102 afi
[ret
].receiver
= &receivers
[receiver_num
];
1104 /* use the first available receiver with no arguments
1105 * for those audio formats for which no receiver
1108 cmd
= para_strdup(receivers
[0].name
);
1109 FOR_EACH_AUDIO_FORMAT(i
) {
1111 if (a
->receiver_conf
)
1113 a
->receiver_conf
= check_receiver_arg(cmd
, &receiver_num
);
1114 if (!a
->receiver_conf
)
1115 return -E_RECV_SYNTAX
;
1116 a
->receiver
= &receivers
[receiver_num
];
1124 static int init_default_filters(void)
1128 FOR_EACH_AUDIO_FORMAT(i
) {
1129 struct audio_format_info
*a
= &afi
[i
];
1134 continue; /* no default -- nothing to to */
1135 /* add "dec" to audio format name */
1136 tmp
= make_message("%sdec", audio_formats
[i
]);
1137 for (j
= 0; filters
[j
].name
; j
++)
1138 if (!strcmp(tmp
, filters
[j
].name
))
1141 ret
= -E_UNSUPPORTED_FILTER
;
1142 if (!filters
[j
].name
)
1144 tmp
= para_strdup(filters
[j
].name
);
1145 ret
= add_filter(i
, tmp
);
1149 PARA_INFO_LOG("%s -> default filter: %s\n", audio_formats
[i
],
1156 static int init_filters(void)
1160 filter_init(filters
);
1161 nf
= PARA_MAX(1, conf
.filter_given
);
1162 PARA_INFO_LOG("maximal number of filters: %d\n", nf
);
1163 FOR_EACH_AUDIO_FORMAT(i
) {
1164 afi
[i
].filter_conf
= para_malloc(nf
* sizeof(void *));
1165 afi
[i
].filters
= para_malloc(nf
* sizeof(struct filter
*));
1167 if (!conf
.no_default_filters_given
)
1168 return init_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
;
1175 *filter_name
= '\0';
1177 ret
= get_audio_format_num(arg
);
1180 ret
= add_filter(ret
, filter_name
);
1184 ret
= init_default_filters(); /* use default values for the rest */
1189 static int init_stream_io(void)
1193 ret
= init_writers();
1196 ret
= init_receivers();
1199 ret
= init_filters();
1205 static int dump_commands(int fd
)
1207 char *buf
= para_strdup(""), *tmp
= NULL
;
1211 FOR_EACH_COMMAND(i
) {
1212 tmp
= make_message("%s%s\t%s\n", buf
, cmds
[i
].name
,
1213 cmds
[i
].description
);
1217 ret
= client_write(fd
, buf
);
1223 * command handlers don't close their fd on errors (ret < 0) so that
1224 * its caller can send an error message. Otherwise (ret >= 0) it's up
1225 * to each individual command to close the fd if necessary.
1228 static int com_help(int fd
, int argc
, char **argv
)
1232 const char *dflt
= "No such command. Available commands:\n";
1235 ret
= dump_commands(fd
);
1238 FOR_EACH_COMMAND(i
) {
1239 if (strcmp(cmds
[i
].name
, argv
[1]))
1242 "NAME\n\t%s -- %s\n"
1243 "SYNOPSIS\n\tpara_audioc %s\n"
1244 "DESCRIPTION\n%s\n",
1246 cmds
[i
].description
,
1250 ret
= client_write(fd
, buf
);
1254 ret
= client_write(fd
, dflt
);
1256 ret
= dump_commands(fd
);
1263 static int com_tasks(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1265 char *tl
= get_task_list();
1268 ret
= client_write(fd
, tl
);
1275 static int com_kill(int fd
, int argc
, char **argv
)
1279 return -E_AUDIOD_SYNTAX
;
1280 for (i
= 1; i
< argc
; i
++) {
1281 ret
= kill_task(argv
[i
]);
1290 static int com_stat(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1294 long unsigned mask
= ~0LU;
1298 for (i
= 1; i
< argc
; i
++) {
1299 ret
= stat_item_valid(argv
[i
]);
1305 PARA_INFO_LOG("mask: 0x%lx\n", mask
);
1306 if (mask
& (1 << SI_PLAY_TIME
)) {
1307 struct timeval
*t
= wstime();
1308 char *ts
= get_time_string(t
);
1310 ret
= client_write(fd
, ts
);
1316 if (mask
& (1 << SI_AUDIOD_UPTIME
)) {
1317 char *tmp
, *us
= uptime_str();
1318 tmp
= make_message("%s:%s\n",
1319 status_item_list
[SI_AUDIOD_UPTIME
], us
);
1321 ret
= client_write(fd
, tmp
);
1326 if (mask
& (1 << SI_AUDIOD_STATUS
)) {
1327 char *s
= audiod_status_string();
1328 ret
= client_write(fd
, s
);
1333 if (mask
& (1 << SI_DECODER_FLAGS
)) {
1334 char *df
=decoder_flags();
1335 ret
= client_write(fd
, df
);
1341 for (i
= 0; i
< NUM_STAT_ITEMS
; i
++) {
1343 if (!((1 << i
) & mask
))
1345 v
= stat_item_values
[i
];
1346 tmp
= make_message("%s%s%s", buf
? buf
: "",
1347 v
? v
: "", v
? "\n" : "");
1351 ret
= client_write(fd
, buf
);
1354 ret
= stat_client_add(fd
, mask
);
1359 static int com_grab(int fd
, char *cmdline
)
1361 struct grab_client
*gc
;
1362 struct filter_node
*fn
;
1366 gc
= grab_client_new(fd
, cmdline
, &err
);
1369 fn
= find_filter_node(gc
->conf
->slot_arg
, gc
->audio_format_num
, gc
->conf
->filter_num_arg
);
1371 activate_grab_client(gc
, fn
);
1374 if (err
!= -E_GC_HELP_GIVEN
&& err
!= -E_GC_VERSION_GIVEN
)
1376 if (err
== -E_GC_HELP_GIVEN
) {
1377 msg
= make_message("%s\n\n", grab_client_args_info_usage
);
1378 for (i
= 0; grab_client_args_info_help
[i
]; i
++) {
1379 char *tmp
= make_message("%s%s\n", msg
,
1380 grab_client_args_info_help
[i
]);
1385 msg
= make_message("%s %s\n",
1386 GRAB_CLIENT_CMDLINE_PARSER_PACKAGE
,
1387 GRAB_CLIENT_CMDLINE_PARSER_VERSION
);
1388 err
= client_write(fd
, msg
);
1396 static int __noreturn
com_term(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1399 clean_exit(EXIT_SUCCESS
, "terminating on user request");
1402 static int com_on(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1404 audiod_status
= AUDIOD_ON
;
1409 static int com_off(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1411 audiod_status
= AUDIOD_OFF
;
1416 static int com_sb(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1418 audiod_status
= AUDIOD_STANDBY
;
1423 static int com_cycle(int fd
, int argc
, char **argv
)
1425 switch (audiod_status
) {
1427 return com_sb(fd
, argc
, argv
);
1430 return com_on(fd
, argc
, argv
);
1432 case AUDIOD_STANDBY
:
1433 return com_off(fd
, argc
, argv
);
1440 static int check_perms(uid_t uid
)
1444 if (!conf
.user_allow_given
)
1446 for (i
= 0; i
< conf
.user_allow_given
; i
++)
1447 if (uid
== conf
.user_allow_arg
[i
])
1449 return -E_UCRED_PERM
;
1452 static int handle_connect(int accept_fd
)
1454 int i
, argc
, ret
, clifd
= -1;
1455 char *cmd
= NULL
, *p
, *buf
= para_calloc(MAXLINE
), **argv
= NULL
;
1456 struct sockaddr_un unix_addr
;
1458 ret
= para_accept(accept_fd
, &unix_addr
, sizeof(struct sockaddr_un
));
1462 ret
= recv_cred_buffer(clifd
, buf
, MAXLINE
- 1);
1465 PARA_INFO_LOG("connection from user %i, buf: %s\n", ret
, buf
);
1466 ret
= check_perms(ret
);
1469 ret
= -E_INVALID_AUDIOD_CMD
;
1470 cmd
= para_strdup(buf
);
1471 p
= strchr(cmd
, '\n');
1478 for (i
= 0; cmds
[i
].name
; i
++) {
1480 if (strcmp(cmds
[i
].name
, cmd
))
1482 if (cmds
[i
].handler
) {
1483 argc
= split_args(buf
, &argv
, "\n");
1484 PARA_INFO_LOG("argv[0]: %s, argc= %d\n", argv
[0], argc
);
1485 ret
= cmds
[i
].handler(clifd
, argc
, argv
);
1488 for (j
= 0; p
[j
]; j
++)
1491 PARA_INFO_LOG("cmd: %s, options: %s\n", cmd
, p
);
1492 ret
= cmds
[i
].line_handler(clifd
, p
);
1495 ret
= -E_INVALID_AUDIOD_CMD
; /* cmd not found */
1500 if (clifd
> 0 && ret
< 0 && ret
!= -E_CLIENT_WRITE
) {
1501 char *tmp
= make_message("%s\n", PARA_STRERROR(-ret
));
1502 client_write(clifd
, tmp
);
1509 static int audiod_get_socket(void)
1511 struct sockaddr_un unix_addr
;
1514 if (conf
.socket_given
)
1515 socket_name
= para_strdup(conf
.socket_arg
);
1517 char *hn
= para_hostname();
1518 socket_name
= make_message("/var/paraslash/audiod_socket.%s",
1522 PARA_NOTICE_LOG("local socket: %s\n", socket_name
);
1523 if (conf
.force_given
)
1524 unlink(socket_name
);
1525 fd
= create_pf_socket(socket_name
, &unix_addr
,
1526 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IWOTH
);
1528 PARA_EMERG_LOG("%s", "can not connect to socket\n");
1529 exit(EXIT_FAILURE
); /* do not unlink socket */
1531 if (listen(fd
, 5) < 0) {
1532 PARA_EMERG_LOG("%s", "can not listen on socket\n");
1533 exit(EXIT_FAILURE
); /* do not unlink socket */
1535 add_close_on_fork_list(fd
);
1539 static int open_stat_pipe(void)
1541 int ret
, fd
[3] = {-1, 1, 0};
1543 ret
= para_exec_cmdline_pid(&pid
, BINDIR
"/para_client stat", fd
);
1546 PARA_NOTICE_LOG("stat pipe opened, fd %d\n", ret
);
1547 add_close_on_fork_list(ret
);
1549 clean_exit(EXIT_FAILURE
, "failed to open status pipe");
1553 void signal_event_handler(struct task
*t
)
1555 struct signal_task
*st
= t
->private_data
;
1557 if (t
->ret
!= -E_SIGNAL_CAUGHT
)
1558 PARA_ERROR_LOG("%s (ignored)\n", PARA_STRERROR(-t
->ret
));
1560 handle_signal(st
->signum
);
1563 void signal_pre_select(struct sched
*s
, struct task
*t
)
1565 struct signal_task
*st
= t
->private_data
;
1567 para_fd_set(st
->fd
, &s
->rfds
, &s
->max_fileno
);
1570 void signal_post_select(struct sched
*s
, struct task
*t
)
1572 struct signal_task
*st
= t
->private_data
;
1574 if (!FD_ISSET(st
->fd
, &s
->rfds
))
1576 t
->ret
= -E_SIGNAL_CAUGHT
;
1577 st
->signum
= para_next_signal();
1580 void signal_setup_default(struct signal_task
*st
)
1582 st
->task
.pre_select
= signal_pre_select
;
1583 st
->task
.post_select
= signal_post_select
;
1584 st
->task
.private_data
= st
;
1585 sprintf(st
->task
.status
, "signal task");
1588 static void command_pre_select(struct sched
*s
, struct task
*t
)
1590 struct command_task
*ct
= t
->private_data
;
1592 para_fd_set(ct
->fd
, &s
->rfds
, &s
->max_fileno
);
1596 static void command_post_select(struct sched
*s
, struct task
*t
)
1599 struct command_task
*ct
= t
->private_data
;
1601 t
->ret
= 1; /* always successful */
1602 if (audiod_status
!= AUDIOD_OFF
)
1603 audiod_status_dump();
1604 if (!FD_ISSET(ct
->fd
, &s
->rfds
))
1606 ret
= handle_connect(ct
->fd
);
1608 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret
));
1611 static void init_command_task(struct command_task
*ct
)
1613 ct
->task
.pre_select
= command_pre_select
;
1614 ct
->task
.post_select
= command_post_select
;
1615 ct
->task
.event_handler
= NULL
;
1616 ct
->task
.private_data
= ct
;
1617 ct
->fd
= audiod_get_socket(); /* doesn't return on errors */
1618 sprintf(ct
->task
.status
, "command task");
1621 static void status_event_handler(__a_unused
struct task
*t
)
1623 struct timeval delay
= {1, 0};
1625 struct status_task
*st
= t
->private_data
;
1627 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-t
->ret
));
1629 /* avoid busy loop if server is down */
1630 tv_add(now
, &delay
, &st
->restart_barrier
);
1631 FOR_EACH_AUDIO_FORMAT(i
)
1632 afi
[i
].restart_barrier
= st
->restart_barrier
;
1635 static void status_pre_select(struct sched
*s
, struct task
*t
)
1637 struct status_task
*st
= t
->private_data
;
1639 if (st
->fd
>= 0 && audiod_status
== AUDIOD_OFF
)
1641 if (st
->fd
< 0 && audiod_status
!= AUDIOD_OFF
1642 && tv_diff(now
, &st
->restart_barrier
, NULL
) > 0) {
1643 st
->fd
= open_stat_pipe();
1647 if (st
->fd
>= 0 && audiod_status
!= AUDIOD_OFF
)
1648 para_fd_set(st
->fd
, &s
->rfds
, &s
->max_fileno
);
1651 static void status_post_select(struct sched
*s
, struct task
*t
)
1653 struct status_task
*st
= t
->private_data
;
1656 if (st
->fd
< 0 || !FD_ISSET(st
->fd
, &s
->rfds
))
1658 t
->ret
= read(st
->fd
, st
->buf
+ st
->loaded
, STRINGSIZE
- 1 - st
->loaded
);
1661 t
->ret
= -E_STATUS_EOF
;
1664 st
->buf
[t
->ret
+ st
->loaded
] = '\0';
1665 st
->loaded
= for_each_line(st
->buf
, t
->ret
+ st
->loaded
,
1669 static void init_status_task(struct status_task
*st
)
1671 memset(st
, 0, sizeof(struct status_task
));
1672 st
->task
.pre_select
= status_pre_select
;
1673 st
->task
.post_select
= status_post_select
;
1674 st
->task
.event_handler
= status_event_handler
;
1675 st
->task
.private_data
= st
;
1677 sprintf(st
->task
.status
, "status task");
1680 static void set_initial_status(void)
1682 audiod_status
= AUDIOD_ON
;
1683 if (!conf
.mode_given
)
1685 if (!strcmp(conf
.mode_arg
, "sb")) {
1686 audiod_status
= AUDIOD_STANDBY
;
1689 if (!strcmp(conf
.mode_arg
, "off")) {
1690 audiod_status
= AUDIOD_OFF
;
1693 if (strcmp(conf
.mode_arg
, "on"))
1694 PARA_WARNING_LOG("%s", "invalid mode\n");
1697 int main(int argc
, char *argv
[])
1702 struct command_task command_task_struct
, *cmd_task
= &command_task_struct
;
1703 struct task audiod_task_struct
, *audiod_task
= &audiod_task_struct
;
1708 hostname
= para_hostname();
1709 cmdline_parser(argc
, argv
, &conf
);
1710 para_drop_privileges(conf
.user_arg
, conf
.group_arg
);
1711 cf
= configfile_exists();
1713 if (cmdline_parser_configfile(cf
, &conf
, 0, 0, 0)) {
1714 PARA_EMERG_LOG("%s", "parse error in config file\n");
1718 if (conf
.logfile_given
)
1719 logfile
= open_log(conf
.logfile_arg
);
1720 log_welcome("para_audiod", conf
.loglevel_arg
);
1721 i
= init_stream_io();
1723 PARA_EMERG_LOG("init stream io error: %s\n", PARA_STRERROR(-i
));
1726 server_uptime(UPTIME_SET
);
1727 set_initial_status();
1731 setup_signal_handling();
1732 signal_setup_default(sig_task
);
1733 sig_task
->task
.event_handler
= signal_event_handler
;
1735 init_status_task(stat_task
);
1736 init_command_task(cmd_task
);
1737 init_audiod_task(audiod_task
);
1739 if (conf
.daemon_given
)
1742 register_task(&sig_task
->task
);
1743 register_task(&cmd_task
->task
);
1744 register_task(&stat_task
->task
);
1745 register_task(audiod_task
);
1746 s
.default_timeout
.tv_sec
= 3;
1747 s
.default_timeout
.tv_usec
= 99 * 1000;
1750 PARA_EMERG_LOG("%s\n", PARA_STRERROR(-ret
));
1751 return EXIT_FAILURE
;