blob: 721d371953a245deeb0ccac264164b9db847fd23 [file] [log] [blame]
Gunnar Millsec1b41c2017-05-02 12:20:36 -05001#pragma once
2
Gunnar Millsec1b41c2017-05-02 12:20:36 -05003#include "activation.hpp"
Lei YU56aaf452018-06-21 16:09:44 +08004#include "item_updater_helper.hpp"
Saqib Khan705f1bf2017-06-09 23:58:38 -05005#include "version.hpp"
Gunnar Millsb0ce9962018-09-07 13:39:10 -05006#include "xyz/openbmc_project/Collection/DeleteAll/server.hpp"
7
8#include <sdbusplus/server.hpp>
John Wang85c356f2019-09-11 16:20:13 +08009#include <xyz/openbmc_project/Association/Definitions/server.hpp>
Michael Tritz37a59042017-07-12 13:44:53 -050010#include <xyz/openbmc_project/Common/FactoryReset/server.hpp>
Michael Tritz0129d922017-08-10 19:33:46 -050011#include <xyz/openbmc_project/Control/FieldMode/server.hpp>
Gunnar Millsec1b41c2017-05-02 12:20:36 -050012
Adriana Kobylak58aa7502020-06-08 11:12:11 -050013#include <string>
Bright Cheng8e9ccfe2019-11-18 16:18:44 +080014#include <vector>
Adriana Kobylak58aa7502020-06-08 11:12:11 -050015
Gunnar Millsec1b41c2017-05-02 12:20:36 -050016namespace phosphor
17{
18namespace software
19{
20namespace updater
21{
22
Michael Tritz37a59042017-07-12 13:44:53 -050023using ItemUpdaterInherit = sdbusplus::server::object::object<
Adriana Kobylak2285fe02018-02-27 15:36:59 -060024 sdbusplus::xyz::openbmc_project::Common::server::FactoryReset,
25 sdbusplus::xyz::openbmc_project::Control::server::FieldMode,
John Wang85c356f2019-09-11 16:20:13 +080026 sdbusplus::xyz::openbmc_project::Association::server::Definitions,
Adriana Kobylak2285fe02018-02-27 15:36:59 -060027 sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>;
Michael Tritz37a59042017-07-12 13:44:53 -050028
Patrick Williamse75d10f2017-05-30 16:56:32 -050029namespace MatchRules = sdbusplus::bus::match::rules;
Gunnar Mills48442912017-10-06 13:34:07 -050030using VersionClass = phosphor::software::manager::Version;
Gunnar Millsded875d2017-08-28 16:44:52 -050031using AssociationList =
Adriana Kobylak2285fe02018-02-27 15:36:59 -060032 std::vector<std::tuple<std::string, std::string, std::string>>;
Gunnar Millsded875d2017-08-28 16:44:52 -050033
Gunnar Millsec1b41c2017-05-02 12:20:36 -050034/** @class ItemUpdater
35 * @brief Manages the activation of the BMC version items.
36 */
Michael Tritz37a59042017-07-12 13:44:53 -050037class ItemUpdater : public ItemUpdaterInherit
Gunnar Millsec1b41c2017-05-02 12:20:36 -050038{
Adriana Kobylak2285fe02018-02-27 15:36:59 -060039 public:
40 /*
41 * @brief Types of Activation status for image validation.
42 */
43 enum class ActivationStatus
44 {
45 ready,
46 invalid,
47 active
48 };
Saqib Khan35e83f32017-05-22 11:37:32 -050049
Adriana Kobylak2285fe02018-02-27 15:36:59 -060050 /** @brief Constructs ItemUpdater
51 *
52 * @param[in] bus - The D-Bus bus object
53 */
54 ItemUpdater(sdbusplus::bus::bus& bus, const std::string& path) :
Lei YU56aaf452018-06-21 16:09:44 +080055 ItemUpdaterInherit(bus, path.c_str(), false), bus(bus), helper(bus),
Adriana Kobylak2285fe02018-02-27 15:36:59 -060056 versionMatch(bus,
57 MatchRules::interfacesAdded() +
58 MatchRules::path("/xyz/openbmc_project/software"),
59 std::bind(std::mem_fn(&ItemUpdater::createActivation),
60 this, std::placeholders::_1))
61 {
62 setBMCInventoryPath();
63 processBMCImage();
64 restoreFieldModeStatus();
65 emit_object_added();
66 };
Gunnar Millsec1b41c2017-05-02 12:20:36 -050067
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -050068 /** @brief Save priority value to persistent storage (flash and optionally
69 * a U-Boot environment variable)
70 *
71 * @param[in] versionId - The Id of the version
72 * @param[in] value - The priority value
73 * @return None
74 */
75 void savePriority(const std::string& versionId, uint8_t value);
76
Adriana Kobylak2285fe02018-02-27 15:36:59 -060077 /** @brief Sets the given priority free by incrementing
78 * any existing priority with the same value by 1
79 *
80 * @param[in] value - The priority that needs to be set free.
81 * @param[in] versionId - The Id of the version for which we
82 * are trying to free up the priority.
83 * @return None
84 */
85 void freePriority(uint8_t value, const std::string& versionId);
Saqib Khan4c1aec02017-07-06 11:46:13 -050086
Adriana Kobylak2285fe02018-02-27 15:36:59 -060087 /**
88 * @brief Create and populate the active BMC Version.
89 */
90 void processBMCImage();
Saqib Khanba239882017-05-26 08:41:54 -050091
Adriana Kobylak2285fe02018-02-27 15:36:59 -060092 /**
93 * @brief Erase specified entry D-Bus object
94 * if Action property is not set to Active
95 *
96 * @param[in] entryId - unique identifier of the entry
97 */
98 void erase(std::string entryId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -050099
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600100 /**
101 * @brief Deletes all versions except for the current one
102 */
103 void deleteAll();
Gunnar Millsded875d2017-08-28 16:44:52 -0500104
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600105 /** @brief Creates an active association to the
106 * newly active software image
107 *
108 * @param[in] path - The path to create the association to.
109 */
110 void createActiveAssociation(const std::string& path);
Gunnar Millsded875d2017-08-28 16:44:52 -0500111
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600112 /** @brief Removes the associations from the provided software image path
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600113 *
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600114 * @param[in] path - The path to remove the associations from.
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600115 */
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600116 void removeAssociations(const std::string& path);
Gunnar Millsded875d2017-08-28 16:44:52 -0500117
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600118 /** @brief Determine if the given priority is the lowest
119 *
120 * @param[in] value - The priority that needs to be checked.
121 *
122 * @return boolean corresponding to whether the given
123 * priority is lowest.
124 */
125 bool isLowestPriority(uint8_t value);
Saqib Khanb9da6632017-09-13 09:48:37 -0500126
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600127 /**
128 * @brief Updates the U-Boot variables to point to the requested
129 * versionId, so that the systems boots from this version on
130 * the next reboot.
131 *
132 * @param[in] versionId - The version to point the system to boot from.
133 */
134 void updateUbootEnvVars(const std::string& versionId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500135
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600136 /**
137 * @brief Updates the uboot variables to point to BMC version with lowest
138 * priority, so that the system boots from this version on the
139 * next boot.
140 */
141 void resetUbootEnvVars();
Saqib Khan49446ae2017-10-02 10:54:20 -0500142
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600143 /** @brief Brings the total number of active BMC versions to
144 * ACTIVE_BMC_MAX_ALLOWED -1. This function is intended to be
145 * run before activating a new BMC version. If this function
146 * needs to delete any BMC version(s) it will delete the
147 * version(s) with the highest priority, skipping the
148 * functional BMC version.
Adriana Kobylaka6963592018-09-07 14:13:29 -0500149 *
150 * @param[in] caller - The Activation object that called this function.
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600151 */
Adriana Kobylaka6963592018-09-07 14:13:29 -0500152 void freeSpace(Activation& caller);
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600153
AppaRao Puli1bb6dcb2020-03-27 20:51:57 +0530154 /** @brief Creates a updateable association to the
155 * "running" BMC software image
156 *
157 * @param[in] path - The path to create the association.
158 */
159 void createUpdateableAssociation(const std::string& path);
160
Adriana Kobylakec4eec32019-11-13 14:28:35 -0600161 /** @brief Persistent map of Version D-Bus objects and their
162 * version id */
163 std::map<std::string, std::unique_ptr<VersionClass>> versions;
164
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800165 /** @brief Vector of needed BMC images in the tarball*/
166 std::vector<std::string> imageUpdateList;
167
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600168 private:
169 /** @brief Callback function for Software.Version match.
170 * @details Creates an Activation D-Bus object.
171 *
172 * @param[in] msg - Data associated with subscribed signal
173 */
174 void createActivation(sdbusplus::message::message& msg);
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500175
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600176 /**
177 * @brief Validates the presence of SquashFS image in the image dir.
178 *
179 * @param[in] filePath - The path to the image dir.
180 * @param[out] result - ActivationStatus Enum.
181 * ready if validation was successful.
182 * invalid if validation fail.
183 * active if image is the current version.
184 *
185 */
186 ActivationStatus validateSquashFSImage(const std::string& filePath);
Saqib Khan35e83f32017-05-22 11:37:32 -0500187
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600188 /** @brief BMC factory reset - marks the read-write partition for
189 * recreation upon reboot. */
190 void reset() override;
Michael Tritz37a59042017-07-12 13:44:53 -0500191
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600192 /**
193 * @brief Enables field mode, if value=true.
194 *
195 * @param[in] value - If true, enables field mode.
196 * @param[out] result - Returns the current state of field mode.
197 *
198 */
199 bool fieldModeEnabled(bool value) override;
Michael Tritz0129d922017-08-10 19:33:46 -0500200
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600201 /** @brief Sets the BMC inventory item path under
202 * /xyz/openbmc_project/inventory/system/chassis/. */
203 void setBMCInventoryPath();
Gunnar Millsb60add12017-08-24 16:41:42 -0500204
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600205 /** @brief The path to the BMC inventory item. */
206 std::string bmcInventoryPath;
Gunnar Millsb60add12017-08-24 16:41:42 -0500207
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600208 /** @brief Restores field mode status on reboot. */
209 void restoreFieldModeStatus();
Michael Tritz0129d922017-08-10 19:33:46 -0500210
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600211 /** @brief Creates a functional association to the
212 * "running" BMC software image
213 *
214 * @param[in] path - The path to create the association to.
215 */
216 void createFunctionalAssociation(const std::string& path);
Gunnar Mills88e8a322017-09-13 11:09:28 -0500217
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600218 /** @brief Persistent sdbusplus D-Bus bus connection. */
219 sdbusplus::bus::bus& bus;
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500220
Lei YU56aaf452018-06-21 16:09:44 +0800221 /** @brief The helper of image updater. */
222 Helper helper;
223
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600224 /** @brief Persistent map of Activation D-Bus objects and their
225 * version id */
226 std::map<std::string, std::unique_ptr<Activation>> activations;
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500227
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600228 /** @brief sdbusplus signal match for Software.Version */
229 sdbusplus::bus::match_t versionMatch;
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500230
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600231 /** @brief This entry's associations */
232 AssociationList assocs = {};
Gunnar Millsded875d2017-08-28 16:44:52 -0500233
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600234 /** @brief Clears read only partition for
235 * given Activation D-Bus object.
236 *
237 * @param[in] versionId - The version id.
238 */
239 void removeReadOnlyPartition(std::string versionId);
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600240
241 /** @brief Copies U-Boot from the currently booted BMC chip to the
242 * alternate chip.
243 */
244 void mirrorUbootToAlt();
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800245
246 /** @brief Check the required image files
247 *
248 * @param[in] filePath - BMC tarball file path
249 * @param[in] imageList - Image filenames included in the BMC tarball
250 * @param[out] result - Boolean
251 * true if all image files are found in BMC tarball
252 * false if one of image files is missing
253 */
254 bool checkImage(const std::string& filePath,
255 const std::vector<std::string>& imageList);
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500256};
257
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500258} // namespace updater
259} // namespace software
260} // namespace phosphor