2014-11-23 12:35:13 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2014-11-23 12:35:13 +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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2015-01-12 14:29:08 +01:00
|
|
|
#include "cli/consolecommand.hpp"
|
2014-11-23 12:35:13 +01:00
|
|
|
#include "config/configcompiler.hpp"
|
|
|
|
#include "base/json.hpp"
|
2014-11-23 12:38:16 +01:00
|
|
|
#include "base/console.hpp"
|
2014-12-16 10:36:59 +01:00
|
|
|
#include "base/application.hpp"
|
2015-03-18 07:17:15 +01:00
|
|
|
#include "base/objectlock.hpp"
|
2014-12-16 19:28:46 +01:00
|
|
|
#include "base/unixsocket.hpp"
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include "base/networkstream.hpp"
|
2014-11-23 12:35:13 +01:00
|
|
|
#include <iostream>
|
2015-03-17 10:42:46 +01:00
|
|
|
#ifdef HAVE_EDITLINE
|
|
|
|
#include "cli/editline.hpp"
|
|
|
|
#endif /* HAVE_EDITLINE */
|
2014-12-16 12:22:02 +01:00
|
|
|
|
2014-11-23 12:35:13 +01:00
|
|
|
using namespace icinga;
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
2015-03-18 07:17:15 +01:00
|
|
|
static ScriptFrame l_ScriptFrame;
|
|
|
|
|
2015-01-12 14:29:08 +01:00
|
|
|
REGISTER_CLICOMMAND("console", ConsoleCommand);
|
2014-11-23 12:35:13 +01:00
|
|
|
|
2015-01-12 14:29:08 +01:00
|
|
|
String ConsoleCommand::GetDescription(void) const
|
2014-11-23 12:35:13 +01:00
|
|
|
{
|
|
|
|
return "Interprets Icinga script expressions.";
|
|
|
|
}
|
|
|
|
|
2015-01-12 14:29:08 +01:00
|
|
|
String ConsoleCommand::GetShortDescription(void) const
|
2014-11-23 12:35:13 +01:00
|
|
|
{
|
2015-01-12 14:29:08 +01:00
|
|
|
return "Icinga console";
|
2014-11-23 12:35:13 +01:00
|
|
|
}
|
|
|
|
|
2015-01-12 14:29:08 +01:00
|
|
|
ImpersonationLevel ConsoleCommand::GetImpersonationLevel(void) const
|
2014-12-15 08:37:34 +01:00
|
|
|
{
|
|
|
|
return ImpersonateNone;
|
|
|
|
}
|
|
|
|
|
2015-01-12 14:29:08 +01:00
|
|
|
void ConsoleCommand::InitParameters(boost::program_options::options_description& visibleDesc,
|
2014-11-23 12:35:13 +01:00
|
|
|
boost::program_options::options_description& hiddenDesc) const
|
|
|
|
{
|
2014-12-16 19:28:46 +01:00
|
|
|
visibleDesc.add_options()
|
|
|
|
("connect,c", po::value<std::string>(), "connect to an Icinga 2 instance")
|
|
|
|
;
|
2014-11-23 12:35:13 +01:00
|
|
|
}
|
|
|
|
|
2015-03-18 07:17:15 +01:00
|
|
|
#ifdef HAVE_EDITLINE
|
|
|
|
static void AddSuggestion(std::vector<String>& matches, const String& word, const String& suggestion)
|
|
|
|
{
|
|
|
|
if (suggestion.Find(word) != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
matches.push_back(suggestion);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *ConsoleCompleteHelper(const char *word, int state)
|
|
|
|
{
|
|
|
|
static std::vector<String> matches;
|
|
|
|
String aword = word;
|
|
|
|
|
|
|
|
if (state == 0) {
|
|
|
|
matches.clear();
|
|
|
|
|
|
|
|
AddSuggestion(matches, word, "object");
|
|
|
|
AddSuggestion(matches, word, "template");
|
|
|
|
AddSuggestion(matches, word, "include");
|
|
|
|
AddSuggestion(matches, word, "include_recursive");
|
|
|
|
AddSuggestion(matches, word, "library");
|
|
|
|
AddSuggestion(matches, word, "null");
|
|
|
|
AddSuggestion(matches, word, "true");
|
|
|
|
AddSuggestion(matches, word, "false");
|
|
|
|
AddSuggestion(matches, word, "const");
|
|
|
|
AddSuggestion(matches, word, "var");
|
|
|
|
AddSuggestion(matches, word, "this");
|
|
|
|
AddSuggestion(matches, word, "globals");
|
|
|
|
AddSuggestion(matches, word, "locals");
|
|
|
|
AddSuggestion(matches, word, "use");
|
|
|
|
AddSuggestion(matches, word, "apply");
|
|
|
|
AddSuggestion(matches, word, "to");
|
|
|
|
AddSuggestion(matches, word, "where");
|
|
|
|
AddSuggestion(matches, word, "import");
|
|
|
|
AddSuggestion(matches, word, "assign");
|
|
|
|
AddSuggestion(matches, word, "ignore");
|
|
|
|
AddSuggestion(matches, word, "function");
|
|
|
|
AddSuggestion(matches, word, "return");
|
|
|
|
AddSuggestion(matches, word, "break");
|
|
|
|
AddSuggestion(matches, word, "continue");
|
|
|
|
AddSuggestion(matches, word, "for");
|
|
|
|
AddSuggestion(matches, word, "if");
|
|
|
|
AddSuggestion(matches, word, "else");
|
|
|
|
AddSuggestion(matches, word, "while");
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(l_ScriptFrame.Locals);
|
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, l_ScriptFrame.Locals) {
|
|
|
|
AddSuggestion(matches, word, kv.first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
ObjectLock olock(ScriptGlobal::GetGlobals());
|
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, ScriptGlobal::GetGlobals()) {
|
|
|
|
AddSuggestion(matches, word, kv.first);
|
|
|
|
}
|
|
|
|
}
|
2015-03-18 08:10:32 +01:00
|
|
|
|
|
|
|
String::SizeType cperiod = aword.RFind(".");
|
|
|
|
|
|
|
|
if (cperiod != -1) {
|
|
|
|
String pword = aword.SubStr(0, cperiod);
|
|
|
|
|
|
|
|
Value value;
|
|
|
|
|
|
|
|
try {
|
2015-03-18 11:12:14 +01:00
|
|
|
Expression *expr = ConfigCompiler::CompileText("temp", pword, false);
|
2015-03-18 08:10:32 +01:00
|
|
|
|
|
|
|
if (expr)
|
|
|
|
value = expr->Evaluate(l_ScriptFrame);
|
|
|
|
|
|
|
|
if (value.IsObjectType<Dictionary>()) {
|
|
|
|
Dictionary::Ptr dict = value;
|
|
|
|
|
|
|
|
ObjectLock olock(dict);
|
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, dict) {
|
|
|
|
AddSuggestion(matches, word, pword + "." + kv.first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Type::Ptr type = value.GetReflectionType();
|
2015-03-18 08:19:36 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < type->GetFieldCount(); i++) {
|
|
|
|
Field field = type->GetFieldInfo(i);
|
|
|
|
|
|
|
|
AddSuggestion(matches, word, pword + "." + field.Name);
|
|
|
|
}
|
|
|
|
|
2015-03-18 08:10:32 +01:00
|
|
|
Object::Ptr prototype = type->GetPrototype();
|
|
|
|
Dictionary::Ptr dict = dynamic_pointer_cast<Dictionary>(prototype);
|
|
|
|
|
|
|
|
if (dict) {
|
|
|
|
ObjectLock olock(dict);
|
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, dict) {
|
|
|
|
AddSuggestion(matches, word, pword + "." + kv.first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (...) { /* Ignore the exception */ }
|
|
|
|
}
|
2015-03-18 07:17:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (state >= matches.size())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return strdup(matches[state].CStr());
|
|
|
|
}
|
|
|
|
#endif /* HAVE_EDITLINE */
|
|
|
|
|
2014-11-23 12:35:13 +01:00
|
|
|
/**
|
2015-01-12 14:29:08 +01:00
|
|
|
* The entry point for the "console" CLI command.
|
2014-11-23 12:35:13 +01:00
|
|
|
*
|
|
|
|
* @returns An exit status.
|
|
|
|
*/
|
2015-01-12 14:29:08 +01:00
|
|
|
int ConsoleCommand::Run(const po::variables_map& vm, const std::vector<std::string>& ap) const
|
2014-11-23 12:35:13 +01:00
|
|
|
{
|
2014-12-13 21:16:55 +01:00
|
|
|
std::map<String, String> lines;
|
|
|
|
int next_line = 1;
|
2014-11-23 12:35:13 +01:00
|
|
|
|
2015-03-18 07:17:15 +01:00
|
|
|
#ifdef HAVE_EDITLINE
|
|
|
|
rl_completion_entry_function = ConsoleCompleteHelper;
|
2015-03-18 08:10:32 +01:00
|
|
|
rl_completion_append_character = '\0';
|
2015-03-18 07:17:15 +01:00
|
|
|
#endif /* HAVE_EDITLINE */
|
|
|
|
|
2014-12-16 19:28:46 +01:00
|
|
|
String addr, session;
|
|
|
|
|
|
|
|
if (vm.count("connect")) {
|
|
|
|
addr = vm["connect"].as<std::string>();
|
|
|
|
session = Utility::NewUniqueID();
|
|
|
|
}
|
|
|
|
|
2014-12-16 10:36:59 +01:00
|
|
|
std::cout << "Icinga (version: " << Application::GetVersion() << ")\n";
|
|
|
|
|
2014-11-23 12:35:13 +01:00
|
|
|
while (std::cin.good()) {
|
2014-12-13 21:16:55 +01:00
|
|
|
String fileName = "<" + Convert::ToString(next_line) + ">";
|
|
|
|
next_line++;
|
|
|
|
|
2015-02-10 13:27:02 +01:00
|
|
|
bool continuation = false;
|
|
|
|
std::string command;
|
|
|
|
|
|
|
|
incomplete:
|
2015-03-17 10:42:46 +01:00
|
|
|
#ifdef HAVE_EDITLINE
|
|
|
|
ConsoleType console_type = Console_VT100;
|
|
|
|
std::ostringstream promptbuf;
|
|
|
|
std::ostream& os = promptbuf;
|
|
|
|
#else /* HAVE_EDITLINE */
|
|
|
|
ConsoleType console_type = Console_Autodetect;
|
|
|
|
std::ostream& os = std::cout;
|
|
|
|
#endif /* HAVE_EDITLINE */
|
|
|
|
|
|
|
|
os << ConsoleColorTag(Console_ForegroundCyan, console_type)
|
|
|
|
<< fileName
|
|
|
|
<< ConsoleColorTag(Console_ForegroundRed, console_type);
|
2015-02-10 13:27:02 +01:00
|
|
|
|
|
|
|
if (!continuation)
|
2015-03-17 10:42:46 +01:00
|
|
|
os << " => ";
|
2015-02-10 13:27:02 +01:00
|
|
|
else
|
2015-03-17 10:42:46 +01:00
|
|
|
os << " .. ";
|
|
|
|
|
|
|
|
os << ConsoleColorTag(Console_Normal, console_type);
|
|
|
|
|
|
|
|
#ifdef HAVE_EDITLINE
|
|
|
|
String prompt = promptbuf.str();
|
|
|
|
|
|
|
|
char *cline;
|
|
|
|
cline = readline(prompt.CStr());
|
|
|
|
|
|
|
|
if (!cline)
|
|
|
|
break;
|
|
|
|
|
|
|
|
add_history(cline);
|
2015-02-10 13:27:02 +01:00
|
|
|
|
2015-03-17 10:42:46 +01:00
|
|
|
std::string line = cline;
|
2014-11-23 12:35:13 +01:00
|
|
|
|
2015-03-17 10:42:46 +01:00
|
|
|
free(cline);
|
|
|
|
#else /* HAVE_EDITLINE */
|
2014-11-23 12:35:13 +01:00
|
|
|
std::string line;
|
|
|
|
std::getline(std::cin, line);
|
2015-03-17 10:42:46 +01:00
|
|
|
#endif /* HAVE_EDITLINE */
|
2014-11-23 12:35:13 +01:00
|
|
|
|
2015-02-10 13:27:02 +01:00
|
|
|
if (!command.empty())
|
|
|
|
command += "\n";
|
|
|
|
|
|
|
|
command += line;
|
|
|
|
|
2014-12-16 19:28:46 +01:00
|
|
|
if (addr.IsEmpty()) {
|
2015-03-18 14:29:02 +01:00
|
|
|
Expression *expr = NULL;
|
2014-12-16 19:28:46 +01:00
|
|
|
|
|
|
|
try {
|
2015-02-10 13:27:02 +01:00
|
|
|
lines[fileName] = command;
|
2014-11-23 12:35:13 +01:00
|
|
|
|
2015-03-18 11:12:14 +01:00
|
|
|
expr = ConfigCompiler::CompileText(fileName, command, false);
|
2014-12-13 21:16:55 +01:00
|
|
|
|
2014-12-18 15:11:57 +01:00
|
|
|
if (expr) {
|
2015-03-18 07:17:15 +01:00
|
|
|
Value result = expr->Evaluate(l_ScriptFrame);
|
2014-12-16 19:28:46 +01:00
|
|
|
std::cout << ConsoleColorTag(Console_ForegroundCyan);
|
|
|
|
if (!result.IsObject() || result.IsObjectType<Array>() || result.IsObjectType<Dictionary>())
|
|
|
|
std::cout << JsonEncode(result);
|
|
|
|
else
|
|
|
|
std::cout << result;
|
|
|
|
std::cout << ConsoleColorTag(Console_Normal) << "\n";
|
|
|
|
}
|
|
|
|
} catch (const ScriptError& ex) {
|
2015-02-10 13:27:02 +01:00
|
|
|
if (ex.IsIncompleteExpression()) {
|
|
|
|
continuation = true;
|
|
|
|
goto incomplete;
|
|
|
|
}
|
|
|
|
|
2014-12-16 19:28:46 +01:00
|
|
|
DebugInfo di = ex.GetDebugInfo();
|
|
|
|
|
2015-01-16 10:07:11 +01:00
|
|
|
if (lines.find(di.Path) != lines.end()) {
|
2015-02-10 13:58:35 +01:00
|
|
|
String text = lines[di.Path];
|
|
|
|
|
|
|
|
std::vector<String> ulines;
|
|
|
|
boost::algorithm::split(ulines, text, boost::is_any_of("\n"));
|
|
|
|
|
|
|
|
for (int i = 1; i <= ulines.size(); i++) {
|
|
|
|
int start, len;
|
|
|
|
|
2015-02-10 15:40:37 +01:00
|
|
|
if (i == di.FirstLine)
|
2015-02-10 13:58:35 +01:00
|
|
|
start = di.FirstColumn;
|
2015-02-10 15:40:37 +01:00
|
|
|
else
|
2015-02-10 13:58:35 +01:00
|
|
|
start = 0;
|
|
|
|
|
|
|
|
if (i == di.LastLine)
|
|
|
|
len = di.LastColumn - di.FirstColumn + 1;
|
|
|
|
else
|
2015-02-21 13:19:04 +01:00
|
|
|
len = ulines[i - 1].GetLength();
|
2015-02-10 13:58:35 +01:00
|
|
|
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
if (di.Path != fileName) {
|
|
|
|
std::cout << di.Path << ": " << ulines[i - 1] << "\n";
|
|
|
|
offset = 2;
|
|
|
|
} else
|
|
|
|
offset = 4;
|
|
|
|
|
|
|
|
if (i >= di.FirstLine && i <= di.LastLine) {
|
|
|
|
std::cout << String(di.Path.GetLength() + offset, ' ');
|
|
|
|
std::cout << String(start, ' ') << String(len, '^') << "\n";
|
|
|
|
}
|
|
|
|
}
|
2015-01-16 10:07:11 +01:00
|
|
|
} else {
|
|
|
|
ShowCodeFragment(std::cout, di);
|
|
|
|
}
|
2014-12-16 19:28:46 +01:00
|
|
|
|
|
|
|
std::cout << ex.what() << "\n";
|
|
|
|
} catch (const std::exception& ex) {
|
|
|
|
std::cout << "Error: " << DiagnosticInformation(ex) << "\n";
|
2014-11-23 12:35:13 +01:00
|
|
|
}
|
|
|
|
|
2014-12-16 19:28:46 +01:00
|
|
|
delete expr;
|
|
|
|
} else {
|
|
|
|
Socket::Ptr socket;
|
|
|
|
|
2014-12-16 21:25:58 +01:00
|
|
|
#ifndef _WIN32
|
2014-12-19 12:33:51 +01:00
|
|
|
if (addr.FindFirstOf("/") != String::NPos) {
|
2014-12-16 19:28:46 +01:00
|
|
|
UnixSocket::Ptr usocket = new UnixSocket();
|
|
|
|
usocket->Connect(addr);
|
|
|
|
socket = usocket;
|
|
|
|
} else {
|
2014-12-16 21:25:58 +01:00
|
|
|
#endif /* _WIN32 */
|
2015-01-12 14:29:08 +01:00
|
|
|
Log(LogCritical, "ConsoleCommand", "Sorry, TCP sockets aren't supported yet.");
|
2014-12-16 19:28:46 +01:00
|
|
|
return 1;
|
2014-12-16 21:25:58 +01:00
|
|
|
#ifndef _WIN32
|
2014-11-23 12:35:13 +01:00
|
|
|
}
|
2014-12-16 21:25:58 +01:00
|
|
|
#endif /* _WIN32 */
|
2014-11-28 06:28:07 +01:00
|
|
|
|
2014-12-16 19:28:46 +01:00
|
|
|
String query = "SCRIPT " + session + "\n" + line + "\n\n";
|
2014-11-28 06:28:07 +01:00
|
|
|
|
2014-12-16 19:28:46 +01:00
|
|
|
NetworkStream::Ptr ns = new NetworkStream(socket);
|
|
|
|
ns->Write(query.CStr(), query.GetLength());
|
2014-11-23 12:35:13 +01:00
|
|
|
|
2014-12-16 19:28:46 +01:00
|
|
|
String result;
|
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
while (!ns->IsEof()) {
|
2015-02-24 12:52:10 +01:00
|
|
|
size_t rc = ns->Read(buf, sizeof(buf), true);
|
2014-12-16 19:28:46 +01:00
|
|
|
result += String(buf, buf + rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result.GetLength() < 16) {
|
2015-01-12 14:29:08 +01:00
|
|
|
Log(LogCritical, "ConsoleCommand", "Received invalid response from Livestatus.");
|
2014-12-16 19:28:46 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << result.SubStr(16) << "\n";
|
|
|
|
}
|
2014-11-23 12:35:13 +01:00
|
|
|
}
|
2014-11-23 13:41:45 +01:00
|
|
|
|
|
|
|
return 0;
|
2014-11-23 12:35:13 +01:00
|
|
|
}
|