mirror of https://github.com/Icinga/icinga2.git
298 lines
7.8 KiB
C++
298 lines
7.8 KiB
C++
/******************************************************************************
|
|
* 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/macroprocessor.h"
|
|
#include "icinga/perfdatavalue.h"
|
|
#include "base/logger_fwd.h"
|
|
#include "base/utility.h"
|
|
#include "base/convert.h"
|
|
#include "base/process.h"
|
|
#include "base/objectlock.h"
|
|
#include <boost/algorithm/string/classification.hpp>
|
|
#include <boost/algorithm/string/split.hpp>
|
|
#include <boost/algorithm/string/trim.hpp>
|
|
#include <boost/foreach.hpp>
|
|
|
|
using namespace icinga;
|
|
|
|
struct CommandArgument
|
|
{
|
|
int Order;
|
|
bool SkipKey;
|
|
bool SkipValue;
|
|
String Key;
|
|
String Value;
|
|
|
|
CommandArgument(void)
|
|
: Order(0), SkipKey(false), SkipValue(false)
|
|
{ }
|
|
|
|
bool operator<(const CommandArgument& rhs) const
|
|
{
|
|
return GetNormalizedOrder() < rhs.GetNormalizedOrder();
|
|
}
|
|
|
|
private:
|
|
int GetNormalizedOrder(void) const
|
|
{
|
|
if (Order == 0)
|
|
return 0;
|
|
else
|
|
return -(1 / Order);
|
|
}
|
|
};
|
|
|
|
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) {
|
|
std::vector<CommandArgument> args;
|
|
|
|
ObjectLock olock(raw_arguments);
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, raw_arguments) {
|
|
const Value& arginfo = kv.second;
|
|
|
|
CommandArgument arg;
|
|
arg.Key = kv.first;
|
|
|
|
bool required = false;
|
|
String argval;
|
|
|
|
if (arginfo.IsObjectType<Dictionary>()) {
|
|
Dictionary::Ptr argdict = arginfo;
|
|
argval = argdict->Get("value");
|
|
if (argdict->Contains("required"))
|
|
required = argdict->Get("required");
|
|
arg.SkipKey = argdict->Get("skip_key");
|
|
arg.Order = argdict->Get("order");
|
|
|
|
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;
|
|
|
|
if (argval.IsEmpty())
|
|
arg.SkipValue = true;
|
|
|
|
String missingMacro;
|
|
arg.Value = MacroProcessor::ResolveMacros(argval, macroResolvers,
|
|
checkable->GetLastCheckResult(), &missingMacro);
|
|
|
|
if (!missingMacro.IsEmpty()) {
|
|
if (required) {
|
|
String message = "Non-optional macro '" + missingMacro + "' used in argument '" +
|
|
arg.Key + "' 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;
|
|
}
|
|
|
|
args.push_back(arg);
|
|
}
|
|
|
|
std::sort(args.begin(), args.end());
|
|
|
|
Array::Ptr command_arr = command;
|
|
BOOST_FOREACH(const CommandArgument& arg, args) {
|
|
if (!arg.SkipKey)
|
|
command_arr->Add(arg.Key);
|
|
|
|
if (!arg.SkipValue)
|
|
command_arr->Add(arg.Value);
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
std::pair<String, Value> PluginUtility::ParseCheckOutput(const String& output)
|
|
{
|
|
String text;
|
|
String perfdata;
|
|
|
|
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;
|
|
|
|
ObjectLock olock(dict);
|
|
|
|
bool first = true;
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, dict) {
|
|
String key;
|
|
if (kv.first.FindFirstOf(" ") != String::NPos)
|
|
key = "'" + kv.first + "'";
|
|
else
|
|
key = kv.first;
|
|
|
|
if (!first)
|
|
result << " ";
|
|
else
|
|
first = false;
|
|
|
|
result << key << "=" << PerfdataValue::Format(kv.second);
|
|
}
|
|
|
|
return result.str();
|
|
}
|