2 * Copyright (C) 1997-2007 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file command.c Client authentication and server commands. */
11 #include <sys/types.h>
13 #include <openssl/rc4.h>
17 #include "server.cmdline.h"
29 #include "user_list.h"
30 #include "server_command_list.h"
31 #include "afs_command_list.h"
33 /** Commands including options must be shorter than this. */
34 #define MAX_COMMAND_LEN 32768
36 static RC4_KEY rc4_recv_key
;
37 static RC4_KEY rc4_send_key
;
38 static unsigned char rc4_buf
[2 * RC4_KEY_LEN
];
40 extern const char *status_item_list
[NUM_STAT_ITEMS
];
41 extern struct misc_meta_data
*mmd
;
42 extern struct sender senders
[];
44 static void dummy(__a_unused
int s
)
47 static void mmd_dup(struct misc_meta_data
*new_mmd
)
55 * compute human readable string containing
56 * vss status for given integer value
58 static char *vss_status_tohuman(unsigned int flags
)
60 if (flags
& VSS_PLAYING
)
61 return para_strdup("playing");
62 else if (flags
& VSS_NEXT
)
63 return para_strdup("stopped");
65 return para_strdup("paused");
69 * return human readable permission string. Never returns NULL.
71 static char *cmd_perms_itohuman(unsigned int perms
)
73 char *msg
= para_malloc(5 * sizeof(char));
75 msg
[0] = perms
& AFS_READ
? 'a' : '-';
76 msg
[1] = perms
& AFS_WRITE
? 'A' : '-';
77 msg
[2] = perms
& VSS_READ
? 'v' : '-';
78 msg
[3] = perms
& VSS_WRITE
? 'V' : '-';
86 static char *vss_get_status_flags(unsigned int flags
)
88 char *msg
= para_malloc(5 * sizeof(char));
90 msg
[0] = (flags
& VSS_PLAYING
)? 'P' : '_';
91 msg
[1] = (flags
& VSS_NOMORE
)? 'O' : '_';
92 msg
[2] = (flags
& VSS_NEXT
)? 'N' : '_';
93 msg
[3] = (flags
& VSS_REPOS
)? 'R' : '_';
98 static char *get_status(struct misc_meta_data
*nmmd
)
100 char *basename
, *dirname
, *ret
, mtime
[30] = "";
101 char *status
, *flags
; /* vss status info */
102 char *ut
= uptime_str();
103 long offset
= (nmmd
->offset
+ 500) / 1000;
107 /* report real status */
108 status
= vss_status_tohuman(nmmd
->vss_status_flags
);
109 flags
= vss_get_status_flags(nmmd
->vss_status_flags
);
110 basename
= para_basename(nmmd
->afd
.path
);
111 dirname
= para_dirname(nmmd
->afd
.path
);
113 localtime_r(&nmmd
->mtime
, &mtime_tm
);
114 strftime(mtime
, 29, "%a %b %d %Y", &mtime_tm
);
116 gettimeofday(&now
, NULL
);
118 "%s:%zu\n" "%s:%s\n" "%s:%lu\n" "%s:%u\n"
119 "%s:%s\n" "%s:%s\n" "%s:%s\n" "%s:%u\n"
120 "%s:%li\n" "%s:%s\n" "%s:%s\n" "%s"
121 "%s:%s\n" "%s:%lu.%lu\n" "%s:%lu.%lu\n" "%s:%s\n"
123 status_item_list
[SI_FILE_SIZE
], nmmd
->size
/ 1024,
124 status_item_list
[SI_MTIME
], mtime
,
125 status_item_list
[SI_LENGTH
], nmmd
->afd
.afhi
.seconds_total
,
126 status_item_list
[SI_NUM_PLAYED
], nmmd
->num_played
,
128 status_item_list
[SI_BASENAME
], basename
? basename
: "(none)",
129 status_item_list
[SI_STATUS
], status
,
130 status_item_list
[SI_STATUS_FLAGS
], flags
,
131 status_item_list
[SI_IMAGE_ID
], nmmd
->afd
.afsi
.image_id
,
133 status_item_list
[SI_OFFSET
], offset
,
134 status_item_list
[SI_FORMAT
], basename
?
135 audio_format_name(nmmd
->afd
.afsi
.audio_format_id
)
137 status_item_list
[SI_AFS_MODE
], mmd
->afs_mode_string
,
138 nmmd
->afd
.afhi
.info_string
,
140 status_item_list
[SI_UPTIME
], ut
,
141 status_item_list
[SI_STREAM_START
],
142 (long unsigned)nmmd
->stream_start
.tv_sec
,
143 (long unsigned)nmmd
->stream_start
.tv_usec
,
144 status_item_list
[SI_CURRENT_TIME
],
145 (long unsigned)now
.tv_sec
,
146 (long unsigned)now
.tv_usec
,
147 status_item_list
[SI_ATTRIBUTES
], mmd
->afd
.attributes_string
,
149 status_item_list
[SI_DIRECTORY
], dirname
? dirname
: "(none)",
150 status_item_list
[SI_LYRICS_ID
], nmmd
->afd
.afsi
.lyrics_id
161 static int check_sender_args(int argc
, char * const * argv
, struct sender_command_data
*scd
)
164 /* this has to match sender.h */
165 const char *subcmds
[] = {"add", "delete", "allow", "deny", "on", "off", NULL
};
167 scd
->sender_num
= -1;
169 return -E_COMMAND_SYNTAX
;
170 for (i
= 0; senders
[i
].name
; i
++)
171 if (!strcmp(senders
[i
].name
, argv
[1]))
173 PARA_DEBUG_LOG("%d:%s\n", argc
, argv
[1]);
174 if (!senders
[i
].name
)
175 return -E_COMMAND_SYNTAX
;
177 for (i
= 0; subcmds
[i
]; i
++)
178 if (!strcmp(subcmds
[i
], argv
[2]))
181 return -E_COMMAND_SYNTAX
;
184 if (!senders
[scd
->sender_num
].client_cmds
[scd
->cmd_num
]) {
186 return -E_SENDER_CMD
;
189 switch (scd
->cmd_num
) {
193 return -E_COMMAND_SYNTAX
;
197 if (argc
!= 4 && argc
!= 5)
198 return -E_COMMAND_SYNTAX
;
199 if (!inet_pton(AF_INET
, argv
[3], &scd
->addr
))
200 return -E_COMMAND_SYNTAX
;
203 scd
->netmask
= atoi(argv
[4]);
204 if (scd
->netmask
< 0 || scd
->netmask
> 32)
205 return -E_COMMAND_SYNTAX
;
210 if (argc
!= 4 && argc
!= 5)
211 return -E_COMMAND_SYNTAX
;
212 if (!inet_pton(AF_INET
, argv
[3], &scd
->addr
))
213 return -E_COMMAND_SYNTAX
;
216 scd
->port
= atoi(argv
[4]);
217 if (scd
->port
< 0 || scd
->port
> 65535)
218 return -E_COMMAND_SYNTAX
;
222 return -E_COMMAND_SYNTAX
;
227 int com_sender(int fd
, int argc
, char * const * argv
)
230 struct sender_command_data scd
;
234 for (i
= 0; senders
[i
].name
; i
++) {
235 char *tmp
= make_message("%s%s\n",
236 msg
? msg
: "", senders
[i
].name
);
240 ret
= send_buffer(fd
, msg
);
244 ret
= check_sender_args(argc
, argv
, &scd
);
247 if (scd
.sender_num
< 0)
249 msg
= senders
[scd
.sender_num
].help();
250 send_buffer(fd
, msg
);
254 for (i
= 0; i
< 10; i
++) {
256 if (mmd
->sender_cmd_data
.cmd_num
>= 0) {
261 mmd
->sender_cmd_data
= scd
;
265 return (i
< 10)? 1 : -E_LOCK
;
269 int com_si(int fd
, int argc
, __a_unused
char * const * argv
)
273 char *sender_info
= NULL
, *sender_list
= NULL
;
276 return -E_COMMAND_SYNTAX
;
278 for (i
= 0; senders
[i
].name
; i
++) {
279 char *info
= senders
[i
].info();
280 sender_info
= para_strcat(sender_info
, info
);
282 sender_list
= para_strcat(sender_list
, senders
[i
].name
);
283 sender_list
= para_strcat(sender_list
, " ");
286 ret
= send_va_buffer(fd
, "up: %s\nplayed: %u\n"
288 "connections (active/accepted/total): %u/%u/%u\n"
289 "current loglevel: %i\n"
290 "supported audio formats: %s\n"
291 "supported senders: %s\n"
295 mmd
->active_connections
,
299 supported_audio_formats(),
311 int com_version(int fd
, int argc
, __a_unused
char * const * argv
)
314 return -E_COMMAND_SYNTAX
;
315 return send_buffer(fd
, VERSION_TEXT("server")
316 "built: " BUILD_DATE
"\n"
317 SYSTEM
", " CC_VERSION
"\n"
322 int com_stat(int fd
, int argc
, char * const * argv
)
324 int ret
, num
= 0;/* status will be printed that many
325 * times. num <= 0 means: print forever
327 struct misc_meta_data tmp
, *nmmd
= &tmp
;
330 signal(SIGUSR1
, dummy
);
337 s
= get_status(nmmd
);
338 ret
= send_buffer(fd
, s
);
347 return -E_SERVER_CRASH
;
353 static int send_list_of_commands(int fd
, struct server_command
*cmd
,
358 for (i
= 1; cmd
->name
; cmd
++, i
++) {
359 char *perms
= cmd_perms_itohuman(cmd
->perms
);
360 ret
= send_va_buffer(fd
, "%s\t%s\t%s\t%s\n", cmd
->name
,
371 /* returns string that must be freed by the caller */
372 static struct server_command
*get_cmd_ptr(const char *name
, char **handler
)
374 struct server_command
*cmd
;
376 for (cmd
= server_cmds
; cmd
->name
; cmd
++)
377 if (!strcmp(cmd
->name
, name
)) {
379 *handler
= para_strdup("server"); /* server commands */
382 /* not found, look for commands supported by afs */
383 for (cmd
= afs_cmds
; cmd
->name
; cmd
++)
384 if (!strcmp(cmd
->name
, name
)) {
386 *handler
= para_strdup("afs");
393 int com_help(int fd
, int argc
, char * const * argv
)
395 struct server_command
*cmd
;
396 char *perms
, *handler
;
400 /* no argument given, print list of commands */
401 if ((ret
= send_list_of_commands(fd
, server_cmds
, "server")) < 0)
403 return send_list_of_commands(fd
, afs_cmds
, "afs");
405 /* argument given for help */
406 cmd
= get_cmd_ptr(argv
[1], &handler
);
411 perms
= cmd_perms_itohuman(cmd
->perms
);
412 ret
= send_va_buffer(fd
,
431 int com_hup(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
434 return -E_COMMAND_SYNTAX
;
435 kill(getppid(), SIGHUP
);
440 int com_term(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
443 return -E_COMMAND_SYNTAX
;
444 kill(getppid(), SIGTERM
);
448 int com_play(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
451 return -E_COMMAND_SYNTAX
;
453 mmd
->new_vss_status_flags
|= VSS_PLAYING
;
454 mmd
->new_vss_status_flags
&= ~VSS_NOMORE
;
461 int com_stop(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
464 return -E_COMMAND_SYNTAX
;
466 mmd
->new_vss_status_flags
&= ~VSS_PLAYING
;
467 mmd
->new_vss_status_flags
&= ~VSS_REPOS
;
468 mmd
->new_vss_status_flags
|= VSS_NEXT
;
474 int com_pause(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
477 return -E_COMMAND_SYNTAX
;
481 mmd
->new_vss_status_flags
&= ~VSS_PLAYING
;
482 mmd
->new_vss_status_flags
&= ~VSS_NEXT
;
488 int com_next(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
491 return -E_COMMAND_SYNTAX
;
494 mmd
->new_vss_status_flags
|= VSS_NEXT
;
500 int com_nomore(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
503 return -E_COMMAND_SYNTAX
;
505 if (vss_playing() || vss_paused())
506 mmd
->new_vss_status_flags
|= VSS_NOMORE
;
512 int com_ff(__a_unused
int fd
, int argc
, char * const * argv
)
515 int ret
, backwards
= 0;
520 return -E_COMMAND_SYNTAX
;
521 if (!(ret
= sscanf(argv
[1], "%u%c", &i
, &c
)))
522 return -E_COMMAND_SYNTAX
;
523 if (ret
> 1 && c
== '-')
524 backwards
= 1; /* jmp backwards */
526 ret
= -E_NO_AUDIO_FILE
;
527 if (!mmd
->afd
.afhi
.chunks_total
|| !mmd
->afd
.afhi
.seconds_total
)
529 promille
= (1000 * mmd
->current_chunk
) / mmd
->afd
.afhi
.chunks_total
;
531 promille
-= 1000 * i
/ mmd
->afd
.afhi
.seconds_total
;
533 promille
+= 1000 * i
/ mmd
->afd
.afhi
.seconds_total
;
536 if (promille
> 1000) {
537 mmd
->new_vss_status_flags
|= VSS_NEXT
;
540 mmd
->repos_request
= (mmd
->afd
.afhi
.chunks_total
* promille
) / 1000;
541 mmd
->new_vss_status_flags
|= VSS_REPOS
;
542 mmd
->new_vss_status_flags
&= ~VSS_NEXT
;
551 int com_jmp(__a_unused
int fd
, int argc
, char * const * argv
)
557 return -E_COMMAND_SYNTAX
;
558 if (sscanf(argv
[1], "%lu", &i
) <= 0)
559 return -E_COMMAND_SYNTAX
;
561 ret
= -E_NO_AUDIO_FILE
;
562 if (!mmd
->afd
.afhi
.chunks_total
)
566 PARA_INFO_LOG("jumping to %lu%%\n", i
);
567 mmd
->repos_request
= (mmd
->afd
.afhi
.chunks_total
* i
+ 50)/ 100;
568 PARA_INFO_LOG("sent: %lu, offset before jmp: %lu\n",
569 mmd
->chunks_sent
, mmd
->offset
);
570 mmd
->new_vss_status_flags
|= VSS_REPOS
;
571 mmd
->new_vss_status_flags
&= ~VSS_NEXT
;
580 * check if perms are sufficient to exec a command having perms cmd_perms.
581 * Returns 0 if perms are sufficient, -E_PERM otherwise.
583 static int check_perms(unsigned int perms
, struct server_command
*cmd_ptr
)
585 PARA_DEBUG_LOG("%s", "checking permissions\n");
586 return (cmd_ptr
->perms
& perms
) < cmd_ptr
->perms
? -E_PERM
: 0;
590 * Parse first string from *cmd and lookup in table of valid commands.
591 * On error, NULL is returned.
593 static struct server_command
*parse_cmd(const char *cmdstr
)
598 sscanf(cmdstr
, "%200s%n", buf
, &n
);
602 return get_cmd_ptr(buf
, NULL
);
605 static void init_rc4_keys(void)
609 for (i
= 0; i
< 2 * RC4_KEY_LEN
; i
++)
610 rc4_buf
[i
] = para_random(256);
611 PARA_DEBUG_LOG("rc4 keys initialized (%u:%u)\n",
612 (unsigned char) rc4_buf
[0],
613 (unsigned char) rc4_buf
[RC4_KEY_LEN
]);
614 RC4_set_key(&rc4_recv_key
, RC4_KEY_LEN
, rc4_buf
);
615 RC4_set_key(&rc4_send_key
, RC4_KEY_LEN
, rc4_buf
+ RC4_KEY_LEN
);
618 static void rc4_recv(unsigned long len
, const unsigned char *indata
,
619 unsigned char *outdata
, __a_unused
void *private_data
)
621 RC4(&rc4_recv_key
, len
, indata
, outdata
);
624 static void rc4_send(unsigned long len
, const unsigned char *indata
,
625 unsigned char *outdata
, __a_unused
void *private_data
)
627 RC4(&rc4_send_key
, len
, indata
, outdata
);
630 static int read_command(int fd
, char **result
)
634 char *command
= NULL
;
640 ret
= recv_buffer(fd
, buf
, sizeof(buf
));
646 ret
= -E_COMMAND_SYNTAX
;
647 if (command
&& numbytes
+ strlen(command
) > MAX_COMMAND_LEN
) /* DOS */
649 command
= para_strcat(command
, buf
);
650 p
= strstr(command
, EOC_MSG
);
656 ret
= command
? 1 : -E_COMMAND_SYNTAX
;
667 * perform user authentication and execute a command
669 * \param fd the file descriptor to send output to
670 * \param addr socket address info of peer
672 * \return EXIT_SUCCESS or EXIT_FAILURE
674 * Whenever para_server accepts an incoming tcp connection on
675 * the port it listens on, it forks and the resulting child
676 * calls this function.
678 * An RSA-based challenge/response is used to authenticate
679 * the peer. It that authentication succeeds, a random RC4
680 * session key is generated and sent back to the peer,
681 * encrypted with its RSA public key. From this point on,
682 * all transfers are crypted with this session key.
684 * Next it is checked if the peer supplied a valid server command or a command
685 * for the audio file selector. If yes, and if the user has sufficient
686 * permissions to execute that command, the function calls the corresponding
687 * command handler which does argument checking and further processing.
689 * In order to cope with a DOS attacks, a timeout is set up
690 * which terminates the function if the connection was not
691 * authenticated when the timeout expires.
693 * \sa alarm(2), rc4(3), crypt.c, crypt.h
695 int handle_connect(int fd
, struct sockaddr_in
*addr
)
697 int ret
, argc
, use_rc4
= 0;
699 unsigned char crypt_buf
[MAXLINE
];
701 struct server_command
*cmd
= NULL
;
702 long unsigned challenge_nr
, chall_response
;
704 char *p
, *command
= NULL
;
707 signal(SIGCHLD
, SIG_IGN
);
708 signal(SIGINT
, SIG_DFL
);
709 signal(SIGTERM
, SIG_DFL
);
710 signal(SIGHUP
, SIG_DFL
);
711 signal(SIGUSR1
, SIG_IGN
);
713 challenge_nr
= random();
714 /* send Welcome message */
715 ret
= send_va_buffer(fd
, "This is para_server, version "
716 PACKAGE_VERSION
".\n" );
719 /* recv auth request line */
720 ret
= recv_buffer(fd
, buf
, sizeof(buf
));
729 if (strncmp(buf
, "auth ", 5))
732 if (numbytes
< 9 || strncmp(buf
, "auth rc4 ", 9))
733 p
= buf
+ 5; /* client version < 0.2.6 */
735 p
= buf
+ 9; /* client version >= 0.2.6 */
738 PARA_DEBUG_LOG("received %s request for user %s\n",
739 use_rc4
? "rc4" : "auth", p
);
744 ret
= para_encrypt_challenge(u
->rsa
, challenge_nr
, crypt_buf
);
748 PARA_DEBUG_LOG("sending %zu byte challenge\n", numbytes
);
749 /* We can't use send_buffer here since buf may contain null bytes */
750 ret
= send_bin_buffer(fd
,(char *) crypt_buf
, numbytes
);
753 /* recv decrypted number */
754 ret
= recv_buffer(fd
, buf
, sizeof(buf
));
761 if (sscanf(buf
, CHALLENGE_RESPONSE_MSG
"%lu", &chall_response
) < 1
762 || chall_response
!= challenge_nr
)
764 /* auth successful, send 'Proceed' message */
765 PARA_INFO_LOG("good auth for %s (%lu)\n", u
->name
, challenge_nr
);
766 sprintf(buf
, "%s", PROCEED_MSG
);
769 ret
= para_encrypt_buffer(u
->rsa
, rc4_buf
, 2 * RC4_KEY_LEN
,
770 (unsigned char *)buf
+ PROCEED_MSG_LEN
+ 1);
773 numbytes
= ret
+ strlen(PROCEED_MSG
) + 1;
775 numbytes
= strlen(buf
);
776 ret
= send_bin_buffer(fd
, buf
, numbytes
);
780 enable_crypt(fd
, rc4_recv
, rc4_send
, NULL
);
781 ret
= read_command(fd
, &command
);
785 cmd
= parse_cmd(command
);
788 /* valid command, check permissions */
789 ret
= check_perms(u
->perms
, cmd
);
792 /* valid command and sufficient perms */
794 argc
= split_args(command
, &argv
, "\n");
798 PARA_NOTICE_LOG("calling com_%s() for %s@%s\n", cmd
->name
, u
->name
,
799 inet_ntoa(addr
->sin_addr
));
800 ret
= cmd
->handler(fd
, argc
, argv
);
806 PARA_NOTICE_LOG("%s\n", PARA_STRERROR(-ret
));
807 if (ret
!= -E_SEND
&& ret
!= -E_RECV
)
808 send_va_buffer(fd
, "%s\n", PARA_STRERROR(-ret
));
814 if (cmd
&& (cmd
->perms
& AFS_WRITE
) && ret
>= 0)
816 mmd
->active_connections
--;