blob: e7de3d039f41ac603e180c0b7aa592fb5fc009cf [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"
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +07008#include "xyz/openbmc_project/Software/ExtendedVersion/server.hpp"
Gunnar Millsb0ce9962018-09-07 13:39:10 -05009#include "xyz/openbmc_project/Software/Version/server.hpp"
10
Adriana Kobylakd5b8f752019-05-01 11:52:35 -050011#include <phosphor-logging/elog-errors.hpp>
Gunnar Millsb0ce9962018-09-07 13:39:10 -050012#include <phosphor-logging/elog.hpp>
Patrick Williamsc9bb6422021-08-27 06:18:35 -050013#include <phosphor-logging/lg2.hpp>
Adriana Kobylak58aa7502020-06-08 11:12:11 -050014#include <xyz/openbmc_project/Common/error.hpp>
15#include <xyz/openbmc_project/Software/Image/error.hpp>
16
17#include <filesystem>
18#include <fstream>
Adriana Kobylak204e1e72018-01-24 16:00:05 -060019#include <queue>
Adriana Kobylakb77551c2017-10-27 12:46:23 -050020#include <set>
Gunnar Millsec1b41c2017-05-02 12:20:36 -050021#include <string>
Gunnar Millsec1b41c2017-05-02 12:20:36 -050022
23namespace phosphor
24{
25namespace software
26{
27namespace updater
28{
29
Gunnar Mills2ce7da22017-05-04 15:37:56 -050030// When you see server:: you know we're referencing our base class
31namespace server = sdbusplus::xyz::openbmc_project::Software::server;
Michael Tritz0129d922017-08-10 19:33:46 -050032namespace control = sdbusplus::xyz::openbmc_project::Control::server;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050033
Patrick Williamsc9bb6422021-08-27 06:18:35 -050034PHOSPHOR_LOG2_USING;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050035using namespace phosphor::logging;
Adriana Kobylak43699ca2018-10-17 14:56:29 -050036using namespace sdbusplus::xyz::openbmc_project::Software::Image::Error;
Jayanth Othayoth2ab9b102018-02-21 05:27:47 -060037using namespace phosphor::software::image;
Adriana Kobylakc98d9122020-05-05 10:36:01 -050038namespace fs = std::filesystem;
Adriana Kobylakd5b8f752019-05-01 11:52:35 -050039using NotAllowed = sdbusplus::xyz::openbmc_project::Common::Error::NotAllowed;
Saqib Khan35e83f32017-05-22 11:37:32 -050040
Patrick Williamse75d10f2017-05-30 16:56:32 -050041void ItemUpdater::createActivation(sdbusplus::message::message& msg)
Gunnar Millsec1b41c2017-05-02 12:20:36 -050042{
Saqib Khan84a0e692017-06-28 17:27:01 -050043
44 using SVersion = server::Version;
45 using VersionPurpose = SVersion::VersionPurpose;
Gunnar Mills9a782242017-08-22 16:23:15 -050046 using VersionClass = phosphor::software::manager::Version;
Saqib Khan84a0e692017-06-28 17:27:01 -050047
Patrick Williamsbc1facd2020-06-03 05:58:27 -050048 sdbusplus::message::object_path objPath;
Saqib Khan84a0e692017-06-28 17:27:01 -050049 auto purpose = VersionPurpose::Unknown;
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +070050 std::string extendedVersion;
Saqib Khan705f1bf2017-06-09 23:58:38 -050051 std::string version;
Patrick Williamsbc1facd2020-06-03 05:58:27 -050052 std::map<std::string, std::map<std::string, std::variant<std::string>>>
Adriana Kobylak2285fe02018-02-27 15:36:59 -060053 interfaces;
Patrick Williamse75d10f2017-05-30 16:56:32 -050054 msg.read(objPath, interfaces);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050055 std::string path(std::move(objPath));
Saqib Khan19177d32017-06-20 08:11:49 -050056 std::string filePath;
Gunnar Mills2ce7da22017-05-04 15:37:56 -050057
58 for (const auto& intf : interfaces)
59 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050060 if (intf.first == VERSION_IFACE)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050061 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050062 for (const auto& property : intf.second)
Gunnar Mills2ce7da22017-05-04 15:37:56 -050063 {
Saqib Khan705f1bf2017-06-09 23:58:38 -050064 if (property.first == "Purpose")
Gunnar Mills2ce7da22017-05-04 15:37:56 -050065 {
Saqib Khan84a0e692017-06-28 17:27:01 -050066 auto value = SVersion::convertVersionPurposeFromString(
Patrick Williamse883fb82020-05-13 11:38:55 -050067 std::get<std::string>(property.second));
Saqib Khan84a0e692017-06-28 17:27:01 -050068 if (value == VersionPurpose::BMC ||
Vijay Khemkae9f6c842020-01-14 14:32:39 -080069#ifdef HOST_BIOS_UPGRADE
70 value == VersionPurpose::Host ||
71#endif
Saqib Khan84a0e692017-06-28 17:27:01 -050072 value == VersionPurpose::System)
73 {
74 purpose = value;
75 }
Saqib Khan705f1bf2017-06-09 23:58:38 -050076 }
77 else if (property.first == "Version")
78 {
Patrick Williamse883fb82020-05-13 11:38:55 -050079 version = std::get<std::string>(property.second);
Gunnar Mills2ce7da22017-05-04 15:37:56 -050080 }
81 }
82 }
Saqib Khan19177d32017-06-20 08:11:49 -050083 else if (intf.first == FILEPATH_IFACE)
84 {
85 for (const auto& property : intf.second)
86 {
87 if (property.first == "Path")
88 {
Patrick Williamse883fb82020-05-13 11:38:55 -050089 filePath = std::get<std::string>(property.second);
Saqib Khan19177d32017-06-20 08:11:49 -050090 }
91 }
92 }
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +070093 else if (intf.first == EXTENDED_VERSION_IFACE)
94 {
95 for (const auto& property : intf.second)
96 {
97 if (property.first == "ExtendedVersion")
98 {
99 extendedVersion = std::get<std::string>(property.second);
100 }
101 }
102 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500103 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600104 if (version.empty() || filePath.empty() ||
Saqib Khan84a0e692017-06-28 17:27:01 -0500105 purpose == VersionPurpose::Unknown)
Saqib Khan705f1bf2017-06-09 23:58:38 -0500106 {
107 return;
108 }
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500109
110 // Version id is the last item in the path
111 auto pos = path.rfind("/");
112 if (pos == std::string::npos)
113 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500114 error("No version id found in object path: {PATH}", "PATH", path);
Patrick Williamse75d10f2017-05-30 16:56:32 -0500115 return;
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500116 }
117
118 auto versionId = path.substr(pos + 1);
119
Patrick Williamse75d10f2017-05-30 16:56:32 -0500120 if (activations.find(versionId) == activations.end())
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500121 {
Saqib Khan35e83f32017-05-22 11:37:32 -0500122 // Determine the Activation state by processing the given image dir.
123 auto activationState = server::Activation::Activations::Invalid;
Vijay Khemkae9f6c842020-01-14 14:32:39 -0800124 ItemUpdater::ActivationStatus result;
125 if (purpose == VersionPurpose::BMC || purpose == VersionPurpose::System)
126 result = ItemUpdater::validateSquashFSImage(filePath);
127 else
128 result = ItemUpdater::ActivationStatus::ready;
129
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500130 AssociationList associations = {};
131
Saqib Khan35e83f32017-05-22 11:37:32 -0500132 if (result == ItemUpdater::ActivationStatus::ready)
133 {
134 activationState = server::Activation::Activations::Ready;
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500135 // Create an association to the BMC inventory item
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600136 associations.emplace_back(
137 std::make_tuple(ACTIVATION_FWD_ASSOCIATION,
138 ACTIVATION_REV_ASSOCIATION, bmcInventoryPath));
Saqib Khan35e83f32017-05-22 11:37:32 -0500139 }
Gunnar Millsb60add12017-08-24 16:41:42 -0500140
Saqib Khanee13e832017-10-23 12:53:11 -0500141 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600142 versionId,
143 std::make_unique<Activation>(bus, path, *this, versionId,
144 activationState, associations)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500145
Saqib Khanee13e832017-10-23 12:53:11 -0500146 auto versionPtr = std::make_unique<VersionClass>(
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +0700147 bus, path, version, purpose, extendedVersion, filePath,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600148 std::bind(&ItemUpdater::erase, this, std::placeholders::_1));
Saqib Khanee13e832017-10-23 12:53:11 -0500149 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600150 std::make_unique<phosphor::software::manager::Delete>(bus, path,
151 *versionPtr);
Saqib Khanee13e832017-10-23 12:53:11 -0500152 versions.insert(std::make_pair(versionId, std::move(versionPtr)));
Gunnar Mills2ce7da22017-05-04 15:37:56 -0500153 }
Patrick Williamse75d10f2017-05-30 16:56:32 -0500154 return;
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500155}
156
Saqib Khanba239882017-05-26 08:41:54 -0500157void ItemUpdater::processBMCImage()
158{
Gunnar Mills88e8a322017-09-13 11:09:28 -0500159 using VersionClass = phosphor::software::manager::Version;
Lei YU269bff32018-08-21 15:21:40 +0800160
161 // Check MEDIA_DIR and create if it does not exist
162 try
163 {
164 if (!fs::is_directory(MEDIA_DIR))
165 {
166 fs::create_directory(MEDIA_DIR);
167 }
168 }
169 catch (const fs::filesystem_error& e)
170 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500171 error("Failed to prepare dir: {ERROR}", "ERROR", e);
Lei YU269bff32018-08-21 15:21:40 +0800172 return;
173 }
174
Gunnar Mills88e8a322017-09-13 11:09:28 -0500175 // Read os-release from /etc/ to get the functional BMC version
176 auto functionalVersion = VersionClass::getBMCVersion(OS_RELEASE_FILE);
177
Saqib Khan1eef62d2017-08-10 15:29:34 -0500178 // Read os-release from folders under /media/ to get
179 // BMC Software Versions.
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500180 for (const auto& iter : fs::directory_iterator(MEDIA_DIR))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500181 {
182 auto activationState = server::Activation::Activations::Active;
Saqib Khan6fab70d2017-09-07 00:13:50 -0500183 static const auto BMC_RO_PREFIX_LEN = strlen(BMC_ROFS_PREFIX);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500184
185 // Check if the BMC_RO_PREFIXis the prefix of the iter.path
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600186 if (0 ==
187 iter.path().native().compare(0, BMC_RO_PREFIX_LEN, BMC_ROFS_PREFIX))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500188 {
Adriana Kobylak716cd782020-06-08 13:27:43 -0500189 // Get the version to calculate the id
Adriana Kobylak24a8d832020-06-10 08:29:36 -0500190 fs::path releaseFile(OS_RELEASE_FILE);
191 auto osRelease = iter.path() / releaseFile.relative_path();
Saqib Khan1eef62d2017-08-10 15:29:34 -0500192 if (!fs::is_regular_file(osRelease))
193 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500194 error("Failed to read osRelease: {PATH}", "PATH", osRelease);
Adriana Kobylak716cd782020-06-08 13:27:43 -0500195
196 // Try to get the version id from the mount directory name and
197 // call to delete it as this version may be corrupted. Dynamic
198 // volumes created by the UBI layout for example have the id in
199 // the mount directory name. The worst that can happen is that
200 // erase() is called with an non-existent id and returns.
201 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
Saqib Khan021c3652017-09-26 12:11:02 -0500202 ItemUpdater::erase(id);
Adriana Kobylak716cd782020-06-08 13:27:43 -0500203
Saqib Khan021c3652017-09-26 12:11:02 -0500204 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500205 }
Gunnar Mills88e8a322017-09-13 11:09:28 -0500206 auto version = VersionClass::getBMCVersion(osRelease);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500207 if (version.empty())
208 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500209 error("Failed to read version from osRelease: {PATH}", "PATH",
210 osRelease);
Adriana Kobylak716cd782020-06-08 13:27:43 -0500211
212 // Try to delete the version, same as above if the
213 // OS_RELEASE_FILE does not exist.
214 auto id = iter.path().native().substr(BMC_RO_PREFIX_LEN);
215 ItemUpdater::erase(id);
216
217 continue;
Saqib Khan1eef62d2017-08-10 15:29:34 -0500218 }
Saqib Khan021c3652017-09-26 12:11:02 -0500219
Adriana Kobylak716cd782020-06-08 13:27:43 -0500220 auto id = VersionClass::getId(version);
221
Adriana Kobylakf383d272020-06-16 15:17:22 -0500222 // Check if the id has already been added. This can happen if the
223 // BMC partitions / devices were manually flashed with the same
224 // image.
225 if (versions.find(id) != versions.end())
226 {
227 continue;
228 }
229
Adriana Kobylak780220f2022-01-18 20:01:53 +0000230 // The flash location is part of the mount name: rofs-<location>
231 auto flashId = iter.path().native().substr(BMC_RO_PREFIX_LEN);
232
Saqib Khan1eef62d2017-08-10 15:29:34 -0500233 auto purpose = server::Version::VersionPurpose::BMC;
Adriana Kobylak780220f2022-01-18 20:01:53 +0000234 restorePurpose(flashId, purpose);
Adriana Kobylakec4eec32019-11-13 14:28:35 -0600235
Chanh Nguyen1fd6ddd2021-01-06 11:09:09 +0700236 // Read os-release from /etc/ to get the BMC extended version
237 std::string extendedVersion =
238 VersionClass::getBMCExtendedVersion(osRelease);
239
Saqib Khan1eef62d2017-08-10 15:29:34 -0500240 auto path = fs::path(SOFTWARE_OBJPATH) / id;
241
Lei YU269bff32018-08-21 15:21:40 +0800242 // Create functional association if this is the functional
243 // version
Gunnar Mills88e8a322017-09-13 11:09:28 -0500244 if (version.compare(functionalVersion) == 0)
245 {
246 createFunctionalAssociation(path);
247 }
248
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500249 AssociationList associations = {};
250
251 if (activationState == server::Activation::Activations::Active)
252 {
253 // Create an association to the BMC inventory item
254 associations.emplace_back(std::make_tuple(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600255 ACTIVATION_FWD_ASSOCIATION, ACTIVATION_REV_ASSOCIATION,
256 bmcInventoryPath));
Gunnar Mills43b25cd2017-09-07 13:19:34 -0500257
258 // Create an active association since this image is active
259 createActiveAssociation(path);
260 }
261
AppaRao Pulibbebec72020-01-28 23:57:41 +0530262 // All updateable firmware components must expose the updateable
263 // association.
264 createUpdateableAssociation(path);
265
Adriana Kobylakee590c72017-09-26 15:16:06 -0500266 // Create Version instance for this version.
267 auto versionPtr = std::make_unique<VersionClass>(
Adriana Kobylaka84f06d2022-01-18 15:41:57 +0000268 bus, path, version, purpose, extendedVersion, flashId,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600269 std::bind(&ItemUpdater::erase, this, std::placeholders::_1));
Adriana Kobylakee590c72017-09-26 15:16:06 -0500270 auto isVersionFunctional = versionPtr->isFunctional();
Michael Tritz4254bec2017-10-03 17:18:22 -0500271 if (!isVersionFunctional)
272 {
Saqib Khanee13e832017-10-23 12:53:11 -0500273 versionPtr->deleteObject =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600274 std::make_unique<phosphor::software::manager::Delete>(
275 bus, path, *versionPtr);
Michael Tritz4254bec2017-10-03 17:18:22 -0500276 }
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600277 versions.insert(std::make_pair(id, std::move(versionPtr)));
Michael Tritz4254bec2017-10-03 17:18:22 -0500278
Saqib Khanee13e832017-10-23 12:53:11 -0500279 // Create Activation instance for this version.
280 activations.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600281 id, std::make_unique<Activation>(
282 bus, path, *this, id, activationState, associations)));
Saqib Khan1eef62d2017-08-10 15:29:34 -0500283
Lei YU269bff32018-08-21 15:21:40 +0800284 // If Active, create RedundancyPriority instance for this
285 // version.
Saqib Khan1eef62d2017-08-10 15:29:34 -0500286 if (activationState == server::Activation::Activations::Active)
287 {
288 uint8_t priority = std::numeric_limits<uint8_t>::max();
Adriana Kobylak780220f2022-01-18 20:01:53 +0000289 if (!restorePriority(flashId, priority))
Saqib Khan1eef62d2017-08-10 15:29:34 -0500290 {
Adriana Kobylakee590c72017-09-26 15:16:06 -0500291 if (isVersionFunctional)
292 {
293 priority = 0;
294 }
295 else
296 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500297 error(
298 "Unable to restore priority from file for {VERSIONID}",
299 "VERSIONID", id);
Adriana Kobylakee590c72017-09-26 15:16:06 -0500300 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500301 }
302 activations.find(id)->second->redundancyPriority =
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600303 std::make_unique<RedundancyPriority>(
304 bus, path, *(activations.find(id)->second), priority,
305 false);
Saqib Khan1eef62d2017-08-10 15:29:34 -0500306 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500307 }
308 }
Saqib Khandcbfa042017-09-18 13:08:39 -0500309
Adriana Kobylak716cd782020-06-08 13:27:43 -0500310 // If there are no bmc versions mounted under MEDIA_DIR, then read the
311 // /etc/os-release and create rofs-<versionId> under MEDIA_DIR, then call
312 // again processBMCImage() to create the D-Bus interface for it.
Saqib Khandcbfa042017-09-18 13:08:39 -0500313 if (activations.size() == 0)
314 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500315 auto version = VersionClass::getBMCVersion(OS_RELEASE_FILE);
Saqib Khandcbfa042017-09-18 13:08:39 -0500316 auto id = phosphor::software::manager::Version::getId(version);
317 auto versionFileDir = BMC_ROFS_PREFIX + id + "/etc/";
318 try
319 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500320 if (!fs::is_directory(versionFileDir))
Saqib Khandcbfa042017-09-18 13:08:39 -0500321 {
322 fs::create_directories(versionFileDir);
323 }
324 auto versionFilePath = BMC_ROFS_PREFIX + id + OS_RELEASE_FILE;
325 fs::create_directory_symlink(OS_RELEASE_FILE, versionFilePath);
326 ItemUpdater::processBMCImage();
327 }
328 catch (const std::exception& e)
329 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500330 error("Exception during processing: {ERROR}", "ERROR", e);
Saqib Khandcbfa042017-09-18 13:08:39 -0500331 }
332 }
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600333
334 mirrorUbootToAlt();
Saqib Khanba239882017-05-26 08:41:54 -0500335 return;
336}
337
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500338void ItemUpdater::erase(std::string entryId)
339{
Eddie James6d873712017-09-01 11:29:07 -0500340 // Find entry in versions map
341 auto it = versions.find(entryId);
342 if (it != versions.end())
343 {
Lei YU0f88b5a2018-08-21 15:28:53 +0800344 if (it->second->isFunctional() && ACTIVE_BMC_MAX_ALLOWED > 1)
Eddie James6d873712017-09-01 11:29:07 -0500345 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500346 error(
347 "Version ({VERSIONID}) is currently running on the BMC; unable to remove.",
348 "VERSIONID", entryId);
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500349 return;
Eddie James6d873712017-09-01 11:29:07 -0500350 }
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500351 }
Eddie James6d873712017-09-01 11:29:07 -0500352
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500353 // First call resetUbootEnvVars() so that the BMC points to a valid image to
354 // boot from. If resetUbootEnvVars() is called after the image is actually
355 // deleted from the BMC flash, there'd be a time window where the BMC would
356 // be pointing to a non-existent image to boot from.
357 // Need to remove the entries from the activations map before that call so
358 // that resetUbootEnvVars() doesn't use the version to be deleted.
359 auto iteratorActivations = activations.find(entryId);
360 if (iteratorActivations == activations.end())
361 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500362 error(
363 "Failed to find version ({VERSIONID}) in item updater activations map; unable to remove.",
364 "VERSIONID", entryId);
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500365 }
366 else
367 {
368 removeAssociations(iteratorActivations->second->path);
Zami Seckae06d762021-08-13 20:11:15 -0500369 iteratorActivations->second->deleteImageManagerObject();
Adriana Kobylakd1a55ad2020-06-11 14:01:28 -0500370 this->activations.erase(entryId);
371 }
372 ItemUpdater::resetUbootEnvVars();
373
374 if (it != versions.end())
375 {
Adriana Kobylak780220f2022-01-18 20:01:53 +0000376 auto flashId = it->second->path();
377
Eddie James6d873712017-09-01 11:29:07 -0500378 // Delete ReadOnly partitions if it's not active
379 removeReadOnlyPartition(entryId);
Adriana Kobylak780220f2022-01-18 20:01:53 +0000380 removePersistDataDirectory(flashId);
Saqib Khanee13e832017-10-23 12:53:11 -0500381
382 // Removing entry in versions map
383 this->versions.erase(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500384 }
385 else
386 {
387 // Delete ReadOnly partitions even if we can't find the version
388 removeReadOnlyPartition(entryId);
Eddie James6d873712017-09-01 11:29:07 -0500389
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500390 error(
391 "Failed to find version ({VERSIONID}) in item updater versions map; unable to remove.",
392 "VERSIONID", entryId);
Eddie James6d873712017-09-01 11:29:07 -0500393 }
Saqib Khan1eef62d2017-08-10 15:29:34 -0500394
Lei YU56aaf452018-06-21 16:09:44 +0800395 helper.clearEntry(entryId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500396
Saqib Khanee13e832017-10-23 12:53:11 -0500397 return;
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500398}
399
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500400void ItemUpdater::deleteAll()
401{
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600402 std::vector<std::string> deletableVersions;
403
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500404 for (const auto& versionIt : versions)
405 {
406 if (!versionIt.second->isFunctional())
407 {
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600408 deletableVersions.push_back(versionIt.first);
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500409 }
410 }
411
Adriana Kobylak83cd21f2018-02-28 15:48:48 -0600412 for (const auto& deletableIt : deletableVersions)
413 {
414 ItemUpdater::erase(deletableIt);
415 }
416
Lei YU56aaf452018-06-21 16:09:44 +0800417 helper.cleanup();
Michael Tritzbc1bf3a2017-09-18 16:38:23 -0500418}
419
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600420ItemUpdater::ActivationStatus
421 ItemUpdater::validateSquashFSImage(const std::string& filePath)
Saqib Khan35e83f32017-05-22 11:37:32 -0500422{
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800423 bool valid = true;
Saqib Khan35e83f32017-05-22 11:37:32 -0500424
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800425 // Record the images which are being updated
426 // First check for the fullimage, then check for images with partitions
427 imageUpdateList.push_back(bmcFullImages);
428 valid = checkImage(filePath, imageUpdateList);
429 if (!valid)
Saqib Khan35e83f32017-05-22 11:37:32 -0500430 {
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800431 imageUpdateList.clear();
432 imageUpdateList.assign(bmcImages.begin(), bmcImages.end());
433 valid = checkImage(filePath, imageUpdateList);
434 if (!valid)
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500435 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500436 error("Failed to find the needed BMC images.");
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800437 return ItemUpdater::ActivationStatus::invalid;
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500438 }
Saqib Khan35e83f32017-05-22 11:37:32 -0500439 }
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500440
Michael Tritzb1cfdf92017-08-14 14:33:30 -0500441 return ItemUpdater::ActivationStatus::ready;
Saqib Khan35e83f32017-05-22 11:37:32 -0500442}
443
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500444void ItemUpdater::savePriority(const std::string& versionId, uint8_t value)
445{
Adriana Kobylak780220f2022-01-18 20:01:53 +0000446 auto flashId = versions.find(versionId)->second->path();
447 storePriority(flashId, value);
Adriana Kobylakbbcb7be2018-07-17 15:47:34 -0500448 helper.setEntry(versionId, value);
449}
450
Saqib Khanb9da6632017-09-13 09:48:37 -0500451void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500452{
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500453 std::map<std::string, uint8_t> priorityMap;
454
455 // Insert the requested version and priority, it may not exist yet.
456 priorityMap.insert(std::make_pair(versionId, value));
457
Saqib Khan4c1aec02017-07-06 11:46:13 -0500458 for (const auto& intf : activations)
459 {
Gunnar Mills9a782242017-08-22 16:23:15 -0500460 if (intf.second->redundancyPriority)
Saqib Khan4c1aec02017-07-06 11:46:13 -0500461 {
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500462 priorityMap.insert(std::make_pair(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600463 intf.first, intf.second->redundancyPriority.get()->priority()));
Saqib Khan4c1aec02017-07-06 11:46:13 -0500464 }
465 }
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500466
467 // Lambda function to compare 2 priority values, use <= to allow duplicates
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600468 typedef std::function<bool(std::pair<std::string, uint8_t>,
469 std::pair<std::string, uint8_t>)>
470 cmpPriority;
471 cmpPriority cmpPriorityFunc =
472 [](std::pair<std::string, uint8_t> priority1,
473 std::pair<std::string, uint8_t> priority2) {
474 return priority1.second <= priority2.second;
475 };
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500476
477 // Sort versions by ascending priority
478 std::set<std::pair<std::string, uint8_t>, cmpPriority> prioritySet(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600479 priorityMap.begin(), priorityMap.end(), cmpPriorityFunc);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500480
481 auto freePriorityValue = value;
482 for (auto& element : prioritySet)
483 {
484 if (element.first == versionId)
485 {
486 continue;
487 }
488 if (element.second == freePriorityValue)
489 {
490 ++freePriorityValue;
491 auto it = activations.find(element.first);
492 it->second->redundancyPriority.get()->sdbusPriority(
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600493 freePriorityValue);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500494 }
495 }
496
497 auto lowestVersion = prioritySet.begin()->first;
498 if (value == prioritySet.begin()->second)
499 {
500 lowestVersion = versionId;
501 }
502 updateUbootEnvVars(lowestVersion);
Saqib Khan4c1aec02017-07-06 11:46:13 -0500503}
504
Michael Tritz37a59042017-07-12 13:44:53 -0500505void ItemUpdater::reset()
506{
Lei YU56aaf452018-06-21 16:09:44 +0800507 helper.factoryReset();
Michael Tritz37a59042017-07-12 13:44:53 -0500508
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500509 info("BMC factory reset will take effect upon reboot.");
Michael Tritz37a59042017-07-12 13:44:53 -0500510}
511
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500512void ItemUpdater::removeReadOnlyPartition(std::string versionId)
513{
Lei YU56aaf452018-06-21 16:09:44 +0800514 helper.removeVersion(versionId);
Leonel Gonzalez3526ef72017-07-07 14:38:25 -0500515}
516
Michael Tritz0129d922017-08-10 19:33:46 -0500517bool ItemUpdater::fieldModeEnabled(bool value)
518{
519 // enabling field mode is intended to be one way: false -> true
520 if (value && !control::FieldMode::fieldModeEnabled())
521 {
522 control::FieldMode::fieldModeEnabled(value);
523
Adriana Kobylak22848ec2019-10-28 10:08:39 -0500524 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
525 SYSTEMD_INTERFACE, "StartUnit");
526 method.append("obmc-flash-bmc-setenv@fieldmode\\x3dtrue.service",
527 "replace");
528 bus.call_noreply(method);
529
530 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
531 SYSTEMD_INTERFACE, "StopUnit");
532 method.append("usr-local.mount", "replace");
533 bus.call_noreply(method);
534
535 std::vector<std::string> usrLocal = {"usr-local.mount"};
536
537 method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH,
538 SYSTEMD_INTERFACE, "MaskUnitFiles");
539 method.append(usrLocal, false, true);
540 bus.call_noreply(method);
Michael Tritz0129d922017-08-10 19:33:46 -0500541 }
Adriana Kobylakd5b8f752019-05-01 11:52:35 -0500542 else if (!value && control::FieldMode::fieldModeEnabled())
543 {
544 elog<NotAllowed>(xyz::openbmc_project::Common::NotAllowed::REASON(
545 "FieldMode is not allowed to be cleared"));
546 }
Michael Tritz0129d922017-08-10 19:33:46 -0500547
548 return control::FieldMode::fieldModeEnabled();
549}
550
551void ItemUpdater::restoreFieldModeStatus()
552{
Michael Tritzff0b4212017-10-24 17:38:09 -0500553 std::ifstream input("/dev/mtd/u-boot-env");
Michael Tritz0129d922017-08-10 19:33:46 -0500554 std::string envVar;
555 std::getline(input, envVar);
556
Gunnar Mills9a782242017-08-22 16:23:15 -0500557 if (envVar.find("fieldmode=true") != std::string::npos)
Michael Tritz0129d922017-08-10 19:33:46 -0500558 {
559 ItemUpdater::fieldModeEnabled(true);
560 }
561}
562
Gunnar Millsb60add12017-08-24 16:41:42 -0500563void ItemUpdater::setBMCInventoryPath()
564{
Gunnar Millsb60add12017-08-24 16:41:42 -0500565 auto depth = 0;
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600566 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
567 MAPPER_INTERFACE, "GetSubTreePaths");
Gunnar Millsb60add12017-08-24 16:41:42 -0500568
Adriana Kobylak1254c622017-12-07 12:24:56 -0600569 mapperCall.append(INVENTORY_PATH);
Gunnar Millsb60add12017-08-24 16:41:42 -0500570 mapperCall.append(depth);
Adriana Kobylak1254c622017-12-07 12:24:56 -0600571 std::vector<std::string> filter = {BMC_INVENTORY_INTERFACE};
Gunnar Millsb60add12017-08-24 16:41:42 -0500572 mapperCall.append(filter);
573
Ed Tanous87c78172018-08-10 12:51:53 -0700574 try
575 {
576 auto response = bus.call(mapperCall);
577
578 using ObjectPaths = std::vector<std::string>;
579 ObjectPaths result;
580 response.read(result);
581
582 if (!result.empty())
583 {
584 bmcInventoryPath = result.front();
585 }
586 }
Patrick Williams4ce901c2021-09-02 09:34:45 -0500587 catch (const sdbusplus::exception::exception& e)
Gunnar Millsb60add12017-08-24 16:41:42 -0500588 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500589 error("Error in mapper GetSubTreePath: {ERROR}", "ERROR", e);
Gunnar Millsb60add12017-08-24 16:41:42 -0500590 return;
591 }
592
Adriana Kobylak1254c622017-12-07 12:24:56 -0600593 return;
Gunnar Millsb60add12017-08-24 16:41:42 -0500594}
595
Gunnar Millsf10b2322017-09-21 15:31:55 -0500596void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500597{
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600598 assocs.emplace_back(
599 std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path));
Gunnar Millsded875d2017-08-28 16:44:52 -0500600 associations(assocs);
601}
602
Gunnar Mills88e8a322017-09-13 11:09:28 -0500603void ItemUpdater::createFunctionalAssociation(const std::string& path)
604{
605 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600606 FUNCTIONAL_REV_ASSOCIATION, path));
Gunnar Mills88e8a322017-09-13 11:09:28 -0500607 associations(assocs);
608}
609
AppaRao Pulibbebec72020-01-28 23:57:41 +0530610void ItemUpdater::createUpdateableAssociation(const std::string& path)
611{
612 assocs.emplace_back(std::make_tuple(UPDATEABLE_FWD_ASSOCIATION,
613 UPDATEABLE_REV_ASSOCIATION, path));
614 associations(assocs);
615}
616
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600617void ItemUpdater::removeAssociations(const std::string& path)
Gunnar Millsded875d2017-08-28 16:44:52 -0500618{
619 for (auto iter = assocs.begin(); iter != assocs.end();)
620 {
Adriana Kobylak991af7e2018-12-10 13:08:38 -0600621 if ((std::get<2>(*iter)).compare(path) == 0)
Gunnar Millsded875d2017-08-28 16:44:52 -0500622 {
623 iter = assocs.erase(iter);
624 associations(assocs);
625 }
626 else
627 {
628 ++iter;
629 }
630 }
631}
632
Saqib Khanb9da6632017-09-13 09:48:37 -0500633bool ItemUpdater::isLowestPriority(uint8_t value)
634{
635 for (const auto& intf : activations)
636 {
Gunnar Millsd16bcbd2017-10-08 16:50:42 -0500637 if (intf.second->redundancyPriority)
Saqib Khanb9da6632017-09-13 09:48:37 -0500638 {
639 if (intf.second->redundancyPriority.get()->priority() < value)
640 {
641 return false;
642 }
643 }
644 }
645 return true;
646}
647
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500648void ItemUpdater::updateUbootEnvVars(const std::string& versionId)
649{
Lei YU56aaf452018-06-21 16:09:44 +0800650 helper.updateUbootVersionId(versionId);
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500651}
652
Saqib Khan49446ae2017-10-02 10:54:20 -0500653void ItemUpdater::resetUbootEnvVars()
654{
655 decltype(activations.begin()->second->redundancyPriority.get()->priority())
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600656 lowestPriority = std::numeric_limits<uint8_t>::max();
Saqib Khan49446ae2017-10-02 10:54:20 -0500657 decltype(activations.begin()->second->versionId) lowestPriorityVersion;
658 for (const auto& intf : activations)
659 {
660 if (!intf.second->redundancyPriority.get())
661 {
662 // Skip this version if the redundancyPriority is not initialized.
663 continue;
664 }
665
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600666 if (intf.second->redundancyPriority.get()->priority() <= lowestPriority)
Saqib Khan49446ae2017-10-02 10:54:20 -0500667 {
668 lowestPriority = intf.second->redundancyPriority.get()->priority();
669 lowestPriorityVersion = intf.second->versionId;
670 }
671 }
672
Saqib Khanf0382c32017-10-24 13:36:22 -0500673 // Update the U-boot environment variable to point to the lowest priority
Adriana Kobylakb77551c2017-10-27 12:46:23 -0500674 updateUbootEnvVars(lowestPriorityVersion);
Saqib Khan49446ae2017-10-02 10:54:20 -0500675}
676
Lei YU0cd6d842021-12-27 11:56:02 +0800677void ItemUpdater::freeSpace(const Activation& caller)
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600678{
679 // Versions with the highest priority in front
680 std::priority_queue<std::pair<int, std::string>,
681 std::vector<std::pair<int, std::string>>,
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600682 std::less<std::pair<int, std::string>>>
683 versionsPQ;
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600684
685 std::size_t count = 0;
686 for (const auto& iter : activations)
687 {
688 if ((iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600689 server::Activation::Activations::Active) ||
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600690 (iter.second.get()->activation() ==
Adriana Kobylak2285fe02018-02-27 15:36:59 -0600691 server::Activation::Activations::Failed))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600692 {
693 count++;
694 // Don't put the functional version on the queue since we can't
695 // remove the "running" BMC version.
Lei YU0f88b5a2018-08-21 15:28:53 +0800696 // If ACTIVE_BMC_MAX_ALLOWED <= 1, there is only one active BMC,
697 // so remove functional version as well.
Adriana Kobylaka6963592018-09-07 14:13:29 -0500698 // Don't delete the the Activation object that called this function.
699 if ((versions.find(iter.second->versionId)
700 ->second->isFunctional() &&
701 ACTIVE_BMC_MAX_ALLOWED > 1) ||
702 (iter.second->versionId == caller.versionId))
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600703 {
704 continue;
705 }
Adriana Kobylaka6963592018-09-07 14:13:29 -0500706
707 // Failed activations don't have priority, assign them a large value
708 // for sorting purposes.
709 auto priority = 999;
710 if (iter.second.get()->activation() ==
Lei YUcfb4b202021-05-06 17:47:28 +0800711 server::Activation::Activations::Active &&
712 iter.second->redundancyPriority)
Adriana Kobylaka6963592018-09-07 14:13:29 -0500713 {
714 priority = iter.second->redundancyPriority.get()->priority();
715 }
716
717 versionsPQ.push(std::make_pair(priority, iter.second->versionId));
Adriana Kobylak204e1e72018-01-24 16:00:05 -0600718 }
719 }
720
721 // If the number of BMC versions is over ACTIVE_BMC_MAX_ALLOWED -1,
722 // remove the highest priority one(s).
723 while ((count >= ACTIVE_BMC_MAX_ALLOWED) && (!versionsPQ.empty()))
724 {
725 erase(versionsPQ.top().second);
726 versionsPQ.pop();
727 count--;
728 }
729}
730
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600731void ItemUpdater::mirrorUbootToAlt()
732{
Lei YU56aaf452018-06-21 16:09:44 +0800733 helper.mirrorAlt();
Eddie Jameseaa1ee02018-03-01 10:09:10 -0600734}
735
Bright Cheng8e9ccfe2019-11-18 16:18:44 +0800736bool ItemUpdater::checkImage(const std::string& filePath,
737 const std::vector<std::string>& imageList)
738{
739 bool valid = true;
740
741 for (auto& bmcImage : imageList)
742 {
743 fs::path file(filePath);
744 file /= bmcImage;
745 std::ifstream efile(file.c_str());
746 if (efile.good() != 1)
747 {
748 valid = false;
749 break;
750 }
751 }
752
753 return valid;
754}
755
Lei YU6e9fb1d2021-02-19 18:01:40 +0800756#ifdef HOST_BIOS_UPGRADE
757void ItemUpdater::createBIOSObject()
758{
759 std::string path = BIOS_OBJPATH;
760 // Get version id from last item in the path
761 auto pos = path.rfind("/");
762 if (pos == std::string::npos)
763 {
Patrick Williamsc9bb6422021-08-27 06:18:35 -0500764 error("No version id found in object path {PATH}", "PATH", path);
Lei YU6e9fb1d2021-02-19 18:01:40 +0800765 return;
766 }
767
768 createActiveAssociation(path);
769 createFunctionalAssociation(path);
770
771 auto versionId = path.substr(pos + 1);
772 auto version = "null";
773 AssociationList assocs = {};
774 biosActivation = std::make_unique<Activation>(
775 bus, path, *this, versionId, server::Activation::Activations::Active,
776 assocs);
777 auto dummyErase = [](std::string /*entryId*/) {
778 // Do nothing;
779 };
780 biosVersion = std::make_unique<VersionClass>(
781 bus, path, version, VersionPurpose::Host, "", "",
782 std::bind(dummyErase, std::placeholders::_1));
783 biosVersion->deleteObject =
784 std::make_unique<phosphor::software::manager::Delete>(bus, path,
785 *biosVersion);
786}
787#endif
788
Gunnar Millsec1b41c2017-05-02 12:20:36 -0500789} // namespace updater
790} // namespace software
791} // namespace phosphor