2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2017-08-23 12:12:43 +02:00
|
|
|
|
|
|
|
#include "cli/casigncommand.hpp"
|
|
|
|
#include "base/logger.hpp"
|
|
|
|
#include "base/application.hpp"
|
|
|
|
#include "base/tlsutility.hpp"
|
2019-05-10 17:33:28 +02:00
|
|
|
#include "remote/apilistener.hpp"
|
2017-08-23 12:12:43 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
REGISTER_CLICOMMAND("ca/sign", CASignCommand);
|
|
|
|
|
2019-06-07 10:33:35 +02:00
|
|
|
/**
|
|
|
|
* Provide a long CLI description sentence.
|
|
|
|
*
|
|
|
|
* @return text
|
|
|
|
*/
|
2018-01-04 04:25:35 +01:00
|
|
|
String CASignCommand::GetDescription() const
|
2017-08-23 12:12:43 +02:00
|
|
|
{
|
|
|
|
return "Signs an outstanding certificate request.";
|
|
|
|
}
|
|
|
|
|
2019-06-07 10:33:35 +02:00
|
|
|
/**
|
|
|
|
* Provide a short CLI description.
|
|
|
|
*
|
|
|
|
* @return text
|
|
|
|
*/
|
2018-01-04 04:25:35 +01:00
|
|
|
String CASignCommand::GetShortDescription() const
|
2017-08-23 12:12:43 +02:00
|
|
|
{
|
|
|
|
return "signs an outstanding certificate request";
|
|
|
|
}
|
|
|
|
|
2019-06-07 10:33:35 +02:00
|
|
|
/**
|
|
|
|
* Define minimum arguments without key parameter.
|
|
|
|
*
|
|
|
|
* @return number of arguments
|
|
|
|
*/
|
2018-01-04 04:25:35 +01:00
|
|
|
int CASignCommand::GetMinArguments() const
|
2017-08-23 12:12:43 +02:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-06-07 10:33:35 +02:00
|
|
|
/**
|
|
|
|
* Impersonate as Icinga user.
|
|
|
|
*
|
|
|
|
* @return impersonate level
|
|
|
|
*/
|
2018-01-04 04:25:35 +01:00
|
|
|
ImpersonationLevel CASignCommand::GetImpersonationLevel() const
|
2017-08-23 12:12:43 +02:00
|
|
|
{
|
2017-12-19 15:50:05 +01:00
|
|
|
return ImpersonateIcinga;
|
2017-08-23 12:12:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The entry point for the "ca sign" CLI command.
|
|
|
|
*
|
2019-06-07 10:33:35 +02:00
|
|
|
* @return An exit status.
|
2017-08-23 12:12:43 +02:00
|
|
|
*/
|
|
|
|
int CASignCommand::Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const
|
|
|
|
{
|
2017-09-06 12:11:48 +02:00
|
|
|
String requestFile = ApiListener::GetCertificateRequestsDir() + "/" + ap[0] + ".json";
|
2017-08-23 12:12:43 +02:00
|
|
|
|
2017-09-05 14:16:26 +02:00
|
|
|
if (!Utility::PathExists(requestFile)) {
|
|
|
|
Log(LogCritical, "cli")
|
2017-12-19 15:50:05 +01:00
|
|
|
<< "No request exists for fingerprint '" << ap[0] << "'.";
|
2017-09-05 14:16:26 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-08-23 12:12:43 +02:00
|
|
|
Dictionary::Ptr request = Utility::LoadJsonFile(requestFile);
|
|
|
|
|
|
|
|
if (!request)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
String certRequestText = request->Get("cert_request");
|
|
|
|
|
2017-11-21 13:20:55 +01:00
|
|
|
std::shared_ptr<X509> certRequest = StringToCertificate(certRequestText);
|
2017-08-23 12:12:43 +02:00
|
|
|
|
2017-09-05 14:16:26 +02:00
|
|
|
if (!certRequest) {
|
|
|
|
Log(LogCritical, "cli", "Certificate request is invalid. Could not parse X.509 certificate for the 'cert_request' attribute.");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-11-21 13:20:55 +01:00
|
|
|
std::shared_ptr<X509> certResponse = CreateCertIcingaCA(certRequest);
|
2017-08-23 12:12:43 +02:00
|
|
|
|
2017-09-05 14:16:26 +02:00
|
|
|
BIO *out = BIO_new(BIO_s_mem());
|
|
|
|
X509_NAME_print_ex(out, X509_get_subject_name(certRequest.get()), 0, XN_FLAG_ONELINE & ~ASN1_STRFLGS_ESC_MSB);
|
|
|
|
|
|
|
|
char *data;
|
|
|
|
long length;
|
|
|
|
length = BIO_get_mem_data(out, &data);
|
|
|
|
|
|
|
|
String subject = String(data, data + length);
|
|
|
|
BIO_free(out);
|
|
|
|
|
|
|
|
if (!certResponse) {
|
|
|
|
Log(LogCritical, "cli")
|
2017-12-19 15:50:05 +01:00
|
|
|
<< "Could not sign certificate for '" << subject << "'.";
|
2017-09-05 14:16:26 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-08-23 12:12:43 +02:00
|
|
|
request->Set("cert_response", CertificateToString(certResponse));
|
|
|
|
|
|
|
|
Utility::SaveJsonFile(requestFile, 0600, request);
|
|
|
|
|
2017-09-05 14:16:26 +02:00
|
|
|
Log(LogInformation, "cli")
|
2017-12-19 15:50:05 +01:00
|
|
|
<< "Signed certificate for '" << subject << "'.";
|
2017-09-05 14:16:26 +02:00
|
|
|
|
2017-08-23 12:12:43 +02:00
|
|
|
return 0;
|
|
|
|
}
|