General main.c cleanup

This commit is contained in:
Julien BLACHE 2009-06-05 15:25:43 +02:00
parent 64cd2ee383
commit 6e64e54429

View File

@ -19,67 +19,32 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
/**
* @file main.c
*
* Driver for mt-daapd, including the main() function. This
* is responsible for kicking off the initial mp3 scan, starting
* up the signal handler, starting up the webserver, and waiting
* around for external events to happen (like a request to rescan,
* or a background rescan to take place.)
*
* It also contains the daap handling callback for the webserver.
* This should almost certainly be somewhere else, and is in
* desparate need of refactoring, but somehow continues to be in
* this files.
*/
/** @mainpage mt-daapd
* @section about_section About
*
* This is mt-daapd, an attempt to create an iTunes server for
* linux and other POSIXish systems. Maybe even Windows with cygwin,
* eventually.
*
* You might check these locations for more info:
* - <a href="http://www.mt-daapd.org">Home page</a>
* - <a href="http://sf.net/projects/mt-daapd">Project page on SourceForge</a>
*
*/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include "config.h" # include <config.h>
#endif #endif
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <pthread.h>
#include <signal.h>
#include <stdarg.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h>
#include <string.h> #include <string.h>
#ifdef HAVE_DIRENT_H #include <errno.h>
#include <dirent.h> #include <fcntl.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/types.h> #include <sys/types.h>
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h> #include <sys/wait.h>
#endif #include <signal.h>
#include <sys/signalfd.h> #include <limits.h>
#include <pwd.h> #include <pwd.h>
#include <grp.h> #include <grp.h>
#include <sys/signalfd.h>
#include <pthread.h>
#include <getopt.h>
#include <event.h>
#include <libavformat/avformat.h>
#include "conffile.h" #include "conffile.h"
#include "logger.h" #include "logger.h"
#include "misc.h" #include "misc.h"
@ -88,61 +53,32 @@
#include "db-generic.h" #include "db-generic.h"
#include "mdns_avahi.h" #include "mdns_avahi.h"
#ifdef HAVE_GETOPT_H
# include "getopt.h"
#endif
#include <event.h>
#include <libavformat/avformat.h>
/** Seconds to sleep before checking for a shutdown or reload */
#define MAIN_SLEEP_INTERVAL 2
/** Let's hope if you have no atoll, you only have 32 bit inodes... */
#if !HAVE_ATOLL
# define atoll(a) atol(a)
#endif
#ifndef PIDFILE
#define PIDFILE "/var/run/mt-daapd.pid" #define PIDFILE "/var/run/mt-daapd.pid"
#endif
/*
* Globals
*/
struct event_base *evbase_main; struct event_base *evbase_main;
static int main_exit; static int main_exit;
/* static void
* Forwards usage(char *program)
*/ {
static void usage(char *program); printf("Usage: %s [options]\n\n",program);
printf("Options:\n");
/** printf(" -d <number> Log level (0-5)\n");
* Print usage information to stdout printf(" -D <dom,dom..> Log domains\n");
* printf(" -c <file> Use <file> as the configfile\n");
* \param program name of program (argv[0]) printf(" -P <file> Write PID to specified file\n");
*/ printf(" -f Run in foreground\n");
void usage(char *program) { printf(" -y Start even if user is not root\n");
printf("Usage: %s [options]\n\n",program); printf(" -b <id> ffid to be broadcast\n");
printf("Options:\n"); printf(" -v Display version information\n");
printf(" -d <number> Log level (0-5)\n"); printf("\n\n");
printf(" -D <dom,dom..> Log domains\n"); printf("Available log domains:\n");
printf(" -c <file> Use configfile specified\n"); logger_domains();
printf(" -P <file> Write the PID to specified file\n"); printf("\n\n");
printf(" -f Run in foreground\n");
printf(" -y Yes, go ahead and run as non-root user\n");
printf(" -b <id> ffid to be broadcast\n");
printf(" -v Display version information\n");
printf("\n\n");
printf("Available log domains:\n");
logger_domains();
printf("\n\n");
} }
static int static int
daemonize(int background, char *runas, char *pidfile) daemonize(int background, char *runas, char *pidfile)
{ {
@ -270,12 +206,12 @@ signal_cb(int fd, short event, void *arg)
struct signalfd_siginfo info; struct signalfd_siginfo info;
int status; int status;
sa_ign.sa_handler=SIG_IGN; sa_ign.sa_handler = SIG_IGN;
sa_ign.sa_flags=0; sa_ign.sa_flags = 0;
sigemptyset(&sa_ign.sa_mask); sigemptyset(&sa_ign.sa_mask);
sa_dfl.sa_handler=SIG_DFL; sa_dfl.sa_handler = SIG_DFL;
sa_dfl.sa_flags=0; sa_dfl.sa_flags = 0;
sigemptyset(&sa_dfl.sa_mask); sigemptyset(&sa_dfl.sa_mask);
while (read(fd, &info, sizeof(struct signalfd_siginfo)) > 0) while (read(fd, &info, sizeof(struct signalfd_siginfo)) > 0)
@ -309,348 +245,339 @@ signal_cb(int fd, short event, void *arg)
event_base_loopbreak(evbase_main); event_base_loopbreak(evbase_main);
} }
/**
* Kick off the daap server and wait for events.
*
* This starts the initial db scan, sets up the signal
* handling, starts the webserver, then sits back and waits
* for events, as notified by the signal handler and the
* web interface. These events are communicated via flags
* in the config structure.
*
* \param argc count of command line arguments
* \param argv command line argument pointers
* \returns 0 on success, -1 otherwise
*
* \todo split out a ws_init and ws_start, so that the
* web space handlers can be registered before the webserver
* starts.
*
*/
int main(int argc, char *argv[]) {
int option;
char *configfile=CONFFILE;
int reload=0;
int background;
int force_non_root=0;
int skip_initial=1;
cfg_t *lib;
char *runas, *tmp;
int port;
char *servername;
char *ffid = NULL;
char *perr=NULL;
char *txtrecord[10];
char *pidfile = PIDFILE;
sigset_t sigs;
int sigfd;
struct event sig_event;
int ret;
int i;
int err; int
main(int argc, char **argv)
{
int option;
char *configfile = CONFFILE;
int reload = 0;
int background;
int force_non_root = 0;
int skip_initial = 1;
cfg_t *lib;
char *runas, *tmp;
int port;
char *servername;
char *ffid = NULL;
char *perr = NULL;
char *txtrecord[10];
char *pidfile = PIDFILE;
sigset_t sigs;
int sigfd;
struct event sig_event;
int ret;
int i;
int loglevel = -1; int loglevel = -1;
char *logdomains = NULL; char *logdomains = NULL;
char *logfile = NULL; char *logfile = NULL;
background = 1; background = 1;
while((option=getopt(argc,argv,"D:d:c:P:frysiub:v")) != -1) { while ((option = getopt(argc, argv, "D:d:c:P:frysiub:v")) != -1)
switch(option) { {
case 'b': switch (option)
ffid=optarg; {
case 'b':
ffid = optarg;
break; break;
case 'd': case 'd':
loglevel = atoi(optarg); ret = safe_atoi(optarg, &i);
if (ret < 0)
fprintf(stderr, "Error: loglevel must be an integer in '-d %s'\n", optarg);
else
loglevel = i;
break; break;
case 'D': case 'D':
logdomains = optarg; logdomains = optarg;
break; break;
case 'f': case 'f':
background = 0; background = 0;
break; break;
case 'c': case 'c':
configfile=optarg; configfile = optarg;
break; break;
case 'P': case 'P':
pidfile = optarg; pidfile = optarg;
break; break;
case 'r': case 'r':
reload=1; reload = 1;
break; break;
case 's': case 's':
skip_initial=0; skip_initial = 0;
break; break;
case 'y': case 'y':
force_non_root=1; force_non_root = 1;
break; break;
case 'v': case 'v':
fprintf(stderr,"Firefly Media Server: Version %s\n",VERSION); fprintf(stdout, "Firefly Media Server: Version %s\n",VERSION);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
break; break;
default: default:
usage(argv[0]); usage(argv[0]);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
break; break;
} }
} }
if((getuid()) && (!force_non_root)) { if ((getuid() != 0) && (!force_non_root))
fprintf(stderr,"You are not root. This is almost certainly wrong. " {
"If you are\nsure you want to do this, use the -y " fprintf(stderr, "You are not root. This is almost certainly wrong. "
"command-line switch\n"); "If you are\nsure you want to do this, use the -y "
exit(EXIT_FAILURE); "command-line switch\n");
exit(EXIT_FAILURE);
} }
ret = logger_init(NULL, NULL, (loglevel < 0) ? E_LOG : loglevel); ret = logger_init(NULL, NULL, (loglevel < 0) ? E_LOG : loglevel);
if (ret != 0) if (ret != 0)
{ {
fprintf(stderr, "Could not initialize log facility\n"); fprintf(stderr, "Could not initialize log facility\n");
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
}
ret = conffile_load(configfile);
if (ret != 0)
{
DPRINTF(E_FATAL, L_MAIN, "Config file errors; please fix your config\n");
logger_deinit();
exit(EXIT_FAILURE);
}
logger_deinit();
/* Reinit log facility with configfile values */
if (loglevel < 0)
loglevel = cfg_getint(cfg_getsec(cfg, "general"), "loglevel");
logfile = cfg_getstr(cfg_getsec(cfg, "general"), "logfile");
ret = logger_init(logfile, logdomains, loglevel);
if (ret != 0)
{
fprintf(stderr, "Could not reinitialize log facility with config file settings\n");
conffile_unload();
exit(EXIT_FAILURE);
}
/* Set up libevent logging callback */
event_set_log_callback(logger_libevent);
DPRINTF(E_LOG, L_MAIN, "Firefly Version %s taking off\n", VERSION);
/* initialize ffmpeg */
av_register_all();
/* Block signals for all threads except the main one */
sigemptyset(&sigs);
sigaddset(&sigs, SIGINT);
sigaddset(&sigs, SIGHUP);
sigaddset(&sigs, SIGCHLD);
sigaddset(&sigs, SIGTERM);
sigaddset(&sigs, SIGPIPE);
ret = pthread_sigmask(SIG_BLOCK, &sigs, NULL);
if (ret != 0)
{
DPRINTF(E_LOG, L_MAIN, "Error setting signal set\n");
conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
}
/* Daemonize and drop privileges */
runas = cfg_getstr(cfg_getsec(cfg, "general"), "uid");
ret = daemonize(background, runas, pidfile);
if (ret < 0)
{
DPRINTF(E_LOG, L_MAIN, "Could not initialize server\n");
conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
}
/* Initialize libevent (after forking) */
evbase_main = event_init();
DPRINTF(E_LOG, L_MAIN, "mDNS init\n");
ret = mdns_init();
if (ret != 0)
{
DPRINTF(E_FATAL, L_MAIN, "mDNS init failed\n");
conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
}
/* this will require that the db be readable by the runas user */
err = db_open(&perr, "sqlite3", "/var/cache/mt-daapd"); /* FIXME */
if(err) {
DPRINTF(E_LOG,L_MAIN,"Error opening db: %s\n",perr);
mdns_deinit();
conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
} }
/* Initialize the database before starting */ ret = conffile_load(configfile);
DPRINTF(E_LOG,L_MAIN,"Initializing database\n"); if (ret != 0)
if(db_init(reload)) { {
DPRINTF(E_FATAL,L_MAIN,"Error in db_init: %s\n",strerror(errno)); DPRINTF(E_FATAL, L_MAIN, "Config file errors; please fix your config\n");
logger_deinit();
exit(EXIT_FAILURE);
} }
/* Spawn file scanner thread */ logger_deinit();
ret = filescanner_init();
if (ret != 0)
{
DPRINTF(E_FATAL, L_MAIN, "File scanner thread failed to start\n");
mdns_deinit(); /* Reinit log facility with configfile values */
db_deinit(); if (loglevel < 0)
conffile_unload(); loglevel = cfg_getint(cfg_getsec(cfg, "general"), "loglevel");
logger_deinit();
exit(EXIT_FAILURE);
}
/* Spawn HTTPd thread */ logfile = cfg_getstr(cfg_getsec(cfg, "general"), "logfile");
ret = httpd_init();
if (ret != 0)
{
DPRINTF(E_FATAL, L_MAIN, "HTTPd thread failed to start\n");
filescanner_deinit(); ret = logger_init(logfile, logdomains, loglevel);
mdns_deinit(); if (ret != 0)
db_deinit(); {
conffile_unload(); fprintf(stderr, "Could not reinitialize log facility with config file settings\n");
logger_deinit();
exit(EXIT_FAILURE);
}
/* Register mDNS services */ conffile_unload();
lib = cfg_getnsec(cfg, "library", 0); exit(EXIT_FAILURE);
}
servername = cfg_getstr(lib, "name"); /* Set up libevent logging callback */
event_set_log_callback(logger_libevent);
for (i = 0; i < (sizeof(txtrecord) / sizeof(*txtrecord) - 1); i++) DPRINTF(E_LOG, L_MAIN, "Firefly Version %s taking off\n", VERSION);
{
txtrecord[i] = (char *)malloc(128);
if (!txtrecord[i])
{
DPRINTF(E_FATAL, L_MAIN, "Out of memory for TXT record\n");
httpd_deinit(); /* initialize ffmpeg */
filescanner_deinit(); av_register_all();
mdns_deinit();
db_deinit();
conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
}
memset(txtrecord[i], 0, 128); /* Block signals for all threads except the main one */
} sigemptyset(&sigs);
sigaddset(&sigs, SIGINT);
sigaddset(&sigs, SIGHUP);
sigaddset(&sigs, SIGCHLD);
sigaddset(&sigs, SIGTERM);
sigaddset(&sigs, SIGPIPE);
ret = pthread_sigmask(SIG_BLOCK, &sigs, NULL);
if (ret != 0)
{
DPRINTF(E_LOG, L_MAIN, "Error setting signal set\n");
snprintf(txtrecord[0], 128, "txtvers=1"); conffile_unload();
snprintf(txtrecord[1], 128, "Database ID=%0X", djb_hash(servername, strlen(servername))); logger_deinit();
snprintf(txtrecord[2], 128, "Machine ID=%0X", djb_hash(servername, strlen(servername))); exit(EXIT_FAILURE);
snprintf(txtrecord[3], 128, "Machine Name=%s", servername); }
snprintf(txtrecord[4], 128, "mtd-version=%s", VERSION);
snprintf(txtrecord[5], 128, "iTSh Version=131073"); /* iTunes 6.0.4 */
snprintf(txtrecord[6], 128, "Version=196610"); /* iTunes 6.0.4 */
tmp = cfg_getstr(lib, "password"); /* Daemonize and drop privileges */
snprintf(txtrecord[7], 128, "Password=%s", (tmp) ? "true" : "false"); runas = cfg_getstr(cfg_getsec(cfg, "general"), "uid");
srand((unsigned int)time(NULL)); ret = daemonize(background, runas, pidfile);
if (ret < 0)
{
DPRINTF(E_LOG, L_MAIN, "Could not initialize server\n");
if (ffid) conffile_unload();
snprintf(txtrecord[8], 128, "ffid=%s", ffid); logger_deinit();
else exit(EXIT_FAILURE);
snprintf(txtrecord[8], 128, "ffid=%08x", rand()); }
txtrecord[9] = NULL; /* Initialize libevent (after forking) */
evbase_main = event_init();
DPRINTF(E_LOG,L_MAIN,"Registering rendezvous names\n"); DPRINTF(E_LOG, L_MAIN, "mDNS init\n");
ret = mdns_init();
if (ret != 0)
{
DPRINTF(E_FATAL, L_MAIN, "mDNS init failed\n");
port = cfg_getint(lib, "port"); conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
}
/* Register web server service */ /* this will require that the db be readable by the runas user */
mdns_register(servername, "_http._tcp", port, txtrecord); ret = db_open(&perr, "sqlite3", "/var/cache/mt-daapd"); /* FIXME */
/* Register RSP service */
mdns_register(servername, "_rsp._tcp", port, txtrecord);
/* Register DAAP service */
mdns_register(servername, "_daap._tcp", port, txtrecord);
for (i = 0; i < (sizeof(txtrecord) / sizeof(*txtrecord) - 1); i++) if (ret != 0)
free(txtrecord[i]); {
DPRINTF(E_FATAL, L_MAIN, "Error opening db: %s\n", perr);
/* Set up signal fd */ mdns_deinit();
sigfd = signalfd(-1, &sigs, SFD_NONBLOCK | SFD_CLOEXEC); conffile_unload();
if (sigfd < 0) logger_deinit();
{ exit(EXIT_FAILURE);
DPRINTF(E_FATAL, L_MAIN, "Could not setup signalfd: %s\n", strerror(errno)); }
httpd_deinit(); /* Initialize the database before starting */
filescanner_deinit(); DPRINTF(E_INFO, L_MAIN, "Initializing database\n");
mdns_deinit(); if (db_init(reload))
db_deinit(); {
conffile_unload(); DPRINTF(E_FATAL, L_MAIN, "Error in db_init: %s\n", strerror(errno));
logger_deinit(); }
exit(EXIT_FAILURE);
}
event_set(&sig_event, sigfd, EV_READ, signal_cb, NULL); /* Spawn file scanner thread */
event_base_set(evbase_main, &sig_event); ret = filescanner_init();
event_add(&sig_event, NULL); if (ret != 0)
{
DPRINTF(E_FATAL, L_MAIN, "File scanner thread failed to start\n");
/* Run the loop */ mdns_deinit();
event_base_dispatch(evbase_main); db_deinit();
conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
}
DPRINTF(E_LOG,L_MAIN,"Stopping gracefully\n"); /* Spawn HTTPd thread */
ret = httpd_init();
if (ret != 0)
{
DPRINTF(E_FATAL, L_MAIN, "HTTPd thread failed to start\n");
DPRINTF(E_LOG, L_MAIN, "HTTPd deinit\n"); filescanner_deinit();
httpd_deinit(); mdns_deinit();
db_deinit();
conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
}
DPRINTF(E_LOG, L_MAIN, "File scanner deinit\n"); /* Register mDNS services */
filescanner_deinit(); lib = cfg_getnsec(cfg, "library", 0);
DPRINTF(E_LOG, L_MAIN, "mDNS deinit\n"); servername = cfg_getstr(lib, "name");
mdns_deinit();
conffile_unload(); for (i = 0; i < (sizeof(txtrecord) / sizeof(*txtrecord) - 1); i++)
{
txtrecord[i] = (char *)malloc(128);
if (!txtrecord[i])
{
DPRINTF(E_FATAL, L_MAIN, "Out of memory for TXT record\n");
DPRINTF(E_LOG,L_MAIN,"Closing database\n"); httpd_deinit();
db_deinit(); filescanner_deinit();
mdns_deinit();
db_deinit();
conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
}
if (background) memset(txtrecord[i], 0, 128);
{ }
ret = unlink(pidfile);
if (ret < 0)
DPRINTF(E_WARN, L_MAIN, "Could not unlink PID file %s: %s\n", pidfile, strerror(errno));
}
DPRINTF(E_LOG,L_MAIN,"Done!\n"); snprintf(txtrecord[0], 128, "txtvers=1");
snprintf(txtrecord[1], 128, "Database ID=%0X", djb_hash(servername, strlen(servername)));
snprintf(txtrecord[2], 128, "Machine ID=%0X", djb_hash(servername, strlen(servername)));
snprintf(txtrecord[3], 128, "Machine Name=%s", servername);
snprintf(txtrecord[4], 128, "mtd-version=%s", VERSION);
snprintf(txtrecord[5], 128, "iTSh Version=131073"); /* iTunes 6.0.4 */
snprintf(txtrecord[6], 128, "Version=196610"); /* iTunes 6.0.4 */
logger_deinit(); tmp = cfg_getstr(lib, "password");
snprintf(txtrecord[7], 128, "Password=%s", (tmp) ? "true" : "false");
return EXIT_SUCCESS; srand((unsigned int)time(NULL));
if (ffid)
snprintf(txtrecord[8], 128, "ffid=%s", ffid);
else
snprintf(txtrecord[8], 128, "ffid=%08x", rand());
txtrecord[9] = NULL;
DPRINTF(E_LOG,L_MAIN,"Registering rendezvous names\n");
port = cfg_getint(lib, "port");
/* Register web server service */
mdns_register(servername, "_http._tcp", port, txtrecord);
/* Register RSP service */
mdns_register(servername, "_rsp._tcp", port, txtrecord);
/* Register DAAP service */
mdns_register(servername, "_daap._tcp", port, txtrecord);
for (i = 0; i < (sizeof(txtrecord) / sizeof(*txtrecord) - 1); i++)
free(txtrecord[i]);
/* Set up signal fd */
sigfd = signalfd(-1, &sigs, SFD_NONBLOCK | SFD_CLOEXEC);
if (sigfd < 0)
{
DPRINTF(E_FATAL, L_MAIN, "Could not setup signalfd: %s\n", strerror(errno));
httpd_deinit();
filescanner_deinit();
mdns_deinit();
db_deinit();
conffile_unload();
logger_deinit();
exit(EXIT_FAILURE);
}
event_set(&sig_event, sigfd, EV_READ, signal_cb, NULL);
event_base_set(evbase_main, &sig_event);
event_add(&sig_event, NULL);
/* Run the loop */
event_base_dispatch(evbase_main);
DPRINTF(E_LOG, L_MAIN, "Stopping gracefully\n");
DPRINTF(E_LOG, L_MAIN, "HTTPd deinit\n");
httpd_deinit();
DPRINTF(E_LOG, L_MAIN, "File scanner deinit\n");
filescanner_deinit();
DPRINTF(E_LOG, L_MAIN, "mDNS deinit\n");
mdns_deinit();
conffile_unload();
DPRINTF(E_LOG, L_MAIN, "Closing database\n");
db_deinit();
if (background)
{
ret = unlink(pidfile);
if (ret < 0)
DPRINTF(E_WARN, L_MAIN, "Could not unlink PID file %s: %s\n", pidfile, strerror(errno));
}
DPRINTF(E_LOG, L_MAIN, "Exiting.\n");
logger_deinit();
return EXIT_SUCCESS;
} }