blob: 3ee85b2a7efea03ee1b331f01bc5d6882d4c8219 [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"
8#include "xyz/openbmc_project/Software/Version/server.hpp"
9
Adriana Kobylakd5b8f752019-05-01 11:52:35 -050010#include <phosphor-logging/elog-errors.hpp>
Gunnar Millsb0ce9962018-09-07 13:39:10 -050011#include <phosphor-logging/elog.hpp>
12#include <phosphor-logging/log.hpp>
Adriana Kobylak58aa7502020-06-08 11:12:11 -050013#include <xyz/openbmc_project/Common/error.hpp>
14#include <xyz/openbmc_project/Software/Image/error.hpp>
15
16#include <filesystem>
17#include <fstream>
Adriana Kobylak204e1e72018-01-24 16:00:05 -060018#include <queue>
Adriana Kobylakb77551c2017-10-27 12:46:23 -050019#include <set>
Gunnar Millsec1b41c2017-05-02 12:20:36 -050020#include <string>
Gunnar Mills60f5ccf2020-05-28 12:26:39 -050021#include <thread>
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
34using namespace phosphor::logging;
Adriana Kobylak43699ca2018-10-17 14:56:29 -050035using namespace sdbusplus::xyz::openbmc_project::Software::Image::Error;
Jayanth Othayoth2ab9b102018-02-21 05:27:47 -060036using namespace phosphor::software::image;
Adriana Kobylakc98d9122020-05-05 10:36:01 -050037namespace fs = std::filesystem;
Adriana Kobylakd5b8f752019-05-01 11:52:35 -050038using NotAllowed = sdbusplus::xyz::openbmc_project::Common::Error::NotAllowed;
Saqib Khan35e83f32017-05-22 11:37:32 -050039
Patrick Williamse75d10f2017-05-30 16:56:32 -050040void ItemUpdater::createActivation(sdbusplus::message::message& msg)
Gunnar Millsec1b41c2017-05-02 12:20:36 -050041{
Saqib Khan84a0e692017-06-28 17:27:01 -050042
43 using SVersion = server::Version;
44 using VersionPurpose = SVersion::VersionPurpose;
Gunnar Mills9a782242017-08-22 16:23:15 -050045 using VersionClass = phosphor::software::manager::Version;
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;
Saqib Khan705f1bf2017-06-09 23:58:38 -050049 std::string version;
Patrick Williamsbc1facd2020-06-03 05:58:27 -050050 std::map<std::string, std::map<std::string, std::variant<std::string>>>
Adriana Kobylak2285fe02018-02-27 15:36:59 -060051 interfaces;
Patrick Williamse75d10f2017-05-30 16:56:32 -050052 msg.read(objPath, interfaces);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050053 std::string path(std::move(objPath));
Saqib Khan19177d32017-06-20 08:11:49 -050054 std::string filePath;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050055
56 for (const auto& intf : interfaces)
57 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050058 if (intf.first == VERSION_IFACE)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050059 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050060 for (const auto& property : intf.second)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050061 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050062 if (property.first == "Purpose")
Gunnar Mills2ce7da22017-05-04 15:37:56 -050063 {
Saqib Khan84a0e692017-06-28 17:27:01 -050064 auto value = SVersion::convertVersionPurposeFromString(
Patrick Williamse883fb82020-05-13 11:38:55 -050065 std::get<std::string>(property.second));
Saqib Khan84a0e692017-06-28 17:27:01 -050066 if (value == VersionPurpose::BMC ||
Vijay Khemkae9f6c842020-01-14 14:32:39 -080067#ifdef HOST_BIOS_UPGRADE
68 value == VersionPurpose::Host ||
69#endif
Saqib Khan84a0e692017-06-28 17:27:01 -050070 value == VersionPurpose::System)
71 {
72 purpose = value;
73 }
Saqib Khan705f1bf2017-06-09 23:58:38 -050074 }
75 else if (property.first == "Version")
76 {
Patrick Williamse883fb82020-05-13 11:38:55 -050077 version = std::get<std::string>(property.second);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050078 }
79 }
80 }
Saqib Khan19177d32017-06-20 08:11:49 -050081 else if (intf.first == FILEPATH_IFACE)
82 {
83 for (const auto& property : intf.second)
84 {
85 if (property.first == "Path")
86 {
Patrick Williamse883fb82020-05-13 11:38:55 -050087 filePath = std::get<std::string>(property.second);
Saqib Khan19177d32017-06-20 08:11:49 -050088 }
89 }
90 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -050091 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -060092 if (version.empty() || filePath.empty() ||
Saqib Khan84a0e692017-06-28 17:27:01 -050093 purpose == VersionPurpose::Unknown)
Saqib Khan705f1bf2017-06-09 23:58:38 -050094 {
95 return;
96 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -050097
98 // Version id is the last item in the path
99 auto pos = path.rfind("/");
100 if (pos == std::string::npos)
101 {
102 log<level::ERR>("No version id found in object path",
Adriana Kobylak596466b2018-02-13 14:48:53 -0600103 entry("OBJPATH=%s", path.c_str()));
Patrick Williamse75d10f2017-05-30 16:56:32 -0500104 return;
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500105 }
106
107 auto versionId = path.substr(pos + 1);
108
Patrick Williamse75d10f2017-05-30 16:56:32 -0500109 if (activations.find(versionId) == activations.end())
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500110 {
Saqib Khan35e83f32017-05-22 11:37:32 -0500111 // Determine the Activation state by processing the given image dir.
112 auto activationState = server::Activation::Activations::Invalid;
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800113 ItemUpdater::ActivationStatus result;
114 if (purpose == VersionPurpose::BMC || purpose == VersionPurpose::System)
115 result = ItemUpdater::validateSquashFSImage(filePath);
116 else
117 result = ItemUpdater::ActivationStatus::ready;
118
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500119 AssociationList associations = {};
120
Saqib Khan35e83f32017-05-22 11:37:32 -0500121 if (result == ItemUpdater::ActivationStatus::ready)
122 {
123 activationState = server::Activation::Activations::Ready;
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500124 // Create an association to the BMC inventory item
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600125 associations.emplace_back(
126 std::make_tuple(ACTIVATION_FWD_ASSOCIATION,
127 ACTIVATION_REV_ASSOCIATION, bmcInventoryPath));
Saqib Khan35e83f32017-05-22 11:37:32 -0500128 }
Gunnar Millsb60add12017-08-24 16:41:42 -0500129
Saqib Khanee13e832017-10-23 12:53:11 -0500130 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600131 versionId,
132 std::make_unique<Activation>(bus, path, *this, versionId,
133 activationState, associations)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500134
Saqib Khanee13e832017-10-23 12:53:11 -0500135 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600136 bus, path, version, purpose, filePath,
137 std::bind(&ItemUpdater::erase, this, std::placeholders::_1));
Saqib Khanee13e832017-10-23 12:53:11 -0500138 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600139 std::make_unique<phosphor::software::manager::Delete>(bus, path,
140 *versionPtr);
Saqib Khanee13e832017-10-23 12:53:11 -0500141 versions.insert(std::make_pair(versionId, std::move(versionPtr)));
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500142 }
Patrick Williamse75d10f2017-05-30 16:56:32 -0500143 return;
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500144}
145
Saqib Khanba239882017-05-26 08:41:54 -0500146void ItemUpdater::processBMCImage()
147{
Gunnar Mills88e8a322017-09-13 11:09:28 -0500148 using VersionClass = phosphor::software::manager::Version;
Lei YU269bff32018-08-21 15:21:40 +0800149
150 // Check MEDIA_DIR and create if it does not exist
151 try
152 {
153 if (!fs::is_directory(MEDIA_DIR))
154 {
155 fs::create_directory(MEDIA_DIR);
156 }
157 }
158 catch (const fs::filesystem_error& e)
159 {
160 log<level::ERR>("Failed to prepare dir", entry("ERR=%s", e.what()));
161 return;
162 }
163
Gunnar Mills88e8a322017-09-13 11:09:28 -0500164 // Read os-release from /etc/ to get the functional BMC version
165 auto functionalVersion = VersionClass::getBMCVersion(OS_RELEASE_FILE);
166
Saqib Khan1eef62d2017-08-10 15:29:34 -0500167 // Read os-release from folders under /media/ to get
168 // BMC Software Versions.
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500169 for (const auto& iter : fs::directory_iterator(MEDIA_DIR))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500170 {
171 auto activationState = server::Activation::Activations::Active;
Saqib Khan6fab70d2017-09-07 00:13:50 -0500172 static const auto BMC_RO_PREFIX_LEN = strlen(BMC_ROFS_PREFIX);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500173
174 // Check if the BMC_RO_PREFIXis the prefix of the iter.path
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600175 if (0 ==
176 iter.path().native().compare(0, BMC_RO_PREFIX_LEN, BMC_ROFS_PREFIX))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500177 {
Adriana Kobylak716cd782020-06-08 13:27:43 -0500178 // Get the version to calculate the id
Adriana Kobylak24a8d832020-06-10 08:29:36 -0500179 fs::path releaseFile(OS_RELEASE_FILE);
180 auto osRelease = iter.path() / releaseFile.relative_path();
Saqib Khan1eef62d2017-08-10 15:29:34 -0500181 if (!fs::is_regular_file(osRelease))
182 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600183 log<level::ERR>(
184 "Failed to read osRelease",
185 entry("FILENAME=%s", osRelease.string().c_str()));
Adriana Kobylak716cd782020-06-08 13:27:43 -0500186
187 // Try to get the version id from the mount directory name and
188 // call to delete it as this version may be corrupted. Dynamic
189 // volumes created by the UBI layout for example have the id in
190 // the mount directory name. The worst that can happen is that
191 // erase() is called with an non-existent id and returns.
192 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
Saqib Khan021c3652017-09-26 12:11:02 -0500193 ItemUpdater::erase(id);
Adriana Kobylak716cd782020-06-08 13:27:43 -0500194
Saqib Khan021c3652017-09-26 12:11:02 -0500195 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500196 }
Gunnar Mills88e8a322017-09-13 11:09:28 -0500197 auto version = VersionClass::getBMCVersion(osRelease);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500198 if (version.empty())
199 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600200 log<level::ERR>(
201 "Failed to read version from osRelease",
202 entry("FILENAME=%s", osRelease.string().c_str()));
Adriana Kobylak716cd782020-06-08 13:27:43 -0500203
204 // Try to delete the version, same as above if the
205 // OS_RELEASE_FILE does not exist.
206 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
207 ItemUpdater::erase(id);
208
209 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500210 }
Saqib Khan021c3652017-09-26 12:11:02 -0500211
Adriana Kobylak716cd782020-06-08 13:27:43 -0500212 auto id = VersionClass::getId(version);
213
Saqib Khan1eef62d2017-08-10 15:29:34 -0500214 auto purpose = server::Version::VersionPurpose::BMC;
Adriana Kobylakec4eec32019-11-13 14:28:35 -0600215 restorePurpose(id, purpose);
216
Saqib Khan1eef62d2017-08-10 15:29:34 -0500217 auto path = fs::path(SOFTWARE_OBJPATH) / id;
218
Lei YU269bff32018-08-21 15:21:40 +0800219 // Create functional association if this is the functional
220 // version
Gunnar Mills88e8a322017-09-13 11:09:28 -0500221 if (version.compare(functionalVersion) == 0)
222 {
223 createFunctionalAssociation(path);
224 }
225
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500226 AssociationList associations = {};
227
228 if (activationState == server::Activation::Activations::Active)
229 {
230 // Create an association to the BMC inventory item
231 associations.emplace_back(std::make_tuple(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600232 ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
233 bmcInventoryPath));
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500234
235 // Create an active association since this image is active
236 createActiveAssociation(path);
237 }
238
AppaRao Pulibbebec72020-01-28 23:57:41 +0530239 // All updateable firmware components must expose the updateable
240 // association.
241 createUpdateableAssociation(path);
242
Adriana Kobylakee590c72017-09-26 15:16:06 -0500243 // Create Version instance for this version.
244 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600245 bus, path, version, purpose, "",
246 std::bind(&ItemUpdater::erase, this, std::placeholders::_1));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500247 auto isVersionFunctional = versionPtr->isFunctional();
Michael Tritz4254bec2017-10-03 17:18:22 -0500248 if (!isVersionFunctional)
249 {
Saqib Khanee13e832017-10-23 12:53:11 -0500250 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600251 std::make_unique<phosphor::software::manager::Delete>(
252 bus, path, *versionPtr);
Michael Tritz4254bec2017-10-03 17:18:22 -0500253 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600254 versions.insert(std::make_pair(id, std::move(versionPtr)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500255
Saqib Khanee13e832017-10-23 12:53:11 -0500256 // Create Activation instance for this version.
257 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600258 id, std::make_unique<Activation>(
259 bus, path, *this, id, activationState, associations)));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500260
Lei YU269bff32018-08-21 15:21:40 +0800261 // If Active, create RedundancyPriority instance for this
262 // version.
Saqib Khan1eef62d2017-08-10 15:29:34 -0500263 if (activationState == server::Activation::Activations::Active)
264 {
265 uint8_t priority = std::numeric_limits<uint8_t>::max();
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600266 if (!restorePriority(id, priority))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500267 {
Adriana Kobylakee590c72017-09-26 15:16:06 -0500268 if (isVersionFunctional)
269 {
270 priority = 0;
271 }
272 else
273 {
274 log<level::ERR>("Unable to restore priority from file.",
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600275 entry("VERSIONID=%s", id.c_str()));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500276 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500277 }
278 activations.find(id)->second->redundancyPriority =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600279 std::make_unique<RedundancyPriority>(
280 bus, path, *(activations.find(id)->second), priority,
281 false);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500282 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500283 }
284 }
Saqib Khandcbfa042017-09-18 13:08:39 -0500285
Adriana Kobylak716cd782020-06-08 13:27:43 -0500286 // If there are no bmc versions mounted under MEDIA_DIR, then read the
287 // /etc/os-release and create rofs-<versionId> under MEDIA_DIR, then call
288 // again processBMCImage() to create the D-Bus interface for it.
Saqib Khandcbfa042017-09-18 13:08:39 -0500289 if (activations.size() == 0)
290 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500291 auto version = VersionClass::getBMCVersion(OS_RELEASE_FILE);
Saqib Khandcbfa042017-09-18 13:08:39 -0500292 auto id = phosphor::software::manager::Version::getId(version);
293 auto versionFileDir = BMC_ROFS_PREFIX + id + "/etc/";
294 try
295 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500296 if (!fs::is_directory(versionFileDir))
Saqib Khandcbfa042017-09-18 13:08:39 -0500297 {
298 fs::create_directories(versionFileDir);
299 }
300 auto versionFilePath = BMC_ROFS_PREFIX + id + OS_RELEASE_FILE;
301 fs::create_directory_symlink(OS_RELEASE_FILE, versionFilePath);
302 ItemUpdater::processBMCImage();
303 }
304 catch (const std::exception& e)
305 {
306 log<level::ERR>(e.what());
307 }
308 }
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600309
310 mirrorUbootToAlt();
Saqib Khanba239882017-05-26 08:41:54 -0500311 return;
312}
313
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500314void ItemUpdater::erase(std::string entryId)
315{
Eddie James6d873712017-09-01 11:29:07 -0500316 // Find entry in versions map
317 auto it = versions.find(entryId);
318 if (it != versions.end())
319 {
Lei YU0f88b5a2018-08-21 15:28:53 +0800320 if (it->second->isFunctional() && ACTIVE_BMC_MAX_ALLOWED > 1)
Eddie James6d873712017-09-01 11:29:07 -0500321 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600322 log<level::ERR>("Error: Version is currently running on the BMC. "
323 "Unable to remove.",
324 entry("VERSIONID=%s", entryId.c_str()));
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500325 return;
Eddie James6d873712017-09-01 11:29:07 -0500326 }
327
328 // Delete ReadOnly partitions if it's not active
329 removeReadOnlyPartition(entryId);
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600330 removePersistDataDirectory(entryId);
Saqib Khanee13e832017-10-23 12:53:11 -0500331
332 // Removing entry in versions map
333 this->versions.erase(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500334 }
335 else
336 {
337 // Delete ReadOnly partitions even if we can't find the version
338 removeReadOnlyPartition(entryId);
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600339 removePersistDataDirectory(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500340
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600341 log<level::ERR>("Error: Failed to find version in item updater "
342 "versions map. Unable to remove.",
343 entry("VERSIONID=%s", entryId.c_str()));
Eddie James6d873712017-09-01 11:29:07 -0500344 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500345
Lei YU56aaf452018-06-21 16:09:44 +0800346 helper.clearEntry(entryId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500347
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500348 // Removing entry in activations map
349 auto ita = activations.find(entryId);
350 if (ita == activations.end())
351 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600352 log<level::ERR>("Error: Failed to find version in item updater "
353 "activations map. Unable to remove.",
354 entry("VERSIONID=%s", entryId.c_str()));
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500355 }
Saqib Khanee13e832017-10-23 12:53:11 -0500356 else
357 {
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600358 removeAssociations(ita->second->path);
Saqib Khanee13e832017-10-23 12:53:11 -0500359 this->activations.erase(entryId);
360 }
Saqib Khan49446ae2017-10-02 10:54:20 -0500361 ItemUpdater::resetUbootEnvVars();
Saqib Khanee13e832017-10-23 12:53:11 -0500362 return;
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500363}
364
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500365void ItemUpdater::deleteAll()
366{
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600367 std::vector<std::string> deletableVersions;
368
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500369 for (const auto& versionIt : versions)
370 {
371 if (!versionIt.second->isFunctional())
372 {
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600373 deletableVersions.push_back(versionIt.first);
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500374 }
375 }
376
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600377 for (const auto& deletableIt : deletableVersions)
378 {
379 ItemUpdater::erase(deletableIt);
380 }
381
Lei YU56aaf452018-06-21 16:09:44 +0800382 helper.cleanup();
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500383}
384
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600385ItemUpdater::ActivationStatus
386 ItemUpdater::validateSquashFSImage(const std::string& filePath)
Saqib Khan35e83f32017-05-22 11:37:32 -0500387{
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500388 bool invalid = false;
Saqib Khan35e83f32017-05-22 11:37:32 -0500389
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500390 for (auto& bmcImage : bmcImages)
Saqib Khan35e83f32017-05-22 11:37:32 -0500391 {
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500392 fs::path file(filePath);
393 file /= bmcImage;
394 std::ifstream efile(file.c_str());
395 if (efile.good() != 1)
396 {
397 log<level::ERR>("Failed to find the BMC image.",
Gunnar Mills9a782242017-08-22 16:23:15 -0500398 entry("IMAGE=%s", bmcImage.c_str()));
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500399 invalid = true;
400 }
Saqib Khan35e83f32017-05-22 11:37:32 -0500401 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500402
403 if (invalid)
Saqib Khan35e83f32017-05-22 11:37:32 -0500404 {
Saqib Khan35e83f32017-05-22 11:37:32 -0500405 return ItemUpdater::ActivationStatus::invalid;
406 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500407
408 return ItemUpdater::ActivationStatus::ready;
Saqib Khan35e83f32017-05-22 11:37:32 -0500409}
410
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500411void ItemUpdater::savePriority(const std::string& versionId, uint8_t value)
412{
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600413 storePriority(versionId, value);
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500414 helper.setEntry(versionId, value);
415}
416
Saqib Khanb9da6632017-09-13 09:48:37 -0500417void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500418{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500419 std::map<std::string, uint8_t> priorityMap;
420
421 // Insert the requested version and priority, it may not exist yet.
422 priorityMap.insert(std::make_pair(versionId, value));
423
Saqib Khan4c1aec02017-07-06 11:46:13 -0500424 for (const auto& intf : activations)
425 {
Gunnar Mills9a782242017-08-22 16:23:15 -0500426 if (intf.second->redundancyPriority)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500427 {
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500428 priorityMap.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600429 intf.first, intf.second->redundancyPriority.get()->priority()));
Saqib Khan4c1aec02017-07-06 11:46:13 -0500430 }
431 }
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500432
433 // Lambda function to compare 2 priority values, use <= to allow duplicates
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600434 typedef std::function<bool(std::pair<std::string, uint8_t>,
435 std::pair<std::string, uint8_t>)>
436 cmpPriority;
437 cmpPriority cmpPriorityFunc =
438 [](std::pair<std::string, uint8_t> priority1,
439 std::pair<std::string, uint8_t> priority2) {
440 return priority1.second <= priority2.second;
441 };
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500442
443 // Sort versions by ascending priority
444 std::set<std::pair<std::string, uint8_t>, cmpPriority> prioritySet(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600445 priorityMap.begin(), priorityMap.end(), cmpPriorityFunc);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500446
447 auto freePriorityValue = value;
448 for (auto& element : prioritySet)
449 {
450 if (element.first == versionId)
451 {
452 continue;
453 }
454 if (element.second == freePriorityValue)
455 {
456 ++freePriorityValue;
457 auto it = activations.find(element.first);
458 it->second->redundancyPriority.get()->sdbusPriority(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600459 freePriorityValue);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500460 }
461 }
462
463 auto lowestVersion = prioritySet.begin()->first;
464 if (value == prioritySet.begin()->second)
465 {
466 lowestVersion = versionId;
467 }
468 updateUbootEnvVars(lowestVersion);
Saqib Khan4c1aec02017-07-06 11:46:13 -0500469}
470
Michael Tritz37a59042017-07-12 13:44:53 -0500471void ItemUpdater::reset()
472{
Gunnar Mills60f5ccf2020-05-28 12:26:39 -0500473 constexpr auto setFactoryResetWait = std::chrono::seconds(3);
Lei YU56aaf452018-06-21 16:09:44 +0800474 helper.factoryReset();
Michael Tritz37a59042017-07-12 13:44:53 -0500475
Gunnar Mills60f5ccf2020-05-28 12:26:39 -0500476 // Need to wait for env variables to complete, otherwise an immediate reboot
477 // will not factory reset.
478 std::this_thread::sleep_for(setFactoryResetWait);
479
Michael Tritz37a59042017-07-12 13:44:53 -0500480 log<level::INFO>("BMC factory reset will take effect upon reboot.");
Michael Tritz37a59042017-07-12 13:44:53 -0500481}
482
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500483void ItemUpdater::removeReadOnlyPartition(std::string versionId)
484{
Lei YU56aaf452018-06-21 16:09:44 +0800485 helper.removeVersion(versionId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500486}
487
Michael Tritz0129d922017-08-10 19:33:46 -0500488bool ItemUpdater::fieldModeEnabled(bool value)
489{
490 // enabling field mode is intended to be one way: false -> true
491 if (value && !control::FieldMode::fieldModeEnabled())
492 {
493 control::FieldMode::fieldModeEnabled(value);
494
Adriana Kobylak22848ec2019-10-28 10:08:39 -0500495 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
496 SYSTEMD_INTERFACE, "StartUnit");
497 method.append("obmc-flash-bmc-setenv@fieldmode\\x3dtrue.service",
498 "replace");
499 bus.call_noreply(method);
500
501 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
502 SYSTEMD_INTERFACE, "StopUnit");
503 method.append("usr-local.mount", "replace");
504 bus.call_noreply(method);
505
506 std::vector<std::string> usrLocal = {"usr-local.mount"};
507
508 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
509 SYSTEMD_INTERFACE, "MaskUnitFiles");
510 method.append(usrLocal, false, true);
511 bus.call_noreply(method);
Michael Tritz0129d922017-08-10 19:33:46 -0500512 }
Adriana Kobylakd5b8f752019-05-01 11:52:35 -0500513 else if (!value && control::FieldMode::fieldModeEnabled())
514 {
515 elog<NotAllowed>(xyz::openbmc_project::Common::NotAllowed::REASON(
516 "FieldMode is not allowed to be cleared"));
517 }
Michael Tritz0129d922017-08-10 19:33:46 -0500518
519 return control::FieldMode::fieldModeEnabled();
520}
521
522void ItemUpdater::restoreFieldModeStatus()
523{
Michael Tritzff0b4212017-10-24 17:38:09 -0500524 std::ifstream input("/dev/mtd/u-boot-env");
Michael Tritz0129d922017-08-10 19:33:46 -0500525 std::string envVar;
526 std::getline(input, envVar);
527
Gunnar Mills9a782242017-08-22 16:23:15 -0500528 if (envVar.find("fieldmode=true") != std::string::npos)
Michael Tritz0129d922017-08-10 19:33:46 -0500529 {
530 ItemUpdater::fieldModeEnabled(true);
531 }
532}
533
Gunnar Millsb60add12017-08-24 16:41:42 -0500534void ItemUpdater::setBMCInventoryPath()
535{
Gunnar Millsb60add12017-08-24 16:41:42 -0500536 auto depth = 0;
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600537 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
538 MAPPER_INTERFACE, "GetSubTreePaths");
Gunnar Millsb60add12017-08-24 16:41:42 -0500539
Adriana Kobylak1254c622017-12-07 12:24:56 -0600540 mapperCall.append(INVENTORY_PATH);
Gunnar Millsb60add12017-08-24 16:41:42 -0500541 mapperCall.append(depth);
Adriana Kobylak1254c622017-12-07 12:24:56 -0600542 std::vector<std::string> filter = {BMC_INVENTORY_INTERFACE};
Gunnar Millsb60add12017-08-24 16:41:42 -0500543 mapperCall.append(filter);
544
Ed Tanous87c78172018-08-10 12:51:53 -0700545 try
546 {
547 auto response = bus.call(mapperCall);
548
549 using ObjectPaths = std::vector<std::string>;
550 ObjectPaths result;
551 response.read(result);
552
553 if (!result.empty())
554 {
555 bmcInventoryPath = result.front();
556 }
557 }
558 catch (const sdbusplus::exception::SdBusError& e)
Gunnar Millsb60add12017-08-24 16:41:42 -0500559 {
560 log<level::ERR>("Error in mapper GetSubTreePath");
561 return;
562 }
563
Adriana Kobylak1254c622017-12-07 12:24:56 -0600564 return;
Gunnar Millsb60add12017-08-24 16:41:42 -0500565}
566
Gunnar Millsf10b2322017-09-21 15:31:55 -0500567void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500568{
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600569 assocs.emplace_back(
570 std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path));
Gunnar Millsded875d2017-08-28 16:44:52 -0500571 associations(assocs);
572}
573
Gunnar Mills88e8a322017-09-13 11:09:28 -0500574void ItemUpdater::createFunctionalAssociation(const std::string& path)
575{
576 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600577 FUNCTIONAL_REV_ASSOCIATION, path));
Gunnar Mills88e8a322017-09-13 11:09:28 -0500578 associations(assocs);
579}
580
AppaRao Pulibbebec72020-01-28 23:57:41 +0530581void ItemUpdater::createUpdateableAssociation(const std::string& path)
582{
583 assocs.emplace_back(std::make_tuple(UPDATEABLE_FWD_ASSOCIATION,
584 UPDATEABLE_REV_ASSOCIATION, path));
585 associations(assocs);
586}
587
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600588void ItemUpdater::removeAssociations(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500589{
590 for (auto iter = assocs.begin(); iter != assocs.end();)
591 {
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600592 if ((std::get<2>(*iter)).compare(path) == 0)
Gunnar Millsded875d2017-08-28 16:44:52 -0500593 {
594 iter = assocs.erase(iter);
595 associations(assocs);
596 }
597 else
598 {
599 ++iter;
600 }
601 }
602}
603
Saqib Khanb9da6632017-09-13 09:48:37 -0500604bool ItemUpdater::isLowestPriority(uint8_t value)
605{
606 for (const auto& intf : activations)
607 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500608 if (intf.second->redundancyPriority)
Saqib Khanb9da6632017-09-13 09:48:37 -0500609 {
610 if (intf.second->redundancyPriority.get()->priority() < value)
611 {
612 return false;
613 }
614 }
615 }
616 return true;
617}
618
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500619void ItemUpdater::updateUbootEnvVars(const std::string& versionId)
620{
Lei YU56aaf452018-06-21 16:09:44 +0800621 helper.updateUbootVersionId(versionId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500622}
623
Saqib Khan49446ae2017-10-02 10:54:20 -0500624void ItemUpdater::resetUbootEnvVars()
625{
626 decltype(activations.begin()->second->redundancyPriority.get()->priority())
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600627 lowestPriority = std::numeric_limits<uint8_t>::max();
Saqib Khan49446ae2017-10-02 10:54:20 -0500628 decltype(activations.begin()->second->versionId) lowestPriorityVersion;
629 for (const auto& intf : activations)
630 {
631 if (!intf.second->redundancyPriority.get())
632 {
633 // Skip this version if the redundancyPriority is not initialized.
634 continue;
635 }
636
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600637 if (intf.second->redundancyPriority.get()->priority() <= lowestPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500638 {
639 lowestPriority = intf.second->redundancyPriority.get()->priority();
640 lowestPriorityVersion = intf.second->versionId;
641 }
642 }
643
Saqib Khanf0382c32017-10-24 13:36:22 -0500644 // Update the U-boot environment variable to point to the lowest priority
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500645 updateUbootEnvVars(lowestPriorityVersion);
Saqib Khan49446ae2017-10-02 10:54:20 -0500646}
647
Adriana Kobylaka6963592018-09-07 14:13:29 -0500648void ItemUpdater::freeSpace(Activation& caller)
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600649{
650 // Versions with the highest priority in front
651 std::priority_queue<std::pair<int, std::string>,
652 std::vector<std::pair<int, std::string>>,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600653 std::less<std::pair<int, std::string>>>
654 versionsPQ;
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600655
656 std::size_t count = 0;
657 for (const auto& iter : activations)
658 {
659 if ((iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600660 server::Activation::Activations::Active) ||
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600661 (iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600662 server::Activation::Activations::Failed))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600663 {
664 count++;
665 // Don't put the functional version on the queue since we can't
666 // remove the "running" BMC version.
Lei YU0f88b5a2018-08-21 15:28:53 +0800667 // If ACTIVE_BMC_MAX_ALLOWED <= 1, there is only one active BMC,
668 // so remove functional version as well.
Adriana Kobylaka6963592018-09-07 14:13:29 -0500669 // Don't delete the the Activation object that called this function.
670 if ((versions.find(iter.second->versionId)
671 ->second->isFunctional() &&
672 ACTIVE_BMC_MAX_ALLOWED > 1) ||
673 (iter.second->versionId == caller.versionId))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600674 {
675 continue;
676 }
Adriana Kobylaka6963592018-09-07 14:13:29 -0500677
678 // Failed activations don't have priority, assign them a large value
679 // for sorting purposes.
680 auto priority = 999;
681 if (iter.second.get()->activation() ==
682 server::Activation::Activations::Active)
683 {
684 priority = iter.second->redundancyPriority.get()->priority();
685 }
686
687 versionsPQ.push(std::make_pair(priority, iter.second->versionId));
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600688 }
689 }
690
691 // If the number of BMC versions is over ACTIVE_BMC_MAX_ALLOWED -1,
692 // remove the highest priority one(s).
693 while ((count >= ACTIVE_BMC_MAX_ALLOWED) && (!versionsPQ.empty()))
694 {
695 erase(versionsPQ.top().second);
696 versionsPQ.pop();
697 count--;
698 }
699}
700
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600701void ItemUpdater::mirrorUbootToAlt()
702{
Lei YU56aaf452018-06-21 16:09:44 +0800703 helper.mirrorAlt();
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600704}
705
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500706} // namespace updater
707} // namespace software
708} // namespace phosphor