blob: e2d0f94838b23d852399555a7d8f09d221dbc6c5 [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
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500359void ItemUpdater::savePriority(const std::string& versionId, uint8_t value)
360{
361 storeToFile(versionId, value);
362 helper.setEntry(versionId, value);
363}
364
Saqib Khanb9da6632017-09-13 09:48:37 -0500365void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500366{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500367 std::map<std::string, uint8_t> priorityMap;
368
369 // Insert the requested version and priority, it may not exist yet.
370 priorityMap.insert(std::make_pair(versionId, value));
371
Saqib Khan4c1aec02017-07-06 11:46:13 -0500372 for (const auto& intf : activations)
373 {
Gunnar Mills9a782242017-08-22 16:23:15 -0500374 if (intf.second->redundancyPriority)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500375 {
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500376 priorityMap.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600377 intf.first, intf.second->redundancyPriority.get()->priority()));
Saqib Khan4c1aec02017-07-06 11:46:13 -0500378 }
379 }
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500380
381 // Lambda function to compare 2 priority values, use <= to allow duplicates
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600382 typedef std::function<bool(std::pair<std::string, uint8_t>,
383 std::pair<std::string, uint8_t>)>
384 cmpPriority;
385 cmpPriority cmpPriorityFunc =
386 [](std::pair<std::string, uint8_t> priority1,
387 std::pair<std::string, uint8_t> priority2) {
388 return priority1.second <= priority2.second;
389 };
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500390
391 // Sort versions by ascending priority
392 std::set<std::pair<std::string, uint8_t>, cmpPriority> prioritySet(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600393 priorityMap.begin(), priorityMap.end(), cmpPriorityFunc);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500394
395 auto freePriorityValue = value;
396 for (auto& element : prioritySet)
397 {
398 if (element.first == versionId)
399 {
400 continue;
401 }
402 if (element.second == freePriorityValue)
403 {
404 ++freePriorityValue;
405 auto it = activations.find(element.first);
406 it->second->redundancyPriority.get()->sdbusPriority(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600407 freePriorityValue);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500408 }
409 }
410
411 auto lowestVersion = prioritySet.begin()->first;
412 if (value == prioritySet.begin()->second)
413 {
414 lowestVersion = versionId;
415 }
416 updateUbootEnvVars(lowestVersion);
Saqib Khan4c1aec02017-07-06 11:46:13 -0500417}
418
Michael Tritz37a59042017-07-12 13:44:53 -0500419void ItemUpdater::reset()
420{
Lei YU56aaf452018-06-21 16:09:44 +0800421 helper.factoryReset();
Michael Tritz37a59042017-07-12 13:44:53 -0500422
423 log<level::INFO>("BMC factory reset will take effect upon reboot.");
Michael Tritz37a59042017-07-12 13:44:53 -0500424}
425
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500426void ItemUpdater::removeReadOnlyPartition(std::string versionId)
427{
Lei YU56aaf452018-06-21 16:09:44 +0800428 helper.removeVersion(versionId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500429}
430
Michael Tritz0129d922017-08-10 19:33:46 -0500431bool ItemUpdater::fieldModeEnabled(bool value)
432{
433 // enabling field mode is intended to be one way: false -> true
434 if (value && !control::FieldMode::fieldModeEnabled())
435 {
436 control::FieldMode::fieldModeEnabled(value);
437
Lei YU56aaf452018-06-21 16:09:44 +0800438 helper.enableFieldMode();
Michael Tritz0129d922017-08-10 19:33:46 -0500439 }
440
441 return control::FieldMode::fieldModeEnabled();
442}
443
444void ItemUpdater::restoreFieldModeStatus()
445{
Michael Tritzff0b4212017-10-24 17:38:09 -0500446 std::ifstream input("/dev/mtd/u-boot-env");
Michael Tritz0129d922017-08-10 19:33:46 -0500447 std::string envVar;
448 std::getline(input, envVar);
449
Gunnar Mills9a782242017-08-22 16:23:15 -0500450 if (envVar.find("fieldmode=true") != std::string::npos)
Michael Tritz0129d922017-08-10 19:33:46 -0500451 {
452 ItemUpdater::fieldModeEnabled(true);
453 }
454}
455
Gunnar Millsb60add12017-08-24 16:41:42 -0500456void ItemUpdater::setBMCInventoryPath()
457{
Gunnar Millsb60add12017-08-24 16:41:42 -0500458 auto depth = 0;
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600459 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
460 MAPPER_INTERFACE, "GetSubTreePaths");
Gunnar Millsb60add12017-08-24 16:41:42 -0500461
Adriana Kobylak1254c622017-12-07 12:24:56 -0600462 mapperCall.append(INVENTORY_PATH);
Gunnar Millsb60add12017-08-24 16:41:42 -0500463 mapperCall.append(depth);
Adriana Kobylak1254c622017-12-07 12:24:56 -0600464 std::vector<std::string> filter = {BMC_INVENTORY_INTERFACE};
Gunnar Millsb60add12017-08-24 16:41:42 -0500465 mapperCall.append(filter);
466
Ed Tanous87c78172018-08-10 12:51:53 -0700467 try
468 {
469 auto response = bus.call(mapperCall);
470
471 using ObjectPaths = std::vector<std::string>;
472 ObjectPaths result;
473 response.read(result);
474
475 if (!result.empty())
476 {
477 bmcInventoryPath = result.front();
478 }
479 }
480 catch (const sdbusplus::exception::SdBusError& e)
Gunnar Millsb60add12017-08-24 16:41:42 -0500481 {
482 log<level::ERR>("Error in mapper GetSubTreePath");
483 return;
484 }
485
Adriana Kobylak1254c622017-12-07 12:24:56 -0600486 return;
Gunnar Millsb60add12017-08-24 16:41:42 -0500487}
488
Gunnar Millsf10b2322017-09-21 15:31:55 -0500489void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500490{
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600491 assocs.emplace_back(
492 std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path));
Gunnar Millsded875d2017-08-28 16:44:52 -0500493 associations(assocs);
494}
495
Gunnar Mills88e8a322017-09-13 11:09:28 -0500496void ItemUpdater::createFunctionalAssociation(const std::string& path)
497{
498 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600499 FUNCTIONAL_REV_ASSOCIATION, path));
Gunnar Mills88e8a322017-09-13 11:09:28 -0500500 associations(assocs);
501}
502
Gunnar Millsf10b2322017-09-21 15:31:55 -0500503void ItemUpdater::removeActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500504{
505 for (auto iter = assocs.begin(); iter != assocs.end();)
506 {
Gunnar Mills88e8a322017-09-13 11:09:28 -0500507 // Since there could be multiple associations to the same path,
508 // only remove ones that have an active forward association.
509 if ((std::get<0>(*iter)).compare(ACTIVE_FWD_ASSOCIATION) == 0 &&
510 (std::get<2>(*iter)).compare(path) == 0)
Gunnar Millsded875d2017-08-28 16:44:52 -0500511 {
512 iter = assocs.erase(iter);
513 associations(assocs);
514 }
515 else
516 {
517 ++iter;
518 }
519 }
520}
521
Saqib Khanb9da6632017-09-13 09:48:37 -0500522bool ItemUpdater::isLowestPriority(uint8_t value)
523{
524 for (const auto& intf : activations)
525 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500526 if (intf.second->redundancyPriority)
Saqib Khanb9da6632017-09-13 09:48:37 -0500527 {
528 if (intf.second->redundancyPriority.get()->priority() < value)
529 {
530 return false;
531 }
532 }
533 }
534 return true;
535}
536
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500537void ItemUpdater::updateUbootEnvVars(const std::string& versionId)
538{
Lei YU56aaf452018-06-21 16:09:44 +0800539 helper.updateUbootVersionId(versionId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500540}
541
Saqib Khan49446ae2017-10-02 10:54:20 -0500542void ItemUpdater::resetUbootEnvVars()
543{
544 decltype(activations.begin()->second->redundancyPriority.get()->priority())
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600545 lowestPriority = std::numeric_limits<uint8_t>::max();
Saqib Khan49446ae2017-10-02 10:54:20 -0500546 decltype(activations.begin()->second->versionId) lowestPriorityVersion;
547 for (const auto& intf : activations)
548 {
549 if (!intf.second->redundancyPriority.get())
550 {
551 // Skip this version if the redundancyPriority is not initialized.
552 continue;
553 }
554
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600555 if (intf.second->redundancyPriority.get()->priority() <= lowestPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500556 {
557 lowestPriority = intf.second->redundancyPriority.get()->priority();
558 lowestPriorityVersion = intf.second->versionId;
559 }
560 }
561
Saqib Khanf0382c32017-10-24 13:36:22 -0500562 // Update the U-boot environment variable to point to the lowest priority
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500563 updateUbootEnvVars(lowestPriorityVersion);
Saqib Khan49446ae2017-10-02 10:54:20 -0500564}
565
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600566void ItemUpdater::freeSpace()
567{
568 // Versions with the highest priority in front
569 std::priority_queue<std::pair<int, std::string>,
570 std::vector<std::pair<int, std::string>>,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600571 std::less<std::pair<int, std::string>>>
572 versionsPQ;
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600573
574 std::size_t count = 0;
575 for (const auto& iter : activations)
576 {
577 if ((iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600578 server::Activation::Activations::Active) ||
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600579 (iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600580 server::Activation::Activations::Failed))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600581 {
582 count++;
583 // Don't put the functional version on the queue since we can't
584 // remove the "running" BMC version.
585 if (versions.find(iter.second->versionId)->second->isFunctional())
586 {
587 continue;
588 }
589 versionsPQ.push(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600590 iter.second->redundancyPriority.get()->priority(),
591 iter.second->versionId));
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600592 }
593 }
594
595 // If the number of BMC versions is over ACTIVE_BMC_MAX_ALLOWED -1,
596 // remove the highest priority one(s).
597 while ((count >= ACTIVE_BMC_MAX_ALLOWED) && (!versionsPQ.empty()))
598 {
599 erase(versionsPQ.top().second);
600 versionsPQ.pop();
601 count--;
602 }
603}
604
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600605void ItemUpdater::mirrorUbootToAlt()
606{
Lei YU56aaf452018-06-21 16:09:44 +0800607 helper.mirrorAlt();
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600608}
609
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500610} // namespace updater
611} // namespace software
612} // namespace phosphor