2 * Copyright (C) 1997-2007 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file server.c Paraslash's main server. */
11 * \mainpage Paraslash API Reference
13 * Starting points for getting an overview are
17 * - The main programs: \ref server.c, \ref audiod.c, \ref client.c,
18 * \ref audioc.c, \ref fsck.c,
19 * - Server: \ref server_command, \ref sender,
20 * - Audio file selector: \ref audio_format_handler, \ref mood, \ref afs_table,
21 * - Client: \ref receiver, \ref receiver_node, \ref filter, \ref filter_node.
24 * The gory details, listed by topic:
26 * - Audio format handlers: \ref mp3_afh.c, \ref ogg_afh.c, \ref aac_afh.c,
27 * - Decoders: \ref mp3dec.c, \ref oggdec.c, \ref aacdec.c,
28 * - Volume normalizer: \ref compress.c,
29 * - Output: \ref alsa_write.c, \ref osx_write.c,
30 * - http: \ref http_recv.c, \ref http_send.c,
31 * - ortp: \ref ortp_recv.c, \ref ortp_send.c,
32 * - dccp: \ref dccp_recv.c, \ref dccp_send.c,
33 * - Audio file selector: \ref afs.c, \ref aft.c, \ref mood.c,
34 * - Afs structures: \ref afs_table, \ref audio_file_data,
35 * \ref afs_info \ref afh_info,
36 * - Afs tables: \ref aft.c, \ref mood.c, \ref playlist.c,
37 * \ref attribute.c, \ref score.c,
38 * - The virtual streaming system: \ref vss.c, \ref chunk_queue.c.
42 * - Scheduling: \ref sched.c, \ref sched.h,
43 * - Networking: \ref net.c,
44 * - File descriptors: \ref fd.c,
45 * - Signals: \ref signal.c,
46 * - Daemons: \ref daemon.c,
47 * - Strings: \ref string.c, \ref string.h,
48 * - Time: \ref time.c,
49 * - Spawning processes: \ref exec.c,
50 * - Inter process communication: \ref ipc.c,
51 * - The object storage layer: \ref osl.c,
52 * - Blob tables: \ref blob.c,
53 * - The error subssystem: \ref error.h.
55 * Low-level data structures:
57 * - Doubly linked lists: \ref list.h,
58 * - Red-black trees: \ref rbtree.h, \ref rbtree.c,
59 * - Ring buffer: \ref ringbuffer.c, \ref ringbuffer.h,
60 * - Hashing: \ref hash.h, \ref sha1.h, \ref sha1.c,
61 * - Crypto: \ref crypt.c.
66 #include <sys/types.h>
71 #include "server.cmdline.h"
78 #include "close_on_fork.h"
87 #include "user_list.h"
89 /** define the array of error lists needed by para_server */
92 /** shut down non-authorized connections after that many seconds */
93 #define ALARM_TIMEOUT 10
96 * Pointer to shared memory area for communication between para_server
97 * and its children. Exported to vss.c. command.c and to afs.
99 struct misc_meta_data
*mmd
;
102 * the configuration of para_server
104 * It also contains the options for the audio file selector, audio format
105 * handler and all supported senders.
107 struct server_args_info conf
;
109 /** the file containing user information (public key, permissions) */
110 char *user_list_file
= NULL
;
112 extern void dccp_send_init(struct sender
*);
113 extern void http_send_init(struct sender
*);
114 extern void ortp_send_init(struct sender
*);
116 /** the list of supported senders */
117 struct sender senders
[] = {
120 .init
= http_send_init
,
124 .init
= dccp_send_init
,
129 .init
= ortp_send_init
,
138 /* global variables for server-internal use */
139 static FILE *logfile
;
140 static int mmd_mutex
, mmd_shm_id
;
141 static int signal_pipe
;
144 * para_server's log function
146 * \param ll the log level
147 * \param fmt the format string describing the log message
149 void para_log(int ll
, const char* fmt
,...)
155 char str
[MAXLINE
] = "";
158 if (ll
< conf
.loglevel_arg
)
160 outfd
= logfile
? logfile
: stderr
;
163 strftime(str
, MAXLINE
, "%b %d %H:%M:%S", tm
);
164 fprintf(outfd
, "%s ", str
);
165 if (conf
.loglevel_arg
<= INFO
)
166 fprintf(outfd
, "%i: ", ll
);
168 if (conf
.loglevel_arg
<= INFO
)
169 fprintf(outfd
, "(%d) ", mypid
);
171 vfprintf(outfd
, fmt
, argp
);
176 * setup shared memory area and get mutex for locking
178 static void shm_init(void)
181 int ret
= shm_new(sizeof(struct misc_meta_data
));
186 ret
= shm_attach(ret
, ATTACH_RW
, &shm
);
198 mmd
->num_commands
= 0;
200 mmd
->num_connects
= 0;
201 mmd
->active_connections
= 0;
202 strcpy(mmd
->afd
.path
, "(none)");
203 mmd
->vss_status_flags
= VSS_NEXT
;
204 mmd
->new_vss_status_flags
= VSS_NEXT
;
205 mmd
->sender_cmd_data
.cmd_num
= -1;
208 PARA_EMERG_LOG("%s", PARA_STRERROR(-ret
));
213 * lock the shared memory area containing the mmd struct
215 * \sa semop(2), struct misc_meta_data.
219 mutex_lock(mmd_mutex
);
223 * unlock the shared memory area containing the mmd struct
225 * \sa semop(2), struct misc_meta_data
228 void mmd_unlock(void)
230 mutex_unlock(mmd_mutex
);
233 static void parse_config(int override
)
235 char *home
= para_homedir();
240 if (conf
.config_file_given
)
241 cf
= para_strdup(conf
.config_file_arg
);
243 cf
= make_message("%s/.paraslash/server.conf", home
);
244 free(user_list_file
);
245 if (!conf
.user_list_given
)
246 user_list_file
= make_message("%s/.paraslash/server.users", home
);
248 user_list_file
= para_strdup(conf
.user_list_arg
);
249 ret
= stat(cf
, &statbuf
);
250 if (ret
&& conf
.config_file_given
) {
252 PARA_EMERG_LOG("can not stat config file %s\n", cf
);
256 int tmp
= conf
.daemon_given
;
257 struct server_cmdline_parser_params params
= {
258 .override
= override
,
263 server_cmdline_parser_config_file(cf
, &conf
, ¶ms
);
264 conf
.daemon_given
= tmp
;
267 if (!conf
.logfile_given
&& conf
.daemon_given
) {
269 PARA_EMERG_LOG("%s", "daemon, but no log file\n");
272 if (conf
.logfile_given
)
273 logfile
= open_log(conf
.logfile_arg
);
280 free(user_list_file
);
281 user_list_file
= NULL
;
285 static void setup_signal_handling(void)
289 signal_pipe
= para_signal_init();
291 PARA_NOTICE_LOG("setting up signal handlers\n");
292 ret
+= para_install_sighandler(SIGINT
);
293 ret
+= para_install_sighandler(SIGTERM
);
294 ret
+= para_install_sighandler(SIGHUP
);
295 ret
+= para_install_sighandler(SIGCHLD
);
296 ret
+= para_install_sighandler(SIGUSR1
);
297 signal(SIGPIPE
, SIG_IGN
);
299 PARA_EMERG_LOG("%s", "could not install signal handlers\n");
302 add_close_on_fork_list(signal_pipe
);
305 static unsigned init_network(void)
307 int fd
, ret
= init_tcp_socket(conf
.port_arg
);
312 ret
= mark_fd_nonblock(fd
);
315 add_close_on_fork_list(fd
); /* child doesn't need the listener */
318 PARA_EMERG_LOG("%s\n", PARA_STRERROR(-ret
));
322 static void init_random_seed(void)
326 size_t len
= sizeof(unsigned int);
328 fd
= open("/dev/urandom", O_RDONLY
);
332 if (read(fd
, &seed
, len
) != len
)
341 PARA_EMERG_LOG("can not seed pseudo random generator (ret = %d)\n",
346 uint32_t afs_socket_cookie
;
348 static pid_t afs_pid
;
350 static void init_afs(void)
352 int ret
, afs_server_socket
[2];
354 ret
= socketpair(PF_UNIX
, SOCK_DGRAM
, 0, afs_server_socket
);
357 afs_socket_cookie
= para_random((uint32_t)-1);
361 if (!afs_pid
) { /* child (afs) */
362 close(afs_server_socket
[0]);
363 afs_init(afs_socket_cookie
, afs_server_socket
[1]);
365 close(afs_server_socket
[1]);
366 afs_socket
= afs_server_socket
[0];
367 ret
= mark_fd_nonblock(afs_socket
);
370 add_close_on_fork_list(afs_socket
);
371 PARA_INFO_LOG("afs_socket: %d, afs_socket_cookie: %u\n", afs_socket
,
372 (unsigned) afs_socket_cookie
);
376 static unsigned server_init(int argc
, char **argv
)
378 /* connector's address information */
382 /* parse command line options */
383 server_cmdline_parser(argc
, argv
, &conf
);
384 HANDLE_VERSION_FLAG("server", conf
);
385 para_drop_privileges(conf
.user_arg
, conf
.group_arg
);
386 /* parse config file, open log and set defaults */
388 log_welcome("para_server", conf
.loglevel_arg
);
389 shm_init(); /* init mmd struct */
390 server_uptime(UPTIME_SET
); /* reset server uptime */
391 init_user_list(user_list_file
);
393 if (conf
.daemon_given
)
395 PARA_NOTICE_LOG("initializing audio format handlers\n");
397 PARA_NOTICE_LOG("initializing virtual streaming system\n");
399 mmd
->server_pid
= getpid();
400 setup_signal_handling();
401 PARA_NOTICE_LOG("initializing the audio file selector\n");
404 /* init network socket */
405 PARA_NOTICE_LOG("initializing tcp command socket\n");
406 sockfd
= init_network();
407 PARA_NOTICE_LOG("server init complete\n");
412 * called when server gets SIGHUP or when client invokes hup command.
414 static void handle_sighup(void)
416 PARA_NOTICE_LOG("%s", "SIGHUP\n");
417 close_log(logfile
); /* gets reopened if necessary by parse_config */
419 parse_config(1); /* reopens log */
420 init_user_list(user_list_file
); /* reload user list */
422 kill(afs_pid
, SIGHUP
);
425 static void status_refresh(void)
427 static int prev_uptime
= -1, prev_events
= -1;
428 int uptime
= server_uptime(UPTIME_GET
), ret
= 1;
430 if (prev_events
!= mmd
->events
)
432 if (mmd
->new_vss_status_flags
!= mmd
->vss_status_flags
)
434 if (uptime
/ 60 != prev_uptime
/ 60)
438 prev_uptime
= uptime
;
439 prev_events
= mmd
->events
;
440 mmd
->vss_status_flags
= mmd
->new_vss_status_flags
;
442 PARA_DEBUG_LOG("%d events, forcing status update\n",
449 * the main function of para_server
451 * \param argc usual argument count
452 * \param argv usual argument vector
454 * \return EXIT_SUCCESS or EXIT_FAILURE
457 int main(int argc
, char *argv
[])
459 /* listen on sock_fd, new connection on new_fd */
461 struct sockaddr_in their_addr
;
462 int i
, max_fileno
, ret
;
465 struct timeval
*timeout
;
468 sockfd
= server_init(argc
, argv
);
473 /* check socket and signal pipe in any case */
474 para_fd_set(sockfd
, &rfds
, &max_fileno
);
475 para_fd_set(signal_pipe
, &rfds
, &max_fileno
);
476 timeout
= vss_preselect(&rfds
, &wfds
, &max_fileno
);
478 for (i
= 0; senders
[i
].name
; i
++) {
479 if (senders
[i
].status
!= SENDER_ON
)
481 if (!senders
[i
].pre_select
)
483 senders
[i
].pre_select(&max_fileno
, &rfds
, &wfds
);
486 ret
= para_select(max_fileno
+ 1, &rfds
, &wfds
, timeout
);
488 vss_post_select(&rfds
, &wfds
);
491 for (i
= 0; senders
[i
].name
; i
++) {
492 if (senders
[i
].status
!= SENDER_ON
)
494 if (!senders
[i
].post_select
)
496 senders
[i
].post_select(&rfds
, &wfds
);
500 if (FD_ISSET(signal_pipe
, &rfds
)) {
503 sig
= para_next_signal();
510 ret
= para_reap_child(&pid
);
515 PARA_EMERG_LOG("fatal: afs died\n");
519 /* die on sigint/sigterm. Kill all children too. */
522 PARA_EMERG_LOG("terminating on signal %d\n", sig
);
525 mutex_destroy(mmd_mutex
);
527 shm_destroy(mmd_shm_id
);
532 if (mmd
->sender_cmd_data
.cmd_num
>= 0) {
533 int num
= mmd
->sender_cmd_data
.cmd_num
,
534 s
= mmd
->sender_cmd_data
.sender_num
;
536 if (senders
[s
].client_cmds
[num
])
537 senders
[s
].client_cmds
[num
](&mmd
->sender_cmd_data
);
538 mmd
->sender_cmd_data
.cmd_num
= -1;
540 if (!FD_ISSET(sockfd
, &rfds
))
543 new_fd
= para_accept(sockfd
, &their_addr
, sizeof(struct sockaddr_in
));
546 PARA_INFO_LOG("got connection from %s, forking\n",
547 inet_ntoa(their_addr
.sin_addr
));
549 mmd
->active_connections
++;
553 PARA_CRIT_LOG("%s", "fork failed\n");
558 /* parent keeps accepting connections */
561 alarm(ALARM_TIMEOUT
);
563 para_signal_shutdown();
565 * put info on who we are serving into argv[0] to make
566 * client ip visible in top/ps
568 for (i
= argc
- 1; i
>= 0; i
--)
569 memset(argv
[i
], 0, strlen(argv
[i
]));
570 sprintf(argv
[0], "para_server (serving %s)",
571 inet_ntoa(their_addr
.sin_addr
));
572 return handle_connect(new_fd
, &their_addr
);