blob: 6fbef52af45eaafd30235a0c11c856fd6ea45a11 [file] [log] [blame]
Marri Devender Rao6ceec402019-02-01 03:15:19 -06001#pragma once
2
3#include <openssl/x509.h>
4
5#include <filesystem>
6#include <phosphor-logging/elog.hpp>
Marri Devender Raoedd11312019-02-27 08:45:10 -06007#include <xyz/openbmc_project/Certs/Certificate/server.hpp>
Marri Devender Rao13bf74e2019-03-26 01:52:17 -05008#include <xyz/openbmc_project/Certs/Replace/server.hpp>
Marri Devender Rao6ceec402019-02-01 03:15:19 -06009
10namespace phosphor
11{
12namespace certs
13{
Marri Devender Raoedd11312019-02-27 08:45:10 -060014using CertificateIface = sdbusplus::server::object::object<
15 sdbusplus::xyz::openbmc_project::Certs::server::Certificate>;
Marri Devender Rao13bf74e2019-03-26 01:52:17 -050016using ReplaceIface = sdbusplus::xyz::openbmc_project::Certs::server::Replace;
Marri Devender Raoedd11312019-02-27 08:45:10 -060017using CertIfaces =
Marri Devender Rao13bf74e2019-03-26 01:52:17 -050018 sdbusplus::server::object::object<CertificateIface, ReplaceIface>;
Marri Devender Raoedd11312019-02-27 08:45:10 -060019
Marri Devender Rao6ceec402019-02-01 03:15:19 -060020using CertificateType = std::string;
21using UnitsToRestart = std::string;
22using CertInstallPath = std::string;
23using CertUploadPath = std::string;
24using InputType = std::string;
25using InstallFunc = std::function<void(const std::string&)>;
26
27using namespace phosphor::logging;
28
29// for placeholders
30using namespace std::placeholders;
31namespace fs = std::filesystem;
32
33// Supported Types.
34static constexpr auto SERVER = "server";
35static constexpr auto CLIENT = "client";
36static constexpr auto AUTHORITY = "authority";
37
38// RAII support for openSSL functions.
39using 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 Raoedd11312019-02-27 08:45:10 -060047class Certificate : public CertIfaces
Marri Devender Rao6ceec402019-02-01 03:15:19 -060048{
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 Rao13bf74e2019-03-26 01:52:17 -050070 /** @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 Rao6ceec402019-02-01 03:15:19 -060078 * (possibly CA signed) Certificate file.
79 * @param[in] filePath - Certificate file path.
80 */
Marri Devender Rao13bf74e2019-03-26 01:52:17 -050081 void install(const std::string& filePath);
Marri Devender Rao6ceec402019-02-01 03:15:19 -060082
Marri Devender Rao6ceec402019-02-01 03:15:19 -060083 /** @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 Subhashchandran36f25142019-02-14 05:06:26 -060089 /** @brief Populate certificate properties by parsing certificate file
90 * @return void
91 */
92 void populateProperties();
93
Marri Devender Rao6ceec402019-02-01 03:15:19 -060094 /** @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