blob: 8b860b5f02dff5b8cab724a3622259653d7bf48a [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
Adriana Kobylakf383d272020-06-16 15:17:22 -0500214 // Check if the id has already been added. This can happen if the
215 // BMC partitions / devices were manually flashed with the same
216 // image.
217 if (versions.find(id) != versions.end())
218 {
219 continue;
220 }
221
Saqib Khan1eef62d2017-08-10 15:29:34 -0500222 auto purpose = server::Version::VersionPurpose::BMC;
Adriana Kobylakec4eec32019-11-13 14:28:35 -0600223 restorePurpose(id, purpose);
224
Saqib Khan1eef62d2017-08-10 15:29:34 -0500225 auto path = fs::path(SOFTWARE_OBJPATH) / id;
226
Lei YU269bff32018-08-21 15:21:40 +0800227 // Create functional association if this is the functional
228 // version
Gunnar Mills88e8a322017-09-13 11:09:28 -0500229 if (version.compare(functionalVersion) == 0)
230 {
231 createFunctionalAssociation(path);
232 }
233
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500234 AssociationList associations = {};
235
236 if (activationState == server::Activation::Activations::Active)
237 {
238 // Create an association to the BMC inventory item
239 associations.emplace_back(std::make_tuple(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600240 ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
241 bmcInventoryPath));
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500242
243 // Create an active association since this image is active
244 createActiveAssociation(path);
245 }
246
AppaRao Pulibbebec72020-01-28 23:57:41 +0530247 // All updateable firmware components must expose the updateable
248 // association.
249 createUpdateableAssociation(path);
250
Adriana Kobylakee590c72017-09-26 15:16:06 -0500251 // Create Version instance for this version.
252 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600253 bus, path, version, purpose, "",
254 std::bind(&ItemUpdater::erase, this, std::placeholders::_1));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500255 auto isVersionFunctional = versionPtr->isFunctional();
Michael Tritz4254bec2017-10-03 17:18:22 -0500256 if (!isVersionFunctional)
257 {
Saqib Khanee13e832017-10-23 12:53:11 -0500258 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600259 std::make_unique<phosphor::software::manager::Delete>(
260 bus, path, *versionPtr);
Michael Tritz4254bec2017-10-03 17:18:22 -0500261 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600262 versions.insert(std::make_pair(id, std::move(versionPtr)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500263
Saqib Khanee13e832017-10-23 12:53:11 -0500264 // Create Activation instance for this version.
265 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600266 id, std::make_unique<Activation>(
267 bus, path, *this, id, activationState, associations)));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500268
Lei YU269bff32018-08-21 15:21:40 +0800269 // If Active, create RedundancyPriority instance for this
270 // version.
Saqib Khan1eef62d2017-08-10 15:29:34 -0500271 if (activationState == server::Activation::Activations::Active)
272 {
273 uint8_t priority = std::numeric_limits<uint8_t>::max();
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600274 if (!restorePriority(id, priority))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500275 {
Adriana Kobylakee590c72017-09-26 15:16:06 -0500276 if (isVersionFunctional)
277 {
278 priority = 0;
279 }
280 else
281 {
282 log<level::ERR>("Unable to restore priority from file.",
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600283 entry("VERSIONID=%s", id.c_str()));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500284 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500285 }
286 activations.find(id)->second->redundancyPriority =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600287 std::make_unique<RedundancyPriority>(
288 bus, path, *(activations.find(id)->second), priority,
289 false);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500290 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500291 }
292 }
Saqib Khandcbfa042017-09-18 13:08:39 -0500293
Adriana Kobylak716cd782020-06-08 13:27:43 -0500294 // If there are no bmc versions mounted under MEDIA_DIR, then read the
295 // /etc/os-release and create rofs-<versionId> under MEDIA_DIR, then call
296 // again processBMCImage() to create the D-Bus interface for it.
Saqib Khandcbfa042017-09-18 13:08:39 -0500297 if (activations.size() == 0)
298 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500299 auto version = VersionClass::getBMCVersion(OS_RELEASE_FILE);
Saqib Khandcbfa042017-09-18 13:08:39 -0500300 auto id = phosphor::software::manager::Version::getId(version);
301 auto versionFileDir = BMC_ROFS_PREFIX + id + "/etc/";
302 try
303 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500304 if (!fs::is_directory(versionFileDir))
Saqib Khandcbfa042017-09-18 13:08:39 -0500305 {
306 fs::create_directories(versionFileDir);
307 }
308 auto versionFilePath = BMC_ROFS_PREFIX + id + OS_RELEASE_FILE;
309 fs::create_directory_symlink(OS_RELEASE_FILE, versionFilePath);
310 ItemUpdater::processBMCImage();
311 }
312 catch (const std::exception& e)
313 {
314 log<level::ERR>(e.what());
315 }
316 }
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600317
318 mirrorUbootToAlt();
Saqib Khanba239882017-05-26 08:41:54 -0500319 return;
320}
321
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500322void ItemUpdater::erase(std::string entryId)
323{
Eddie James6d873712017-09-01 11:29:07 -0500324 // Find entry in versions map
325 auto it = versions.find(entryId);
326 if (it != versions.end())
327 {
Lei YU0f88b5a2018-08-21 15:28:53 +0800328 if (it->second->isFunctional() && ACTIVE_BMC_MAX_ALLOWED > 1)
Eddie James6d873712017-09-01 11:29:07 -0500329 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600330 log<level::ERR>("Error: Version is currently running on the BMC. "
331 "Unable to remove.",
332 entry("VERSIONID=%s", entryId.c_str()));
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500333 return;
Eddie James6d873712017-09-01 11:29:07 -0500334 }
335
336 // Delete ReadOnly partitions if it's not active
337 removeReadOnlyPartition(entryId);
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600338 removePersistDataDirectory(entryId);
Saqib Khanee13e832017-10-23 12:53:11 -0500339
340 // Removing entry in versions map
341 this->versions.erase(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500342 }
343 else
344 {
345 // Delete ReadOnly partitions even if we can't find the version
346 removeReadOnlyPartition(entryId);
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600347 removePersistDataDirectory(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500348
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600349 log<level::ERR>("Error: Failed to find version in item updater "
350 "versions map. Unable to remove.",
351 entry("VERSIONID=%s", entryId.c_str()));
Eddie James6d873712017-09-01 11:29:07 -0500352 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500353
Lei YU56aaf452018-06-21 16:09:44 +0800354 helper.clearEntry(entryId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500355
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500356 // Removing entry in activations map
357 auto ita = activations.find(entryId);
358 if (ita == activations.end())
359 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600360 log<level::ERR>("Error: Failed to find version in item updater "
361 "activations map. Unable to remove.",
362 entry("VERSIONID=%s", entryId.c_str()));
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500363 }
Saqib Khanee13e832017-10-23 12:53:11 -0500364 else
365 {
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600366 removeAssociations(ita->second->path);
Saqib Khanee13e832017-10-23 12:53:11 -0500367 this->activations.erase(entryId);
368 }
Saqib Khan49446ae2017-10-02 10:54:20 -0500369 ItemUpdater::resetUbootEnvVars();
Saqib Khanee13e832017-10-23 12:53:11 -0500370 return;
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500371}
372
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500373void ItemUpdater::deleteAll()
374{
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600375 std::vector<std::string> deletableVersions;
376
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500377 for (const auto& versionIt : versions)
378 {
379 if (!versionIt.second->isFunctional())
380 {
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600381 deletableVersions.push_back(versionIt.first);
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500382 }
383 }
384
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600385 for (const auto& deletableIt : deletableVersions)
386 {
387 ItemUpdater::erase(deletableIt);
388 }
389
Lei YU56aaf452018-06-21 16:09:44 +0800390 helper.cleanup();
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500391}
392
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600393ItemUpdater::ActivationStatus
394 ItemUpdater::validateSquashFSImage(const std::string& filePath)
Saqib Khan35e83f32017-05-22 11:37:32 -0500395{
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500396 bool invalid = false;
Saqib Khan35e83f32017-05-22 11:37:32 -0500397
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500398 for (auto& bmcImage : bmcImages)
Saqib Khan35e83f32017-05-22 11:37:32 -0500399 {
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500400 fs::path file(filePath);
401 file /= bmcImage;
402 std::ifstream efile(file.c_str());
403 if (efile.good() != 1)
404 {
405 log<level::ERR>("Failed to find the BMC image.",
Gunnar Mills9a782242017-08-22 16:23:15 -0500406 entry("IMAGE=%s", bmcImage.c_str()));
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500407 invalid = true;
408 }
Saqib Khan35e83f32017-05-22 11:37:32 -0500409 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500410
411 if (invalid)
Saqib Khan35e83f32017-05-22 11:37:32 -0500412 {
Saqib Khan35e83f32017-05-22 11:37:32 -0500413 return ItemUpdater::ActivationStatus::invalid;
414 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500415
416 return ItemUpdater::ActivationStatus::ready;
Saqib Khan35e83f32017-05-22 11:37:32 -0500417}
418
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500419void ItemUpdater::savePriority(const std::string& versionId, uint8_t value)
420{
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600421 storePriority(versionId, value);
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500422 helper.setEntry(versionId, value);
423}
424
Saqib Khanb9da6632017-09-13 09:48:37 -0500425void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500426{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500427 std::map<std::string, uint8_t> priorityMap;
428
429 // Insert the requested version and priority, it may not exist yet.
430 priorityMap.insert(std::make_pair(versionId, value));
431
Saqib Khan4c1aec02017-07-06 11:46:13 -0500432 for (const auto& intf : activations)
433 {
Gunnar Mills9a782242017-08-22 16:23:15 -0500434 if (intf.second->redundancyPriority)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500435 {
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500436 priorityMap.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600437 intf.first, intf.second->redundancyPriority.get()->priority()));
Saqib Khan4c1aec02017-07-06 11:46:13 -0500438 }
439 }
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500440
441 // Lambda function to compare 2 priority values, use <= to allow duplicates
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600442 typedef std::function<bool(std::pair<std::string, uint8_t>,
443 std::pair<std::string, uint8_t>)>
444 cmpPriority;
445 cmpPriority cmpPriorityFunc =
446 [](std::pair<std::string, uint8_t> priority1,
447 std::pair<std::string, uint8_t> priority2) {
448 return priority1.second <= priority2.second;
449 };
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500450
451 // Sort versions by ascending priority
452 std::set<std::pair<std::string, uint8_t>, cmpPriority> prioritySet(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600453 priorityMap.begin(), priorityMap.end(), cmpPriorityFunc);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500454
455 auto freePriorityValue = value;
456 for (auto& element : prioritySet)
457 {
458 if (element.first == versionId)
459 {
460 continue;
461 }
462 if (element.second == freePriorityValue)
463 {
464 ++freePriorityValue;
465 auto it = activations.find(element.first);
466 it->second->redundancyPriority.get()->sdbusPriority(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600467 freePriorityValue);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500468 }
469 }
470
471 auto lowestVersion = prioritySet.begin()->first;
472 if (value == prioritySet.begin()->second)
473 {
474 lowestVersion = versionId;
475 }
476 updateUbootEnvVars(lowestVersion);
Saqib Khan4c1aec02017-07-06 11:46:13 -0500477}
478
Michael Tritz37a59042017-07-12 13:44:53 -0500479void ItemUpdater::reset()
480{
Gunnar Mills60f5ccf2020-05-28 12:26:39 -0500481 constexpr auto setFactoryResetWait = std::chrono::seconds(3);
Lei YU56aaf452018-06-21 16:09:44 +0800482 helper.factoryReset();
Michael Tritz37a59042017-07-12 13:44:53 -0500483
Gunnar Mills60f5ccf2020-05-28 12:26:39 -0500484 // Need to wait for env variables to complete, otherwise an immediate reboot
485 // will not factory reset.
486 std::this_thread::sleep_for(setFactoryResetWait);
487
Michael Tritz37a59042017-07-12 13:44:53 -0500488 log<level::INFO>("BMC factory reset will take effect upon reboot.");
Michael Tritz37a59042017-07-12 13:44:53 -0500489}
490
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500491void ItemUpdater::removeReadOnlyPartition(std::string versionId)
492{
Lei YU56aaf452018-06-21 16:09:44 +0800493 helper.removeVersion(versionId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500494}
495
Michael Tritz0129d922017-08-10 19:33:46 -0500496bool ItemUpdater::fieldModeEnabled(bool value)
497{
498 // enabling field mode is intended to be one way: false -> true
499 if (value && !control::FieldMode::fieldModeEnabled())
500 {
501 control::FieldMode::fieldModeEnabled(value);
502
Adriana Kobylak22848ec2019-10-28 10:08:39 -0500503 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
504 SYSTEMD_INTERFACE, "StartUnit");
505 method.append("obmc-flash-bmc-setenv@fieldmode\\x3dtrue.service",
506 "replace");
507 bus.call_noreply(method);
508
509 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
510 SYSTEMD_INTERFACE, "StopUnit");
511 method.append("usr-local.mount", "replace");
512 bus.call_noreply(method);
513
514 std::vector<std::string> usrLocal = {"usr-local.mount"};
515
516 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
517 SYSTEMD_INTERFACE, "MaskUnitFiles");
518 method.append(usrLocal, false, true);
519 bus.call_noreply(method);
Michael Tritz0129d922017-08-10 19:33:46 -0500520 }
Adriana Kobylakd5b8f752019-05-01 11:52:35 -0500521 else if (!value && control::FieldMode::fieldModeEnabled())
522 {
523 elog<NotAllowed>(xyz::openbmc_project::Common::NotAllowed::REASON(
524 "FieldMode is not allowed to be cleared"));
525 }
Michael Tritz0129d922017-08-10 19:33:46 -0500526
527 return control::FieldMode::fieldModeEnabled();
528}
529
530void ItemUpdater::restoreFieldModeStatus()
531{
Michael Tritzff0b4212017-10-24 17:38:09 -0500532 std::ifstream input("/dev/mtd/u-boot-env");
Michael Tritz0129d922017-08-10 19:33:46 -0500533 std::string envVar;
534 std::getline(input, envVar);
535
Gunnar Mills9a782242017-08-22 16:23:15 -0500536 if (envVar.find("fieldmode=true") != std::string::npos)
Michael Tritz0129d922017-08-10 19:33:46 -0500537 {
538 ItemUpdater::fieldModeEnabled(true);
539 }
540}
541
Gunnar Millsb60add12017-08-24 16:41:42 -0500542void ItemUpdater::setBMCInventoryPath()
543{
Gunnar Millsb60add12017-08-24 16:41:42 -0500544 auto depth = 0;
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600545 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
546 MAPPER_INTERFACE, "GetSubTreePaths");
Gunnar Millsb60add12017-08-24 16:41:42 -0500547
Adriana Kobylak1254c622017-12-07 12:24:56 -0600548 mapperCall.append(INVENTORY_PATH);
Gunnar Millsb60add12017-08-24 16:41:42 -0500549 mapperCall.append(depth);
Adriana Kobylak1254c622017-12-07 12:24:56 -0600550 std::vector<std::string> filter = {BMC_INVENTORY_INTERFACE};
Gunnar Millsb60add12017-08-24 16:41:42 -0500551 mapperCall.append(filter);
552
Ed Tanous87c78172018-08-10 12:51:53 -0700553 try
554 {
555 auto response = bus.call(mapperCall);
556
557 using ObjectPaths = std::vector<std::string>;
558 ObjectPaths result;
559 response.read(result);
560
561 if (!result.empty())
562 {
563 bmcInventoryPath = result.front();
564 }
565 }
566 catch (const sdbusplus::exception::SdBusError& e)
Gunnar Millsb60add12017-08-24 16:41:42 -0500567 {
568 log<level::ERR>("Error in mapper GetSubTreePath");
569 return;
570 }
571
Adriana Kobylak1254c622017-12-07 12:24:56 -0600572 return;
Gunnar Millsb60add12017-08-24 16:41:42 -0500573}
574
Gunnar Millsf10b2322017-09-21 15:31:55 -0500575void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500576{
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600577 assocs.emplace_back(
578 std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path));
Gunnar Millsded875d2017-08-28 16:44:52 -0500579 associations(assocs);
580}
581
Gunnar Mills88e8a322017-09-13 11:09:28 -0500582void ItemUpdater::createFunctionalAssociation(const std::string& path)
583{
584 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600585 FUNCTIONAL_REV_ASSOCIATION, path));
Gunnar Mills88e8a322017-09-13 11:09:28 -0500586 associations(assocs);
587}
588
AppaRao Pulibbebec72020-01-28 23:57:41 +0530589void ItemUpdater::createUpdateableAssociation(const std::string& path)
590{
591 assocs.emplace_back(std::make_tuple(UPDATEABLE_FWD_ASSOCIATION,
592 UPDATEABLE_REV_ASSOCIATION, path));
593 associations(assocs);
594}
595
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600596void ItemUpdater::removeAssociations(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500597{
598 for (auto iter = assocs.begin(); iter != assocs.end();)
599 {
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600600 if ((std::get<2>(*iter)).compare(path) == 0)
Gunnar Millsded875d2017-08-28 16:44:52 -0500601 {
602 iter = assocs.erase(iter);
603 associations(assocs);
604 }
605 else
606 {
607 ++iter;
608 }
609 }
610}
611
Saqib Khanb9da6632017-09-13 09:48:37 -0500612bool ItemUpdater::isLowestPriority(uint8_t value)
613{
614 for (const auto& intf : activations)
615 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500616 if (intf.second->redundancyPriority)
Saqib Khanb9da6632017-09-13 09:48:37 -0500617 {
618 if (intf.second->redundancyPriority.get()->priority() < value)
619 {
620 return false;
621 }
622 }
623 }
624 return true;
625}
626
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500627void ItemUpdater::updateUbootEnvVars(const std::string& versionId)
628{
Lei YU56aaf452018-06-21 16:09:44 +0800629 helper.updateUbootVersionId(versionId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500630}
631
Saqib Khan49446ae2017-10-02 10:54:20 -0500632void ItemUpdater::resetUbootEnvVars()
633{
634 decltype(activations.begin()->second->redundancyPriority.get()->priority())
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600635 lowestPriority = std::numeric_limits<uint8_t>::max();
Saqib Khan49446ae2017-10-02 10:54:20 -0500636 decltype(activations.begin()->second->versionId) lowestPriorityVersion;
637 for (const auto& intf : activations)
638 {
639 if (!intf.second->redundancyPriority.get())
640 {
641 // Skip this version if the redundancyPriority is not initialized.
642 continue;
643 }
644
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600645 if (intf.second->redundancyPriority.get()->priority() <= lowestPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500646 {
647 lowestPriority = intf.second->redundancyPriority.get()->priority();
648 lowestPriorityVersion = intf.second->versionId;
649 }
650 }
651
Saqib Khanf0382c32017-10-24 13:36:22 -0500652 // Update the U-boot environment variable to point to the lowest priority
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500653 updateUbootEnvVars(lowestPriorityVersion);
Saqib Khan49446ae2017-10-02 10:54:20 -0500654}
655
Adriana Kobylaka6963592018-09-07 14:13:29 -0500656void ItemUpdater::freeSpace(Activation& caller)
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600657{
658 // Versions with the highest priority in front
659 std::priority_queue<std::pair<int, std::string>,
660 std::vector<std::pair<int, std::string>>,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600661 std::less<std::pair<int, std::string>>>
662 versionsPQ;
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600663
664 std::size_t count = 0;
665 for (const auto& iter : activations)
666 {
667 if ((iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600668 server::Activation::Activations::Active) ||
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600669 (iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600670 server::Activation::Activations::Failed))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600671 {
672 count++;
673 // Don't put the functional version on the queue since we can't
674 // remove the "running" BMC version.
Lei YU0f88b5a2018-08-21 15:28:53 +0800675 // If ACTIVE_BMC_MAX_ALLOWED <= 1, there is only one active BMC,
676 // so remove functional version as well.
Adriana Kobylaka6963592018-09-07 14:13:29 -0500677 // Don't delete the the Activation object that called this function.
678 if ((versions.find(iter.second->versionId)
679 ->second->isFunctional() &&
680 ACTIVE_BMC_MAX_ALLOWED > 1) ||
681 (iter.second->versionId == caller.versionId))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600682 {
683 continue;
684 }
Adriana Kobylaka6963592018-09-07 14:13:29 -0500685
686 // Failed activations don't have priority, assign them a large value
687 // for sorting purposes.
688 auto priority = 999;
689 if (iter.second.get()->activation() ==
690 server::Activation::Activations::Active)
691 {
692 priority = iter.second->redundancyPriority.get()->priority();
693 }
694
695 versionsPQ.push(std::make_pair(priority, iter.second->versionId));
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600696 }
697 }
698
699 // If the number of BMC versions is over ACTIVE_BMC_MAX_ALLOWED -1,
700 // remove the highest priority one(s).
701 while ((count >= ACTIVE_BMC_MAX_ALLOWED) && (!versionsPQ.empty()))
702 {
703 erase(versionsPQ.top().second);
704 versionsPQ.pop();
705 count--;
706 }
707}
708
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600709void ItemUpdater::mirrorUbootToAlt()
710{
Lei YU56aaf452018-06-21 16:09:44 +0800711 helper.mirrorAlt();
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600712}
713
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500714} // namespace updater
715} // namespace software
716} // namespace phosphor