2014-03-19 10:51:09 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2014-03-19 10:51:09 +01: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 "base/scriptutils.hpp"
|
2015-01-21 08:47:45 +01:00
|
|
|
#include "base/function.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include "base/convert.hpp"
|
2014-10-26 19:59:49 +01:00
|
|
|
#include "base/json.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2014-11-03 13:05:14 +01:00
|
|
|
#include "base/objectlock.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2014-11-13 15:56:47 +01:00
|
|
|
#include "base/application.hpp"
|
2015-08-25 13:53:43 +02:00
|
|
|
#include "base/dependencygraph.hpp"
|
2014-05-11 17:14:35 +02:00
|
|
|
#include <boost/foreach.hpp>
|
2014-03-19 10:51:09 +01:00
|
|
|
#include <boost/regex.hpp>
|
2014-03-20 14:25:40 +01:00
|
|
|
#include <algorithm>
|
2014-03-20 15:41:37 +01:00
|
|
|
#include <set>
|
2015-05-12 15:44:44 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <msi.h>
|
|
|
|
#endif /* _WIN32 */
|
2014-03-19 10:51:09 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2015-04-16 08:47:26 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(regex, &ScriptUtils::Regex);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(match, &Utility::Match);
|
2015-10-14 10:11:49 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(cidr_match, &Utility::CidrMatch);
|
2015-04-16 08:47:26 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(len, &ScriptUtils::Len);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(union, &ScriptUtils::Union);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(intersection, &ScriptUtils::Intersection);
|
2014-03-23 11:27:40 +01:00
|
|
|
REGISTER_SCRIPTFUNCTION(log, &ScriptUtils::Log);
|
2014-05-10 11:26:56 +02:00
|
|
|
REGISTER_SCRIPTFUNCTION(range, &ScriptUtils::Range);
|
2014-11-13 15:56:47 +01:00
|
|
|
REGISTER_SCRIPTFUNCTION(exit, &Application::Exit);
|
2015-04-16 08:47:26 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(typeof, &ScriptUtils::TypeOf);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(keys, &ScriptUtils::Keys);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(random, &Utility::Random);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(get_object, &ScriptUtils::GetObject);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(get_objects, &ScriptUtils::GetObjects);
|
2014-11-20 06:53:57 +01:00
|
|
|
REGISTER_SCRIPTFUNCTION(assert, &ScriptUtils::Assert);
|
2015-04-16 08:47:26 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(string, &ScriptUtils::CastString);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(number, &ScriptUtils::CastNumber);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(bool, &ScriptUtils::CastBool);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(get_time, &Utility::GetTime);
|
2015-05-13 09:46:59 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(basename, &Utility::BaseName);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(dirname, &Utility::DirName);
|
2015-05-12 15:44:44 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(msi_get_component_path, &ScriptUtils::MsiGetComponentPathShim);
|
2015-08-25 13:53:43 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(track_parents, &ScriptUtils::TrackParents);
|
2015-08-27 08:57:56 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(escape_shell_cmd, &Utility::EscapeShellCmd);
|
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(escape_shell_arg, &Utility::EscapeShellArg);
|
2015-09-30 11:05:20 +02:00
|
|
|
#ifdef _WIN32
|
2015-09-30 10:54:34 +02:00
|
|
|
REGISTER_SAFE_SCRIPTFUNCTION(escape_create_process_arg, &Utility::EscapeCreateProcessArg);
|
2015-09-30 11:05:20 +02:00
|
|
|
#endif /* _WIN32 */
|
2014-03-19 10:51:09 +01:00
|
|
|
|
2014-11-24 07:09:51 +01:00
|
|
|
String ScriptUtils::CastString(const Value& value)
|
|
|
|
{
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
double ScriptUtils::CastNumber(const Value& value)
|
|
|
|
{
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ScriptUtils::CastBool(const Value& value)
|
|
|
|
{
|
|
|
|
return value.ToBool();
|
|
|
|
}
|
2014-03-23 11:27:40 +01:00
|
|
|
bool ScriptUtils::Regex(const String& pattern, const String& text)
|
2014-03-19 10:51:09 +01:00
|
|
|
{
|
2014-06-05 16:13:28 +02:00
|
|
|
bool res = false;
|
|
|
|
try {
|
|
|
|
boost::regex expr(pattern.GetData());
|
|
|
|
boost::smatch what;
|
|
|
|
res = boost::regex_search(text.GetData(), what, expr);
|
|
|
|
} catch (boost::exception&) {
|
|
|
|
res = false; /* exception means something went terribly wrong */
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
2014-03-19 10:51:09 +01:00
|
|
|
}
|
2014-03-19 13:25:06 +01:00
|
|
|
|
2014-12-20 09:36:35 +01:00
|
|
|
double ScriptUtils::Len(const Value& value)
|
2014-03-19 13:25:06 +01:00
|
|
|
{
|
|
|
|
if (value.IsObjectType<Dictionary>()) {
|
|
|
|
Dictionary::Ptr dict = value;
|
|
|
|
return dict->GetLength();
|
|
|
|
} else if (value.IsObjectType<Array>()) {
|
|
|
|
Array::Ptr array = value;
|
|
|
|
return array->GetLength();
|
2014-12-20 09:36:35 +01:00
|
|
|
} else if (value.IsString()) {
|
2014-03-19 13:25:06 +01:00
|
|
|
return Convert::ToString(value).GetLength();
|
2014-12-20 09:36:35 +01:00
|
|
|
} else {
|
|
|
|
return 0;
|
2014-03-19 13:25:06 +01:00
|
|
|
}
|
2014-03-20 14:25:40 +01:00
|
|
|
}
|
|
|
|
|
2014-03-23 11:27:40 +01:00
|
|
|
Array::Ptr ScriptUtils::Union(const std::vector<Value>& arguments)
|
2014-03-20 14:25:40 +01:00
|
|
|
{
|
|
|
|
std::set<Value> values;
|
|
|
|
|
|
|
|
BOOST_FOREACH(const Value& varr, arguments) {
|
|
|
|
Array::Ptr arr = varr;
|
|
|
|
|
2014-12-05 14:59:12 +01:00
|
|
|
if (arr) {
|
2015-07-15 08:26:58 +02:00
|
|
|
ObjectLock olock(arr);
|
2014-12-05 14:59:12 +01:00
|
|
|
BOOST_FOREACH(const Value& value, arr) {
|
|
|
|
values.insert(value);
|
|
|
|
}
|
2014-03-20 14:25:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr result = new Array();
|
2014-03-20 14:25:40 +01:00
|
|
|
BOOST_FOREACH(const Value& value, values) {
|
|
|
|
result->Add(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-03-23 11:27:40 +01:00
|
|
|
Array::Ptr ScriptUtils::Intersection(const std::vector<Value>& arguments)
|
2014-03-20 14:25:40 +01:00
|
|
|
{
|
|
|
|
if (arguments.size() == 0)
|
2014-11-08 21:17:16 +01:00
|
|
|
return new Array();
|
2014-03-20 14:25:40 +01:00
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr result = new Array();
|
2014-03-20 14:25:40 +01:00
|
|
|
|
2014-12-05 14:59:12 +01:00
|
|
|
Array::Ptr arg1 = arguments[0];
|
|
|
|
|
|
|
|
if (!arg1)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
Array::Ptr arr1 = arg1->ShallowClone();
|
2014-03-20 14:25:40 +01:00
|
|
|
|
2014-05-11 06:00:34 +02:00
|
|
|
for (std::vector<Value>::size_type i = 1; i < arguments.size(); i++) {
|
2015-07-15 08:19:55 +02:00
|
|
|
{
|
|
|
|
ObjectLock olock(arr1);
|
|
|
|
std::sort(arr1->Begin(), arr1->End());
|
|
|
|
}
|
2014-03-20 14:25:40 +01:00
|
|
|
|
2014-12-05 14:59:12 +01:00
|
|
|
Array::Ptr arg2 = arguments[i];
|
|
|
|
|
|
|
|
if (!arg2)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
Array::Ptr arr2 = arg2->ShallowClone();
|
2015-07-15 08:19:55 +02:00
|
|
|
{
|
|
|
|
ObjectLock olock(arr2);
|
|
|
|
std::sort(arr2->Begin(), arr2->End());
|
|
|
|
}
|
2014-03-20 14:25:40 +01:00
|
|
|
|
|
|
|
result->Resize(std::max(arr1->GetLength(), arr2->GetLength()));
|
2015-07-15 08:19:55 +02:00
|
|
|
Array::SizeType len;
|
|
|
|
{
|
|
|
|
ObjectLock olock(arr1), xlock(arr2), ylock(result);
|
|
|
|
Array::Iterator it = std::set_intersection(arr1->Begin(), arr1->End(), arr2->Begin(), arr2->End(), result->Begin());
|
|
|
|
len = it - result->Begin();
|
|
|
|
}
|
|
|
|
result->Resize(len);
|
2014-03-20 14:25:40 +01:00
|
|
|
arr1 = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2014-03-22 09:47:29 +01:00
|
|
|
|
2014-04-01 09:33:54 +02:00
|
|
|
void ScriptUtils::Log(const std::vector<Value>& arguments)
|
2014-03-22 09:47:29 +01:00
|
|
|
{
|
2014-04-01 09:33:54 +02:00
|
|
|
if (arguments.size() != 1 && arguments.size() != 3)
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid number of arguments for log()"));
|
|
|
|
|
|
|
|
LogSeverity severity;
|
|
|
|
String facility;
|
|
|
|
Value message;
|
|
|
|
|
|
|
|
if (arguments.size() == 1) {
|
|
|
|
severity = LogInformation;
|
|
|
|
facility = "config";
|
|
|
|
message = arguments[0];
|
|
|
|
} else {
|
|
|
|
int sval = static_cast<int>(arguments[0]);
|
|
|
|
severity = static_cast<LogSeverity>(sval);
|
|
|
|
facility = arguments[1];
|
|
|
|
message = arguments[2];
|
|
|
|
}
|
|
|
|
|
2014-11-24 18:24:47 +01:00
|
|
|
if (message.IsString() || (!message.IsObjectType<Array>() && !message.IsObjectType<Dictionary>()))
|
2014-04-01 09:33:54 +02:00
|
|
|
::Log(severity, facility, message);
|
2014-03-23 11:27:40 +01:00
|
|
|
else
|
2014-10-26 19:59:49 +01:00
|
|
|
::Log(severity, facility, JsonEncode(message));
|
2014-03-22 09:47:29 +01:00
|
|
|
}
|
2014-03-23 17:26:36 +01:00
|
|
|
|
2014-05-10 11:26:56 +02:00
|
|
|
Array::Ptr ScriptUtils::Range(const std::vector<Value>& arguments)
|
|
|
|
{
|
2014-05-11 06:00:34 +02:00
|
|
|
double start, end, increment;
|
2014-05-10 11:26:56 +02:00
|
|
|
|
|
|
|
switch (arguments.size()) {
|
|
|
|
case 1:
|
|
|
|
start = 0;
|
|
|
|
end = arguments[0];
|
|
|
|
increment = 1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
start = arguments[0];
|
|
|
|
end = arguments[1];
|
|
|
|
increment = 1;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
start = arguments[0];
|
|
|
|
end = arguments[1];
|
|
|
|
increment = arguments[2];
|
|
|
|
break;
|
2014-05-11 08:27:42 +02:00
|
|
|
default:
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid number of arguments for range()"));
|
2014-05-10 11:26:56 +02:00
|
|
|
}
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr result = new Array();
|
2014-05-10 11:26:56 +02:00
|
|
|
|
|
|
|
if ((start < end && increment <= 0) ||
|
|
|
|
(start > end && increment >= 0))
|
|
|
|
return result;
|
|
|
|
|
2015-08-26 16:30:36 +02:00
|
|
|
for (double i = start; (increment > 0 ? i < end : i > end); i += increment)
|
2014-05-10 11:26:56 +02:00
|
|
|
result->Add(i);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-11-03 00:44:04 +01:00
|
|
|
Type::Ptr ScriptUtils::TypeOf(const Value& value)
|
|
|
|
{
|
2015-03-20 08:15:07 +01:00
|
|
|
return value.GetReflectionType();
|
2014-11-03 00:44:04 +01:00
|
|
|
}
|
2014-11-03 13:05:14 +01:00
|
|
|
|
|
|
|
Array::Ptr ScriptUtils::Keys(const Dictionary::Ptr& dict)
|
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr result = new Array();
|
2014-11-03 13:05:14 +01:00
|
|
|
|
2014-12-05 14:59:12 +01:00
|
|
|
if (dict) {
|
|
|
|
ObjectLock olock(dict);
|
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, dict) {
|
|
|
|
result->Add(kv.first);
|
|
|
|
}
|
2014-11-03 13:05:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
ConfigObject::Ptr ScriptUtils::GetObject(const Value& vtype, const String& name)
|
2014-11-12 19:08:36 +01:00
|
|
|
{
|
2015-08-12 14:15:01 +02:00
|
|
|
String typeName;
|
|
|
|
|
|
|
|
if (vtype.IsObjectType<Type>())
|
|
|
|
typeName = static_cast<Type::Ptr>(vtype)->GetName();
|
|
|
|
else
|
|
|
|
typeName = vtype;
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
ConfigType::Ptr dtype = ConfigType::GetByName(typeName);
|
2014-11-12 19:08:36 +01:00
|
|
|
|
|
|
|
if (!dtype)
|
2015-08-15 20:28:05 +02:00
|
|
|
return ConfigObject::Ptr();
|
2014-11-12 19:08:36 +01:00
|
|
|
|
|
|
|
return dtype->GetObject(name);
|
|
|
|
}
|
|
|
|
|
2015-01-28 08:36:17 +01:00
|
|
|
Array::Ptr ScriptUtils::GetObjects(const Type::Ptr& type)
|
2014-12-19 13:08:31 +01:00
|
|
|
{
|
2015-08-15 20:28:05 +02:00
|
|
|
ConfigType::Ptr dtype = ConfigType::GetByName(type->GetName());
|
2014-12-19 13:08:31 +01:00
|
|
|
|
|
|
|
if (!dtype)
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid type name"));
|
|
|
|
|
|
|
|
Array::Ptr result = new Array();
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
BOOST_FOREACH(const ConfigObject::Ptr& object, dtype->GetObjects())
|
2014-12-19 13:08:31 +01:00
|
|
|
result->Add(object);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-11-20 06:53:57 +01:00
|
|
|
void ScriptUtils::Assert(const Value& arg)
|
|
|
|
{
|
|
|
|
if (!arg.ToBool())
|
2014-12-10 15:06:09 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Assertion failed"));
|
2014-11-20 06:53:57 +01:00
|
|
|
}
|
|
|
|
|
2015-05-12 15:44:44 +02:00
|
|
|
String ScriptUtils::MsiGetComponentPathShim(const String& component)
|
|
|
|
{
|
2015-06-15 10:26:42 +02:00
|
|
|
#ifdef _WIN32
|
2015-05-12 15:44:44 +02:00
|
|
|
TCHAR productCode[39];
|
|
|
|
if (MsiGetProductCode(component.CStr(), productCode) != ERROR_SUCCESS)
|
|
|
|
return "";
|
|
|
|
TCHAR path[2048];
|
|
|
|
DWORD szPath = sizeof(path);
|
|
|
|
path[0] = '\0';
|
|
|
|
MsiGetComponentPath(productCode, component.CStr(), path, &szPath);
|
|
|
|
return path;
|
2015-06-15 10:26:42 +02:00
|
|
|
#else /* _WIN32 */
|
|
|
|
return String();
|
2015-05-13 09:46:59 +02:00
|
|
|
#endif /* _WIN32 */
|
2015-06-15 10:26:42 +02:00
|
|
|
}
|
2015-08-25 13:53:43 +02:00
|
|
|
|
|
|
|
Array::Ptr ScriptUtils::TrackParents(const Object::Ptr& child)
|
|
|
|
{
|
|
|
|
return Array::FromVector(DependencyGraph::GetParents(child));
|
|
|
|
}
|
|
|
|
|