blob: 96ef29c0e407be2d8751fb00d37fb13b7d53f647 [file] [log] [blame]
Adriana Kobylak2d8fa222017-03-15 12:34:32 -05001#pragma once
2
Adriana Kobylak2d8fa222017-03-15 12:34:32 -05003#include "activation.hpp"
Gunnar Millsf6ed5892018-09-07 17:08:02 -05004#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 Tritzdd961b62017-05-17 14:07:03 -05009#include <xyz/openbmc_project/Common/FactoryReset/server.hpp>
Adriana Kobylak7cb480e2017-11-07 13:22:59 -060010#include <xyz/openbmc_project/Object/Enable/server.hpp>
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050011
12namespace openpower
13{
14namespace software
15{
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -050016namespace updater
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050017{
18
Michael Tritzdd961b62017-05-17 14:07:03 -050019using ItemUpdaterInherit = sdbusplus::server::object::object<
Adriana Kobylak70dcb632018-02-27 15:46:52 -060020 sdbusplus::xyz::openbmc_project::Common::server::FactoryReset,
21 sdbusplus::org::openbmc::server::Associations,
22 sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>;
Michael Tritzb541f1b2017-10-15 15:10:21 -050023using GardResetInherit = sdbusplus::server::object::object<
Adriana Kobylak70dcb632018-02-27 15:46:52 -060024 sdbusplus::xyz::openbmc_project::Common::server::FactoryReset>;
Adriana Kobylak7cb480e2017-11-07 13:22:59 -060025using ObjectEnable = sdbusplus::server::object::object<
Adriana Kobylak70dcb632018-02-27 15:46:52 -060026 sdbusplus::xyz::openbmc_project::Object::server::Enable>;
Patrick Williams3accb322017-05-30 16:29:52 -050027namespace MatchRules = sdbusplus::bus::match::rules;
Michael Tritzdd961b62017-05-17 14:07:03 -050028
Gunnar Mills9741cd12017-08-28 15:09:00 -050029using AssociationList =
Adriana Kobylak70dcb632018-02-27 15:46:52 -060030 std::vector<std::tuple<std::string, std::string, std::string>>;
Gunnar Mills9741cd12017-08-28 15:09:00 -050031
Michael Tritz4ecea0f2017-12-05 17:51:31 -060032constexpr auto GARD_PATH = "/org/open_power/control/gard";
Adriana Kobylak7cb480e2017-11-07 13:22:59 -060033constexpr static auto volatilePath = "/org/open_power/control/volatile";
Michael Tritzb541f1b2017-10-15 15:10:21 -050034
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 */
40class GardReset : public GardResetInherit
41{
Adriana Kobylak70dcb632018-02-27 15:46:52 -060042 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 Tritzb541f1b2017-10-15 15:10:21 -050054
Adriana Kobylak70dcb632018-02-27 15:46:52 -060055 ~GardReset()
56 {
57 std::vector<std::string> interfaces({interface});
58 bus.emit_interfaces_removed(path.c_str(), interfaces);
59 }
Michael Tritzb541f1b2017-10-15 15:10:21 -050060
Adriana Kobylak70dcb632018-02-27 15:46:52 -060061 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 Tritzb541f1b2017-10-15 15:10:21 -050066
Adriana Kobylak70dcb632018-02-27 15:46:52 -060067 /**
68 * @brief GARD factory reset - clears the PNOR GARD partition.
69 */
70 void reset() override;
Michael Tritzb541f1b2017-10-15 15:10:21 -050071};
72
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050073/** @class ItemUpdater
Gunnar Mills139cf1a2017-09-21 16:25:37 -050074 * @brief Manages the activation of the host version items.
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050075 */
Michael Tritzdd961b62017-05-17 14:07:03 -050076class ItemUpdater : public ItemUpdaterInherit
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050077{
Adriana Kobylak70dcb632018-02-27 15:46:52 -060078 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 Kobylak70dcb632018-02-27 15:46:52 -060092 }
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050093
Lei YUf3ce4332019-02-21 14:09:49 +080094 virtual ~ItemUpdater() = default;
95
Adriana Kobylak70dcb632018-02-27 15:46:52 -060096 /** @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 YUf3ce4332019-02-21 14:09:49 +0800104 virtual void freePriority(uint8_t value, const std::string& versionId) = 0;
Saqib Khan81bac882017-06-08 12:17:01 -0500105
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600106 /** @brief Determine is the given priority is the lowest
107 *
108 * @param[in] value - The priority that needs to be checked.
109 *
110 * @return boolean corresponding to whether the given
111 * priority is lowest.
112 */
Lei YUf3ce4332019-02-21 14:09:49 +0800113 virtual bool isLowestPriority(uint8_t value) = 0;
Saqib Khan2af5c492017-07-17 16:15:13 -0500114
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600115 /**
116 * @brief Create and populate the active PNOR Version.
117 */
Lei YUf3ce4332019-02-21 14:09:49 +0800118 virtual void processPNORImage() = 0;
Saqib Khan167601b2017-06-18 23:33:46 -0500119
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600120 /** @brief Deletes version
121 *
122 * @param[in] entryId - Id of the version to delete
123 *
Lei YUf3ce4332019-02-21 14:09:49 +0800124 * @return - Returns true if the version is deleted.
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600125 */
Lei YUf3ce4332019-02-21 14:09:49 +0800126 virtual bool erase(std::string entryId);
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500127
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600128 /**
129 * @brief Erases any non-active pnor versions.
130 */
Lei YUf3ce4332019-02-21 14:09:49 +0800131 virtual void deleteAll() = 0;
Michael Tritz234a07e2017-09-21 00:53:06 -0500132
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600133 /** @brief Brings the total number of active PNOR versions to
134 * ACTIVE_PNOR_MAX_ALLOWED -1. This function is intended to be
135 * run before activating a new PNOR version. If this function
136 * needs to delete any PNOR version(s) it will delete the
137 * version(s) with the highest priority, skipping the
138 * functional PNOR version.
139 */
Lei YUf3ce4332019-02-21 14:09:49 +0800140 virtual void freeSpace() = 0;
Saqib Khan2cbfa032017-08-17 14:52:37 -0500141
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600142 /** @brief Determine the software version id
143 * from the symlink target (e.g. /media/ro-2a1022fe).
144 *
145 * @param[in] symlinkPath - The path of the symlink.
146 * @param[out] id - The version id as a string.
147 */
148 static std::string determineId(const std::string& symlinkPath);
Gunnar Mills2badd7a2017-09-20 12:51:28 -0500149
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600150 /** @brief Creates an active association to the
151 * newly active software image
152 *
153 * @param[in] path - The path to create the association to.
154 */
Lei YUf3ce4332019-02-21 14:09:49 +0800155 virtual void createActiveAssociation(const std::string& path);
Gunnar Mills9741cd12017-08-28 15:09:00 -0500156
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600157 /** @brief Updates the functional association to the
158 * new "running" PNOR image
159 *
Lei YUf3ce4332019-02-21 14:09:49 +0800160 * @param[in] versionId - The id of the image to update the association to.
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600161 */
Lei YUf3ce4332019-02-21 14:09:49 +0800162 virtual void updateFunctionalAssociation(const std::string& versionId);
Gunnar Mills833e4f32017-09-14 12:30:27 -0500163
Adriana Kobylakb5237172018-10-30 14:51:53 -0500164 /** @brief Removes the associations from the provided software image path
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600165 *
166 * @param[in] path - The path to remove the association from.
167 */
Lei YUf3ce4332019-02-21 14:09:49 +0800168 virtual void removeAssociation(const std::string& path);
Gunnar Mills9741cd12017-08-28 15:09:00 -0500169
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600170 /** @brief Persistent GardReset dbus object */
171 std::unique_ptr<GardReset> gardReset;
Michael Tritzb541f1b2017-10-15 15:10:21 -0500172
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600173 /** @brief Check whether the provided image id is the functional one
174 *
175 * @param[in] - versionId - The id of the image to check.
176 *
177 * @return - Returns true if this version is currently functional.
178 */
Lei YUf3ce4332019-02-21 14:09:49 +0800179 virtual bool isVersionFunctional(const std::string& versionId) = 0;
Michael Tritz5b756512017-10-06 16:52:01 -0500180
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600181 /** @brief Persistent ObjectEnable D-Bus object */
182 std::unique_ptr<ObjectEnable> volatileEnable;
Adriana Kobylak7cb480e2017-11-07 13:22:59 -0600183
Lei YUf3ce4332019-02-21 14:09:49 +0800184 protected:
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600185 /** @brief Callback function for Software.Version match.
186 * @details Creates an Activation D-Bus object.
187 *
188 * @param[in] msg - Data associated with subscribed signal
189 */
Lei YUf3ce4332019-02-21 14:09:49 +0800190 virtual void createActivation(sdbusplus::message::message& msg) = 0;
Saqib Khan7254f0e2017-04-10 21:45:37 -0500191
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600192 /** @brief Persistent sdbusplus D-Bus bus connection. */
193 sdbusplus::bus::bus& bus;
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500194
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600195 /** @brief Persistent map of Activation D-Bus objects and their
196 * version id */
197 std::map<std::string, std::unique_ptr<Activation>> activations;
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500198
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600199 /** @brief Persistent map of Version D-Bus objects and their
200 * version id */
201 std::map<std::string, std::unique_ptr<Version>> versions;
Saqib Khance148702017-06-11 12:01:58 -0500202
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600203 /** @brief sdbusplus signal match for Software.Version */
204 sdbusplus::bus::match_t versionMatch;
Michael Tritzdd961b62017-05-17 14:07:03 -0500205
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600206 /** @brief This entry's associations */
207 AssociationList assocs = {};
Gunnar Mills9741cd12017-08-28 15:09:00 -0500208
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600209 /** @brief Host factory reset - clears PNOR partitions for each
210 * Activation D-Bus object */
Lei YUf3ce4332019-02-21 14:09:49 +0800211 void reset() override = 0;
Eddie James13fc66a2017-08-31 15:36:44 -0500212
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600213 /** @brief Check whether the host is running
214 *
215 * @return - Returns true if the Chassis is powered on.
216 */
217 bool isChassisOn();
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500218};
219
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -0500220} // namespace updater
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500221} // namespace software
222} // namespace openpower