blob: 1bbf200d67819cc345b2fb52031c5e37802fc93f [file] [log] [blame]
Saqib Khan35e83f32017-05-22 11:37:32 -05001#include <fstream>
Adriana Kobylak204e1e72018-01-24 16:00:05 -06002#include <queue>
Adriana Kobylakb77551c2017-10-27 12:46:23 -05003#include <set>
Gunnar Millsec1b41c2017-05-02 12:20:36 -05004#include <string>
Gunnar Mills2ce7da22017-05-04 15:37:56 -05005#include <phosphor-logging/log.hpp>
Saqib Khandcbfa042017-09-18 13:08:39 -05006#include <phosphor-logging/elog.hpp>
7#include <elog-errors.hpp>
8#include <xyz/openbmc_project/Software/Version/error.hpp>
Gunnar Millsec1b41c2017-05-02 12:20:36 -05009#include "config.h"
Gunnar Mills2ce7da22017-05-04 15:37:56 -050010#include "item_updater.hpp"
11#include "xyz/openbmc_project/Software/Version/server.hpp"
Saqib Khan35e83f32017-05-22 11:37:32 -050012#include <experimental/filesystem>
Saqib Khan705f1bf2017-06-09 23:58:38 -050013#include "version.hpp"
Saqib Khan5d532672017-08-09 10:44:50 -050014#include "serialize.hpp"
Lei YU1be8d502018-06-20 11:48:36 +080015#include "images.hpp"
Gunnar Millsec1b41c2017-05-02 12:20:36 -050016
17namespace phosphor
18{
19namespace software
20{
21namespace updater
22{
23
Gunnar Mills2ce7da22017-05-04 15:37:56 -050024// When you see server:: you know we're referencing our base class
25namespace server = sdbusplus::xyz::openbmc_project::Software::server;
Michael Tritz0129d922017-08-10 19:33:46 -050026namespace control = sdbusplus::xyz::openbmc_project::Control::server;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050027
28using namespace phosphor::logging;
Saqib Khandcbfa042017-09-18 13:08:39 -050029using namespace sdbusplus::xyz::openbmc_project::Software::Version::Error;
Jayanth Othayoth2ab9b102018-02-21 05:27:47 -060030using namespace phosphor::software::image;
Saqib Khan35e83f32017-05-22 11:37:32 -050031namespace fs = std::experimental::filesystem;
32
Patrick Williamse75d10f2017-05-30 16:56:32 -050033void ItemUpdater::createActivation(sdbusplus::message::message& msg)
Gunnar Millsec1b41c2017-05-02 12:20:36 -050034{
Saqib Khan84a0e692017-06-28 17:27:01 -050035
36 using SVersion = server::Version;
37 using VersionPurpose = SVersion::VersionPurpose;
Gunnar Mills9a782242017-08-22 16:23:15 -050038 using VersionClass = phosphor::software::manager::Version;
Saqib Khan84a0e692017-06-28 17:27:01 -050039 namespace mesg = sdbusplus::message;
40 namespace variant_ns = mesg::variant_ns;
41
42 mesg::object_path objPath;
43 auto purpose = VersionPurpose::Unknown;
Saqib Khan705f1bf2017-06-09 23:58:38 -050044 std::string version;
Adriana Kobylak2285fe02018-02-27 15:36:59 -060045 std::map<std::string, std::map<std::string, mesg::variant<std::string>>>
46 interfaces;
Patrick Williamse75d10f2017-05-30 16:56:32 -050047 msg.read(objPath, interfaces);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050048 std::string path(std::move(objPath));
Saqib Khan19177d32017-06-20 08:11:49 -050049 std::string filePath;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050050
51 for (const auto& intf : interfaces)
52 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050053 if (intf.first == VERSION_IFACE)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050054 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050055 for (const auto& property : intf.second)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050056 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050057 if (property.first == "Purpose")
Gunnar Mills2ce7da22017-05-04 15:37:56 -050058 {
Saqib Khan84a0e692017-06-28 17:27:01 -050059 auto value = SVersion::convertVersionPurposeFromString(
Adriana Kobylak2285fe02018-02-27 15:36:59 -060060 variant_ns::get<std::string>(property.second));
Saqib Khan84a0e692017-06-28 17:27:01 -050061 if (value == VersionPurpose::BMC ||
62 value == VersionPurpose::System)
63 {
64 purpose = value;
65 }
Saqib Khan705f1bf2017-06-09 23:58:38 -050066 }
67 else if (property.first == "Version")
68 {
Saqib Khan84a0e692017-06-28 17:27:01 -050069 version = variant_ns::get<std::string>(property.second);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050070 }
71 }
72 }
Saqib Khan19177d32017-06-20 08:11:49 -050073 else if (intf.first == FILEPATH_IFACE)
74 {
75 for (const auto& property : intf.second)
76 {
77 if (property.first == "Path")
78 {
Saqib Khan84a0e692017-06-28 17:27:01 -050079 filePath = variant_ns::get<std::string>(property.second);
Saqib Khan19177d32017-06-20 08:11:49 -050080 }
81 }
82 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -050083 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -060084 if (version.empty() || filePath.empty() ||
Saqib Khan84a0e692017-06-28 17:27:01 -050085 purpose == VersionPurpose::Unknown)
Saqib Khan705f1bf2017-06-09 23:58:38 -050086 {
87 return;
88 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -050089
90 // Version id is the last item in the path
91 auto pos = path.rfind("/");
92 if (pos == std::string::npos)
93 {
94 log<level::ERR>("No version id found in object path",
Adriana Kobylak596466b2018-02-13 14:48:53 -060095 entry("OBJPATH=%s", path.c_str()));
Patrick Williamse75d10f2017-05-30 16:56:32 -050096 return;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050097 }
98
99 auto versionId = path.substr(pos + 1);
100
Patrick Williamse75d10f2017-05-30 16:56:32 -0500101 if (activations.find(versionId) == activations.end())
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500102 {
Saqib Khan35e83f32017-05-22 11:37:32 -0500103 // Determine the Activation state by processing the given image dir.
104 auto activationState = server::Activation::Activations::Invalid;
Gunnar Mills9a782242017-08-22 16:23:15 -0500105 ItemUpdater::ActivationStatus result =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600106 ItemUpdater::validateSquashFSImage(filePath);
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500107 AssociationList associations = {};
108
Saqib Khan35e83f32017-05-22 11:37:32 -0500109 if (result == ItemUpdater::ActivationStatus::ready)
110 {
111 activationState = server::Activation::Activations::Ready;
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500112 // Create an association to the BMC inventory item
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600113 associations.emplace_back(
114 std::make_tuple(ACTIVATION_FWD_ASSOCIATION,
115 ACTIVATION_REV_ASSOCIATION, bmcInventoryPath));
Saqib Khan35e83f32017-05-22 11:37:32 -0500116 }
Gunnar Millsb60add12017-08-24 16:41:42 -0500117
Saqib Khanee13e832017-10-23 12:53:11 -0500118 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600119 versionId,
120 std::make_unique<Activation>(bus, path, *this, versionId,
121 activationState, associations)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500122
Saqib Khanee13e832017-10-23 12:53:11 -0500123 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600124 bus, path, version, purpose, filePath,
125 std::bind(&ItemUpdater::erase, this, std::placeholders::_1));
Saqib Khanee13e832017-10-23 12:53:11 -0500126 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600127 std::make_unique<phosphor::software::manager::Delete>(bus, path,
128 *versionPtr);
Saqib Khanee13e832017-10-23 12:53:11 -0500129 versions.insert(std::make_pair(versionId, std::move(versionPtr)));
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500130 }
Patrick Williamse75d10f2017-05-30 16:56:32 -0500131 return;
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500132}
133
Saqib Khanba239882017-05-26 08:41:54 -0500134void ItemUpdater::processBMCImage()
135{
Gunnar Mills88e8a322017-09-13 11:09:28 -0500136 using VersionClass = phosphor::software::manager::Version;
137 // Read os-release from /etc/ to get the functional BMC version
138 auto functionalVersion = VersionClass::getBMCVersion(OS_RELEASE_FILE);
139
Saqib Khan1eef62d2017-08-10 15:29:34 -0500140 // Read os-release from folders under /media/ to get
141 // BMC Software Versions.
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500142 for (const auto& iter : fs::directory_iterator(MEDIA_DIR))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500143 {
144 auto activationState = server::Activation::Activations::Active;
Saqib Khan6fab70d2017-09-07 00:13:50 -0500145 static const auto BMC_RO_PREFIX_LEN = strlen(BMC_ROFS_PREFIX);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500146
147 // Check if the BMC_RO_PREFIXis the prefix of the iter.path
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600148 if (0 ==
149 iter.path().native().compare(0, BMC_RO_PREFIX_LEN, BMC_ROFS_PREFIX))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500150 {
Saqib Khan021c3652017-09-26 12:11:02 -0500151 // The versionId is extracted from the path
152 // for example /media/ro-2a1022fe.
153 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500154 auto osRelease = iter.path() / OS_RELEASE_FILE;
155 if (!fs::is_regular_file(osRelease))
156 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600157 log<level::ERR>(
158 "Failed to read osRelease",
159 entry("FILENAME=%s", osRelease.string().c_str()));
Saqib Khan021c3652017-09-26 12:11:02 -0500160 ItemUpdater::erase(id);
161 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500162 }
Gunnar Mills88e8a322017-09-13 11:09:28 -0500163 auto version = VersionClass::getBMCVersion(osRelease);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500164 if (version.empty())
165 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600166 log<level::ERR>(
167 "Failed to read version from osRelease",
168 entry("FILENAME=%s", osRelease.string().c_str()));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500169 activationState = server::Activation::Activations::Invalid;
170 }
Saqib Khan021c3652017-09-26 12:11:02 -0500171
Saqib Khan1eef62d2017-08-10 15:29:34 -0500172 auto purpose = server::Version::VersionPurpose::BMC;
173 auto path = fs::path(SOFTWARE_OBJPATH) / id;
174
Gunnar Mills88e8a322017-09-13 11:09:28 -0500175 // Create functional association if this is the functional version
176 if (version.compare(functionalVersion) == 0)
177 {
178 createFunctionalAssociation(path);
179 }
180
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500181 AssociationList associations = {};
182
183 if (activationState == server::Activation::Activations::Active)
184 {
185 // Create an association to the BMC inventory item
186 associations.emplace_back(std::make_tuple(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600187 ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
188 bmcInventoryPath));
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500189
190 // Create an active association since this image is active
191 createActiveAssociation(path);
192 }
193
Adriana Kobylakee590c72017-09-26 15:16:06 -0500194 // Create Version instance for this version.
195 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600196 bus, path, version, purpose, "",
197 std::bind(&ItemUpdater::erase, this, std::placeholders::_1));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500198 auto isVersionFunctional = versionPtr->isFunctional();
Michael Tritz4254bec2017-10-03 17:18:22 -0500199 if (!isVersionFunctional)
200 {
Saqib Khanee13e832017-10-23 12:53:11 -0500201 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600202 std::make_unique<phosphor::software::manager::Delete>(
203 bus, path, *versionPtr);
Michael Tritz4254bec2017-10-03 17:18:22 -0500204 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600205 versions.insert(std::make_pair(id, std::move(versionPtr)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500206
Saqib Khanee13e832017-10-23 12:53:11 -0500207 // Create Activation instance for this version.
208 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600209 id, std::make_unique<Activation>(
210 bus, path, *this, id, activationState, associations)));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500211
212 // If Active, create RedundancyPriority instance for this version.
213 if (activationState == server::Activation::Activations::Active)
214 {
215 uint8_t priority = std::numeric_limits<uint8_t>::max();
216 if (!restoreFromFile(id, priority))
217 {
Adriana Kobylakee590c72017-09-26 15:16:06 -0500218 if (isVersionFunctional)
219 {
220 priority = 0;
221 }
222 else
223 {
224 log<level::ERR>("Unable to restore priority from file.",
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600225 entry("VERSIONID=%s", id.c_str()));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500226 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500227 }
228 activations.find(id)->second->redundancyPriority =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600229 std::make_unique<RedundancyPriority>(
230 bus, path, *(activations.find(id)->second), priority,
231 false);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500232 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500233 }
234 }
Saqib Khandcbfa042017-09-18 13:08:39 -0500235
236 // If there is no ubi volume for bmc version then read the /etc/os-release
237 // and create rofs-<versionId> under /media
238 if (activations.size() == 0)
239 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500240 auto version = VersionClass::getBMCVersion(OS_RELEASE_FILE);
Saqib Khandcbfa042017-09-18 13:08:39 -0500241 auto id = phosphor::software::manager::Version::getId(version);
242 auto versionFileDir = BMC_ROFS_PREFIX + id + "/etc/";
243 try
244 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500245 if (!fs::is_directory(versionFileDir))
Saqib Khandcbfa042017-09-18 13:08:39 -0500246 {
247 fs::create_directories(versionFileDir);
248 }
249 auto versionFilePath = BMC_ROFS_PREFIX + id + OS_RELEASE_FILE;
250 fs::create_directory_symlink(OS_RELEASE_FILE, versionFilePath);
251 ItemUpdater::processBMCImage();
252 }
253 catch (const std::exception& e)
254 {
255 log<level::ERR>(e.what());
256 }
257 }
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600258
259 mirrorUbootToAlt();
Saqib Khanba239882017-05-26 08:41:54 -0500260 return;
261}
262
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500263void ItemUpdater::erase(std::string entryId)
264{
Eddie James6d873712017-09-01 11:29:07 -0500265 // Find entry in versions map
266 auto it = versions.find(entryId);
267 if (it != versions.end())
268 {
269 if (it->second->isFunctional())
270 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600271 log<level::ERR>("Error: Version is currently running on the BMC. "
272 "Unable to remove.",
273 entry("VERSIONID=%s", entryId.c_str()));
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500274 return;
Eddie James6d873712017-09-01 11:29:07 -0500275 }
276
277 // Delete ReadOnly partitions if it's not active
278 removeReadOnlyPartition(entryId);
279 removeFile(entryId);
Saqib Khanee13e832017-10-23 12:53:11 -0500280
281 // Removing entry in versions map
282 this->versions.erase(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500283 }
284 else
285 {
286 // Delete ReadOnly partitions even if we can't find the version
287 removeReadOnlyPartition(entryId);
288 removeFile(entryId);
289
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600290 log<level::ERR>("Error: Failed to find version in item updater "
291 "versions map. Unable to remove.",
292 entry("VERSIONID=%s", entryId.c_str()));
Eddie James6d873712017-09-01 11:29:07 -0500293 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500294
Lei YU56aaf452018-06-21 16:09:44 +0800295 helper.clearEntry(entryId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500296
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500297 // Removing entry in activations map
298 auto ita = activations.find(entryId);
299 if (ita == activations.end())
300 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600301 log<level::ERR>("Error: Failed to find version in item updater "
302 "activations map. Unable to remove.",
303 entry("VERSIONID=%s", entryId.c_str()));
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500304 }
Saqib Khanee13e832017-10-23 12:53:11 -0500305 else
306 {
307 this->activations.erase(entryId);
308 }
Saqib Khan49446ae2017-10-02 10:54:20 -0500309 ItemUpdater::resetUbootEnvVars();
Saqib Khanee13e832017-10-23 12:53:11 -0500310 return;
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500311}
312
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500313void ItemUpdater::deleteAll()
314{
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600315 std::vector<std::string> deletableVersions;
316
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500317 for (const auto& versionIt : versions)
318 {
319 if (!versionIt.second->isFunctional())
320 {
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600321 deletableVersions.push_back(versionIt.first);
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500322 }
323 }
324
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600325 for (const auto& deletableIt : deletableVersions)
326 {
327 ItemUpdater::erase(deletableIt);
328 }
329
Lei YU56aaf452018-06-21 16:09:44 +0800330 helper.cleanup();
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500331}
332
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600333ItemUpdater::ActivationStatus
334 ItemUpdater::validateSquashFSImage(const std::string& filePath)
Saqib Khan35e83f32017-05-22 11:37:32 -0500335{
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500336 bool invalid = false;
Saqib Khan35e83f32017-05-22 11:37:32 -0500337
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500338 for (auto& bmcImage : bmcImages)
Saqib Khan35e83f32017-05-22 11:37:32 -0500339 {
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500340 fs::path file(filePath);
341 file /= bmcImage;
342 std::ifstream efile(file.c_str());
343 if (efile.good() != 1)
344 {
345 log<level::ERR>("Failed to find the BMC image.",
Gunnar Mills9a782242017-08-22 16:23:15 -0500346 entry("IMAGE=%s", bmcImage.c_str()));
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500347 invalid = true;
348 }
Saqib Khan35e83f32017-05-22 11:37:32 -0500349 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500350
351 if (invalid)
Saqib Khan35e83f32017-05-22 11:37:32 -0500352 {
Saqib Khan35e83f32017-05-22 11:37:32 -0500353 return ItemUpdater::ActivationStatus::invalid;
354 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500355
356 return ItemUpdater::ActivationStatus::ready;
Saqib Khan35e83f32017-05-22 11:37:32 -0500357}
358
Saqib Khanb9da6632017-09-13 09:48:37 -0500359void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500360{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500361 std::map<std::string, uint8_t> priorityMap;
362
363 // Insert the requested version and priority, it may not exist yet.
364 priorityMap.insert(std::make_pair(versionId, value));
365
Saqib Khan4c1aec02017-07-06 11:46:13 -0500366 for (const auto& intf : activations)
367 {
Gunnar Mills9a782242017-08-22 16:23:15 -0500368 if (intf.second->redundancyPriority)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500369 {
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500370 priorityMap.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600371 intf.first, intf.second->redundancyPriority.get()->priority()));
Saqib Khan4c1aec02017-07-06 11:46:13 -0500372 }
373 }
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500374
375 // Lambda function to compare 2 priority values, use <= to allow duplicates
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600376 typedef std::function<bool(std::pair<std::string, uint8_t>,
377 std::pair<std::string, uint8_t>)>
378 cmpPriority;
379 cmpPriority cmpPriorityFunc =
380 [](std::pair<std::string, uint8_t> priority1,
381 std::pair<std::string, uint8_t> priority2) {
382 return priority1.second <= priority2.second;
383 };
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500384
385 // Sort versions by ascending priority
386 std::set<std::pair<std::string, uint8_t>, cmpPriority> prioritySet(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600387 priorityMap.begin(), priorityMap.end(), cmpPriorityFunc);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500388
389 auto freePriorityValue = value;
390 for (auto& element : prioritySet)
391 {
392 if (element.first == versionId)
393 {
394 continue;
395 }
396 if (element.second == freePriorityValue)
397 {
398 ++freePriorityValue;
399 auto it = activations.find(element.first);
400 it->second->redundancyPriority.get()->sdbusPriority(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600401 freePriorityValue);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500402 }
403 }
404
405 auto lowestVersion = prioritySet.begin()->first;
406 if (value == prioritySet.begin()->second)
407 {
408 lowestVersion = versionId;
409 }
410 updateUbootEnvVars(lowestVersion);
Saqib Khan4c1aec02017-07-06 11:46:13 -0500411}
412
Michael Tritz37a59042017-07-12 13:44:53 -0500413void ItemUpdater::reset()
414{
Lei YU56aaf452018-06-21 16:09:44 +0800415 helper.factoryReset();
Michael Tritz37a59042017-07-12 13:44:53 -0500416
417 log<level::INFO>("BMC factory reset will take effect upon reboot.");
Michael Tritz37a59042017-07-12 13:44:53 -0500418}
419
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500420void ItemUpdater::removeReadOnlyPartition(std::string versionId)
421{
Lei YU56aaf452018-06-21 16:09:44 +0800422 helper.removeVersion(versionId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500423}
424
Michael Tritz0129d922017-08-10 19:33:46 -0500425bool ItemUpdater::fieldModeEnabled(bool value)
426{
427 // enabling field mode is intended to be one way: false -> true
428 if (value && !control::FieldMode::fieldModeEnabled())
429 {
430 control::FieldMode::fieldModeEnabled(value);
431
Lei YU56aaf452018-06-21 16:09:44 +0800432 helper.enableFieldMode();
Michael Tritz0129d922017-08-10 19:33:46 -0500433 }
434
435 return control::FieldMode::fieldModeEnabled();
436}
437
438void ItemUpdater::restoreFieldModeStatus()
439{
Michael Tritzff0b4212017-10-24 17:38:09 -0500440 std::ifstream input("/dev/mtd/u-boot-env");
Michael Tritz0129d922017-08-10 19:33:46 -0500441 std::string envVar;
442 std::getline(input, envVar);
443
Gunnar Mills9a782242017-08-22 16:23:15 -0500444 if (envVar.find("fieldmode=true") != std::string::npos)
Michael Tritz0129d922017-08-10 19:33:46 -0500445 {
446 ItemUpdater::fieldModeEnabled(true);
447 }
448}
449
Gunnar Millsb60add12017-08-24 16:41:42 -0500450void ItemUpdater::setBMCInventoryPath()
451{
Gunnar Millsb60add12017-08-24 16:41:42 -0500452 auto depth = 0;
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600453 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
454 MAPPER_INTERFACE, "GetSubTreePaths");
Gunnar Millsb60add12017-08-24 16:41:42 -0500455
Adriana Kobylak1254c622017-12-07 12:24:56 -0600456 mapperCall.append(INVENTORY_PATH);
Gunnar Millsb60add12017-08-24 16:41:42 -0500457 mapperCall.append(depth);
Adriana Kobylak1254c622017-12-07 12:24:56 -0600458 std::vector<std::string> filter = {BMC_INVENTORY_INTERFACE};
Gunnar Millsb60add12017-08-24 16:41:42 -0500459 mapperCall.append(filter);
460
461 auto response = bus.call(mapperCall);
462 if (response.is_method_error())
463 {
464 log<level::ERR>("Error in mapper GetSubTreePath");
465 return;
466 }
467
468 using ObjectPaths = std::vector<std::string>;
469 ObjectPaths result;
470 response.read(result);
471
Adriana Kobylak1254c622017-12-07 12:24:56 -0600472 if (!result.empty())
Gunnar Millsb60add12017-08-24 16:41:42 -0500473 {
Adriana Kobylak1254c622017-12-07 12:24:56 -0600474 bmcInventoryPath = result.front();
Gunnar Millsb60add12017-08-24 16:41:42 -0500475 }
476
Adriana Kobylak1254c622017-12-07 12:24:56 -0600477 return;
Gunnar Millsb60add12017-08-24 16:41:42 -0500478}
479
Gunnar Millsf10b2322017-09-21 15:31:55 -0500480void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500481{
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600482 assocs.emplace_back(
483 std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path));
Gunnar Millsded875d2017-08-28 16:44:52 -0500484 associations(assocs);
485}
486
Gunnar Mills88e8a322017-09-13 11:09:28 -0500487void ItemUpdater::createFunctionalAssociation(const std::string& path)
488{
489 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600490 FUNCTIONAL_REV_ASSOCIATION, path));
Gunnar Mills88e8a322017-09-13 11:09:28 -0500491 associations(assocs);
492}
493
Gunnar Millsf10b2322017-09-21 15:31:55 -0500494void ItemUpdater::removeActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500495{
496 for (auto iter = assocs.begin(); iter != assocs.end();)
497 {
Gunnar Mills88e8a322017-09-13 11:09:28 -0500498 // Since there could be multiple associations to the same path,
499 // only remove ones that have an active forward association.
500 if ((std::get<0>(*iter)).compare(ACTIVE_FWD_ASSOCIATION) == 0 &&
501 (std::get<2>(*iter)).compare(path) == 0)
Gunnar Millsded875d2017-08-28 16:44:52 -0500502 {
503 iter = assocs.erase(iter);
504 associations(assocs);
505 }
506 else
507 {
508 ++iter;
509 }
510 }
511}
512
Saqib Khanb9da6632017-09-13 09:48:37 -0500513bool ItemUpdater::isLowestPriority(uint8_t value)
514{
515 for (const auto& intf : activations)
516 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500517 if (intf.second->redundancyPriority)
Saqib Khanb9da6632017-09-13 09:48:37 -0500518 {
519 if (intf.second->redundancyPriority.get()->priority() < value)
520 {
521 return false;
522 }
523 }
524 }
525 return true;
526}
527
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500528void ItemUpdater::updateUbootEnvVars(const std::string& versionId)
529{
Lei YU56aaf452018-06-21 16:09:44 +0800530 helper.updateUbootVersionId(versionId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500531}
532
Saqib Khan49446ae2017-10-02 10:54:20 -0500533void ItemUpdater::resetUbootEnvVars()
534{
535 decltype(activations.begin()->second->redundancyPriority.get()->priority())
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600536 lowestPriority = std::numeric_limits<uint8_t>::max();
Saqib Khan49446ae2017-10-02 10:54:20 -0500537 decltype(activations.begin()->second->versionId) lowestPriorityVersion;
538 for (const auto& intf : activations)
539 {
540 if (!intf.second->redundancyPriority.get())
541 {
542 // Skip this version if the redundancyPriority is not initialized.
543 continue;
544 }
545
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600546 if (intf.second->redundancyPriority.get()->priority() <= lowestPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500547 {
548 lowestPriority = intf.second->redundancyPriority.get()->priority();
549 lowestPriorityVersion = intf.second->versionId;
550 }
551 }
552
Saqib Khanf0382c32017-10-24 13:36:22 -0500553 // Update the U-boot environment variable to point to the lowest priority
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500554 updateUbootEnvVars(lowestPriorityVersion);
Saqib Khan49446ae2017-10-02 10:54:20 -0500555}
556
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600557void ItemUpdater::freeSpace()
558{
559 // Versions with the highest priority in front
560 std::priority_queue<std::pair<int, std::string>,
561 std::vector<std::pair<int, std::string>>,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600562 std::less<std::pair<int, std::string>>>
563 versionsPQ;
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600564
565 std::size_t count = 0;
566 for (const auto& iter : activations)
567 {
568 if ((iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600569 server::Activation::Activations::Active) ||
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600570 (iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600571 server::Activation::Activations::Failed))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600572 {
573 count++;
574 // Don't put the functional version on the queue since we can't
575 // remove the "running" BMC version.
576 if (versions.find(iter.second->versionId)->second->isFunctional())
577 {
578 continue;
579 }
580 versionsPQ.push(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600581 iter.second->redundancyPriority.get()->priority(),
582 iter.second->versionId));
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600583 }
584 }
585
586 // If the number of BMC versions is over ACTIVE_BMC_MAX_ALLOWED -1,
587 // remove the highest priority one(s).
588 while ((count >= ACTIVE_BMC_MAX_ALLOWED) && (!versionsPQ.empty()))
589 {
590 erase(versionsPQ.top().second);
591 versionsPQ.pop();
592 count--;
593 }
594}
595
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600596void ItemUpdater::mirrorUbootToAlt()
597{
Lei YU56aaf452018-06-21 16:09:44 +0800598 helper.mirrorAlt();
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600599}
600
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500601} // namespace updater
602} // namespace software
603} // namespace phosphor