blob: 502a8e0030408a8fb50a962606d074d1e91bb3e2 [file] [log] [blame]
Saqib Khan7254f0e2017-04-10 21:45:37 -05001#include <string>
Adriana Kobylak5ba6b102017-05-19 09:41:27 -05002#include <experimental/filesystem>
Saqib Khan7254f0e2017-04-10 21:45:37 -05003#include <fstream>
Eddie James13fc66a2017-08-31 15:36:44 -05004#include <phosphor-logging/elog-errors.hpp>
Adriana Kobylakb66ac3a2017-03-28 13:33:20 -05005#include <phosphor-logging/log.hpp>
Eddie James13fc66a2017-08-31 15:36:44 -05006#include "xyz/openbmc_project/Common/error.hpp"
Adriana Kobylakd6a549e2017-05-10 16:23:01 -05007#include <xyz/openbmc_project/Software/Version/server.hpp>
Saqib Khan167601b2017-06-18 23:33:46 -05008#include "version.hpp"
Adriana Kobylak2d8fa222017-03-15 12:34:32 -05009#include "config.h"
10#include "item_updater.hpp"
Saqib Khana8ade7e2017-04-12 10:27:56 -050011#include "activation.hpp"
Michael Tritz60bc20f2017-07-29 23:32:21 -050012#include "serialize.hpp"
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050013
14namespace openpower
15{
16namespace software
17{
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -050018namespace updater
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050019{
20
Saqib Khana8ade7e2017-04-12 10:27:56 -050021// When you see server:: you know we're referencing our base class
22namespace server = sdbusplus::xyz::openbmc_project::Software::server;
Adriana Kobylak5ba6b102017-05-19 09:41:27 -050023namespace fs = std::experimental::filesystem;
Saqib Khana8ade7e2017-04-12 10:27:56 -050024
Eddie James13fc66a2017-08-31 15:36:44 -050025using namespace sdbusplus::xyz::openbmc_project::Common::Error;
Adriana Kobylakb66ac3a2017-03-28 13:33:20 -050026using namespace phosphor::logging;
27
Saqib Khana8ade7e2017-04-12 10:27:56 -050028constexpr auto squashFSImage = "pnor.xz.squashfs";
Eddie James13fc66a2017-08-31 15:36:44 -050029constexpr auto CHASSIS_STATE_PATH = "/xyz/openbmc_project/state/chassis0";
30constexpr auto CHASSIS_STATE_OBJ = "xyz.openbmc_project.State.Chassis";
31constexpr auto CHASSIS_STATE_OFF =
32 "xyz.openbmc_project.State.Chassis.PowerState.Off";
33constexpr auto SYSTEMD_PROPERTY_INTERFACE = "org.freedesktop.DBus.Properties";
Saqib Khana8ade7e2017-04-12 10:27:56 -050034
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050035void ItemUpdater::createActivation(sdbusplus::message::message& m)
Adriana Kobylak2d8fa222017-03-15 12:34:32 -050036{
Patrick Williamse4290942017-06-16 05:43:08 -050037 using SVersion = server::Version;
38 using VersionPurpose = SVersion::VersionPurpose;
39 namespace msg = sdbusplus::message;
40 namespace variant_ns = msg::variant_ns;
41
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050042 sdbusplus::message::object_path objPath;
43 std::map<std::string,
Patrick Williamse4290942017-06-16 05:43:08 -050044 std::map<std::string, msg::variant<std::string>>> interfaces;
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050045 m.read(objPath, interfaces);
Patrick Williamse4290942017-06-16 05:43:08 -050046
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050047 std::string path(std::move(objPath));
Adriana Kobylak5ba6b102017-05-19 09:41:27 -050048 std::string filePath;
Patrick Williamse4290942017-06-16 05:43:08 -050049 auto purpose = VersionPurpose::Unknown;
Saqib Khance148702017-06-11 12:01:58 -050050 std::string version;
Adriana Kobylak5ba6b102017-05-19 09:41:27 -050051
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050052 for (const auto& intf : interfaces)
Adriana Kobylakb66ac3a2017-03-28 13:33:20 -050053 {
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050054 if (intf.first == VERSION_IFACE)
55 {
56 for (const auto& property : intf.second)
57 {
58 if (property.first == "Purpose")
59 {
60 // Only process the Host and System images
Patrick Williamse4290942017-06-16 05:43:08 -050061 auto value = SVersion::convertVersionPurposeFromString(
62 variant_ns::get<std::string>(property.second));
63
64 if (value == VersionPurpose::Host ||
65 value == VersionPurpose::System)
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050066 {
Saqib Khance148702017-06-11 12:01:58 -050067 purpose = value;
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050068 }
69 }
Saqib Khance148702017-06-11 12:01:58 -050070 else if (property.first == "Version")
71 {
Patrick Williamse4290942017-06-16 05:43:08 -050072 version = variant_ns::get<std::string>(property.second);
Saqib Khance148702017-06-11 12:01:58 -050073 }
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050074 }
75 }
Adriana Kobylak5ba6b102017-05-19 09:41:27 -050076 else if (intf.first == FILEPATH_IFACE)
77 {
78 for (const auto& property : intf.second)
79 {
80 if (property.first == "Path")
81 {
Patrick Williamse4290942017-06-16 05:43:08 -050082 filePath = variant_ns::get<std::string>(property.second);
Adriana Kobylak5ba6b102017-05-19 09:41:27 -050083 }
84 }
85 }
86 }
Patrick Williamse4290942017-06-16 05:43:08 -050087 if ((filePath.empty()) || (purpose == VersionPurpose::Unknown))
Adriana Kobylak5ba6b102017-05-19 09:41:27 -050088 {
89 return;
Adriana Kobylakb66ac3a2017-03-28 13:33:20 -050090 }
91
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050092 // Version id is the last item in the path
93 auto pos = path.rfind("/");
94 if (pos == std::string::npos)
Adriana Kobylakb66ac3a2017-03-28 13:33:20 -050095 {
Adriana Kobylakd6a549e2017-05-10 16:23:01 -050096 log<level::ERR>("No version id found in object path",
97 entry("OBJPATH=%s", path));
98 return;
99 }
100
101 auto versionId = path.substr(pos + 1);
102
103 if (activations.find(versionId) == activations.end())
104 {
105 // Determine the Activation state by processing the given image dir.
106 auto activationState = server::Activation::Activations::Invalid;
Gunnar Mills3588acc2017-09-07 13:13:22 -0500107 AssociationList associations = {};
Adriana Kobylak5ba6b102017-05-19 09:41:27 -0500108 if (ItemUpdater::validateSquashFSImage(filePath) == 0)
Adriana Kobylakb66ac3a2017-03-28 13:33:20 -0500109 {
Adriana Kobylakd6a549e2017-05-10 16:23:01 -0500110 activationState = server::Activation::Activations::Ready;
Gunnar Mills3588acc2017-09-07 13:13:22 -0500111 // Create an association to the host inventory item
112 associations.emplace_back(std::make_tuple(
113 ACTIVATION_FWD_ASSOCIATION,
114 ACTIVATION_REV_ASSOCIATION,
115 HOST_INVENTORY_PATH));
Adriana Kobylakb66ac3a2017-03-28 13:33:20 -0500116 }
117
Adriana Kobylak5ba6b102017-05-19 09:41:27 -0500118 fs::path manifestPath(filePath);
119 manifestPath /= MANIFEST_FILE;
Saqib Khan167601b2017-06-18 23:33:46 -0500120 std::string extendedVersion = (Version::getValue(manifestPath.string(),
121 std::map<std::string, std::string>
122 {{"extended_version", ""}})).begin()->second;
Gunnar Mills3edb84b2017-08-18 15:13:15 -0500123
Adriana Kobylakd6a549e2017-05-10 16:23:01 -0500124 activations.insert(std::make_pair(
125 versionId,
126 std::make_unique<Activation>(
127 bus,
128 path,
Saqib Khan81bac882017-06-08 12:17:01 -0500129 *this,
Adriana Kobylakd6a549e2017-05-10 16:23:01 -0500130 versionId,
131 extendedVersion,
Gunnar Mills3edb84b2017-08-18 15:13:15 -0500132 activationState,
133 associations)));
Saqib Khance148702017-06-11 12:01:58 -0500134 versions.insert(std::make_pair(
135 versionId,
136 std::make_unique<Version>(
137 bus,
138 path,
139 version,
140 purpose,
Eddie Jamesfa5daf42017-09-01 11:51:28 -0500141 filePath)));
Saqib Khan00044f42017-07-10 17:24:43 -0500142 }
Patrick Williams3accb322017-05-30 16:29:52 -0500143 return;
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500144}
145
Saqib Khan167601b2017-06-18 23:33:46 -0500146void ItemUpdater::processPNORImage()
Saqib Khan7254f0e2017-04-10 21:45:37 -0500147{
Saqib Khan4c5d7442017-07-18 00:43:52 -0500148 // Read pnor.toc from folders under /media/
149 // to get Active Software Versions.
Gunnar Mills3fa70282017-08-18 15:30:42 -0500150 for (const auto& iter : fs::directory_iterator(MEDIA_DIR))
Saqib Khan4c5d7442017-07-18 00:43:52 -0500151 {
152 auto activationState = server::Activation::Activations::Active;
153
154 static const auto PNOR_RO_PREFIX_LEN = strlen(PNOR_RO_PREFIX);
Saqib Khan2be9ba92017-09-26 22:44:10 -0500155 static const auto PNOR_RW_PREFIX_LEN = strlen(PNOR_RW_PREFIX);
Saqib Khan4c5d7442017-07-18 00:43:52 -0500156
157 // Check if the PNOR_RO_PREFIX is the prefix of the iter.path
158 if (0 == iter.path().native().compare(0, PNOR_RO_PREFIX_LEN,
159 PNOR_RO_PREFIX))
160 {
Saqib Khan6a522262017-09-26 12:02:50 -0500161 // The versionId is extracted from the path
162 // for example /media/pnor-ro-2a1022fe.
163 auto id = iter.path().native().substr(PNOR_RO_PREFIX_LEN);
Saqib Khan4c5d7442017-07-18 00:43:52 -0500164 auto pnorTOC = iter.path() / PNOR_TOC_FILE;
165 if (!fs::is_regular_file(pnorTOC))
166 {
Gunnar Mills850d5f62017-10-19 17:04:38 -0500167 log<level::ERR>("Failed to read pnorTOC.",
168 entry("FILENAME=%s", pnorTOC.string()));
Saqib Khan6a522262017-09-26 12:02:50 -0500169 ItemUpdater::erase(id);
170 continue;
Saqib Khan4c5d7442017-07-18 00:43:52 -0500171 }
172 auto keyValues =
173 Version::getValue(pnorTOC,
174 {{ "version", "" },
175 { "extended_version", "" } });
176 auto& version = keyValues.at("version");
177 if (version.empty())
178 {
179 log<level::ERR>("Failed to read version from pnorTOC",
180 entry("FILENAME=%s", pnorTOC.string()));
181 activationState = server::Activation::Activations::Invalid;
182 }
183
184 auto& extendedVersion = keyValues.at("extended_version");
185 if (extendedVersion.empty())
186 {
187 log<level::ERR>("Failed to read extendedVersion from pnorTOC",
188 entry("FILENAME=%s", pnorTOC.string()));
189 activationState = server::Activation::Activations::Invalid;
190 }
191
Saqib Khan4c5d7442017-07-18 00:43:52 -0500192 auto purpose = server::Version::VersionPurpose::Host;
193 auto path = fs::path(SOFTWARE_OBJPATH) / id;
Gunnar Mills3588acc2017-09-07 13:13:22 -0500194 AssociationList associations = {};
Saqib Khan4c5d7442017-07-18 00:43:52 -0500195
Gunnar Mills3588acc2017-09-07 13:13:22 -0500196 if (activationState == server::Activation::Activations::Active)
197 {
198 // Create an association to the host inventory item
199 associations.emplace_back(std::make_tuple(
200 ACTIVATION_FWD_ASSOCIATION,
201 ACTIVATION_REV_ASSOCIATION,
202 HOST_INVENTORY_PATH));
Gunnar Mills3edb84b2017-08-18 15:13:15 -0500203
Gunnar Mills3588acc2017-09-07 13:13:22 -0500204 // Create an active association since this image is active
205 createActiveAssociation(path);
206 }
Gunnar Mills3edb84b2017-08-18 15:13:15 -0500207
Saqib Khan4c5d7442017-07-18 00:43:52 -0500208 // Create Activation instance for this version.
209 activations.insert(std::make_pair(
210 id,
211 std::make_unique<Activation>(
212 bus,
213 path,
214 *this,
215 id,
216 extendedVersion,
Gunnar Mills3edb84b2017-08-18 15:13:15 -0500217 activationState,
218 associations)));
Saqib Khan4c5d7442017-07-18 00:43:52 -0500219
220 // If Active, create RedundancyPriority instance for this version.
221 if (activationState == server::Activation::Activations::Active)
222 {
Michael Tritz36417922017-08-04 14:00:29 -0500223 uint8_t priority = std::numeric_limits<uint8_t>::max();
224 if (!restoreFromFile(id, priority))
Saqib Khan4c5d7442017-07-18 00:43:52 -0500225 {
Michael Tritz36417922017-08-04 14:00:29 -0500226 log<level::ERR>("Unable to restore priority from file.",
Gunnar Mills3fa70282017-08-18 15:30:42 -0500227 entry("VERSIONID=%s", id));
Saqib Khan4c5d7442017-07-18 00:43:52 -0500228 }
Michael Tritz36417922017-08-04 14:00:29 -0500229 activations.find(id)->second->redundancyPriority =
230 std::make_unique<RedundancyPriority>(
231 bus,
232 path,
233 *(activations.find(id)->second),
234 priority);
Saqib Khan4c5d7442017-07-18 00:43:52 -0500235 }
236
237 // Create Version instance for this version.
238 versions.insert(std::make_pair(
239 id,
240 std::make_unique<Version>(
241 bus,
242 path,
243 version,
244 purpose,
Eddie Jamesfa5daf42017-09-01 11:51:28 -0500245 "")));
Saqib Khan4c5d7442017-07-18 00:43:52 -0500246 }
Saqib Khan2be9ba92017-09-26 22:44:10 -0500247 else if (0 == iter.path().native().compare(0, PNOR_RW_PREFIX_LEN,
248 PNOR_RW_PREFIX))
249 {
250 auto id = iter.path().native().substr(PNOR_RW_PREFIX_LEN);
251 auto roDir = PNOR_RO_PREFIX + id;
252 if (!fs::is_directory(roDir))
253 {
254 log<level::ERR>("No corresponding read-only volume found.",
255 entry("DIRNAME=%s", roDir));
256 ItemUpdater::erase(id);
257 }
258 }
Saqib Khan4c5d7442017-07-18 00:43:52 -0500259 }
Gunnar Mills2badd7a2017-09-20 12:51:28 -0500260
261 // Look at the RO symlink to determine if there is a functional image
262 auto id = determineId(PNOR_RO_ACTIVE_PATH);
263 if (!id.empty())
264 {
265 updateFunctionalAssociation(std::string{SOFTWARE_OBJPATH} + '/' + id);
266 }
Saqib Khan167601b2017-06-18 23:33:46 -0500267 return;
Saqib Khan7254f0e2017-04-10 21:45:37 -0500268}
269
Adriana Kobylak5ba6b102017-05-19 09:41:27 -0500270int ItemUpdater::validateSquashFSImage(const std::string& filePath)
Saqib Khana8ade7e2017-04-12 10:27:56 -0500271{
Saqib Khan4c5d7442017-07-18 00:43:52 -0500272 auto file = fs::path(filePath) / squashFSImage;
273 if (fs::is_regular_file(file))
Saqib Khana8ade7e2017-04-12 10:27:56 -0500274 {
275 return 0;
276 }
277 else
278 {
279 log<level::ERR>("Failed to find the SquashFS image.");
280 return -1;
281 }
282}
283
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500284void ItemUpdater::removeReadOnlyPartition(std::string versionId)
Michael Tritzdd961b62017-05-17 14:07:03 -0500285{
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500286 auto serviceFile = "obmc-flash-bios-ubiumount-ro@" + versionId +
287 ".service";
288
289 // Remove the read-only partitions.
290 auto method = bus.new_method_call(
291 SYSTEMD_BUSNAME,
292 SYSTEMD_PATH,
293 SYSTEMD_INTERFACE,
294 "StartUnit");
295 method.append(serviceFile, "replace");
296 bus.call_noreply(method);
297}
298
299void ItemUpdater::removeReadWritePartition(std::string versionId)
300{
301 auto serviceFile = "obmc-flash-bios-ubiumount-rw@" + versionId +
Michael Tritzdd961b62017-05-17 14:07:03 -0500302 ".service";
303
304 // Remove the read-write partitions.
Adriana Kobylakd6a549e2017-05-10 16:23:01 -0500305 auto method = bus.new_method_call(
Michael Tritzdd961b62017-05-17 14:07:03 -0500306 SYSTEMD_BUSNAME,
307 SYSTEMD_PATH,
308 SYSTEMD_INTERFACE,
309 "StartUnit");
310 method.append(serviceFile, "replace");
Adriana Kobylakd6a549e2017-05-10 16:23:01 -0500311 bus.call_noreply(method);
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500312}
Michael Tritzdd961b62017-05-17 14:07:03 -0500313
Michael Tritzfa7aa122017-09-22 15:16:11 -0500314void ItemUpdater::reset()
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500315{
Michael Tritzfa7aa122017-09-22 15:16:11 -0500316 for (const auto& it : activations)
317 {
318 auto serviceFile = "obmc-flash-bios-ubiclear@pnor-rw-" + it.first +
319 ".service";
320
321 // Clear the read-write partitions.
322 auto method = bus.new_method_call(
323 SYSTEMD_BUSNAME,
324 SYSTEMD_PATH,
325 SYSTEMD_INTERFACE,
326 "StartUnit");
327 method.append(serviceFile, "replace");
328 auto reply = bus.call(method);
329
330 if (reply.is_method_error())
331 {
332 elog<InternalFailure>();
333 }
334
335 removeFile(it.first);
336 }
337 // Clear the preserved partition.
Adriana Kobylakd6a549e2017-05-10 16:23:01 -0500338 auto method = bus.new_method_call(
Michael Tritzdd961b62017-05-17 14:07:03 -0500339 SYSTEMD_BUSNAME,
340 SYSTEMD_PATH,
341 SYSTEMD_INTERFACE,
342 "StartUnit");
Michael Tritzfa7aa122017-09-22 15:16:11 -0500343 method.append("obmc-flash-bios-ubiclear@pnor-prsv.service", "replace");
344 auto reply = bus.call(method);
Michael Tritzdd961b62017-05-17 14:07:03 -0500345
Michael Tritzfa7aa122017-09-22 15:16:11 -0500346 if (reply.is_method_error())
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500347 {
Michael Tritzfa7aa122017-09-22 15:16:11 -0500348 elog<InternalFailure>();
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500349 }
Michael Tritzfa7aa122017-09-22 15:16:11 -0500350
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500351 return;
352}
353
Eddie James13fc66a2017-08-31 15:36:44 -0500354bool ItemUpdater::isVersionFunctional(std::string versionId)
355{
356 if (!fs::exists(PNOR_RO_ACTIVE_PATH))
357 {
358 return false;
359 }
360
361 fs::path activeRO = fs::read_symlink(PNOR_RO_ACTIVE_PATH);
362
363 if (!fs::is_directory(activeRO))
364 {
365 return false;
366 }
367
368 if (activeRO.string().find(versionId) == std::string::npos)
369 {
370 return false;
371 }
372
373 // active PNOR is the version we're checking
374 return true;
375}
376
377bool ItemUpdater::isChassisOn()
378{
379 auto mapperCall = bus.new_method_call(
380 MAPPER_BUSNAME,
381 MAPPER_PATH,
382 MAPPER_INTERFACE,
383 "GetObject");
384
385 mapperCall.append(CHASSIS_STATE_PATH,
386 std::vector<std::string>({CHASSIS_STATE_OBJ}));
387 auto mapperResponseMsg = bus.call(mapperCall);
388 if (mapperResponseMsg.is_method_error())
389 {
390 log<level::ERR>("Error in Mapper call");
391 elog<InternalFailure>();
392 }
393 using MapperResponseType = std::map<std::string, std::vector<std::string>>;
394 MapperResponseType mapperResponse;
395 mapperResponseMsg.read(mapperResponse);
396 if (mapperResponse.empty())
397 {
398 log<level::ERR>("Invalid Response from mapper");
399 elog<InternalFailure>();
400 }
401
402 auto method = bus.new_method_call((mapperResponse.begin()->first).c_str(),
403 CHASSIS_STATE_PATH,
404 SYSTEMD_PROPERTY_INTERFACE,
405 "Get");
406 method.append(CHASSIS_STATE_OBJ, "CurrentPowerState");
407 auto response = bus.call(method);
408 if (response.is_method_error())
409 {
410 log<level::ERR>("Error in fetching current Chassis State",
Gunnar Mills850d5f62017-10-19 17:04:38 -0500411 entry("MAPPERRESPONSE=%s",
Eddie James13fc66a2017-08-31 15:36:44 -0500412 (mapperResponse.begin()->first).c_str()));
413 elog<InternalFailure>();
414 }
415 sdbusplus::message::variant<std::string> currentChassisState;
416 response.read(currentChassisState);
417 auto strParam =
418 sdbusplus::message::variant_ns::get<std::string>(currentChassisState);
419 return (strParam != CHASSIS_STATE_OFF);
420}
421
Saqib Khanb8e7f312017-08-12 10:24:10 -0500422void ItemUpdater::freePriority(uint8_t value, const std::string& versionId)
Saqib Khan81bac882017-06-08 12:17:01 -0500423{
424 //TODO openbmc/openbmc#1896 Improve the performance of this function
425 for (const auto& intf : activations)
426 {
Gunnar Mills3fa70282017-08-18 15:30:42 -0500427 if (intf.second->redundancyPriority)
Saqib Khan81bac882017-06-08 12:17:01 -0500428 {
Saqib Khanb8e7f312017-08-12 10:24:10 -0500429 if (intf.second->redundancyPriority.get()->priority() == value &&
430 intf.second->versionId != versionId)
Saqib Khan81bac882017-06-08 12:17:01 -0500431 {
Gunnar Mills3fa70282017-08-18 15:30:42 -0500432 intf.second->redundancyPriority.get()->priority(value + 1);
Saqib Khan81bac882017-06-08 12:17:01 -0500433 }
434 }
435 }
436}
437
Saqib Khan2af5c492017-07-17 16:15:13 -0500438bool ItemUpdater::isLowestPriority(uint8_t value)
439{
440 for (const auto& intf : activations)
441 {
Gunnar Mills3fa70282017-08-18 15:30:42 -0500442 if (intf.second->redundancyPriority)
Saqib Khan2af5c492017-07-17 16:15:13 -0500443 {
444 if (intf.second->redundancyPriority.get()->priority() < value)
445 {
446 return false;
447 }
448 }
449 }
450 return true;
451}
452
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500453void ItemUpdater::erase(std::string entryId)
454{
Eddie James13fc66a2017-08-31 15:36:44 -0500455 if (isVersionFunctional(entryId) && isChassisOn()) {
456 log<level::ERR>(("Error: Version " + entryId + \
457 " is currently active and running on the host." \
458 " Unable to remove.").c_str());
459 return;
460 }
Saqib Khanef8cd9f2017-08-16 14:20:30 -0500461 // Remove priority persistence file
462 removeFile(entryId);
463
Saqib Khan1e0aa5c2017-08-31 11:04:17 -0500464 // Removing read-only and read-write partitions
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500465 removeReadWritePartition(entryId);
466 removeReadOnlyPartition(entryId);
467
468 // Removing entry in versions map
469 auto it = versions.find(entryId);
470 if (it == versions.end())
471 {
472 log<level::ERR>(("Error: Failed to find version " + entryId + \
Gunnar Mills3fa70282017-08-18 15:30:42 -0500473 " in item updater versions map." \
474 " Unable to remove.").c_str());
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500475 return;
476 }
477 versions.erase(entryId);
478
479 // Removing entry in activations map
480 auto ita = activations.find(entryId);
481 if (ita == activations.end())
482 {
483 log<level::ERR>(("Error: Failed to find version " + entryId + \
Gunnar Mills3fa70282017-08-18 15:30:42 -0500484 " in item updater activations map." \
485 " Unable to remove.").c_str());
Leonel Gonzalez9c8adfa2017-07-12 11:08:40 -0500486 return;
487 }
488 activations.erase(entryId);
489}
490
Michael Tritz234a07e2017-09-21 00:53:06 -0500491void ItemUpdater::deleteAll()
492{
493 std::vector<std::string> deletableActivations;
494
495 for (const auto& activationIt : activations)
496 {
497 if (!isVersionFunctional(activationIt.first))
498 {
499 deletableActivations.push_back(activationIt.first);
500 }
501 }
502
503 for (const auto& deletableIt : deletableActivations)
504 {
505 ItemUpdater::erase(deletableIt);
506 }
507
508 // Remove any remaining pnor-ro- or pnor-rw- volumes that do not match
509 // the current version.
510 auto method = bus.new_method_call(
511 SYSTEMD_BUSNAME,
512 SYSTEMD_PATH,
513 SYSTEMD_INTERFACE,
514 "StartUnit");
515 method.append("obmc-flash-bios-cleanup.service", "replace");
516 bus.call_noreply(method);
517}
518
Saqib Khan2cbfa032017-08-17 14:52:37 -0500519// TODO: openbmc/openbmc#1402 Monitor flash usage
520void ItemUpdater::freeSpace()
521{
522 std::size_t count = 0;
523 decltype(activations.begin()->second->redundancyPriority.get()->priority())
524 highestPriority = 0;
525 decltype(activations.begin()->second->versionId) highestPriorityVersion;
526 for (const auto& iter : activations)
527 {
528 if (iter.second.get()->activation() == server::Activation::Activations::Active)
529 {
530 count++;
531 if (iter.second->redundancyPriority.get()->priority() > highestPriority)
532 {
533 highestPriority = iter.second->redundancyPriority.get()->priority();
534 highestPriorityVersion = iter.second->versionId;
535 }
536 }
537 }
538 // Remove the pnor version with highest priority since the PNOR
539 // can't hold more than 2 versions.
540 if (count >= ACTIVE_PNOR_MAX_ALLOWED)
541 {
542 erase(highestPriorityVersion);
543 }
544}
545
Gunnar Mills61010b22017-09-20 15:25:26 -0500546void ItemUpdater::createActiveAssociation(const std::string& path)
Gunnar Mills9741cd12017-08-28 15:09:00 -0500547{
548 assocs.emplace_back(std::make_tuple(ACTIVE_FWD_ASSOCIATION,
549 ACTIVE_REV_ASSOCIATION,
550 path));
551 associations(assocs);
552}
553
Gunnar Mills833e4f32017-09-14 12:30:27 -0500554void ItemUpdater::updateFunctionalAssociation(const std::string& path)
555{
556 // remove all functional associations
557 for (auto iter = assocs.begin(); iter != assocs.end();)
558 {
559 if ((std::get<0>(*iter)).compare(FUNCTIONAL_FWD_ASSOCIATION) == 0)
560 {
561 iter = assocs.erase(iter);
562 }
563 else
564 {
565 ++iter;
566 }
567 }
568 assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION,
569 FUNCTIONAL_REV_ASSOCIATION,
570 path));
571 associations(assocs);
572}
573
Gunnar Mills61010b22017-09-20 15:25:26 -0500574void ItemUpdater::removeActiveAssociation(const std::string& path)
Gunnar Mills9741cd12017-08-28 15:09:00 -0500575{
576 for (auto iter = assocs.begin(); iter != assocs.end();)
577 {
Gunnar Mills833e4f32017-09-14 12:30:27 -0500578 if ((std::get<0>(*iter)).compare(ACTIVE_FWD_ASSOCIATION) == 0 &&
579 (std::get<2>(*iter)).compare(path) == 0)
Gunnar Mills9741cd12017-08-28 15:09:00 -0500580 {
581 iter = assocs.erase(iter);
582 associations(assocs);
583 }
584 else
585 {
586 ++iter;
587 }
588 }
589}
590
Gunnar Mills2badd7a2017-09-20 12:51:28 -0500591std::string ItemUpdater::determineId(const std::string& symlinkPath)
592{
593 if (!fs::exists(symlinkPath))
594 {
595 return {};
596 }
597
598 auto target = fs::canonical(symlinkPath).string();
599
600 // check to make sure the target really exists
601 if (!fs::is_regular_file(target + "/" + PNOR_TOC_FILE))
602 {
603 return {};
604 }
605 // Get the image <id> from the symlink target
606 // for example /media/ro-2a1022fe
607 static const auto PNOR_RO_PREFIX_LEN = strlen(PNOR_RO_PREFIX);
608 return target.substr(PNOR_RO_PREFIX_LEN);
609}
610
Adriana Kobylakbefe5ce2017-04-05 15:57:44 -0500611} // namespace updater
Adriana Kobylak2d8fa222017-03-15 12:34:32 -0500612} // namespace software
613} // namespace openpower