2 * Copyright (C) 1997-2009 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"
30 #include "user_list.h"
31 #include "server_command_list.h"
32 #include "afs_command_list.h"
34 /** Commands including options must be shorter than this. */
35 #define MAX_COMMAND_LEN 32768
37 static RC4_KEY rc4_recv_key
;
38 static RC4_KEY rc4_send_key
;
39 static unsigned char rc4_buf
[2 * RC4_KEY_LEN
];
42 extern struct misc_meta_data
*mmd
;
43 extern struct sender senders
[];
45 static void dummy(int s
)
48 * At least on Solaris, SIGUSR1 is one-shot, i.e. the signal action is
49 * restored to the default state once the signal handler has been
53 signal(SIGUSR1
, dummy
);
56 static void mmd_dup(struct misc_meta_data
*new_mmd
)
58 mutex_lock(mmd_mutex
);
60 mutex_unlock(mmd_mutex
);
64 * Compute human readable string containing vss status for given integer value.
66 * We don't want to use vss_playing() and friends here because we take a
67 * snapshot of the mmd struct and use the copy for computing the state of the
68 * vss. If the real data were used, we would take the mmd lock for a rather
69 * long time or risk to get an inconsistent view.
71 static char *vss_status_tohuman(unsigned int flags
)
73 if (flags
& VSS_PLAYING
)
74 return para_strdup("playing");
76 return para_strdup("stopped");
77 return para_strdup("paused");
81 * return human readable permission string. Never returns NULL.
83 static char *cmd_perms_itohuman(unsigned int perms
)
85 char *msg
= para_malloc(5 * sizeof(char));
87 msg
[0] = perms
& AFS_READ
? 'a' : '-';
88 msg
[1] = perms
& AFS_WRITE
? 'A' : '-';
89 msg
[2] = perms
& VSS_READ
? 'v' : '-';
90 msg
[3] = perms
& VSS_WRITE
? 'V' : '-';
98 static char *vss_get_status_flags(unsigned int flags
)
100 char *msg
= para_malloc(5 * sizeof(char));
102 msg
[0] = (flags
& VSS_PLAYING
)? 'P' : '_';
103 msg
[1] = (flags
& VSS_NOMORE
)? 'O' : '_';
104 msg
[2] = (flags
& VSS_NEXT
)? 'N' : '_';
105 msg
[3] = (flags
& VSS_REPOS
)? 'R' : '_';
110 static char *get_status(struct misc_meta_data
*nmmd
)
112 char *ret
, mtime
[30] = "";
113 char *status
, *flags
; /* vss status info */
114 char *ut
= uptime_str();
115 long offset
= (nmmd
->offset
+ 500) / 1000;
119 /* report real status */
120 status
= vss_status_tohuman(nmmd
->vss_status_flags
);
121 flags
= vss_get_status_flags(nmmd
->vss_status_flags
);
122 if (nmmd
->size
) { /* parent currently has an audio file open */
123 localtime_r(&nmmd
->mtime
, &mtime_tm
);
124 strftime(mtime
, 29, "%b %d %Y", &mtime_tm
);
126 gettimeofday(&now
, NULL
);
128 "%s: %zu\n" /* file size */
129 "%s: %s\n" /* mtime */
130 "%s: %s\n" /* status */
131 "%s: %s\n" /* status flags */
132 "%s: %li\n" /* offset */
133 "%s: %s\n" /* afs mode */
134 "%s: %lu.%lu\n" /* stream start */
135 "%s: %lu.%lu\n" /* current server time */
136 "%s", /* afs status info */
137 status_item_list
[SI_FILE_SIZE
], nmmd
->size
/ 1024,
138 status_item_list
[SI_MTIME
], mtime
,
139 status_item_list
[SI_STATUS
], status
,
140 status_item_list
[SI_STATUS_FLAGS
], flags
,
142 status_item_list
[SI_OFFSET
], offset
,
143 status_item_list
[SI_AFS_MODE
], mmd
->afs_mode_string
,
145 status_item_list
[SI_STREAM_START
],
146 (long unsigned)nmmd
->stream_start
.tv_sec
,
147 (long unsigned)nmmd
->stream_start
.tv_usec
,
148 status_item_list
[SI_CURRENT_TIME
],
149 (long unsigned)now
.tv_sec
,
150 (long unsigned)now
.tv_usec
,
152 nmmd
->afd
.verbose_ls_output
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
;
183 if (!senders
[scd
->sender_num
].client_cmds
[scd
->cmd_num
])
184 return -E_SENDER_CMD
;
185 switch (scd
->cmd_num
) {
189 return -E_COMMAND_SYNTAX
;
193 if (argc
!= 4 && argc
!= 5)
194 return -E_COMMAND_SYNTAX
;
195 if (!is_valid_ipv4_address(argv
[3]))
196 return -E_COMMAND_SYNTAX
;
199 scd
->netmask
= atoi(argv
[4]);
200 if (scd
->netmask
< 0 || scd
->netmask
> 32)
201 return -E_COMMAND_SYNTAX
;
203 strncpy(scd
->host
, argv
[3], sizeof(scd
->host
));
207 if (argc
!= 4 || parse_url(argv
[3], scd
->host
,
208 sizeof(scd
->host
), &scd
->port
) == NULL
)
209 return -E_COMMAND_SYNTAX
;
212 return -E_COMMAND_SYNTAX
;
217 int com_sender(int fd
, int argc
, char * const * argv
)
220 struct sender_command_data scd
;
224 for (i
= 0; senders
[i
].name
; i
++) {
225 char *tmp
= make_message("%s%s\n",
226 msg
? msg
: "", senders
[i
].name
);
230 ret
= send_buffer(fd
, msg
);
234 ret
= check_sender_args(argc
, argv
, &scd
);
237 if (scd
.sender_num
< 0)
239 msg
= senders
[scd
.sender_num
].help();
240 ret
= send_buffer(fd
, msg
);
244 for (i
= 0; i
< 10; i
++) {
245 mutex_lock(mmd_mutex
);
246 if (mmd
->sender_cmd_data
.cmd_num
>= 0) {
247 mutex_unlock(mmd_mutex
);
251 memcpy(&mmd
->sender_cmd_data
, &scd
, sizeof(scd
));
252 mutex_unlock(mmd_mutex
);
255 return (i
< 10)? 1 : -E_LOCK
;
259 int com_si(int fd
, int argc
, __a_unused
char * const * argv
)
263 char *sender_info
= NULL
, *sender_list
= NULL
;
266 return -E_COMMAND_SYNTAX
;
267 mutex_lock(mmd_mutex
);
268 for (i
= 0; senders
[i
].name
; i
++) {
269 char *info
= senders
[i
].info();
270 sender_info
= para_strcat(sender_info
, info
);
272 sender_list
= para_strcat(sender_list
, senders
[i
].name
);
273 sender_list
= para_strcat(sender_list
, " ");
276 ret
= send_va_buffer(fd
, "up: %s\nplayed: %u\n"
279 "connections (active/accepted/total): %u/%u/%u\n"
280 "current loglevel: %s\n"
281 "supported audio formats: %s\n"
282 "supported senders: %s\n"
287 mmd
->active_connections
,
291 supported_audio_formats(),
295 mutex_unlock(mmd_mutex
);
303 int com_version(int fd
, int argc
, __a_unused
char * const * argv
)
306 return -E_COMMAND_SYNTAX
;
307 return send_buffer(fd
, VERSION_TEXT("server")
308 "built: " BUILD_DATE
"\n"
309 UNAME_RS
", " CC_VERSION
"\n"
314 int com_stat(int fd
, int argc
, char * const * argv
)
316 int ret
, num
= 0;/* status will be printed that many
317 * times. num <= 0 means: print forever
319 struct misc_meta_data tmp
, *nmmd
= &tmp
;
322 signal(SIGUSR1
, dummy
);
329 s
= get_status(nmmd
);
330 ret
= send_buffer(fd
, s
);
335 if (num
> 0 && !--num
)
339 return -E_SERVER_CRASH
;
345 static int send_list_of_commands(int fd
, struct server_command
*cmd
,
350 for (i
= 1; cmd
->name
; cmd
++, i
++) {
351 char *perms
= cmd_perms_itohuman(cmd
->perms
);
352 ret
= send_va_buffer(fd
, "%s\t%s\t%s\t%s\n", cmd
->name
,
363 /* returns string that must be freed by the caller */
364 static struct server_command
*get_cmd_ptr(const char *name
, char **handler
)
366 struct server_command
*cmd
;
368 for (cmd
= server_cmds
; cmd
->name
; cmd
++)
369 if (!strcmp(cmd
->name
, name
)) {
371 *handler
= para_strdup("server"); /* server commands */
374 /* not found, look for commands supported by afs */
375 for (cmd
= afs_cmds
; cmd
->name
; cmd
++)
376 if (!strcmp(cmd
->name
, name
)) {
378 *handler
= para_strdup("afs");
385 int com_help(int fd
, int argc
, char * const * argv
)
387 struct server_command
*cmd
;
388 char *perms
, *handler
;
392 /* no argument given, print list of commands */
393 if ((ret
= send_list_of_commands(fd
, server_cmds
, "server")) < 0)
395 return send_list_of_commands(fd
, afs_cmds
, "afs");
397 /* argument given for help */
398 cmd
= get_cmd_ptr(argv
[1], &handler
);
403 perms
= cmd_perms_itohuman(cmd
->perms
);
404 ret
= send_va_buffer(fd
,
423 int com_hup(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
426 return -E_COMMAND_SYNTAX
;
427 kill(getppid(), SIGHUP
);
432 int com_term(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
435 return -E_COMMAND_SYNTAX
;
436 kill(getppid(), SIGTERM
);
440 int com_play(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
443 return -E_COMMAND_SYNTAX
;
444 mutex_lock(mmd_mutex
);
445 mmd
->new_vss_status_flags
|= VSS_PLAYING
;
446 mmd
->new_vss_status_flags
&= ~VSS_NOMORE
;
447 mutex_unlock(mmd_mutex
);
453 int com_stop(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
456 return -E_COMMAND_SYNTAX
;
457 mutex_lock(mmd_mutex
);
458 mmd
->new_vss_status_flags
&= ~VSS_PLAYING
;
459 mmd
->new_vss_status_flags
&= ~VSS_REPOS
;
460 mmd
->new_vss_status_flags
|= VSS_NEXT
;
461 mutex_unlock(mmd_mutex
);
466 int com_pause(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
469 return -E_COMMAND_SYNTAX
;
470 mutex_lock(mmd_mutex
);
471 if (!vss_paused() && !vss_stopped()) {
473 mmd
->new_vss_status_flags
&= ~VSS_PLAYING
;
474 mmd
->new_vss_status_flags
&= ~VSS_NEXT
;
476 mutex_unlock(mmd_mutex
);
481 int com_next(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
484 return -E_COMMAND_SYNTAX
;
485 mutex_lock(mmd_mutex
);
487 mmd
->new_vss_status_flags
|= VSS_NEXT
;
488 mutex_unlock(mmd_mutex
);
493 int com_nomore(__a_unused
int fd
, int argc
, __a_unused
char * const * argv
)
496 return -E_COMMAND_SYNTAX
;
497 mutex_lock(mmd_mutex
);
498 if (vss_playing() || vss_paused())
499 mmd
->new_vss_status_flags
|= VSS_NOMORE
;
500 mutex_unlock(mmd_mutex
);
505 int com_ff(__a_unused
int fd
, int argc
, char * const * argv
)
508 int ret
, backwards
= 0;
513 return -E_COMMAND_SYNTAX
;
514 if (!(ret
= sscanf(argv
[1], "%u%c", &i
, &c
)))
515 return -E_COMMAND_SYNTAX
;
516 if (ret
> 1 && c
== '-')
517 backwards
= 1; /* jmp backwards */
518 mutex_lock(mmd_mutex
);
519 ret
= -E_NO_AUDIO_FILE
;
520 if (!mmd
->afd
.afhi
.chunks_total
|| !mmd
->afd
.afhi
.seconds_total
)
522 promille
= (1000 * mmd
->current_chunk
) / mmd
->afd
.afhi
.chunks_total
;
524 promille
-= 1000 * i
/ mmd
->afd
.afhi
.seconds_total
;
526 promille
+= 1000 * i
/ mmd
->afd
.afhi
.seconds_total
;
529 if (promille
> 1000) {
530 mmd
->new_vss_status_flags
|= VSS_NEXT
;
533 mmd
->repos_request
= (mmd
->afd
.afhi
.chunks_total
* promille
) / 1000;
534 mmd
->new_vss_status_flags
|= VSS_REPOS
;
535 mmd
->new_vss_status_flags
&= ~VSS_NEXT
;
539 mutex_unlock(mmd_mutex
);
544 int com_jmp(__a_unused
int fd
, int argc
, char * const * argv
)
550 return -E_COMMAND_SYNTAX
;
551 if (sscanf(argv
[1], "%lu", &i
) <= 0)
552 return -E_COMMAND_SYNTAX
;
553 mutex_lock(mmd_mutex
);
554 ret
= -E_NO_AUDIO_FILE
;
555 if (!mmd
->afd
.afhi
.chunks_total
)
559 PARA_INFO_LOG("jumping to %lu%%\n", i
);
560 mmd
->repos_request
= (mmd
->afd
.afhi
.chunks_total
* i
+ 50)/ 100;
561 PARA_INFO_LOG("sent: %lu, offset before jmp: %lu\n",
562 mmd
->chunks_sent
, mmd
->offset
);
563 mmd
->new_vss_status_flags
|= VSS_REPOS
;
564 mmd
->new_vss_status_flags
&= ~VSS_NEXT
;
568 mutex_unlock(mmd_mutex
);
573 * check if perms are sufficient to exec a command having perms cmd_perms.
574 * Returns 0 if perms are sufficient, -E_PERM otherwise.
576 static int check_perms(unsigned int perms
, struct server_command
*cmd_ptr
)
578 PARA_DEBUG_LOG("checking permissions\n");
579 return (cmd_ptr
->perms
& perms
) < cmd_ptr
->perms
? -E_PERM
: 0;
583 * Parse first string from *cmd and lookup in table of valid commands.
584 * On error, NULL is returned.
586 static struct server_command
*parse_cmd(const char *cmdstr
)
591 sscanf(cmdstr
, "%200s%n", buf
, &n
);
595 return get_cmd_ptr(buf
, NULL
);
598 static void init_rc4_keys(void)
602 for (i
= 0; i
< 2 * RC4_KEY_LEN
; i
++)
603 rc4_buf
[i
] = para_random(256);
604 PARA_DEBUG_LOG("rc4 keys initialized (%u:%u)\n",
605 (unsigned char) rc4_buf
[0],
606 (unsigned char) rc4_buf
[RC4_KEY_LEN
]);
607 RC4_set_key(&rc4_recv_key
, RC4_KEY_LEN
, rc4_buf
);
608 RC4_set_key(&rc4_send_key
, RC4_KEY_LEN
, rc4_buf
+ RC4_KEY_LEN
);
611 static void rc4_recv(unsigned long len
, const unsigned char *indata
,
612 unsigned char *outdata
, __a_unused
void *private_data
)
614 RC4(&rc4_recv_key
, len
, indata
, outdata
);
617 static void rc4_send(unsigned long len
, const unsigned char *indata
,
618 unsigned char *outdata
, __a_unused
void *private_data
)
620 RC4(&rc4_send_key
, len
, indata
, outdata
);
623 static int read_command(int fd
, char **result
)
627 char *command
= NULL
;
633 ret
= recv_buffer(fd
, buf
, sizeof(buf
));
639 ret
= -E_COMMAND_SYNTAX
;
640 if (command
&& numbytes
+ strlen(command
) > MAX_COMMAND_LEN
) /* DOS */
642 command
= para_strcat(command
, buf
);
643 p
= strstr(command
, EOC_MSG
);
649 ret
= command
? 1 : -E_COMMAND_SYNTAX
;
660 * Perform user authentication and execute a command.
662 * \param fd The file descriptor to send output to.
663 * \param peername Identifies the connecting peer.
665 * Whenever para_server accepts an incoming tcp connection on
666 * the port it listens on, it forks and the resulting child
667 * calls this function.
669 * An RSA-based challenge/response is used to authenticate
670 * the peer. It that authentication succeeds, a random RC4
671 * session key is generated and sent back to the peer,
672 * encrypted with its RSA public key. From this point on,
673 * all transfers are crypted with this session key.
675 * Next it is checked if the peer supplied a valid server command or a command
676 * for the audio file selector. If yes, and if the user has sufficient
677 * permissions to execute that command, the function calls the corresponding
678 * command handler which does argument checking and further processing.
680 * In order to cope with a DOS attacks, a timeout is set up
681 * which terminates the function if the connection was not
682 * authenticated when the timeout expires.
684 * \sa alarm(2), rc4(3), crypt.c, crypt.h
686 __noreturn
void handle_connect(int fd
, const char *peername
)
688 int ret
, argc
, use_rc4
= 0;
690 unsigned char crypt_buf
[MAXLINE
];
692 struct server_command
*cmd
= NULL
;
693 long unsigned challenge_nr
, chall_response
;
695 char *p
, *command
= NULL
;
698 signal(SIGCHLD
, SIG_IGN
);
699 signal(SIGINT
, SIG_DFL
);
700 signal(SIGTERM
, SIG_DFL
);
701 signal(SIGHUP
, SIG_DFL
);
703 /* we need a blocking fd here as recv() might return EAGAIN otherwise. */
704 ret
= mark_fd_blocking(fd
);
707 challenge_nr
= random();
708 /* send Welcome message */
709 ret
= send_va_buffer(fd
, "This is para_server, version "
710 PACKAGE_VERSION
".\n" );
713 /* recv auth request line */
714 ret
= recv_buffer(fd
, buf
, sizeof(buf
));
723 if (strncmp(buf
, "auth ", 5))
726 if (numbytes
< 9 || strncmp(buf
, "auth rc4 ", 9))
727 p
= buf
+ 5; /* client version < 0.2.6 */
729 p
= buf
+ 9; /* client version >= 0.2.6 */
732 PARA_DEBUG_LOG("received %s request for user %s\n",
733 use_rc4
? "rc4" : "auth", p
);
738 ret
= para_encrypt_challenge(u
->rsa
, challenge_nr
, crypt_buf
);
742 PARA_DEBUG_LOG("sending %zu byte challenge\n", numbytes
);
743 /* We can't use send_buffer here since buf may contain null bytes */
744 ret
= send_bin_buffer(fd
,(char *) crypt_buf
, numbytes
);
747 /* recv decrypted number */
748 ret
= recv_buffer(fd
, buf
, sizeof(buf
));
755 if (sscanf(buf
, CHALLENGE_RESPONSE_MSG
"%lu", &chall_response
) < 1
756 || chall_response
!= challenge_nr
)
758 /* auth successful, send 'Proceed' message */
759 PARA_INFO_LOG("good auth for %s (%lu)\n", u
->name
, challenge_nr
);
760 sprintf(buf
, "%s", PROCEED_MSG
);
763 ret
= para_encrypt_buffer(u
->rsa
, rc4_buf
, 2 * RC4_KEY_LEN
,
764 (unsigned char *)buf
+ PROCEED_MSG_LEN
+ 1);
767 numbytes
= ret
+ strlen(PROCEED_MSG
) + 1;
769 numbytes
= strlen(buf
);
770 ret
= send_bin_buffer(fd
, buf
, numbytes
);
774 enable_crypt(fd
, rc4_recv
, rc4_send
, NULL
);
775 ret
= read_command(fd
, &command
);
776 if (ret
== -E_COMMAND_SYNTAX
)
781 cmd
= parse_cmd(command
);
784 /* valid command, check permissions */
785 ret
= check_perms(u
->perms
, cmd
);
788 /* valid command and sufficient perms */
790 argc
= split_args(command
, &argv
, "\n");
791 mutex_lock(mmd_mutex
);
793 mutex_unlock(mmd_mutex
);
794 PARA_NOTICE_LOG("calling com_%s() for %s@%s\n", cmd
->name
, u
->name
,
796 ret
= cmd
->handler(fd
, argc
, argv
);
800 send_va_buffer(fd
, "%s\n", para_strerror(-ret
));
802 PARA_NOTICE_LOG("%s\n", para_strerror(-ret
));
806 mutex_lock(mmd_mutex
);
807 if (cmd
&& (cmd
->perms
& AFS_WRITE
) && ret
>= 0)
809 mmd
->active_connections
--;
810 mutex_unlock(mmd_mutex
);
811 exit(ret
< 0? EXIT_FAILURE
: EXIT_SUCCESS
);