icinga2/lib/icinga/pluginutility.cpp

260 lines
7.2 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2014 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 *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#include "icinga/pluginutility.h"
#include "icinga/checkcommand.h"
2013-03-17 20:19:29 +01:00
#include "icinga/macroprocessor.h"
#include "icinga/icingaapplication.h"
#include "icinga/perfdatavalue.h"
2013-03-17 20:19:29 +01:00
#include "base/dynamictype.h"
#include "base/logger_fwd.h"
2013-03-25 18:36:15 +01:00
#include "base/scriptfunction.h"
#include "base/utility.h"
#include "base/convert.h"
2013-03-25 20:47:02 +01:00
#include "base/process.h"
2013-11-13 09:08:17 +01:00
#include "base/objectlock.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>
#include <boost/algorithm/string/trim.hpp>
2013-03-16 21:18:53 +01:00
#include <boost/foreach.hpp>
using namespace icinga;
void PluginUtility::ExecuteCommand(const Command::Ptr& commandObj, const Checkable::Ptr& checkable,
const MacroProcessor::ResolverList& macroResolvers,
const boost::function<void(const Value& commandLine, const ProcessResult&)>& callback)
{
Value raw_command = commandObj->GetCommandLine();
Dictionary::Ptr raw_arguments = commandObj->GetArguments();
Value command;
if (!raw_arguments || raw_command.IsObjectType<Array>())
command = MacroProcessor::ResolveMacros(raw_command, macroResolvers, checkable->GetLastCheckResult(), NULL, Utility::EscapeShellArg);
else {
Array::Ptr arr = make_shared<Array>();
arr->Add(raw_command);
command = arr;
}
if (raw_arguments) {
ObjectLock olock(raw_arguments);
BOOST_FOREACH(const Dictionary::Pair& kv, raw_arguments) {
const String& argname = kv.first;
const Value& arginfo = kv.second;
bool optional = false;
bool skip_key = false;
String argval;
if (arginfo.IsObjectType<Dictionary>()) {
Dictionary::Ptr argdict = arginfo;
argval = argdict->Get("value");
optional = argdict->Get("optional");
skip_key = argdict->Get("skip_key");
String set_if = argdict->Get("set_if");
if (!set_if.IsEmpty()) {
String missingMacro;
String set_if_resolved = MacroProcessor::ResolveMacros(set_if, macroResolvers,
checkable->GetLastCheckResult(), &missingMacro);
if (!missingMacro.IsEmpty() || !Convert::ToLong(set_if_resolved))
continue;
}
}
else
argval = arginfo;
String missingMacro;
String argresolved = MacroProcessor::ResolveMacros(argval, macroResolvers,
checkable->GetLastCheckResult(), &missingMacro);
if (!missingMacro.IsEmpty()) {
if (!optional) {
String message = "Non-optional macro '" + missingMacro + "' used in argument '" +
argname + "' is missing while executing command '" + commandObj->GetName() +
"' for object '" + checkable->GetName() + "'";
Log(LogWarning, "methods", message);
if (callback) {
ProcessResult pr;
pr.ExecutionStart = Utility::GetTime();
pr.ExecutionStart = pr.ExecutionStart;
pr.Output = message;
callback(Empty, pr);
}
return;
}
continue;
}
Array::Ptr command_arr = command;
if (!skip_key)
command_arr->Add(argname);
if (!argval.IsEmpty())
command_arr->Add(argresolved);
}
}
Dictionary::Ptr envMacros = make_shared<Dictionary>();
Dictionary::Ptr env = commandObj->GetEnv();
if (env) {
ObjectLock olock(env);
BOOST_FOREACH(const Dictionary::Pair& kv, env) {
String name = kv.second;
Value value = MacroProcessor::ResolveMacros(name, macroResolvers, checkable->GetLastCheckResult());
envMacros->Set(kv.first, value);
}
}
Process::Ptr process = make_shared<Process>(Process::PrepareCommand(command), envMacros);
process->SetTimeout(commandObj->GetTimeout());
process->Run(boost::bind(callback, command, _1));
}
ServiceState PluginUtility::ExitStatusToState(int exitStatus)
{
switch (exitStatus) {
case 0:
return ServiceOK;
case 1:
return ServiceWarning;
case 2:
return ServiceCritical;
default:
return ServiceUnknown;
2012-06-19 09:38:20 +02:00
}
}
std::pair<String, Value> PluginUtility::ParseCheckOutput(const String& output)
{
String text;
String perfdata;
2013-03-18 11:02:18 +01:00
std::vector<String> lines;
boost::algorithm::split(lines, output, boost::is_any_of("\r\n"));
BOOST_FOREACH (const String& line, lines) {
size_t delim = line.FindFirstOf("|");
if (!text.IsEmpty())
text += "\n";
if (delim != String::NPos) {
text += line.SubStr(0, delim);
if (!perfdata.IsEmpty())
perfdata += " ";
perfdata += line.SubStr(delim + 1, line.GetLength());
} else {
text += line;
}
}
boost::algorithm::trim(perfdata);
return std::make_pair(text, ParsePerfdata(perfdata));
}
Value PluginUtility::ParsePerfdata(const String& perfdata)
{
try {
Dictionary::Ptr result = make_shared<Dictionary>();
size_t begin = 0;
String multi_prefix;
for (;;) {
size_t eqp = perfdata.FindFirstOf('=', begin);
if (eqp == String::NPos)
break;
String key = perfdata.SubStr(begin, eqp - begin);
if (key.GetLength() > 2 && key[0] == '\'' && key[key.GetLength() - 1] == '\'')
key = key.SubStr(1, key.GetLength() - 2);
size_t multi_index = key.RFind("::");
if (multi_index != String::NPos)
multi_prefix = "";
size_t spq = perfdata.FindFirstOf(' ', eqp);
if (spq == String::NPos)
spq = perfdata.GetLength();
String value = perfdata.SubStr(eqp + 1, spq - eqp - 1);
if (!multi_prefix.IsEmpty())
key = multi_prefix + "::" + key;
result->Set(key, PerfdataValue::Parse(value));
if (multi_index != String::NPos)
multi_prefix = key.SubStr(0, multi_index);
begin = spq + 1;
}
return result;
} catch (const std::exception&) {
return perfdata;
}
}
String PluginUtility::FormatPerfdata(const Value& perfdata)
{
std::ostringstream result;
if (!perfdata.IsObjectType<Dictionary>())
return perfdata;
Dictionary::Ptr dict = perfdata;
2013-11-13 09:08:17 +01:00
ObjectLock olock(dict);
bool first = true;
BOOST_FOREACH(const Dictionary::Pair& kv, dict) {
2014-04-08 15:36:45 +02:00
String key;
if (kv.first.FindFirstOf(" ") != String::NPos)
key = "'" + kv.first + "'";
else
key = kv.first;
if (!first)
result << " ";
else
first = false;
2014-04-08 15:36:45 +02:00
result << key << "=" << PerfdataValue::Format(kv.second);
}
return result.str();
}