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 */
21 #include <sys/time.h> /* gettimeofday */
24 #include "audiod.cmdline.h"
26 #include "close_on_fork.h"
29 #include "grab_client.cmdline.h"
30 #include "grab_client.h"
39 /** define the array of error lists needed by para_audiod */
41 /** define the array containing all supported audio formats */
42 DEFINE_AUDIO_FORMAT_ARRAY
;
45 * the possible modes of operation
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
51 enum {AUDIOD_OFF
, AUDIOD_ON
, AUDIOD_STANDBY
};
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 */
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 */
65 /** output of the last filter is written to stdin of this command */
67 /** do not start receiver/filters/writer before this time */
68 struct timeval restart_barrier
;
72 * describes one instance of a receiver-filter-writer chain
74 * \sa receier_node, receiver, filter, filter_node, filter_chain_info
77 /** number of the audio format in this slot */
79 /** the file descriptor of the writer */
81 /** the process id of the writer */
83 /** time of the last successful read from the receiver */
85 /** time the last write to the write fd happend */
87 /** writer start time */
88 struct timeval wstime
;
89 /** did we include \a write_fd in the fdset */
91 /** set to one if we have sent the TERM signal to \a wpid */
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
;
99 static struct slot_info slot
[MAX_STREAM_SLOTS
];
101 /** defines one command of para_audiod */
102 struct audiod_command
{
103 /** the name of the command */
105 /** pointer to the function that handles the command */
106 int (*handler
)(int, int, char**);
107 /** one-line description of the command */
108 const char *description
;
109 /** summary of the command line options */
110 const char *synopsis
;
111 /** the long help text */
115 extern const char *status_item_list
[NUM_STAT_ITEMS
];
117 static int com_grab(int, int, char **);
118 static int com_cycle(int, int, char **);
119 static int com_help(int, int, char **);
120 static int com_off(int, int, char **);
121 static int com_on(int, int, char **);
122 static int com_sb(int, int, char **);
123 static int com_stat(int, int, char **);
124 static int com_term(int, int, char **);
125 static int stat_pipe
= -1, signal_pipe
;
127 static struct gengetopt_args_info conf
;
128 static struct timeval server_stream_start
, sa_time_diff
;
129 static int playing
, current_decoder
= -1,
130 audiod_status
= AUDIOD_ON
, offset_seconds
, length_seconds
,
131 sa_time_diff_sign
= 1, audiod_socket
= -1;
132 static char *af_status
, /* the audio format announced in server status */
133 *socket_name
, *hostname
;
134 static char *stat_item_values
[NUM_STAT_ITEMS
];
135 static FILE *logfile
;
136 static const struct timeval restart_delay
= {0, 300 * 1000};
138 static struct audio_format_info afi
[NUM_AUDIO_FORMATS
];
140 static struct audiod_command cmds
[] = {
143 .handler
= com_cycle
,
144 .description
= "switch to next mode",
148 "on -> standby -> off -> on\n"
154 .description
= "grab the audio stream",
155 .synopsis
= "-- grab [grab_options]",
158 "grab ('splice') the audio stream at any position in the filter \n"
159 "chain and send that data back to the client. Try\n"
160 "\t para_audioc -- grab -h\n"
161 "for the list of available options.\n"
167 .description
= "display command list or help for given command",
168 .synopsis
= "help [command]",
171 "When I was younger, so much younger than today, I never needed\n"
172 "anybody's help in any way. But now these days are gone, I'm not so\n"
173 "self assured. Now I find I've changed my mind and opened up the doors.\n"
175 " -- Beatles: Help\n"
181 .description
= "deactivate para_audiod",
185 "Close connection to para_server and stop all decoders.\n"
191 .description
= "activate para_audiod",
195 "Establish connection to para_server, retrieve para_server's current\n"
196 "status. If playing, start corresponding decoder. Otherwise stop\n"
203 .description
= "enter standby mode",
207 "Stop all decoders but leave connection to para_server open.\n"
213 .description
= "print status information",
214 .synopsis
= "stat [item1 ...]",
217 "Dump given status items (all if none given) to stdout.\n"
223 .description
= "terminate audiod",
227 "Stop all decoders, shut down connection to para_server and exit.\n"
235 /** iterate over all slots */
236 #define FOR_EACH_SLOT(slot) for (slot = 0; slot < MAX_STREAM_SLOTS; slot++)
237 /** iterate over all supported audio formats */
238 #define FOR_EACH_AUDIO_FORMAT(af) for (af = 0; af < NUM_AUDIO_FORMATS; af++)
239 /** iterate over the array of all audiod commands */
240 #define FOR_EACH_COMMAND(c) for (c = 0; cmds[c].name; c++)
243 * get the audio format number
244 * \param name the name of the audio format
246 * \return The audio format number on success, -E_UNSUPPORTED_AUDIO_FORMAT if
247 * \a name is not a supported audio format.
249 int get_audio_format_num(char *name
)
252 FOR_EACH_AUDIO_FORMAT(i
)
253 if (!strcmp(name
, audio_formats
[i
]))
255 return -E_UNSUPPORTED_AUDIO_FORMAT
;
259 * log function. first argument is loglevel.
261 void para_log(int ll
, const char* fmt
,...)
267 char str
[MAXLINE
] = "";
269 if (ll
< conf
.loglevel_arg
)
271 outfd
= logfile
? logfile
: stderr
;
274 strftime(str
, MAXLINE
, "%b %d %H:%M:%S", tm
);
275 fprintf(outfd
, "%s %s ", str
, hostname
);
276 if (conf
.loglevel_arg
<= INFO
)
277 fprintf(outfd
, "%i ", ll
);
279 vfprintf(outfd
, fmt
, argp
);
283 static int client_write(int fd
, const char *buf
)
285 size_t len
= strlen(buf
);
286 return write(fd
, buf
, len
) != len
? -E_CLIENT_WRITE
: 1;
289 static char *get_time_string(struct timeval
*newest_stime
)
291 struct timeval now
, diff
, adj_stream_start
, tmp
;
292 int total
= 0, use_server_time
= 1;
297 return make_message("%s:\n", status_item_list
[SI_PLAY_TIME
]);
299 if (audiod_status
== AUDIOD_OFF
)
301 if (sa_time_diff_sign
> 0)
302 tv_diff(&server_stream_start
, &sa_time_diff
,
305 tv_add(&server_stream_start
, &sa_time_diff
,
307 tmp
= adj_stream_start
;
308 if (newest_stime
&& audiod_status
== AUDIOD_ON
) {
309 tv_diff(newest_stime
, &adj_stream_start
, &diff
);
310 if (tv2ms(&diff
) < 5000) {
315 gettimeofday(&now
, NULL
);
316 tv_diff(&now
, &tmp
, &diff
);
317 total
= diff
.tv_sec
+ offset_seconds
;
318 if (total
> length_seconds
)
319 total
= length_seconds
;
324 "%s:%s%d:%02d [%d:%02d] (%d%%/%d:%02d)\n",
325 status_item_list
[SI_PLAY_TIME
],
326 use_server_time
? "~" : "",
329 (length_seconds
- total
) / 60,
330 (length_seconds
- total
) % 60,
331 length_seconds
? (total
* 100 + length_seconds
/ 2) /
338 __malloc
static char *audiod_status_string(void)
340 const char *status
= (audiod_status
== AUDIOD_ON
)?
341 "on" : (audiod_status
== AUDIOD_OFF
)? "off": "sb";
342 return make_message("%s:%s\n", status_item_list
[SI_AUDIOD_STATUS
], status
);
345 static struct timeval
*wstime(void)
348 struct timeval
*max
= NULL
;
350 struct slot_info
*s
= &slot
[i
];
353 if (max
&& tv_diff(&s
->wstime
, max
, NULL
) <= 0)
359 __malloc
static char *decoder_flags(void)
362 char decoder_flags
[MAX_STREAM_SLOTS
+ 1];
365 struct slot_info
*s
= &slot
[i
];
367 if (s
->receiver_node
)
372 flag
+= s
->format
* 4;
373 decoder_flags
[i
] = flag
;
375 decoder_flags
[MAX_STREAM_SLOTS
] = '\0';
376 return make_message("%s:%s\n", status_item_list
[SI_DECODER_FLAGS
],
380 static char *configfile_exists(void)
382 static char *config_file
;
385 char *home
= para_homedir();
386 config_file
= make_message("%s/.paraslash/audiod.conf", home
);
389 return file_exists(config_file
)? config_file
: NULL
;
392 static void setup_signal_handling(void)
394 signal_pipe
= para_signal_init();
395 PARA_INFO_LOG("signal pipe: fd %d\n", signal_pipe
);
396 para_install_sighandler(SIGINT
);
397 para_install_sighandler(SIGTERM
);
398 para_install_sighandler(SIGCHLD
);
399 para_install_sighandler(SIGHUP
);
400 signal(SIGPIPE
, SIG_IGN
);
403 static void audiod_status_dump(void)
405 static char *p_ts
, *p_us
, *p_as
, *p_df
;
406 struct timeval
*t
= wstime();
407 char *us
, *tmp
= get_time_string(t
);
409 if (tmp
&& (!p_ts
|| strcmp(tmp
, p_ts
)))
410 stat_client_write(tmp
, SI_PLAY_TIME
);
415 tmp
= make_message("%s:%s\n", status_item_list
[SI_AUDIOD_UPTIME
], us
);
417 if (!p_us
|| strcmp(p_us
, tmp
))
418 stat_client_write(tmp
, SI_AUDIOD_UPTIME
);
422 tmp
= audiod_status_string();
423 if (!p_as
|| strcmp(p_as
, tmp
))
424 stat_client_write(tmp
, SI_AUDIOD_STATUS
);
428 tmp
= decoder_flags();
429 if (!p_df
|| strcmp(p_df
, tmp
))
430 stat_client_write(tmp
, SI_DECODER_FLAGS
);
435 static void clear_slot(int slot_num
)
437 struct slot_info
*s
= &slot
[slot_num
];
439 PARA_INFO_LOG("clearing slot %d\n", slot_num
);
440 memset(s
, 0, sizeof(struct slot_info
));
444 static void kill_stream_writer(int slot_num
)
446 struct slot_info
*s
= &slot
[slot_num
];
448 if (s
->format
< 0 || s
->wkilled
|| s
->wpid
<= 0)
450 PARA_DEBUG_LOG("kill -TERM %d (%s stream writer in slot %d)\n",
451 s
->wpid
, audio_formats
[s
->format
], slot_num
);
452 kill(s
->wpid
, SIGTERM
);
457 static void set_restart_barrier(int format
, struct timeval
*now
)
464 gettimeofday(&tmp
, NULL
);
465 tv_add(&tmp
, &restart_delay
, &afi
[format
].restart_barrier
);
468 static void close_receiver(int slot_num
)
470 struct slot_info
*s
= &slot
[slot_num
];
471 struct audio_format_info
*a
;
473 if (s
->format
< 0 || !s
->receiver_node
)
476 PARA_NOTICE_LOG("closing %s recevier in slot %d\n",
477 audio_formats
[s
->format
] , slot_num
);
478 a
->receiver
->close(s
->receiver_node
);
479 free(s
->receiver_node
);
480 s
->receiver_node
= NULL
;
481 set_restart_barrier(s
->format
, NULL
);
484 static void kill_all_decoders(void)
489 if (slot
[i
].format
>= 0) {
490 PARA_INFO_LOG("stopping decoder in slot %d\n", i
);
491 kill_stream_writer(i
);
495 static void check_sigchld(void)
500 gettimeofday(&now
, NULL
);
503 pid
= para_reap_child();
507 struct slot_info
*s
= &slot
[i
];
511 if (pid
== s
->wpid
) {
513 lifetime
= now
.tv_sec
- s
->wstime
.tv_sec
;
514 PARA_INFO_LOG("%s stream writer in slot %d died "
516 audio_formats
[s
->format
], i
, lifetime
);
517 set_restart_barrier(s
->format
, &now
);
518 goto reap_next_child
;
521 PARA_CRIT_LOG("para_client died (pid %d)\n", pid
);
522 goto reap_next_child
;
525 static int get_empty_slot(void)
536 if (s
->write_fd
> 0 || s
->wpid
> 0)
538 if (s
->receiver_node
)
545 return -E_NO_MORE_SLOTS
;
548 static int decoder_running(int format
)
555 if (s
->format
== format
&& s
->receiver_node
)
557 if (s
->format
== format
&& s
->wpid
> 0)
563 static void close_stat_pipe(void)
569 PARA_NOTICE_LOG("%s", "closing status pipe\n");
571 del_close_on_fork_list(stat_pipe
);
574 for (i
= 0; i
< NUM_STAT_ITEMS
; i
++) {
575 free(stat_item_values
[i
]);
576 stat_item_values
[i
] = NULL
;
581 audiod_status_dump();
583 stat_item_values
[SI_STATUS_BAR
] = make_message("%s:no connection to para_server\n",
584 status_item_list
[SI_STATUS_BAR
]);
585 stat_client_write(stat_item_values
[SI_STATUS_BAR
], SI_STATUS_BAR
);
588 static void __noreturn
clean_exit(int status
, const char *msg
)
590 PARA_EMERG_LOG("%s\n", msg
);
599 __malloc
static char *glob_cmd(char *cmd
)
601 char *ret
, *replacement
;
602 struct timeval tmp
, delay
, rss
; /* real stream start */
604 delay
.tv_sec
= conf
.stream_delay_arg
/ 1000;
605 delay
.tv_usec
= (conf
.stream_delay_arg
% 1000) * 1000;
606 // PARA_INFO_LOG("delay: %lu:%lu\n", delay.tv_sec, delay.tv_usec);
607 if (sa_time_diff_sign
< 0)
608 tv_add(&server_stream_start
, &sa_time_diff
, &rss
);
610 tv_diff(&server_stream_start
, &sa_time_diff
, &rss
);
611 tv_add(&rss
, &delay
, &tmp
);
612 replacement
= make_message("%lu:%lu", tmp
.tv_sec
, tmp
.tv_usec
);
613 ret
= s_a_r(cmd
, "STREAM_START", replacement
);
617 PARA_INFO_LOG("cmd: %s, repl: %s\n", cmd
, ret
);
620 gettimeofday(&now
, NULL
);
621 PARA_INFO_LOG("now: %lu:%lu\n", now
.tv_sec
, now
.tv_usec
);
627 /** get the number of filters for the given audio format */
628 int num_filters(int audio_format_num
)
630 return afi
[audio_format_num
].num_filters
;
633 static void open_filters(int slot_num
)
635 struct slot_info
*s
= &slot
[slot_num
];
636 struct audio_format_info
*a
= &afi
[s
->format
];
637 int nf
= a
->num_filters
;
640 s
->fci
= para_calloc(sizeof(struct filter_chain_info
));
641 INIT_LIST_HEAD(&s
->fci
->filters
);
644 s
->fci
->inbuf
= s
->receiver_node
->buf
;
645 s
->fci
->in_loaded
= &s
->receiver_node
->loaded
;
646 s
->fci
->outbuf
= s
->receiver_node
->buf
;
647 s
->fci
->out_loaded
= &s
->receiver_node
->loaded
;
648 s
->fci
->eof
= &s
->receiver_node
->eof
;
649 for (i
= 0; i
< nf
; i
++) {
650 struct filter_node
*fn
= para_calloc(sizeof(struct filter_node
));
651 fn
->conf
= a
->filter_conf
[i
];
653 fn
->filter
= a
->filters
[i
];
654 INIT_LIST_HEAD(&fn
->callbacks
);
655 list_add_tail(&fn
->node
, &s
->fci
->filters
);
656 fn
->filter
->open(fn
);
657 PARA_NOTICE_LOG("%s filter %d/%d (%s) started in slot %d\n",
658 audio_formats
[s
->format
], i
+ 1, nf
,
659 fn
->filter
->name
, slot_num
);
660 s
->fci
->outbuf
= fn
->buf
;
661 s
->fci
->out_loaded
= &fn
->loaded
;
663 PARA_DEBUG_LOG("output buffer for filter chain %p: %p\n", s
->fci
,
667 static struct filter_node
*find_filter_node(int slot_num
, int format
, int filternum
)
669 struct filter_node
*fn
;
673 struct slot_info
*s
= &slot
[i
];
674 if (s
->format
< 0 || !s
->fci
)
676 if (slot_num
>= 0 && slot_num
!= i
)
678 if (format
>= 0 && s
->format
!= format
)
680 if (num_filters(i
) < filternum
)
684 list_for_each_entry(fn
, &s
->fci
->filters
, node
)
685 if (filternum
<= 0 || j
++ == filternum
)
692 static void start_stream_writer(int slot_num
)
694 int ret
, fds
[3] = {1, -1, -1};
695 struct slot_info
*s
= &slot
[slot_num
];
696 struct audio_format_info
*a
= &afi
[s
->format
];
700 glob
= glob_cmd(a
->write_cmd
);
702 glob
= para_strdup("para_play");
703 PARA_INFO_LOG("starting stream writer: %s\n", glob
);
704 open_filters(slot_num
);
705 ret
= para_exec_cmdline_pid(&s
->wpid
, glob
, fds
);
708 PARA_ERROR_LOG("exec failed (%d)\n", ret
);
711 s
->write_fd
= fds
[0];
712 add_close_on_fork_list(s
->write_fd
);
713 /* we write to this fd in do_select, so we need non-blocking */
714 mark_fd_nonblock(s
->write_fd
);
715 gettimeofday(&s
->wstime
, NULL
);
716 current_decoder
= slot_num
;
717 activate_inactive_grab_clients(slot_num
, s
->format
, &s
->fci
->filters
);
720 static void open_receiver(int format
)
722 struct audio_format_info
*a
= &afi
[format
];
726 slot_num
= get_empty_slot();
728 clean_exit(EXIT_FAILURE
, PARA_STRERROR(-slot_num
));
731 gettimeofday(&s
->rtime
, NULL
);
733 s
->receiver_node
= para_calloc(sizeof(struct receiver_node
));
734 s
->receiver_node
->conf
= a
->receiver_conf
;
735 ret
= a
->receiver
->open(s
->receiver_node
);
737 PARA_ERROR_LOG("failed to open receiver (%s)\n",
738 PARA_STRERROR(-ret
));
739 free(s
->receiver_node
);
740 s
->receiver_node
= NULL
;
743 PARA_NOTICE_LOG("started %s: %s receiver in slot %d\n",
744 audio_formats
[s
->format
], a
->receiver
->name
, slot_num
);
747 static int is_frozen(int format
)
750 struct audio_format_info
*a
= &afi
[format
];
752 gettimeofday(&now
, NULL
);
753 return (tv_diff(&now
, &a
->restart_barrier
, NULL
) > 0)? 0 : 1;
756 static void start_current_receiver(void)
762 i
= get_audio_format_num(af_status
);
765 if ((decoder_running(i
) & 1) || is_frozen(i
))
770 static void compute_time_diff(const struct timeval
*status_time
)
772 struct timeval now
, tmp
, diff
;
775 const struct timeval max_deviation
= {0, 500 * 1000};
776 const int time_smooth
= 5;
778 gettimeofday(&now
, NULL
);
779 sign
= tv_diff(status_time
, &now
, &diff
);
780 // PARA_NOTICE_LOG("%s: sign = %i, sa_time_diff_sign = %i\n", __func__,
781 // sign, sa_time_diff_sign);
783 sa_time_diff_sign
= sign
;
789 int s
= tv_diff(&diff
, &sa_time_diff
, &tmp
);
790 if (tv_diff(&max_deviation
, &tmp
, NULL
) < 0)
791 PARA_WARNING_LOG("time diff jump: %lims\n",
795 sa_time_diff_sign
= tv_convex_combination(
796 sa_time_diff_sign
* time_smooth
, &sa_time_diff
,
797 count
> 10? sign
: sign
* time_smooth
, &diff
,
800 PARA_INFO_LOG("time diff (cur/avg): %s%lums/%s%lums\n",
803 sa_time_diff_sign
? "+" : "-",
808 static void check_stat_line(char *line
)
815 PARA_INFO_LOG("line: %s\n", line
);
818 itemnum
= stat_line_valid(line
);
820 PARA_WARNING_LOG("invalid status line: %s\n", line
);
823 tmp
= make_message("%s\n", line
);
824 stat_client_write(tmp
, itemnum
);
826 free(stat_item_values
[itemnum
]);
827 stat_item_values
[itemnum
] = para_strdup(line
);
828 ilen
= strlen(status_item_list
[itemnum
]);
831 playing
= strstr(line
, "playing")? 1 : 0;
835 af_status
= para_strdup(line
+ ilen
+ 1);
838 offset_seconds
= atoi(line
+ ilen
+ 1);
841 length_seconds
= atoi(line
+ ilen
+ 1);
843 case SI_STREAM_START
:
844 if (sscanf(line
+ ilen
+ 1, "%lu.%lu",
845 &tv
.tv_sec
, &tv
.tv_usec
) == 2)
846 server_stream_start
= tv
;
848 case SI_CURRENT_TIME
:
849 if (sscanf(line
+ ilen
+ 1, "%lu.%lu", &tv
.tv_sec
,
851 compute_time_diff(&tv
);
856 static void handle_signal(int sig
)
860 return check_sigchld();
864 PARA_EMERG_LOG("terminating on signal %d\n", sig
);
865 clean_exit(EXIT_FAILURE
, "caught deadly signal");
870 static void check_timeouts(void)
873 int slot_num
, timeout
= conf
.stream_timeout_arg
;
875 gettimeofday(&now
, NULL
);
876 FOR_EACH_SLOT(slot_num
) {
877 struct slot_info
*s
= &slot
[slot_num
];
880 /* check read time */
881 if (s
->receiver_node
&&
882 now
.tv_sec
> s
->rtime
.tv_sec
+ timeout
) {
883 PARA_INFO_LOG("%s input buffer (slot %d) not ready\n",
884 audio_formats
[s
->format
], slot_num
);
888 close_receiver(slot_num
);
890 /* check write time */
891 if (s
->wpid
> 0 && !s
->wkilled
&&
892 now
.tv_sec
> s
->wtime
.tv_sec
+ timeout
) {
893 PARA_INFO_LOG("%s output buffer (slot %d) not ready\n",
894 audio_formats
[s
->format
], slot_num
);
901 static size_t get_loaded_bytes(int slot_num
)
904 struct slot_info
*s
= &slot
[slot_num
];
905 struct receiver_node
*rn
= s
->receiver_node
;
910 if (afi
[s
->format
].num_filters
) {
912 loaded
= *s
->fci
->out_loaded
;
922 static void close_decoder_if_idle(int slot_num
)
924 struct slot_info
*s
= &slot
[slot_num
];
925 struct receiver_node
*rn
= s
->receiver_node
;
931 if (!rn
->eof
&& !s
->fci
->error
&& s
->wpid
> 0)
933 if (!s
->fci
->error
&& s
->wpid
> 0) { /* eof */
934 if (filter_io(s
->fci
) > 0)
936 if (get_loaded_bytes(slot_num
))
939 if (s
->write_fd
> 0) {
940 PARA_INFO_LOG("slot %d: closing write fd %d\n", slot_num
,
943 del_close_on_fork_list(s
->write_fd
);
947 return; /* wait until writer dies before closing filters */
948 PARA_INFO_LOG("closing all filters in slot %d (filter_chain %p)\n",
950 close_filters(s
->fci
);
952 close_receiver(slot_num
);
953 clear_slot(slot_num
);
956 static void set_stream_fds(fd_set
*wfds
, int *max_fileno
)
962 struct slot_info
*s
= &slot
[i
];
963 struct audio_format_info
*a
;
964 struct receiver_node
*rn
;
966 close_decoder_if_idle(i
);
971 rn
= s
->receiver_node
;
972 if (rn
&& rn
->loaded
&& !s
->wpid
) {
973 PARA_INFO_LOG("no writer in slot %d\n", i
);
974 start_stream_writer(i
);
976 if (s
->write_fd
<= 0)
978 if (!get_loaded_bytes(i
))
980 para_fd_set(s
->write_fd
, wfds
, max_fileno
);
985 static int write_audio_data(int slot_num
)
987 struct slot_info
*s
= &slot
[slot_num
];
988 struct audio_format_info
*a
= &afi
[s
->format
];
989 struct receiver_node
*rn
= s
->receiver_node
;
994 if (a
->num_filters
) {
995 buf
= &s
->fci
->outbuf
;
996 len
= s
->fci
->out_loaded
;
1001 PARA_DEBUG_LOG("writing %p (%zd bytes)\n", *buf
, *len
);
1002 rv
= write(s
->write_fd
, *buf
, *len
);
1003 PARA_DEBUG_LOG("wrote %d/%zd\n", rv
, *len
);
1005 PARA_WARNING_LOG("write error in slot %d (fd %d): %s\n",
1006 slot_num
, s
->write_fd
, strerror(errno
));
1008 s
->fci
->error
= E_WRITE_AUDIO_DATA
;
1009 } else if (rv
!= *len
) {
1010 PARA_DEBUG_LOG("partial %s write (%i/%zd) for slot %d\n",
1011 audio_formats
[s
->format
], rv
, *len
, slot_num
);
1013 memmove(*buf
, *buf
+ rv
, *len
);
1017 gettimeofday(&s
->wtime
, NULL
);
1021 static void slot_io(fd_set
*wfds
)
1026 struct slot_info
*s
= &slot
[i
];
1027 struct receiver_node
*rn
= s
->receiver_node
;
1029 if (rn
&& rn
->loaded
)
1030 gettimeofday(&s
->rtime
, NULL
);
1031 if (s
->format
>= 0 && s
->write_fd
> 0 && s
->fci
) {
1032 ret
= filter_io(s
->fci
);
1034 s
->fci
->error
= -ret
;
1035 // PARA_DEBUG_LOG("slot %d, filter io %d bytes, check write: %d, loaded: %d/%d, eof: %d\n",
1036 // i, ret, s->wcheck, rn->loaded, *s->fci->out_loaded, rn->eof);
1038 if (s
->write_fd
<= 0 || !s
->wcheck
|| !FD_ISSET(s
->write_fd
, wfds
))
1040 write_audio_data(i
);
1044 static int parse_stream_command(const char *txt
, char **cmd
)
1046 char *p
= strchr(txt
, ':');
1050 return -E_MISSING_COLON
;
1052 FOR_EACH_AUDIO_FORMAT(i
) {
1053 if (strncmp(txt
, audio_formats
[i
], strlen(audio_formats
[i
])))
1058 return -E_UNSUPPORTED_AUDIO_FORMAT
;
1061 static int add_filter(int format
, char *cmdline
)
1063 struct audio_format_info
*a
= &afi
[format
];
1064 int filter_num
, nf
= a
->num_filters
;
1066 filter_num
= check_filter_arg(cmdline
, &a
->filter_conf
[nf
]);
1069 a
->filters
[nf
] = &filters
[filter_num
];
1071 PARA_INFO_LOG("%s filter %d: %s\n", audio_formats
[format
], nf
+ 1,
1072 a
->filters
[nf
]->name
);
1076 static int setup_default_filters(void)
1080 FOR_EACH_AUDIO_FORMAT(i
) {
1081 struct audio_format_info
*a
= &afi
[i
];
1086 /* add "dec" to audio format name */
1087 tmp
= make_message("%sdec", audio_formats
[i
]);
1088 for (j
= 0; filters
[j
].name
; j
++)
1089 if (!strcmp(tmp
, filters
[j
].name
))
1092 ret
= -E_UNSUPPORTED_FILTER
;
1093 if (!filters
[j
].name
)
1095 tmp
= para_strdup(filters
[j
].name
);
1096 ret
= add_filter(i
, tmp
);
1100 PARA_INFO_LOG("%s -> default filter: %s\n", audio_formats
[i
], filters
[j
].name
);
1101 ret
= add_filter(i
, para_strdup("wav"));
1104 PARA_INFO_LOG("%s -> default filter: wav\n", audio_formats
[i
]);
1110 static int init_stream_io(void)
1112 int i
, ret
, receiver_num
, nf
;
1115 for (i
= 0; i
< conf
.stream_write_cmd_given
; i
++) {
1116 ret
= parse_stream_command(conf
.stream_write_cmd_arg
[i
], &cmd
);
1119 afi
[ret
].write_cmd
= para_strdup(cmd
);
1120 PARA_INFO_LOG("%s write command: %s\n", audio_formats
[ret
], afi
[ret
].write_cmd
);
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
]);
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
;
1134 ret
= get_audio_format_num(arg
);
1137 afi
[ret
].receiver_conf
= check_receiver_arg(recv
, &receiver_num
);
1138 if (!afi
[ret
].receiver_conf
) {
1139 ret
= -E_RECV_SYNTAX
;
1142 afi
[ret
].receiver
= &receivers
[receiver_num
];
1144 /* use the first available receiver with no arguments
1145 * for those audio formats for which no receiver
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
)
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
];
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
*));
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
;
1175 *filter_name
= '\0';
1177 ret
= get_audio_format_num(arg
);
1180 ret
= add_filter(ret
, filter_name
);
1189 static int dump_commands(int fd
)
1191 char *buf
= para_strdup(""), *tmp
= NULL
;
1195 FOR_EACH_COMMAND(i
) {
1196 tmp
= make_message("%s%s\t%s\n", buf
, cmds
[i
].name
,
1197 cmds
[i
].description
);
1201 ret
= client_write(fd
, buf
);
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.
1212 static int com_help(int fd
, int argc
, char **argv
)
1216 const char *dflt
= "No such command. Available commands:\n";
1219 ret
= dump_commands(fd
);
1222 FOR_EACH_COMMAND(i
) {
1223 if (strcmp(cmds
[i
].name
, argv
[1]))
1226 "NAME\n\t%s -- %s\n"
1227 "SYNOPSIS\n\tpara_audioc %s\n"
1228 "DESCRIPTION\n%s\n",
1230 cmds
[i
].description
,
1234 ret
= client_write(fd
, buf
);
1238 ret
= client_write(fd
, dflt
);
1240 ret
= dump_commands(fd
);
1247 static int com_stat(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1251 long unsigned mask
= ~0LU;
1255 for (i
= 1; i
< argc
; i
++) {
1256 ret
= stat_item_valid(argv
[i
]);
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
);
1267 ret
= client_write(fd
, ts
);
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
);
1278 ret
= client_write(fd
, tmp
);
1283 if (mask
& (1 << SI_AUDIOD_STATUS
)) {
1284 char *s
= audiod_status_string();
1285 ret
= client_write(fd
, s
);
1290 if (mask
& (1 << SI_DECODER_FLAGS
)) {
1291 char *df
=decoder_flags();
1292 ret
= client_write(fd
, df
);
1298 for (i
= 0; i
< NUM_STAT_ITEMS
; i
++) {
1300 if (!((1 << i
) & mask
))
1302 v
= stat_item_values
[i
];
1303 tmp
= make_message("%s%s%s", buf
? buf
: "",
1304 v
? v
: "", v
? "\n" : "");
1308 ret
= client_write(fd
, buf
);
1311 ret
= stat_client_add(fd
, mask
);
1317 static char *list_filters(void)
1320 char *tmp
, *msg
= make_message("format\tnum\tcmd\n");
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
);
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
);
1338 static int com_grab(int fd
, int argc
, char **argv
)
1340 struct grab_client
*gc
;
1341 struct filter_node
*fn
;
1345 PARA_INFO_LOG("argc: %d, argv[0]: %s, optind: %d\n", argc
, argv
[0], optind
);
1346 gc
= grab_client_new(fd
, argc
, argv
, &err
);
1347 PARA_INFO_LOG("argc: %d, argv[0]: %s, optind: %d\n", argc
, argv
[0], optind
);
1350 fn
= find_filter_node(gc
->conf
->slot_arg
, gc
->audio_format_num
, gc
->conf
->filter_num_arg
);
1352 activate_grab_client(gc
, fn
);
1355 if (err
!= -E_GC_HELP_GIVEN
&& err
!= -E_GC_VERSION_GIVEN
)
1357 if (err
== -E_GC_HELP_GIVEN
) {
1358 msg
= make_message("%s\n\n", grab_client_args_info_usage
);
1359 for (i
= 0; grab_client_args_info_help
[i
]; i
++) {
1360 char *tmp
= make_message("%s%s\n", msg
,
1361 grab_client_args_info_help
[i
]);
1366 msg
= make_message("%s %s\n",
1367 GRAB_CLIENT_CMDLINE_PARSER_PACKAGE
,
1368 GRAB_CLIENT_CMDLINE_PARSER_VERSION
);
1369 err
= client_write(fd
, msg
);
1377 static int __noreturn
com_term(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1380 clean_exit(EXIT_SUCCESS
, "terminating on user request");
1383 static int com_on(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1385 audiod_status
= AUDIOD_ON
;
1390 static int com_off(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1392 audiod_status
= AUDIOD_OFF
;
1397 static int com_sb(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
1399 audiod_status
= AUDIOD_STANDBY
;
1404 static int com_cycle(int fd
, int argc
, char **argv
)
1406 switch (audiod_status
) {
1408 return com_sb(fd
, argc
, argv
);
1411 return com_on(fd
, argc
, argv
);
1413 case AUDIOD_STANDBY
:
1414 return com_off(fd
, argc
, argv
);
1421 static int check_perms(uid_t uid
)
1425 if (!conf
.user_allow_given
)
1427 for (i
= 0; i
< conf
.user_allow_given
; i
++)
1428 if (uid
== conf
.user_allow_arg
[i
])
1430 return -E_UCRED_PERM
;
1433 static int handle_connect(void)
1435 int i
, argc
, ret
, clifd
= -1;
1436 char *buf
= para_malloc(MAXLINE
), **argv
= NULL
;
1437 struct sockaddr_un unix_addr
;
1439 ret
= para_accept(audiod_socket
, &unix_addr
, sizeof(struct sockaddr_un
));
1443 ret
= recv_cred_buffer(clifd
, buf
, MAXLINE
- 1);
1446 PARA_INFO_LOG("connection from user %i\n", ret
);
1447 ret
= check_perms(ret
);
1450 argc
= split_args(buf
, &argv
, "\n");
1451 PARA_INFO_LOG("argv[0]: %s, argc= %d\n", argv
[0], argc
);
1452 for (i
= 0; cmds
[i
].name
; i
++) {
1453 if (strcmp(cmds
[i
].name
, argv
[0]))
1455 ret
= cmds
[i
].handler(clifd
, argc
, argv
);
1458 ret
= -E_INVALID_AUDIOD_CMD
; /* cmd not found */
1462 if (clifd
> 0 && ret
< 0 && ret
!= -E_CLIENT_WRITE
) {
1463 char *tmp
= make_message("%s\n", PARA_STRERROR(-ret
));
1464 client_write(clifd
, tmp
);
1471 static void audiod_get_socket(void)
1473 struct sockaddr_un unix_addr
;
1475 if (conf
.socket_given
)
1476 socket_name
= para_strdup(conf
.socket_arg
);
1478 char *hn
= para_hostname();
1479 socket_name
= make_message("/var/paraslash/audiod_socket.%s",
1483 PARA_NOTICE_LOG("connecting to local socket %s\n", socket_name
);
1484 if (conf
.force_given
)
1485 unlink(socket_name
);
1486 audiod_socket
= create_pf_socket(socket_name
, &unix_addr
,
1487 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IWOTH
);
1488 if (audiod_socket
< 0) {
1489 PARA_EMERG_LOG("%s", "can not connect to socket\n");
1490 exit(EXIT_FAILURE
); /* do not unlink socket */
1492 if (listen(audiod_socket
, 5) < 0) {
1493 PARA_EMERG_LOG("%s", "can not listen on socket\n");
1494 exit(EXIT_FAILURE
); /* do not unlink socket */
1496 add_close_on_fork_list(audiod_socket
);
1499 static int open_stat_pipe(void)
1501 int ret
, fd
[3] = {-1, 1, 0};
1503 ret
= para_exec_cmdline_pid(&pid
, BINDIR
"/para_client stat", fd
);
1506 PARA_NOTICE_LOG("stat pipe opened, fd %d\n", ret
);
1507 add_close_on_fork_list(ret
);
1509 clean_exit(EXIT_FAILURE
, "failed to open status pipe");
1513 static void audiod_pre_select(fd_set
*rfds
, fd_set
*wfds
, struct timeval
*tv
,
1519 struct slot_info
*s
= &slot
[i
];
1520 struct audio_format_info
*a
;
1521 struct receiver_node
*rn
= s
->receiver_node
;
1522 if (s
->format
< 0 || !rn
)
1524 a
= &afi
[s
->format
];
1525 ret
= a
->receiver
->pre_select(rn
, rfds
, wfds
, tv
);
1526 // PARA_NOTICE_LOG("%s preselect: %d\n", a->receiver->name, ret);
1527 *max_fileno
= PARA_MAX(*max_fileno
, ret
);
1530 static void audiod_post_select(int select_ret
, fd_set
*rfds
, fd_set
*wfds
)
1535 struct slot_info
*s
= &slot
[i
];
1536 struct audio_format_info
*a
;
1537 struct receiver_node
*rn
= s
->receiver_node
;
1538 if (s
->format
< 0 || !rn
|| rn
->eof
)
1540 a
= &afi
[s
->format
];
1541 ret
= a
->receiver
->post_select(rn
, select_ret
, rfds
, wfds
);
1544 PARA_ERROR_LOG("%s post select failed: %s (slot %d)\n",
1545 a
->receiver
->name
, PARA_STRERROR(-ret
), i
);
1547 PARA_INFO_LOG("eof in slot %d\n", i
);
1550 if (ret
< 0 && s
->fci
)
1551 s
->fci
->error
= ret
;
1555 /* TODO: move everything before the select call to pre_select() */
1556 static void __noreturn
audiod_mainloop(void)
1559 int ret
, max_fileno
, sbo
= 0;
1560 char status_buf
[STRINGSIZE
] = "";
1565 /* always check signal pipe and the local socket */
1566 FD_SET(signal_pipe
, &rfds
);
1567 max_fileno
= signal_pipe
;
1568 para_fd_set(audiod_socket
, &rfds
, &max_fileno
);
1570 if (audiod_status
!= AUDIOD_ON
)
1571 kill_all_decoders();
1573 start_current_receiver();
1575 set_stream_fds(&wfds
, &max_fileno
);
1577 if (stat_pipe
>= 0 && audiod_status
== AUDIOD_OFF
)
1579 if (stat_pipe
< 0 && audiod_status
!= AUDIOD_OFF
) {
1580 stat_pipe
= open_stat_pipe();
1582 status_buf
[0] = '\0';
1584 if (stat_pipe
>= 0 && audiod_status
!= AUDIOD_OFF
)
1585 para_fd_set(stat_pipe
, &rfds
, &max_fileno
);
1588 tv
.tv_usec
= 200 * 1000;
1589 audiod_pre_select(&rfds
, &wfds
, &tv
, &max_fileno
);
1590 ret
= para_select(max_fileno
+ 1, &rfds
, &wfds
, &tv
);
1593 if (audiod_status
!= AUDIOD_OFF
)
1594 audiod_status_dump();
1595 audiod_post_select(ret
, &rfds
, &wfds
);
1596 /* read status pipe */
1597 if (stat_pipe
>=0 && FD_ISSET(stat_pipe
, &rfds
)) {
1598 ret
= read(stat_pipe
, status_buf
+ sbo
, STRINGSIZE
- 1 - sbo
);
1601 /* avoid busy loop if server is down */
1602 while (sleep(1) > 0)
1605 status_buf
[ret
+ sbo
] = '\0';
1606 sbo
= for_each_line(status_buf
, ret
+ sbo
,
1611 if (FD_ISSET(audiod_socket
, &rfds
)) {
1612 ret
= handle_connect();
1614 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret
));
1618 if (FD_ISSET(signal_pipe
, &rfds
)) {
1619 int sig_nr
= para_next_signal();
1621 handle_signal(sig_nr
);
1626 static void set_initial_status(void)
1628 audiod_status
= AUDIOD_ON
;
1629 if (!conf
.mode_given
)
1631 if (!strcmp(conf
.mode_arg
, "sb")) {
1632 audiod_status
= AUDIOD_STANDBY
;
1635 if (!strcmp(conf
.mode_arg
, "off")) {
1636 audiod_status
= AUDIOD_OFF
;
1639 if (strcmp(conf
.mode_arg
, "on"))
1640 PARA_WARNING_LOG("%s", "invalid mode\n");
1643 int __noreturn
main(int argc
, char *argv
[])
1648 fprintf(stderr
, "argc: %d\n", argc
);
1650 hostname
= para_hostname();
1651 cmdline_parser(argc
, argv
, &conf
);
1652 para_drop_privileges(conf
.user_arg
, conf
.group_arg
);
1653 cf
= configfile_exists();
1655 if (cmdline_parser_configfile(cf
, &conf
, 0, 0, 0)) {
1656 PARA_EMERG_LOG("%s", "parse error in config file\n");
1660 if (conf
.logfile_given
)
1661 logfile
= open_log(conf
.logfile_arg
);
1662 log_welcome("para_audiod", conf
.loglevel_arg
);
1663 i
= init_stream_io();
1665 PARA_EMERG_LOG("init stream io error: %s\n", PARA_STRERROR(-i
));
1668 server_uptime(UPTIME_SET
);
1669 set_initial_status();
1673 setup_signal_handling();
1674 if (conf
.daemon_given
)
1676 audiod_get_socket(); /* doesn't return on errors */