blob: 014757d735155e16d67c6aa40dbb1eecdadb72b1 [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;
Lei YU269bff32018-08-21 15:21:40 +0800137
138 // Check MEDIA_DIR and create if it does not exist
139 try
140 {
141 if (!fs::is_directory(MEDIA_DIR))
142 {
143 fs::create_directory(MEDIA_DIR);
144 }
145 }
146 catch (const fs::filesystem_error& e)
147 {
148 log<level::ERR>("Failed to prepare dir", entry("ERR=%s", e.what()));
149 return;
150 }
151
Gunnar Mills88e8a322017-09-13 11:09:28 -0500152 // Read os-release from /etc/ to get the functional BMC version
153 auto functionalVersion = VersionClass::getBMCVersion(OS_RELEASE_FILE);
154
Saqib Khan1eef62d2017-08-10 15:29:34 -0500155 // Read os-release from folders under /media/ to get
156 // BMC Software Versions.
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500157 for (const auto& iter : fs::directory_iterator(MEDIA_DIR))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500158 {
159 auto activationState = server::Activation::Activations::Active;
Saqib Khan6fab70d2017-09-07 00:13:50 -0500160 static const auto BMC_RO_PREFIX_LEN = strlen(BMC_ROFS_PREFIX);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500161
162 // Check if the BMC_RO_PREFIXis the prefix of the iter.path
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600163 if (0 ==
164 iter.path().native().compare(0, BMC_RO_PREFIX_LEN, BMC_ROFS_PREFIX))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500165 {
Saqib Khan021c3652017-09-26 12:11:02 -0500166 // The versionId is extracted from the path
167 // for example /media/ro-2a1022fe.
168 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500169 auto osRelease = iter.path() / OS_RELEASE_FILE;
170 if (!fs::is_regular_file(osRelease))
171 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600172 log<level::ERR>(
173 "Failed to read osRelease",
174 entry("FILENAME=%s", osRelease.string().c_str()));
Saqib Khan021c3652017-09-26 12:11:02 -0500175 ItemUpdater::erase(id);
176 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500177 }
Gunnar Mills88e8a322017-09-13 11:09:28 -0500178 auto version = VersionClass::getBMCVersion(osRelease);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500179 if (version.empty())
180 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600181 log<level::ERR>(
182 "Failed to read version from osRelease",
183 entry("FILENAME=%s", osRelease.string().c_str()));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500184 activationState = server::Activation::Activations::Invalid;
185 }
Saqib Khan021c3652017-09-26 12:11:02 -0500186
Saqib Khan1eef62d2017-08-10 15:29:34 -0500187 auto purpose = server::Version::VersionPurpose::BMC;
188 auto path = fs::path(SOFTWARE_OBJPATH) / id;
189
Lei YU269bff32018-08-21 15:21:40 +0800190 // Create functional association if this is the functional
191 // version
Gunnar Mills88e8a322017-09-13 11:09:28 -0500192 if (version.compare(functionalVersion) == 0)
193 {
194 createFunctionalAssociation(path);
195 }
196
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500197 AssociationList associations = {};
198
199 if (activationState == server::Activation::Activations::Active)
200 {
201 // Create an association to the BMC inventory item
202 associations.emplace_back(std::make_tuple(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600203 ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
204 bmcInventoryPath));
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500205
206 // Create an active association since this image is active
207 createActiveAssociation(path);
208 }
209
Adriana Kobylakee590c72017-09-26 15:16:06 -0500210 // Create Version instance for this version.
211 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600212 bus, path, version, purpose, "",
213 std::bind(&ItemUpdater::erase, this, std::placeholders::_1));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500214 auto isVersionFunctional = versionPtr->isFunctional();
Michael Tritz4254bec2017-10-03 17:18:22 -0500215 if (!isVersionFunctional)
216 {
Saqib Khanee13e832017-10-23 12:53:11 -0500217 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600218 std::make_unique<phosphor::software::manager::Delete>(
219 bus, path, *versionPtr);
Michael Tritz4254bec2017-10-03 17:18:22 -0500220 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600221 versions.insert(std::make_pair(id, std::move(versionPtr)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500222
Saqib Khanee13e832017-10-23 12:53:11 -0500223 // Create Activation instance for this version.
224 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600225 id, std::make_unique<Activation>(
226 bus, path, *this, id, activationState, associations)));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500227
Lei YU269bff32018-08-21 15:21:40 +0800228 // If Active, create RedundancyPriority instance for this
229 // version.
Saqib Khan1eef62d2017-08-10 15:29:34 -0500230 if (activationState == server::Activation::Activations::Active)
231 {
232 uint8_t priority = std::numeric_limits<uint8_t>::max();
233 if (!restoreFromFile(id, priority))
234 {
Adriana Kobylakee590c72017-09-26 15:16:06 -0500235 if (isVersionFunctional)
236 {
237 priority = 0;
238 }
239 else
240 {
241 log<level::ERR>("Unable to restore priority from file.",
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600242 entry("VERSIONID=%s", id.c_str()));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500243 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500244 }
245 activations.find(id)->second->redundancyPriority =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600246 std::make_unique<RedundancyPriority>(
247 bus, path, *(activations.find(id)->second), priority,
248 false);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500249 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500250 }
251 }
Saqib Khandcbfa042017-09-18 13:08:39 -0500252
253 // If there is no ubi volume for bmc version then read the /etc/os-release
254 // and create rofs-<versionId> under /media
255 if (activations.size() == 0)
256 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500257 auto version = VersionClass::getBMCVersion(OS_RELEASE_FILE);
Saqib Khandcbfa042017-09-18 13:08:39 -0500258 auto id = phosphor::software::manager::Version::getId(version);
259 auto versionFileDir = BMC_ROFS_PREFIX + id + "/etc/";
260 try
261 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500262 if (!fs::is_directory(versionFileDir))
Saqib Khandcbfa042017-09-18 13:08:39 -0500263 {
264 fs::create_directories(versionFileDir);
265 }
266 auto versionFilePath = BMC_ROFS_PREFIX + id + OS_RELEASE_FILE;
267 fs::create_directory_symlink(OS_RELEASE_FILE, versionFilePath);
268 ItemUpdater::processBMCImage();
269 }
270 catch (const std::exception& e)
271 {
272 log<level::ERR>(e.what());
273 }
274 }
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600275
276 mirrorUbootToAlt();
Saqib Khanba239882017-05-26 08:41:54 -0500277 return;
278}
279
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500280void ItemUpdater::erase(std::string entryId)
281{
Eddie James6d873712017-09-01 11:29:07 -0500282 // Find entry in versions map
283 auto it = versions.find(entryId);
284 if (it != versions.end())
285 {
286 if (it->second->isFunctional())
287 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600288 log<level::ERR>("Error: Version is currently running on the BMC. "
289 "Unable to remove.",
290 entry("VERSIONID=%s", entryId.c_str()));
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500291 return;
Eddie James6d873712017-09-01 11:29:07 -0500292 }
293
294 // Delete ReadOnly partitions if it's not active
295 removeReadOnlyPartition(entryId);
296 removeFile(entryId);
Saqib Khanee13e832017-10-23 12:53:11 -0500297
298 // Removing entry in versions map
299 this->versions.erase(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500300 }
301 else
302 {
303 // Delete ReadOnly partitions even if we can't find the version
304 removeReadOnlyPartition(entryId);
305 removeFile(entryId);
306
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600307 log<level::ERR>("Error: Failed to find version in item updater "
308 "versions map. Unable to remove.",
309 entry("VERSIONID=%s", entryId.c_str()));
Eddie James6d873712017-09-01 11:29:07 -0500310 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500311
Lei YU56aaf452018-06-21 16:09:44 +0800312 helper.clearEntry(entryId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500313
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500314 // Removing entry in activations map
315 auto ita = activations.find(entryId);
316 if (ita == activations.end())
317 {
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600318 log<level::ERR>("Error: Failed to find version in item updater "
319 "activations map. Unable to remove.",
320 entry("VERSIONID=%s", entryId.c_str()));
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500321 }
Saqib Khanee13e832017-10-23 12:53:11 -0500322 else
323 {
324 this->activations.erase(entryId);
325 }
Saqib Khan49446ae2017-10-02 10:54:20 -0500326 ItemUpdater::resetUbootEnvVars();
Saqib Khanee13e832017-10-23 12:53:11 -0500327 return;
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500328}
329
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500330void ItemUpdater::deleteAll()
331{
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600332 std::vector<std::string> deletableVersions;
333
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500334 for (const auto& versionIt : versions)
335 {
336 if (!versionIt.second->isFunctional())
337 {
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600338 deletableVersions.push_back(versionIt.first);
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500339 }
340 }
341
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600342 for (const auto& deletableIt : deletableVersions)
343 {
344 ItemUpdater::erase(deletableIt);
345 }
346
Lei YU56aaf452018-06-21 16:09:44 +0800347 helper.cleanup();
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500348}
349
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600350ItemUpdater::ActivationStatus
351 ItemUpdater::validateSquashFSImage(const std::string& filePath)
Saqib Khan35e83f32017-05-22 11:37:32 -0500352{
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500353 bool invalid = false;
Saqib Khan35e83f32017-05-22 11:37:32 -0500354
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500355 for (auto& bmcImage : bmcImages)
Saqib Khan35e83f32017-05-22 11:37:32 -0500356 {
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500357 fs::path file(filePath);
358 file /= bmcImage;
359 std::ifstream efile(file.c_str());
360 if (efile.good() != 1)
361 {
362 log<level::ERR>("Failed to find the BMC image.",
Gunnar Mills9a782242017-08-22 16:23:15 -0500363 entry("IMAGE=%s", bmcImage.c_str()));
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500364 invalid = true;
365 }
Saqib Khan35e83f32017-05-22 11:37:32 -0500366 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500367
368 if (invalid)
Saqib Khan35e83f32017-05-22 11:37:32 -0500369 {
Saqib Khan35e83f32017-05-22 11:37:32 -0500370 return ItemUpdater::ActivationStatus::invalid;
371 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500372
373 return ItemUpdater::ActivationStatus::ready;
Saqib Khan35e83f32017-05-22 11:37:32 -0500374}
375
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500376void ItemUpdater::savePriority(const std::string& versionId, uint8_t value)
377{
378 storeToFile(versionId, value);
379 helper.setEntry(versionId, value);
380}
381
Saqib Khanb9da6632017-09-13 09:48:37 -0500382void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500383{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500384 std::map<std::string, uint8_t> priorityMap;
385
386 // Insert the requested version and priority, it may not exist yet.
387 priorityMap.insert(std::make_pair(versionId, value));
388
Saqib Khan4c1aec02017-07-06 11:46:13 -0500389 for (const auto& intf : activations)
390 {
Gunnar Mills9a782242017-08-22 16:23:15 -0500391 if (intf.second->redundancyPriority)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500392 {
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500393 priorityMap.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600394 intf.first, intf.second->redundancyPriority.get()->priority()));
Saqib Khan4c1aec02017-07-06 11:46:13 -0500395 }
396 }
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500397
398 // Lambda function to compare 2 priority values, use <= to allow duplicates
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600399 typedef std::function<bool(std::pair<std::string, uint8_t>,
400 std::pair<std::string, uint8_t>)>
401 cmpPriority;
402 cmpPriority cmpPriorityFunc =
403 [](std::pair<std::string, uint8_t> priority1,
404 std::pair<std::string, uint8_t> priority2) {
405 return priority1.second <= priority2.second;
406 };
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500407
408 // Sort versions by ascending priority
409 std::set<std::pair<std::string, uint8_t>, cmpPriority> prioritySet(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600410 priorityMap.begin(), priorityMap.end(), cmpPriorityFunc);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500411
412 auto freePriorityValue = value;
413 for (auto& element : prioritySet)
414 {
415 if (element.first == versionId)
416 {
417 continue;
418 }
419 if (element.second == freePriorityValue)
420 {
421 ++freePriorityValue;
422 auto it = activations.find(element.first);
423 it->second->redundancyPriority.get()->sdbusPriority(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600424 freePriorityValue);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500425 }
426 }
427
428 auto lowestVersion = prioritySet.begin()->first;
429 if (value == prioritySet.begin()->second)
430 {
431 lowestVersion = versionId;
432 }
433 updateUbootEnvVars(lowestVersion);
Saqib Khan4c1aec02017-07-06 11:46:13 -0500434}
435
Michael Tritz37a59042017-07-12 13:44:53 -0500436void ItemUpdater::reset()
437{
Lei YU56aaf452018-06-21 16:09:44 +0800438 helper.factoryReset();
Michael Tritz37a59042017-07-12 13:44:53 -0500439
440 log<level::INFO>("BMC factory reset will take effect upon reboot.");
Michael Tritz37a59042017-07-12 13:44:53 -0500441}
442
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500443void ItemUpdater::removeReadOnlyPartition(std::string versionId)
444{
Lei YU56aaf452018-06-21 16:09:44 +0800445 helper.removeVersion(versionId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500446}
447
Michael Tritz0129d922017-08-10 19:33:46 -0500448bool ItemUpdater::fieldModeEnabled(bool value)
449{
450 // enabling field mode is intended to be one way: false -> true
451 if (value && !control::FieldMode::fieldModeEnabled())
452 {
453 control::FieldMode::fieldModeEnabled(value);
454
Lei YU56aaf452018-06-21 16:09:44 +0800455 helper.enableFieldMode();
Michael Tritz0129d922017-08-10 19:33:46 -0500456 }
457
458 return control::FieldMode::fieldModeEnabled();
459}
460
461void ItemUpdater::restoreFieldModeStatus()
462{
Michael Tritzff0b4212017-10-24 17:38:09 -0500463 std::ifstream input("/dev/mtd/u-boot-env");
Michael Tritz0129d922017-08-10 19:33:46 -0500464 std::string envVar;
465 std::getline(input, envVar);
466
Gunnar Mills9a782242017-08-22 16:23:15 -0500467 if (envVar.find("fieldmode=true") != std::string::npos)
Michael Tritz0129d922017-08-10 19:33:46 -0500468 {
469 ItemUpdater::fieldModeEnabled(true);
470 }
471}
472
Gunnar Millsb60add12017-08-24 16:41:42 -0500473void ItemUpdater::setBMCInventoryPath()
474{
Gunnar Millsb60add12017-08-24 16:41:42 -0500475 auto depth = 0;
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600476 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
477 MAPPER_INTERFACE, "GetSubTreePaths");
Gunnar Millsb60add12017-08-24 16:41:42 -0500478
Adriana Kobylak1254c622017-12-07 12:24:56 -0600479 mapperCall.append(INVENTORY_PATH);
Gunnar Millsb60add12017-08-24 16:41:42 -0500480 mapperCall.append(depth);
Adriana Kobylak1254c622017-12-07 12:24:56 -0600481 std::vector<std::string> filter = {BMC_INVENTORY_INTERFACE};
Gunnar Millsb60add12017-08-24 16:41:42 -0500482 mapperCall.append(filter);
483
Ed Tanous87c78172018-08-10 12:51:53 -0700484 try
485 {
486 auto response = bus.call(mapperCall);
487
488 using ObjectPaths = std::vector<std::string>;
489 ObjectPaths result;
490 response.read(result);
491
492 if (!result.empty())
493 {
494 bmcInventoryPath = result.front();
495 }
496 }
497 catch (const sdbusplus::exception::SdBusError& e)
Gunnar Millsb60add12017-08-24 16:41:42 -0500498 {
499 log<level::ERR>("Error in mapper GetSubTreePath");
500 return;
501 }
502
Adriana Kobylak1254c622017-12-07 12:24:56 -0600503 return;
Gunnar Millsb60add12017-08-24 16:41:42 -0500504}
505
Gunnar Millsf10b2322017-09-21 15:31:55 -0500506void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500507{
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600508 assocs.emplace_back(
509 std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path));
Gunnar Millsded875d2017-08-28 16:44:52 -0500510 associations(assocs);
511}
512
Gunnar Mills88e8a322017-09-13 11:09:28 -0500513void ItemUpdater::createFunctionalAssociation(const std::string& path)
514{
515 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600516 FUNCTIONAL_REV_ASSOCIATION, path));
Gunnar Mills88e8a322017-09-13 11:09:28 -0500517 associations(assocs);
518}
519
Gunnar Millsf10b2322017-09-21 15:31:55 -0500520void ItemUpdater::removeActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500521{
522 for (auto iter = assocs.begin(); iter != assocs.end();)
523 {
Gunnar Mills88e8a322017-09-13 11:09:28 -0500524 // Since there could be multiple associations to the same path,
525 // only remove ones that have an active forward association.
526 if ((std::get<0>(*iter)).compare(ACTIVE_FWD_ASSOCIATION) == 0 &&
527 (std::get<2>(*iter)).compare(path) == 0)
Gunnar Millsded875d2017-08-28 16:44:52 -0500528 {
529 iter = assocs.erase(iter);
530 associations(assocs);
531 }
532 else
533 {
534 ++iter;
535 }
536 }
537}
538
Saqib Khanb9da6632017-09-13 09:48:37 -0500539bool ItemUpdater::isLowestPriority(uint8_t value)
540{
541 for (const auto& intf : activations)
542 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500543 if (intf.second->redundancyPriority)
Saqib Khanb9da6632017-09-13 09:48:37 -0500544 {
545 if (intf.second->redundancyPriority.get()->priority() < value)
546 {
547 return false;
548 }
549 }
550 }
551 return true;
552}
553
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500554void ItemUpdater::updateUbootEnvVars(const std::string& versionId)
555{
Lei YU56aaf452018-06-21 16:09:44 +0800556 helper.updateUbootVersionId(versionId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500557}
558
Saqib Khan49446ae2017-10-02 10:54:20 -0500559void ItemUpdater::resetUbootEnvVars()
560{
561 decltype(activations.begin()->second->redundancyPriority.get()->priority())
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600562 lowestPriority = std::numeric_limits<uint8_t>::max();
Saqib Khan49446ae2017-10-02 10:54:20 -0500563 decltype(activations.begin()->second->versionId) lowestPriorityVersion;
564 for (const auto& intf : activations)
565 {
566 if (!intf.second->redundancyPriority.get())
567 {
568 // Skip this version if the redundancyPriority is not initialized.
569 continue;
570 }
571
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600572 if (intf.second->redundancyPriority.get()->priority() <= lowestPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500573 {
574 lowestPriority = intf.second->redundancyPriority.get()->priority();
575 lowestPriorityVersion = intf.second->versionId;
576 }
577 }
578
Saqib Khanf0382c32017-10-24 13:36:22 -0500579 // Update the U-boot environment variable to point to the lowest priority
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500580 updateUbootEnvVars(lowestPriorityVersion);
Saqib Khan49446ae2017-10-02 10:54:20 -0500581}
582
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600583void ItemUpdater::freeSpace()
584{
585 // Versions with the highest priority in front
586 std::priority_queue<std::pair<int, std::string>,
587 std::vector<std::pair<int, std::string>>,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600588 std::less<std::pair<int, std::string>>>
589 versionsPQ;
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600590
591 std::size_t count = 0;
592 for (const auto& iter : activations)
593 {
594 if ((iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600595 server::Activation::Activations::Active) ||
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600596 (iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600597 server::Activation::Activations::Failed))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600598 {
599 count++;
600 // Don't put the functional version on the queue since we can't
601 // remove the "running" BMC version.
602 if (versions.find(iter.second->versionId)->second->isFunctional())
603 {
604 continue;
605 }
606 versionsPQ.push(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600607 iter.second->redundancyPriority.get()->priority(),
608 iter.second->versionId));
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600609 }
610 }
611
612 // If the number of BMC versions is over ACTIVE_BMC_MAX_ALLOWED -1,
613 // remove the highest priority one(s).
614 while ((count >= ACTIVE_BMC_MAX_ALLOWED) && (!versionsPQ.empty()))
615 {
616 erase(versionsPQ.top().second);
617 versionsPQ.pop();
618 count--;
619 }
620}
621
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600622void ItemUpdater::mirrorUbootToAlt()
623{
Lei YU56aaf452018-06-21 16:09:44 +0800624 helper.mirrorAlt();
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600625}
626
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500627} // namespace updater
628} // namespace software
629} // namespace phosphor