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