2 * Copyright (C) 2005-2008 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file audiod_command.c commands for para_audiod */
13 #include "audiod.cmdline.h"
15 #include "close_on_fork.h"
18 #include "grab_client.cmdline.h"
19 #include "grab_client.h"
27 #include "audiod_command_list.h"
29 /** iterate over the array of all audiod commands */
30 #define FOR_EACH_COMMAND(c) for (c = 0; audiod_cmds[c].name; c++)
32 static int client_write(int fd
, const char *buf
)
34 size_t len
= strlen(buf
);
35 return write(fd
, buf
, len
) != len
? -E_CLIENT_WRITE
: 1;
38 static char *get_time_string(struct timeval
*newest_stime
)
40 struct timeval diff
, adj_stream_start
, tmp
;
41 int total
= 0, use_server_time
= 1,
42 length_seconds
= stat_task
->length_seconds
;
44 if (!stat_task
->playing
) {
47 return make_message("%s:\n", status_item_list
[SI_PLAY_TIME
]);
49 if (audiod_status
== AUDIOD_OFF
)
51 if (stat_task
->sa_time_diff_sign
> 0)
52 tv_diff(&stat_task
->server_stream_start
, &stat_task
->sa_time_diff
,
55 tv_add(&stat_task
->server_stream_start
, &stat_task
->sa_time_diff
,
57 tmp
= adj_stream_start
;
58 if (newest_stime
&& audiod_status
== AUDIOD_ON
) {
59 tv_diff(newest_stime
, &adj_stream_start
, &diff
);
60 if (tv2ms(&diff
) < 5000) {
65 tv_diff(now
, &tmp
, &diff
);
66 total
= diff
.tv_sec
+ stat_task
->offset_seconds
;
67 if (total
> length_seconds
)
68 total
= length_seconds
;
73 "%s: %s%d:%02d [%d:%02d] (%d%%/%d:%02d)\n",
74 status_item_list
[SI_PLAY_TIME
],
75 use_server_time
? "~" : "",
78 (length_seconds
- total
) / 60,
79 (length_seconds
- total
) % 60,
80 length_seconds
? (total
* 100 + length_seconds
/ 2) /
87 __malloc
static char *audiod_status_string(void)
89 const char *status
= (audiod_status
== AUDIOD_ON
)?
90 "on" : (audiod_status
== AUDIOD_OFF
)? "off": "sb";
91 return make_message("%s: %s\n", status_item_list
[SI_AUDIOD_STATUS
], status
);
94 static struct timeval
*wstime(void)
97 struct timeval
*max
= NULL
;
99 struct slot_info
*s
= &slot
[i
];
102 if (max
&& tv_diff(&s
->wstime
, max
, NULL
) <= 0)
108 __malloc
static char *decoder_flags(void)
111 char flags
[MAX_STREAM_SLOTS
+ 1];
114 struct slot_info
*s
= &slot
[i
];
116 if (s
->receiver_node
)
122 flags
[MAX_STREAM_SLOTS
] = '\0';
123 return make_message("%s: %s\n", status_item_list
[SI_DECODER_FLAGS
],
127 static int dump_commands(int fd
)
129 char *buf
= para_strdup(""), *tmp
= NULL
;
133 FOR_EACH_COMMAND(i
) {
134 tmp
= make_message("%s%s\t%s\n", buf
, audiod_cmds
[i
].name
,
135 audiod_cmds
[i
].description
);
139 ret
= client_write(fd
, buf
);
145 * command handlers don't close their fd on errors (ret < 0) so that
146 * its caller can send an error message. Otherwise (ret >= 0) it's up
147 * to each individual command to close the fd if necessary.
150 int com_help(int fd
, int argc
, char **argv
)
154 const char *dflt
= "No such command. Available commands:\n";
157 ret
= dump_commands(fd
);
160 FOR_EACH_COMMAND(i
) {
161 if (strcmp(audiod_cmds
[i
].name
, argv
[1]))
165 "SYNOPSIS\n\tpara_audioc %s\n"
168 audiod_cmds
[i
].description
,
169 audiod_cmds
[i
].usage
,
172 ret
= client_write(fd
, buf
);
176 ret
= client_write(fd
, dflt
);
178 ret
= dump_commands(fd
);
185 int com_tasks(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
187 char *tl
= get_task_list();
190 ret
= client_write(fd
, tl
);
197 int com_kill(int fd
, int argc
, char **argv
)
201 return -E_AUDIOD_SYNTAX
;
202 for (i
= 1; i
< argc
; i
++) {
203 ret
= kill_task(argv
[i
]);
212 int com_stat(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
216 long unsigned mask
= ~0LU;
220 for (i
= 1; i
< argc
; i
++) {
221 ret
= stat_item_valid(argv
[i
]);
227 PARA_INFO_LOG("mask: 0x%lx\n", mask
);
228 if (mask
& (1 << SI_PLAY_TIME
)) {
229 struct timeval
*t
= wstime();
230 char *ts
= get_time_string(t
);
232 ret
= client_write(fd
, ts
);
238 if (mask
& (1 << SI_AUDIOD_UPTIME
)) {
239 char *tmp
, *us
= uptime_str();
240 tmp
= make_message("%s: %s\n",
241 status_item_list
[SI_AUDIOD_UPTIME
], us
);
243 ret
= client_write(fd
, tmp
);
248 if (mask
& (1 << SI_AUDIOD_STATUS
)) {
249 char *s
= audiod_status_string();
250 ret
= client_write(fd
, s
);
255 if (mask
& (1 << SI_DECODER_FLAGS
)) {
256 char *df
= decoder_flags();
257 ret
= client_write(fd
, df
);
262 FOR_EACH_STATUS_ITEM(i
) {
264 if (!((1 << i
) & mask
))
266 v
= stat_task
->stat_item_values
[i
];
267 tmp
= make_message("%s%s%s", buf
? buf
: "",
268 v
? v
: "", v
? "\n" : "");
272 ret
= client_write(fd
, buf
);
275 ret
= stat_client_add(fd
, mask
);
280 static struct filter_node
*find_filter_node(int slot_num
, int format
, int filternum
)
285 struct slot_info
*s
= &slot
[i
];
286 if (s
->format
< 0 || !s
->fc
)
288 if (slot_num
>= 0 && slot_num
!= i
)
290 if (format
>= 0 && s
->format
!= format
)
292 if (num_filters(i
) <= filternum
)
295 return s
->fc
->filter_nodes
+ filternum
;
300 int com_grab(int fd
, char *cmdline
)
302 struct grab_client
*gc
;
303 struct filter_node
*fn
;
307 gc
= grab_client_new(fd
, cmdline
, &err
);
310 fn
= find_filter_node(gc
->conf
->slot_arg
, gc
->audio_format_num
, gc
->conf
->filter_num_arg
);
312 activate_grab_client(gc
, fn
);
315 if (err
!= -E_GC_HELP_GIVEN
&& err
!= -E_GC_VERSION_GIVEN
)
317 if (err
== -E_GC_HELP_GIVEN
) {
318 msg
= make_message("%s\n\n", grab_client_args_info_usage
);
319 for (i
= 0; grab_client_args_info_help
[i
]; i
++) {
320 char *tmp
= make_message("%s%s\n", msg
,
321 grab_client_args_info_help
[i
]);
326 msg
= make_message("%s %s\n",
327 GRAB_CLIENT_CMDLINE_PARSER_PACKAGE
,
328 GRAB_CLIENT_CMDLINE_PARSER_VERSION
);
329 err
= client_write(fd
, msg
);
337 __noreturn
int com_term(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
340 clean_exit(EXIT_SUCCESS
, "terminating on user request");
343 int com_on(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
345 audiod_status
= AUDIOD_ON
;
350 int com_off(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
352 audiod_status
= AUDIOD_OFF
;
357 int com_sb(int fd
, __a_unused
int argc
, __a_unused
char **argv
)
359 audiod_status
= AUDIOD_STANDBY
;
364 int com_cycle(int fd
, int argc
, char **argv
)
366 switch (audiod_status
) {
368 return com_sb(fd
, argc
, argv
);
371 return com_on(fd
, argc
, argv
);
374 return com_off(fd
, argc
, argv
);
381 static int check_perms(uid_t uid
)
385 if (!conf
.user_allow_given
)
387 for (i
= 0; i
< conf
.user_allow_given
; i
++)
388 if (uid
== conf
.user_allow_arg
[i
])
390 return -E_UCRED_PERM
;
394 * handle arriving connections on the local socket
396 * \param accept_fd the fd to call accept() on
398 * This is called whenever para_audiod's main task detects an incoming
399 * connection by the readability of \a accept_fd. This function reads the
400 * command sent by the peer, checks the connecting user's permissions by using
401 * unix socket credentials (if supported by the OS) and calls the corresponding
402 * command handler if permissions are OK.
404 * \return positive on success, negative on errors
406 * \sa para_accept(), recv_cred_buffer()
408 int handle_connect(int accept_fd
)
410 int i
, argc
, ret
, clifd
= -1;
411 char *cmd
= NULL
, *p
, *buf
= para_calloc(MAXLINE
), **argv
= NULL
;
412 struct sockaddr_un unix_addr
;
415 ret
= para_accept(accept_fd
, &unix_addr
, sizeof(struct sockaddr_un
));
419 ret
= recv_cred_buffer(clifd
, buf
, MAXLINE
- 1);
423 PARA_INFO_LOG("connection from user %i, buf: %s\n", ret
, buf
);
424 ret
= check_perms(uid
);
427 ret
= -E_INVALID_AUDIOD_CMD
;
428 cmd
= para_strdup(buf
);
429 p
= strchr(cmd
, '\n');
436 for (i
= 0; audiod_cmds
[i
].name
; i
++) {
438 if (strcmp(audiod_cmds
[i
].name
, cmd
))
440 if (audiod_cmds
[i
].handler
) {
441 argc
= split_args(buf
, &argv
, "\n");
442 PARA_INFO_LOG("argv[0]: %s, argc= %d\n", argv
[0], argc
);
443 ret
= audiod_cmds
[i
].handler(clifd
, argc
, argv
);
446 for (j
= 0; p
[j
]; j
++)
449 PARA_INFO_LOG("cmd: %s, options: %s\n", cmd
, p
);
450 ret
= audiod_cmds
[i
].line_handler(clifd
, p
);
453 ret
= -E_INVALID_AUDIOD_CMD
;
458 if (clifd
> 0 && ret
< 0 && ret
!= -E_CLIENT_WRITE
) {
459 char *tmp
= make_message("%s\n", para_strerror(-ret
));
460 client_write(clifd
, tmp
);
467 * send the current audiod status to all connected stat clients
469 void audiod_status_dump(void)
471 struct timeval
*t
= wstime();
472 char *old
, *new, *tmp
;
474 old
= stat_task
->stat_item_values
[SI_PLAY_TIME
];
475 new = get_time_string(t
);
477 if (!old
|| strcmp(old
, new)) {
479 stat_client_write(new, SI_PLAY_TIME
);
480 stat_task
->stat_item_values
[SI_PLAY_TIME
] = new;
486 old
= stat_task
->stat_item_values
[SI_AUDIOD_UPTIME
];
487 if (!old
|| strcmp(old
, new)) {
489 tmp
= make_message("%s: %s\n",
490 status_item_list
[SI_AUDIOD_UPTIME
], new);
491 stat_client_write(tmp
, SI_AUDIOD_UPTIME
);
493 stat_task
->stat_item_values
[SI_AUDIOD_UPTIME
] = new;
497 old
= stat_task
->stat_item_values
[SI_AUDIOD_STATUS
];
498 new = audiod_status_string();
499 if (!old
|| strcmp(old
, new)) {
501 stat_client_write(new, SI_AUDIOD_STATUS
);
502 stat_task
->stat_item_values
[SI_AUDIOD_STATUS
] = new;
506 old
= stat_task
->stat_item_values
[SI_DECODER_FLAGS
];
507 new = decoder_flags();
508 if (!old
|| strcmp(old
, new)) {
510 stat_client_write(new, SI_DECODER_FLAGS
);
511 stat_task
->stat_item_values
[SI_DECODER_FLAGS
] = new;
517 * send empty status list
519 * Send to each connected client the full status item list
522 void dump_empty_status(void)
526 FOR_EACH_STATUS_ITEM(i
) {
527 char *tmp
= make_message("%s:\n", status_item_list
[i
]);
528 stat_client_write(tmp
, i
);
530 free(stat_task
->stat_item_values
[i
]);
531 stat_task
->stat_item_values
[i
] = NULL
;