2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.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 *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "config/configcompilercontext.h"
|
|
|
|
#include "config/configcompiler.h"
|
2013-09-10 16:03:36 +02:00
|
|
|
#include "config/configitembuilder.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/application.h"
|
|
|
|
#include "base/logger_fwd.h"
|
2013-03-18 11:02:18 +01:00
|
|
|
#include "base/timer.h"
|
2013-03-25 18:36:15 +01:00
|
|
|
#include "base/utility.h"
|
2013-03-15 18:21:29 +01:00
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
#include <boost/tuple/tuple.hpp>
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/smart_ptr/make_shared.hpp>
|
|
|
|
#include <boost/foreach.hpp>
|
2012-04-13 11:32:19 +02:00
|
|
|
|
2012-05-28 10:41:21 +02:00
|
|
|
#ifndef _WIN32
|
2012-08-14 12:51:51 +02:00
|
|
|
# include "icinga-version.h"
|
2012-09-10 14:44:54 +02:00
|
|
|
# define ICINGA_VERSION VERSION ", " GIT_MESSAGE
|
2012-08-14 12:51:51 +02:00
|
|
|
|
2012-05-28 10:41:21 +02:00
|
|
|
# include <ltdl.h>
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2012-04-13 13:10:35 +02:00
|
|
|
using namespace icinga;
|
2013-02-02 23:22:27 +01:00
|
|
|
namespace po = boost::program_options;
|
2012-04-13 13:10:35 +02:00
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
static po::variables_map g_AppParams;
|
2013-02-03 16:00:53 +01:00
|
|
|
|
2013-02-05 13:06:42 +01:00
|
|
|
static bool LoadConfigFiles(bool validateOnly)
|
2013-02-03 11:46:17 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
ConfigCompilerContext::GetInstance()->Reset();
|
2013-02-05 13:06:42 +01:00
|
|
|
|
2013-07-02 09:58:26 +02:00
|
|
|
BOOST_FOREACH(const String& configPath, g_AppParams["config"].as<std::vector<String> >()) {
|
|
|
|
ConfigCompiler::CompileFile(configPath);
|
|
|
|
}
|
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
String name, fragment;
|
2013-03-15 18:21:29 +01:00
|
|
|
BOOST_FOREACH(boost::tie(name, fragment), ConfigFragmentRegistry::GetInstance()->GetItems()) {
|
2013-03-12 13:45:54 +01:00
|
|
|
ConfigCompiler::CompileText(name, fragment);
|
|
|
|
}
|
|
|
|
|
2013-02-05 13:06:42 +01:00
|
|
|
bool hasError = false;
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
BOOST_FOREACH(const ConfigCompilerError& error, ConfigCompilerContext::GetInstance()->GetErrors()) {
|
2013-03-15 11:18:02 +01:00
|
|
|
if (!error.Warning) {
|
|
|
|
hasError = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-08 10:09:27 +02:00
|
|
|
/* Don't link or validate if we have already encountered at least one error. */
|
|
|
|
if (!hasError) {
|
2013-08-20 11:06:04 +02:00
|
|
|
ConfigItem::LinkItems();
|
|
|
|
ConfigItem::ValidateItems();
|
2013-04-08 10:09:27 +02:00
|
|
|
}
|
2013-03-15 11:18:02 +01:00
|
|
|
|
|
|
|
hasError = false;
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
BOOST_FOREACH(const ConfigCompilerError& error, ConfigCompilerContext::GetInstance()->GetErrors()) {
|
2013-02-05 13:06:42 +01:00
|
|
|
if (error.Warning) {
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogWarning, "icinga-app", "Config warning: " + error.Message);
|
2013-02-05 13:06:42 +01:00
|
|
|
} else {
|
|
|
|
hasError = true;
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogCritical, "icinga-app", "Config error: " + error.Message);
|
2013-02-05 13:06:42 +01:00
|
|
|
}
|
|
|
|
}
|
2013-02-03 11:46:17 +01:00
|
|
|
|
2013-02-05 13:06:42 +01:00
|
|
|
if (hasError)
|
|
|
|
return false;
|
2013-02-03 11:46:17 +01:00
|
|
|
|
2013-02-05 16:16:34 +01:00
|
|
|
if (validateOnly)
|
|
|
|
return true;
|
|
|
|
|
2013-09-10 16:53:11 +02:00
|
|
|
if (Application::GetInstance()) {
|
|
|
|
Log(LogCritical, "icinga-app", "You must not manually create an Application object.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ConfigItemBuilder::Ptr builder = boost::make_shared<ConfigItemBuilder>();
|
|
|
|
builder->SetType(Application::GetApplicationType());
|
|
|
|
builder->SetName("application");
|
|
|
|
ConfigItem::Ptr item = builder->Compile();
|
|
|
|
item->Register();
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
ConfigItem::ActivateItems();
|
2013-02-03 11:46:17 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
ConfigItem::DiscardItems();
|
|
|
|
ConfigType::DiscardTypes();
|
2013-02-03 11:46:17 +01:00
|
|
|
|
2013-02-05 13:06:42 +01:00
|
|
|
return true;
|
2013-02-03 11:46:17 +01:00
|
|
|
}
|
|
|
|
|
2013-08-30 14:27:24 +02:00
|
|
|
static void SigHupHandler(int)
|
|
|
|
{
|
|
|
|
Application::RequestRestart();
|
|
|
|
}
|
|
|
|
|
2013-05-03 13:39:31 +02:00
|
|
|
static bool Daemonize(const String& stderrFile)
|
|
|
|
{
|
|
|
|
#ifndef _WIN32
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid == -1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid)
|
|
|
|
exit(0);
|
|
|
|
|
|
|
|
int fdnull = open("/dev/null", O_RDWR);
|
|
|
|
if (fdnull > 0) {
|
|
|
|
if (fdnull != 0)
|
|
|
|
dup2(fdnull, 0);
|
|
|
|
|
|
|
|
if (fdnull != 1)
|
|
|
|
dup2(fdnull, 1);
|
|
|
|
|
|
|
|
if (fdnull > 2)
|
|
|
|
close(fdnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *errPath = "/dev/null";
|
|
|
|
|
|
|
|
if (!stderrFile.IsEmpty())
|
|
|
|
errPath = stderrFile.CStr();
|
|
|
|
|
|
|
|
int fderr = open(errPath, O_WRONLY | O_APPEND);
|
|
|
|
|
|
|
|
if (fderr < 0 && errno == ENOENT)
|
|
|
|
fderr = open(errPath, O_CREAT | O_WRONLY | O_APPEND, 0600);
|
|
|
|
|
|
|
|
if (fderr > 0) {
|
|
|
|
if (fderr != 2)
|
|
|
|
dup2(fderr, 2);
|
|
|
|
|
|
|
|
if (fderr > 2)
|
|
|
|
close(fderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
pid_t sid = setsid();
|
|
|
|
if (sid == -1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-15 10:58:14 +02:00
|
|
|
/**
|
|
|
|
* Entry point for the Icinga application.
|
|
|
|
*
|
|
|
|
* @params argc Number of command line arguments.
|
|
|
|
* @params argv Command line arguments.
|
|
|
|
* @returns The application's exit status.
|
|
|
|
*/
|
2012-05-14 19:14:23 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2012-05-29 16:24:55 +02:00
|
|
|
#ifndef _WIN32
|
2012-05-28 10:41:21 +02:00
|
|
|
LTDL_SET_PRELOADED_SYMBOLS();
|
2012-05-29 16:24:55 +02:00
|
|
|
#endif /* _WIN32 */
|
2012-05-28 10:41:21 +02:00
|
|
|
|
2012-08-14 12:51:51 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
lt_dlinit();
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
/* Set thread title. */
|
2013-09-03 15:44:31 +02:00
|
|
|
Utility::SetThreadName("Main Thread", false);
|
2013-03-25 18:36:15 +01:00
|
|
|
|
2013-02-14 16:18:58 +01:00
|
|
|
/* Set command-line arguments. */
|
|
|
|
Application::SetArgC(argc);
|
|
|
|
Application::SetArgV(argv);
|
|
|
|
|
2013-01-30 11:51:15 +01:00
|
|
|
/* Install exception handlers to make debugging easier. */
|
|
|
|
Application::InstallExceptionHandlers();
|
|
|
|
|
2012-09-28 13:16:08 +02:00
|
|
|
#ifdef ICINGA_PREFIX
|
|
|
|
Application::SetPrefixDir(ICINGA_PREFIX);
|
2013-08-30 12:04:24 +02:00
|
|
|
#else /* ICINGA_PREFIX */
|
|
|
|
Application::SetPrefixDir(".");
|
2012-09-28 13:16:08 +02:00
|
|
|
#endif /* ICINGA_PREFIX */
|
|
|
|
|
|
|
|
#ifdef ICINGA_LOCALSTATEDIR
|
|
|
|
Application::SetLocalStateDir(ICINGA_LOCALSTATEDIR);
|
2013-08-30 12:04:24 +02:00
|
|
|
#else /* ICINGA_LOCALSTATEDIR */
|
|
|
|
Application::SetLocalStateDir("./var");
|
2012-09-28 13:16:08 +02:00
|
|
|
#endif /* ICINGA_LOCALSTATEDIR */
|
|
|
|
|
2012-10-02 09:26:17 +02:00
|
|
|
#ifdef ICINGA_PKGLIBDIR
|
|
|
|
Application::SetPkgLibDir(ICINGA_PKGLIBDIR);
|
2013-08-30 12:04:24 +02:00
|
|
|
#else /* ICINGA_PKGLIBDIR */
|
|
|
|
Application::SetPkgLibDir(".");
|
2012-10-02 09:26:17 +02:00
|
|
|
#endif /* ICINGA_PKGLIBDIR */
|
|
|
|
|
2013-02-01 22:44:58 +01:00
|
|
|
#ifdef ICINGA_PKGDATADIR
|
|
|
|
Application::SetPkgDataDir(ICINGA_PKGDATADIR);
|
2013-08-30 12:04:24 +02:00
|
|
|
#else /* ICINGA_PKGDATADIR */
|
|
|
|
Application::SetPkgDataDir(".");
|
2013-02-01 22:44:58 +01:00
|
|
|
#endif /* ICINGA_PKGDATADIR */
|
|
|
|
|
2013-08-30 12:04:24 +02:00
|
|
|
Application::SetStatePath(Application::GetLocalStateDir() + "/lib/icinga2/icinga2.state");
|
2013-09-10 16:03:36 +02:00
|
|
|
Application::SetPidPath(Application::GetLocalStateDir() + "/run/icinga2/icinga2.pid");
|
|
|
|
|
|
|
|
Application::SetApplicationType("IcingaApplication");
|
2013-08-30 12:04:24 +02:00
|
|
|
|
2013-02-02 23:22:27 +01:00
|
|
|
po::options_description desc("Supported options");
|
|
|
|
desc.add_options()
|
2013-02-06 09:45:44 +01:00
|
|
|
("help", "show this help message")
|
2013-02-03 01:21:11 +01:00
|
|
|
("version,V", "show version information")
|
2013-03-16 21:18:53 +01:00
|
|
|
("library,l", po::value<std::vector<String> >(), "load a library")
|
|
|
|
("include,I", po::value<std::vector<String> >(), "add include search directory")
|
|
|
|
("config,c", po::value<std::vector<String> >(), "parse a configuration file")
|
2013-02-02 23:22:27 +01:00
|
|
|
("validate,v", "exit after validating the configuration")
|
2013-02-06 09:45:44 +01:00
|
|
|
("debug,x", "enable debugging")
|
2013-05-03 13:39:31 +02:00
|
|
|
("daemonize,d", "detach from the controlling terminal")
|
|
|
|
("errorlog,e", po::value<String>(), "log fatal errors to the specified log file (only works in combination with --daemonize)")
|
2013-02-02 23:22:27 +01:00
|
|
|
;
|
|
|
|
|
2013-02-02 23:29:02 +01:00
|
|
|
try {
|
2013-02-03 11:46:17 +01:00
|
|
|
po::store(po::parse_command_line(argc, argv, desc), g_AppParams);
|
2013-03-16 21:18:53 +01:00
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
std::ostringstream msgbuf;
|
2013-02-02 23:29:02 +01:00
|
|
|
msgbuf << "Error while parsing command-line options: " << ex.what();
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogCritical, "icinga-app", msgbuf.str());
|
2013-02-02 23:29:02 +01:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
po::notify(g_AppParams);
|
2013-02-02 23:22:27 +01:00
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("debug"))
|
2013-02-02 23:22:27 +01:00
|
|
|
Application::SetDebugging(true);
|
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("help") || g_AppParams.count("version")) {
|
2013-02-06 17:49:11 +01:00
|
|
|
String appName = Utility::BaseName(argv[0]);
|
|
|
|
|
|
|
|
if (appName.GetLength() > 3 && appName.SubStr(0, 3) == "lt-")
|
|
|
|
appName = appName.SubStr(3, appName.GetLength() - 3);
|
|
|
|
|
2013-08-28 17:19:34 +02:00
|
|
|
std::cout << appName << " " << "- The Icinga 2 network monitoring daemon.";
|
2013-02-06 17:49:11 +01:00
|
|
|
|
|
|
|
if (g_AppParams.count("version")) {
|
2013-02-03 01:21:11 +01:00
|
|
|
#ifndef _WIN32
|
2013-02-06 17:49:11 +01:00
|
|
|
std::cout << " (Version: " << ICINGA_VERSION << ")";
|
2013-02-03 01:21:11 +01:00
|
|
|
#endif /* _WIN32 */
|
2013-02-06 17:49:11 +01:00
|
|
|
std::cout << std::endl
|
|
|
|
<< "Copyright (c) 2012-2013 Icinga Development Team (http://www.icinga.org)" << std::endl
|
|
|
|
<< "License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl2.html>" << std::endl
|
|
|
|
<< "This is free software: you are free to change and redistribute it." << std::endl
|
|
|
|
<< "There is NO WARRANTY, to the extent permitted by law.";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << std::endl;
|
2013-02-03 01:21:11 +01:00
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("version"))
|
2013-02-03 01:21:11 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("help")) {
|
2013-02-03 01:21:11 +01:00
|
|
|
std::cout << std::endl
|
|
|
|
<< desc << std::endl
|
|
|
|
<< "Report bugs at <https://dev.icinga.org/>" << std::endl
|
|
|
|
<< "Icinga home page: <http://www.icinga.org/>" << std::endl;
|
2013-02-02 23:22:27 +01:00
|
|
|
return EXIT_SUCCESS;
|
2012-08-14 12:51:51 +02:00
|
|
|
}
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogInformation, "icinga-app", "Icinga application loader"
|
2013-02-03 01:21:11 +01:00
|
|
|
#ifndef _WIN32
|
|
|
|
" (version: " ICINGA_VERSION ")"
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
);
|
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
String searchDir = Application::GetPkgLibDir();
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogInformation, "base", "Adding library search dir: " + searchDir);
|
2013-03-12 13:45:54 +01:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
SetDllDirectory(searchDir.CStr());
|
|
|
|
#else /* _WIN32 */
|
|
|
|
lt_dladdsearchdir(searchDir.CStr());
|
|
|
|
#endif /* _WIN32 */
|
2012-09-26 12:08:07 +02:00
|
|
|
|
2013-03-12 13:45:54 +01:00
|
|
|
(void) Utility::LoadExtensionLibrary("icinga");
|
2013-01-17 15:05:34 +01:00
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("library")) {
|
2013-03-16 21:18:53 +01:00
|
|
|
BOOST_FOREACH(const String& libraryName, g_AppParams["library"].as<std::vector<String> >()) {
|
2013-03-12 13:45:54 +01:00
|
|
|
(void) Utility::LoadExtensionLibrary(libraryName);
|
2013-02-02 23:22:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 22:44:58 +01:00
|
|
|
ConfigCompiler::AddIncludeSearchDir(Application::GetPkgDataDir());
|
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("include")) {
|
2013-03-16 21:18:53 +01:00
|
|
|
BOOST_FOREACH(const String& includePath, g_AppParams["include"].as<std::vector<String> >()) {
|
2013-02-02 23:22:27 +01:00
|
|
|
ConfigCompiler::AddIncludeSearchDir(includePath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-03 11:46:17 +01:00
|
|
|
if (g_AppParams.count("config") == 0) {
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogCritical, "icinga-app", "You need to specify at least one config file (using the --config option).");
|
2013-02-02 23:22:27 +01:00
|
|
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-05-03 13:39:31 +02:00
|
|
|
if (g_AppParams.count("daemonize")) {
|
|
|
|
String errorLog;
|
|
|
|
|
|
|
|
if (g_AppParams.count("errorlog"))
|
|
|
|
errorLog = g_AppParams["errorlog"].as<String>();
|
|
|
|
|
|
|
|
Daemonize(errorLog);
|
|
|
|
}
|
|
|
|
|
2013-02-05 13:06:42 +01:00
|
|
|
bool validateOnly = g_AppParams.count("validate");
|
|
|
|
|
|
|
|
if (!LoadConfigFiles(validateOnly))
|
2012-09-27 09:58:16 +02:00
|
|
|
return EXIT_FAILURE;
|
2013-02-03 11:46:17 +01:00
|
|
|
|
2013-02-05 13:06:42 +01:00
|
|
|
if (validateOnly) {
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogInformation, "icinga-app", "Finished validating the configuration file(s).");
|
2013-02-05 13:06:42 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2013-08-30 14:27:24 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
struct sigaction sa;
|
|
|
|
memset(&sa, 0, sizeof(sa));
|
|
|
|
sa.sa_handler = &SigHupHandler;
|
|
|
|
sigaction(SIGHUP, &sa, NULL);
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2013-09-10 16:53:11 +02:00
|
|
|
return Application::GetInstance()->Run();
|
2012-05-14 19:14:23 +02:00
|
|
|
}
|