2004-02-24 00:41:20 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu)
|
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "interface.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "playlist.h"
|
|
|
|
#include "directory.h"
|
|
|
|
#include "player.h"
|
|
|
|
#include "listen.h"
|
|
|
|
#include "conf.h"
|
|
|
|
#include "path.h"
|
|
|
|
#include "playerData.h"
|
|
|
|
#include "stats.h"
|
|
|
|
#include "sig_handlers.h"
|
|
|
|
#include "audio.h"
|
|
|
|
#include "volume.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "permission.h"
|
2004-05-08 14:00:30 +02:00
|
|
|
#include "replayGain.h"
|
2004-05-31 03:21:17 +02:00
|
|
|
#include "inputPlugin.h"
|
2004-06-20 22:15:05 +02:00
|
|
|
#include "inputStream.h"
|
2004-11-10 22:58:27 +01:00
|
|
|
#include "tag.h"
|
|
|
|
#include "tagTracker.h"
|
2004-11-11 03:36:25 +01:00
|
|
|
#include "dbUtils.h"
|
2004-04-16 03:06:14 +02:00
|
|
|
#include "../config.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#define SYSTEM_CONFIG_FILE_LOCATION "/etc/mpd.conf"
|
|
|
|
#define USER_CONFIG_FILE_LOCATION "/.mpdconf"
|
|
|
|
|
2005-11-16 15:43:04 +01:00
|
|
|
volatile int masterPid = 0;
|
|
|
|
volatile int mainPid = 0;
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
typedef struct _Options {
|
2005-03-09 04:13:33 +01:00
|
|
|
int kill;
|
2004-02-24 00:41:20 +01:00
|
|
|
int daemon;
|
2004-06-01 01:49:38 +02:00
|
|
|
int stdOutput;
|
2004-02-24 00:41:20 +01:00
|
|
|
int createDB;
|
2004-06-01 03:47:49 +02:00
|
|
|
int updateDB;
|
2004-02-24 00:41:20 +01:00
|
|
|
} Options;
|
|
|
|
|
|
|
|
void usage(char * argv[]) {
|
|
|
|
ERROR("usage:\n");
|
|
|
|
ERROR(" %s [options] <conf file>\n",argv[0]);
|
|
|
|
ERROR(" %s [options] (searches for ~%s then %s)\n",
|
|
|
|
argv[0],USER_CONFIG_FILE_LOCATION,
|
|
|
|
SYSTEM_CONFIG_FILE_LOCATION);
|
|
|
|
ERROR("\n");
|
|
|
|
ERROR("options:\n");
|
2004-03-21 22:32:23 +01:00
|
|
|
ERROR(" --help this usage statement\n");
|
2005-03-09 04:13:33 +01:00
|
|
|
ERROR(" --create-db force (re)creation database and exit\n");
|
|
|
|
ERROR(" --kill kill mpd\n");
|
|
|
|
ERROR(" --no-create-db don't create database\n");
|
2004-03-21 22:32:23 +01:00
|
|
|
ERROR(" --no-daemon don't detach from console\n");
|
2004-06-01 01:49:38 +02:00
|
|
|
ERROR(" --stdout print msgs to stdout and stderr\n");
|
2004-11-20 21:28:32 +01:00
|
|
|
/*ERROR(" --update-db create database and exit\n");*/
|
2004-03-21 22:32:23 +01:00
|
|
|
ERROR(" --verbose verbose logging\n");
|
|
|
|
ERROR(" --version prints version information\n");
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void version() {
|
2004-06-01 06:29:34 +02:00
|
|
|
LOG("mpd (MPD: Music Player Daemon) %s\n",VERSION);
|
|
|
|
LOG("\n");
|
2004-06-07 20:54:02 +02:00
|
|
|
LOG("Copyright (C) 2003-2004 Warren Dukes <shank@mercury.chem.pitt.edu>\n");
|
2004-06-01 06:29:34 +02:00
|
|
|
LOG("This is free software; see the source for copying conditions. There is NO\n");
|
|
|
|
LOG("warranty; not even MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
|
|
|
|
LOG("\n");
|
|
|
|
LOG("Supported formats:\n");
|
2004-04-16 03:06:14 +02:00
|
|
|
|
2004-06-01 06:29:34 +02:00
|
|
|
initInputPlugins();
|
|
|
|
printAllInputPluginSuffixes(stdout);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void parseOptions(int argc, char ** argv, Options * options) {
|
|
|
|
int argcLeft = argc;
|
|
|
|
|
|
|
|
options->daemon = 1;
|
2004-06-01 01:49:38 +02:00
|
|
|
options->stdOutput = 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
options->createDB = 0;
|
2004-06-01 03:47:49 +02:00
|
|
|
options->updateDB = 0;
|
2005-03-09 04:13:33 +01:00
|
|
|
options->kill = 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
if(argc>1) {
|
|
|
|
int i = 1;
|
|
|
|
while(i<argc) {
|
|
|
|
if(strncmp(argv[i],"--",2)==0) {
|
|
|
|
if(strcmp(argv[i],"--help")==0) {
|
|
|
|
usage(argv);
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_SUCCESS);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2005-03-09 04:13:33 +01:00
|
|
|
else if(strcmp(argv[i],"--kill")==0) {
|
2005-03-09 04:40:02 +01:00
|
|
|
options->kill++;
|
2005-03-09 04:13:33 +01:00
|
|
|
argcLeft--;
|
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
else if(strcmp(argv[i],"--no-daemon")==0) {
|
|
|
|
options->daemon = 0;
|
|
|
|
argcLeft--;
|
|
|
|
}
|
2004-06-01 01:49:38 +02:00
|
|
|
else if(strcmp(argv[i],"--stdout")==0) {
|
|
|
|
options->stdOutput = 1;
|
|
|
|
argcLeft--;
|
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
else if(strcmp(argv[i],"--create-db")==0) {
|
2004-06-12 04:29:36 +02:00
|
|
|
options->stdOutput = 1;
|
2004-02-24 00:41:20 +01:00
|
|
|
options->createDB = 1;
|
|
|
|
argcLeft--;
|
|
|
|
}
|
2004-11-20 21:28:32 +01:00
|
|
|
/*else if(strcmp(argv[i],"--update-db")==0) {
|
2004-06-12 04:29:36 +02:00
|
|
|
options->stdOutput = 1;
|
2004-06-01 03:47:49 +02:00
|
|
|
options->updateDB = 1;
|
2004-04-13 18:22:59 +02:00
|
|
|
argcLeft--;
|
2004-11-20 21:28:32 +01:00
|
|
|
}*/
|
2004-02-24 00:41:20 +01:00
|
|
|
else if(strcmp(argv[i],"--no-create-db")==0) {
|
|
|
|
options->createDB = -1;
|
|
|
|
argcLeft--;
|
|
|
|
}
|
|
|
|
else if(strcmp(argv[i],"--verbose")==0) {
|
|
|
|
logLevel = LOG_LEVEL_DEBUG;
|
|
|
|
argcLeft--;
|
|
|
|
}
|
|
|
|
else if(strcmp(argv[i],"--version")==0) {
|
|
|
|
version();
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_SUCCESS);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
myfprintf(stderr,"unknown command line option: %s\n",argv[i]);
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else break;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-06 20:00:58 +01:00
|
|
|
if(argcLeft<=2) {
|
2004-10-28 07:14:55 +02:00
|
|
|
if(argcLeft==2) {
|
|
|
|
readConf(argv[argc-1]);
|
2005-03-06 20:00:58 +01:00
|
|
|
return;
|
2004-10-28 07:14:55 +02:00
|
|
|
}
|
|
|
|
else if(argcLeft==1) {
|
2005-03-06 20:00:58 +01:00
|
|
|
struct stat st;
|
2004-02-24 00:41:20 +01:00
|
|
|
char * homedir = getenv("HOME");
|
|
|
|
char userfile[MAXPATHLEN+1] = "";
|
|
|
|
if(homedir && (strlen(homedir)+
|
2005-03-06 20:00:58 +01:00
|
|
|
strlen(USER_CONFIG_FILE_LOCATION)) <
|
|
|
|
MAXPATHLEN) {
|
2004-02-24 00:41:20 +01:00
|
|
|
strcpy(userfile,homedir);
|
|
|
|
strcat(userfile,USER_CONFIG_FILE_LOCATION);
|
|
|
|
}
|
2005-03-06 20:00:58 +01:00
|
|
|
if(strlen(userfile) && (0 == stat(userfile,&st))) {
|
2004-10-28 07:14:55 +02:00
|
|
|
readConf(userfile);
|
2005-03-06 20:00:58 +01:00
|
|
|
return;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2005-03-06 20:00:58 +01:00
|
|
|
else if(0 == stat(SYSTEM_CONFIG_FILE_LOCATION,&st)) {
|
2004-10-28 07:14:55 +02:00
|
|
|
readConf(SYSTEM_CONFIG_FILE_LOCATION);
|
2005-03-06 20:00:58 +01:00
|
|
|
return;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
usage(argv);
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
void closeAllFDs() {
|
2004-02-24 00:41:20 +01:00
|
|
|
int i;
|
2004-06-20 06:37:17 +02:00
|
|
|
int fds = getdtablesize();
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-06-20 06:37:17 +02:00
|
|
|
for(i = 3; i < fds; i++) close(i);
|
2004-06-02 06:05:09 +02:00
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2005-03-06 20:00:58 +01:00
|
|
|
void changeToUser() {
|
|
|
|
ConfigParam * param = getConfigParam(CONF_USER);
|
|
|
|
|
|
|
|
if (param && strlen(param->value)) {
|
2004-02-24 00:41:20 +01:00
|
|
|
/* get uid */
|
|
|
|
struct passwd * userpwd;
|
2005-03-06 20:00:58 +01:00
|
|
|
if ((userpwd = getpwnam(param->value)) == NULL) {
|
|
|
|
ERROR("no such user \"%s\" at line %i\n", param->value,
|
|
|
|
param->line);
|
2004-06-02 06:05:09 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-08-29 15:37:09 +02:00
|
|
|
if(setgid(userpwd->pw_gid) == -1) {
|
2005-03-06 20:00:58 +01:00
|
|
|
ERROR("cannot setgid for user \"%s\" at line %i: %s\n", param->value, param->line,
|
2004-02-24 00:41:20 +01:00
|
|
|
strerror(errno));
|
2004-06-02 06:05:09 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _BSD_SOURCE
|
|
|
|
/* init suplementary groups
|
|
|
|
* (must be done before we change our uid)
|
|
|
|
*/
|
2005-03-06 20:00:58 +01:00
|
|
|
if (initgroups(param->value, userpwd->pw_gid) == -1) {
|
2004-08-17 21:53:35 +02:00
|
|
|
WARNING("cannot init suplementary groups "
|
2005-03-06 20:00:58 +01:00
|
|
|
"of user \"%s\" at line %i: %s\n",
|
|
|
|
param->value, param->line,
|
2004-02-24 00:41:20 +01:00
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* set uid */
|
2004-08-29 15:37:09 +02:00
|
|
|
if (setuid(userpwd->pw_uid) == -1) {
|
2004-02-24 00:41:20 +01:00
|
|
|
ERROR("cannot change to uid of user "
|
2005-03-06 20:00:58 +01:00
|
|
|
"\"%s\" at line %i: %s\n",
|
|
|
|
param->value, param->line,
|
2004-02-24 00:41:20 +01:00
|
|
|
strerror(errno));
|
2004-06-02 06:05:09 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2005-03-06 20:00:58 +01:00
|
|
|
/* this is needed by libs such as arts */
|
2004-10-31 05:34:54 +01:00
|
|
|
if(userpwd->pw_dir) {
|
|
|
|
setenv("HOME", userpwd->pw_dir, 1);
|
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-06-02 06:05:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void openLogFiles(Options * options, FILE ** out, FILE ** err) {
|
2005-03-06 20:00:58 +01:00
|
|
|
ConfigParam * logParam = parseConfigFilePath(CONF_LOG_FILE, 1);
|
|
|
|
ConfigParam * errorParam = parseConfigFilePath(CONF_ERROR_FILE, 1);
|
|
|
|
|
2004-06-12 04:29:36 +02:00
|
|
|
mode_t prev;
|
|
|
|
|
2004-06-12 04:06:16 +02:00
|
|
|
if(options->stdOutput) {
|
|
|
|
flushWarningLog();
|
|
|
|
return;
|
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-06-12 04:29:36 +02:00
|
|
|
/* be sure to create log files w/ rw permissions*/
|
|
|
|
prev = umask(0066);
|
|
|
|
|
2005-03-06 20:00:58 +01:00
|
|
|
if(NULL==(*out=fopen(logParam->value,"a"))) {
|
|
|
|
ERROR("problem opening log file \"%s\" (config line %i) for "
|
|
|
|
"writing\n", logParam->value, logParam->line);
|
2004-06-02 06:05:09 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2005-03-06 20:00:58 +01:00
|
|
|
if(NULL==(*err=fopen(errorParam->value,"a"))) {
|
|
|
|
ERROR("problem opening error file \"%s\" (config line %i) for "
|
|
|
|
"writing\n", errorParam->value,
|
|
|
|
errorParam->line);
|
2004-06-02 06:05:09 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-06-12 04:29:36 +02:00
|
|
|
|
|
|
|
umask(prev);
|
2004-06-02 06:05:09 +02:00
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
void openDB(Options * options, char * argv0) {
|
|
|
|
if(options->createDB>0 || readDirectoryDB()<0) {
|
|
|
|
if(options->createDB<0) {
|
2004-02-24 00:41:20 +01:00
|
|
|
ERROR("can't open db file and using \"--no-create-db\""
|
|
|
|
" command line option\n");
|
2005-03-06 20:00:58 +01:00
|
|
|
ERROR("try running \"%s --create-db\"\n", argv0);
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-06-12 04:06:16 +02:00
|
|
|
flushWarningLog();
|
2004-02-24 00:41:20 +01:00
|
|
|
initMp3Directory();
|
2005-03-06 20:00:58 +01:00
|
|
|
if(writeDirectoryDB()<0) exit(EXIT_FAILURE);
|
2004-06-02 06:05:09 +02:00
|
|
|
if(options->createDB) exit(EXIT_SUCCESS);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-06-02 06:05:09 +02:00
|
|
|
if(options->updateDB) {
|
2004-06-12 04:06:16 +02:00
|
|
|
flushWarningLog();
|
2004-06-04 04:51:54 +02:00
|
|
|
updateMp3Directory();
|
2004-04-13 18:22:59 +02:00
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
2004-06-02 06:05:09 +02:00
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2005-11-16 15:43:04 +01:00
|
|
|
void startMainProcess() {
|
|
|
|
int pid;
|
|
|
|
fflush(0);
|
|
|
|
pid = fork();
|
|
|
|
if(pid>0) {
|
|
|
|
initInputStream();
|
|
|
|
initReplayGainState();
|
|
|
|
/* qball crappy code */
|
|
|
|
readAudioDevicesState();
|
|
|
|
|
|
|
|
/* free stuff we don't need */
|
|
|
|
freeAllListenSockets();
|
|
|
|
|
|
|
|
mainPid = pid;
|
|
|
|
masterInitSigHandlers();
|
|
|
|
while (masterHandlePendingSignals()!=COMMAND_RETURN_KILL)
|
|
|
|
waitOnSignals();
|
|
|
|
/* we're killed */
|
|
|
|
playerKill();
|
|
|
|
|
|
|
|
finishAudioConfig();
|
|
|
|
finishAudioDriver();
|
|
|
|
|
|
|
|
/* qball crappy code */
|
|
|
|
saveAudioDevicesState();
|
|
|
|
|
|
|
|
finishPaths();
|
|
|
|
|
|
|
|
kill(mainPid, SIGTERM);
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
|
|
|
|
} else if(pid<0) {
|
|
|
|
ERROR("problems fork'ing main process!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG("main process started!\n");
|
|
|
|
}
|
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
void daemonize(Options * options) {
|
2005-03-09 04:13:33 +01:00
|
|
|
FILE * fp;
|
|
|
|
ConfigParam * pidFileParam = parseConfigFilePath(CONF_PID_FILE, 1);
|
|
|
|
|
|
|
|
/* do this before daemon'izing so we can fail gracefully if we can't
|
|
|
|
* write to the pid file */
|
|
|
|
DEBUG("opening pid file\n");
|
|
|
|
fp = fopen(pidFileParam->value, "w+");
|
|
|
|
if(!fp) {
|
|
|
|
ERROR("could not open %s \"%s\" (at line %i) for writing: %s\n",
|
|
|
|
CONF_PID_FILE, pidFileParam->value,
|
|
|
|
pidFileParam->line, strerror(errno));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
if(options->daemon) {
|
2004-02-24 00:41:20 +01:00
|
|
|
int pid;
|
|
|
|
|
|
|
|
fflush(NULL);
|
|
|
|
pid = fork();
|
2004-04-03 01:34:16 +02:00
|
|
|
if(pid>0) _exit(EXIT_SUCCESS);
|
2004-02-24 00:41:20 +01:00
|
|
|
else if(pid<0) {
|
|
|
|
ERROR("problems fork'ing for daemon!\n");
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(chdir("/")<0) {
|
|
|
|
ERROR("problems changing to root directory\n");
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(setsid()<0) {
|
|
|
|
ERROR("problems setsid'ing\n");
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-06-01 01:49:38 +02:00
|
|
|
fflush(NULL);
|
|
|
|
pid = fork();
|
|
|
|
if(pid>0) _exit(EXIT_SUCCESS);
|
|
|
|
else if(pid<0) {
|
|
|
|
ERROR("problems fork'ing for daemon!\n");
|
|
|
|
exit(EXIT_FAILURE);
|
2005-03-09 04:13:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG("daemonized!\n");
|
2004-06-01 01:49:38 +02:00
|
|
|
}
|
2005-03-09 04:13:33 +01:00
|
|
|
|
|
|
|
DEBUG("writing pid file\n");
|
|
|
|
fprintf(fp, "%lu\n", (unsigned long)getpid());
|
|
|
|
fclose(fp);
|
2005-11-16 15:43:04 +01:00
|
|
|
masterPid = getpid();
|
2004-06-02 06:05:09 +02:00
|
|
|
}
|
2004-06-01 01:49:38 +02:00
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
void setupLogOutput(Options * options, FILE * out, FILE * err) {
|
|
|
|
if(!options->stdOutput) {
|
2004-06-01 01:49:38 +02:00
|
|
|
fflush(NULL);
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
if(dup2(fileno(out),STDOUT_FILENO)<0) {
|
2004-04-15 07:07:04 +02:00
|
|
|
myfprintf(err,"problems dup2 stdout : %s\n",
|
2004-02-24 00:41:20 +01:00
|
|
|
strerror(errno));
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(dup2(fileno(err),STDERR_FILENO)<0) {
|
2004-04-15 07:07:04 +02:00
|
|
|
myfprintf(err,"problems dup2 stderr : %s\n",
|
2004-02-24 00:41:20 +01:00
|
|
|
strerror(errno));
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2005-03-06 20:00:58 +01:00
|
|
|
myfprintfStdLogMode(out, err);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2005-03-12 04:10:09 +01:00
|
|
|
flushWarningLog();
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
/* lets redirect stdin to dev null as a work around for libao bug */
|
|
|
|
{
|
|
|
|
int fd = open("/dev/null",O_RDONLY);
|
|
|
|
if(fd<0) {
|
|
|
|
ERROR("not able to open /dev/null to redirect stdin: "
|
|
|
|
"%s\n",strerror(errno));
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
if(dup2(fd,STDIN_FILENO)<0) {
|
|
|
|
ERROR("problems dup2's stdin for redirection: "
|
|
|
|
"%s\n",strerror(errno));
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
2004-06-02 06:05:09 +02:00
|
|
|
}
|
|
|
|
|
2005-03-09 04:13:33 +01:00
|
|
|
void cleanUpPidFile() {
|
|
|
|
ConfigParam * pidFileParam = parseConfigFilePath(CONF_PID_FILE, 1);
|
|
|
|
|
|
|
|
DEBUG("cleaning up pid file\n");
|
|
|
|
|
|
|
|
unlink(pidFileParam->value);
|
|
|
|
}
|
|
|
|
|
2005-03-09 04:45:30 +01:00
|
|
|
void killFromPidFile(char * cmd, int killOption) {
|
2005-03-12 23:38:49 +01:00
|
|
|
/*char buf[32];
|
2005-03-09 04:13:33 +01:00
|
|
|
struct stat st_cmd;
|
2005-03-12 23:38:49 +01:00
|
|
|
struct stat st_exe;*/
|
2005-03-09 04:13:33 +01:00
|
|
|
ConfigParam * pidFileParam = parseConfigFilePath(CONF_PID_FILE, 1);
|
|
|
|
int pid;
|
|
|
|
|
|
|
|
FILE * fp = fopen(pidFileParam->value,"r");
|
|
|
|
if(!fp) {
|
2005-03-09 04:30:34 +01:00
|
|
|
ERROR("unable to open %s \"%s\": %s\n",
|
2005-03-09 04:13:33 +01:00
|
|
|
CONF_PID_FILE, pidFileParam->value,
|
2005-03-09 04:45:30 +01:00
|
|
|
strerror(errno));
|
2005-03-09 04:13:33 +01:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
if(fscanf(fp, "%i", &pid) != 1) {
|
|
|
|
ERROR("unable to read the pid from file \"%s\"\n",
|
|
|
|
pidFileParam->value);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
2005-03-12 23:38:49 +01:00
|
|
|
/*memset(buf, 0, 32);
|
2005-03-09 04:13:33 +01:00
|
|
|
snprintf(buf, 31, "/proc/%i/exe", pid);
|
|
|
|
|
2005-03-09 04:40:02 +01:00
|
|
|
if(killOption == 1) {
|
|
|
|
if(stat(cmd, &st_cmd)) {
|
|
|
|
ERROR("unable to stat file \"%s\"\n", cmd);
|
|
|
|
ERROR("execute \"%s --kill -kill\" to kill pid %i\n",
|
|
|
|
cmd, pid);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
if(stat(buf, &st_exe)) {
|
|
|
|
ERROR("unable to kill proccess %i (%s: %s)\n", pid, buf,
|
|
|
|
strerror(errno));
|
|
|
|
ERROR("execute \"%s --kill -kill\" to kill pid %i\n",
|
|
|
|
cmd, pid);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(st_exe.st_dev != st_cmd.st_dev || st_exe.st_ino != st_cmd.st_ino) {
|
|
|
|
ERROR("%s doesn't appear to be running as pid %i\n",
|
|
|
|
cmd, pid);
|
|
|
|
ERROR("execute \"%s --kill -kill\" to kill pid %i\n",
|
|
|
|
cmd, pid);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2005-03-12 23:38:49 +01:00
|
|
|
}*/
|
2005-03-09 04:13:33 +01:00
|
|
|
|
2005-03-09 04:40:02 +01:00
|
|
|
if(kill(pid, SIGTERM)) {
|
|
|
|
ERROR("unable to kill proccess %i: %s\n", pid, strerror(errno));
|
2005-03-09 04:13:33 +01:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
int main(int argc, char * argv[]) {
|
|
|
|
FILE * out;
|
|
|
|
FILE * err;
|
|
|
|
Options options;
|
|
|
|
|
|
|
|
closeAllFDs();
|
|
|
|
|
|
|
|
initConf();
|
|
|
|
|
|
|
|
parseOptions(argc, argv, &options);
|
|
|
|
|
2005-03-09 04:45:30 +01:00
|
|
|
if(options.kill) killFromPidFile(argv[0], options.kill);
|
2005-11-16 15:43:04 +01:00
|
|
|
|
2005-03-09 04:13:33 +01:00
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
initStats();
|
2004-11-10 22:58:27 +01:00
|
|
|
initTagConfig();
|
2004-06-02 06:05:09 +02:00
|
|
|
initLog();
|
|
|
|
|
2005-03-06 20:00:58 +01:00
|
|
|
if(options.createDB <= 0 && !options.updateDB) listenOnPort();
|
2004-06-02 06:05:09 +02:00
|
|
|
|
2005-03-06 20:00:58 +01:00
|
|
|
changeToUser();
|
2005-11-16 15:43:04 +01:00
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
openLogFiles(&options, &out, &err);
|
|
|
|
|
2005-11-16 15:43:04 +01:00
|
|
|
initPlayerData();
|
|
|
|
|
|
|
|
daemonize(&options);
|
|
|
|
|
|
|
|
initInputPlugins();
|
2005-03-06 20:00:58 +01:00
|
|
|
initPaths();
|
2005-11-16 15:43:04 +01:00
|
|
|
initAudioConfig();
|
|
|
|
initAudioDriver();
|
|
|
|
|
|
|
|
startMainProcess();
|
|
|
|
/* This is the main process which has
|
|
|
|
* been forked from the master process.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
initPermissions();
|
|
|
|
|
|
|
|
initPlaylist();
|
|
|
|
|
|
|
|
openDB(&options, argv[0]);
|
|
|
|
|
|
|
|
initCommands();
|
|
|
|
initVolume();
|
|
|
|
initInterfaces();
|
|
|
|
|
2004-11-10 22:58:27 +01:00
|
|
|
printMemorySavedByTagTracker();
|
2004-11-11 03:36:25 +01:00
|
|
|
printSavedMemoryFromFilenames();
|
2004-11-14 00:22:22 +01:00
|
|
|
/*printSavedMemoryFromDirectoryNames();*/
|
2004-11-10 22:58:27 +01:00
|
|
|
|
2004-06-02 06:05:09 +02:00
|
|
|
|
|
|
|
setupLogOutput(&options, out, err);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
openVolumeDevice();
|
|
|
|
initSigHandlers();
|
|
|
|
readPlaylistState();
|
|
|
|
|
2005-08-23 14:01:37 +02:00
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
while(COMMAND_RETURN_KILL!=doIOForInterfaces()) {
|
2005-03-12 23:38:49 +01:00
|
|
|
if(COMMAND_RETURN_KILL==handlePendingSignals()) break;
|
2004-02-24 00:41:20 +01:00
|
|
|
syncPlayerAndPlaylist();
|
|
|
|
closeOldInterfaces();
|
2004-04-12 01:07:43 +02:00
|
|
|
readDirectoryDBIfUpdateIsFinished();
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
savePlaylistState();
|
2005-08-23 14:01:37 +02:00
|
|
|
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
freeAllInterfaces();
|
2004-11-03 20:42:54 +01:00
|
|
|
closeAllListenSockets();
|
2004-02-24 00:41:20 +01:00
|
|
|
closeMp3Directory();
|
|
|
|
finishPlaylist();
|
|
|
|
freePlayerData();
|
|
|
|
finishAudioDriver();
|
2004-05-10 04:20:15 +02:00
|
|
|
finishAudioConfig();
|
2004-02-24 00:41:20 +01:00
|
|
|
finishVolume();
|
|
|
|
finishPaths();
|
|
|
|
finishPermissions();
|
|
|
|
finishCommands();
|
2004-05-31 03:21:17 +02:00
|
|
|
finishInputPlugins();
|
2005-03-09 04:13:33 +01:00
|
|
|
cleanUpPidFile();
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-04-03 01:34:16 +02:00
|
|
|
return EXIT_SUCCESS;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|