Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 3 | #include "activation.hpp" |
Gunnar Mills | f6ed589 | 2018-09-07 17:08:02 -0500 | [diff] [blame] | 4 | #include "org/openbmc/Associations/server.hpp" |
| 5 | #include "version.hpp" |
| 6 | #include "xyz/openbmc_project/Collection/DeleteAll/server.hpp" |
| 7 | |
| 8 | #include <sdbusplus/server.hpp> |
Michael Tritz | dd961b6 | 2017-05-17 14:07:03 -0500 | [diff] [blame] | 9 | #include <xyz/openbmc_project/Common/FactoryReset/server.hpp> |
Adriana Kobylak | 7cb480e | 2017-11-07 13:22:59 -0600 | [diff] [blame] | 10 | #include <xyz/openbmc_project/Object/Enable/server.hpp> |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 11 | |
| 12 | namespace openpower |
| 13 | { |
| 14 | namespace software |
| 15 | { |
Adriana Kobylak | befe5ce | 2017-04-05 15:57:44 -0500 | [diff] [blame] | 16 | namespace updater |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 17 | { |
| 18 | |
Michael Tritz | dd961b6 | 2017-05-17 14:07:03 -0500 | [diff] [blame] | 19 | using ItemUpdaterInherit = sdbusplus::server::object::object< |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 20 | sdbusplus::xyz::openbmc_project::Common::server::FactoryReset, |
| 21 | sdbusplus::org::openbmc::server::Associations, |
| 22 | sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>; |
Michael Tritz | b541f1b | 2017-10-15 15:10:21 -0500 | [diff] [blame] | 23 | using GardResetInherit = sdbusplus::server::object::object< |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 24 | sdbusplus::xyz::openbmc_project::Common::server::FactoryReset>; |
Adriana Kobylak | 7cb480e | 2017-11-07 13:22:59 -0600 | [diff] [blame] | 25 | using ObjectEnable = sdbusplus::server::object::object< |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 26 | sdbusplus::xyz::openbmc_project::Object::server::Enable>; |
Patrick Williams | 3accb32 | 2017-05-30 16:29:52 -0500 | [diff] [blame] | 27 | namespace MatchRules = sdbusplus::bus::match::rules; |
Michael Tritz | dd961b6 | 2017-05-17 14:07:03 -0500 | [diff] [blame] | 28 | |
Gunnar Mills | 9741cd1 | 2017-08-28 15:09:00 -0500 | [diff] [blame] | 29 | using AssociationList = |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 30 | std::vector<std::tuple<std::string, std::string, std::string>>; |
Gunnar Mills | 9741cd1 | 2017-08-28 15:09:00 -0500 | [diff] [blame] | 31 | |
Michael Tritz | 4ecea0f | 2017-12-05 17:51:31 -0600 | [diff] [blame] | 32 | constexpr auto GARD_PATH = "/org/open_power/control/gard"; |
Adriana Kobylak | 7cb480e | 2017-11-07 13:22:59 -0600 | [diff] [blame] | 33 | constexpr static auto volatilePath = "/org/open_power/control/volatile"; |
Michael Tritz | b541f1b | 2017-10-15 15:10:21 -0500 | [diff] [blame] | 34 | |
| 35 | /** @class GardReset |
| 36 | * @brief OpenBMC GARD factory reset implementation. |
| 37 | * @details An implementation of xyz.openbmc_project.Common.FactoryReset under |
| 38 | * /org/openpower/control/gard. |
| 39 | */ |
| 40 | class GardReset : public GardResetInherit |
| 41 | { |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 42 | public: |
| 43 | /** @brief Constructs GardReset. |
| 44 | * |
| 45 | * @param[in] bus - The Dbus bus object |
| 46 | * @param[in] path - The Dbus object path |
| 47 | */ |
| 48 | GardReset(sdbusplus::bus::bus& bus, const std::string& path) : |
| 49 | GardResetInherit(bus, path.c_str(), true), bus(bus), path(path) |
| 50 | { |
| 51 | std::vector<std::string> interfaces({interface}); |
| 52 | bus.emit_interfaces_added(path.c_str(), interfaces); |
| 53 | } |
Michael Tritz | b541f1b | 2017-10-15 15:10:21 -0500 | [diff] [blame] | 54 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 55 | ~GardReset() |
| 56 | { |
| 57 | std::vector<std::string> interfaces({interface}); |
| 58 | bus.emit_interfaces_removed(path.c_str(), interfaces); |
| 59 | } |
Michael Tritz | b541f1b | 2017-10-15 15:10:21 -0500 | [diff] [blame] | 60 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 61 | private: |
| 62 | // TODO Remove once openbmc/openbmc#1975 is resolved |
| 63 | static constexpr auto interface = "xyz.openbmc_project.Common.FactoryReset"; |
| 64 | sdbusplus::bus::bus& bus; |
| 65 | std::string path; |
Michael Tritz | b541f1b | 2017-10-15 15:10:21 -0500 | [diff] [blame] | 66 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 67 | /** |
| 68 | * @brief GARD factory reset - clears the PNOR GARD partition. |
| 69 | */ |
| 70 | void reset() override; |
Michael Tritz | b541f1b | 2017-10-15 15:10:21 -0500 | [diff] [blame] | 71 | }; |
| 72 | |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 73 | /** @class ItemUpdater |
Gunnar Mills | 139cf1a | 2017-09-21 16:25:37 -0500 | [diff] [blame] | 74 | * @brief Manages the activation of the host version items. |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 75 | */ |
Michael Tritz | dd961b6 | 2017-05-17 14:07:03 -0500 | [diff] [blame] | 76 | class ItemUpdater : public ItemUpdaterInherit |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 77 | { |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 78 | public: |
| 79 | /** @brief Constructs ItemUpdater |
| 80 | * |
| 81 | * @param[in] bus - The D-Bus bus object |
| 82 | * @param[in] path - The D-Bus path |
| 83 | */ |
| 84 | ItemUpdater(sdbusplus::bus::bus& bus, const std::string& path) : |
| 85 | ItemUpdaterInherit(bus, path.c_str()), bus(bus), |
| 86 | versionMatch(bus, |
| 87 | MatchRules::interfacesAdded() + |
| 88 | MatchRules::path("/xyz/openbmc_project/software"), |
| 89 | std::bind(std::mem_fn(&ItemUpdater::createActivation), |
| 90 | this, std::placeholders::_1)) |
| 91 | { |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 92 | } |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 93 | |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 94 | virtual ~ItemUpdater() = default; |
| 95 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 96 | /** @brief Sets the given priority free by incrementing |
| 97 | * any existing priority with the same value by 1 |
| 98 | * |
| 99 | * @param[in] value - The priority that needs to be set free. |
| 100 | * @param[in] versionId - The Id of the version for which we |
| 101 | * are trying to free up the priority. |
| 102 | * @return None |
| 103 | */ |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 104 | virtual void freePriority(uint8_t value, const std::string& versionId) = 0; |
Saqib Khan | 81bac88 | 2017-06-08 12:17:01 -0500 | [diff] [blame] | 105 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 106 | /** |
| 107 | * @brief Create and populate the active PNOR Version. |
| 108 | */ |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 109 | virtual void processPNORImage() = 0; |
Saqib Khan | 167601b | 2017-06-18 23:33:46 -0500 | [diff] [blame] | 110 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 111 | /** @brief Deletes version |
| 112 | * |
| 113 | * @param[in] entryId - Id of the version to delete |
| 114 | * |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 115 | * @return - Returns true if the version is deleted. |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 116 | */ |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 117 | virtual bool erase(std::string entryId); |
Leonel Gonzalez | 9c8adfa | 2017-07-12 11:08:40 -0500 | [diff] [blame] | 118 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 119 | /** |
| 120 | * @brief Erases any non-active pnor versions. |
| 121 | */ |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 122 | virtual void deleteAll() = 0; |
Michael Tritz | 234a07e | 2017-09-21 00:53:06 -0500 | [diff] [blame] | 123 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 124 | /** @brief Brings the total number of active PNOR versions to |
| 125 | * ACTIVE_PNOR_MAX_ALLOWED -1. This function is intended to be |
| 126 | * run before activating a new PNOR version. If this function |
| 127 | * needs to delete any PNOR version(s) it will delete the |
| 128 | * version(s) with the highest priority, skipping the |
| 129 | * functional PNOR version. |
Lei YU | 6da3dae | 2019-02-28 14:26:37 +0800 | [diff] [blame^] | 130 | * |
| 131 | * @return - Return if space is freed or not |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 132 | */ |
Lei YU | 6da3dae | 2019-02-28 14:26:37 +0800 | [diff] [blame^] | 133 | virtual bool freeSpace() = 0; |
Saqib Khan | 2cbfa03 | 2017-08-17 14:52:37 -0500 | [diff] [blame] | 134 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 135 | /** @brief Creates an active association to the |
| 136 | * newly active software image |
| 137 | * |
| 138 | * @param[in] path - The path to create the association to. |
| 139 | */ |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 140 | virtual void createActiveAssociation(const std::string& path); |
Gunnar Mills | 9741cd1 | 2017-08-28 15:09:00 -0500 | [diff] [blame] | 141 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 142 | /** @brief Updates the functional association to the |
| 143 | * new "running" PNOR image |
| 144 | * |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 145 | * @param[in] versionId - The id of the image to update the association to. |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 146 | */ |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 147 | virtual void updateFunctionalAssociation(const std::string& versionId); |
Gunnar Mills | 833e4f3 | 2017-09-14 12:30:27 -0500 | [diff] [blame] | 148 | |
Adriana Kobylak | b523717 | 2018-10-30 14:51:53 -0500 | [diff] [blame] | 149 | /** @brief Removes the associations from the provided software image path |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 150 | * |
| 151 | * @param[in] path - The path to remove the association from. |
| 152 | */ |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 153 | virtual void removeAssociation(const std::string& path); |
Gunnar Mills | 9741cd1 | 2017-08-28 15:09:00 -0500 | [diff] [blame] | 154 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 155 | /** @brief Persistent GardReset dbus object */ |
| 156 | std::unique_ptr<GardReset> gardReset; |
Michael Tritz | b541f1b | 2017-10-15 15:10:21 -0500 | [diff] [blame] | 157 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 158 | /** @brief Check whether the provided image id is the functional one |
| 159 | * |
| 160 | * @param[in] - versionId - The id of the image to check. |
| 161 | * |
| 162 | * @return - Returns true if this version is currently functional. |
| 163 | */ |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 164 | virtual bool isVersionFunctional(const std::string& versionId) = 0; |
Michael Tritz | 5b75651 | 2017-10-06 16:52:01 -0500 | [diff] [blame] | 165 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 166 | /** @brief Persistent ObjectEnable D-Bus object */ |
| 167 | std::unique_ptr<ObjectEnable> volatileEnable; |
Adriana Kobylak | 7cb480e | 2017-11-07 13:22:59 -0600 | [diff] [blame] | 168 | |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 169 | protected: |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 170 | /** @brief Callback function for Software.Version match. |
| 171 | * @details Creates an Activation D-Bus object. |
| 172 | * |
| 173 | * @param[in] msg - Data associated with subscribed signal |
| 174 | */ |
Lei YU | a9ac927 | 2019-02-22 16:38:35 +0800 | [diff] [blame] | 175 | virtual void createActivation(sdbusplus::message::message& msg); |
| 176 | |
| 177 | /** @brief Create Activation object */ |
| 178 | virtual std::unique_ptr<Activation> createActivationObject( |
| 179 | const std::string& path, const std::string& versionId, |
| 180 | const std::string& extVersion, |
| 181 | sdbusplus::xyz::openbmc_project::Software::server::Activation:: |
| 182 | Activations activationStatus, |
| 183 | AssociationList& assocs) = 0; |
| 184 | |
| 185 | /** @brief Create Version object */ |
| 186 | virtual std::unique_ptr<Version> |
| 187 | createVersionObject(const std::string& objPath, |
| 188 | const std::string& versionId, |
| 189 | const std::string& versionString, |
| 190 | sdbusplus::xyz::openbmc_project::Software::server:: |
| 191 | Version::VersionPurpose versionPurpose, |
| 192 | const std::string& filePath) = 0; |
| 193 | |
| 194 | /** @brief Validate if image is valid or not */ |
| 195 | virtual bool validateImage(const std::string& path) = 0; |
Saqib Khan | 7254f0e | 2017-04-10 21:45:37 -0500 | [diff] [blame] | 196 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 197 | /** @brief Persistent sdbusplus D-Bus bus connection. */ |
| 198 | sdbusplus::bus::bus& bus; |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 199 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 200 | /** @brief Persistent map of Activation D-Bus objects and their |
| 201 | * version id */ |
| 202 | std::map<std::string, std::unique_ptr<Activation>> activations; |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 203 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 204 | /** @brief Persistent map of Version D-Bus objects and their |
| 205 | * version id */ |
| 206 | std::map<std::string, std::unique_ptr<Version>> versions; |
Saqib Khan | ce14870 | 2017-06-11 12:01:58 -0500 | [diff] [blame] | 207 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 208 | /** @brief sdbusplus signal match for Software.Version */ |
| 209 | sdbusplus::bus::match_t versionMatch; |
Michael Tritz | dd961b6 | 2017-05-17 14:07:03 -0500 | [diff] [blame] | 210 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 211 | /** @brief This entry's associations */ |
| 212 | AssociationList assocs = {}; |
Gunnar Mills | 9741cd1 | 2017-08-28 15:09:00 -0500 | [diff] [blame] | 213 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 214 | /** @brief Host factory reset - clears PNOR partitions for each |
| 215 | * Activation D-Bus object */ |
Lei YU | f3ce433 | 2019-02-21 14:09:49 +0800 | [diff] [blame] | 216 | void reset() override = 0; |
Eddie James | 13fc66a | 2017-08-31 15:36:44 -0500 | [diff] [blame] | 217 | |
Adriana Kobylak | 70dcb63 | 2018-02-27 15:46:52 -0600 | [diff] [blame] | 218 | /** @brief Check whether the host is running |
| 219 | * |
| 220 | * @return - Returns true if the Chassis is powered on. |
| 221 | */ |
| 222 | bool isChassisOn(); |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 223 | }; |
| 224 | |
Adriana Kobylak | befe5ce | 2017-04-05 15:57:44 -0500 | [diff] [blame] | 225 | } // namespace updater |
Adriana Kobylak | 2d8fa22 | 2017-03-15 12:34:32 -0500 | [diff] [blame] | 226 | } // namespace software |
| 227 | } // namespace openpower |