Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 3 | #include "activation.hpp" |
Lei YU | 56aaf45 | 2018-06-21 16:09:44 +0800 | [diff] [blame] | 4 | #include "item_updater_helper.hpp" |
Adriana Kobylak | 30352a6 | 2024-04-09 09:25:36 -0500 | [diff] [blame] | 5 | #include "msl_verify.hpp" |
Jagpal Singh Gill | 6d131aa | 2024-04-07 23:56:48 -0700 | [diff] [blame] | 6 | #include "update_manager.hpp" |
Saqib Khan | 705f1bf | 2017-06-09 23:58:38 -0500 | [diff] [blame] | 7 | #include "version.hpp" |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 8 | #include "xyz/openbmc_project/Collection/DeleteAll/server.hpp" |
| 9 | |
Jagpal Singh Gill | bb024eb | 2024-04-07 23:34:00 -0700 | [diff] [blame] | 10 | #include <sdbusplus/async.hpp> |
Gunnar Mills | b0ce996 | 2018-09-07 13:39:10 -0500 | [diff] [blame] | 11 | #include <sdbusplus/server.hpp> |
John Wang | 85c356f | 2019-09-11 16:20:13 +0800 | [diff] [blame] | 12 | #include <xyz/openbmc_project/Association/Definitions/server.hpp> |
Michael Tritz | 37a5904 | 2017-07-12 13:44:53 -0500 | [diff] [blame] | 13 | #include <xyz/openbmc_project/Common/FactoryReset/server.hpp> |
Michael Tritz | 0129d92 | 2017-08-10 19:33:46 -0500 | [diff] [blame] | 14 | #include <xyz/openbmc_project/Control/FieldMode/server.hpp> |
Adriana Kobylak | 30352a6 | 2024-04-09 09:25:36 -0500 | [diff] [blame] | 15 | #include <xyz/openbmc_project/Software/MinimumVersion/server.hpp> |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 16 | |
Adriana Kobylak | 58aa750 | 2020-06-08 11:12:11 -0500 | [diff] [blame] | 17 | #include <string> |
Bright Cheng | 8e9ccfe | 2019-11-18 16:18:44 +0800 | [diff] [blame] | 18 | #include <vector> |
Adriana Kobylak | 58aa750 | 2020-06-08 11:12:11 -0500 | [diff] [blame] | 19 | |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 20 | namespace phosphor |
| 21 | { |
| 22 | namespace software |
| 23 | { |
| 24 | namespace updater |
| 25 | { |
| 26 | |
Jagpal Singh Gill | bb024eb | 2024-04-07 23:34:00 -0700 | [diff] [blame] | 27 | using ActivationIntf = |
| 28 | sdbusplus::xyz::openbmc_project::Software::server::Activation; |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 29 | using ItemUpdaterInherit = sdbusplus::server::object_t< |
Patrick Williams | 1e9a5f1 | 2023-08-23 16:53:06 -0500 | [diff] [blame] | 30 | sdbusplus::server::xyz::openbmc_project::common::FactoryReset, |
| 31 | sdbusplus::server::xyz::openbmc_project::control::FieldMode, |
| 32 | sdbusplus::server::xyz::openbmc_project::association::Definitions, |
| 33 | sdbusplus::server::xyz::openbmc_project::collection::DeleteAll>; |
Adriana Kobylak | 30352a6 | 2024-04-09 09:25:36 -0500 | [diff] [blame] | 34 | using MinimumVersionInherit = sdbusplus::server::object_t< |
| 35 | sdbusplus::server::xyz::openbmc_project::software::MinimumVersion>; |
Michael Tritz | 37a5904 | 2017-07-12 13:44:53 -0500 | [diff] [blame] | 36 | |
Patrick Williams | e75d10f | 2017-05-30 16:56:32 -0500 | [diff] [blame] | 37 | namespace MatchRules = sdbusplus::bus::match::rules; |
Gunnar Mills | 4844291 | 2017-10-06 13:34:07 -0500 | [diff] [blame] | 38 | using VersionClass = phosphor::software::manager::Version; |
Gunnar Mills | ded875d | 2017-08-28 16:44:52 -0500 | [diff] [blame] | 39 | using AssociationList = |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 40 | std::vector<std::tuple<std::string, std::string, std::string>>; |
Jagpal Singh Gill | 6d131aa | 2024-04-07 23:56:48 -0700 | [diff] [blame] | 41 | using UpdateManager = phosphor::software::update::Manager; |
Gunnar Mills | ded875d | 2017-08-28 16:44:52 -0500 | [diff] [blame] | 42 | |
Adriana Kobylak | 30352a6 | 2024-04-09 09:25:36 -0500 | [diff] [blame] | 43 | /** @class MinimumVersion |
| 44 | * @brief OpenBMC MinimumVersion implementation. |
| 45 | * @details A concrete implementation for |
| 46 | * xyz.openbmc_project.Software.MinimumVersion DBus API. |
| 47 | */ |
| 48 | class MinimumVersion : public MinimumVersionInherit |
| 49 | { |
| 50 | public: |
| 51 | /** @brief Constructs MinimumVersion |
| 52 | * |
| 53 | * @param[in] bus - The D-Bus bus object |
| 54 | * @param[in] path - The D-bus object path |
| 55 | */ |
| 56 | MinimumVersion(sdbusplus::bus_t& bus, const std::string& path) : |
| 57 | MinimumVersionInherit(bus, path.c_str(), action::emit_interface_added) |
| 58 | {} |
| 59 | }; |
| 60 | |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 61 | /** @class ItemUpdater |
| 62 | * @brief Manages the activation of the BMC version items. |
| 63 | */ |
Michael Tritz | 37a5904 | 2017-07-12 13:44:53 -0500 | [diff] [blame] | 64 | class ItemUpdater : public ItemUpdaterInherit |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 65 | { |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 66 | public: |
| 67 | /* |
| 68 | * @brief Types of Activation status for image validation. |
| 69 | */ |
| 70 | enum class ActivationStatus |
| 71 | { |
| 72 | ready, |
| 73 | invalid, |
| 74 | active |
| 75 | }; |
Saqib Khan | 35e83f3 | 2017-05-22 11:37:32 -0500 | [diff] [blame] | 76 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 77 | /** @brief Constructs ItemUpdater |
| 78 | * |
| 79 | * @param[in] bus - The D-Bus bus object |
| 80 | */ |
Jagpal Singh Gill | bb024eb | 2024-04-07 23:34:00 -0700 | [diff] [blame] | 81 | ItemUpdater(sdbusplus::async::context& ctx, const std::string& path, |
| 82 | bool useUpdateDBusInterface = true) : |
| 83 | ItemUpdaterInherit(ctx.get_bus(), path.c_str(), |
Patrick Williams | 35aa9a8 | 2022-04-05 15:55:30 -0500 | [diff] [blame] | 84 | ItemUpdaterInherit::action::defer_emit), |
Jagpal Singh Gill | 6d131aa | 2024-04-07 23:56:48 -0700 | [diff] [blame] | 85 | useUpdateDBusInterface(useUpdateDBusInterface), ctx(ctx), |
| 86 | bus(ctx.get_bus()), helper(bus) |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 87 | { |
Jagpal Singh Gill | bb024eb | 2024-04-07 23:34:00 -0700 | [diff] [blame] | 88 | if (!useUpdateDBusInterface) |
| 89 | { |
| 90 | versionMatch = std::make_unique<sdbusplus::bus::match_t>( |
| 91 | bus, |
| 92 | MatchRules::interfacesAdded() + |
| 93 | MatchRules::path("/xyz/openbmc_project/software"), |
| 94 | std::bind(std::mem_fn(&ItemUpdater::createActivation), this, |
| 95 | std::placeholders::_1)); |
| 96 | } |
Lei YU | 531fbc2 | 2021-12-10 20:03:18 +0800 | [diff] [blame] | 97 | getRunningSlot(); |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 98 | setBMCInventoryPath(); |
| 99 | processBMCImage(); |
| 100 | restoreFieldModeStatus(); |
Lei YU | 6e9fb1d | 2021-02-19 18:01:40 +0800 | [diff] [blame] | 101 | #ifdef HOST_BIOS_UPGRADE |
| 102 | createBIOSObject(); |
| 103 | #endif |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 104 | emit_object_added(); |
| 105 | }; |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 106 | |
Adriana Kobylak | bbcb7be | 2018-07-17 15:47:34 -0500 | [diff] [blame] | 107 | /** @brief Save priority value to persistent storage (flash and optionally |
| 108 | * a U-Boot environment variable) |
| 109 | * |
| 110 | * @param[in] versionId - The Id of the version |
| 111 | * @param[in] value - The priority value |
| 112 | * @return None |
| 113 | */ |
| 114 | void savePriority(const std::string& versionId, uint8_t value); |
| 115 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 116 | /** @brief Sets the given priority free by incrementing |
| 117 | * any existing priority with the same value by 1 |
| 118 | * |
| 119 | * @param[in] value - The priority that needs to be set free. |
| 120 | * @param[in] versionId - The Id of the version for which we |
| 121 | * are trying to free up the priority. |
| 122 | * @return None |
| 123 | */ |
| 124 | void freePriority(uint8_t value, const std::string& versionId); |
Saqib Khan | 4c1aec0 | 2017-07-06 11:46:13 -0500 | [diff] [blame] | 125 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 126 | /** |
| 127 | * @brief Create and populate the active BMC Version. |
| 128 | */ |
| 129 | void processBMCImage(); |
Saqib Khan | ba23988 | 2017-05-26 08:41:54 -0500 | [diff] [blame] | 130 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 131 | /** |
Jagpal Singh Gill | bb024eb | 2024-04-07 23:34:00 -0700 | [diff] [blame] | 132 | * @brief Verifies the image at filepath and creates the version and |
| 133 | * activation object. In case activation object already exists for the |
| 134 | * specified id, update the activation status based on image verification. |
| 135 | * @param[in] id - The unique identifier for the update. |
| 136 | * @param[in] path - The object path for the relevant objects. |
| 137 | * @param[in] version - The version of the image. |
| 138 | * @param[in] purpose - The purpose of the image. |
| 139 | * @param[in] extendedVersion The extended version of the image. |
| 140 | * @param[in] filePath - The file path where the image is located. |
| 141 | * @param[in] compatibleNames - The compatible name for the image. |
| 142 | * @param[out] Activations - Whether the image is ready to activate or not. |
| 143 | */ |
| 144 | ActivationIntf::Activations verifyAndCreateObjects( |
| 145 | std::string& id, std::string& path, std::string& version, |
| 146 | VersionClass::VersionPurpose purpose, std::string& extendedVersion, |
| 147 | std ::string& filePath, std::vector<std::string>& compatibleNames); |
| 148 | |
| 149 | /** |
| 150 | * @brief Creates the activation object |
| 151 | * @param[in] id - The unique identifier for the update. |
| 152 | * @param[in] path - The object path for the activation object. |
| 153 | * @param[in] applyTime - The apply time for the image |
| 154 | */ |
| 155 | void createActivationWithApplyTime( |
| 156 | std::string& id, std::string& path, |
| 157 | ApplyTimeIntf::RequestedApplyTimes applyTime); |
| 158 | |
| 159 | /** |
| 160 | * @brief Request the activation for the specified update. |
| 161 | * @param[in] id - The unique identifier for the update. |
| 162 | * @param[out] bool - status for the action. |
| 163 | */ |
| 164 | bool requestActivation(std::string& id); |
| 165 | |
| 166 | /** |
| 167 | * @brief Change the activation status for the specified update. |
| 168 | * @param[in] id - The unique identifier for the update. |
| 169 | * @param[in] status - The activation status to set. |
| 170 | * @param[out] bool - status for the action. |
| 171 | */ |
| 172 | bool updateActivationStatus(std::string& id, |
| 173 | ActivationIntf::Activations status); |
| 174 | |
| 175 | /** |
Jagpal Singh Gill | 6d131aa | 2024-04-07 23:56:48 -0700 | [diff] [blame] | 176 | * @brief Create the Update object |
| 177 | * @param[in] id - The unique identifier for the update. |
| 178 | * @param[in] path - The object path for the update object. |
| 179 | */ |
| 180 | void createUpdateObject(const std::string& id, const std::string& path); |
| 181 | |
| 182 | /** |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 183 | * @brief Erase specified entry D-Bus object |
| 184 | * if Action property is not set to Active |
| 185 | * |
| 186 | * @param[in] entryId - unique identifier of the entry |
| 187 | */ |
| 188 | void erase(std::string entryId); |
Leonel Gonzalez | 3526ef7 | 2017-07-07 14:38:25 -0500 | [diff] [blame] | 189 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 190 | /** |
| 191 | * @brief Deletes all versions except for the current one |
| 192 | */ |
Pavithra Barithaya | 36cc1c8 | 2024-06-22 00:41:28 -0500 | [diff] [blame] | 193 | void deleteAll() override; |
Gunnar Mills | ded875d | 2017-08-28 16:44:52 -0500 | [diff] [blame] | 194 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 195 | /** @brief Creates an active association to the |
| 196 | * newly active software image |
| 197 | * |
| 198 | * @param[in] path - The path to create the association to. |
| 199 | */ |
| 200 | void createActiveAssociation(const std::string& path); |
Gunnar Mills | ded875d | 2017-08-28 16:44:52 -0500 | [diff] [blame] | 201 | |
Adriana Kobylak | 991af7e | 2018-12-10 13:08:38 -0600 | [diff] [blame] | 202 | /** @brief Removes the associations from the provided software image path |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 203 | * |
Adriana Kobylak | 991af7e | 2018-12-10 13:08:38 -0600 | [diff] [blame] | 204 | * @param[in] path - The path to remove the associations from. |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 205 | */ |
Adriana Kobylak | 991af7e | 2018-12-10 13:08:38 -0600 | [diff] [blame] | 206 | void removeAssociations(const std::string& path); |
Gunnar Mills | ded875d | 2017-08-28 16:44:52 -0500 | [diff] [blame] | 207 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 208 | /** @brief Determine if the given priority is the lowest |
| 209 | * |
| 210 | * @param[in] value - The priority that needs to be checked. |
| 211 | * |
| 212 | * @return boolean corresponding to whether the given |
| 213 | * priority is lowest. |
| 214 | */ |
| 215 | bool isLowestPriority(uint8_t value); |
Saqib Khan | b9da663 | 2017-09-13 09:48:37 -0500 | [diff] [blame] | 216 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 217 | /** |
| 218 | * @brief Updates the U-Boot variables to point to the requested |
| 219 | * versionId, so that the systems boots from this version on |
| 220 | * the next reboot. |
| 221 | * |
| 222 | * @param[in] versionId - The version to point the system to boot from. |
| 223 | */ |
| 224 | void updateUbootEnvVars(const std::string& versionId); |
Adriana Kobylak | b77551c | 2017-10-27 12:46:23 -0500 | [diff] [blame] | 225 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 226 | /** |
| 227 | * @brief Updates the uboot variables to point to BMC version with lowest |
| 228 | * priority, so that the system boots from this version on the |
| 229 | * next boot. |
| 230 | */ |
| 231 | void resetUbootEnvVars(); |
Saqib Khan | 49446ae | 2017-10-02 10:54:20 -0500 | [diff] [blame] | 232 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 233 | /** @brief Brings the total number of active BMC versions to |
| 234 | * ACTIVE_BMC_MAX_ALLOWED -1. This function is intended to be |
| 235 | * run before activating a new BMC version. If this function |
| 236 | * needs to delete any BMC version(s) it will delete the |
| 237 | * version(s) with the highest priority, skipping the |
| 238 | * functional BMC version. |
Adriana Kobylak | a696359 | 2018-09-07 14:13:29 -0500 | [diff] [blame] | 239 | * |
| 240 | * @param[in] caller - The Activation object that called this function. |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 241 | */ |
Lei YU | 0cd6d84 | 2021-12-27 11:56:02 +0800 | [diff] [blame] | 242 | void freeSpace(const Activation& caller); |
Adriana Kobylak | 204e1e7 | 2018-01-24 16:00:05 -0600 | [diff] [blame] | 243 | |
AppaRao Puli | 1bb6dcb | 2020-03-27 20:51:57 +0530 | [diff] [blame] | 244 | /** @brief Creates a updateable association to the |
| 245 | * "running" BMC software image |
| 246 | * |
| 247 | * @param[in] path - The path to create the association. |
| 248 | */ |
| 249 | void createUpdateableAssociation(const std::string& path); |
| 250 | |
Adriana Kobylak | ec4eec3 | 2019-11-13 14:28:35 -0600 | [diff] [blame] | 251 | /** @brief Persistent map of Version D-Bus objects and their |
| 252 | * version id */ |
| 253 | std::map<std::string, std::unique_ptr<VersionClass>> versions; |
| 254 | |
Bright Cheng | 8e9ccfe | 2019-11-18 16:18:44 +0800 | [diff] [blame] | 255 | /** @brief Vector of needed BMC images in the tarball*/ |
| 256 | std::vector<std::string> imageUpdateList; |
| 257 | |
Manojkiran Eda | 19dd56b | 2024-06-17 14:29:52 +0530 | [diff] [blame] | 258 | /** @brief The slot of running BMC image */ |
Lei YU | 531fbc2 | 2021-12-10 20:03:18 +0800 | [diff] [blame] | 259 | uint32_t runningImageSlot = 0; |
| 260 | |
Jagpal Singh Gill | bb024eb | 2024-04-07 23:34:00 -0700 | [diff] [blame] | 261 | /** @brief Flag to indicate if the update interface is used or not */ |
| 262 | bool useUpdateDBusInterface; |
| 263 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 264 | private: |
| 265 | /** @brief Callback function for Software.Version match. |
| 266 | * @details Creates an Activation D-Bus object. |
| 267 | * |
| 268 | * @param[in] msg - Data associated with subscribed signal |
| 269 | */ |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 270 | void createActivation(sdbusplus::message_t& msg); |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 271 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 272 | /** |
| 273 | * @brief Validates the presence of SquashFS image in the image dir. |
| 274 | * |
| 275 | * @param[in] filePath - The path to the image dir. |
| 276 | * @param[out] result - ActivationStatus Enum. |
| 277 | * ready if validation was successful. |
| 278 | * invalid if validation fail. |
| 279 | * active if image is the current version. |
| 280 | * |
| 281 | */ |
| 282 | ActivationStatus validateSquashFSImage(const std::string& filePath); |
Saqib Khan | 35e83f3 | 2017-05-22 11:37:32 -0500 | [diff] [blame] | 283 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 284 | /** @brief BMC factory reset - marks the read-write partition for |
| 285 | * recreation upon reboot. */ |
| 286 | void reset() override; |
Michael Tritz | 37a5904 | 2017-07-12 13:44:53 -0500 | [diff] [blame] | 287 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 288 | /** |
| 289 | * @brief Enables field mode, if value=true. |
| 290 | * |
| 291 | * @param[in] value - If true, enables field mode. |
| 292 | * @param[out] result - Returns the current state of field mode. |
| 293 | * |
| 294 | */ |
| 295 | bool fieldModeEnabled(bool value) override; |
Michael Tritz | 0129d92 | 2017-08-10 19:33:46 -0500 | [diff] [blame] | 296 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 297 | /** @brief Sets the BMC inventory item path under |
| 298 | * /xyz/openbmc_project/inventory/system/chassis/. */ |
| 299 | void setBMCInventoryPath(); |
Gunnar Mills | b60add1 | 2017-08-24 16:41:42 -0500 | [diff] [blame] | 300 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 301 | /** @brief The path to the BMC inventory item. */ |
| 302 | std::string bmcInventoryPath; |
Gunnar Mills | b60add1 | 2017-08-24 16:41:42 -0500 | [diff] [blame] | 303 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 304 | /** @brief Restores field mode status on reboot. */ |
| 305 | void restoreFieldModeStatus(); |
Michael Tritz | 0129d92 | 2017-08-10 19:33:46 -0500 | [diff] [blame] | 306 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 307 | /** @brief Creates a functional association to the |
| 308 | * "running" BMC software image |
| 309 | * |
| 310 | * @param[in] path - The path to create the association to. |
| 311 | */ |
| 312 | void createFunctionalAssociation(const std::string& path); |
Gunnar Mills | 88e8a32 | 2017-09-13 11:09:28 -0500 | [diff] [blame] | 313 | |
Jagpal Singh Gill | 6d131aa | 2024-04-07 23:56:48 -0700 | [diff] [blame] | 314 | /** @brief D-Bus context */ |
| 315 | sdbusplus::async::context& ctx; |
| 316 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 317 | /** @brief Persistent sdbusplus D-Bus bus connection. */ |
Patrick Williams | bf2bb2b | 2022-07-22 19:26:52 -0500 | [diff] [blame] | 318 | sdbusplus::bus_t& bus; |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 319 | |
Lei YU | 56aaf45 | 2018-06-21 16:09:44 +0800 | [diff] [blame] | 320 | /** @brief The helper of image updater. */ |
| 321 | Helper helper; |
| 322 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 323 | /** @brief Persistent map of Activation D-Bus objects and their |
| 324 | * version id */ |
| 325 | std::map<std::string, std::unique_ptr<Activation>> activations; |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 326 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 327 | /** @brief sdbusplus signal match for Software.Version */ |
Jagpal Singh Gill | bb024eb | 2024-04-07 23:34:00 -0700 | [diff] [blame] | 328 | std::unique_ptr<sdbusplus::bus::match_t> versionMatch; |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 329 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 330 | /** @brief This entry's associations */ |
Patrick Williams | fc33ba8 | 2024-08-16 15:19:54 -0400 | [diff] [blame] | 331 | AssociationList assocs; |
Gunnar Mills | ded875d | 2017-08-28 16:44:52 -0500 | [diff] [blame] | 332 | |
Adriana Kobylak | 2285fe0 | 2018-02-27 15:36:59 -0600 | [diff] [blame] | 333 | /** @brief Clears read only partition for |
| 334 | * given Activation D-Bus object. |
| 335 | * |
| 336 | * @param[in] versionId - The version id. |
| 337 | */ |
Pavithra Barithaya | 6d17852 | 2024-06-24 04:17:29 -0500 | [diff] [blame] | 338 | void removeReadOnlyPartition(const std::string& versionId); |
Eddie James | eaa1ee0 | 2018-03-01 10:09:10 -0600 | [diff] [blame] | 339 | |
| 340 | /** @brief Copies U-Boot from the currently booted BMC chip to the |
| 341 | * alternate chip. |
| 342 | */ |
| 343 | void mirrorUbootToAlt(); |
Bright Cheng | 8e9ccfe | 2019-11-18 16:18:44 +0800 | [diff] [blame] | 344 | |
| 345 | /** @brief Check the required image files |
| 346 | * |
| 347 | * @param[in] filePath - BMC tarball file path |
| 348 | * @param[in] imageList - Image filenames included in the BMC tarball |
| 349 | * @param[out] result - Boolean |
| 350 | * true if all image files are found in BMC tarball |
| 351 | * false if one of image files is missing |
| 352 | */ |
Pavithra Barithaya | c5f6e7e | 2024-06-24 09:50:21 -0500 | [diff] [blame] | 353 | static bool checkImage(const std::string& filePath, |
| 354 | const std::vector<std::string>& imageList); |
Lei YU | 6e9fb1d | 2021-02-19 18:01:40 +0800 | [diff] [blame] | 355 | |
Adriana Kobylak | 30352a6 | 2024-04-09 09:25:36 -0500 | [diff] [blame] | 356 | /** @brief Persistent MinimumVersion D-Bus object */ |
| 357 | std::unique_ptr<MinimumVersion> minimumVersionObject; |
| 358 | |
Jagpal Singh Gill | 6d131aa | 2024-04-07 23:56:48 -0700 | [diff] [blame] | 359 | /** @brief Persistent map of Update D-Bus objects and their SwIds */ |
| 360 | std::map<std::string, std::unique_ptr<UpdateManager>> updateManagers; |
| 361 | |
Lei YU | 6e9fb1d | 2021-02-19 18:01:40 +0800 | [diff] [blame] | 362 | #ifdef HOST_BIOS_UPGRADE |
| 363 | /** @brief Create the BIOS object without knowing the version. |
| 364 | * |
| 365 | * The object is created only to provide the DBus access so that an |
| 366 | * external service could set the correct BIOS version. |
| 367 | * On BIOS code update, the version is updated accordingly. |
| 368 | */ |
| 369 | void createBIOSObject(); |
| 370 | |
| 371 | /** @brief Persistent Activation D-Bus object for BIOS */ |
| 372 | std::unique_ptr<Activation> biosActivation; |
| 373 | |
Lei YU | 16aa28a | 2021-05-07 10:17:30 +0800 | [diff] [blame] | 374 | public: |
Lei YU | 6e9fb1d | 2021-02-19 18:01:40 +0800 | [diff] [blame] | 375 | /** @brief Persistent Version D-Bus object for BIOS */ |
| 376 | std::unique_ptr<VersionClass> biosVersion; |
| 377 | #endif |
Lei YU | 531fbc2 | 2021-12-10 20:03:18 +0800 | [diff] [blame] | 378 | |
| 379 | /** @brief Get the slot number of running image */ |
| 380 | void getRunningSlot(); |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 381 | }; |
| 382 | |
Gunnar Mills | ec1b41c | 2017-05-02 12:20:36 -0500 | [diff] [blame] | 383 | } // namespace updater |
| 384 | } // namespace software |
| 385 | } // namespace phosphor |