| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 1 | #include "config.h" | 
|  | 2 |  | 
|  | 3 | #include "item_updater.hpp" | 
|  | 4 |  | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 5 | #include "utils.hpp" | 
|  | 6 |  | 
| Lei YU | 6520748 | 2019-10-11 16:39:36 +0800 | [diff] [blame] | 7 | #include <cassert> | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 8 | #include <filesystem> | 
|  | 9 | #include <phosphor-logging/elog-errors.hpp> | 
|  | 10 | #include <phosphor-logging/log.hpp> | 
|  | 11 | #include <xyz/openbmc_project/Common/error.hpp> | 
|  | 12 |  | 
| Lei YU | fda15a3 | 2019-09-19 14:43:02 +0800 | [diff] [blame] | 13 | namespace | 
|  | 14 | { | 
| Lei YU | 58c26e3 | 2019-09-27 17:52:06 +0800 | [diff] [blame] | 15 | constexpr auto MANIFEST_VERSION = "version"; | 
|  | 16 | constexpr auto MANIFEST_EXTENDED_VERSION = "extended_version"; | 
|  | 17 | } // namespace | 
| Lei YU | fda15a3 | 2019-09-19 14:43:02 +0800 | [diff] [blame] | 18 |  | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 19 | namespace phosphor | 
|  | 20 | { | 
|  | 21 | namespace software | 
|  | 22 | { | 
|  | 23 | namespace updater | 
|  | 24 | { | 
|  | 25 | namespace server = sdbusplus::xyz::openbmc_project::Software::server; | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 26 |  | 
|  | 27 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; | 
|  | 28 | using namespace phosphor::logging; | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 29 | using SVersion = server::Version; | 
|  | 30 | using VersionPurpose = SVersion::VersionPurpose; | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 31 |  | 
|  | 32 | void ItemUpdater::createActivation(sdbusplus::message::message& m) | 
|  | 33 | { | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 34 | sdbusplus::message::object_path objPath; | 
| George Liu | de27029 | 2020-06-12 17:14:17 +0800 | [diff] [blame] | 35 | std::map<std::string, std::map<std::string, std::variant<std::string>>> | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 36 | interfaces; | 
|  | 37 | m.read(objPath, interfaces); | 
|  | 38 |  | 
|  | 39 | std::string path(std::move(objPath)); | 
|  | 40 | std::string filePath; | 
|  | 41 | auto purpose = VersionPurpose::Unknown; | 
|  | 42 | std::string version; | 
|  | 43 |  | 
|  | 44 | for (const auto& [interfaceName, propertyMap] : interfaces) | 
|  | 45 | { | 
|  | 46 | if (interfaceName == VERSION_IFACE) | 
|  | 47 | { | 
|  | 48 | for (const auto& [propertyName, propertyValue] : propertyMap) | 
|  | 49 | { | 
|  | 50 | if (propertyName == "Purpose") | 
|  | 51 | { | 
|  | 52 | // Only process the PSU images | 
|  | 53 | auto value = SVersion::convertVersionPurposeFromString( | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 54 | std::get<std::string>(propertyValue)); | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 55 |  | 
|  | 56 | if (value == VersionPurpose::PSU) | 
|  | 57 | { | 
|  | 58 | purpose = value; | 
|  | 59 | } | 
|  | 60 | } | 
| Lei YU | f77189f | 2019-08-07 14:26:30 +0800 | [diff] [blame] | 61 | else if (propertyName == VERSION) | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 62 | { | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 63 | version = std::get<std::string>(propertyValue); | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 64 | } | 
|  | 65 | } | 
|  | 66 | } | 
|  | 67 | else if (interfaceName == FILEPATH_IFACE) | 
|  | 68 | { | 
|  | 69 | const auto& it = propertyMap.find("Path"); | 
|  | 70 | if (it != propertyMap.end()) | 
|  | 71 | { | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 72 | filePath = std::get<std::string>(it->second); | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 73 | } | 
|  | 74 | } | 
|  | 75 | } | 
|  | 76 | if ((filePath.empty()) || (purpose == VersionPurpose::Unknown)) | 
|  | 77 | { | 
|  | 78 | return; | 
|  | 79 | } | 
|  | 80 |  | 
|  | 81 | // Version id is the last item in the path | 
|  | 82 | auto pos = path.rfind("/"); | 
|  | 83 | if (pos == std::string::npos) | 
|  | 84 | { | 
|  | 85 | log<level::ERR>("No version id found in object path", | 
|  | 86 | entry("OBJPATH=%s", path.c_str())); | 
|  | 87 | return; | 
|  | 88 | } | 
|  | 89 |  | 
|  | 90 | auto versionId = path.substr(pos + 1); | 
|  | 91 |  | 
|  | 92 | if (activations.find(versionId) == activations.end()) | 
|  | 93 | { | 
|  | 94 | // Determine the Activation state by processing the given image dir. | 
| Lei YU | 9102944 | 2019-08-01 15:57:31 +0800 | [diff] [blame] | 95 | AssociationList associations; | 
| Lei YU | 58c26e3 | 2019-09-27 17:52:06 +0800 | [diff] [blame] | 96 | auto activationState = Activation::Status::Ready; | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 97 |  | 
| Lei YU | 9102944 | 2019-08-01 15:57:31 +0800 | [diff] [blame] | 98 | associations.emplace_back(std::make_tuple(ACTIVATION_FWD_ASSOCIATION, | 
|  | 99 | ACTIVATION_REV_ASSOCIATION, | 
| Lei YU | 5e0dcb3 | 2019-08-02 18:04:34 +0800 | [diff] [blame] | 100 | PSU_INVENTORY_PATH_BASE)); | 
| Lei YU | 9102944 | 2019-08-01 15:57:31 +0800 | [diff] [blame] | 101 |  | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 102 | fs::path manifestPath(filePath); | 
|  | 103 | manifestPath /= MANIFEST_FILE; | 
| Lei YU | 58c26e3 | 2019-09-27 17:52:06 +0800 | [diff] [blame] | 104 | std::string extendedVersion = | 
|  | 105 | Version::getValue(manifestPath, {MANIFEST_EXTENDED_VERSION}); | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 106 |  | 
| Lei YU | 9930137 | 2019-09-29 16:27:12 +0800 | [diff] [blame] | 107 | auto activation = | 
|  | 108 | createActivationObject(path, versionId, extendedVersion, | 
|  | 109 | activationState, associations, filePath); | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 110 | activations.emplace(versionId, std::move(activation)); | 
|  | 111 |  | 
|  | 112 | auto versionPtr = | 
| Lei YU | 9930137 | 2019-09-29 16:27:12 +0800 | [diff] [blame] | 113 | createVersionObject(path, versionId, version, purpose); | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 114 | versions.emplace(versionId, std::move(versionPtr)); | 
|  | 115 | } | 
|  | 116 | return; | 
|  | 117 | } | 
|  | 118 |  | 
| Lei YU | a5c47bb | 2019-09-29 11:28:53 +0800 | [diff] [blame] | 119 | void ItemUpdater::erase(const std::string& versionId) | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 120 | { | 
|  | 121 | auto it = versions.find(versionId); | 
|  | 122 | if (it == versions.end()) | 
|  | 123 | { | 
|  | 124 | log<level::ERR>(("Error: Failed to find version " + versionId + | 
|  | 125 | " in item updater versions map." | 
|  | 126 | " Unable to remove.") | 
|  | 127 | .c_str()); | 
|  | 128 | } | 
|  | 129 | else | 
|  | 130 | { | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 131 | versionStrings.erase(it->second->getVersionString()); | 
|  | 132 | versions.erase(it); | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 133 | } | 
|  | 134 |  | 
|  | 135 | // Removing entry in activations map | 
|  | 136 | auto ita = activations.find(versionId); | 
|  | 137 | if (ita == activations.end()) | 
|  | 138 | { | 
|  | 139 | log<level::ERR>(("Error: Failed to find version " + versionId + | 
|  | 140 | " in item updater activations map." | 
|  | 141 | " Unable to remove.") | 
|  | 142 | .c_str()); | 
|  | 143 | } | 
|  | 144 | else | 
|  | 145 | { | 
|  | 146 | activations.erase(versionId); | 
|  | 147 | } | 
|  | 148 | } | 
|  | 149 |  | 
| Lei YU | 9102944 | 2019-08-01 15:57:31 +0800 | [diff] [blame] | 150 | void ItemUpdater::createActiveAssociation(const std::string& path) | 
|  | 151 | { | 
|  | 152 | assocs.emplace_back( | 
|  | 153 | std::make_tuple(ACTIVE_FWD_ASSOCIATION, ACTIVE_REV_ASSOCIATION, path)); | 
|  | 154 | associations(assocs); | 
|  | 155 | } | 
|  | 156 |  | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 157 | void ItemUpdater::addFunctionalAssociation(const std::string& path) | 
| Lei YU | 9102944 | 2019-08-01 15:57:31 +0800 | [diff] [blame] | 158 | { | 
| Lei YU | 9102944 | 2019-08-01 15:57:31 +0800 | [diff] [blame] | 159 | assocs.emplace_back(std::make_tuple(FUNCTIONAL_FWD_ASSOCIATION, | 
|  | 160 | FUNCTIONAL_REV_ASSOCIATION, path)); | 
|  | 161 | associations(assocs); | 
|  | 162 | } | 
|  | 163 |  | 
| Lei YU | a8b966f | 2020-03-18 10:32:24 +0800 | [diff] [blame] | 164 | void ItemUpdater::addUpdateableAssociation(const std::string& path) | 
|  | 165 | { | 
|  | 166 | assocs.emplace_back(std::make_tuple(UPDATEABLE_FWD_ASSOCIATION, | 
|  | 167 | UPDATEABLE_REV_ASSOCIATION, path)); | 
|  | 168 | associations(assocs); | 
|  | 169 | } | 
|  | 170 |  | 
| Lei YU | 9102944 | 2019-08-01 15:57:31 +0800 | [diff] [blame] | 171 | void ItemUpdater::removeAssociation(const std::string& path) | 
|  | 172 | { | 
|  | 173 | for (auto iter = assocs.begin(); iter != assocs.end();) | 
|  | 174 | { | 
|  | 175 | if ((std::get<2>(*iter)).compare(path) == 0) | 
|  | 176 | { | 
|  | 177 | iter = assocs.erase(iter); | 
|  | 178 | associations(assocs); | 
|  | 179 | } | 
|  | 180 | else | 
|  | 181 | { | 
|  | 182 | ++iter; | 
|  | 183 | } | 
|  | 184 | } | 
|  | 185 | } | 
|  | 186 |  | 
| Lei YU | ffb3653 | 2019-10-15 13:55:24 +0800 | [diff] [blame] | 187 | void ItemUpdater::onUpdateDone(const std::string& versionId, | 
|  | 188 | const std::string& psuInventoryPath) | 
|  | 189 | { | 
|  | 190 | // After update is done, remove old activation objects | 
|  | 191 | for (auto it = activations.begin(); it != activations.end(); ++it) | 
|  | 192 | { | 
|  | 193 | if (it->second->getVersionId() != versionId && | 
|  | 194 | utils::isAssociated(psuInventoryPath, it->second->associations())) | 
|  | 195 | { | 
|  | 196 | removePsuObject(psuInventoryPath); | 
|  | 197 | break; | 
|  | 198 | } | 
|  | 199 | } | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 200 |  | 
|  | 201 | auto it = activations.find(versionId); | 
|  | 202 | assert(it != activations.end()); | 
|  | 203 | psuPathActivationMap.emplace(psuInventoryPath, it->second); | 
| Lei YU | ffb3653 | 2019-10-15 13:55:24 +0800 | [diff] [blame] | 204 | } | 
|  | 205 |  | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 206 | std::unique_ptr<Activation> ItemUpdater::createActivationObject( | 
|  | 207 | const std::string& path, const std::string& versionId, | 
| Lei YU | 58c26e3 | 2019-09-27 17:52:06 +0800 | [diff] [blame] | 208 | const std::string& extVersion, Activation::Status activationStatus, | 
| Lei YU | 9930137 | 2019-09-29 16:27:12 +0800 | [diff] [blame] | 209 | const AssociationList& assocs, const std::string& filePath) | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 210 | { | 
|  | 211 | return std::make_unique<Activation>(bus, path, versionId, extVersion, | 
| Lei YU | ffb3653 | 2019-10-15 13:55:24 +0800 | [diff] [blame] | 212 | activationStatus, assocs, filePath, | 
|  | 213 | this, this); | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 214 | } | 
|  | 215 |  | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 216 | void ItemUpdater::createPsuObject(const std::string& psuInventoryPath, | 
|  | 217 | const std::string& psuVersion) | 
|  | 218 | { | 
|  | 219 | auto versionId = utils::getVersionId(psuVersion); | 
|  | 220 | auto path = std::string(SOFTWARE_OBJPATH) + "/" + versionId; | 
|  | 221 |  | 
|  | 222 | auto it = activations.find(versionId); | 
|  | 223 | if (it != activations.end()) | 
|  | 224 | { | 
|  | 225 | // The versionId is already created, associate the path | 
|  | 226 | auto associations = it->second->associations(); | 
|  | 227 | associations.emplace_back(std::make_tuple(ACTIVATION_FWD_ASSOCIATION, | 
|  | 228 | ACTIVATION_REV_ASSOCIATION, | 
|  | 229 | psuInventoryPath)); | 
|  | 230 | it->second->associations(associations); | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 231 | psuPathActivationMap.emplace(psuInventoryPath, it->second); | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 232 | } | 
|  | 233 | else | 
|  | 234 | { | 
|  | 235 | // Create a new object for running PSU inventory | 
|  | 236 | AssociationList associations; | 
| Lei YU | 58c26e3 | 2019-09-27 17:52:06 +0800 | [diff] [blame] | 237 | auto activationState = Activation::Status::Active; | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 238 |  | 
|  | 239 | associations.emplace_back(std::make_tuple(ACTIVATION_FWD_ASSOCIATION, | 
|  | 240 | ACTIVATION_REV_ASSOCIATION, | 
|  | 241 | psuInventoryPath)); | 
|  | 242 |  | 
| Lei YU | 9930137 | 2019-09-29 16:27:12 +0800 | [diff] [blame] | 243 | auto activation = createActivationObject( | 
|  | 244 | path, versionId, "", activationState, associations, ""); | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 245 | activations.emplace(versionId, std::move(activation)); | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 246 | psuPathActivationMap.emplace(psuInventoryPath, activations[versionId]); | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 247 |  | 
|  | 248 | auto versionPtr = createVersionObject(path, versionId, psuVersion, | 
| Lei YU | 9930137 | 2019-09-29 16:27:12 +0800 | [diff] [blame] | 249 | VersionPurpose::PSU); | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 250 | versions.emplace(versionId, std::move(versionPtr)); | 
|  | 251 |  | 
|  | 252 | createActiveAssociation(path); | 
|  | 253 | addFunctionalAssociation(path); | 
| Lei YU | a8b966f | 2020-03-18 10:32:24 +0800 | [diff] [blame] | 254 | addUpdateableAssociation(path); | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 255 | } | 
|  | 256 | } | 
|  | 257 |  | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 258 | void ItemUpdater::removePsuObject(const std::string& psuInventoryPath) | 
|  | 259 | { | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 260 | psuStatusMap[psuInventoryPath] = {false, ""}; | 
|  | 261 |  | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 262 | auto it = psuPathActivationMap.find(psuInventoryPath); | 
|  | 263 | if (it == psuPathActivationMap.end()) | 
|  | 264 | { | 
|  | 265 | log<level::ERR>("No Activation found for PSU", | 
|  | 266 | entry("PSUPATH=%s", psuInventoryPath.c_str())); | 
|  | 267 | return; | 
|  | 268 | } | 
|  | 269 | const auto& activationPtr = it->second; | 
|  | 270 | psuPathActivationMap.erase(psuInventoryPath); | 
|  | 271 |  | 
|  | 272 | auto associations = activationPtr->associations(); | 
|  | 273 | for (auto iter = associations.begin(); iter != associations.end();) | 
|  | 274 | { | 
|  | 275 | if ((std::get<2>(*iter)).compare(psuInventoryPath) == 0) | 
|  | 276 | { | 
|  | 277 | iter = associations.erase(iter); | 
|  | 278 | } | 
|  | 279 | else | 
|  | 280 | { | 
|  | 281 | ++iter; | 
|  | 282 | } | 
|  | 283 | } | 
|  | 284 | if (associations.empty()) | 
|  | 285 | { | 
|  | 286 | // Remove the activation | 
| Lei YU | a5c47bb | 2019-09-29 11:28:53 +0800 | [diff] [blame] | 287 | erase(activationPtr->getVersionId()); | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 288 | } | 
|  | 289 | else | 
|  | 290 | { | 
|  | 291 | // Update association | 
|  | 292 | activationPtr->associations(associations); | 
|  | 293 | } | 
|  | 294 | } | 
|  | 295 |  | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 296 | std::unique_ptr<Version> ItemUpdater::createVersionObject( | 
|  | 297 | const std::string& objPath, const std::string& versionId, | 
|  | 298 | const std::string& versionString, | 
|  | 299 | sdbusplus::xyz::openbmc_project::Software::server::Version::VersionPurpose | 
| Lei YU | 9930137 | 2019-09-29 16:27:12 +0800 | [diff] [blame] | 300 | versionPurpose) | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 301 | { | 
| Lei YU | 6520748 | 2019-10-11 16:39:36 +0800 | [diff] [blame] | 302 | versionStrings.insert(versionString); | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 303 | auto version = std::make_unique<Version>( | 
| Lei YU | 9930137 | 2019-09-29 16:27:12 +0800 | [diff] [blame] | 304 | bus, objPath, versionId, versionString, versionPurpose, | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 305 | std::bind(&ItemUpdater::erase, this, std::placeholders::_1)); | 
|  | 306 | return version; | 
|  | 307 | } | 
|  | 308 |  | 
| Lei YU | a2c2cd7 | 2019-08-09 15:54:10 +0800 | [diff] [blame] | 309 | void ItemUpdater::onPsuInventoryChangedMsg(sdbusplus::message::message& msg) | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 310 | { | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 311 | using Interface = std::string; | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 312 | Interface interface; | 
|  | 313 | Properties properties; | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 314 | std::string psuPath = msg.get_path(); | 
|  | 315 |  | 
|  | 316 | msg.read(interface, properties); | 
| Lei YU | a2c2cd7 | 2019-08-09 15:54:10 +0800 | [diff] [blame] | 317 | onPsuInventoryChanged(psuPath, properties); | 
|  | 318 | } | 
|  | 319 |  | 
|  | 320 | void ItemUpdater::onPsuInventoryChanged(const std::string& psuPath, | 
|  | 321 | const Properties& properties) | 
|  | 322 | { | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 323 | std::optional<bool> present; | 
|  | 324 | std::optional<std::string> model; | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 325 |  | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 326 | // The code was expecting to get callback on multiple properties changed. | 
|  | 327 | // But in practice, the callback is received one-by-one for each property. | 
|  | 328 | // So it has to handle Present and Version property separately. | 
| Lei YU | f77189f | 2019-08-07 14:26:30 +0800 | [diff] [blame] | 329 | auto p = properties.find(PRESENT); | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 330 | if (p != properties.end()) | 
|  | 331 | { | 
|  | 332 | present = std::get<bool>(p->second); | 
|  | 333 | psuStatusMap[psuPath].present = *present; | 
|  | 334 | } | 
|  | 335 | p = properties.find(MODEL); | 
|  | 336 | if (p != properties.end()) | 
|  | 337 | { | 
|  | 338 | model = std::get<std::string>(p->second); | 
|  | 339 | psuStatusMap[psuPath].model = *model; | 
|  | 340 | } | 
|  | 341 |  | 
|  | 342 | // If present or model is not changed, ignore | 
|  | 343 | if (!present.has_value() && !model.has_value()) | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 344 | { | 
|  | 345 | return; | 
|  | 346 | } | 
|  | 347 |  | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 348 | if (psuStatusMap[psuPath].present) | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 349 | { | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 350 | // If model is not updated, let's wait for it | 
|  | 351 | if (psuStatusMap[psuPath].model.empty()) | 
|  | 352 | { | 
|  | 353 | log<level::DEBUG>("Waiting for model to be updated"); | 
|  | 354 | return; | 
|  | 355 | } | 
|  | 356 |  | 
|  | 357 | auto version = utils::getVersion(psuPath); | 
| Lei YU | dcaf893 | 2019-09-09 16:09:35 +0800 | [diff] [blame] | 358 | if (!version.empty()) | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 359 | { | 
| Lei YU | dcaf893 | 2019-09-09 16:09:35 +0800 | [diff] [blame] | 360 | createPsuObject(psuPath, version); | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 361 | // Check if there is new PSU images to update | 
|  | 362 | syncToLatestImage(); | 
|  | 363 | } | 
|  | 364 | else | 
|  | 365 | { | 
|  | 366 | // TODO: log an event | 
|  | 367 | log<level::ERR>("Failed to get PSU version", | 
|  | 368 | entry("PSU=%s", psuPath.c_str())); | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 369 | } | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 370 | } | 
|  | 371 | else | 
|  | 372 | { | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 373 | if (!present.has_value()) | 
|  | 374 | { | 
|  | 375 | // If a PSU is plugged out, model property is update to empty as | 
|  | 376 | // well, and we get callback here, but ignore that because it is | 
|  | 377 | // handled by "Present" callback. | 
|  | 378 | return; | 
|  | 379 | } | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 380 | // Remove object or association | 
|  | 381 | removePsuObject(psuPath); | 
|  | 382 | } | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 383 | } | 
|  | 384 |  | 
|  | 385 | void ItemUpdater::processPSUImage() | 
|  | 386 | { | 
|  | 387 | auto paths = utils::getPSUInventoryPath(bus); | 
|  | 388 | for (const auto& p : paths) | 
|  | 389 | { | 
| Lei YU | 5f3584d | 2019-08-27 16:28:53 +0800 | [diff] [blame] | 390 | auto service = utils::getService(bus, p.c_str(), ITEM_IFACE); | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 391 | auto present = utils::getProperty<bool>(bus, service.c_str(), p.c_str(), | 
| Lei YU | f77189f | 2019-08-07 14:26:30 +0800 | [diff] [blame] | 392 | ITEM_IFACE, PRESENT); | 
| Lei YU | 5f3584d | 2019-08-27 16:28:53 +0800 | [diff] [blame] | 393 | auto version = utils::getVersion(p); | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 394 | if (present && !version.empty()) | 
|  | 395 | { | 
|  | 396 | createPsuObject(p, version); | 
|  | 397 | } | 
| Lei YU | bd3b007 | 2019-08-08 13:09:50 +0800 | [diff] [blame] | 398 | // Add matches for PSU Inventory's property changes | 
|  | 399 | psuMatches.emplace_back( | 
| Lei YU | dcaf893 | 2019-09-09 16:09:35 +0800 | [diff] [blame] | 400 | bus, MatchRules::propertiesChanged(p, ITEM_IFACE), | 
| Lei YU | a2c2cd7 | 2019-08-09 15:54:10 +0800 | [diff] [blame] | 401 | std::bind(&ItemUpdater::onPsuInventoryChangedMsg, this, | 
| Lei YU | 1517f5f | 2019-10-14 16:44:42 +0800 | [diff] [blame] | 402 | std::placeholders::_1)); // For present | 
|  | 403 | psuMatches.emplace_back( | 
|  | 404 | bus, MatchRules::propertiesChanged(p, ASSET_IFACE), | 
|  | 405 | std::bind(&ItemUpdater::onPsuInventoryChangedMsg, this, | 
|  | 406 | std::placeholders::_1)); // For model | 
| Lei YU | ad90ad5 | 2019-08-06 11:19:28 +0800 | [diff] [blame] | 407 | } | 
|  | 408 | } | 
|  | 409 |  | 
| Lei YU | 58c26e3 | 2019-09-27 17:52:06 +0800 | [diff] [blame] | 410 | void ItemUpdater::processStoredImage() | 
|  | 411 | { | 
|  | 412 | scanDirectory(IMG_DIR_BUILTIN); | 
|  | 413 | scanDirectory(IMG_DIR_PERSIST); | 
|  | 414 | } | 
|  | 415 |  | 
|  | 416 | void ItemUpdater::scanDirectory(const fs::path& dir) | 
|  | 417 | { | 
|  | 418 | // The directory shall put PSU images in directories named with model | 
|  | 419 | if (!fs::exists(dir)) | 
|  | 420 | { | 
|  | 421 | // Skip | 
|  | 422 | return; | 
|  | 423 | } | 
|  | 424 | if (!fs::is_directory(dir)) | 
|  | 425 | { | 
|  | 426 | log<level::ERR>("The path is not a directory", | 
|  | 427 | entry("PATH=%s", dir.c_str())); | 
|  | 428 | return; | 
|  | 429 | } | 
|  | 430 | for (const auto& d : fs::directory_iterator(dir)) | 
|  | 431 | { | 
|  | 432 | // If the model in manifest does not match the dir name | 
|  | 433 | // Log a warning and skip it | 
|  | 434 | auto path = d.path(); | 
|  | 435 | auto manifest = path / MANIFEST_FILE; | 
|  | 436 | if (fs::exists(manifest)) | 
|  | 437 | { | 
|  | 438 | auto ret = Version::getValues( | 
|  | 439 | manifest.string(), | 
|  | 440 | {MANIFEST_VERSION, MANIFEST_EXTENDED_VERSION}); | 
|  | 441 | auto version = ret[MANIFEST_VERSION]; | 
|  | 442 | auto extVersion = ret[MANIFEST_EXTENDED_VERSION]; | 
|  | 443 | auto info = Version::getExtVersionInfo(extVersion); | 
|  | 444 | auto model = info["model"]; | 
|  | 445 | if (path.stem() != model) | 
|  | 446 | { | 
|  | 447 | log<level::ERR>("Unmatched model", | 
|  | 448 | entry("PATH=%s", path.c_str()), | 
|  | 449 | entry("MODEL=%s", model.c_str())); | 
|  | 450 | continue; | 
|  | 451 | } | 
|  | 452 | auto versionId = utils::getVersionId(version); | 
|  | 453 | auto it = activations.find(versionId); | 
|  | 454 | if (it == activations.end()) | 
|  | 455 | { | 
|  | 456 | // This is a version that is different than the running PSUs | 
|  | 457 | auto activationState = Activation::Status::Ready; | 
|  | 458 | auto purpose = VersionPurpose::PSU; | 
|  | 459 | auto objPath = std::string(SOFTWARE_OBJPATH) + "/" + versionId; | 
|  | 460 |  | 
|  | 461 | auto activation = createActivationObject( | 
|  | 462 | objPath, versionId, extVersion, activationState, {}, path); | 
|  | 463 | activations.emplace(versionId, std::move(activation)); | 
|  | 464 |  | 
|  | 465 | auto versionPtr = | 
|  | 466 | createVersionObject(objPath, versionId, version, purpose); | 
|  | 467 | versions.emplace(versionId, std::move(versionPtr)); | 
|  | 468 | } | 
|  | 469 | else | 
|  | 470 | { | 
|  | 471 | // This is a version that a running PSU is using, set the path | 
|  | 472 | // on the version object | 
|  | 473 | it->second->path(path); | 
|  | 474 | } | 
|  | 475 | } | 
|  | 476 | else | 
|  | 477 | { | 
|  | 478 | log<level::ERR>("No MANIFEST found", | 
|  | 479 | entry("PATH=%s", path.c_str())); | 
|  | 480 | } | 
|  | 481 | } | 
|  | 482 | } | 
|  | 483 |  | 
| Lei YU | 6520748 | 2019-10-11 16:39:36 +0800 | [diff] [blame] | 484 | std::optional<std::string> ItemUpdater::getLatestVersionId() | 
|  | 485 | { | 
|  | 486 | auto latestVersion = utils::getLatestVersion(versionStrings); | 
|  | 487 | if (latestVersion.empty()) | 
|  | 488 | { | 
|  | 489 | return {}; | 
|  | 490 | } | 
|  | 491 |  | 
|  | 492 | std::optional<std::string> versionId; | 
|  | 493 | for (const auto& v : versions) | 
|  | 494 | { | 
|  | 495 | if (v.second->version() == latestVersion) | 
|  | 496 | { | 
|  | 497 | versionId = v.first; | 
|  | 498 | break; | 
|  | 499 | } | 
|  | 500 | } | 
|  | 501 | assert(versionId.has_value()); | 
|  | 502 | return versionId; | 
|  | 503 | } | 
|  | 504 |  | 
| Lei YU | 63f9e71 | 2019-10-12 15:16:55 +0800 | [diff] [blame] | 505 | void ItemUpdater::syncToLatestImage() | 
|  | 506 | { | 
|  | 507 | auto latestVersionId = getLatestVersionId(); | 
|  | 508 | if (!latestVersionId) | 
|  | 509 | { | 
|  | 510 | return; | 
|  | 511 | } | 
|  | 512 | const auto& it = activations.find(*latestVersionId); | 
|  | 513 | assert(it != activations.end()); | 
|  | 514 | const auto& activation = it->second; | 
|  | 515 | const auto& assocs = activation->associations(); | 
|  | 516 |  | 
|  | 517 | auto paths = utils::getPSUInventoryPath(bus); | 
|  | 518 | for (const auto& p : paths) | 
|  | 519 | { | 
|  | 520 | // As long as there is a PSU is not associated with the latest image, | 
|  | 521 | // run the activation so that all PSUs are running the same latest | 
|  | 522 | // image. | 
|  | 523 | if (!utils::isAssociated(p, assocs)) | 
|  | 524 | { | 
|  | 525 | log<level::INFO>("Automatically update PSU", | 
|  | 526 | entry("VERSION_ID=%s", latestVersionId->c_str())); | 
|  | 527 | invokeActivation(activation); | 
|  | 528 | break; | 
|  | 529 | } | 
|  | 530 | } | 
|  | 531 | } | 
|  | 532 |  | 
|  | 533 | void ItemUpdater::invokeActivation( | 
|  | 534 | const std::unique_ptr<Activation>& activation) | 
|  | 535 | { | 
|  | 536 | activation->requestedActivation(Activation::RequestedActivations::Active); | 
|  | 537 | } | 
|  | 538 |  | 
| Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame] | 539 | } // namespace updater | 
|  | 540 | } // namespace software | 
|  | 541 | } // namespace phosphor |