1 #pragma once 2 3 #include "xyz/openbmc_project/Certs/Entry/server.hpp" 4 #include "xyz/openbmc_project/Object/Delete/server.hpp" 5 #include "xyz/openbmc_project/PLDM/Provider/Certs/Authority/CSR/server.hpp" 6 7 #include <sdbusplus/bus.hpp> 8 #include <sdbusplus/server/object.hpp> 9 10 namespace ca 11 { 12 namespace cert 13 { 14 15 namespace internal 16 { 17 using EntryInterface = sdbusplus::server::object_t< 18 sdbusplus::xyz::openbmc_project::PLDM::Provider::Certs::Authority::server:: 19 CSR, 20 sdbusplus::xyz::openbmc_project::Certs::server::Entry, 21 sdbusplus::xyz::openbmc_project::Object::server::Delete>; 22 } 23 24 class CACertMgr; 25 26 /** @class Entry 27 * @brief CA authority certificate Entry implementation. 28 * @details A concrete implementation for the 29 * xyz.openbmc_project.Certs.Entry DBus API 30 */ 31 class Entry : public internal::EntryInterface 32 { 33 public: 34 Entry() = delete; 35 Entry(const Entry&) = delete; 36 Entry& operator=(const Entry&) = delete; 37 Entry(Entry&&) = delete; 38 Entry& operator=(Entry&&) = delete; 39 ~Entry() = default; 40 41 /** @brief Constructor to put object onto bus at a D-Bus path. 42 * @param[in] bus - Bus to attach to. 43 * @param[in] objPath - The D-Bus object path to attach at. 44 * @param[in] entryId - Entry id 45 * @param[in] csr - csr string 46 * @param[in] cert - client certificate 47 */ 48 Entry(sdbusplus::bus::bus& bus, const std::string& objPath, 49 uint32_t entryId, std::string& csr, std::string& cert, 50 CACertMgr& manager) : 51 internal::EntryInterface(bus, objPath.c_str(), 52 internal::EntryInterface::action::defer_emit), 53 bus(bus), id(entryId), manager(manager) 54 55 { 56 this->csr(csr); 57 clientCertificate(cert); 58 59 // Emit deferred signal. 60 this->emit_object_added(); 61 }; 62 63 void delete_() override; 64 65 protected: 66 /** @brief sdbusplus handler */ 67 sdbusplus::bus::bus& bus; 68 uint32_t id; 69 /** @brief object path */ 70 std::string objectPath; 71 /** @brief Reference to Certificate Manager */ 72 CACertMgr& manager; 73 }; 74 } // namespace cert 75 } // namespace ca 76