Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <openssl/x509.h> |
| 4 | |
| 5 | #include <filesystem> |
| 6 | #include <phosphor-logging/elog.hpp> |
Marri Devender Rao | edd1131 | 2019-02-27 08:45:10 -0600 | [diff] [blame] | 7 | #include <xyz/openbmc_project/Certs/Certificate/server.hpp> |
Marri Devender Rao | 13bf74e | 2019-03-26 01:52:17 -0500 | [diff] [blame^] | 8 | #include <xyz/openbmc_project/Certs/Replace/server.hpp> |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame] | 9 | |
| 10 | namespace phosphor |
| 11 | { |
| 12 | namespace certs |
| 13 | { |
Marri Devender Rao | edd1131 | 2019-02-27 08:45:10 -0600 | [diff] [blame] | 14 | using CertificateIface = sdbusplus::server::object::object< |
| 15 | sdbusplus::xyz::openbmc_project::Certs::server::Certificate>; |
Marri Devender Rao | 13bf74e | 2019-03-26 01:52:17 -0500 | [diff] [blame^] | 16 | using ReplaceIface = sdbusplus::xyz::openbmc_project::Certs::server::Replace; |
Marri Devender Rao | edd1131 | 2019-02-27 08:45:10 -0600 | [diff] [blame] | 17 | using CertIfaces = |
Marri Devender Rao | 13bf74e | 2019-03-26 01:52:17 -0500 | [diff] [blame^] | 18 | sdbusplus::server::object::object<CertificateIface, ReplaceIface>; |
Marri Devender Rao | edd1131 | 2019-02-27 08:45:10 -0600 | [diff] [blame] | 19 | |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame] | 20 | using CertificateType = std::string; |
| 21 | using UnitsToRestart = std::string; |
| 22 | using CertInstallPath = std::string; |
| 23 | using CertUploadPath = std::string; |
| 24 | using InputType = std::string; |
| 25 | using InstallFunc = std::function<void(const std::string&)>; |
| 26 | |
| 27 | using namespace phosphor::logging; |
| 28 | |
| 29 | // for placeholders |
| 30 | using namespace std::placeholders; |
| 31 | namespace fs = std::filesystem; |
| 32 | |
| 33 | // Supported Types. |
| 34 | static constexpr auto SERVER = "server"; |
| 35 | static constexpr auto CLIENT = "client"; |
| 36 | static constexpr auto AUTHORITY = "authority"; |
| 37 | |
| 38 | // RAII support for openSSL functions. |
| 39 | using X509_Ptr = std::unique_ptr<X509, decltype(&::X509_free)>; |
| 40 | |
| 41 | /** @class Certificate |
| 42 | * @brief OpenBMC Certificate entry implementation. |
| 43 | * @details A concrete implementation for the |
| 44 | * xyz.openbmc_project.Certs.Certificate DBus API |
| 45 | * xyz.openbmc_project.Certs.Instal DBus API |
| 46 | */ |
Marri Devender Rao | edd1131 | 2019-02-27 08:45:10 -0600 | [diff] [blame] | 47 | class Certificate : public CertIfaces |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame] | 48 | { |
| 49 | public: |
| 50 | Certificate() = delete; |
| 51 | Certificate(const Certificate&) = delete; |
| 52 | Certificate& operator=(const Certificate&) = delete; |
| 53 | Certificate(Certificate&&) = delete; |
| 54 | Certificate& operator=(Certificate&&) = delete; |
| 55 | virtual ~Certificate(); |
| 56 | |
| 57 | /** @brief Constructor for the Certificate Object |
| 58 | * @param[in] bus - Bus to attach to. |
| 59 | * @param[in] objPath - Object path to attach to |
| 60 | * @param[in] type - Type of the certificate |
| 61 | * @param[in] unit - Units to restart after a certificate is installed |
| 62 | * @param[in] installPath - Path of the certificate to install |
| 63 | * @param[in] uploadPath - Path of the certificate file to upload |
| 64 | */ |
| 65 | Certificate(sdbusplus::bus::bus& bus, const std::string& objPath, |
| 66 | const CertificateType& type, const UnitsToRestart& unit, |
| 67 | const CertInstallPath& installPath, |
| 68 | const CertUploadPath& uploadPath); |
| 69 | |
Marri Devender Rao | 13bf74e | 2019-03-26 01:52:17 -0500 | [diff] [blame^] | 70 | /** @brief Validate certificate and replace the existing certificate |
| 71 | * @param[in] filePath - Certificate file path. |
| 72 | */ |
| 73 | void replace(const std::string filePath) override; |
| 74 | |
| 75 | private: |
| 76 | /** @brief Validate and Replace/Install the certificate file |
| 77 | * Install/Replace the existing certificate file with another |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame] | 78 | * (possibly CA signed) Certificate file. |
| 79 | * @param[in] filePath - Certificate file path. |
| 80 | */ |
Marri Devender Rao | 13bf74e | 2019-03-26 01:52:17 -0500 | [diff] [blame^] | 81 | void install(const std::string& filePath); |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame] | 82 | |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame] | 83 | /** @brief Load Certificate file into the X509 structre. |
| 84 | * @param[in] fileName - Certificate and key full file path. |
| 85 | * @return pointer to the X509 structure. |
| 86 | */ |
| 87 | X509_Ptr loadCert(const std::string& filePath); |
| 88 | |
Dhruvaraj Subhashchandran | 36f2514 | 2019-02-14 05:06:26 -0600 | [diff] [blame] | 89 | /** @brief Populate certificate properties by parsing certificate file |
| 90 | * @return void |
| 91 | */ |
| 92 | void populateProperties(); |
| 93 | |
Marri Devender Rao | 6ceec40 | 2019-02-01 03:15:19 -0600 | [diff] [blame] | 94 | /** @brief Public/Private key compare function. |
| 95 | * Comparing private key against certificate public key |
| 96 | * from input .pem file. |
| 97 | * @param[in] fileName - Certificate and key full file path. |
| 98 | * @return Return true if Key compare is successful, |
| 99 | * false if not |
| 100 | */ |
| 101 | bool compareKeys(const std::string& filePath); |
| 102 | /** @brief systemd unit reload or reset helper function |
| 103 | * Reload if the unit supports it and use a restart otherwise. |
| 104 | * @param[in] unit - service need to reload. |
| 105 | */ |
| 106 | void reloadOrReset(const UnitsToRestart& unit); |
| 107 | |
| 108 | /** @brief Type specific function pointer map **/ |
| 109 | std::unordered_map<InputType, InstallFunc> typeFuncMap; |
| 110 | |
| 111 | /** @brief sdbusplus handler */ |
| 112 | sdbusplus::bus::bus& bus; |
| 113 | |
| 114 | /** @brief object path */ |
| 115 | std::string objectPath; |
| 116 | |
| 117 | /** @brief Type of the certificate **/ |
| 118 | CertificateType certType; |
| 119 | |
| 120 | /** @brief Unit name associated to the service **/ |
| 121 | UnitsToRestart unitToRestart; |
| 122 | |
| 123 | /** @brief Certificate file installation path **/ |
| 124 | CertInstallPath certInstallPath; |
| 125 | }; |
| 126 | |
| 127 | } // namespace certs |
| 128 | } // namespace phosphor |