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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/macroprocessor.hpp"
|
|
|
|
#include "icinga/macroresolver.hpp"
|
|
|
|
#include "icinga/customvarobject.hpp"
|
|
|
|
#include "base/array.hpp"
|
|
|
|
#include "base/objectlock.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/context.hpp"
|
|
|
|
#include "base/dynamicobject.hpp"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2014-04-08 13:23:24 +02:00
|
|
|
#include <boost/algorithm/string/split.hpp>
|
|
|
|
#include <boost/algorithm/string/join.hpp>
|
|
|
|
#include <boost/algorithm/string/classification.hpp>
|
2012-06-13 13:42:55 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
Value MacroProcessor::ResolveMacros(const Value& str, const ResolverList& resolvers,
|
2014-04-26 13:16:08 +02:00
|
|
|
const CheckResult::Ptr& cr, String *missingMacro,
|
|
|
|
const MacroProcessor::EscapeCallback& escapeFn)
|
2013-02-13 20:08:09 +01:00
|
|
|
{
|
|
|
|
Value result;
|
|
|
|
|
2013-09-11 14:59:49 +02:00
|
|
|
if (str.IsEmpty())
|
|
|
|
return Empty;
|
|
|
|
|
2013-07-16 17:11:18 +02:00
|
|
|
if (str.IsScalar()) {
|
2014-04-26 13:16:08 +02:00
|
|
|
result = InternalResolveMacros(str, resolvers, cr, missingMacro, escapeFn);
|
2013-07-16 17:11:18 +02:00
|
|
|
} else if (str.IsObjectType<Array>()) {
|
2013-11-06 08:51:56 +01:00
|
|
|
Array::Ptr resultArr = make_shared<Array>();
|
2013-07-16 17:11:18 +02:00
|
|
|
Array::Ptr arr = str;
|
2013-02-13 20:08:09 +01:00
|
|
|
|
2013-03-14 12:17:46 +01:00
|
|
|
ObjectLock olock(arr);
|
2013-02-28 10:27:20 +01:00
|
|
|
|
2013-03-14 12:17:46 +01:00
|
|
|
BOOST_FOREACH(const Value& arg, arr) {
|
2013-03-22 10:58:47 +01:00
|
|
|
/* Note: don't escape macros here. */
|
2014-04-26 13:16:08 +02:00
|
|
|
resultArr->Add(InternalResolveMacros(arg, resolvers, cr, missingMacro, EscapeCallback()));
|
2013-02-13 20:08:09 +01:00
|
|
|
}
|
|
|
|
|
2013-03-14 12:17:46 +01:00
|
|
|
result = resultArr;
|
2013-02-17 19:14:34 +01:00
|
|
|
} else {
|
2013-03-16 21:18:53 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Command is not a string or array."));
|
2013-02-13 20:08:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
bool MacroProcessor::ResolveMacro(const String& macro, const ResolverList& resolvers,
|
2014-04-17 17:38:02 +02:00
|
|
|
const CheckResult::Ptr& cr, String *result, bool *recursive_macro)
|
2013-03-22 14:40:55 +01:00
|
|
|
{
|
2013-11-19 07:49:41 +01:00
|
|
|
CONTEXT("Resolving macro '" + macro + "'");
|
|
|
|
|
2014-04-17 17:38:02 +02:00
|
|
|
*recursive_macro = false;
|
2014-04-10 08:46:36 +02:00
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
std::vector<String> tokens;
|
|
|
|
boost::algorithm::split(tokens, macro, boost::is_any_of("."));
|
|
|
|
|
|
|
|
String objName;
|
|
|
|
if (tokens.size() > 1) {
|
|
|
|
objName = tokens[0];
|
|
|
|
tokens.erase(tokens.begin());
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_FOREACH(const ResolverSpec& resolver, resolvers) {
|
|
|
|
if (!objName.IsEmpty() && objName != resolver.first)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (objName.IsEmpty()) {
|
2014-05-12 16:45:25 +02:00
|
|
|
CustomVarObject::Ptr dobj = dynamic_pointer_cast<CustomVarObject>(resolver.second);
|
2014-04-08 13:23:24 +02:00
|
|
|
|
|
|
|
if (dobj) {
|
|
|
|
Dictionary::Ptr vars = dobj->GetVars();
|
|
|
|
|
|
|
|
if (vars && vars->Contains(macro)) {
|
|
|
|
*result = vars->Get(macro);
|
2014-04-17 17:38:02 +02:00
|
|
|
*recursive_macro = true;
|
2014-04-08 13:23:24 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MacroResolver::Ptr mresolver = dynamic_pointer_cast<MacroResolver>(resolver.second);
|
|
|
|
|
|
|
|
if (mresolver && mresolver->ResolveMacro(boost::algorithm::join(tokens, "."), cr, result))
|
2013-03-22 14:40:55 +01:00
|
|
|
return true;
|
2014-04-08 13:23:24 +02:00
|
|
|
|
|
|
|
Value ref = resolver.second;
|
|
|
|
bool valid = true;
|
|
|
|
|
|
|
|
BOOST_FOREACH(const String& token, tokens) {
|
|
|
|
if (ref.IsObjectType<Dictionary>()) {
|
|
|
|
Dictionary::Ptr dict = ref;
|
|
|
|
if (dict->Contains(token)) {
|
|
|
|
ref = dict->Get(token);
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
valid = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (ref.IsObject()) {
|
|
|
|
Object::Ptr object = ref;
|
|
|
|
|
|
|
|
const Type *type = object->GetReflectionType();
|
|
|
|
|
|
|
|
if (!type) {
|
|
|
|
valid = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
int field = type->GetFieldId(token);
|
|
|
|
|
|
|
|
if (field == -1) {
|
|
|
|
valid = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ref = object->GetField(field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (valid) {
|
2014-04-17 17:38:02 +02:00
|
|
|
if (tokens[0] == "vars" ||
|
|
|
|
tokens[0] == "action_url" ||
|
|
|
|
tokens[0] == "notes_url" ||
|
|
|
|
tokens[0] == "notes")
|
|
|
|
*recursive_macro = true;
|
2014-04-10 08:46:36 +02:00
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
*result = ref;
|
|
|
|
return true;
|
|
|
|
}
|
2013-03-22 14:40:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
String MacroProcessor::InternalResolveMacros(const String& str, const ResolverList& resolvers,
|
2014-04-26 13:16:08 +02:00
|
|
|
const CheckResult::Ptr& cr, String *missingMacro,
|
|
|
|
const MacroProcessor::EscapeCallback& escapeFn, int recursionLevel)
|
2012-06-13 13:42:55 +02:00
|
|
|
{
|
2013-11-19 07:49:41 +01:00
|
|
|
CONTEXT("Resolving macros for string '" + str + "'");
|
|
|
|
|
2014-04-08 13:23:24 +02:00
|
|
|
if (recursionLevel > 15)
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Infinite recursion detected while resolving macros"));
|
|
|
|
|
2013-02-28 10:27:20 +01:00
|
|
|
size_t offset, pos_first, pos_second;
|
2012-06-13 13:42:55 +02:00
|
|
|
offset = 0;
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String result = str;
|
|
|
|
while ((pos_first = result.FindFirstOf("$", offset)) != String::NPos) {
|
|
|
|
pos_second = result.FindFirstOf("$", pos_first + 1);
|
2012-06-13 13:42:55 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
if (pos_second == String::NPos)
|
2013-03-16 21:18:53 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Closing $ not found in macro format string."));
|
2012-06-13 13:42:55 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String name = result.SubStr(pos_first + 1, pos_second - pos_first - 1);
|
|
|
|
|
2013-03-22 14:40:55 +01:00
|
|
|
String resolved_macro;
|
2014-04-17 17:38:02 +02:00
|
|
|
bool recursive_macro;
|
|
|
|
bool found = ResolveMacro(name, resolvers, cr, &resolved_macro, &recursive_macro);
|
2013-02-09 23:02:33 +01:00
|
|
|
|
2013-03-22 14:40:55 +01:00
|
|
|
/* $$ is an escape sequence for $. */
|
|
|
|
if (name.IsEmpty()) {
|
|
|
|
resolved_macro = "$";
|
|
|
|
found = true;
|
|
|
|
}
|
2013-02-28 10:27:20 +01:00
|
|
|
|
2014-04-26 13:16:08 +02:00
|
|
|
if (!found) {
|
|
|
|
if (!missingMacro)
|
2014-05-28 13:45:45 +02:00
|
|
|
Log(LogWarning, "MacroProcessor", "Macro '" + name + "' is not defined.");
|
2014-04-26 13:16:08 +02:00
|
|
|
else
|
|
|
|
*missingMacro = name;
|
|
|
|
}
|
2013-02-09 23:02:33 +01:00
|
|
|
|
2014-04-10 08:46:36 +02:00
|
|
|
/* recursively resolve macros in the macro if it was a user macro */
|
2014-04-17 17:38:02 +02:00
|
|
|
if (recursive_macro)
|
2014-04-26 13:16:08 +02:00
|
|
|
resolved_macro = InternalResolveMacros(resolved_macro,
|
|
|
|
resolvers, cr, missingMacro, EscapeCallback(), recursionLevel + 1);
|
2014-04-08 13:23:24 +02:00
|
|
|
|
2014-04-06 10:45:50 +02:00
|
|
|
if (escapeFn)
|
|
|
|
resolved_macro = escapeFn(resolved_macro);
|
2013-08-30 16:52:13 +02:00
|
|
|
|
2013-03-22 14:40:55 +01:00
|
|
|
result.Replace(pos_first, pos_second - pos_first + 1, resolved_macro);
|
2014-03-10 09:41:48 +01:00
|
|
|
offset = pos_first + resolved_macro.GetLength() + 1;
|
2013-02-09 23:02:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|