blob: 1dc0868f38be3948d1edb5a5a7a83cbb745497ed [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 {
92 processPNORImage();
93 gardReset = std::make_unique<GardReset>(bus, GARD_PATH);
94 volatileEnable = std::make_unique<ObjectEnable>(bus, volatilePath);
Michael Tritzb541f1b2017-10-15 15:10:21 -050095
Adriana Kobylak70dcb632018-02-27 15:46:52 -060096 // Emit deferred signal.
97 emit_object_added();
98 }
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050099
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600100 /** @brief Sets the given priority free by incrementing
101 * any existing priority with the same value by 1
102 *
103 * @param[in] value - The priority that needs to be set free.
104 * @param[in] versionId - The Id of the version for which we
105 * are trying to free up the priority.
106 * @return None
107 */
108 void freePriority(uint8_t value, const std::string& versionId);
Saqib Khan81bac882017-06-08 12:17:01 -0500109
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600110 /** @brief Determine is the given priority is the lowest
111 *
112 * @param[in] value - The priority that needs to be checked.
113 *
114 * @return boolean corresponding to whether the given
115 * priority is lowest.
116 */
117 bool isLowestPriority(uint8_t value);
Saqib Khan2af5c492017-07-17 16:15:13 -0500118
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600119 /**
120 * @brief Create and populate the active PNOR Version.
121 */
122 void processPNORImage();
Saqib Khan167601b2017-06-18 23:33:46 -0500123
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600124 /** @brief Deletes version
125 *
126 * @param[in] entryId - Id of the version to delete
127 *
128 * @return None
129 */
130 void erase(std::string entryId);
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500131
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600132 /**
133 * @brief Erases any non-active pnor versions.
134 */
135 void deleteAll();
Michael Tritz234a07e2017-09-21 00:53:06 -0500136
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600137 /** @brief Brings the total number of active PNOR versions to
138 * ACTIVE_PNOR_MAX_ALLOWED -1. This function is intended to be
139 * run before activating a new PNOR version. If this function
140 * needs to delete any PNOR version(s) it will delete the
141 * version(s) with the highest priority, skipping the
142 * functional PNOR version.
143 */
144 void freeSpace();
Saqib Khan2cbfa032017-08-17 14:52:37 -0500145
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600146 /** @brief Determine the software version id
147 * from the symlink target (e.g. /media/ro-2a1022fe).
148 *
149 * @param[in] symlinkPath - The path of the symlink.
150 * @param[out] id - The version id as a string.
151 */
152 static std::string determineId(const std::string& symlinkPath);
Gunnar Mills2badd7a2017-09-20 12:51:28 -0500153
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600154 /** @brief Creates an active association to the
155 * newly active software image
156 *
157 * @param[in] path - The path to create the association to.
158 */
159 void createActiveAssociation(const std::string& path);
Gunnar Mills9741cd12017-08-28 15:09:00 -0500160
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600161 /** @brief Updates the functional association to the
162 * new "running" PNOR image
163 *
164 * @param[in] path - The path to update the association to.
165 */
166 void updateFunctionalAssociation(const std::string& path);
Gunnar Mills833e4f32017-09-14 12:30:27 -0500167
Adriana Kobylakb5237172018-10-30 14:51:53 -0500168 /** @brief Removes the associations from the provided software image path
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600169 *
170 * @param[in] path - The path to remove the association from.
171 */
Adriana Kobylakb5237172018-10-30 14:51:53 -0500172 void removeAssociation(const std::string& path);
Gunnar Mills9741cd12017-08-28 15:09:00 -0500173
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600174 /** @brief Persistent GardReset dbus object */
175 std::unique_ptr<GardReset> gardReset;
Michael Tritzb541f1b2017-10-15 15:10:21 -0500176
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600177 /** @brief Check whether the provided image id is the functional one
178 *
179 * @param[in] - versionId - The id of the image to check.
180 *
181 * @return - Returns true if this version is currently functional.
182 */
183 static bool isVersionFunctional(const std::string& versionId);
Michael Tritz5b756512017-10-06 16:52:01 -0500184
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600185 /** @brief Persistent ObjectEnable D-Bus object */
186 std::unique_ptr<ObjectEnable> volatileEnable;
Adriana Kobylak7cb480e2017-11-07 13:22:59 -0600187
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600188 private:
189 /** @brief Callback function for Software.Version match.
190 * @details Creates an Activation D-Bus object.
191 *
192 * @param[in] msg - Data associated with subscribed signal
193 */
194 void createActivation(sdbusplus::message::message& msg);
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500195
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600196 /**
197 * @brief Validates the presence of SquashFS image in the image dir.
198 *
199 * @param[in] filePath - The path to the SquashFS image.
200 * @param[out] result - 0 --> if validation was successful
201 * - -1--> Otherwise
202 */
203 static int validateSquashFSImage(const std::string& filePath);
Saqib Khan7254f0e2017-04-10 21:45:37 -0500204
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600205 /** @brief Persistent sdbusplus D-Bus bus connection. */
206 sdbusplus::bus::bus& bus;
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500207
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600208 /** @brief Persistent map of Activation D-Bus objects and their
209 * version id */
210 std::map<std::string, std::unique_ptr<Activation>> activations;
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500211
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600212 /** @brief Persistent map of Version D-Bus objects and their
213 * version id */
214 std::map<std::string, std::unique_ptr<Version>> versions;
Saqib Khance148702017-06-11 12:01:58 -0500215
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600216 /** @brief sdbusplus signal match for Software.Version */
217 sdbusplus::bus::match_t versionMatch;
Michael Tritzdd961b62017-05-17 14:07:03 -0500218
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600219 /** @brief This entry's associations */
220 AssociationList assocs = {};
Gunnar Mills9741cd12017-08-28 15:09:00 -0500221
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600222 /** @brief Clears read only PNOR partition for
223 * given Activation D-Bus object
224 *
225 * @param[in] versionId - The id of the ro partition to remove.
226 */
227 void removeReadOnlyPartition(std::string versionId);
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500228
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600229 /** @brief Clears read write PNOR partition for
230 * given Activation D-Bus object
231 *
232 * @param[in] versionId - The id of the rw partition to remove.
233 */
234 void removeReadWritePartition(std::string versionId);
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500235
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600236 /** @brief Clears preserved PNOR partition */
237 void removePreservedPartition();
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500238
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600239 /** @brief Host factory reset - clears PNOR partitions for each
240 * Activation D-Bus object */
241 void reset() override;
Eddie James13fc66a2017-08-31 15:36:44 -0500242
Adriana Kobylak70dcb632018-02-27 15:46:52 -0600243 /** @brief Check whether the host is running
244 *
245 * @return - Returns true if the Chassis is powered on.
246 */
247 bool isChassisOn();
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500248};
249
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -0500250} // namespace updater
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500251} // namespace software
252} // namespace openpower