2014-10-17 15:13:17 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* 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 "cli/agentutility.hpp"
|
2014-10-18 21:06:28 +02:00
|
|
|
#include "cli/clicommand.hpp"
|
|
|
|
#include "base/logger.hpp"
|
|
|
|
#include "base/application.hpp"
|
|
|
|
#include "base/tlsutility.hpp"
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
#include "base/serializer.hpp"
|
|
|
|
#include "base/netstring.hpp"
|
|
|
|
#include "base/stdiostream.hpp"
|
|
|
|
#include "base/debug.hpp"
|
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/console.hpp"
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <boost/algorithm/string/join.hpp>
|
2014-10-21 14:23:47 +02:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
2014-10-18 21:06:28 +02:00
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
2014-10-17 15:13:17 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2014-10-18 21:06:28 +02:00
|
|
|
String AgentUtility::GetRepositoryPath(void)
|
2014-10-17 15:13:17 +02:00
|
|
|
{
|
2014-10-18 21:06:28 +02:00
|
|
|
return Application::GetLocalStateDir() + "/lib/icinga2/api/repository";
|
|
|
|
}
|
|
|
|
|
|
|
|
String AgentUtility::GetAgentRepositoryFile(const String& name)
|
|
|
|
{
|
|
|
|
return GetRepositoryPath() + "/" + SHA256(name) + ".repo";
|
|
|
|
}
|
|
|
|
|
|
|
|
String AgentUtility::GetAgentSettingsFile(const String& name)
|
|
|
|
{
|
|
|
|
return GetRepositoryPath() + "/" + SHA256(name) + ".settings";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<String> AgentUtility::GetFieldCompletionSuggestions(const String& word)
|
|
|
|
{
|
|
|
|
std::vector<String> cache;
|
|
|
|
std::vector<String> suggestions;
|
|
|
|
|
|
|
|
GetAgents(cache);
|
|
|
|
|
|
|
|
std::sort(cache.begin(), cache.end());
|
|
|
|
|
|
|
|
BOOST_FOREACH(const String& suggestion, cache) {
|
|
|
|
if (suggestion.Find(word) == 0)
|
|
|
|
suggestions.push_back(suggestion);
|
|
|
|
}
|
|
|
|
|
|
|
|
return suggestions;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AgentUtility::PrintAgents(std::ostream& fp)
|
|
|
|
{
|
|
|
|
std::vector<String> agents;
|
|
|
|
GetAgents(agents);
|
|
|
|
|
|
|
|
BOOST_FOREACH(const String& agent, agents) {
|
|
|
|
Dictionary::Ptr agent_obj = GetAgentFromRepository(GetAgentRepositoryFile(agent));
|
|
|
|
fp << "Agent Name: " << agent << "\n";
|
2014-10-17 15:13:17 +02:00
|
|
|
|
2014-10-18 21:06:28 +02:00
|
|
|
if (agent_obj) {
|
|
|
|
fp << "Endpoint: " << agent_obj->Get("endpoint") << "\n";
|
|
|
|
fp << "Zone: " << agent_obj->Get("zone") << "\n";
|
|
|
|
fp << "Repository: ";
|
|
|
|
fp << std::setw(4);
|
|
|
|
PrintAgentRepository(fp, agent_obj->Get("repository"));
|
|
|
|
fp << std::setw(0) << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fp << "All agents: " << boost::algorithm::join(agents, " ") << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void AgentUtility::PrintAgentRepository(std::ostream& fp, const Dictionary::Ptr& repository)
|
|
|
|
{
|
|
|
|
//TODO better formatting
|
|
|
|
fp << JsonSerialize(repository);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AgentUtility::PrintAgentsJson(std::ostream& fp)
|
|
|
|
{
|
|
|
|
std::vector<String> agents;
|
|
|
|
GetAgents(agents);
|
|
|
|
|
|
|
|
BOOST_FOREACH(const String& agent, agents) {
|
|
|
|
Dictionary::Ptr agent_obj = GetAgentFromRepository(GetAgentRepositoryFile(agent));
|
|
|
|
if (agent_obj) {
|
|
|
|
fp << JsonSerialize(agent_obj);
|
|
|
|
}
|
|
|
|
}
|
2014-10-17 15:13:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AgentUtility::AddAgent(const String& name)
|
|
|
|
{
|
2014-10-18 21:06:28 +02:00
|
|
|
String path = GetAgentRepositoryFile(name);
|
|
|
|
|
|
|
|
if (Utility::PathExists(path) ) {
|
|
|
|
Log(LogCritical, "cli")
|
2014-10-22 08:06:06 +02:00
|
|
|
<< "Cannot add agent repo. '" << path << "' already exists.\n";
|
2014-10-18 21:06:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Dictionary::Ptr agent = make_shared<Dictionary>();
|
|
|
|
|
|
|
|
agent->Set("seen", Utility::GetTime());
|
|
|
|
agent->Set("endpoint", name);
|
|
|
|
agent->Set("zone", name);
|
|
|
|
agent->Set("repository", Empty);
|
|
|
|
|
|
|
|
return WriteAgentToRepository(path, agent);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AgentUtility::AddAgentSettings(const String& name, const String& host, const String& port)
|
|
|
|
{
|
|
|
|
String path = GetAgentSettingsFile(name);
|
|
|
|
|
|
|
|
Dictionary::Ptr peer = make_shared<Dictionary>();
|
|
|
|
|
|
|
|
peer->Set("agent_host", host);
|
|
|
|
peer->Set("agent_port", port);
|
|
|
|
|
|
|
|
return WriteAgentToRepository(path, peer);
|
2014-10-17 15:13:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AgentUtility::RemoveAgent(const String& name)
|
|
|
|
{
|
2014-10-18 21:06:28 +02:00
|
|
|
if (!RemoveAgentFile(GetAgentRepositoryFile(name))) {
|
|
|
|
Log(LogCritical, "cli")
|
2014-10-22 08:06:06 +02:00
|
|
|
<< "Cannot remove agent repo. '" << GetAgentRepositoryFile(name) << "' does not exist.\n";
|
2014-10-18 21:06:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (Utility::PathExists(GetAgentSettingsFile(name))) {
|
|
|
|
if (!RemoveAgentFile(GetAgentSettingsFile(name))) {
|
|
|
|
Log(LogWarning, "cli")
|
2014-10-22 08:06:06 +02:00
|
|
|
<< "Cannot remove agent settings. '" << GetAgentSettingsFile(name) << "' does not exist.\n";
|
2014-10-18 21:06:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AgentUtility::RemoveAgentFile(const String& path)
|
|
|
|
{
|
|
|
|
if (!Utility::PathExists(path)) {
|
2014-10-22 08:06:06 +02:00
|
|
|
Log(LogCritical, "cli", "Cannot remove '" << path << "'. Does not exist.");
|
2014-10-18 21:06:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unlink(path.CStr()) < 0) {
|
2014-10-22 08:06:06 +02:00
|
|
|
Log(LogCritical, "cli", "Cannot remove file '" << path <<
|
|
|
|
"'. Failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) + "\".");
|
2014-10-18 21:06:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AgentUtility::SetAgentAttribute(const String& name, const String& attr, const Value& val)
|
|
|
|
{
|
|
|
|
String repo_path = GetAgentRepositoryFile(name);
|
|
|
|
Dictionary::Ptr repo = GetAgentFromRepository(repo_path);
|
|
|
|
|
|
|
|
if (repo) {
|
|
|
|
repo->Set(attr, val);
|
|
|
|
WriteAgentToRepository(repo_path, repo);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AgentUtility::WriteAgentToRepository(const String& filename, const Dictionary::Ptr& item)
|
|
|
|
{
|
2014-10-22 08:06:06 +02:00
|
|
|
Log(LogInformation, "cli", "Dumping agent to file '" << filename << "'");
|
2014-10-18 21:06:28 +02:00
|
|
|
|
|
|
|
String tempFilename = filename + ".tmp";
|
|
|
|
|
2014-10-22 08:06:06 +02:00
|
|
|
std::ofstream fp(tempFilename.CStr(), std::ofstream::out | std::ostream::trunc);
|
|
|
|
fp << JsonSerialize(item);
|
|
|
|
fp.close();
|
2014-10-18 21:06:28 +02:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
_unlink(filename.CStr());
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
|
|
if (rename(tempFilename.CStr(), filename.CStr()) < 0) {
|
|
|
|
BOOST_THROW_EXCEPTION(posix_error()
|
|
|
|
<< boost::errinfo_api_function("rename")
|
|
|
|
<< boost::errinfo_errno(errno)
|
|
|
|
<< boost::errinfo_file_name(tempFilename));
|
|
|
|
}
|
|
|
|
|
2014-10-17 15:13:17 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-18 21:06:28 +02:00
|
|
|
Dictionary::Ptr AgentUtility::GetAgentFromRepository(const String& filename)
|
|
|
|
{
|
|
|
|
std::fstream fp;
|
|
|
|
fp.open(filename.CStr(), std::ifstream::in);
|
|
|
|
|
|
|
|
if (!fp)
|
|
|
|
return Dictionary::Ptr();
|
|
|
|
|
|
|
|
String content((std::istreambuf_iterator<char>(fp)), std::istreambuf_iterator<char>());
|
|
|
|
|
|
|
|
std::cout << "Content: " << content << "\n";
|
|
|
|
|
|
|
|
fp.close();
|
|
|
|
|
|
|
|
return JsonDeserialize(content);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AgentUtility::GetAgents(std::vector<String>& agents)
|
2014-10-17 15:13:17 +02:00
|
|
|
{
|
2014-10-18 21:06:28 +02:00
|
|
|
String path = GetRepositoryPath();
|
|
|
|
|
|
|
|
if (!Utility::Glob(path + "/*.repo",
|
|
|
|
boost::bind(&AgentUtility::CollectAgents, _1, boost::ref(agents)), GlobFile)) {
|
2014-10-22 08:06:06 +02:00
|
|
|
Log(LogCritical, "cli", "Cannot access path '" << path << "'.");
|
2014-10-18 21:06:28 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-10-17 15:13:17 +02:00
|
|
|
return true;
|
|
|
|
}
|
2014-10-18 21:06:28 +02:00
|
|
|
|
|
|
|
void AgentUtility::CollectAgents(const String& agent_file, std::vector<String>& agents)
|
|
|
|
{
|
|
|
|
String agent = Utility::BaseName(agent_file);
|
|
|
|
boost::algorithm::replace_all(agent, ".repo", "");
|
|
|
|
|
2014-10-22 08:06:06 +02:00
|
|
|
Log(LogDebug, "cli", "Adding agent: " << agent);
|
2014-10-18 21:06:28 +02:00
|
|
|
agents.push_back(agent);
|
|
|
|
}
|
2014-10-21 21:33:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is ugly and requires refactoring into a generic config writer class.
|
|
|
|
* TODO.
|
|
|
|
*/
|
|
|
|
bool AgentUtility::WriteAgentConfigObjects(const String& filename, const Array::Ptr& objects)
|
|
|
|
{
|
|
|
|
Log(LogInformation, "cli", "Dumping config items to file '" + filename + "'");
|
|
|
|
|
|
|
|
Utility::MkDirP(Utility::DirName(filename), 0755);
|
|
|
|
|
|
|
|
String tempPath = filename + ".tmp";
|
|
|
|
|
|
|
|
std::ofstream fp(tempPath.CStr(), std::ofstream::out | std::ostream::trunc);
|
|
|
|
|
|
|
|
ObjectLock olock(objects);
|
|
|
|
|
|
|
|
BOOST_FOREACH(const Dictionary::Ptr& object, objects) {
|
|
|
|
String name = object->Get("__name");
|
|
|
|
String type = object->Get("__type");
|
|
|
|
|
|
|
|
SerializeObject(fp, name, type, object);
|
|
|
|
}
|
|
|
|
|
|
|
|
fp << std::endl;
|
|
|
|
fp.close();
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
_unlink(filename.CStr());
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
|
|
if (rename(tempPath.CStr(), filename.CStr()) < 0) {
|
|
|
|
BOOST_THROW_EXCEPTION(posix_error()
|
|
|
|
<< boost::errinfo_api_function("rename")
|
|
|
|
<< boost::errinfo_errno(errno)
|
|
|
|
<< boost::errinfo_file_name(tempPath));
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AgentUtility::SerializeObject(std::ostream& fp, const String& name, const String& type, const Dictionary::Ptr& object)
|
|
|
|
{
|
|
|
|
fp << "object " << type << " \"" << name << "\" {\n";
|
|
|
|
BOOST_FOREACH(const Dictionary::Pair& kv, object) {
|
|
|
|
if (kv.first == "__type" || kv.first == "__name")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
fp << "\t" << kv.first << " = ";
|
|
|
|
FormatValue(fp, kv.second);
|
|
|
|
fp << "\n";
|
|
|
|
}
|
|
|
|
fp << "}\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void AgentUtility::FormatValue(std::ostream& fp, const Value& val)
|
|
|
|
{
|
|
|
|
if (val.IsObjectType<Array>()) {
|
|
|
|
FormatArray(fp, val);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val.IsString()) {
|
|
|
|
fp << "\"" << Convert::ToString(val) << "\"";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fp << Convert::ToString(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AgentUtility::FormatArray(std::ostream& fp, const Array::Ptr& arr)
|
|
|
|
{
|
|
|
|
bool first = true;
|
|
|
|
|
|
|
|
fp << "[ ";
|
|
|
|
|
|
|
|
if (arr) {
|
|
|
|
ObjectLock olock(arr);
|
|
|
|
BOOST_FOREACH(const Value& value, arr) {
|
|
|
|
if (first)
|
|
|
|
first = false;
|
|
|
|
else
|
|
|
|
fp << ", ";
|
|
|
|
|
|
|
|
FormatValue(fp, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!first)
|
|
|
|
fp << " ";
|
|
|
|
|
|
|
|
fp << "]";
|
|
|
|
}
|