blob: cfe0ae55b0d8ce87b3cc930567d7259521953b9e [file] [log] [blame]
Gunnar Millsb0ce9962018-09-07 13:39:10 -05001#include "config.h"
2
3#include "item_updater.hpp"
4
5#include "images.hpp"
6#include "serialize.hpp"
7#include "version.hpp"
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +07008#include "xyz/openbmc_project/Software/ExtendedVersion/server.hpp"
Gunnar Millsb0ce9962018-09-07 13:39:10 -05009#include "xyz/openbmc_project/Software/Version/server.hpp"
10
Adriana Kobylakd5b8f752019-05-01 11:52:35 -050011#include <phosphor-logging/elog-errors.hpp>
Gunnar Millsb0ce9962018-09-07 13:39:10 -050012#include <phosphor-logging/elog.hpp>
Patrick Williamsc9bb6422021-08-27 06:18:35 -050013#include <phosphor-logging/lg2.hpp>
Adriana Kobylak58aa7502020-06-08 11:12:11 -050014#include <xyz/openbmc_project/Common/error.hpp>
15#include <xyz/openbmc_project/Software/Image/error.hpp>
16
17#include <filesystem>
18#include <fstream>
Adriana Kobylak204e1e72018-01-24 16:00:05 -060019#include <queue>
Adriana Kobylakb77551c2017-10-27 12:46:23 -050020#include <set>
Gunnar Millsec1b41c2017-05-02 12:20:36 -050021#include <string>
Gunnar Millsec1b41c2017-05-02 12:20:36 -050022
23namespace phosphor
24{
25namespace software
26{
27namespace updater
28{
29
Gunnar Mills2ce7da22017-05-04 15:37:56 -050030// When you see server:: you know we're referencing our base class
31namespace server = sdbusplus::xyz::openbmc_project::Software::server;
Michael Tritz0129d922017-08-10 19:33:46 -050032namespace control = sdbusplus::xyz::openbmc_project::Control::server;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050033
Patrick Williamsc9bb6422021-08-27 06:18:35 -050034PHOSPHOR_LOG2_USING;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050035using namespace phosphor::logging;
Adriana Kobylak43699ca2018-10-17 14:56:29 -050036using namespace sdbusplus::xyz::openbmc_project::Software::Image::Error;
Jayanth Othayoth2ab9b102018-02-21 05:27:47 -060037using namespace phosphor::software::image;
Adriana Kobylakc98d9122020-05-05 10:36:01 -050038namespace fs = std::filesystem;
Adriana Kobylakd5b8f752019-05-01 11:52:35 -050039using NotAllowed = sdbusplus::xyz::openbmc_project::Common::Error::NotAllowed;
Saqib Khan35e83f32017-05-22 11:37:32 -050040
Patrick Williamse75d10f2017-05-30 16:56:32 -050041void ItemUpdater::createActivation(sdbusplus::message::message& msg)
Gunnar Millsec1b41c2017-05-02 12:20:36 -050042{
Saqib Khan84a0e692017-06-28 17:27:01 -050043
44 using SVersion = server::Version;
45 using VersionPurpose = SVersion::VersionPurpose;
Gunnar Mills9a782242017-08-22 16:23:15 -050046 using VersionClass = phosphor::software::manager::Version;
Saqib Khan84a0e692017-06-28 17:27:01 -050047
Patrick Williamsbc1facd2020-06-03 05:58:27 -050048 sdbusplus::message::object_path objPath;
Saqib Khan84a0e692017-06-28 17:27:01 -050049 auto purpose = VersionPurpose::Unknown;
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +070050 std::string extendedVersion;
Saqib Khan705f1bf2017-06-09 23:58:38 -050051 std::string version;
Patrick Williamsbc1facd2020-06-03 05:58:27 -050052 std::map<std::string, std::map<std::string, std::variant<std::string>>>
Adriana Kobylak2285fe02018-02-27 15:36:59 -060053 interfaces;
Patrick Williamse75d10f2017-05-30 16:56:32 -050054 msg.read(objPath, interfaces);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050055 std::string path(std::move(objPath));
Saqib Khan19177d32017-06-20 08:11:49 -050056 std::string filePath;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050057
58 for (const auto& intf : interfaces)
59 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050060 if (intf.first == VERSION_IFACE)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050061 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050062 for (const auto& property : intf.second)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050063 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050064 if (property.first == "Purpose")
Gunnar Mills2ce7da22017-05-04 15:37:56 -050065 {
Saqib Khan84a0e692017-06-28 17:27:01 -050066 auto value = SVersion::convertVersionPurposeFromString(
Patrick Williamse883fb82020-05-13 11:38:55 -050067 std::get<std::string>(property.second));
Saqib Khan84a0e692017-06-28 17:27:01 -050068 if (value == VersionPurpose::BMC ||
Vijay Khemkae9f6c842020-01-14 14:32:39 -080069#ifdef HOST_BIOS_UPGRADE
70 value == VersionPurpose::Host ||
71#endif
Saqib Khan84a0e692017-06-28 17:27:01 -050072 value == VersionPurpose::System)
73 {
74 purpose = value;
75 }
Saqib Khan705f1bf2017-06-09 23:58:38 -050076 }
77 else if (property.first == "Version")
78 {
Patrick Williamse883fb82020-05-13 11:38:55 -050079 version = std::get<std::string>(property.second);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050080 }
81 }
82 }
Saqib Khan19177d32017-06-20 08:11:49 -050083 else if (intf.first == FILEPATH_IFACE)
84 {
85 for (const auto& property : intf.second)
86 {
87 if (property.first == "Path")
88 {
Patrick Williamse883fb82020-05-13 11:38:55 -050089 filePath = std::get<std::string>(property.second);
Saqib Khan19177d32017-06-20 08:11:49 -050090 }
91 }
92 }
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +070093 else if (intf.first == EXTENDED_VERSION_IFACE)
94 {
95 for (const auto& property : intf.second)
96 {
97 if (property.first == "ExtendedVersion")
98 {
99 extendedVersion = std::get<std::string>(property.second);
100 }
101 }
102 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500103 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600104 if (version.empty() || filePath.empty() ||
Saqib Khan84a0e692017-06-28 17:27:01 -0500105 purpose == VersionPurpose::Unknown)
Saqib Khan705f1bf2017-06-09 23:58:38 -0500106 {
107 return;
108 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500109
110 // Version id is the last item in the path
111 auto pos = path.rfind("/");
112 if (pos == std::string::npos)
113 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500114 error("No version id found in object path: {PATH}", "PATH", path);
Patrick Williamse75d10f2017-05-30 16:56:32 -0500115 return;
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500116 }
117
118 auto versionId = path.substr(pos + 1);
119
Patrick Williamse75d10f2017-05-30 16:56:32 -0500120 if (activations.find(versionId) == activations.end())
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500121 {
Saqib Khan35e83f32017-05-22 11:37:32 -0500122 // Determine the Activation state by processing the given image dir.
123 auto activationState = server::Activation::Activations::Invalid;
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800124 ItemUpdater::ActivationStatus result;
125 if (purpose == VersionPurpose::BMC || purpose == VersionPurpose::System)
126 result = ItemUpdater::validateSquashFSImage(filePath);
127 else
128 result = ItemUpdater::ActivationStatus::ready;
129
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500130 AssociationList associations = {};
131
Saqib Khan35e83f32017-05-22 11:37:32 -0500132 if (result == ItemUpdater::ActivationStatus::ready)
133 {
134 activationState = server::Activation::Activations::Ready;
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500135 // Create an association to the BMC inventory item
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600136 associations.emplace_back(
137 std::make_tuple(ACTIVATION_FWD_ASSOCIATION,
138 ACTIVATION_REV_ASSOCIATION, bmcInventoryPath));
Saqib Khan35e83f32017-05-22 11:37:32 -0500139 }
Gunnar Millsb60add12017-08-24 16:41:42 -0500140
Saqib Khanee13e832017-10-23 12:53:11 -0500141 auto versionPtr = std::make_unique<VersionClass>(
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +0700142 bus, path, version, purpose, extendedVersion, filePath,
Adriana Kobylak59b640b2022-01-21 19:45:22 +0000143 std::bind(&ItemUpdater::erase, this, std::placeholders::_1),
144 versionId);
Saqib Khanee13e832017-10-23 12:53:11 -0500145 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600146 std::make_unique<phosphor::software::manager::Delete>(bus, path,
147 *versionPtr);
Saqib Khanee13e832017-10-23 12:53:11 -0500148 versions.insert(std::make_pair(versionId, std::move(versionPtr)));
Adriana Kobylak88ba1f92022-03-09 21:14:15 +0000149
150 activations.insert(std::make_pair(
151 versionId,
152 std::make_unique<Activation>(bus, path, *this, versionId,
153 activationState, associations)));
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500154 }
Patrick Williamse75d10f2017-05-30 16:56:32 -0500155 return;
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500156}
157
Saqib Khanba239882017-05-26 08:41:54 -0500158void ItemUpdater::processBMCImage()
159{
Gunnar Mills88e8a322017-09-13 11:09:28 -0500160 using VersionClass = phosphor::software::manager::Version;
Lei YU269bff32018-08-21 15:21:40 +0800161
162 // Check MEDIA_DIR and create if it does not exist
163 try
164 {
165 if (!fs::is_directory(MEDIA_DIR))
166 {
167 fs::create_directory(MEDIA_DIR);
168 }
169 }
170 catch (const fs::filesystem_error& e)
171 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500172 error("Failed to prepare dir: {ERROR}", "ERROR", e);
Lei YU269bff32018-08-21 15:21:40 +0800173 return;
174 }
175
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000176 // Functional images are mounted as rofs-<location>-functional
177 constexpr auto functionalSuffix = "-functional";
Lei YUd474d9c2021-12-10 16:21:21 +0800178 bool functionalFound = false;
Gunnar Mills88e8a322017-09-13 11:09:28 -0500179
Saqib Khan1eef62d2017-08-10 15:29:34 -0500180 // Read os-release from folders under /media/ to get
181 // BMC Software Versions.
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500182 for (const auto& iter : fs::directory_iterator(MEDIA_DIR))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500183 {
184 auto activationState = server::Activation::Activations::Active;
Saqib Khan6fab70d2017-09-07 00:13:50 -0500185 static const auto BMC_RO_PREFIX_LEN = strlen(BMC_ROFS_PREFIX);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500186
187 // Check if the BMC_RO_PREFIXis the prefix of the iter.path
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600188 if (0 ==
189 iter.path().native().compare(0, BMC_RO_PREFIX_LEN, BMC_ROFS_PREFIX))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500190 {
Adriana Kobylak716cd782020-06-08 13:27:43 -0500191 // Get the version to calculate the id
Adriana Kobylak24a8d832020-06-10 08:29:36 -0500192 fs::path releaseFile(OS_RELEASE_FILE);
193 auto osRelease = iter.path() / releaseFile.relative_path();
Saqib Khan1eef62d2017-08-10 15:29:34 -0500194 if (!fs::is_regular_file(osRelease))
195 {
Lei YUe56bf872022-02-22 18:40:37 +0800196#ifdef BMC_STATIC_DUAL_IMAGE
197 // For dual image, it is possible that the secondary image is
198 // empty or contains invalid data, ignore such case.
199 info("Unable to find osRelease: {PATH}", "PATH", osRelease);
200#else
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500201 error("Failed to read osRelease: {PATH}", "PATH", osRelease);
Adriana Kobylak716cd782020-06-08 13:27:43 -0500202
203 // Try to get the version id from the mount directory name and
204 // call to delete it as this version may be corrupted. Dynamic
205 // volumes created by the UBI layout for example have the id in
206 // the mount directory name. The worst that can happen is that
207 // erase() is called with an non-existent id and returns.
208 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
Saqib Khan021c3652017-09-26 12:11:02 -0500209 ItemUpdater::erase(id);
Lei YUe56bf872022-02-22 18:40:37 +0800210#endif
Adriana Kobylak716cd782020-06-08 13:27:43 -0500211
Saqib Khan021c3652017-09-26 12:11:02 -0500212 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500213 }
Gunnar Mills88e8a322017-09-13 11:09:28 -0500214 auto version = VersionClass::getBMCVersion(osRelease);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500215 if (version.empty())
216 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500217 error("Failed to read version from osRelease: {PATH}", "PATH",
218 osRelease);
Adriana Kobylak716cd782020-06-08 13:27:43 -0500219
220 // Try to delete the version, same as above if the
221 // OS_RELEASE_FILE does not exist.
222 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
223 ItemUpdater::erase(id);
224
225 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500226 }
Saqib Khan021c3652017-09-26 12:11:02 -0500227
Adriana Kobylak59b640b2022-01-21 19:45:22 +0000228 // The flash location is part of the mount name: rofs-<location>
229 auto flashId = iter.path().native().substr(BMC_RO_PREFIX_LEN);
230
231 auto id = VersionClass::getId(version + flashId);
Adriana Kobylak716cd782020-06-08 13:27:43 -0500232
Adriana Kobylakf383d272020-06-16 15:17:22 -0500233 // Check if the id has already been added. This can happen if the
234 // BMC partitions / devices were manually flashed with the same
235 // image.
236 if (versions.find(id) != versions.end())
237 {
238 continue;
239 }
240
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000241 auto functional = false;
242 if (iter.path().native().find(functionalSuffix) !=
243 std::string::npos)
244 {
245 // Set functional to true and remove the functional suffix
246 functional = true;
247 flashId.erase(flashId.length() - strlen(functionalSuffix));
Lei YUd474d9c2021-12-10 16:21:21 +0800248 functionalFound = true;
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000249 }
Adriana Kobylak780220f2022-01-18 20:01:53 +0000250
Saqib Khan1eef62d2017-08-10 15:29:34 -0500251 auto purpose = server::Version::VersionPurpose::BMC;
Adriana Kobylak780220f2022-01-18 20:01:53 +0000252 restorePurpose(flashId, purpose);
Adriana Kobylakec4eec32019-11-13 14:28:35 -0600253
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +0700254 // Read os-release from /etc/ to get the BMC extended version
255 std::string extendedVersion =
256 VersionClass::getBMCExtendedVersion(osRelease);
257
Saqib Khan1eef62d2017-08-10 15:29:34 -0500258 auto path = fs::path(SOFTWARE_OBJPATH) / id;
259
Lei YU269bff32018-08-21 15:21:40 +0800260 // Create functional association if this is the functional
261 // version
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000262 if (functional)
Gunnar Mills88e8a322017-09-13 11:09:28 -0500263 {
264 createFunctionalAssociation(path);
265 }
266
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500267 AssociationList associations = {};
268
269 if (activationState == server::Activation::Activations::Active)
270 {
271 // Create an association to the BMC inventory item
272 associations.emplace_back(std::make_tuple(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600273 ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
274 bmcInventoryPath));
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500275
276 // Create an active association since this image is active
277 createActiveAssociation(path);
278 }
279
AppaRao Pulibbebec72020-01-28 23:57:41 +0530280 // All updateable firmware components must expose the updateable
281 // association.
282 createUpdateableAssociation(path);
283
Adriana Kobylakee590c72017-09-26 15:16:06 -0500284 // Create Version instance for this version.
285 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylaka84f06d2022-01-18 15:41:57 +0000286 bus, path, version, purpose, extendedVersion, flashId,
Adriana Kobylak59b640b2022-01-21 19:45:22 +0000287 std::bind(&ItemUpdater::erase, this, std::placeholders::_1),
288 id);
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000289 if (functional)
290 {
291 versionPtr->setFunctional(true);
292 }
293 else
Michael Tritz4254bec2017-10-03 17:18:22 -0500294 {
Saqib Khanee13e832017-10-23 12:53:11 -0500295 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600296 std::make_unique<phosphor::software::manager::Delete>(
297 bus, path, *versionPtr);
Michael Tritz4254bec2017-10-03 17:18:22 -0500298 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600299 versions.insert(std::make_pair(id, std::move(versionPtr)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500300
Saqib Khanee13e832017-10-23 12:53:11 -0500301 // Create Activation instance for this version.
302 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600303 id, std::make_unique<Activation>(
304 bus, path, *this, id, activationState, associations)));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500305
Lei YUbdf2d6c2021-12-15 14:05:01 +0800306#ifdef BMC_STATIC_DUAL_IMAGE
307 uint8_t priority;
308 if ((functional && (runningImageSlot == 0)) ||
309 (!functional && (runningImageSlot == 1)))
310 {
311 priority = 0;
312 }
313 else
314 {
315 priority = 1;
316 }
317 activations.find(id)->second->redundancyPriority =
318 std::make_unique<RedundancyPriority>(
319 bus, path, *(activations.find(id)->second), priority,
320 false);
321#else
Lei YU269bff32018-08-21 15:21:40 +0800322 // If Active, create RedundancyPriority instance for this
323 // version.
Saqib Khan1eef62d2017-08-10 15:29:34 -0500324 if (activationState == server::Activation::Activations::Active)
325 {
326 uint8_t priority = std::numeric_limits<uint8_t>::max();
Adriana Kobylak780220f2022-01-18 20:01:53 +0000327 if (!restorePriority(flashId, priority))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500328 {
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000329 if (functional)
Adriana Kobylakee590c72017-09-26 15:16:06 -0500330 {
331 priority = 0;
332 }
333 else
334 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500335 error(
336 "Unable to restore priority from file for {VERSIONID}",
337 "VERSIONID", id);
Adriana Kobylakee590c72017-09-26 15:16:06 -0500338 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500339 }
340 activations.find(id)->second->redundancyPriority =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600341 std::make_unique<RedundancyPriority>(
342 bus, path, *(activations.find(id)->second), priority,
343 false);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500344 }
Lei YUbdf2d6c2021-12-15 14:05:01 +0800345#endif
Saqib Khan1eef62d2017-08-10 15:29:34 -0500346 }
347 }
Saqib Khandcbfa042017-09-18 13:08:39 -0500348
Lei YUd474d9c2021-12-10 16:21:21 +0800349 if (!functionalFound)
Saqib Khandcbfa042017-09-18 13:08:39 -0500350 {
Lei YUd474d9c2021-12-10 16:21:21 +0800351 // If there is no functional version found, read the /etc/os-release and
352 // create rofs-<versionId>-functional under MEDIA_DIR, then call again
353 // processBMCImage() to create the D-Bus interface for it.
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500354 auto version = VersionClass::getBMCVersion(OS_RELEASE_FILE);
Adriana Kobylak59b640b2022-01-21 19:45:22 +0000355 auto id = phosphor::software::manager::Version::getId(version +
356 functionalSuffix);
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000357 auto versionFileDir = BMC_ROFS_PREFIX + id + functionalSuffix + "/etc/";
Saqib Khandcbfa042017-09-18 13:08:39 -0500358 try
359 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500360 if (!fs::is_directory(versionFileDir))
Saqib Khandcbfa042017-09-18 13:08:39 -0500361 {
362 fs::create_directories(versionFileDir);
363 }
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000364 auto versionFilePath =
365 BMC_ROFS_PREFIX + id + functionalSuffix + OS_RELEASE_FILE;
Saqib Khandcbfa042017-09-18 13:08:39 -0500366 fs::create_directory_symlink(OS_RELEASE_FILE, versionFilePath);
367 ItemUpdater::processBMCImage();
368 }
369 catch (const std::exception& e)
370 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500371 error("Exception during processing: {ERROR}", "ERROR", e);
Saqib Khandcbfa042017-09-18 13:08:39 -0500372 }
373 }
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600374
375 mirrorUbootToAlt();
Saqib Khanba239882017-05-26 08:41:54 -0500376 return;
377}
378
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500379void ItemUpdater::erase(std::string entryId)
380{
Eddie James6d873712017-09-01 11:29:07 -0500381 // Find entry in versions map
382 auto it = versions.find(entryId);
383 if (it != versions.end())
384 {
Lei YU0f88b5a2018-08-21 15:28:53 +0800385 if (it->second->isFunctional() && ACTIVE_BMC_MAX_ALLOWED > 1)
Eddie James6d873712017-09-01 11:29:07 -0500386 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500387 error(
388 "Version ({VERSIONID}) is currently running on the BMC; unable to remove.",
389 "VERSIONID", entryId);
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500390 return;
Eddie James6d873712017-09-01 11:29:07 -0500391 }
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500392 }
Eddie James6d873712017-09-01 11:29:07 -0500393
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500394 // First call resetUbootEnvVars() so that the BMC points to a valid image to
395 // boot from. If resetUbootEnvVars() is called after the image is actually
396 // deleted from the BMC flash, there'd be a time window where the BMC would
397 // be pointing to a non-existent image to boot from.
398 // Need to remove the entries from the activations map before that call so
399 // that resetUbootEnvVars() doesn't use the version to be deleted.
400 auto iteratorActivations = activations.find(entryId);
401 if (iteratorActivations == activations.end())
402 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500403 error(
404 "Failed to find version ({VERSIONID}) in item updater activations map; unable to remove.",
405 "VERSIONID", entryId);
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500406 }
407 else
408 {
409 removeAssociations(iteratorActivations->second->path);
Zami Seckae06d762021-08-13 20:11:15 -0500410 iteratorActivations->second->deleteImageManagerObject();
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500411 this->activations.erase(entryId);
412 }
413 ItemUpdater::resetUbootEnvVars();
414
415 if (it != versions.end())
416 {
Adriana Kobylak780220f2022-01-18 20:01:53 +0000417 auto flashId = it->second->path();
418
Adriana Kobylak25773a72022-01-21 15:24:48 +0000419 // Delete version data if it has been installed on flash (path is not
420 // the upload directory)
421 if (flashId.find(IMG_UPLOAD_DIR) == std::string::npos)
422 {
423 removeReadOnlyPartition(entryId);
424 removePersistDataDirectory(flashId);
425 helper.clearEntry(flashId);
426 }
Saqib Khanee13e832017-10-23 12:53:11 -0500427
428 // Removing entry in versions map
429 this->versions.erase(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500430 }
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500431
Saqib Khanee13e832017-10-23 12:53:11 -0500432 return;
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500433}
434
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500435void ItemUpdater::deleteAll()
436{
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600437 std::vector<std::string> deletableVersions;
438
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500439 for (const auto& versionIt : versions)
440 {
441 if (!versionIt.second->isFunctional())
442 {
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600443 deletableVersions.push_back(versionIt.first);
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500444 }
445 }
446
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600447 for (const auto& deletableIt : deletableVersions)
448 {
449 ItemUpdater::erase(deletableIt);
450 }
451
Lei YU56aaf452018-06-21 16:09:44 +0800452 helper.cleanup();
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500453}
454
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600455ItemUpdater::ActivationStatus
456 ItemUpdater::validateSquashFSImage(const std::string& filePath)
Saqib Khan35e83f32017-05-22 11:37:32 -0500457{
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800458 bool valid = true;
Saqib Khan35e83f32017-05-22 11:37:32 -0500459
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800460 // Record the images which are being updated
461 // First check for the fullimage, then check for images with partitions
462 imageUpdateList.push_back(bmcFullImages);
463 valid = checkImage(filePath, imageUpdateList);
464 if (!valid)
Saqib Khan35e83f32017-05-22 11:37:32 -0500465 {
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800466 imageUpdateList.clear();
467 imageUpdateList.assign(bmcImages.begin(), bmcImages.end());
468 valid = checkImage(filePath, imageUpdateList);
469 if (!valid)
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500470 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500471 error("Failed to find the needed BMC images.");
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800472 return ItemUpdater::ActivationStatus::invalid;
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500473 }
Saqib Khan35e83f32017-05-22 11:37:32 -0500474 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500475
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500476 return ItemUpdater::ActivationStatus::ready;
Saqib Khan35e83f32017-05-22 11:37:32 -0500477}
478
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500479void ItemUpdater::savePriority(const std::string& versionId, uint8_t value)
480{
Adriana Kobylak780220f2022-01-18 20:01:53 +0000481 auto flashId = versions.find(versionId)->second->path();
482 storePriority(flashId, value);
Adriana Kobylak25773a72022-01-21 15:24:48 +0000483 helper.setEntry(flashId, value);
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500484}
485
Saqib Khanb9da6632017-09-13 09:48:37 -0500486void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500487{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500488 std::map<std::string, uint8_t> priorityMap;
489
490 // Insert the requested version and priority, it may not exist yet.
491 priorityMap.insert(std::make_pair(versionId, value));
492
Saqib Khan4c1aec02017-07-06 11:46:13 -0500493 for (const auto& intf : activations)
494 {
Gunnar Mills9a782242017-08-22 16:23:15 -0500495 if (intf.second->redundancyPriority)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500496 {
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500497 priorityMap.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600498 intf.first, intf.second->redundancyPriority.get()->priority()));
Saqib Khan4c1aec02017-07-06 11:46:13 -0500499 }
500 }
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500501
502 // Lambda function to compare 2 priority values, use <= to allow duplicates
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600503 typedef std::function<bool(std::pair<std::string, uint8_t>,
504 std::pair<std::string, uint8_t>)>
505 cmpPriority;
506 cmpPriority cmpPriorityFunc =
507 [](std::pair<std::string, uint8_t> priority1,
508 std::pair<std::string, uint8_t> priority2) {
509 return priority1.second <= priority2.second;
510 };
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500511
512 // Sort versions by ascending priority
513 std::set<std::pair<std::string, uint8_t>, cmpPriority> prioritySet(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600514 priorityMap.begin(), priorityMap.end(), cmpPriorityFunc);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500515
516 auto freePriorityValue = value;
517 for (auto& element : prioritySet)
518 {
519 if (element.first == versionId)
520 {
521 continue;
522 }
523 if (element.second == freePriorityValue)
524 {
525 ++freePriorityValue;
526 auto it = activations.find(element.first);
527 it->second->redundancyPriority.get()->sdbusPriority(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600528 freePriorityValue);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500529 }
530 }
531
532 auto lowestVersion = prioritySet.begin()->first;
533 if (value == prioritySet.begin()->second)
534 {
535 lowestVersion = versionId;
536 }
537 updateUbootEnvVars(lowestVersion);
Saqib Khan4c1aec02017-07-06 11:46:13 -0500538}
539
Michael Tritz37a59042017-07-12 13:44:53 -0500540void ItemUpdater::reset()
541{
Lei YU56aaf452018-06-21 16:09:44 +0800542 helper.factoryReset();
Michael Tritz37a59042017-07-12 13:44:53 -0500543
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500544 info("BMC factory reset will take effect upon reboot.");
Michael Tritz37a59042017-07-12 13:44:53 -0500545}
546
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500547void ItemUpdater::removeReadOnlyPartition(std::string versionId)
548{
Adriana Kobylak25773a72022-01-21 15:24:48 +0000549 auto flashId = versions.find(versionId)->second->path();
550 helper.removeVersion(flashId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500551}
552
Michael Tritz0129d922017-08-10 19:33:46 -0500553bool ItemUpdater::fieldModeEnabled(bool value)
554{
555 // enabling field mode is intended to be one way: false -> true
556 if (value && !control::FieldMode::fieldModeEnabled())
557 {
558 control::FieldMode::fieldModeEnabled(value);
559
Adriana Kobylak22848ec2019-10-28 10:08:39 -0500560 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
561 SYSTEMD_INTERFACE, "StartUnit");
562 method.append("obmc-flash-bmc-setenv@fieldmode\\x3dtrue.service",
563 "replace");
564 bus.call_noreply(method);
565
566 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
567 SYSTEMD_INTERFACE, "StopUnit");
568 method.append("usr-local.mount", "replace");
569 bus.call_noreply(method);
570
571 std::vector<std::string> usrLocal = {"usr-local.mount"};
572
573 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
574 SYSTEMD_INTERFACE, "MaskUnitFiles");
575 method.append(usrLocal, false, true);
576 bus.call_noreply(method);
Michael Tritz0129d922017-08-10 19:33:46 -0500577 }
Adriana Kobylakd5b8f752019-05-01 11:52:35 -0500578 else if (!value && control::FieldMode::fieldModeEnabled())
579 {
580 elog<NotAllowed>(xyz::openbmc_project::Common::NotAllowed::REASON(
581 "FieldMode is not allowed to be cleared"));
582 }
Michael Tritz0129d922017-08-10 19:33:46 -0500583
584 return control::FieldMode::fieldModeEnabled();
585}
586
587void ItemUpdater::restoreFieldModeStatus()
588{
Michael Tritzff0b4212017-10-24 17:38:09 -0500589 std::ifstream input("/dev/mtd/u-boot-env");
Michael Tritz0129d922017-08-10 19:33:46 -0500590 std::string envVar;
591 std::getline(input, envVar);
592
Gunnar Mills9a782242017-08-22 16:23:15 -0500593 if (envVar.find("fieldmode=true") != std::string::npos)
Michael Tritz0129d922017-08-10 19:33:46 -0500594 {
595 ItemUpdater::fieldModeEnabled(true);
596 }
597}
598
Gunnar Millsb60add12017-08-24 16:41:42 -0500599void ItemUpdater::setBMCInventoryPath()
600{
Gunnar Millsb60add12017-08-24 16:41:42 -0500601 auto depth = 0;
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600602 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
603 MAPPER_INTERFACE, "GetSubTreePaths");
Gunnar Millsb60add12017-08-24 16:41:42 -0500604
Adriana Kobylak1254c622017-12-07 12:24:56 -0600605 mapperCall.append(INVENTORY_PATH);
Gunnar Millsb60add12017-08-24 16:41:42 -0500606 mapperCall.append(depth);
Adriana Kobylak1254c622017-12-07 12:24:56 -0600607 std::vector<std::string> filter = {BMC_INVENTORY_INTERFACE};
Gunnar Millsb60add12017-08-24 16:41:42 -0500608 mapperCall.append(filter);
609
Ed Tanous87c78172018-08-10 12:51:53 -0700610 try
611 {
612 auto response = bus.call(mapperCall);
613
614 using ObjectPaths = std::vector<std::string>;
615 ObjectPaths result;
616 response.read(result);
617
618 if (!result.empty())
619 {
620 bmcInventoryPath = result.front();
621 }
622 }
Patrick Williams4ce901c2021-09-02 09:34:45 -0500623 catch (const sdbusplus::exception::exception& e)
Gunnar Millsb60add12017-08-24 16:41:42 -0500624 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500625 error("Error in mapper GetSubTreePath: {ERROR}", "ERROR", e);
Gunnar Millsb60add12017-08-24 16:41:42 -0500626 return;
627 }
628
Adriana Kobylak1254c622017-12-07 12:24:56 -0600629 return;
Gunnar Millsb60add12017-08-24 16:41:42 -0500630}
631
Gunnar Millsf10b2322017-09-21 15:31:55 -0500632void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500633{
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600634 assocs.emplace_back(
635 std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path));
Gunnar Millsded875d2017-08-28 16:44:52 -0500636 associations(assocs);
637}
638
Gunnar Mills88e8a322017-09-13 11:09:28 -0500639void ItemUpdater::createFunctionalAssociation(const std::string& path)
640{
641 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600642 FUNCTIONAL_REV_ASSOCIATION, path));
Gunnar Mills88e8a322017-09-13 11:09:28 -0500643 associations(assocs);
644}
645
AppaRao Pulibbebec72020-01-28 23:57:41 +0530646void ItemUpdater::createUpdateableAssociation(const std::string& path)
647{
648 assocs.emplace_back(std::make_tuple(UPDATEABLE_FWD_ASSOCIATION,
649 UPDATEABLE_REV_ASSOCIATION, path));
650 associations(assocs);
651}
652
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600653void ItemUpdater::removeAssociations(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500654{
655 for (auto iter = assocs.begin(); iter != assocs.end();)
656 {
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600657 if ((std::get<2>(*iter)).compare(path) == 0)
Gunnar Millsded875d2017-08-28 16:44:52 -0500658 {
659 iter = assocs.erase(iter);
660 associations(assocs);
661 }
662 else
663 {
664 ++iter;
665 }
666 }
667}
668
Saqib Khanb9da6632017-09-13 09:48:37 -0500669bool ItemUpdater::isLowestPriority(uint8_t value)
670{
671 for (const auto& intf : activations)
672 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500673 if (intf.second->redundancyPriority)
Saqib Khanb9da6632017-09-13 09:48:37 -0500674 {
675 if (intf.second->redundancyPriority.get()->priority() < value)
676 {
677 return false;
678 }
679 }
680 }
681 return true;
682}
683
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500684void ItemUpdater::updateUbootEnvVars(const std::string& versionId)
685{
Lei YU9c76a0a2022-03-14 11:37:15 +0800686 auto it = versions.find(versionId);
687 if (it == versions.end())
688 {
689 return;
690 }
691 auto flashId = it->second->path();
Adriana Kobylak25773a72022-01-21 15:24:48 +0000692 helper.updateUbootVersionId(flashId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500693}
694
Saqib Khan49446ae2017-10-02 10:54:20 -0500695void ItemUpdater::resetUbootEnvVars()
696{
697 decltype(activations.begin()->second->redundancyPriority.get()->priority())
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600698 lowestPriority = std::numeric_limits<uint8_t>::max();
Saqib Khan49446ae2017-10-02 10:54:20 -0500699 decltype(activations.begin()->second->versionId) lowestPriorityVersion;
700 for (const auto& intf : activations)
701 {
702 if (!intf.second->redundancyPriority.get())
703 {
704 // Skip this version if the redundancyPriority is not initialized.
705 continue;
706 }
707
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600708 if (intf.second->redundancyPriority.get()->priority() <= lowestPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500709 {
710 lowestPriority = intf.second->redundancyPriority.get()->priority();
711 lowestPriorityVersion = intf.second->versionId;
712 }
713 }
714
Saqib Khanf0382c32017-10-24 13:36:22 -0500715 // Update the U-boot environment variable to point to the lowest priority
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500716 updateUbootEnvVars(lowestPriorityVersion);
Saqib Khan49446ae2017-10-02 10:54:20 -0500717}
718
Lei YUd8c9eea2021-12-16 16:08:30 +0800719void ItemUpdater::freeSpace([[maybe_unused]] const Activation& caller)
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600720{
Lei YUd8c9eea2021-12-16 16:08:30 +0800721#ifdef BMC_STATIC_DUAL_IMAGE
722 // For the golden image case, always remove the version on the primary side
723 std::string versionIDtoErase;
724 for (const auto& iter : activations)
725 {
726 if (iter.second->redundancyPriority &&
727 iter.second->redundancyPriority.get()->priority() == 0)
728 {
729 versionIDtoErase = iter.second->versionId;
730 break;
731 }
732 }
733 if (!versionIDtoErase.empty())
734 {
735 erase(versionIDtoErase);
736 }
737 else
738 {
739 warning("Failed to find version to erase");
740 }
741#else
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600742 // Versions with the highest priority in front
743 std::priority_queue<std::pair<int, std::string>,
744 std::vector<std::pair<int, std::string>>,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600745 std::less<std::pair<int, std::string>>>
746 versionsPQ;
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600747
748 std::size_t count = 0;
749 for (const auto& iter : activations)
750 {
751 if ((iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600752 server::Activation::Activations::Active) ||
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600753 (iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600754 server::Activation::Activations::Failed))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600755 {
756 count++;
757 // Don't put the functional version on the queue since we can't
758 // remove the "running" BMC version.
Lei YU0f88b5a2018-08-21 15:28:53 +0800759 // If ACTIVE_BMC_MAX_ALLOWED <= 1, there is only one active BMC,
760 // so remove functional version as well.
Adriana Kobylaka6963592018-09-07 14:13:29 -0500761 // Don't delete the the Activation object that called this function.
762 if ((versions.find(iter.second->versionId)
763 ->second->isFunctional() &&
764 ACTIVE_BMC_MAX_ALLOWED > 1) ||
765 (iter.second->versionId == caller.versionId))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600766 {
767 continue;
768 }
Adriana Kobylaka6963592018-09-07 14:13:29 -0500769
770 // Failed activations don't have priority, assign them a large value
771 // for sorting purposes.
772 auto priority = 999;
773 if (iter.second.get()->activation() ==
Lei YUcfb4b202021-05-06 17:47:28 +0800774 server::Activation::Activations::Active &&
775 iter.second->redundancyPriority)
Adriana Kobylaka6963592018-09-07 14:13:29 -0500776 {
777 priority = iter.second->redundancyPriority.get()->priority();
778 }
779
780 versionsPQ.push(std::make_pair(priority, iter.second->versionId));
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600781 }
782 }
783
784 // If the number of BMC versions is over ACTIVE_BMC_MAX_ALLOWED -1,
785 // remove the highest priority one(s).
786 while ((count >= ACTIVE_BMC_MAX_ALLOWED) && (!versionsPQ.empty()))
787 {
788 erase(versionsPQ.top().second);
789 versionsPQ.pop();
790 count--;
791 }
Lei YUd8c9eea2021-12-16 16:08:30 +0800792#endif
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600793}
794
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600795void ItemUpdater::mirrorUbootToAlt()
796{
Lei YU56aaf452018-06-21 16:09:44 +0800797 helper.mirrorAlt();
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600798}
799
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800800bool ItemUpdater::checkImage(const std::string& filePath,
801 const std::vector<std::string>& imageList)
802{
803 bool valid = true;
804
805 for (auto& bmcImage : imageList)
806 {
807 fs::path file(filePath);
808 file /= bmcImage;
809 std::ifstream efile(file.c_str());
810 if (efile.good() != 1)
811 {
812 valid = false;
813 break;
814 }
815 }
816
817 return valid;
818}
819
Lei YU6e9fb1d2021-02-19 18:01:40 +0800820#ifdef HOST_BIOS_UPGRADE
821void ItemUpdater::createBIOSObject()
822{
823 std::string path = BIOS_OBJPATH;
824 // Get version id from last item in the path
825 auto pos = path.rfind("/");
826 if (pos == std::string::npos)
827 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500828 error("No version id found in object path {PATH}", "PATH", path);
Lei YU6e9fb1d2021-02-19 18:01:40 +0800829 return;
830 }
831
832 createActiveAssociation(path);
833 createFunctionalAssociation(path);
834
835 auto versionId = path.substr(pos + 1);
836 auto version = "null";
837 AssociationList assocs = {};
838 biosActivation = std::make_unique<Activation>(
839 bus, path, *this, versionId, server::Activation::Activations::Active,
840 assocs);
841 auto dummyErase = [](std::string /*entryId*/) {
842 // Do nothing;
843 };
844 biosVersion = std::make_unique<VersionClass>(
845 bus, path, version, VersionPurpose::Host, "", "",
Adriana Kobylak59b640b2022-01-21 19:45:22 +0000846 std::bind(dummyErase, std::placeholders::_1), "");
Lei YU6e9fb1d2021-02-19 18:01:40 +0800847 biosVersion->deleteObject =
848 std::make_unique<phosphor::software::manager::Delete>(bus, path,
849 *biosVersion);
850}
851#endif
852
Lei YU531fbc22021-12-10 20:03:18 +0800853void ItemUpdater::getRunningSlot()
854{
855 // Check /run/media/slot to get the slot number
856 constexpr auto slotFile = "/run/media/slot";
857 std::fstream f(slotFile, std::ios_base::in);
858 f >> runningImageSlot;
859}
860
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500861} // namespace updater
862} // namespace software
863} // namespace phosphor