#include "config.h" #include "csr.hpp" #include #include #include #include #include #include namespace phosphor::certs { using X509_REQ_Ptr = std::unique_ptr; using BIO_Ptr = std::unique_ptr; using InternalFailure = sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; using namespace phosphor::logging; namespace fs = std::filesystem; CSR::CSR(sdbusplus::bus::bus& bus, const char* path, CertInstallPath&& installPath, const Status& status) : CSRIface(bus, path, true), bus(bus), objectPath(path), certInstallPath(std::move(installPath)), csrStatus(status) { // Emit deferred signal. this->emit_object_added(); } std::string CSR::csr() { if (csrStatus == Status::FAILURE) { log("Failure in Generating CSR"); elog(); } fs::path csrFilePath = certInstallPath; csrFilePath = csrFilePath.parent_path() / CSR_FILE_NAME; if (!fs::exists(csrFilePath)) { log("CSR file doesn't exists", entry("FILENAME=%s", csrFilePath.c_str())); elog(); } FILE* fp = std::fopen(csrFilePath.c_str(), "r"); X509_REQ_Ptr x509Req(PEM_read_X509_REQ(fp, nullptr, nullptr, nullptr), ::X509_REQ_free); if (x509Req == nullptr || fp == nullptr) { if (fp != nullptr) { std::fclose(fp); } log("ERROR occurred while reading CSR file", entry("FILENAME=%s", csrFilePath.c_str())); elog(); } std::fclose(fp); BIO_Ptr bio(BIO_new(BIO_s_mem()), ::BIO_free_all); int ret = PEM_write_bio_X509_REQ(bio.get(), x509Req.get()); if (ret <= 0) { log("Error occurred while calling PEM_write_bio_X509_REQ"); elog(); } BUF_MEM* mem = nullptr; BIO_get_mem_ptr(bio.get(), &mem); std::string pem(mem->data, mem->length); return pem; } } // namespace phosphor::certs