2012-07-09 20:32:02 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-07-09 20:32:02 +02:00
|
|
|
* *
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-11-04 14:41:24 +01:00
|
|
|
#include "methods/pluginchecktask.h"
|
|
|
|
#include "icinga/pluginutility.h"
|
2013-06-13 11:33:00 +02:00
|
|
|
#include "icinga/checkcommand.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "icinga/macroprocessor.h"
|
2013-03-22 14:40:55 +01:00
|
|
|
#include "icinga/icingaapplication.h"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "base/dynamictype.h"
|
2013-03-22 14:40:55 +01:00
|
|
|
#include "base/logger_fwd.h"
|
2013-03-25 18:36:15 +01:00
|
|
|
#include "base/scriptfunction.h"
|
|
|
|
#include "base/utility.h"
|
2013-03-25 20:47:02 +01:00
|
|
|
#include "base/process.h"
|
2013-03-15 18:21:29 +01:00
|
|
|
#include <boost/algorithm/string/classification.hpp>
|
2013-03-18 11:02:18 +01:00
|
|
|
#include <boost/algorithm/string/split.hpp>
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2012-06-13 13:42:55 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-13 16:04:53 +01:00
|
|
|
REGISTER_SCRIPTFUNCTION(PluginCheck, &PluginCheckTask::ScriptFunc);
|
2013-01-22 09:21:50 +01:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
void PluginCheckTask::ScriptFunc(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr)
|
2012-06-13 13:42:55 +02:00
|
|
|
{
|
2014-04-03 15:36:13 +02:00
|
|
|
CheckCommand::Ptr commandObj = checkable->GetCheckCommand();
|
2013-07-02 08:44:03 +02:00
|
|
|
Value raw_command = commandObj->GetCommandLine();
|
2012-07-14 15:59:59 +02:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
bool is_service = checkable->GetType() == DynamicType::GetByName("Service");
|
|
|
|
Host::Ptr host;
|
|
|
|
Service::Ptr service;
|
|
|
|
|
|
|
|
if (is_service) {
|
|
|
|
service = static_pointer_cast<Service>(checkable);
|
|
|
|
host = service->GetHost();
|
|
|
|
} else
|
|
|
|
host = static_pointer_cast<Host>(checkable);
|
|
|
|
|
2013-03-22 14:40:55 +01:00
|
|
|
std::vector<MacroResolver::Ptr> resolvers;
|
2014-04-03 15:36:13 +02:00
|
|
|
if (is_service)
|
|
|
|
resolvers.push_back(service);
|
|
|
|
resolvers.push_back(host);
|
2013-09-10 10:33:15 +02:00
|
|
|
resolvers.push_back(commandObj);
|
2013-03-22 14:40:55 +01:00
|
|
|
resolvers.push_back(IcingaApplication::GetInstance());
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
Value command = MacroProcessor::ResolveMacros(raw_command, resolvers, checkable->GetLastCheckResult(), Utility::EscapeShellCmd, commandObj->GetEscapeMacros());
|
2013-03-22 14:40:55 +01:00
|
|
|
|
2013-11-06 08:51:56 +01:00
|
|
|
Dictionary::Ptr envMacros = make_shared<Dictionary>();
|
2013-03-22 14:40:55 +01:00
|
|
|
|
2013-06-13 11:33:00 +02:00
|
|
|
Array::Ptr export_macros = commandObj->GetExportMacros();
|
2013-03-22 14:40:55 +01:00
|
|
|
|
|
|
|
if (export_macros) {
|
|
|
|
BOOST_FOREACH(const String& macro, export_macros) {
|
|
|
|
String value;
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
if (!MacroProcessor::ResolveMacro(macro, resolvers, checkable->GetLastCheckResult(), &value)) {
|
2013-03-22 14:40:55 +01:00
|
|
|
Log(LogWarning, "icinga", "export_macros for service '" + service->GetName() + "' refers to unknown macro '" + macro + "'");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
envMacros->Set(macro, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-12 10:05:36 +01:00
|
|
|
cr->SetCommand(command);
|
|
|
|
|
2013-11-06 08:51:56 +01:00
|
|
|
Process::Ptr process = make_shared<Process>(Process::SplitCommand(command), envMacros);
|
2012-07-15 17:48:58 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
process->SetTimeout(commandObj->GetTimeout());
|
2013-06-13 12:05:24 +02:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
process->Run(boost::bind(&PluginCheckTask::ProcessFinishedHandler, checkable, cr, _1));
|
2014-03-12 10:05:36 +01:00
|
|
|
|
|
|
|
}
|
2012-07-14 15:59:59 +02:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
void PluginCheckTask::ProcessFinishedHandler(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, const ProcessResult& pr)
|
2014-03-12 10:05:36 +01:00
|
|
|
{
|
2012-08-02 09:38:08 +02:00
|
|
|
String output = pr.Output;
|
|
|
|
output.Trim();
|
2014-03-12 10:05:36 +01:00
|
|
|
std::pair<String, Value> co = PluginUtility::ParseCheckOutput(output);
|
|
|
|
cr->SetOutput(co.first);
|
|
|
|
cr->SetPerformanceData(co.second);
|
|
|
|
cr->SetState(PluginUtility::ExitStatusToState(pr.ExitStatus));
|
|
|
|
cr->SetExitStatus(pr.ExitStatus);
|
|
|
|
cr->SetExecutionStart(pr.ExecutionStart);
|
|
|
|
cr->SetExecutionEnd(pr.ExecutionEnd);
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
checkable->ProcessCheckResult(cr);
|
2013-01-22 12:05:36 +01:00
|
|
|
}
|