mirror of https://github.com/Icinga/icinga2.git
500 lines
16 KiB
C++
500 lines
16 KiB
C++
/******************************************************************************
|
|
* Icinga 2 *
|
|
* Copyright (C) 2012-2015 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/nodesetupcommand.hpp"
|
|
#include "cli/nodeutility.hpp"
|
|
#include "cli/featureutility.hpp"
|
|
#include "cli/pkiutility.hpp"
|
|
#include "base/logger.hpp"
|
|
#include "base/console.hpp"
|
|
#include "base/application.hpp"
|
|
#include "base/tlsutility.hpp"
|
|
#include "base/scriptglobal.hpp"
|
|
#include "base/exception.hpp"
|
|
#include <boost/foreach.hpp>
|
|
#include <boost/algorithm/string/classification.hpp>
|
|
#include <boost/algorithm/string/join.hpp>
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
#include <boost/algorithm/string/split.hpp>
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <vector>
|
|
|
|
using namespace icinga;
|
|
namespace po = boost::program_options;
|
|
|
|
REGISTER_CLICOMMAND("node/setup", NodeSetupCommand);
|
|
|
|
String NodeSetupCommand::GetDescription(void) const
|
|
{
|
|
return "Sets up an Icinga 2 node.";
|
|
}
|
|
|
|
String NodeSetupCommand::GetShortDescription(void) const
|
|
{
|
|
return "set up node";
|
|
}
|
|
|
|
void NodeSetupCommand::InitParameters(boost::program_options::options_description& visibleDesc,
|
|
boost::program_options::options_description& hiddenDesc) const
|
|
{
|
|
visibleDesc.add_options()
|
|
("zone", po::value<std::string>(), "The name of the local zone")
|
|
("master_zone", po::value<std::string>(), "The name of the master zone")
|
|
("master_host", po::value<std::string>(), "The name of the master host for auto-signing the csr")
|
|
("endpoint", po::value<std::vector<std::string> >(), "Connect to remote endpoint; syntax: cn[,host,port]")
|
|
("listen", po::value<std::string>(), "Listen on host,port")
|
|
("ticket", po::value<std::string>(), "Generated ticket number for this request")
|
|
("trustedcert", po::value<std::string>(), "Trusted master certificate file")
|
|
("cn", po::value<std::string>(), "The certificate's common name")
|
|
("master", "Use setup for a master instance");
|
|
}
|
|
|
|
std::vector<String> NodeSetupCommand::GetArgumentSuggestions(const String& argument, const String& word) const
|
|
{
|
|
if (argument == "key" || argument == "cert" || argument == "trustedcert")
|
|
return GetBashCompletionSuggestions("file", word);
|
|
else if (argument == "host")
|
|
return GetBashCompletionSuggestions("hostname", word);
|
|
else if (argument == "port")
|
|
return GetBashCompletionSuggestions("service", word);
|
|
else
|
|
return CLICommand::GetArgumentSuggestions(argument, word);
|
|
}
|
|
|
|
ImpersonationLevel NodeSetupCommand::GetImpersonationLevel(void) const
|
|
{
|
|
return ImpersonateRoot;
|
|
}
|
|
|
|
/**
|
|
* The entry point for the "node setup" CLI command.
|
|
*
|
|
* @returns An exit status.
|
|
*/
|
|
int NodeSetupCommand::Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const
|
|
{
|
|
if (!ap.empty()) {
|
|
Log(LogWarning, "cli")
|
|
<< "Ignoring parameters: " << boost::algorithm::join(ap, " ");
|
|
}
|
|
|
|
if (vm.count("master"))
|
|
return SetupMaster(vm, ap);
|
|
else
|
|
return SetupNode(vm, ap);
|
|
}
|
|
|
|
int NodeSetupCommand::SetupMaster(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap)
|
|
{
|
|
/* Ignore not required parameters */
|
|
if (vm.count("ticket"))
|
|
Log(LogWarning, "cli", "Master for Node setup: Ignoring --ticket");
|
|
|
|
if (vm.count("endpoint"))
|
|
Log(LogWarning, "cli", "Master for Node setup: Ignoring --endpoint");
|
|
|
|
if (vm.count("trustedcert"))
|
|
Log(LogWarning, "cli", "Master for Node setup: Ignoring --trustedcert");
|
|
|
|
/* Generate a new CA, if not already existing */
|
|
|
|
Log(LogInformation, "cli", "Generating new CA.");
|
|
|
|
if (PkiUtility::NewCa() > 0) {
|
|
Log(LogWarning, "cli", "Found CA, skipping and using the existing one.");
|
|
}
|
|
|
|
/* Generate a self signed certificate */
|
|
|
|
Log(LogInformation, "cli", "Generating new self-signed certificate.");
|
|
|
|
String pki_path = PkiUtility::GetPkiPath();
|
|
|
|
if (!Utility::MkDirP(pki_path, 0700)) {
|
|
Log(LogCritical, "cli")
|
|
<< "Could not create local pki directory '" << pki_path << "'.";
|
|
return 1;
|
|
}
|
|
|
|
String user = ScriptGlobal::Get("RunAsUser");
|
|
String group = ScriptGlobal::Get("RunAsGroup");
|
|
|
|
if (!Utility::SetFileOwnership(pki_path, user, group)) {
|
|
Log(LogWarning, "cli")
|
|
<< "Cannot set ownership for user '" << user << "' group '" << group << "' on file '" << pki_path << "'. Verify it yourself!";
|
|
}
|
|
|
|
String cn = Utility::GetFQDN();
|
|
|
|
if (vm.count("cn"))
|
|
cn = vm["cn"].as<std::string>();
|
|
|
|
String key = pki_path + "/" + cn + ".key";
|
|
String csr = pki_path + "/" + cn + ".csr";
|
|
|
|
if (Utility::PathExists(key))
|
|
NodeUtility::CreateBackupFile(key, true);
|
|
if (Utility::PathExists(csr))
|
|
NodeUtility::CreateBackupFile(csr);
|
|
|
|
if (PkiUtility::NewCert(cn, key, csr, "") > 0) {
|
|
Log(LogCritical, "cli", "Failed to create self-signed certificate");
|
|
return 1;
|
|
}
|
|
|
|
/* Sign the CSR with the CA key */
|
|
|
|
String cert = pki_path + "/" + cn + ".crt";
|
|
|
|
if (Utility::PathExists(cert))
|
|
NodeUtility::CreateBackupFile(cert);
|
|
|
|
if (PkiUtility::SignCsr(csr, cert) != 0) {
|
|
Log(LogCritical, "cli", "Could not sign CSR.");
|
|
return 1;
|
|
}
|
|
|
|
/* Copy CA certificate to /etc/icinga2/pki */
|
|
String ca_path = PkiUtility::GetLocalCaPath();
|
|
String ca = ca_path + "/ca.crt";
|
|
String ca_key = ca_path + "/ca.key";
|
|
String serial = ca_path + "/serial.txt";
|
|
String target_ca = pki_path + "/ca.crt";
|
|
|
|
Log(LogInformation, "cli")
|
|
<< "Copying CA certificate to '" << target_ca << "'.";
|
|
|
|
/* does not overwrite existing files! */
|
|
Utility::CopyFile(ca, target_ca);
|
|
|
|
/* fix permissions: root -> icinga daemon user */
|
|
std::vector<String> files;
|
|
files.push_back(ca_path);
|
|
files.push_back(ca);
|
|
files.push_back(ca_key);
|
|
files.push_back(serial);
|
|
files.push_back(target_ca);
|
|
files.push_back(key);
|
|
files.push_back(csr);
|
|
files.push_back(cert);
|
|
|
|
BOOST_FOREACH(const String& file, files) {
|
|
if (!Utility::SetFileOwnership(file, user, group)) {
|
|
Log(LogWarning, "cli")
|
|
<< "Cannot set ownership for user '" << user << "' group '" << group << "' on file '" << file << "'. Verify it yourself!";
|
|
}
|
|
}
|
|
|
|
/* read zones.conf and update with zone + endpoint information */
|
|
|
|
Log(LogInformation, "cli", "Generating zone and object configuration.");
|
|
|
|
NodeUtility::GenerateNodeMasterIcingaConfig(cn);
|
|
|
|
/* enable the ApiListener config */
|
|
|
|
Log(LogInformation, "cli", "Updating the APIListener feature.");
|
|
|
|
std::vector<std::string> enable;
|
|
enable.push_back("api");
|
|
FeatureUtility::EnableFeatures(enable);
|
|
|
|
String apipath = FeatureUtility::GetFeaturesAvailablePath() + "/api.conf";
|
|
NodeUtility::CreateBackupFile(apipath);
|
|
|
|
String apipathtmp = apipath + ".tmp";
|
|
|
|
std::ofstream fp;
|
|
fp.open(apipathtmp.CStr(), std::ofstream::out | std::ofstream::trunc);
|
|
|
|
fp << "/**\n"
|
|
<< " * The API listener is used for distributed monitoring setups.\n"
|
|
<< " */\n"
|
|
<< "object ApiListener \"api\" {\n"
|
|
<< " cert_path = SysconfDir + \"/icinga2/pki/\" + NodeName + \".crt\"\n"
|
|
<< " key_path = SysconfDir + \"/icinga2/pki/\" + NodeName + \".key\"\n"
|
|
<< " ca_path = SysconfDir + \"/icinga2/pki/ca.crt\"\n";
|
|
|
|
if (vm.count("listen")) {
|
|
std::vector<String> tokens;
|
|
boost::algorithm::split(tokens, vm["listen"].as<std::string>(), boost::is_any_of(","));
|
|
|
|
if (tokens.size() > 0)
|
|
fp << " bind_host = \"" << tokens[0] << "\"\n";
|
|
if (tokens.size() > 1)
|
|
fp << " bind_port = " << tokens[1] << "\n";
|
|
}
|
|
|
|
fp << "\n"
|
|
<< " ticket_salt = TicketSalt\n"
|
|
<< "}\n";
|
|
|
|
fp.close();
|
|
|
|
#ifdef _WIN32
|
|
_unlink(apipath.CStr());
|
|
#endif /* _WIN32 */
|
|
|
|
if (rename(apipathtmp.CStr(), apipath.CStr()) < 0) {
|
|
BOOST_THROW_EXCEPTION(posix_error()
|
|
<< boost::errinfo_api_function("rename")
|
|
<< boost::errinfo_errno(errno)
|
|
<< boost::errinfo_file_name(apipathtmp));
|
|
}
|
|
|
|
/* update constants.conf with NodeName = CN + TicketSalt = random value */
|
|
if (cn != Utility::GetFQDN()) {
|
|
Log(LogWarning, "cli")
|
|
<< "CN '" << cn << "' does not match the default FQDN '" << Utility::GetFQDN() << "'. Requires update for NodeName constant in constants.conf!";
|
|
}
|
|
|
|
Log(LogInformation, "cli", "Updating constants.conf.");
|
|
|
|
NodeUtility::CreateBackupFile(Application::GetSysconfDir() + "/icinga2/constants.conf");
|
|
|
|
NodeUtility::UpdateConstant("NodeName", cn);
|
|
|
|
String salt = RandomString(16);
|
|
|
|
NodeUtility::UpdateConstant("TicketSalt", salt);
|
|
|
|
Log(LogInformation, "cli")
|
|
<< "Edit the api feature config file '" << apipath << "' and set a secure 'ticket_salt' attribute.";
|
|
|
|
/* tell the user to reload icinga2 */
|
|
|
|
Log(LogInformation, "cli", "Make sure to restart Icinga 2.");
|
|
|
|
return 0;
|
|
}
|
|
|
|
int NodeSetupCommand::SetupNode(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap)
|
|
{
|
|
/* require ticket number (generated on master) and at least one endpoint */
|
|
|
|
if (!vm.count("ticket")) {
|
|
Log(LogCritical, "cli")
|
|
<< "Please pass the ticket number generated on master\n"
|
|
<< "(Hint: 'icinga2 pki ticket --cn " << Utility::GetFQDN() << "').";
|
|
return 1;
|
|
}
|
|
|
|
if (!vm.count("endpoint")) {
|
|
Log(LogCritical, "cli", "You need to specify at least one endpoint (--endpoint).");
|
|
return 1;
|
|
}
|
|
|
|
if (!vm.count("zone")) {
|
|
Log(LogCritical, "cli", "You need to specify the local zone (--zone).");
|
|
return 1;
|
|
}
|
|
|
|
String ticket = vm["ticket"].as<std::string>();
|
|
|
|
Log(LogInformation, "cli")
|
|
<< "Verifying ticket '" << ticket << "'.";
|
|
|
|
/* require master host information for auto-signing requests */
|
|
|
|
if (!vm.count("master_host")) {
|
|
Log(LogCritical, "cli", "Please pass the master host connection information for auto-signing using '--master_host <host>'");
|
|
return 1;
|
|
}
|
|
|
|
std::vector<String> tokens;
|
|
boost::algorithm::split(tokens, vm["master_host"].as<std::string>(), boost::is_any_of(","));
|
|
String master_host;
|
|
String master_port = "5665";
|
|
|
|
if (tokens.size() == 1 || tokens.size() == 2)
|
|
master_host = tokens[0];
|
|
|
|
if (tokens.size() == 2)
|
|
master_port = tokens[1];
|
|
|
|
Log(LogInformation, "cli")
|
|
<< "Verifying master host connection information: host '" << master_host << "', port '" << master_port << "'.";
|
|
|
|
/* trusted cert must be passed (retrieved by the user with 'pki save-cert' before) */
|
|
|
|
if (!vm.count("trustedcert")) {
|
|
Log(LogCritical, "cli")
|
|
<< "Please pass the trusted cert retrieved from the master\n"
|
|
<< "(Hint: 'icinga2 pki save-cert --host <masterhost> --port <5665> --key local.key --cert local.crt --trustedcert master.crt').";
|
|
return 1;
|
|
}
|
|
|
|
String trustedcert = vm["trustedcert"].as<std::string>();
|
|
|
|
Log(LogInformation, "cli")
|
|
<< "Verifying trusted certificate from file '" << trustedcert << "'.";
|
|
|
|
/* retrieve CN and pass it (defaults to FQDN) */
|
|
|
|
String cn = Utility::GetFQDN();
|
|
|
|
if (vm.count("cn"))
|
|
cn = vm["cn"].as<std::string>();
|
|
|
|
Log(LogInformation, "cli")
|
|
<< "Using the following CN (defaults to FQDN): '" << cn << "'.";
|
|
|
|
/* pki request a signed certificate from the master */
|
|
|
|
String pki_path = PkiUtility::GetPkiPath();
|
|
|
|
String key = pki_path + "/" + cn + ".key";
|
|
String cert = pki_path + "/" + cn + ".crt";
|
|
String ca = pki_path + "/ca.crt";
|
|
|
|
if (!Utility::MkDirP(pki_path, 0700)) {
|
|
Log(LogCritical, "cli")
|
|
<< "Could not create local pki directory '" << pki_path << "'.";
|
|
return 1;
|
|
}
|
|
|
|
String user = ScriptGlobal::Get("RunAsUser");
|
|
String group = ScriptGlobal::Get("RunAsGroup");
|
|
|
|
if (!Utility::SetFileOwnership(pki_path, user, group)) {
|
|
Log(LogWarning, "cli")
|
|
<< "Cannot set ownership for user '" << user << "' group '" << group << "' on file '" << pki_path << "'. Verify it yourself!";
|
|
}
|
|
|
|
if (Utility::PathExists(key))
|
|
NodeUtility::CreateBackupFile(key, true);
|
|
if (Utility::PathExists(cert))
|
|
NodeUtility::CreateBackupFile(cert);
|
|
|
|
if (PkiUtility::NewCert(cn, key, String(), cert) != 0) {
|
|
Log(LogCritical, "cli", "Failed to generate new self-signed certificate.");
|
|
return 1;
|
|
}
|
|
|
|
/* fix permissions: root -> icinga daemon user */
|
|
std::vector<String> files;
|
|
files.push_back(ca);
|
|
files.push_back(key);
|
|
files.push_back(cert);
|
|
|
|
BOOST_FOREACH(const String& file, files) {
|
|
if (!Utility::SetFileOwnership(file, user, group)) {
|
|
Log(LogWarning, "cli")
|
|
<< "Cannot set ownership for user '" << user << "' group '" << group << "' on file '" << file << "'. Verify it yourself!";
|
|
}
|
|
}
|
|
|
|
Log(LogInformation, "cli", "Requesting a signed certificate from the master.");
|
|
|
|
if (PkiUtility::RequestCertificate(master_host, master_port, key, cert, ca, trustedcert, ticket) != 0) {
|
|
Log(LogCritical, "cli", "Failed to request certificate from Icinga 2 master.");
|
|
return 1;
|
|
}
|
|
|
|
/* fix permissions (again) when updating the signed certificate */
|
|
if (!Utility::SetFileOwnership(cert, user, group)) {
|
|
Log(LogWarning, "cli")
|
|
<< "Cannot set ownership for user '" << user << "' group '" << group << "' on file '" << cert << "'. Verify it yourself!";
|
|
}
|
|
|
|
/* disable the notifications feature */
|
|
Log(LogInformation, "cli", "Disabling the Notification feature.");
|
|
|
|
std::vector<std::string> disable;
|
|
disable.push_back("notification");
|
|
FeatureUtility::DisableFeatures(disable);
|
|
|
|
/* enable the ApiListener config */
|
|
|
|
Log(LogInformation, "cli", "Updating the ApiListener feature.");
|
|
|
|
std::vector<std::string> enable;
|
|
enable.push_back("api");
|
|
FeatureUtility::EnableFeatures(enable);
|
|
|
|
String apipath = FeatureUtility::GetFeaturesAvailablePath() + "/api.conf";
|
|
NodeUtility::CreateBackupFile(apipath);
|
|
|
|
String apipathtmp = apipath + ".tmp";
|
|
|
|
std::ofstream fp;
|
|
fp.open(apipathtmp.CStr(), std::ofstream::out | std::ofstream::trunc);
|
|
|
|
fp << "/**\n"
|
|
<< " * The API listener is used for distributed monitoring setups.\n"
|
|
<< " */\n"
|
|
<< "object ApiListener \"api\" {\n"
|
|
<< " cert_path = SysconfDir + \"/icinga2/pki/\" + NodeName + \".crt\"\n"
|
|
<< " key_path = SysconfDir + \"/icinga2/pki/\" + NodeName + \".key\"\n"
|
|
<< " ca_path = SysconfDir + \"/icinga2/pki/ca.crt\"\n";
|
|
|
|
if (vm.count("listen")) {
|
|
std::vector<String> tokens;
|
|
boost::algorithm::split(tokens, vm["listen"].as<std::string>(), boost::is_any_of(","));
|
|
|
|
if (tokens.size() > 0)
|
|
fp << " bind_host = \"" << tokens[0] << "\"\n";
|
|
if (tokens.size() > 1)
|
|
fp << " bind_port = " << tokens[1] << "\n";
|
|
}
|
|
|
|
fp << "\n"
|
|
<< " ticket_salt = TicketSalt\n"
|
|
<< "}\n";
|
|
|
|
fp.close();
|
|
|
|
#ifdef _WIN32
|
|
_unlink(apipath.CStr());
|
|
#endif /* _WIN32 */
|
|
|
|
if (rename(apipathtmp.CStr(), apipath.CStr()) < 0) {
|
|
BOOST_THROW_EXCEPTION(posix_error()
|
|
<< boost::errinfo_api_function("rename")
|
|
<< boost::errinfo_errno(errno)
|
|
<< boost::errinfo_file_name(apipathtmp));
|
|
}
|
|
|
|
/* generate local zones.conf with zone+endpoint */
|
|
|
|
Log(LogInformation, "cli", "Generating zone and object configuration.");
|
|
|
|
NodeUtility::GenerateNodeIcingaConfig(vm["endpoint"].as<std::vector<std::string> >(), cn, vm["zone"].as<std::string>());
|
|
|
|
/* update constants.conf with NodeName = CN */
|
|
if (cn != Utility::GetFQDN()) {
|
|
Log(LogWarning, "cli")
|
|
<< "CN '" << cn << "' does not match the default FQDN '" << Utility::GetFQDN() << "'. Requires update for NodeName constant in constants.conf!";
|
|
}
|
|
|
|
Log(LogInformation, "cli", "Updating constants.conf.");
|
|
|
|
NodeUtility::CreateBackupFile(Application::GetSysconfDir() + "/icinga2/constants.conf");
|
|
|
|
NodeUtility::UpdateConstant("NodeName", cn);
|
|
|
|
/* tell the user to reload icinga2 */
|
|
|
|
Log(LogInformation, "cli", "Make sure to restart Icinga 2.");
|
|
|
|
return 0;
|
|
}
|