blob: 247e1d3f2a4c6f5f85b4f54c655fa27352a27c48 [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>
George Liu44b9fef2023-02-07 14:31:32 +080022#include <system_error>
Gunnar Millsec1b41c2017-05-02 12:20:36 -050023
24namespace phosphor
25{
26namespace software
27{
28namespace updater
29{
30
Gunnar Mills2ce7da22017-05-04 15:37:56 -050031// When you see server:: you know we're referencing our base class
Patrick Williams1e9a5f12023-08-23 16:53:06 -050032namespace server = sdbusplus::server::xyz::openbmc_project::software;
33namespace control = sdbusplus::server::xyz::openbmc_project::control;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050034
Patrick Williamsc9bb6422021-08-27 06:18:35 -050035PHOSPHOR_LOG2_USING;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050036using namespace phosphor::logging;
Adriana Kobylakce82de52024-01-16 13:56:38 -060037using namespace sdbusplus::error::xyz::openbmc_project::software::image;
Jayanth Othayoth2ab9b102018-02-21 05:27:47 -060038using namespace phosphor::software::image;
Adriana Kobylakc98d9122020-05-05 10:36:01 -050039namespace fs = std::filesystem;
Adriana Kobylakce82de52024-01-16 13:56:38 -060040using NotAllowed = sdbusplus::error::xyz::openbmc_project::common::NotAllowed;
Saqib Khan35e83f32017-05-22 11:37:32 -050041
Patrick Williamsbf2bb2b2022-07-22 19:26:52 -050042void ItemUpdater::createActivation(sdbusplus::message_t& msg)
Gunnar Millsec1b41c2017-05-02 12:20:36 -050043{
Saqib Khan84a0e692017-06-28 17:27:01 -050044 using SVersion = server::Version;
45 using VersionPurpose = SVersion::VersionPurpose;
Saqib Khan84a0e692017-06-28 17:27:01 -050046
Patrick Williamsbc1facd2020-06-03 05:58:27 -050047 sdbusplus::message::object_path objPath;
Saqib Khan84a0e692017-06-28 17:27:01 -050048 auto purpose = VersionPurpose::Unknown;
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +070049 std::string extendedVersion;
Saqib Khan705f1bf2017-06-09 23:58:38 -050050 std::string version;
Justin Ledford054bb0b2022-03-15 15:46:58 -070051 std::map<std::string,
52 std::map<std::string,
53 std::variant<std::string, std::vector<std::string>>>>
Adriana Kobylak2285fe02018-02-27 15:36:59 -060054 interfaces;
Patrick Williamse75d10f2017-05-30 16:56:32 -050055 msg.read(objPath, interfaces);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050056 std::string path(std::move(objPath));
Saqib Khan19177d32017-06-20 08:11:49 -050057 std::string filePath;
Justin Ledford054bb0b2022-03-15 15:46:58 -070058 std::vector<std::string> compatibleNames;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050059
60 for (const auto& intf : interfaces)
61 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050062 if (intf.first == VERSION_IFACE)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050063 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050064 for (const auto& property : intf.second)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050065 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050066 if (property.first == "Purpose")
Gunnar Mills2ce7da22017-05-04 15:37:56 -050067 {
Saqib Khan84a0e692017-06-28 17:27:01 -050068 auto value = SVersion::convertVersionPurposeFromString(
Patrick Williamse883fb82020-05-13 11:38:55 -050069 std::get<std::string>(property.second));
Saqib Khan84a0e692017-06-28 17:27:01 -050070 if (value == VersionPurpose::BMC ||
Vijay Khemkae9f6c842020-01-14 14:32:39 -080071#ifdef HOST_BIOS_UPGRADE
72 value == VersionPurpose::Host ||
73#endif
Saqib Khan84a0e692017-06-28 17:27:01 -050074 value == VersionPurpose::System)
75 {
76 purpose = value;
77 }
Saqib Khan705f1bf2017-06-09 23:58:38 -050078 }
79 else if (property.first == "Version")
80 {
Patrick Williamse883fb82020-05-13 11:38:55 -050081 version = std::get<std::string>(property.second);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050082 }
83 }
84 }
Saqib Khan19177d32017-06-20 08:11:49 -050085 else if (intf.first == FILEPATH_IFACE)
86 {
87 for (const auto& property : intf.second)
88 {
89 if (property.first == "Path")
90 {
Patrick Williamse883fb82020-05-13 11:38:55 -050091 filePath = std::get<std::string>(property.second);
Saqib Khan19177d32017-06-20 08:11:49 -050092 }
93 }
94 }
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +070095 else if (intf.first == EXTENDED_VERSION_IFACE)
96 {
97 for (const auto& property : intf.second)
98 {
99 if (property.first == "ExtendedVersion")
100 {
101 extendedVersion = std::get<std::string>(property.second);
102 }
103 }
104 }
Justin Ledford054bb0b2022-03-15 15:46:58 -0700105 else if (intf.first == COMPATIBLE_IFACE)
106 {
107 for (const auto& property : intf.second)
108 {
109 if (property.first == "Names")
110 {
111 compatibleNames =
112 std::get<std::vector<std::string>>(property.second);
113 }
114 }
115 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500116 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600117 if (version.empty() || filePath.empty() ||
Saqib Khan84a0e692017-06-28 17:27:01 -0500118 purpose == VersionPurpose::Unknown)
Saqib Khan705f1bf2017-06-09 23:58:38 -0500119 {
120 return;
121 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500122
123 // Version id is the last item in the path
Pavithra Barithaya27d49382024-06-24 01:52:42 -0500124 auto pos = path.rfind('/');
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500125 if (pos == std::string::npos)
126 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500127 error("No version id found in object path: {PATH}", "PATH", path);
Patrick Williamse75d10f2017-05-30 16:56:32 -0500128 return;
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500129 }
130
131 auto versionId = path.substr(pos + 1);
132
Patrick Williamse75d10f2017-05-30 16:56:32 -0500133 if (activations.find(versionId) == activations.end())
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500134 {
Jagpal Singh Gillbb024eb2024-04-07 23:34:00 -0700135 verifyAndCreateObjects(versionId, path, version, purpose,
136 extendedVersion, filePath, compatibleNames);
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500137 }
Patrick Williamse75d10f2017-05-30 16:56:32 -0500138 return;
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500139}
140
Jagpal Singh Gillbb024eb2024-04-07 23:34:00 -0700141void ItemUpdater::createActivationWithApplyTime(
142 std::string& id, std::string& path,
143 ApplyTimeIntf::RequestedApplyTimes applyTime)
144{
145 info("Creating Activation object for id: {ID}", "ID", id);
146 AssociationList associations = {};
147 // Create an association to the BMC inventory item
148 associations.emplace_back(
149 std::make_tuple(ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
150 bmcInventoryPath));
151 activations.insert(std::make_pair(
152 id, std::make_unique<Activation>(
153 bus, path, *this, id, server::Activation::Activations::NotReady,
154 associations)));
155 activations[id]->applyTime = applyTime;
156}
157
158ActivationIntf::Activations ItemUpdater::verifyAndCreateObjects(
159 std::string& id, std::string& path, std::string& version,
160 VersionClass::VersionPurpose purpose, std::string& extendedVersion,
161 std ::string& filePath, std::vector<std::string>& compatibleNames)
162{
163 // Determine the Activation state by processing the given image dir.
164 auto activationState = server::Activation::Activations::Invalid;
165 ItemUpdater::ActivationStatus result;
166 if (purpose == VersionPurpose::BMC || purpose == VersionPurpose::System)
167 {
168 result = ItemUpdater::validateSquashFSImage(filePath);
169 }
170 else
171 {
172 result = ItemUpdater::ActivationStatus::ready;
173 }
174
175 AssociationList associations = {};
176
177 if (result == ItemUpdater::ActivationStatus::ready)
178 {
179 activationState = server::Activation::Activations::Ready;
180 // Create an association to the BMC inventory item
181 associations.emplace_back(
182 std::make_tuple(ACTIVATION_FWD_ASSOCIATION,
183 ACTIVATION_REV_ASSOCIATION, bmcInventoryPath));
184 }
185
186 auto versionPtr = std::make_unique<VersionClass>(
187 bus, path, version, purpose, extendedVersion, filePath, compatibleNames,
188 std::bind(&ItemUpdater::erase, this, std::placeholders::_1), id);
189 versionPtr->deleteObject =
190 std::make_unique<phosphor::software::manager::Delete>(
191 bus, path, *versionPtr);
192 versions.insert(std::make_pair(id, std::move(versionPtr)));
193
194 auto activation = activations.find(id);
195 if (activation == activations.end())
196 {
197 activations.insert(std::make_pair(
198 id, std::make_unique<Activation>(bus, path, *this, id,
199 activationState, associations)));
200 }
201 else
202 {
203 activation->second->activation(activationState);
204 }
205 return activationState;
206}
207
208bool ItemUpdater::requestActivation(std::string& id)
209{
210 auto activation = activations.find(id);
211 if (activation == activations.end())
212 {
213 error("Activation object not found for id: {ID}", "ID", id);
214 return false;
215 }
216 activation->second->requestedActivation(
217 server::Activation::RequestedActivations::Active);
218 return true;
219}
220
221bool ItemUpdater::updateActivationStatus(std::string& id,
222 ActivationIntf::Activations status)
223{
224 auto activation = activations.find(id);
225 if (activation == activations.end())
226 {
227 error("Activation object not found for id: {ID}", "ID", id);
228 return false;
229 }
230 activation->second->activation(status);
231 return true;
232}
233
Saqib Khanba239882017-05-26 08:41:54 -0500234void ItemUpdater::processBMCImage()
235{
Gunnar Mills88e8a322017-09-13 11:09:28 -0500236 using VersionClass = phosphor::software::manager::Version;
Lei YU269bff32018-08-21 15:21:40 +0800237
238 // Check MEDIA_DIR and create if it does not exist
239 try
240 {
241 if (!fs::is_directory(MEDIA_DIR))
242 {
243 fs::create_directory(MEDIA_DIR);
244 }
245 }
246 catch (const fs::filesystem_error& e)
247 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500248 error("Failed to prepare dir: {ERROR}", "ERROR", e);
Lei YU269bff32018-08-21 15:21:40 +0800249 return;
250 }
251
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000252 // Functional images are mounted as rofs-<location>-functional
253 constexpr auto functionalSuffix = "-functional";
Lei YUd474d9c2021-12-10 16:21:21 +0800254 bool functionalFound = false;
Gunnar Mills88e8a322017-09-13 11:09:28 -0500255
Saqib Khan1eef62d2017-08-10 15:29:34 -0500256 // Read os-release from folders under /media/ to get
257 // BMC Software Versions.
George Liu44b9fef2023-02-07 14:31:32 +0800258 std::error_code ec;
259 for (const auto& iter : fs::directory_iterator(MEDIA_DIR, ec))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500260 {
261 auto activationState = server::Activation::Activations::Active;
Saqib Khan6fab70d2017-09-07 00:13:50 -0500262 static const auto BMC_RO_PREFIX_LEN = strlen(BMC_ROFS_PREFIX);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500263
264 // Check if the BMC_RO_PREFIXis the prefix of the iter.path
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600265 if (0 ==
266 iter.path().native().compare(0, BMC_RO_PREFIX_LEN, BMC_ROFS_PREFIX))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500267 {
Adriana Kobylak716cd782020-06-08 13:27:43 -0500268 // Get the version to calculate the id
Adriana Kobylak24a8d832020-06-10 08:29:36 -0500269 fs::path releaseFile(OS_RELEASE_FILE);
270 auto osRelease = iter.path() / releaseFile.relative_path();
George Liu44b9fef2023-02-07 14:31:32 +0800271 if (!fs::is_regular_file(osRelease, ec))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500272 {
Lei YUe56bf872022-02-22 18:40:37 +0800273#ifdef BMC_STATIC_DUAL_IMAGE
274 // For dual image, it is possible that the secondary image is
275 // empty or contains invalid data, ignore such case.
George Liu44b9fef2023-02-07 14:31:32 +0800276 info("Unable to find osRelease: {PATH}: {ERROR_MSG}", "PATH",
277 osRelease, "ERROR_MSG", ec.message());
Lei YUe56bf872022-02-22 18:40:37 +0800278#else
George Liu44b9fef2023-02-07 14:31:32 +0800279 error("Failed to read osRelease: {PATH}: {ERROR_MSG}", "PATH",
280 osRelease, "ERROR_MSG", ec.message());
Adriana Kobylak716cd782020-06-08 13:27:43 -0500281
282 // Try to get the version id from the mount directory name and
283 // call to delete it as this version may be corrupted. Dynamic
284 // volumes created by the UBI layout for example have the id in
285 // the mount directory name. The worst that can happen is that
286 // erase() is called with an non-existent id and returns.
287 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
Saqib Khan021c3652017-09-26 12:11:02 -0500288 ItemUpdater::erase(id);
Lei YUe56bf872022-02-22 18:40:37 +0800289#endif
Adriana Kobylak716cd782020-06-08 13:27:43 -0500290
Saqib Khan021c3652017-09-26 12:11:02 -0500291 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500292 }
Gunnar Mills88e8a322017-09-13 11:09:28 -0500293 auto version = VersionClass::getBMCVersion(osRelease);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500294 if (version.empty())
295 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500296 error("Failed to read version from osRelease: {PATH}", "PATH",
297 osRelease);
Adriana Kobylak716cd782020-06-08 13:27:43 -0500298
299 // Try to delete the version, same as above if the
300 // OS_RELEASE_FILE does not exist.
301 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
302 ItemUpdater::erase(id);
303
304 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500305 }
Saqib Khan021c3652017-09-26 12:11:02 -0500306
Adriana Kobylak59b640b2022-01-21 19:45:22 +0000307 // The flash location is part of the mount name: rofs-<location>
308 auto flashId = iter.path().native().substr(BMC_RO_PREFIX_LEN);
309
310 auto id = VersionClass::getId(version + flashId);
Adriana Kobylak716cd782020-06-08 13:27:43 -0500311
Adriana Kobylakf383d272020-06-16 15:17:22 -0500312 // Check if the id has already been added. This can happen if the
313 // BMC partitions / devices were manually flashed with the same
314 // image.
315 if (versions.find(id) != versions.end())
316 {
317 continue;
318 }
319
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000320 auto functional = false;
321 if (iter.path().native().find(functionalSuffix) !=
322 std::string::npos)
323 {
324 // Set functional to true and remove the functional suffix
325 functional = true;
326 flashId.erase(flashId.length() - strlen(functionalSuffix));
Lei YUd474d9c2021-12-10 16:21:21 +0800327 functionalFound = true;
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000328 }
Adriana Kobylak780220f2022-01-18 20:01:53 +0000329
Saqib Khan1eef62d2017-08-10 15:29:34 -0500330 auto purpose = server::Version::VersionPurpose::BMC;
Adriana Kobylak780220f2022-01-18 20:01:53 +0000331 restorePurpose(flashId, purpose);
Adriana Kobylakec4eec32019-11-13 14:28:35 -0600332
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +0700333 // Read os-release from /etc/ to get the BMC extended version
334 std::string extendedVersion =
335 VersionClass::getBMCExtendedVersion(osRelease);
336
Saqib Khan1eef62d2017-08-10 15:29:34 -0500337 auto path = fs::path(SOFTWARE_OBJPATH) / id;
338
Adriana Kobylak7b11bba2024-06-24 10:14:49 -0500339 // Create functional association and minimum ship level instance if
340 // this is the functional version
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000341 if (functional)
Gunnar Mills88e8a322017-09-13 11:09:28 -0500342 {
343 createFunctionalAssociation(path);
Adriana Kobylak7b11bba2024-06-24 10:14:49 -0500344
345 if (minimum_ship_level::enabled())
346 {
347 minimumVersionObject =
348 std::make_unique<MinimumVersion>(bus, path);
349 minimumVersionObject->minimumVersion(
350 minimum_ship_level::getMinimumVersion());
351 }
Gunnar Mills88e8a322017-09-13 11:09:28 -0500352 }
353
Patrick Williamsfc33ba82024-08-16 15:19:54 -0400354 AssociationList associations;
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500355
356 if (activationState == server::Activation::Activations::Active)
357 {
358 // Create an association to the BMC inventory item
359 associations.emplace_back(std::make_tuple(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600360 ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
361 bmcInventoryPath));
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500362
363 // Create an active association since this image is active
364 createActiveAssociation(path);
365 }
366
AppaRao Pulibbebec72020-01-28 23:57:41 +0530367 // All updateable firmware components must expose the updateable
368 // association.
369 createUpdateableAssociation(path);
370
Adriana Kobylakee590c72017-09-26 15:16:06 -0500371 // Create Version instance for this version.
372 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylaka84f06d2022-01-18 15:41:57 +0000373 bus, path, version, purpose, extendedVersion, flashId,
Justin Ledford054bb0b2022-03-15 15:46:58 -0700374 std::vector<std::string>(),
Adriana Kobylak59b640b2022-01-21 19:45:22 +0000375 std::bind(&ItemUpdater::erase, this, std::placeholders::_1),
376 id);
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000377 if (functional)
378 {
379 versionPtr->setFunctional(true);
380 }
381 else
Michael Tritz4254bec2017-10-03 17:18:22 -0500382 {
Saqib Khanee13e832017-10-23 12:53:11 -0500383 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600384 std::make_unique<phosphor::software::manager::Delete>(
385 bus, path, *versionPtr);
Michael Tritz4254bec2017-10-03 17:18:22 -0500386 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600387 versions.insert(std::make_pair(id, std::move(versionPtr)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500388
Saqib Khanee13e832017-10-23 12:53:11 -0500389 // Create Activation instance for this version.
390 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600391 id, std::make_unique<Activation>(
392 bus, path, *this, id, activationState, associations)));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500393
Lei YUbdf2d6c2021-12-15 14:05:01 +0800394#ifdef BMC_STATIC_DUAL_IMAGE
395 uint8_t priority;
396 if ((functional && (runningImageSlot == 0)) ||
397 (!functional && (runningImageSlot == 1)))
398 {
399 priority = 0;
400 }
401 else
402 {
403 priority = 1;
404 }
405 activations.find(id)->second->redundancyPriority =
406 std::make_unique<RedundancyPriority>(
407 bus, path, *(activations.find(id)->second), priority,
408 false);
409#else
Lei YU269bff32018-08-21 15:21:40 +0800410 // If Active, create RedundancyPriority instance for this
411 // version.
Saqib Khan1eef62d2017-08-10 15:29:34 -0500412 if (activationState == server::Activation::Activations::Active)
413 {
414 uint8_t priority = std::numeric_limits<uint8_t>::max();
Adriana Kobylak780220f2022-01-18 20:01:53 +0000415 if (!restorePriority(flashId, priority))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500416 {
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000417 if (functional)
Adriana Kobylakee590c72017-09-26 15:16:06 -0500418 {
419 priority = 0;
420 }
421 else
422 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500423 error(
424 "Unable to restore priority from file for {VERSIONID}",
425 "VERSIONID", id);
Adriana Kobylakee590c72017-09-26 15:16:06 -0500426 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500427 }
428 activations.find(id)->second->redundancyPriority =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600429 std::make_unique<RedundancyPriority>(
430 bus, path, *(activations.find(id)->second), priority,
431 false);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500432 }
Lei YUbdf2d6c2021-12-15 14:05:01 +0800433#endif
Saqib Khan1eef62d2017-08-10 15:29:34 -0500434 }
435 }
Saqib Khandcbfa042017-09-18 13:08:39 -0500436
Lei YUd474d9c2021-12-10 16:21:21 +0800437 if (!functionalFound)
Saqib Khandcbfa042017-09-18 13:08:39 -0500438 {
Lei YUd474d9c2021-12-10 16:21:21 +0800439 // If there is no functional version found, read the /etc/os-release and
440 // create rofs-<versionId>-functional under MEDIA_DIR, then call again
441 // processBMCImage() to create the D-Bus interface for it.
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500442 auto version = VersionClass::getBMCVersion(OS_RELEASE_FILE);
Patrick Williamsfc33ba82024-08-16 15:19:54 -0400443 auto id = phosphor::software::manager::Version::getId(
444 version + functionalSuffix);
Adriana Kobylak1e81f232022-01-18 22:28:47 +0000445 auto versionFileDir = BMC_ROFS_PREFIX + id + functionalSuffix + "/etc/";
Saqib Khandcbfa042017-09-18 13:08:39 -0500446 try
447 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500448 if (!fs::is_directory(versionFileDir))
Saqib Khandcbfa042017-09-18 13:08:39 -0500449 {
450 fs::create_directories(versionFileDir);
451 }
Patrick Williamsfc33ba82024-08-16 15:19:54 -0400452 auto versionFilePath =
453 BMC_ROFS_PREFIX + id + functionalSuffix + OS_RELEASE_FILE;
Saqib Khandcbfa042017-09-18 13:08:39 -0500454 fs::create_directory_symlink(OS_RELEASE_FILE, versionFilePath);
455 ItemUpdater::processBMCImage();
456 }
457 catch (const std::exception& e)
458 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500459 error("Exception during processing: {ERROR}", "ERROR", e);
Saqib Khandcbfa042017-09-18 13:08:39 -0500460 }
461 }
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600462
463 mirrorUbootToAlt();
Saqib Khanba239882017-05-26 08:41:54 -0500464 return;
465}
466
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500467void ItemUpdater::erase(std::string entryId)
468{
Eddie James6d873712017-09-01 11:29:07 -0500469 // Find entry in versions map
470 auto it = versions.find(entryId);
471 if (it != versions.end())
472 {
Lei YU0f88b5a2018-08-21 15:28:53 +0800473 if (it->second->isFunctional() && ACTIVE_BMC_MAX_ALLOWED > 1)
Eddie James6d873712017-09-01 11:29:07 -0500474 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500475 error(
476 "Version ({VERSIONID}) is currently running on the BMC; unable to remove.",
477 "VERSIONID", entryId);
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500478 return;
Eddie James6d873712017-09-01 11:29:07 -0500479 }
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500480 }
Eddie James6d873712017-09-01 11:29:07 -0500481
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500482 // First call resetUbootEnvVars() so that the BMC points to a valid image to
483 // boot from. If resetUbootEnvVars() is called after the image is actually
484 // deleted from the BMC flash, there'd be a time window where the BMC would
485 // be pointing to a non-existent image to boot from.
486 // Need to remove the entries from the activations map before that call so
487 // that resetUbootEnvVars() doesn't use the version to be deleted.
488 auto iteratorActivations = activations.find(entryId);
489 if (iteratorActivations == activations.end())
490 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500491 error(
492 "Failed to find version ({VERSIONID}) in item updater activations map; unable to remove.",
493 "VERSIONID", entryId);
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500494 }
495 else
496 {
497 removeAssociations(iteratorActivations->second->path);
Zami Seckae06d762021-08-13 20:11:15 -0500498 iteratorActivations->second->deleteImageManagerObject();
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500499 this->activations.erase(entryId);
500 }
501 ItemUpdater::resetUbootEnvVars();
502
503 if (it != versions.end())
504 {
Adriana Kobylak780220f2022-01-18 20:01:53 +0000505 auto flashId = it->second->path();
506
Adriana Kobylak25773a72022-01-21 15:24:48 +0000507 // Delete version data if it has been installed on flash (path is not
508 // the upload directory)
509 if (flashId.find(IMG_UPLOAD_DIR) == std::string::npos)
510 {
511 removeReadOnlyPartition(entryId);
512 removePersistDataDirectory(flashId);
513 helper.clearEntry(flashId);
514 }
Saqib Khanee13e832017-10-23 12:53:11 -0500515
516 // Removing entry in versions map
517 this->versions.erase(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500518 }
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500519
Saqib Khanee13e832017-10-23 12:53:11 -0500520 return;
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500521}
522
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500523void ItemUpdater::deleteAll()
524{
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600525 std::vector<std::string> deletableVersions;
526
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500527 for (const auto& versionIt : versions)
528 {
529 if (!versionIt.second->isFunctional())
530 {
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600531 deletableVersions.push_back(versionIt.first);
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500532 }
533 }
534
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600535 for (const auto& deletableIt : deletableVersions)
536 {
537 ItemUpdater::erase(deletableIt);
538 }
539
Lei YU56aaf452018-06-21 16:09:44 +0800540 helper.cleanup();
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500541}
542
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600543ItemUpdater::ActivationStatus
544 ItemUpdater::validateSquashFSImage(const std::string& filePath)
Saqib Khan35e83f32017-05-22 11:37:32 -0500545{
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800546 bool valid = true;
Saqib Khan35e83f32017-05-22 11:37:32 -0500547
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800548 // Record the images which are being updated
549 // First check for the fullimage, then check for images with partitions
550 imageUpdateList.push_back(bmcFullImages);
551 valid = checkImage(filePath, imageUpdateList);
552 if (!valid)
Saqib Khan35e83f32017-05-22 11:37:32 -0500553 {
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800554 imageUpdateList.clear();
555 imageUpdateList.assign(bmcImages.begin(), bmcImages.end());
556 valid = checkImage(filePath, imageUpdateList);
557 if (!valid)
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500558 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500559 error("Failed to find the needed BMC images.");
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800560 return ItemUpdater::ActivationStatus::invalid;
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500561 }
Saqib Khan35e83f32017-05-22 11:37:32 -0500562 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500563
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500564 return ItemUpdater::ActivationStatus::ready;
Saqib Khan35e83f32017-05-22 11:37:32 -0500565}
566
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500567void ItemUpdater::savePriority(const std::string& versionId, uint8_t value)
568{
Adriana Kobylak780220f2022-01-18 20:01:53 +0000569 auto flashId = versions.find(versionId)->second->path();
570 storePriority(flashId, value);
Adriana Kobylak25773a72022-01-21 15:24:48 +0000571 helper.setEntry(flashId, value);
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500572}
573
Saqib Khanb9da6632017-09-13 09:48:37 -0500574void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500575{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500576 std::map<std::string, uint8_t> priorityMap;
577
578 // Insert the requested version and priority, it may not exist yet.
579 priorityMap.insert(std::make_pair(versionId, value));
580
Saqib Khan4c1aec02017-07-06 11:46:13 -0500581 for (const auto& intf : activations)
582 {
Gunnar Mills9a782242017-08-22 16:23:15 -0500583 if (intf.second->redundancyPriority)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500584 {
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500585 priorityMap.insert(std::make_pair(
Pavithra Barithaya9d7b3312024-06-26 01:58:51 -0500586 intf.first, intf.second->redundancyPriority->priority()));
Saqib Khan4c1aec02017-07-06 11:46:13 -0500587 }
588 }
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500589
590 // Lambda function to compare 2 priority values, use <= to allow duplicates
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600591 typedef std::function<bool(std::pair<std::string, uint8_t>,
592 std::pair<std::string, uint8_t>)>
593 cmpPriority;
594 cmpPriority cmpPriorityFunc =
Pavithra Barithaya6d178522024-06-24 04:17:29 -0500595 [](const std::pair<std::string, uint8_t>& priority1,
596 const std::pair<std::string, uint8_t>& priority2) {
Patrick Williamsfc33ba82024-08-16 15:19:54 -0400597 return priority1.second <= priority2.second;
598 };
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500599
600 // Sort versions by ascending priority
601 std::set<std::pair<std::string, uint8_t>, cmpPriority> prioritySet(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600602 priorityMap.begin(), priorityMap.end(), cmpPriorityFunc);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500603
604 auto freePriorityValue = value;
605 for (auto& element : prioritySet)
606 {
607 if (element.first == versionId)
608 {
609 continue;
610 }
611 if (element.second == freePriorityValue)
612 {
613 ++freePriorityValue;
614 auto it = activations.find(element.first);
Pavithra Barithaya9d7b3312024-06-26 01:58:51 -0500615 it->second->redundancyPriority->sdbusPriority(freePriorityValue);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500616 }
617 }
618
619 auto lowestVersion = prioritySet.begin()->first;
620 if (value == prioritySet.begin()->second)
621 {
622 lowestVersion = versionId;
623 }
624 updateUbootEnvVars(lowestVersion);
Saqib Khan4c1aec02017-07-06 11:46:13 -0500625}
626
Michael Tritz37a59042017-07-12 13:44:53 -0500627void ItemUpdater::reset()
628{
Pavithra Barithayac5f6e7e2024-06-24 09:50:21 -0500629 phosphor::software::updater::Helper::factoryReset();
Michael Tritz37a59042017-07-12 13:44:53 -0500630
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500631 info("BMC factory reset will take effect upon reboot.");
Michael Tritz37a59042017-07-12 13:44:53 -0500632}
633
Pavithra Barithaya6d178522024-06-24 04:17:29 -0500634void ItemUpdater::removeReadOnlyPartition(const std::string& versionId)
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500635{
Adriana Kobylak25773a72022-01-21 15:24:48 +0000636 auto flashId = versions.find(versionId)->second->path();
637 helper.removeVersion(flashId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500638}
639
Michael Tritz0129d922017-08-10 19:33:46 -0500640bool ItemUpdater::fieldModeEnabled(bool value)
641{
642 // enabling field mode is intended to be one way: false -> true
643 if (value && !control::FieldMode::fieldModeEnabled())
644 {
645 control::FieldMode::fieldModeEnabled(value);
646
Adriana Kobylak22848ec2019-10-28 10:08:39 -0500647 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
648 SYSTEMD_INTERFACE, "StartUnit");
649 method.append("obmc-flash-bmc-setenv@fieldmode\\x3dtrue.service",
650 "replace");
651 bus.call_noreply(method);
652
653 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
654 SYSTEMD_INTERFACE, "StopUnit");
655 method.append("usr-local.mount", "replace");
656 bus.call_noreply(method);
657
658 std::vector<std::string> usrLocal = {"usr-local.mount"};
659
660 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
661 SYSTEMD_INTERFACE, "MaskUnitFiles");
662 method.append(usrLocal, false, true);
663 bus.call_noreply(method);
Michael Tritz0129d922017-08-10 19:33:46 -0500664 }
Adriana Kobylakd5b8f752019-05-01 11:52:35 -0500665 else if (!value && control::FieldMode::fieldModeEnabled())
666 {
Adriana Kobylakce82de52024-01-16 13:56:38 -0600667 elog<NotAllowed>(xyz::openbmc_project::common::NotAllowed::REASON(
Adriana Kobylakd5b8f752019-05-01 11:52:35 -0500668 "FieldMode is not allowed to be cleared"));
669 }
Michael Tritz0129d922017-08-10 19:33:46 -0500670
671 return control::FieldMode::fieldModeEnabled();
672}
673
674void ItemUpdater::restoreFieldModeStatus()
675{
Isaac Kurthdeb86b42022-03-08 19:47:53 -0600676 // The fieldmode u-boot environment variable may not exist since it is not
677 // part of the default environment, run fw_printenv with 2>&1 to ignore the
678 // error message in the journal "Error: "fieldmode" not defined"
Patrick Williamsfc33ba82024-08-16 15:19:54 -0400679 std::pair<int, std::string> ret =
680 utils::execute("/sbin/fw_printenv", "-n", "fieldmode", "2>&1");
Michael Tritz0129d922017-08-10 19:33:46 -0500681
Isaac Kurthdeb86b42022-03-08 19:47:53 -0600682 if (ret.first != 0)
683 {
684 return;
685 }
686
687 // truncate any extra characters off the end to compare against a "true" str
688 std::string result = ret.second.substr(0, 4);
689 if (result == "true")
Michael Tritz0129d922017-08-10 19:33:46 -0500690 {
691 ItemUpdater::fieldModeEnabled(true);
692 }
693}
694
Gunnar Millsb60add12017-08-24 16:41:42 -0500695void ItemUpdater::setBMCInventoryPath()
696{
Gunnar Millsb60add12017-08-24 16:41:42 -0500697 auto depth = 0;
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600698 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
699 MAPPER_INTERFACE, "GetSubTreePaths");
Gunnar Millsb60add12017-08-24 16:41:42 -0500700
Adriana Kobylak1254c622017-12-07 12:24:56 -0600701 mapperCall.append(INVENTORY_PATH);
Gunnar Millsb60add12017-08-24 16:41:42 -0500702 mapperCall.append(depth);
Adriana Kobylak1254c622017-12-07 12:24:56 -0600703 std::vector<std::string> filter = {BMC_INVENTORY_INTERFACE};
Gunnar Millsb60add12017-08-24 16:41:42 -0500704 mapperCall.append(filter);
705
Ed Tanous87c78172018-08-10 12:51:53 -0700706 try
707 {
708 auto response = bus.call(mapperCall);
709
710 using ObjectPaths = std::vector<std::string>;
711 ObjectPaths result;
712 response.read(result);
713
714 if (!result.empty())
715 {
716 bmcInventoryPath = result.front();
717 }
718 }
Patrick Williamsbf2bb2b2022-07-22 19:26:52 -0500719 catch (const sdbusplus::exception_t& e)
Gunnar Millsb60add12017-08-24 16:41:42 -0500720 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500721 error("Error in mapper GetSubTreePath: {ERROR}", "ERROR", e);
Gunnar Millsb60add12017-08-24 16:41:42 -0500722 return;
723 }
724
Adriana Kobylak1254c622017-12-07 12:24:56 -0600725 return;
Gunnar Millsb60add12017-08-24 16:41:42 -0500726}
727
Gunnar Millsf10b2322017-09-21 15:31:55 -0500728void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500729{
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600730 assocs.emplace_back(
731 std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path));
Gunnar Millsded875d2017-08-28 16:44:52 -0500732 associations(assocs);
733}
734
Gunnar Mills88e8a322017-09-13 11:09:28 -0500735void ItemUpdater::createFunctionalAssociation(const std::string& path)
736{
737 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600738 FUNCTIONAL_REV_ASSOCIATION, path));
Gunnar Mills88e8a322017-09-13 11:09:28 -0500739 associations(assocs);
740}
741
AppaRao Pulibbebec72020-01-28 23:57:41 +0530742void ItemUpdater::createUpdateableAssociation(const std::string& path)
743{
744 assocs.emplace_back(std::make_tuple(UPDATEABLE_FWD_ASSOCIATION,
745 UPDATEABLE_REV_ASSOCIATION, path));
746 associations(assocs);
747}
748
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600749void ItemUpdater::removeAssociations(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500750{
751 for (auto iter = assocs.begin(); iter != assocs.end();)
752 {
Pavithra Barithaya9e307b72024-06-26 01:27:38 -0500753 if (std::get<2>(*iter) == path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500754 {
755 iter = assocs.erase(iter);
756 associations(assocs);
757 }
758 else
759 {
760 ++iter;
761 }
762 }
763}
764
Saqib Khanb9da6632017-09-13 09:48:37 -0500765bool ItemUpdater::isLowestPriority(uint8_t value)
766{
767 for (const auto& intf : activations)
768 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500769 if (intf.second->redundancyPriority)
Saqib Khanb9da6632017-09-13 09:48:37 -0500770 {
Pavithra Barithaya9d7b3312024-06-26 01:58:51 -0500771 if (intf.second->redundancyPriority->priority() < value)
Saqib Khanb9da6632017-09-13 09:48:37 -0500772 {
773 return false;
774 }
775 }
776 }
777 return true;
778}
779
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500780void ItemUpdater::updateUbootEnvVars(const std::string& versionId)
781{
Lei YU9c76a0a2022-03-14 11:37:15 +0800782 auto it = versions.find(versionId);
783 if (it == versions.end())
784 {
785 return;
786 }
787 auto flashId = it->second->path();
Adriana Kobylak25773a72022-01-21 15:24:48 +0000788 helper.updateUbootVersionId(flashId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500789}
790
Saqib Khan49446ae2017-10-02 10:54:20 -0500791void ItemUpdater::resetUbootEnvVars()
792{
Pavithra Barithaya9d7b3312024-06-26 01:58:51 -0500793 decltype(activations.begin()->second->redundancyPriority->priority())
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600794 lowestPriority = std::numeric_limits<uint8_t>::max();
Saqib Khan49446ae2017-10-02 10:54:20 -0500795 decltype(activations.begin()->second->versionId) lowestPriorityVersion;
796 for (const auto& intf : activations)
797 {
Pavithra Barithaya9d7b3312024-06-26 01:58:51 -0500798 if (!intf.second->redundancyPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500799 {
800 // Skip this version if the redundancyPriority is not initialized.
801 continue;
802 }
803
Pavithra Barithaya9d7b3312024-06-26 01:58:51 -0500804 if (intf.second->redundancyPriority->priority() <= lowestPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500805 {
Pavithra Barithaya9d7b3312024-06-26 01:58:51 -0500806 lowestPriority = intf.second->redundancyPriority->priority();
Saqib Khan49446ae2017-10-02 10:54:20 -0500807 lowestPriorityVersion = intf.second->versionId;
808 }
809 }
810
Saqib Khanf0382c32017-10-24 13:36:22 -0500811 // Update the U-boot environment variable to point to the lowest priority
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500812 updateUbootEnvVars(lowestPriorityVersion);
Saqib Khan49446ae2017-10-02 10:54:20 -0500813}
814
Lei YUd8c9eea2021-12-16 16:08:30 +0800815void ItemUpdater::freeSpace([[maybe_unused]] const Activation& caller)
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600816{
Lei YUd8c9eea2021-12-16 16:08:30 +0800817#ifdef BMC_STATIC_DUAL_IMAGE
818 // For the golden image case, always remove the version on the primary side
819 std::string versionIDtoErase;
820 for (const auto& iter : activations)
821 {
822 if (iter.second->redundancyPriority &&
Pavithra Barithaya9d7b3312024-06-26 01:58:51 -0500823 iter.second->redundancyPriority->priority() == 0)
Lei YUd8c9eea2021-12-16 16:08:30 +0800824 {
825 versionIDtoErase = iter.second->versionId;
826 break;
827 }
828 }
829 if (!versionIDtoErase.empty())
830 {
831 erase(versionIDtoErase);
832 }
833 else
834 {
835 warning("Failed to find version to erase");
836 }
837#else
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600838 // Versions with the highest priority in front
839 std::priority_queue<std::pair<int, std::string>,
840 std::vector<std::pair<int, std::string>>,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600841 std::less<std::pair<int, std::string>>>
842 versionsPQ;
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600843
844 std::size_t count = 0;
845 for (const auto& iter : activations)
846 {
847 if ((iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600848 server::Activation::Activations::Active) ||
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600849 (iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600850 server::Activation::Activations::Failed))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600851 {
852 count++;
853 // Don't put the functional version on the queue since we can't
854 // remove the "running" BMC version.
Lei YU0f88b5a2018-08-21 15:28:53 +0800855 // If ACTIVE_BMC_MAX_ALLOWED <= 1, there is only one active BMC,
856 // so remove functional version as well.
Adriana Kobylaka6963592018-09-07 14:13:29 -0500857 // Don't delete the the Activation object that called this function.
858 if ((versions.find(iter.second->versionId)
859 ->second->isFunctional() &&
860 ACTIVE_BMC_MAX_ALLOWED > 1) ||
861 (iter.second->versionId == caller.versionId))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600862 {
863 continue;
864 }
Adriana Kobylaka6963592018-09-07 14:13:29 -0500865
866 // Failed activations don't have priority, assign them a large value
867 // for sorting purposes.
868 auto priority = 999;
869 if (iter.second.get()->activation() ==
Lei YUcfb4b202021-05-06 17:47:28 +0800870 server::Activation::Activations::Active &&
871 iter.second->redundancyPriority)
Adriana Kobylaka6963592018-09-07 14:13:29 -0500872 {
873 priority = iter.second->redundancyPriority.get()->priority();
874 }
875
876 versionsPQ.push(std::make_pair(priority, iter.second->versionId));
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600877 }
878 }
879
880 // If the number of BMC versions is over ACTIVE_BMC_MAX_ALLOWED -1,
881 // remove the highest priority one(s).
882 while ((count >= ACTIVE_BMC_MAX_ALLOWED) && (!versionsPQ.empty()))
883 {
884 erase(versionsPQ.top().second);
885 versionsPQ.pop();
886 count--;
887 }
Lei YUd8c9eea2021-12-16 16:08:30 +0800888#endif
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600889}
890
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600891void ItemUpdater::mirrorUbootToAlt()
892{
Lei YU56aaf452018-06-21 16:09:44 +0800893 helper.mirrorAlt();
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600894}
895
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800896bool ItemUpdater::checkImage(const std::string& filePath,
897 const std::vector<std::string>& imageList)
898{
899 bool valid = true;
900
901 for (auto& bmcImage : imageList)
902 {
903 fs::path file(filePath);
904 file /= bmcImage;
905 std::ifstream efile(file.c_str());
906 if (efile.good() != 1)
907 {
908 valid = false;
909 break;
910 }
911 }
912
913 return valid;
914}
915
Lei YU6e9fb1d2021-02-19 18:01:40 +0800916#ifdef HOST_BIOS_UPGRADE
917void ItemUpdater::createBIOSObject()
918{
919 std::string path = BIOS_OBJPATH;
920 // Get version id from last item in the path
Pavithra Barithaya27d49382024-06-24 01:52:42 -0500921 auto pos = path.rfind('/');
Lei YU6e9fb1d2021-02-19 18:01:40 +0800922 if (pos == std::string::npos)
923 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500924 error("No version id found in object path {PATH}", "PATH", path);
Lei YU6e9fb1d2021-02-19 18:01:40 +0800925 return;
926 }
927
928 createActiveAssociation(path);
929 createFunctionalAssociation(path);
Daniel Hsu27d734f2024-05-21 15:20:23 +0800930 createUpdateableAssociation(path);
Lei YU6e9fb1d2021-02-19 18:01:40 +0800931
932 auto versionId = path.substr(pos + 1);
933 auto version = "null";
Patrick Williamsfc33ba82024-08-16 15:19:54 -0400934 AssociationList assocs;
Lei YU6e9fb1d2021-02-19 18:01:40 +0800935 biosActivation = std::make_unique<Activation>(
936 bus, path, *this, versionId, server::Activation::Activations::Active,
937 assocs);
Pavithra Barithaya6d178522024-06-24 04:17:29 -0500938 auto dummyErase = [](const std::string& /*entryId*/) {
Lei YU6e9fb1d2021-02-19 18:01:40 +0800939 // Do nothing;
940 };
941 biosVersion = std::make_unique<VersionClass>(
942 bus, path, version, VersionPurpose::Host, "", "",
Justin Ledford054bb0b2022-03-15 15:46:58 -0700943 std::vector<std::string>(),
Adriana Kobylak59b640b2022-01-21 19:45:22 +0000944 std::bind(dummyErase, std::placeholders::_1), "");
Lei YU6e9fb1d2021-02-19 18:01:40 +0800945 biosVersion->deleteObject =
Patrick Williamsfc33ba82024-08-16 15:19:54 -0400946 std::make_unique<phosphor::software::manager::Delete>(
947 bus, path, *biosVersion);
Lei YU6e9fb1d2021-02-19 18:01:40 +0800948}
949#endif
950
Lei YU531fbc22021-12-10 20:03:18 +0800951void ItemUpdater::getRunningSlot()
952{
953 // Check /run/media/slot to get the slot number
954 constexpr auto slotFile = "/run/media/slot";
955 std::fstream f(slotFile, std::ios_base::in);
956 f >> runningImageSlot;
957}
958
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500959} // namespace updater
960} // namespace software
961} // namespace phosphor