blob: 7fe69e46438d22c2cd0b1ee613255009e0be9867 [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
Gunnar Millsb0ce9962018-09-07 13:39:10 -050010#include <experimental/filesystem>
Saqib Khan35e83f32017-05-22 11:37:32 -050011#include <fstream>
Adriana Kobylakd5b8f752019-05-01 11:52:35 -050012#include <phosphor-logging/elog-errors.hpp>
Gunnar Millsb0ce9962018-09-07 13:39:10 -050013#include <phosphor-logging/elog.hpp>
14#include <phosphor-logging/log.hpp>
Adriana Kobylak204e1e72018-01-24 16:00:05 -060015#include <queue>
Adriana Kobylakb77551c2017-10-27 12:46:23 -050016#include <set>
Gunnar Millsec1b41c2017-05-02 12:20:36 -050017#include <string>
Adriana Kobylakd5b8f752019-05-01 11:52:35 -050018#include <xyz/openbmc_project/Common/error.hpp>
Adriana Kobylak43699ca2018-10-17 14:56:29 -050019#include <xyz/openbmc_project/Software/Image/error.hpp>
Gunnar Millsec1b41c2017-05-02 12:20:36 -050020
21namespace phosphor
22{
23namespace software
24{
25namespace updater
26{
27
Gunnar Mills2ce7da22017-05-04 15:37:56 -050028// When you see server:: you know we're referencing our base class
29namespace server = sdbusplus::xyz::openbmc_project::Software::server;
Michael Tritz0129d922017-08-10 19:33:46 -050030namespace control = sdbusplus::xyz::openbmc_project::Control::server;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050031
32using namespace phosphor::logging;
Adriana Kobylak43699ca2018-10-17 14:56:29 -050033using namespace sdbusplus::xyz::openbmc_project::Software::Image::Error;
Jayanth Othayoth2ab9b102018-02-21 05:27:47 -060034using namespace phosphor::software::image;
Saqib Khan35e83f32017-05-22 11:37:32 -050035namespace fs = std::experimental::filesystem;
Adriana Kobylakd5b8f752019-05-01 11:52:35 -050036using NotAllowed = sdbusplus::xyz::openbmc_project::Common::Error::NotAllowed;
Saqib Khan35e83f32017-05-22 11:37:32 -050037
Patrick Williamse75d10f2017-05-30 16:56:32 -050038void ItemUpdater::createActivation(sdbusplus::message::message& msg)
Gunnar Millsec1b41c2017-05-02 12:20:36 -050039{
Saqib Khan84a0e692017-06-28 17:27:01 -050040
41 using SVersion = server::Version;
42 using VersionPurpose = SVersion::VersionPurpose;
Gunnar Mills9a782242017-08-22 16:23:15 -050043 using VersionClass = phosphor::software::manager::Version;
Saqib Khan84a0e692017-06-28 17:27:01 -050044 namespace mesg = sdbusplus::message;
45 namespace variant_ns = mesg::variant_ns;
46
47 mesg::object_path objPath;
48 auto purpose = VersionPurpose::Unknown;
Saqib Khan705f1bf2017-06-09 23:58:38 -050049 std::string version;
Adriana Kobylak2285fe02018-02-27 15:36:59 -060050 std::map<std::string, std::map<std::string, mesg::variant<std::string>>>
51 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(
Adriana Kobylak2285fe02018-02-27 15:36:59 -060065 variant_ns::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 {
Saqib Khan84a0e692017-06-28 17:27:01 -050077 version = variant_ns::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 {
Saqib Khan84a0e692017-06-28 17:27:01 -050087 filePath = variant_ns::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 {
Saqib Khan021c3652017-09-26 12:11:02 -0500178 // The versionId is extracted from the path
179 // for example /media/ro-2a1022fe.
180 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500181 auto osRelease = iter.path() / OS_RELEASE_FILE;
182 if (!fs::is_regular_file(osRelease))
183 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600184 log<level::ERR>(
185 "Failed to read osRelease",
186 entry("FILENAME=%s", osRelease.string().c_str()));
Saqib Khan021c3652017-09-26 12:11:02 -0500187 ItemUpdater::erase(id);
188 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500189 }
Gunnar Mills88e8a322017-09-13 11:09:28 -0500190 auto version = VersionClass::getBMCVersion(osRelease);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500191 if (version.empty())
192 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600193 log<level::ERR>(
194 "Failed to read version from osRelease",
195 entry("FILENAME=%s", osRelease.string().c_str()));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500196 activationState = server::Activation::Activations::Invalid;
197 }
Saqib Khan021c3652017-09-26 12:11:02 -0500198
Saqib Khan1eef62d2017-08-10 15:29:34 -0500199 auto purpose = server::Version::VersionPurpose::BMC;
Adriana Kobylakec4eec32019-11-13 14:28:35 -0600200 restorePurpose(id, purpose);
201
Saqib Khan1eef62d2017-08-10 15:29:34 -0500202 auto path = fs::path(SOFTWARE_OBJPATH) / id;
203
Lei YU269bff32018-08-21 15:21:40 +0800204 // Create functional association if this is the functional
205 // version
Gunnar Mills88e8a322017-09-13 11:09:28 -0500206 if (version.compare(functionalVersion) == 0)
207 {
208 createFunctionalAssociation(path);
209 }
210
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500211 AssociationList associations = {};
212
213 if (activationState == server::Activation::Activations::Active)
214 {
215 // Create an association to the BMC inventory item
216 associations.emplace_back(std::make_tuple(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600217 ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
218 bmcInventoryPath));
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500219
220 // Create an active association since this image is active
221 createActiveAssociation(path);
222 }
223
AppaRao Pulibbebec72020-01-28 23:57:41 +0530224 // All updateable firmware components must expose the updateable
225 // association.
226 createUpdateableAssociation(path);
227
Adriana Kobylakee590c72017-09-26 15:16:06 -0500228 // Create Version instance for this version.
229 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600230 bus, path, version, purpose, "",
231 std::bind(&ItemUpdater::erase, this, std::placeholders::_1));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500232 auto isVersionFunctional = versionPtr->isFunctional();
Michael Tritz4254bec2017-10-03 17:18:22 -0500233 if (!isVersionFunctional)
234 {
Saqib Khanee13e832017-10-23 12:53:11 -0500235 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600236 std::make_unique<phosphor::software::manager::Delete>(
237 bus, path, *versionPtr);
Michael Tritz4254bec2017-10-03 17:18:22 -0500238 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600239 versions.insert(std::make_pair(id, std::move(versionPtr)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500240
Saqib Khanee13e832017-10-23 12:53:11 -0500241 // Create Activation instance for this version.
242 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600243 id, std::make_unique<Activation>(
244 bus, path, *this, id, activationState, associations)));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500245
Lei YU269bff32018-08-21 15:21:40 +0800246 // If Active, create RedundancyPriority instance for this
247 // version.
Saqib Khan1eef62d2017-08-10 15:29:34 -0500248 if (activationState == server::Activation::Activations::Active)
249 {
250 uint8_t priority = std::numeric_limits<uint8_t>::max();
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600251 if (!restorePriority(id, priority))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500252 {
Adriana Kobylakee590c72017-09-26 15:16:06 -0500253 if (isVersionFunctional)
254 {
255 priority = 0;
256 }
257 else
258 {
259 log<level::ERR>("Unable to restore priority from file.",
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600260 entry("VERSIONID=%s", id.c_str()));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500261 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500262 }
263 activations.find(id)->second->redundancyPriority =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600264 std::make_unique<RedundancyPriority>(
265 bus, path, *(activations.find(id)->second), priority,
266 false);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500267 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500268 }
269 }
Saqib Khandcbfa042017-09-18 13:08:39 -0500270
271 // If there is no ubi volume for bmc version then read the /etc/os-release
272 // and create rofs-<versionId> under /media
273 if (activations.size() == 0)
274 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500275 auto version = VersionClass::getBMCVersion(OS_RELEASE_FILE);
Saqib Khandcbfa042017-09-18 13:08:39 -0500276 auto id = phosphor::software::manager::Version::getId(version);
277 auto versionFileDir = BMC_ROFS_PREFIX + id + "/etc/";
278 try
279 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500280 if (!fs::is_directory(versionFileDir))
Saqib Khandcbfa042017-09-18 13:08:39 -0500281 {
282 fs::create_directories(versionFileDir);
283 }
284 auto versionFilePath = BMC_ROFS_PREFIX + id + OS_RELEASE_FILE;
285 fs::create_directory_symlink(OS_RELEASE_FILE, versionFilePath);
286 ItemUpdater::processBMCImage();
287 }
288 catch (const std::exception& e)
289 {
290 log<level::ERR>(e.what());
291 }
292 }
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600293
294 mirrorUbootToAlt();
Saqib Khanba239882017-05-26 08:41:54 -0500295 return;
296}
297
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500298void ItemUpdater::erase(std::string entryId)
299{
Eddie James6d873712017-09-01 11:29:07 -0500300 // Find entry in versions map
301 auto it = versions.find(entryId);
302 if (it != versions.end())
303 {
Lei YU0f88b5a2018-08-21 15:28:53 +0800304 if (it->second->isFunctional() && ACTIVE_BMC_MAX_ALLOWED > 1)
Eddie James6d873712017-09-01 11:29:07 -0500305 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600306 log<level::ERR>("Error: Version is currently running on the BMC. "
307 "Unable to remove.",
308 entry("VERSIONID=%s", entryId.c_str()));
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500309 return;
Eddie James6d873712017-09-01 11:29:07 -0500310 }
311
312 // Delete ReadOnly partitions if it's not active
313 removeReadOnlyPartition(entryId);
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600314 removePersistDataDirectory(entryId);
Saqib Khanee13e832017-10-23 12:53:11 -0500315
316 // Removing entry in versions map
317 this->versions.erase(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500318 }
319 else
320 {
321 // Delete ReadOnly partitions even if we can't find the version
322 removeReadOnlyPartition(entryId);
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600323 removePersistDataDirectory(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500324
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600325 log<level::ERR>("Error: Failed to find version in item updater "
326 "versions map. Unable to remove.",
327 entry("VERSIONID=%s", entryId.c_str()));
Eddie James6d873712017-09-01 11:29:07 -0500328 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500329
Lei YU56aaf452018-06-21 16:09:44 +0800330 helper.clearEntry(entryId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500331
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500332 // Removing entry in activations map
333 auto ita = activations.find(entryId);
334 if (ita == activations.end())
335 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600336 log<level::ERR>("Error: Failed to find version in item updater "
337 "activations map. Unable to remove.",
338 entry("VERSIONID=%s", entryId.c_str()));
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500339 }
Saqib Khanee13e832017-10-23 12:53:11 -0500340 else
341 {
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600342 removeAssociations(ita->second->path);
Saqib Khanee13e832017-10-23 12:53:11 -0500343 this->activations.erase(entryId);
344 }
Saqib Khan49446ae2017-10-02 10:54:20 -0500345 ItemUpdater::resetUbootEnvVars();
Saqib Khanee13e832017-10-23 12:53:11 -0500346 return;
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500347}
348
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500349void ItemUpdater::deleteAll()
350{
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600351 std::vector<std::string> deletableVersions;
352
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500353 for (const auto& versionIt : versions)
354 {
355 if (!versionIt.second->isFunctional())
356 {
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600357 deletableVersions.push_back(versionIt.first);
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500358 }
359 }
360
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600361 for (const auto& deletableIt : deletableVersions)
362 {
363 ItemUpdater::erase(deletableIt);
364 }
365
Lei YU56aaf452018-06-21 16:09:44 +0800366 helper.cleanup();
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500367}
368
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600369ItemUpdater::ActivationStatus
370 ItemUpdater::validateSquashFSImage(const std::string& filePath)
Saqib Khan35e83f32017-05-22 11:37:32 -0500371{
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500372 bool invalid = false;
Saqib Khan35e83f32017-05-22 11:37:32 -0500373
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500374 for (auto& bmcImage : bmcImages)
Saqib Khan35e83f32017-05-22 11:37:32 -0500375 {
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500376 fs::path file(filePath);
377 file /= bmcImage;
378 std::ifstream efile(file.c_str());
379 if (efile.good() != 1)
380 {
381 log<level::ERR>("Failed to find the BMC image.",
Gunnar Mills9a782242017-08-22 16:23:15 -0500382 entry("IMAGE=%s", bmcImage.c_str()));
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500383 invalid = true;
384 }
Saqib Khan35e83f32017-05-22 11:37:32 -0500385 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500386
387 if (invalid)
Saqib Khan35e83f32017-05-22 11:37:32 -0500388 {
Saqib Khan35e83f32017-05-22 11:37:32 -0500389 return ItemUpdater::ActivationStatus::invalid;
390 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500391
392 return ItemUpdater::ActivationStatus::ready;
Saqib Khan35e83f32017-05-22 11:37:32 -0500393}
394
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500395void ItemUpdater::savePriority(const std::string& versionId, uint8_t value)
396{
Adriana Kobylak687e75e2019-11-07 11:23:25 -0600397 storePriority(versionId, value);
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500398 helper.setEntry(versionId, value);
399}
400
Saqib Khanb9da6632017-09-13 09:48:37 -0500401void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500402{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500403 std::map<std::string, uint8_t> priorityMap;
404
405 // Insert the requested version and priority, it may not exist yet.
406 priorityMap.insert(std::make_pair(versionId, value));
407
Saqib Khan4c1aec02017-07-06 11:46:13 -0500408 for (const auto& intf : activations)
409 {
Gunnar Mills9a782242017-08-22 16:23:15 -0500410 if (intf.second->redundancyPriority)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500411 {
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500412 priorityMap.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600413 intf.first, intf.second->redundancyPriority.get()->priority()));
Saqib Khan4c1aec02017-07-06 11:46:13 -0500414 }
415 }
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500416
417 // Lambda function to compare 2 priority values, use <= to allow duplicates
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600418 typedef std::function<bool(std::pair<std::string, uint8_t>,
419 std::pair<std::string, uint8_t>)>
420 cmpPriority;
421 cmpPriority cmpPriorityFunc =
422 [](std::pair<std::string, uint8_t> priority1,
423 std::pair<std::string, uint8_t> priority2) {
424 return priority1.second <= priority2.second;
425 };
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500426
427 // Sort versions by ascending priority
428 std::set<std::pair<std::string, uint8_t>, cmpPriority> prioritySet(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600429 priorityMap.begin(), priorityMap.end(), cmpPriorityFunc);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500430
431 auto freePriorityValue = value;
432 for (auto& element : prioritySet)
433 {
434 if (element.first == versionId)
435 {
436 continue;
437 }
438 if (element.second == freePriorityValue)
439 {
440 ++freePriorityValue;
441 auto it = activations.find(element.first);
442 it->second->redundancyPriority.get()->sdbusPriority(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600443 freePriorityValue);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500444 }
445 }
446
447 auto lowestVersion = prioritySet.begin()->first;
448 if (value == prioritySet.begin()->second)
449 {
450 lowestVersion = versionId;
451 }
452 updateUbootEnvVars(lowestVersion);
Saqib Khan4c1aec02017-07-06 11:46:13 -0500453}
454
Michael Tritz37a59042017-07-12 13:44:53 -0500455void ItemUpdater::reset()
456{
Lei YU56aaf452018-06-21 16:09:44 +0800457 helper.factoryReset();
Michael Tritz37a59042017-07-12 13:44:53 -0500458
459 log<level::INFO>("BMC factory reset will take effect upon reboot.");
Michael Tritz37a59042017-07-12 13:44:53 -0500460}
461
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500462void ItemUpdater::removeReadOnlyPartition(std::string versionId)
463{
Lei YU56aaf452018-06-21 16:09:44 +0800464 helper.removeVersion(versionId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500465}
466
Michael Tritz0129d922017-08-10 19:33:46 -0500467bool ItemUpdater::fieldModeEnabled(bool value)
468{
469 // enabling field mode is intended to be one way: false -> true
470 if (value && !control::FieldMode::fieldModeEnabled())
471 {
472 control::FieldMode::fieldModeEnabled(value);
473
Adriana Kobylak22848ec2019-10-28 10:08:39 -0500474 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
475 SYSTEMD_INTERFACE, "StartUnit");
476 method.append("obmc-flash-bmc-setenv@fieldmode\\x3dtrue.service",
477 "replace");
478 bus.call_noreply(method);
479
480 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
481 SYSTEMD_INTERFACE, "StopUnit");
482 method.append("usr-local.mount", "replace");
483 bus.call_noreply(method);
484
485 std::vector<std::string> usrLocal = {"usr-local.mount"};
486
487 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
488 SYSTEMD_INTERFACE, "MaskUnitFiles");
489 method.append(usrLocal, false, true);
490 bus.call_noreply(method);
Michael Tritz0129d922017-08-10 19:33:46 -0500491 }
Adriana Kobylakd5b8f752019-05-01 11:52:35 -0500492 else if (!value && control::FieldMode::fieldModeEnabled())
493 {
494 elog<NotAllowed>(xyz::openbmc_project::Common::NotAllowed::REASON(
495 "FieldMode is not allowed to be cleared"));
496 }
Michael Tritz0129d922017-08-10 19:33:46 -0500497
498 return control::FieldMode::fieldModeEnabled();
499}
500
501void ItemUpdater::restoreFieldModeStatus()
502{
Michael Tritzff0b4212017-10-24 17:38:09 -0500503 std::ifstream input("/dev/mtd/u-boot-env");
Michael Tritz0129d922017-08-10 19:33:46 -0500504 std::string envVar;
505 std::getline(input, envVar);
506
Gunnar Mills9a782242017-08-22 16:23:15 -0500507 if (envVar.find("fieldmode=true") != std::string::npos)
Michael Tritz0129d922017-08-10 19:33:46 -0500508 {
509 ItemUpdater::fieldModeEnabled(true);
510 }
511}
512
Gunnar Millsb60add12017-08-24 16:41:42 -0500513void ItemUpdater::setBMCInventoryPath()
514{
Gunnar Millsb60add12017-08-24 16:41:42 -0500515 auto depth = 0;
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600516 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
517 MAPPER_INTERFACE, "GetSubTreePaths");
Gunnar Millsb60add12017-08-24 16:41:42 -0500518
Adriana Kobylak1254c622017-12-07 12:24:56 -0600519 mapperCall.append(INVENTORY_PATH);
Gunnar Millsb60add12017-08-24 16:41:42 -0500520 mapperCall.append(depth);
Adriana Kobylak1254c622017-12-07 12:24:56 -0600521 std::vector<std::string> filter = {BMC_INVENTORY_INTERFACE};
Gunnar Millsb60add12017-08-24 16:41:42 -0500522 mapperCall.append(filter);
523
Ed Tanous87c78172018-08-10 12:51:53 -0700524 try
525 {
526 auto response = bus.call(mapperCall);
527
528 using ObjectPaths = std::vector<std::string>;
529 ObjectPaths result;
530 response.read(result);
531
532 if (!result.empty())
533 {
534 bmcInventoryPath = result.front();
535 }
536 }
537 catch (const sdbusplus::exception::SdBusError& e)
Gunnar Millsb60add12017-08-24 16:41:42 -0500538 {
539 log<level::ERR>("Error in mapper GetSubTreePath");
540 return;
541 }
542
Adriana Kobylak1254c622017-12-07 12:24:56 -0600543 return;
Gunnar Millsb60add12017-08-24 16:41:42 -0500544}
545
Gunnar Millsf10b2322017-09-21 15:31:55 -0500546void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500547{
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600548 assocs.emplace_back(
549 std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path));
Gunnar Millsded875d2017-08-28 16:44:52 -0500550 associations(assocs);
551}
552
Gunnar Mills88e8a322017-09-13 11:09:28 -0500553void ItemUpdater::createFunctionalAssociation(const std::string& path)
554{
555 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600556 FUNCTIONAL_REV_ASSOCIATION, path));
Gunnar Mills88e8a322017-09-13 11:09:28 -0500557 associations(assocs);
558}
559
AppaRao Pulibbebec72020-01-28 23:57:41 +0530560void ItemUpdater::createUpdateableAssociation(const std::string& path)
561{
562 assocs.emplace_back(std::make_tuple(UPDATEABLE_FWD_ASSOCIATION,
563 UPDATEABLE_REV_ASSOCIATION, path));
564 associations(assocs);
565}
566
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600567void ItemUpdater::removeAssociations(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500568{
569 for (auto iter = assocs.begin(); iter != assocs.end();)
570 {
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600571 if ((std::get<2>(*iter)).compare(path) == 0)
Gunnar Millsded875d2017-08-28 16:44:52 -0500572 {
573 iter = assocs.erase(iter);
574 associations(assocs);
575 }
576 else
577 {
578 ++iter;
579 }
580 }
581}
582
Saqib Khanb9da6632017-09-13 09:48:37 -0500583bool ItemUpdater::isLowestPriority(uint8_t value)
584{
585 for (const auto& intf : activations)
586 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500587 if (intf.second->redundancyPriority)
Saqib Khanb9da6632017-09-13 09:48:37 -0500588 {
589 if (intf.second->redundancyPriority.get()->priority() < value)
590 {
591 return false;
592 }
593 }
594 }
595 return true;
596}
597
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500598void ItemUpdater::updateUbootEnvVars(const std::string& versionId)
599{
Lei YU56aaf452018-06-21 16:09:44 +0800600 helper.updateUbootVersionId(versionId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500601}
602
Saqib Khan49446ae2017-10-02 10:54:20 -0500603void ItemUpdater::resetUbootEnvVars()
604{
605 decltype(activations.begin()->second->redundancyPriority.get()->priority())
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600606 lowestPriority = std::numeric_limits<uint8_t>::max();
Saqib Khan49446ae2017-10-02 10:54:20 -0500607 decltype(activations.begin()->second->versionId) lowestPriorityVersion;
608 for (const auto& intf : activations)
609 {
610 if (!intf.second->redundancyPriority.get())
611 {
612 // Skip this version if the redundancyPriority is not initialized.
613 continue;
614 }
615
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600616 if (intf.second->redundancyPriority.get()->priority() <= lowestPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500617 {
618 lowestPriority = intf.second->redundancyPriority.get()->priority();
619 lowestPriorityVersion = intf.second->versionId;
620 }
621 }
622
Saqib Khanf0382c32017-10-24 13:36:22 -0500623 // Update the U-boot environment variable to point to the lowest priority
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500624 updateUbootEnvVars(lowestPriorityVersion);
Saqib Khan49446ae2017-10-02 10:54:20 -0500625}
626
Adriana Kobylaka6963592018-09-07 14:13:29 -0500627void ItemUpdater::freeSpace(Activation& caller)
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600628{
629 // Versions with the highest priority in front
630 std::priority_queue<std::pair<int, std::string>,
631 std::vector<std::pair<int, std::string>>,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600632 std::less<std::pair<int, std::string>>>
633 versionsPQ;
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600634
635 std::size_t count = 0;
636 for (const auto& iter : activations)
637 {
638 if ((iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600639 server::Activation::Activations::Active) ||
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600640 (iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600641 server::Activation::Activations::Failed))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600642 {
643 count++;
644 // Don't put the functional version on the queue since we can't
645 // remove the "running" BMC version.
Lei YU0f88b5a2018-08-21 15:28:53 +0800646 // If ACTIVE_BMC_MAX_ALLOWED <= 1, there is only one active BMC,
647 // so remove functional version as well.
Adriana Kobylaka6963592018-09-07 14:13:29 -0500648 // Don't delete the the Activation object that called this function.
649 if ((versions.find(iter.second->versionId)
650 ->second->isFunctional() &&
651 ACTIVE_BMC_MAX_ALLOWED > 1) ||
652 (iter.second->versionId == caller.versionId))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600653 {
654 continue;
655 }
Adriana Kobylaka6963592018-09-07 14:13:29 -0500656
657 // Failed activations don't have priority, assign them a large value
658 // for sorting purposes.
659 auto priority = 999;
660 if (iter.second.get()->activation() ==
661 server::Activation::Activations::Active)
662 {
663 priority = iter.second->redundancyPriority.get()->priority();
664 }
665
666 versionsPQ.push(std::make_pair(priority, iter.second->versionId));
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600667 }
668 }
669
670 // If the number of BMC versions is over ACTIVE_BMC_MAX_ALLOWED -1,
671 // remove the highest priority one(s).
672 while ((count >= ACTIVE_BMC_MAX_ALLOWED) && (!versionsPQ.empty()))
673 {
674 erase(versionsPQ.top().second);
675 versionsPQ.pop();
676 count--;
677 }
678}
679
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600680void ItemUpdater::mirrorUbootToAlt()
681{
Lei YU56aaf452018-06-21 16:09:44 +0800682 helper.mirrorAlt();
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600683}
684
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500685} // namespace updater
686} // namespace software
687} // namespace phosphor