1 /* Copyright (C) 2005 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
3 /** \file audiod.c The paraslash's audio daemon. */
5 #include <netinet/in.h>
6 #include <sys/socket.h>
16 #include "audiod.lsg.h"
17 #include "recv_cmd.lsg.h"
23 #include "buffer_tree.h"
26 #include "grab_client.h"
37 /** Array of error strings. */
40 static struct lls_parse_result
*lpr
;
41 #define CMD_PTR (lls_cmd(0, audiod_suite))
42 #define OPT_RESULT(_name) (lls_opt_result(LSG_AUDIOD_PARA_AUDIOD_OPT_ ## _name, lpr))
43 #define OPT_GIVEN(_name) (lls_opt_given(OPT_RESULT(_name)))
44 #define OPT_STRING_VAL(_name) (lls_string_val(0, OPT_RESULT(_name)))
45 #define OPT_UINT32_VAL(_name) (lls_uint32_val(0, OPT_RESULT(_name)))
46 #define ENUM_STRING_VAL(_name) (lls_enum_string_val(OPT_UINT32_VAL(_name), \
47 lls_opt(LSG_AUDIOD_PARA_AUDIOD_OPT_ ## _name, CMD_PTR)))
49 __printf_2_3
void (*para_log
)(int, const char*, ...) = daemon_log
;
50 /** define the array containing all supported audio formats */
51 const char *audio_formats
[] = {AUDIOD_AUDIO_FORMAT_ARRAY NULL
};
53 /** Defines how audiod handles one supported audio format. */
54 struct audio_format_info
{
55 /** the receiver for this audio format */
57 /** Parsed receiver command line. */
58 struct lls_parse_result
*receiver_lpr
;
59 /** the number of filters that should be activated for this audio format */
60 unsigned int num_filters
;
61 /** Array of filter numbers to be activated. */
62 unsigned *filter_nums
;
63 /** Pointer to the array of filter configurations. */
65 /** Parsed filter command line, one parse result per filter. */
66 struct lls_parse_result
**filter_lpr
;
67 /** the number of filters that should be activated for this audio format */
68 unsigned int num_writers
;
69 /** Array of writer IDs to be activated. */
71 /** Parsed writer command line(s) */
72 struct lls_parse_result
**writer_lpr
;
73 /** do not start receiver/filters/writer before this time */
74 struct timeval restart_barrier
;
77 /* Describes one instance of a receiver-filter-writer chain. */
79 /* Number of the audio format in this slot. */
81 /* The stream_start status item announced by para_server. */
82 struct timeval server_stream_start
;
83 /* The offset status item announced by para_server. */
84 unsigned offset_seconds
;
85 /* The seconds_total status item announced by para_server. */
86 unsigned seconds_total
;
87 /* The receiver info associated with this slot. */
88 struct receiver_node
*receiver_node
;
89 /* The array of filter nodes. */
90 struct filter_node
*fns
;
91 /* The array of writers attached to the last filter. */
92 struct writer_node
*wns
;
95 #define RECEIVER_CMD(_a) lls_cmd((_a)->receiver_num, recv_cmd_suite)
96 #define RECEIVER(_a) ((const struct receiver *)lls_user_data(RECEIVER_CMD(_a)))
98 /** Maximal number of simultaneous instances. */
99 #define MAX_STREAM_SLOTS 5
101 /** Iterate over all slots. */
102 #define FOR_EACH_SLOT(_slot) for (_slot = 0; _slot < MAX_STREAM_SLOTS; _slot++)
105 * para_audiod uses \p MAX_STREAM_SLOTS different slots, each of which may
106 * be associated with a receiver/filter/writer triple. This array holds all
107 * information on the status of these slots.
109 struct slot_info slot
[MAX_STREAM_SLOTS
];
111 /** The vss status flags audiod is interested in. */
112 enum vss_status_flags
{
113 /** Whether the 'N' flag is set. */
114 VSS_STATUS_FLAG_NEXT
= 1,
115 /** The 'P' flag is set. */
116 VSS_STATUS_FLAG_PLAYING
= 2,
120 * The scheduler instance of para_audiod.
122 * This is needed also in audiod_command.c (for the tasks command), so it can
123 * not be made static.
125 struct sched sched
= {.max_fileno
= 0};
127 /* The task for obtaining para_server's status (para_client stat). */
129 /** The associated task structure of audiod. */
131 /** Client data associated with the stat task. */
132 struct client_task
*ct
;
133 /** Do not restart client command until this time. */
134 struct timeval restart_barrier
;
135 /** Last time we received status data from para_server. */
136 struct timeval last_status_read
;
138 /** The offset value announced by para_server. */
140 /** The length of the current audio file as announced by para_server. */
142 /** The start of the current stream from the view of para_server. */
143 struct timeval server_stream_start
;
144 /** The average time deviation between para_server and para_audiod. */
145 struct timeval sa_time_diff
;
146 /** Whether client time is ahead of server time. */
147 int sa_time_diff_sign
;
148 /** The 'P' and the 'N' flags as announced by para_server. */
149 enum vss_status_flags vss_status
;
150 /** Number of times the clock difference is to be checked. */
151 unsigned clock_diff_count
;
152 /** When to start the next check for clock difference. */
153 struct timeval clock_diff_barrier
;
154 /** Number of the audio format as announced by para_server. */
155 int current_audio_format_num
;
156 /* The status task btrn is the child of the client task. */
157 struct btr_node
*btrn
;
160 /** The array of status items sent by para_server. */
161 char *stat_item_values
[NUM_STAT_ITEMS
] = {NULL
};
164 * The current mode of operation (AUDIOD_OFF, AUDIOD_ON or AUDIOD_STANDBY).
165 * Set by the on/off/cycle commands.
167 int audiod_status
= AUDIOD_ON
;
169 static char *socket_name
;
170 static struct audio_format_info afi
[NUM_AUDIO_FORMATS
];
171 static struct signal_task
*signal_task
;
172 static struct status_task status_task_struct
;
173 static uid_t
*uid_whitelist
;
176 * The task that calls the status command of para_server.
178 * \sa \ref struct status_task.
180 static struct status_task
*stat_task
= &status_task_struct
;
182 struct command_task
{
183 /** The local listening socket. */
185 /** The associated task structure. */
189 /** Iterate over all supported audio formats. */
190 #define FOR_EACH_AUDIO_FORMAT(af) for (af = 0; af < NUM_AUDIO_FORMATS; af++)
193 * Get the audio format number.
195 * \param name The name of the audio format.
197 * \return The audio format number on success, -E_UNSUPPORTED_AUDIO_FORMAT if
198 * \a name is not a supported audio format.
200 static int get_audio_format_num(const char *name
)
204 while (para_isspace(*name
))
206 FOR_EACH_AUDIO_FORMAT(i
)
207 if (!strcmp(name
, audio_formats
[i
]))
209 return -E_UNSUPPORTED_AUDIO_FORMAT
;
213 * Return the flags for the \a decoder_flags status item.
215 * Allocates a string which contains one octal digit per slot. Bit zero (value
216 * 1) is set if a receiver is active. Bit one (value 2) and bit three (value 4)
217 * have the analogous meaning for filter and writer, respectively.
219 * \return String that must be freed by the caller.
221 __malloc
char *audiod_get_decoder_flags(void)
224 char flags
[MAX_STREAM_SLOTS
+ 1];
227 struct slot_info
*s
= &slot
[i
];
229 if (s
->receiver_node
)
237 flags
[MAX_STREAM_SLOTS
] = '\0';
238 return para_strdup(flags
);
241 static int get_matching_audio_format_nums(const char *re
)
246 ret
= para_regcomp(&preg
, re
, REG_EXTENDED
| REG_NOSUB
);
250 FOR_EACH_AUDIO_FORMAT(i
)
251 if (regexec(&preg
, audio_formats
[i
], 0, NULL
, 0) != REG_NOMATCH
)
257 static int get_play_time_slot_num(void)
259 int i
, oldest_slot
= -1;
260 struct timeval oldest_wstime
= {0, 0};
263 struct slot_info
*s
= &slot
[i
];
264 struct timeval wstime
;
265 if (!s
->wns
|| !s
->wns
[0].btrn
)
267 btr_get_node_start(s
->wns
[0].btrn
, &wstime
);
268 if (oldest_slot
>= 0 && tv_diff(&wstime
, &oldest_wstime
, NULL
) > 0)
270 oldest_wstime
= wstime
;
277 * Compute the play time based on information of the current slot.
279 * This computes a string of the form "0:07 [3:33] (3%/3:40)" using information
280 * from the status items received from para_server and the start time of the
281 * (first) writer of the current slot.
283 * It has to take into account that the stream was probably not started at
284 * the beginning of the file, that the clock between the server and the client
285 * host may differ and that playback of the stream was delayed, e.g. because
286 * the prebuffer filter is used in the filter configuration.
288 * If no writer is active, for example because para_audiod runs in standby
289 * mode, an approximation based only on the status items is computed and the
290 * returned string is prefixed with "~".
292 * \return A string that must be freed by the caller.
294 char *get_time_string(void)
296 int ret
, seconds
= 0, length
= stat_task
->length_seconds
;
297 struct timeval
*tmp
, sum
, sss
, /* server stream start */
298 rstime
, /* receiver start time */
299 wstime
, /* writer start time */
300 wtime
, /* now - writer start */
301 rskip
; /* receiver start - sss */
302 int slot_num
= get_play_time_slot_num();
303 struct slot_info
*s
= slot_num
< 0? NULL
: &slot
[slot_num
];
304 bool writer_active
= s
&& s
->wns
&& s
->wns
[0].btrn
;
307 if (audiod_status
== AUDIOD_OFF
)
309 if (stat_task
->server_stream_start
.tv_sec
== 0) {
310 if (stat_task
->vss_status
& VSS_STATUS_FLAG_PLAYING
)
311 goto out
; /* server is about to change file */
312 if (length
> 0) /* paused */
314 goto empty
; /* stopped */
317 * Valid status items and playing, set length and tmp to the stream
318 * start. We use the writer start time from the slot info and fall back
319 * to the info from current status items if no writer is active yet.
321 tmp
= &stat_task
->server_stream_start
;
323 btr_get_node_start(s
->wns
[0].btrn
, &wstime
);
324 if (wstime
.tv_sec
!= 0) { /* writer wrote something */
325 if (s
->server_stream_start
.tv_sec
== 0) {
326 /* copy status info to slot */
327 s
->server_stream_start
= stat_task
->server_stream_start
;
328 s
->offset_seconds
= stat_task
->offset_seconds
;
329 s
->seconds_total
= stat_task
->length_seconds
;
331 length
= s
->seconds_total
;
332 tmp
= &s
->server_stream_start
;
335 if (stat_task
->sa_time_diff_sign
> 0)
336 tv_diff(tmp
, &stat_task
->sa_time_diff
, &sss
);
338 tv_add(tmp
, &stat_task
->sa_time_diff
, &sss
);
339 if (!writer_active
) {
341 tv_diff(now
, &sss
, &diff
);
342 seconds
= diff
.tv_sec
+ stat_task
->offset_seconds
;
345 tv_diff(now
, &wstime
, &wtime
);
346 //PARA_CRIT_LOG("offset %d\n", s->offset_seconds);
347 seconds
= s
->offset_seconds
;
348 if (s
->receiver_node
->btrn
) {
349 btr_get_node_start(s
->receiver_node
->btrn
, &rstime
);
350 ret
= tv_diff(&rstime
, &sss
, &rskip
);
351 if (ret
> 0 && rskip
.tv_sec
> 2) {
352 /* audiod was started in the middle of the stream */
353 tv_add(&wtime
, &rskip
, &sum
);
354 seconds
+= sum
.tv_sec
;
356 seconds
+= wtime
.tv_sec
;
358 seconds
+= wtime
.tv_sec
;
360 seconds
= PARA_MIN(seconds
, length
);
361 seconds
= PARA_MAX(seconds
, 0);
363 "%s%d:%02d [%d:%02d] (%d%%/%d:%02d)",
367 (length
- seconds
) / 60,
368 (length
- seconds
) % 60,
369 length
? (seconds
* 100 + length
/ 2) / length
: 0,
373 //PARA_DEBUG_LOG("slot %d: %s\n", slot_num, msg);
376 return para_strdup(NULL
);
379 static void parse_config_or_die(void)
382 char *cf
, *errctx
= NULL
;
386 if (OPT_GIVEN(CONFIG_FILE
))
387 cf
= para_strdup(OPT_STRING_VAL(CONFIG_FILE
));
389 char *home
= para_homedir();
390 cf
= make_message("%s/.paraslash/audiod.conf", home
);
393 ret
= mmap_full_file(cf
, O_RDONLY
, &map
, &sz
, NULL
);
395 if (ret
!= -E_EMPTY
&& ret
!= -ERRNO_TO_PARA_ERROR(ENOENT
))
397 if (ret
== -ERRNO_TO_PARA_ERROR(ENOENT
) && OPT_GIVEN(CONFIG_FILE
))
402 struct lls_parse_result
*cf_lpr
, *merged_lpr
;
403 ret
= lls(lls_convert_config(map
, sz
, NULL
, &cf_argv
, &errctx
));
404 para_munmap(map
, sz
);
408 ret
= lls(lls_parse(cf_argc
, cf_argv
, CMD_PTR
, &cf_lpr
, &errctx
));
409 lls_free_argv(cf_argv
);
412 ret
= lls(lls_merge(lpr
, cf_lpr
, CMD_PTR
, &merged_lpr
,
414 lls_free_parse_result(cf_lpr
, CMD_PTR
);
417 lls_free_parse_result(lpr
, CMD_PTR
);
420 daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL
));
421 if (OPT_GIVEN(USER_ALLOW
)) {
422 uint32_t n
= OPT_GIVEN(USER_ALLOW
);
425 uid_whitelist
= para_malloc(n
* sizeof(uid_t
));
426 for (i
= 0; i
< n
; i
++) {
427 const char *arg
= lls_string_val(i
,
428 OPT_RESULT(USER_ALLOW
));
431 ret
= para_atoi32(arg
, &val
);
433 uid_whitelist
[i
] = val
;
436 errno
= 0; /* see getpwnam(3) */
439 PARA_EMERG_LOG("invalid username: %s\n", arg
);
443 uid_whitelist
[i
] = pw
->pw_uid
;
451 PARA_ERROR_LOG("%s\n", errctx
);
453 lls_free_parse_result(lpr
, CMD_PTR
);
454 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
459 static void setup_signal_handling(void)
461 signal_task
= signal_init_or_die();
462 para_install_sighandler(SIGINT
);
463 para_install_sighandler(SIGTERM
);
464 para_install_sighandler(SIGHUP
);
465 para_sigaction(SIGPIPE
, SIG_IGN
);
468 static void clear_slot(int slot_num
)
470 struct slot_info
*s
= &slot
[slot_num
];
472 PARA_INFO_LOG("clearing slot %d\n", slot_num
);
473 memset(s
, 0, sizeof(struct slot_info
));
477 static void close_receiver(int slot_num
)
479 struct slot_info
*s
= &slot
[slot_num
];
480 struct audio_format_info
*a
;
482 if (s
->format
< 0 || !s
->receiver_node
)
485 PARA_NOTICE_LOG("closing %s receiver in slot %d\n",
486 audio_formats
[s
->format
], slot_num
);
487 RECEIVER(a
)->close(s
->receiver_node
);
488 btr_remove_node(&s
->receiver_node
->btrn
);
489 task_reap(&s
->receiver_node
->task
);
490 free(s
->receiver_node
);
491 s
->receiver_node
= NULL
;
492 stat_task
->current_audio_format_num
= -1;
493 tv_add(now
, &(struct timeval
)EMBRACE(0, 200 * 1000),
494 &a
->restart_barrier
);
497 static void writer_cleanup(struct writer_node
*wn
)
501 PARA_INFO_LOG("closing %s\n", writer_name(wn
->wid
));
502 writer_get(wn
->wid
)->close(wn
);
503 btr_remove_node(&wn
->btrn
);
504 task_reap(&wn
->task
);
507 static void close_writers(struct slot_info
*s
)
509 struct audio_format_info
*a
;
516 if (a
->num_writers
== 0)
517 writer_cleanup(s
->wns
);
519 for (i
= 0; i
< a
->num_writers
; i
++)
520 writer_cleanup(s
->wns
+ i
);
526 static void close_filters(struct slot_info
*s
)
529 struct audio_format_info
*a
= afi
+ s
->format
;
530 if (a
->num_filters
== 0)
532 for (i
= a
->num_filters
- 1; i
>= 0; i
--) {
533 struct filter_node
*fn
= s
->fns
+ i
;
534 const struct filter
*f
;
538 f
= filter_get(fn
->filter_num
);
541 btr_remove_node(&fn
->btrn
);
542 task_reap(&fn
->task
);
548 static void notify_receivers(int error
)
553 struct slot_info
*s
= slot
+ i
;
556 if (!s
->receiver_node
)
558 task_notify(s
->receiver_node
->task
, error
);
562 static int get_empty_slot(void)
573 if (s
->wns
|| s
->receiver_node
|| s
->fns
)
578 return -E_NO_MORE_SLOTS
;
581 static void open_filters(struct slot_info
*s
)
583 struct audio_format_info
*a
= afi
+ s
->format
;
584 struct filter_node
*fn
;
585 int nf
= a
->num_filters
;
586 struct btr_node
*parent
;
591 PARA_INFO_LOG("opening %s filters\n", audio_formats
[s
->format
]);
592 assert(s
->fns
== NULL
);
593 s
->fns
= para_calloc(nf
* sizeof(struct filter_node
));
594 parent
= s
->receiver_node
->btrn
;
595 for (i
= 0; i
< nf
; i
++) {
598 const struct filter
*f
= filter_get(a
->filter_nums
[i
]);
600 fn
->filter_num
= a
->filter_nums
[i
];
601 fn
->conf
= a
->filter_conf
[i
];
602 fn
->lpr
= a
->filter_lpr
[i
];
603 name
= filter_name(fn
->filter_num
);
604 fn
->btrn
= btr_new_node(&(struct btr_node_description
)
605 EMBRACE(.name
= name
, .parent
= parent
,
606 .handler
= f
->execute
, .context
= fn
));
610 sprintf(buf
, "%s (slot %d)", name
, (int)(s
- slot
));
611 fn
->task
= task_register(&(struct task_info
) {
613 .pre_select
= f
->pre_select
,
614 .post_select
= f
->post_select
,
618 PARA_NOTICE_LOG("%s filter %d/%d (%s) started in slot %d\n",
619 audio_formats
[s
->format
], i
, nf
, name
, (int)(s
- slot
));
623 static void open_writers(struct slot_info
*s
)
626 struct audio_format_info
*a
= afi
+ s
->format
;
627 struct writer_node
*wn
;
628 struct btr_node
*parent
= s
->fns
[a
->num_filters
- 1].btrn
;
630 assert(s
->wns
== NULL
);
631 s
->wns
= para_calloc(PARA_MAX(1U, a
->num_writers
)
632 * sizeof(struct writer_node
));
633 for (i
= 0; i
< a
->num_writers
; i
++) {
635 wn
->wid
= a
->wids
[i
];
636 wn
->lpr
= a
->writer_lpr
[i
];
637 register_writer_node(wn
, parent
, &sched
);
638 PARA_NOTICE_LOG("%s writer started in slot %d\n",
639 writer_name(a
->wids
[i
]), (int)(s
- slot
));
643 /* returns slot num on success */
644 static int open_receiver(int format
)
646 struct audio_format_info
*a
= &afi
[format
];
649 const struct receiver
*r
= RECEIVER(a
);
650 const char *name
= lls_command_name(RECEIVER_CMD(a
));
651 struct receiver_node
*rn
;
653 tv_add(now
, &(struct timeval
)EMBRACE(2, 0), &a
->restart_barrier
);
654 ret
= get_empty_slot();
658 rn
= para_calloc(sizeof(*rn
));
660 rn
->lpr
= a
->receiver_lpr
;
661 rn
->btrn
= btr_new_node(&(struct btr_node_description
)
662 EMBRACE(.name
= name
, .context
= rn
));
665 PARA_ERROR_LOG("could not open %s receiver\n", name
);
666 btr_remove_node(&rn
->btrn
);
672 s
->receiver_node
= rn
;
673 PARA_NOTICE_LOG("started %s: %s receiver in slot %d\n",
674 audio_formats
[format
], name
, slot_num
);
675 rn
->task
= task_register(&(struct task_info
) {
677 .pre_select
= r
->pre_select
,
678 .post_select
= r
->post_select
,
684 static bool receiver_running(void)
687 long unsigned ss1
= stat_task
->server_stream_start
.tv_sec
;
690 struct slot_info
*s
= &slot
[i
];
691 long unsigned ss2
= s
->server_stream_start
.tv_sec
;
693 if (!s
->receiver_node
)
695 if (task_status(s
->receiver_node
->task
) >= 0)
704 * Return the root node of the current buffer tree.
706 * This is only used for stream grabbing.
708 * \return \p NULL if no slot is currently active. If more than one buffer tree
709 * exists, the node corresponding to the most recently started receiver is
712 struct btr_node
*audiod_get_btr_root(void)
714 int i
, newest_slot
= -1;
715 struct timeval newest_rstime
= {0, 0};
718 struct slot_info
*s
= &slot
[i
];
719 struct timeval rstime
;
720 if (!s
->receiver_node
)
722 if (task_status(s
->receiver_node
->task
) < 0)
724 btr_get_node_start(s
->receiver_node
->btrn
, &rstime
);
725 if (newest_slot
>= 0 && tv_diff(&rstime
, &newest_rstime
, NULL
) < 0)
727 newest_rstime
= rstime
;
730 if (newest_slot
== -1)
732 return slot
[newest_slot
].receiver_node
->btrn
;
735 /* whether a new instance of a decoder should be started. */
736 static bool must_start_decoder(void)
738 int cafn
= stat_task
->current_audio_format_num
;
739 unsigned vs
= stat_task
->vss_status
;
741 if (audiod_status
!= AUDIOD_ON
)
747 if (vs
& VSS_STATUS_FLAG_NEXT
)
749 if (!(vs
& VSS_STATUS_FLAG_PLAYING
))
751 if (receiver_running())
753 if (tv_diff(now
, &afi
[cafn
].restart_barrier
, NULL
) < 0)
758 static void compute_time_diff(const struct timeval
*status_time
)
760 struct timeval tmp
, diff
;
761 static unsigned count
;
762 int sign
, sa_time_diff_sign
= stat_task
->sa_time_diff_sign
;
763 const struct timeval max_deviation
= {0, 500 * 1000};
764 const int time_smooth
= 5;
766 sign
= tv_diff(status_time
, now
, &diff
);
767 // PARA_NOTICE_LOG("%s: sign = %i, sa_time_diff_sign = %i\n", __func__,
768 // sign, sa_time_diff_sign);
770 sa_time_diff_sign
= sign
;
771 stat_task
->sa_time_diff
= diff
;
776 int s
= tv_diff(&diff
, &stat_task
->sa_time_diff
, &tmp
);
777 if (tv_diff(&max_deviation
, &tmp
, NULL
) < 0)
778 PARA_WARNING_LOG("time diff jump: %lums\n",
782 sa_time_diff_sign
= tv_convex_combination(
783 sa_time_diff_sign
* time_smooth
, &stat_task
->sa_time_diff
,
784 count
> 10? sign
: sign
* time_smooth
, &diff
,
786 stat_task
->sa_time_diff
= tmp
;
787 PARA_INFO_LOG("time diff (cur/avg): %s%lums/%s%lums\n",
790 sa_time_diff_sign
< 0? "-" : "+",
791 tv2ms(&stat_task
->sa_time_diff
)
794 stat_task
->sa_time_diff_sign
= sa_time_diff_sign
;
797 static int update_item(int itemnum
, char *buf
)
799 long unsigned sec
, usec
;
801 if (stat_task
->clock_diff_count
&& itemnum
!= SI_current_time
)
803 free(stat_item_values
[itemnum
]);
804 stat_item_values
[itemnum
] = para_strdup(buf
);
805 stat_client_write_item(itemnum
);
807 case SI_status_flags
:
808 stat_task
->vss_status
= 0;
809 if (strchr(buf
, 'N'))
810 stat_task
->vss_status
|= VSS_STATUS_FLAG_NEXT
;
811 if (strchr(buf
, 'P'))
812 stat_task
->vss_status
|= VSS_STATUS_FLAG_PLAYING
;
815 stat_task
->offset_seconds
= atoi(buf
);
817 case SI_seconds_total
:
818 stat_task
->length_seconds
= atoi(buf
);
820 case SI_stream_start
:
821 if (sscanf(buf
, "%lu.%lu", &sec
, &usec
) == 2) {
822 stat_task
->server_stream_start
.tv_sec
= sec
;
823 stat_task
->server_stream_start
.tv_usec
= usec
;
826 case SI_current_time
:
827 if (sscanf(buf
, "%lu.%lu", &sec
, &usec
) == 2) {
828 struct timeval tv
= {sec
, usec
};
829 compute_time_diff(&tv
);
833 stat_task
->current_audio_format_num
834 = get_audio_format_num(buf
);
839 static int parse_stream_command(const char *txt
, const char **cmd
)
842 char *re
, *p
= strchr(txt
, ':');
845 return -E_MISSING_COLON
;
848 re
= malloc(len
+ 1);
849 strncpy(re
, txt
, len
);
851 ret
= get_matching_audio_format_nums(re
);
856 static int add_filter(int format
, const char *cmdline
)
858 struct audio_format_info
*a
= &afi
[format
];
859 int filter_num
, nf
= a
->num_filters
;
861 struct lls_parse_result
*flpr
;
863 filter_num
= filter_setup(cmdline
, &cfg
, &flpr
);
864 a
->filter_lpr
= para_realloc(a
->filter_lpr
,
865 (nf
+ 1) * sizeof(flpr
));
866 a
->filter_conf
= para_realloc(a
->filter_conf
,
867 (nf
+ 1) * sizeof(void *));
868 a
->filter_nums
= para_realloc(a
->filter_nums
,
869 (nf
+ 1) * sizeof(unsigned));
871 a
->filter_nums
[nf
] = filter_num
;
872 a
->filter_conf
[nf
] = cfg
;
873 a
->filter_lpr
[nf
] = flpr
;
875 PARA_INFO_LOG("%s filter %d: %s\n", audio_formats
[format
], nf
,
876 filter_name(filter_num
));
880 static int parse_writer_args(void)
884 struct audio_format_info
*a
;
886 for (i
= 0; i
< OPT_GIVEN(WRITER
); i
++) {
889 ret
= parse_stream_command(lls_string_val(i
,
890 OPT_RESULT(WRITER
)), &cmd
);
894 FOR_EACH_AUDIO_FORMAT(j
) {
896 if ((af_mask
& (1 << j
)) == 0) /* no match */
899 a
->wids
= para_realloc(a
->wids
, (nw
+ 1) * sizeof(int));
900 a
->writer_lpr
= para_realloc(a
->writer_lpr
,
901 (nw
+ 1) * sizeof(struct lls_parse_result
*));
902 a
->wids
[nw
] = check_writer_arg_or_die(cmd
,
904 PARA_INFO_LOG("%s writer #%d: %s\n", audio_formats
[j
],
905 nw
, writer_name(a
->wids
[nw
]));
909 /* Use default writer for audio formats which are not yet set up. */
910 FOR_EACH_AUDIO_FORMAT(i
) {
912 if (a
->num_writers
> 0)
913 continue; /* already set up */
915 a
->wids
= para_malloc(sizeof(int));
916 a
->writer_lpr
= para_malloc(sizeof(struct lls_parse_result
*));
917 a
->wids
[0] = check_writer_arg_or_die(NULL
, a
->writer_lpr
);
918 PARA_INFO_LOG("%s writer: %s (default)\n", audio_formats
[i
],
919 writer_name(a
->wids
[0]));
924 static int parse_receiver_args(void)
928 struct audio_format_info
*a
;
930 FOR_EACH_AUDIO_FORMAT(i
)
931 afi
[i
].receiver_num
= -1;
932 for (i
= OPT_GIVEN(RECEIVER
) - 1; i
>= 0; i
--) {
935 ret
= parse_stream_command(lls_string_val(i
,
936 OPT_RESULT(RECEIVER
)), &arg
);
940 FOR_EACH_AUDIO_FORMAT(j
) {
942 if ((af_mask
& (1 << j
)) == 0) /* no match */
945 * If multiple receivers are given for this audio format, the
946 * last one wins and we have to free the previous receiver
947 * config here. Since we are iterating backwards, the winning
948 * receiver arg is in fact the first one given.
950 lls_free_parse_result(a
->receiver_lpr
, RECEIVER_CMD(a
));
951 a
->receiver_num
= check_receiver_arg(arg
, &a
->receiver_lpr
);
955 * Use the default receiver for those audio formats for which no
956 * receiver was specified.
958 FOR_EACH_AUDIO_FORMAT(i
) {
960 if (a
->receiver_num
>= 0)
962 a
->receiver_num
= check_receiver_arg(NULL
, &a
->receiver_lpr
);
964 FOR_EACH_AUDIO_FORMAT(i
) {
966 PARA_INFO_LOG("receiving %s streams via %s receiver\n",
967 audio_formats
[i
], lls_command_name(RECEIVER_CMD(a
)));
974 static int init_default_filters(void)
978 FOR_EACH_AUDIO_FORMAT(i
) {
979 struct audio_format_info
*a
= &afi
[i
];
980 const char *name
= lls_command_name(RECEIVER_CMD(a
));
985 continue; /* no default -- nothing to to */
987 * udp and dccp streams are fec-encoded, so add fecdec as the
990 if (strcmp(name
, "udp") == 0 || strcmp(name
, "dccp") == 0) {
991 tmp
= para_strdup("fecdec");
997 /* add "dec" to audio format name */
998 tmp
= make_message("%sdec", audio_formats
[i
]);
999 for (j
= 1; filter_get(j
); j
++)
1000 if (!strcmp(tmp
, filter_name(j
)))
1003 ret
= -E_UNSUPPORTED_FILTER
;
1006 tmp
= para_strdup(filter_name(j
));
1007 ret
= add_filter(i
, tmp
);
1011 PARA_INFO_LOG("%s -> default filter: %s\n", audio_formats
[i
],
1018 static int parse_filter_args(void)
1020 int i
, j
, ret
, af_mask
, num_matches
;
1022 for (i
= 0; i
< OPT_GIVEN(FILTER
); i
++) {
1024 ret
= parse_stream_command(lls_string_val(i
,
1025 OPT_RESULT(FILTER
)), &arg
);
1030 FOR_EACH_AUDIO_FORMAT(j
) {
1031 if ((af_mask
& (1 << j
)) == 0) /* no match */
1033 ret
= add_filter(j
, arg
);
1038 if (num_matches
== 0)
1039 PARA_WARNING_LOG("ignoring filter spec: %s\n",
1040 lls_string_val(i
, OPT_RESULT(FILTER
)));
1042 ret
= init_default_filters(); /* use default values for the rest */
1047 static int parse_stream_args(void)
1051 ret
= parse_receiver_args();
1054 ret
= parse_filter_args();
1057 ret
= parse_writer_args();
1063 /* does not unlink socket on errors */
1064 static void init_local_socket(struct command_task
*ct
)
1066 if (OPT_GIVEN(SOCKET
))
1067 socket_name
= para_strdup(OPT_STRING_VAL(SOCKET
));
1069 char *hn
= para_hostname();
1070 socket_name
= make_message("/var/paraslash/audiod_socket.%s",
1074 PARA_NOTICE_LOG("local socket: %s\n", socket_name
);
1075 if (OPT_GIVEN(FORCE
))
1076 unlink(socket_name
);
1077 ct
->fd
= create_local_socket(socket_name
);
1080 PARA_EMERG_LOG("%s\n", para_strerror(-ct
->fd
));
1084 static int signal_post_select(struct sched
*s
, void *context
)
1086 struct signal_task
*st
= context
;
1089 ret
= task_get_notification(st
->task
);
1092 signum
= para_next_signal(&s
->rfds
);
1097 PARA_NOTICE_LOG("received signal %d\n", signum
);
1098 task_notify_all(s
, E_AUDIOD_SIGNAL
);
1099 return -E_AUDIOD_SIGNAL
;
1104 static void command_pre_select(struct sched
*s
, void *context
)
1106 struct command_task
*ct
= context
;
1107 para_fd_set(ct
->fd
, &s
->rfds
, &s
->max_fileno
);
1110 static int command_post_select(struct sched
*s
, void *context
)
1113 struct command_task
*ct
= context
;
1114 static struct timeval last_status_dump
;
1115 struct timeval tmp
, delay
;
1118 ret
= task_get_notification(ct
->task
);
1121 ret
= handle_connect(ct
->fd
, &s
->rfds
);
1123 PARA_ERROR_LOG("%s\n", para_strerror(-ret
));
1124 if (ret
== -E_AUDIOD_TERM
) {
1125 task_notify_all(s
, -ret
);
1133 /* if last status dump was less than 500ms ago, do nothing */
1135 delay
.tv_usec
= 500 * 1000;
1136 tv_add(&last_status_dump
, &delay
, &tmp
);
1137 if (tv_diff(now
, &tmp
, NULL
) < 0)
1141 * If last status dump was more than 5s ago, force update. Otherwise,
1142 * update only those items that have changed.
1146 tv_add(&last_status_dump
, &delay
, &tmp
);
1147 if (tv_diff(now
, &tmp
, NULL
) > 0)
1150 audiod_status_dump(force
);
1151 last_status_dump
= *now
;
1155 static void init_command_task(struct command_task
*ct
)
1157 init_local_socket(ct
); /* doesn't return on errors */
1159 ct
->task
= task_register(&(struct task_info
) {
1161 .pre_select
= command_pre_select
,
1162 .post_select
= command_post_select
,
1167 static void close_stat_pipe(void)
1171 task_reap(&stat_task
->ct
->task
);
1172 client_close(stat_task
->ct
);
1173 stat_task
->ct
= NULL
;
1174 clear_and_dump_items();
1175 stat_task
->length_seconds
= 0;
1176 stat_task
->offset_seconds
= 0;
1177 stat_task
->vss_status
= 0;
1178 stat_task
->current_audio_format_num
= -1;
1179 audiod_status_dump(true);
1182 /* avoid busy loop if server is down */
1183 static void set_stat_task_restart_barrier(unsigned seconds
)
1185 struct timeval delay
= {seconds
, 0};
1186 tv_add(now
, &delay
, &stat_task
->restart_barrier
);
1189 static bool must_close_slot(int slot_num
)
1191 struct slot_info
*s
= &slot
[slot_num
];
1192 struct audio_format_info
*a
= afi
+ s
->format
;
1197 if (s
->receiver_node
&& task_status(s
->receiver_node
->task
) >= 0)
1199 for (i
= 0; i
< a
->num_filters
; i
++)
1200 if (s
->fns
&& task_status(s
->fns
[i
].task
) >= 0)
1202 if (a
->num_writers
> 0) {
1203 for (i
= 0; i
< a
->num_writers
; i
++)
1204 if (s
->wns
&& task_status(s
->wns
[i
].task
) >= 0)
1207 if (s
->wns
&& task_status(s
->wns
[0].task
) >= 0)
1213 static void close_slot(int slot_num
)
1215 struct slot_info
*s
= slot
+ slot_num
;
1217 PARA_INFO_LOG("closing slot %d\n", slot_num
);
1220 close_receiver(slot_num
);
1221 clear_slot(slot_num
);
1224 static void close_unused_slots(void)
1230 if (must_close_slot(i
)) {
1235 audiod_status_dump(true);
1239 * Cleanup all resources.
1241 * This performs various cleanups, removes the audiod socket and closes the
1242 * connection to para_server.
1244 static void audiod_cleanup(void)
1247 unlink(socket_name
);
1249 close_unused_slots();
1250 close_stat_clients();
1251 free(uid_whitelist
);
1255 * Check if any receivers/filters/writers need to be started and do so if
1258 static void start_stop_decoders(void)
1261 struct slot_info
*sl
;
1263 close_unused_slots();
1264 if (audiod_status
!= AUDIOD_ON
||
1265 !(stat_task
->vss_status
& VSS_STATUS_FLAG_PLAYING
))
1266 return notify_receivers(E_NOT_PLAYING
);
1267 if (!must_start_decoder())
1269 ret
= open_receiver(stat_task
->current_audio_format_num
);
1271 PARA_ERROR_LOG("%s\n", para_strerror(-ret
));
1277 activate_grab_clients(&sched
);
1278 btr_log_tree(sl
->receiver_node
->btrn
, LL_NOTICE
);
1279 audiod_status_dump(true);
1282 static void status_pre_select(struct sched
*s
, void *context
)
1284 struct status_task
*st
= context
;
1285 int i
, ret
, cafn
= stat_task
->current_audio_format_num
;
1287 if (must_start_decoder())
1290 if (must_close_slot(i
))
1292 ret
= btr_node_status(st
->btrn
, st
->min_iqs
, BTR_NT_LEAF
);
1295 if (st
->ct
&& audiod_status
== AUDIOD_OFF
)
1297 if (!st
->ct
&& audiod_status
!= AUDIOD_OFF
)
1298 sched_request_barrier_or_min_delay(&st
->restart_barrier
, s
);
1300 sched_request_barrier(&afi
[cafn
].restart_barrier
, s
);
1302 * If para_server is playing we'd like to have a smooth time display
1303 * even if we are running in standby mode. So we request a timeout that
1304 * expires at the next full second.
1306 if (stat_task
->vss_status
& VSS_STATUS_FLAG_PLAYING
)
1307 sched_request_timeout_ms(1000 - now
->tv_usec
/ 1000, s
);
1313 /* restart the client task if necessary */
1314 static int status_post_select(struct sched
*s
, void *context
)
1316 struct status_task
*st
= context
;
1319 ret
= task_get_notification(st
->task
);
1322 if (audiod_status
== AUDIOD_OFF
) {
1325 if (task_status(st
->ct
->task
) >= 0) {
1326 task_notify(st
->ct
->task
, E_AUDIOD_OFF
);
1330 st
->clock_diff_count
= OPT_UINT32_VAL(CLOCK_DIFF_COUNT
);
1337 ret
= btr_node_status(st
->btrn
, st
->min_iqs
, BTR_NT_LEAF
);
1342 if (st
->ct
->status
!= CL_EXECUTING
)
1345 struct timeval diff
;
1346 tv_diff(now
, &st
->last_status_read
, &diff
);
1347 if (diff
.tv_sec
> 61)
1348 task_notify(st
->ct
->task
, E_STATUS_TIMEOUT
);
1351 btr_merge(st
->btrn
, st
->min_iqs
);
1352 sz
= btr_next_buffer(st
->btrn
, &buf
);
1353 ret
= for_each_stat_item(buf
, sz
, update_item
);
1355 task_notify(st
->ct
->task
, -ret
);
1359 btr_consume(st
->btrn
, sz
- ret
);
1360 st
->last_status_read
= *now
;
1362 } else /* current status item crosses buffers */
1363 st
->min_iqs
= sz
+ 1;
1366 btr_drain(st
->btrn
);
1367 st
->current_audio_format_num
= -1;
1368 if (tv_diff(now
, &st
->restart_barrier
, NULL
) < 0)
1370 if (st
->clock_diff_count
) { /* get status only one time */
1371 char *argv
[] = {"audiod", "--", "stat", "-p", "-n=1", NULL
};
1373 PARA_INFO_LOG("clock diff count: %u\n", st
->clock_diff_count
);
1374 st
->clock_diff_count
--;
1375 client_open(argc
, argv
, &st
->ct
, NULL
, NULL
, st
->btrn
, s
);
1376 set_stat_task_restart_barrier(2);
1379 char *argv
[] = {"audiod", "--", "stat", "-p", NULL
};
1381 client_open(argc
, argv
, &st
->ct
, NULL
, NULL
, st
->btrn
, s
);
1382 set_stat_task_restart_barrier(5);
1384 free(stat_item_values
[SI_basename
]);
1385 stat_item_values
[SI_basename
] = para_strdup(
1386 "no connection to para_server");
1387 stat_client_write_item(SI_basename
);
1388 st
->last_status_read
= *now
;
1390 start_stop_decoders();
1394 static void init_status_task(struct status_task
*st
)
1396 memset(st
, 0, sizeof(struct status_task
));
1397 st
->sa_time_diff_sign
= 1;
1398 st
->clock_diff_count
= OPT_UINT32_VAL(CLOCK_DIFF_COUNT
);
1399 st
->current_audio_format_num
= -1;
1400 st
->btrn
= btr_new_node(&(struct btr_node_description
)
1401 EMBRACE(.name
= "stat"));
1403 stat_task
->task
= task_register(&(struct task_info
) {
1405 .pre_select
= status_pre_select
,
1406 .post_select
= status_post_select
,
1407 .context
= stat_task
,
1411 static void set_initial_status(void)
1413 audiod_status
= AUDIOD_ON
;
1414 if (!OPT_GIVEN(MODE
))
1416 if (!strcmp(OPT_STRING_VAL(MODE
), "sb")) {
1417 audiod_status
= AUDIOD_STANDBY
;
1420 if (!strcmp(OPT_STRING_VAL(MODE
), "off")) {
1421 audiod_status
= AUDIOD_OFF
;
1424 if (strcmp(OPT_STRING_VAL(MODE
), "on"))
1425 PARA_WARNING_LOG("invalid mode\n");
1429 * Lookup the given UID in the whitelist.
1431 * The whitelist is the array of arguments to the --user-allow opion. If the
1432 * option was not given, the array is empty, in which case the check succeeds.
1434 * \param uid User ID to look up.
1436 * \return True if --user-allow was not given, or if uid matches an element of
1439 bool uid_is_whitelisted(uid_t uid
)
1443 if (!OPT_GIVEN(USER_ALLOW
))
1445 for (i
= 0; i
< OPT_GIVEN(USER_ALLOW
); i
++)
1446 if (uid
== uid_whitelist
[i
])
1451 static void handle_help_flags(void)
1454 bool d
= OPT_GIVEN(DETAILED_HELP
);
1457 help
= lls_long_help(CMD_PTR
);
1458 else if (OPT_GIVEN(HELP
))
1459 help
= lls_short_help(CMD_PTR
);
1462 printf("%s\n", help
);
1464 print_receiver_helps(d
);
1465 print_filter_helps(d
);
1466 print_writer_helps(d
);
1471 * the main function of para_audiod
1473 * \param argc usual argument count
1474 * \param argv usual argument vector
1476 * \return EXIT_SUCCESS or EXIT_FAILURE
1478 * \sa para_audiod(1)
1480 int main(int argc
, char *argv
[])
1483 struct command_task command_task_struct
, *cmd_task
= &command_task_struct
;
1487 ret
= lls(lls_parse(argc
, argv
, CMD_PTR
, &lpr
, &errctx
));
1490 daemon_set_loglevel(ENUM_STRING_VAL(LOGLEVEL
));
1491 daemon_drop_privileges_or_die(OPT_STRING_VAL(USER
),
1492 OPT_STRING_VAL(GROUP
));
1493 version_handle_flag("audiod", OPT_GIVEN(VERSION
));
1494 handle_help_flags();
1495 parse_config_or_die();
1496 init_random_seed_or_die();
1497 daemon_set_priority(OPT_UINT32_VAL(PRIORITY
));
1499 if (daemon_init_colors_or_die(OPT_UINT32_VAL(COLOR
), COLOR_AUTO
,
1500 COLOR_NO
, OPT_GIVEN(LOGFILE
))) {
1501 for (i
= 0; i
< OPT_GIVEN(LOG_COLOR
); i
++)
1502 daemon_set_log_color_or_die(lls_string_val(i
,
1503 OPT_RESULT(LOG_COLOR
)));
1505 daemon_set_flag(DF_LOG_TIME
);
1506 daemon_set_flag(DF_LOG_HOSTNAME
);
1507 daemon_set_flag(DF_LOG_LL
);
1508 if (OPT_GIVEN(LOG_TIMING
))
1509 daemon_set_flag(DF_LOG_TIMING
);
1510 if (OPT_GIVEN(LOGFILE
)) {
1511 daemon_set_logfile(OPT_STRING_VAL(LOGFILE
));
1512 daemon_open_log_or_die();
1514 ret
= parse_stream_args();
1516 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
1519 daemon_log_welcome("audiod");
1520 daemon_set_start_time();
1521 set_initial_status();
1524 setup_signal_handling();
1526 init_status_task(stat_task
);
1527 init_command_task(cmd_task
);
1529 if (OPT_GIVEN(DAEMON
))
1530 daemonize(false /* parent exits immediately */);
1532 signal_task
->task
= task_register(&(struct task_info
) {
1534 .pre_select
= signal_pre_select
,
1535 .post_select
= signal_post_select
,
1536 .context
= signal_task
,
1539 sched
.default_timeout
.tv_sec
= 2;
1540 sched
.default_timeout
.tv_usec
= 999 * 1000;
1541 ret
= schedule(&sched
);
1543 sched_shutdown(&sched
);
1544 signal_shutdown(signal_task
);
1547 lls_free_parse_result(lpr
, CMD_PTR
);
1549 PARA_ERROR_LOG("%s\n", errctx
);
1551 PARA_EMERG_LOG("%s\n", para_strerror(-ret
));
1552 return ret
< 0? EXIT_FAILURE
: EXIT_SUCCESS
;