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("para_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
))
390 int com_help(int fd
, int argc
, char * const * argv
)
392 struct server_command
*cmd
;
393 char *perms
, *handler
;
397 /* no argument given, print list of commands */
398 if ((ret
= send_list_of_commands(fd
, server_cmds
, "server")) < 0)
400 return send_list_of_commands(fd
, afs_cmds
, "afs");
402 /* argument given for help */
403 cmd
= get_cmd_ptr(argv
[1], &handler
);
408 perms
= cmd_perms_itohuman(cmd
->perms
);
409 ret
= send_va_buffer(fd
,
428 int com_hup(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
431 return -E_COMMAND_SYNTAX
;
432 kill(getppid(), SIGHUP
);
437 int com_term(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
440 return -E_COMMAND_SYNTAX
;
441 kill(getppid(), SIGTERM
);
445 int com_play(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
448 return -E_COMMAND_SYNTAX
;
450 mmd
->new_vss_status_flags
|= VSS_PLAYING
;
451 mmd
->new_vss_status_flags
&= ~VSS_NOMORE
;
458 int com_stop(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
461 return -E_COMMAND_SYNTAX
;
463 mmd
->new_vss_status_flags
&= ~VSS_PLAYING
;
464 mmd
->new_vss_status_flags
&= ~VSS_REPOS
;
465 mmd
->new_vss_status_flags
|= VSS_NEXT
;
471 int com_pause(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
474 return -E_COMMAND_SYNTAX
;
478 mmd
->new_vss_status_flags
&= ~VSS_PLAYING
;
479 mmd
->new_vss_status_flags
&= ~VSS_NEXT
;
485 int com_next(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
488 return -E_COMMAND_SYNTAX
;
491 mmd
->new_vss_status_flags
|= VSS_NEXT
;
497 int com_nomore(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
500 return -E_COMMAND_SYNTAX
;
502 if (vss_playing() || vss_paused())
503 mmd
->new_vss_status_flags
|= VSS_NOMORE
;
509 int com_ff(__a_unused
int fd
, int argc
, char * const * argv
)
512 int ret
, backwards
= 0;
517 return -E_COMMAND_SYNTAX
;
518 if (!(ret
= sscanf(argv
[1], "%u%c", &i
, &c
)))
519 return -E_COMMAND_SYNTAX
;
520 if (ret
> 1 && c
== '-')
521 backwards
= 1; /* jmp backwards */
523 ret
= -E_NO_AUDIO_FILE
;
524 if (!mmd
->afd
.afhi
.chunks_total
|| !mmd
->afd
.afhi
.seconds_total
)
526 promille
= (1000 * mmd
->current_chunk
) / mmd
->afd
.afhi
.chunks_total
;
528 promille
-= 1000 * i
/ mmd
->afd
.afhi
.seconds_total
;
530 promille
+= 1000 * i
/ mmd
->afd
.afhi
.seconds_total
;
533 if (promille
> 1000) {
534 mmd
->new_vss_status_flags
|= VSS_NEXT
;
537 mmd
->repos_request
= (mmd
->afd
.afhi
.chunks_total
* promille
) / 1000;
538 mmd
->new_vss_status_flags
|= VSS_REPOS
;
539 mmd
->new_vss_status_flags
&= ~VSS_NEXT
;
548 int com_jmp(__a_unused
int fd
, int argc
, char * const * argv
)
554 return -E_COMMAND_SYNTAX
;
555 if (sscanf(argv
[1], "%lu", &i
) <= 0)
556 return -E_COMMAND_SYNTAX
;
558 ret
= -E_NO_AUDIO_FILE
;
559 if (!mmd
->afd
.afhi
.chunks_total
)
563 PARA_INFO_LOG("jumping to %lu%%\n", i
);
564 mmd
->repos_request
= (mmd
->afd
.afhi
.chunks_total
* i
+ 50)/ 100;
565 PARA_INFO_LOG("sent: %lu, offset before jmp: %lu\n",
566 mmd
->chunks_sent
, mmd
->offset
);
567 mmd
->new_vss_status_flags
|= VSS_REPOS
;
568 mmd
->new_vss_status_flags
&= ~VSS_NEXT
;
577 * check if perms are sufficient to exec a command having perms cmd_perms.
578 * Returns 0 if perms are sufficient, -E_PERM otherwise.
580 static int check_perms(unsigned int perms
, struct server_command
*cmd_ptr
)
582 PARA_DEBUG_LOG("%s", "checking permissions\n");
583 return (cmd_ptr
->perms
& perms
) < cmd_ptr
->perms
? -E_PERM
: 0;
587 * Parse first string from *cmd and lookup in table of valid commands.
588 * On error, NULL is returned.
590 static struct server_command
*parse_cmd(const char *cmdstr
)
595 sscanf(cmdstr
, "%200s%n", buf
, &n
);
599 return get_cmd_ptr(buf
, NULL
);
602 static long int para_rand(long unsigned max
)
604 return (long int) ((max
+ 0.0) * (random() / (RAND_MAX
+ 1.0)));
607 static void init_rc4_keys(void)
611 for (i
= 0; i
< 2 * RC4_KEY_LEN
; i
++)
612 rc4_buf
[i
] = para_rand(256);
613 PARA_DEBUG_LOG("rc4 keys initialized (%u:%u)\n",
614 (unsigned char) rc4_buf
[0],
615 (unsigned char) rc4_buf
[RC4_KEY_LEN
]);
616 RC4_set_key(&rc4_recv_key
, RC4_KEY_LEN
, rc4_buf
);
617 RC4_set_key(&rc4_send_key
, RC4_KEY_LEN
, rc4_buf
+ RC4_KEY_LEN
);
620 static void rc4_recv(unsigned long len
, const unsigned char *indata
,
621 unsigned char *outdata
, __a_unused
void *private_data
)
623 RC4(&rc4_recv_key
, len
, indata
, outdata
);
626 static void rc4_send(unsigned long len
, const unsigned char *indata
,
627 unsigned char *outdata
, __a_unused
void *private_data
)
629 RC4(&rc4_send_key
, len
, indata
, outdata
);
632 static int read_command(int fd
, char **result
)
636 char *command
= NULL
;
642 ret
= recv_buffer(fd
, buf
, sizeof(buf
));
648 ret
= -E_COMMAND_SYNTAX
;
649 if (command
&& numbytes
+ strlen(command
) > MAX_COMMAND_LEN
) /* DOS */
651 command
= para_strcat(command
, buf
);
652 p
= strstr(command
, EOC_MSG
);
658 ret
= command
? 1 : -E_COMMAND_SYNTAX
;
669 * perform user authentication and execute a command
671 * \param fd the file descriptor to send output to
672 * \param addr socket address info of peer
674 * \return EXIT_SUCCESS or EXIT_FAILURE
676 * Whenever para_server accepts an incoming tcp connection on
677 * the port it listens on, it forks and the resulting child
678 * calls this function.
680 * An RSA-based challenge/response is used to authenticate
681 * the peer. It that authentication succeeds, a random RC4
682 * session key is generated and sent back to the peer,
683 * encrypted with its RSA public key. From this point on,
684 * all transfers are crypted with this session key.
686 * Next it is checked if the peer supplied a valid server command or a command
687 * for the audio file selector. If yes, and if the user has sufficient
688 * permissions to execute that command, the function calls the corresponding
689 * command handler which does argument checking and further processing.
691 * In order to cope with a DOS attacks, a timeout is set up
692 * which terminates the function if the connection was not
693 * authenticated when the timeout expires.
695 * \sa alarm(2), rc4(3), crypt.c, crypt.h
697 int handle_connect(int fd
, struct sockaddr_in
*addr
)
699 int ret
, argc
, use_rc4
= 0;
701 unsigned char crypt_buf
[MAXLINE
];
703 struct server_command
*cmd
= NULL
;
704 long unsigned challenge_nr
, chall_response
;
706 char *p
, *command
= NULL
;
709 signal(SIGCHLD
, SIG_IGN
);
710 signal(SIGINT
, SIG_DFL
);
711 signal(SIGTERM
, SIG_DFL
);
712 signal(SIGHUP
, SIG_DFL
);
713 signal(SIGUSR1
, SIG_IGN
);
715 challenge_nr
= random();
716 /* send Welcome message */
717 ret
= send_va_buffer(fd
, "This is para_server, version "
718 PACKAGE_VERSION
".\n" );
721 /* recv auth request line */
722 ret
= recv_buffer(fd
, buf
, sizeof(buf
));
731 if (strncmp(buf
, "auth ", 5))
734 if (numbytes
< 9 || strncmp(buf
, "auth rc4 ", 9))
735 p
= buf
+ 5; /* client version < 0.2.6 */
737 p
= buf
+ 9; /* client version >= 0.2.6 */
740 PARA_DEBUG_LOG("received %s request for user %s\n",
741 use_rc4
? "rc4" : "auth", p
);
746 ret
= para_encrypt_challenge(u
->rsa
, challenge_nr
, crypt_buf
);
750 PARA_DEBUG_LOG("sending %zu byte challenge\n", numbytes
);
751 /* We can't use send_buffer here since buf may contain null bytes */
752 ret
= send_bin_buffer(fd
,(char *) crypt_buf
, numbytes
);
755 /* recv decrypted number */
756 ret
= recv_buffer(fd
, buf
, sizeof(buf
));
763 if (sscanf(buf
, CHALLENGE_RESPONSE_MSG
"%lu", &chall_response
) < 1
764 || chall_response
!= challenge_nr
)
766 /* auth successful, send 'Proceed' message */
767 PARA_INFO_LOG("good auth for %s (%lu)\n", u
->name
, challenge_nr
);
768 sprintf(buf
, "%s", PROCEED_MSG
);
771 ret
= para_encrypt_buffer(u
->rsa
, rc4_buf
, 2 * RC4_KEY_LEN
,
772 (unsigned char *)buf
+ PROCEED_MSG_LEN
+ 1);
775 numbytes
= ret
+ strlen(PROCEED_MSG
) + 1;
777 numbytes
= strlen(buf
);
778 ret
= send_bin_buffer(fd
, buf
, numbytes
);
782 enable_crypt(fd
, rc4_recv
, rc4_send
, NULL
);
783 ret
= read_command(fd
, &command
);
787 cmd
= parse_cmd(command
);
790 /* valid command, check permissions */
791 ret
= check_perms(u
->perms
, cmd
);
794 /* valid command and sufficient perms */
796 argc
= split_args(command
, &argv
, "\n");
800 PARA_NOTICE_LOG("calling com_%s() for %s@%s\n", cmd
->name
, u
->name
,
801 inet_ntoa(addr
->sin_addr
));
802 ret
= cmd
->handler(fd
, argc
, argv
);
808 PARA_NOTICE_LOG("%s\n", PARA_STRERROR(-ret
));
809 if (ret
!= -E_SEND
&& ret
!= -E_RECV
)
810 send_va_buffer(fd
, "%s\n", PARA_STRERROR(-ret
));
816 if (cmd
&& (cmd
->perms
& AFS_WRITE
) && ret
>= 0)
818 mmd
->active_connections
--;