blob: 8b1bf0d2b2fdd74420703435a5992e06be8dd816 [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 /**
107 * @brief Create and populate the active PNOR Version.
108 */
Lei YUf3ce4332019-02-21 14:09:49 +0800109 virtual void processPNORImage() = 0;
Saqib Khan167601b2017-06-18 23:33:46 -0500110
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600111 /** @brief Deletes version
112 *
113 * @param[in] entryId - Id of the version to delete
114 *
Lei YUf3ce4332019-02-21 14:09:49 +0800115 * @return - Returns true if the version is deleted.
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600116 */
Lei YUf3ce4332019-02-21 14:09:49 +0800117 virtual bool erase(std::string entryId);
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500118
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600119 /**
120 * @brief Erases any non-active pnor versions.
121 */
Lei YUf3ce4332019-02-21 14:09:49 +0800122 virtual void deleteAll() = 0;
Michael Tritz234a07e2017-09-21 00:53:06 -0500123
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600124 /** @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.
130 */
Lei YUf3ce4332019-02-21 14:09:49 +0800131 virtual void freeSpace() = 0;
Saqib Khan2cbfa032017-08-17 14:52:37 -0500132
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600133 /** @brief Creates an active association to the
134 * newly active software image
135 *
136 * @param[in] path - The path to create the association to.
137 */
Lei YUf3ce4332019-02-21 14:09:49 +0800138 virtual void createActiveAssociation(const std::string& path);
Gunnar Mills9741cd12017-08-28 15:09:00 -0500139
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600140 /** @brief Updates the functional association to the
141 * new "running" PNOR image
142 *
Lei YUf3ce4332019-02-21 14:09:49 +0800143 * @param[in] versionId - The id of the image to update the association to.
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600144 */
Lei YUf3ce4332019-02-21 14:09:49 +0800145 virtual void updateFunctionalAssociation(const std::string& versionId);
Gunnar Mills833e4f32017-09-14 12:30:27 -0500146
Adriana Kobylakb5237172018-10-30 14:51:53 -0500147 /** @brief Removes the associations from the provided software image path
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600148 *
149 * @param[in] path - The path to remove the association from.
150 */
Lei YUf3ce4332019-02-21 14:09:49 +0800151 virtual void removeAssociation(const std::string& path);
Gunnar Mills9741cd12017-08-28 15:09:00 -0500152
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600153 /** @brief Persistent GardReset dbus object */
154 std::unique_ptr<GardReset> gardReset;
Michael Tritzb541f1b2017-10-15 15:10:21 -0500155
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600156 /** @brief Check whether the provided image id is the functional one
157 *
158 * @param[in] - versionId - The id of the image to check.
159 *
160 * @return - Returns true if this version is currently functional.
161 */
Lei YUf3ce4332019-02-21 14:09:49 +0800162 virtual bool isVersionFunctional(const std::string& versionId) = 0;
Michael Tritz5b756512017-10-06 16:52:01 -0500163
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600164 /** @brief Persistent ObjectEnable D-Bus object */
165 std::unique_ptr<ObjectEnable> volatileEnable;
Adriana Kobylak7cb480e2017-11-07 13:22:59 -0600166
Lei YUf3ce4332019-02-21 14:09:49 +0800167 protected:
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600168 /** @brief Callback function for Software.Version match.
169 * @details Creates an Activation D-Bus object.
170 *
171 * @param[in] msg - Data associated with subscribed signal
172 */
Lei YUa9ac9272019-02-22 16:38:35 +0800173 virtual void createActivation(sdbusplus::message::message& msg);
174
175 /** @brief Create Activation object */
176 virtual std::unique_ptr<Activation> createActivationObject(
177 const std::string& path, const std::string& versionId,
178 const std::string& extVersion,
179 sdbusplus::xyz::openbmc_project::Software::server::Activation::
180 Activations activationStatus,
181 AssociationList& assocs) = 0;
182
183 /** @brief Create Version object */
184 virtual std::unique_ptr<Version>
185 createVersionObject(const std::string& objPath,
186 const std::string& versionId,
187 const std::string& versionString,
188 sdbusplus::xyz::openbmc_project::Software::server::
189 Version::VersionPurpose versionPurpose,
190 const std::string& filePath) = 0;
191
192 /** @brief Validate if image is valid or not */
193 virtual bool validateImage(const std::string& path) = 0;
Saqib Khan7254f0e2017-04-10 21:45:37 -0500194
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600195 /** @brief Persistent sdbusplus D-Bus bus connection. */
196 sdbusplus::bus::bus& bus;
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500197
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600198 /** @brief Persistent map of Activation D-Bus objects and their
199 * version id */
200 std::map<std::string, std::unique_ptr<Activation>> activations;
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500201
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600202 /** @brief Persistent map of Version D-Bus objects and their
203 * version id */
204 std::map<std::string, std::unique_ptr<Version>> versions;
Saqib Khance148702017-06-11 12:01:58 -0500205
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600206 /** @brief sdbusplus signal match for Software.Version */
207 sdbusplus::bus::match_t versionMatch;
Michael Tritzdd961b62017-05-17 14:07:03 -0500208
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600209 /** @brief This entry's associations */
210 AssociationList assocs = {};
Gunnar Mills9741cd12017-08-28 15:09:00 -0500211
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600212 /** @brief Host factory reset - clears PNOR partitions for each
213 * Activation D-Bus object */
Lei YUf3ce4332019-02-21 14:09:49 +0800214 void reset() override = 0;
Eddie James13fc66a2017-08-31 15:36:44 -0500215
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600216 /** @brief Check whether the host is running
217 *
218 * @return - Returns true if the Chassis is powered on.
219 */
220 bool isChassisOn();
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500221};
222
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -0500223} // namespace updater
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500224} // namespace software
225} // namespace openpower