| Alexander Hansen | 4e1142d | 2025-07-25 17:07:27 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: Apache-2.0 | 
|  | 2 | // SPDX-FileCopyrightText: Copyright 2018 Intel Corporation | 
| James Feist | 3cb5fec | 2018-01-23 14:41:51 -0800 | [diff] [blame] | 3 |  | 
| Brad Bishop | e45d8c7 | 2022-05-25 15:12:53 -0400 | [diff] [blame] | 4 | #include "entity_manager.hpp" | 
| James Feist | 1df06a4 | 2019-04-11 14:23:04 -0700 | [diff] [blame] | 5 |  | 
| Christopher Meis | fc9e7fd | 2025-04-03 13:13:35 +0200 | [diff] [blame] | 6 | #include "../utils.hpp" | 
|  | 7 | #include "../variant_visitors.hpp" | 
| Christopher Meis | bdaa6b2 | 2025-04-02 10:49:02 +0200 | [diff] [blame] | 8 | #include "configuration.hpp" | 
| Christopher Meis | 12bea9b | 2025-04-03 10:14:42 +0200 | [diff] [blame] | 9 | #include "dbus_interface.hpp" | 
| Alexander Hansen | f57a259 | 2025-06-27 15:07:07 +0200 | [diff] [blame] | 10 | #include "log_device_inventory.hpp" | 
| Brad Bishop | e45d8c7 | 2022-05-25 15:12:53 -0400 | [diff] [blame] | 11 | #include "overlay.hpp" | 
| Christopher Meis | 26fbbd5 | 2025-03-26 14:55:06 +0100 | [diff] [blame] | 12 | #include "perform_scan.hpp" | 
| Benjamin Fair | ca2eb04 | 2022-09-13 06:40:42 +0000 | [diff] [blame] | 13 | #include "topology.hpp" | 
| Christopher Meis | 59ef1e7 | 2025-04-16 08:53:25 +0200 | [diff] [blame] | 14 | #include "utils.hpp" | 
| James Feist | 481c5d5 | 2019-08-13 14:40:40 -0700 | [diff] [blame] | 15 |  | 
| James Feist | 02d2b93 | 2020-02-06 16:28:48 -0800 | [diff] [blame] | 16 | #include <boost/asio/io_context.hpp> | 
| Ed Tanous | 49a888c | 2023-03-06 13:44:51 -0800 | [diff] [blame] | 17 | #include <boost/asio/post.hpp> | 
| James Feist | b1728ca | 2020-04-30 15:40:55 -0700 | [diff] [blame] | 18 | #include <boost/asio/steady_timer.hpp> | 
| James Feist | 3cb5fec | 2018-01-23 14:41:51 -0800 | [diff] [blame] | 19 | #include <boost/container/flat_map.hpp> | 
|  | 20 | #include <boost/container/flat_set.hpp> | 
| James Feist | f5125b0 | 2019-06-06 11:27:43 -0700 | [diff] [blame] | 21 | #include <boost/range/iterator_range.hpp> | 
| James Feist | 8c505da | 2020-05-28 10:06:33 -0700 | [diff] [blame] | 22 | #include <nlohmann/json.hpp> | 
| Alexander Hansen | 8feb045 | 2025-09-15 14:29:20 +0200 | [diff] [blame] | 23 | #include <phosphor-logging/lg2.hpp> | 
| James Feist | 8c505da | 2020-05-28 10:06:33 -0700 | [diff] [blame] | 24 | #include <sdbusplus/asio/connection.hpp> | 
|  | 25 | #include <sdbusplus/asio/object_server.hpp> | 
| Alexander Hansen | c58af0b | 2025-09-12 15:47:19 +0200 | [diff] [blame] | 26 | #include <xyz/openbmc_project/Association/Definitions/common.hpp> | 
|  | 27 | #include <xyz/openbmc_project/Inventory/Item/Bmc/common.hpp> | 
|  | 28 | #include <xyz/openbmc_project/Inventory/Item/System/common.hpp> | 
|  | 29 | #include <xyz/openbmc_project/Inventory/Item/common.hpp> | 
| James Feist | 8c505da | 2020-05-28 10:06:33 -0700 | [diff] [blame] | 30 |  | 
| James Feist | 637b3ef | 2019-04-15 16:35:30 -0700 | [diff] [blame] | 31 | #include <filesystem> | 
| James Feist | a465ccc | 2019-02-08 12:51:01 -0800 | [diff] [blame] | 32 | #include <fstream> | 
| Andrew Jeffery | e35d0ac | 2022-03-24 15:53:13 +1030 | [diff] [blame] | 33 | #include <functional> | 
| Andrew Jeffery | 666583b | 2021-12-01 15:50:12 +1030 | [diff] [blame] | 34 | #include <map> | 
| James Feist | a465ccc | 2019-02-08 12:51:01 -0800 | [diff] [blame] | 35 | #include <regex> | 
| James Feist | 1df06a4 | 2019-04-11 14:23:04 -0700 | [diff] [blame] | 36 | constexpr const char* tempConfigDir = "/tmp/configuration/"; | 
|  | 37 | constexpr const char* lastConfiguration = "/tmp/configuration/last.json"; | 
| James Feist | f1b1414 | 2019-04-10 15:22:09 -0700 | [diff] [blame] | 38 |  | 
| Adrian Ambrożewicz | c789fca | 2020-05-14 15:50:05 +0200 | [diff] [blame] | 39 | static constexpr std::array<const char*, 6> settableInterfaces = { | 
|  | 40 | "FanProfile", "Pid", "Pid.Zone", "Stepwise", "Thresholds", "Polling"}; | 
| James Feist | 3cb5fec | 2018-01-23 14:41:51 -0800 | [diff] [blame] | 41 |  | 
| Ed Tanous | 07d467b | 2021-02-23 14:48:37 -0800 | [diff] [blame] | 42 | const std::regex illegalDbusPathRegex("[^A-Za-z0-9_.]"); | 
|  | 43 | const std::regex illegalDbusMemberRegex("[^A-Za-z0-9_]"); | 
| James Feist | 1b2e224 | 2018-01-30 13:45:19 -0800 | [diff] [blame] | 44 |  | 
| James Feist | a465ccc | 2019-02-08 12:51:01 -0800 | [diff] [blame] | 45 | sdbusplus::asio::PropertyPermission getPermission(const std::string& interface) | 
| James Feist | c6248a5 | 2018-08-14 10:09:45 -0700 | [diff] [blame] | 46 | { | 
|  | 47 | return std::find(settableInterfaces.begin(), settableInterfaces.end(), | 
|  | 48 | interface) != settableInterfaces.end() | 
|  | 49 | ? sdbusplus::asio::PropertyPermission::readWrite | 
|  | 50 | : sdbusplus::asio::PropertyPermission::readOnly; | 
|  | 51 | } | 
|  | 52 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 53 | EntityManager::EntityManager( | 
| Alexander Hansen | a555acf | 2025-06-27 11:59:10 +0200 | [diff] [blame] | 54 | std::shared_ptr<sdbusplus::asio::connection>& systemBus, | 
|  | 55 | boost::asio::io_context& io) : | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 56 | systemBus(systemBus), | 
|  | 57 | objServer(sdbusplus::asio::object_server(systemBus, /*skipManager=*/true)), | 
|  | 58 | lastJson(nlohmann::json::object()), | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 59 | systemConfiguration(nlohmann::json::object()), io(io), | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 60 | dbus_interface(io, objServer), powerStatus(*systemBus), | 
|  | 61 | propertiesChangedTimer(io) | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 62 | { | 
|  | 63 | // All other objects that EntityManager currently support are under the | 
|  | 64 | // inventory subtree. | 
|  | 65 | // See the discussion at | 
|  | 66 | // https://discord.com/channels/775381525260664832/1018929092009144380 | 
|  | 67 | objServer.add_manager("/xyz/openbmc_project/inventory"); | 
| James Feist | 75fdeeb | 2018-02-20 14:26:16 -0800 | [diff] [blame] | 68 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 69 | entityIface = objServer.add_interface("/xyz/openbmc_project/EntityManager", | 
|  | 70 | "xyz.openbmc_project.EntityManager"); | 
|  | 71 | entityIface->register_method("ReScan", [this]() { | 
|  | 72 | propertiesChangedCallback(); | 
|  | 73 | }); | 
|  | 74 | dbus_interface::tryIfaceInitialize(entityIface); | 
| Christopher Meis | f725257 | 2025-06-11 13:22:05 +0200 | [diff] [blame] | 75 |  | 
|  | 76 | initFilters(configuration.probeInterfaces); | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 77 | } | 
|  | 78 |  | 
|  | 79 | void EntityManager::postToDbus(const nlohmann::json& newConfiguration) | 
| James Feist | 1b2e224 | 2018-01-30 13:45:19 -0800 | [diff] [blame] | 80 | { | 
| Matt Spinler | 6eb6097 | 2023-08-14 16:36:20 -0500 | [diff] [blame] | 81 | std::map<std::string, std::string> newBoards; // path -> name | 
| Benjamin Fair | ca2eb04 | 2022-09-13 06:40:42 +0000 | [diff] [blame] | 82 |  | 
| James Feist | 97a63f1 | 2018-05-17 13:50:57 -0700 | [diff] [blame] | 83 | // iterate through boards | 
| Patrick Williams | 2594d36 | 2022-09-28 06:46:24 -0500 | [diff] [blame] | 84 | for (const auto& [boardId, boardConfig] : newConfiguration.items()) | 
| James Feist | 1b2e224 | 2018-01-30 13:45:19 -0800 | [diff] [blame] | 85 | { | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 86 | postBoardToDBus(boardId, boardConfig, newBoards); | 
| James Feist | 1b2e224 | 2018-01-30 13:45:19 -0800 | [diff] [blame] | 87 | } | 
| Benjamin Fair | ca2eb04 | 2022-09-13 06:40:42 +0000 | [diff] [blame] | 88 |  | 
| Matt Spinler | 6eb6097 | 2023-08-14 16:36:20 -0500 | [diff] [blame] | 89 | for (const auto& [assocPath, assocPropValue] : | 
| Alexander Hansen | 32e7418 | 2025-08-20 16:16:00 +0200 | [diff] [blame] | 90 | topology.getAssocs(std::views::keys(newBoards))) | 
| Benjamin Fair | ca2eb04 | 2022-09-13 06:40:42 +0000 | [diff] [blame] | 91 | { | 
| Matt Spinler | 6eb6097 | 2023-08-14 16:36:20 -0500 | [diff] [blame] | 92 | auto findBoard = newBoards.find(assocPath); | 
|  | 93 | if (findBoard == newBoards.end()) | 
|  | 94 | { | 
|  | 95 | continue; | 
|  | 96 | } | 
| Benjamin Fair | ca2eb04 | 2022-09-13 06:40:42 +0000 | [diff] [blame] | 97 |  | 
| Alexander Hansen | 57604ed | 2025-06-27 13:22:28 +0200 | [diff] [blame] | 98 | auto ifacePtr = dbus_interface.createInterface( | 
| Alexander Hansen | c58af0b | 2025-09-12 15:47:19 +0200 | [diff] [blame] | 99 | assocPath, | 
|  | 100 | sdbusplus::common::xyz::openbmc_project::association::Definitions:: | 
|  | 101 | interface, | 
| Matt Spinler | 6eb6097 | 2023-08-14 16:36:20 -0500 | [diff] [blame] | 102 | findBoard->second); | 
|  | 103 |  | 
|  | 104 | ifacePtr->register_property("Associations", assocPropValue); | 
| Christopher Meis | 12bea9b | 2025-04-03 10:14:42 +0200 | [diff] [blame] | 105 | dbus_interface::tryIfaceInitialize(ifacePtr); | 
| Benjamin Fair | ca2eb04 | 2022-09-13 06:40:42 +0000 | [diff] [blame] | 106 | } | 
| James Feist | 1b2e224 | 2018-01-30 13:45:19 -0800 | [diff] [blame] | 107 | } | 
|  | 108 |  | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 109 | void EntityManager::postBoardToDBus( | 
|  | 110 | const std::string& boardId, const nlohmann::json& boardConfig, | 
|  | 111 | std::map<std::string, std::string>& newBoards) | 
|  | 112 | { | 
|  | 113 | std::string boardName = boardConfig["Name"]; | 
|  | 114 | std::string boardNameOrig = boardConfig["Name"]; | 
|  | 115 | std::string jsonPointerPath = "/" + boardId; | 
|  | 116 | // loop through newConfiguration, but use values from system | 
|  | 117 | // configuration to be able to modify via dbus later | 
|  | 118 | auto boardValues = systemConfiguration[boardId]; | 
|  | 119 | auto findBoardType = boardValues.find("Type"); | 
|  | 120 | std::string boardType; | 
|  | 121 | if (findBoardType != boardValues.end() && | 
|  | 122 | findBoardType->type() == nlohmann::json::value_t::string) | 
|  | 123 | { | 
|  | 124 | boardType = findBoardType->get<std::string>(); | 
|  | 125 | std::regex_replace(boardType.begin(), boardType.begin(), | 
|  | 126 | boardType.end(), illegalDbusMemberRegex, "_"); | 
|  | 127 | } | 
|  | 128 | else | 
|  | 129 | { | 
| Alexander Hansen | 8feb045 | 2025-09-15 14:29:20 +0200 | [diff] [blame] | 130 | lg2::error("Unable to find type for {BOARD} reverting to Chassis.", | 
|  | 131 | "BOARD", boardName); | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 132 | boardType = "Chassis"; | 
|  | 133 | } | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 134 |  | 
| Christopher Meis | 811160e | 2025-08-08 08:48:37 +0200 | [diff] [blame] | 135 | const std::string boardPath = | 
|  | 136 | em_utils::buildInventorySystemPath(boardName, boardType); | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 137 |  | 
|  | 138 | std::shared_ptr<sdbusplus::asio::dbus_interface> inventoryIface = | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 139 | dbus_interface.createInterface( | 
| Alexander Hansen | c58af0b | 2025-09-12 15:47:19 +0200 | [diff] [blame] | 140 | boardPath, | 
|  | 141 | sdbusplus::common::xyz::openbmc_project::inventory::Item::interface, | 
|  | 142 | boardName); | 
|  | 143 |  | 
|  | 144 | const std::string invItemIntf = std::format( | 
|  | 145 | "{}.{}", | 
|  | 146 | sdbusplus::common::xyz::openbmc_project::inventory::Item::interface, | 
|  | 147 | boardType); | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 148 |  | 
|  | 149 | std::shared_ptr<sdbusplus::asio::dbus_interface> boardIface = | 
| Alexander Hansen | c58af0b | 2025-09-12 15:47:19 +0200 | [diff] [blame] | 150 | dbus_interface.createInterface(boardPath, invItemIntf, boardNameOrig); | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 151 |  | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 152 | dbus_interface.createAddObjectMethod(jsonPointerPath, boardPath, | 
|  | 153 | systemConfiguration, boardNameOrig); | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 154 |  | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 155 | dbus_interface.populateInterfaceFromJson( | 
|  | 156 | systemConfiguration, jsonPointerPath, boardIface, boardValues); | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 157 | jsonPointerPath += "/"; | 
|  | 158 | // iterate through board properties | 
|  | 159 | for (const auto& [propName, propValue] : boardValues.items()) | 
|  | 160 | { | 
|  | 161 | if (propValue.type() == nlohmann::json::value_t::object) | 
|  | 162 | { | 
|  | 163 | std::shared_ptr<sdbusplus::asio::dbus_interface> iface = | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 164 | dbus_interface.createInterface(boardPath, propName, | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 165 | boardNameOrig); | 
|  | 166 |  | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 167 | dbus_interface.populateInterfaceFromJson( | 
|  | 168 | systemConfiguration, jsonPointerPath + propName, iface, | 
|  | 169 | propValue); | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 170 | } | 
|  | 171 | } | 
|  | 172 |  | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 173 | nlohmann::json::iterator exposes = boardValues.find("Exposes"); | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 174 | if (exposes == boardValues.end()) | 
|  | 175 | { | 
|  | 176 | return; | 
|  | 177 | } | 
|  | 178 | // iterate through exposes | 
|  | 179 | jsonPointerPath += "Exposes/"; | 
|  | 180 |  | 
|  | 181 | // store the board level pointer so we can modify it on the way down | 
|  | 182 | std::string jsonPointerPathBoard = jsonPointerPath; | 
|  | 183 | size_t exposesIndex = -1; | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 184 | for (nlohmann::json& item : *exposes) | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 185 | { | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 186 | postExposesRecordsToDBus(item, exposesIndex, boardNameOrig, | 
|  | 187 | jsonPointerPath, jsonPointerPathBoard, | 
|  | 188 | boardPath, boardType); | 
|  | 189 | } | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 190 |  | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 191 | newBoards.emplace(boardPath, boardNameOrig); | 
|  | 192 | } | 
|  | 193 |  | 
|  | 194 | void EntityManager::postExposesRecordsToDBus( | 
|  | 195 | nlohmann::json& item, size_t& exposesIndex, | 
|  | 196 | const std::string& boardNameOrig, std::string jsonPointerPath, | 
|  | 197 | const std::string& jsonPointerPathBoard, const std::string& boardPath, | 
|  | 198 | const std::string& boardType) | 
|  | 199 | { | 
|  | 200 | exposesIndex++; | 
|  | 201 | jsonPointerPath = jsonPointerPathBoard; | 
|  | 202 | jsonPointerPath += std::to_string(exposesIndex); | 
|  | 203 |  | 
|  | 204 | auto findName = item.find("Name"); | 
|  | 205 | if (findName == item.end()) | 
|  | 206 | { | 
| Alexander Hansen | 8feb045 | 2025-09-15 14:29:20 +0200 | [diff] [blame] | 207 | lg2::error("cannot find name in field {ITEM}", "ITEM", item); | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 208 | return; | 
|  | 209 | } | 
|  | 210 | auto findStatus = item.find("Status"); | 
|  | 211 | // if status is not found it is assumed to be status = 'okay' | 
|  | 212 | if (findStatus != item.end()) | 
|  | 213 | { | 
|  | 214 | if (*findStatus == "disabled") | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 215 | { | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 216 | return; | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 217 | } | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 218 | } | 
|  | 219 | auto findType = item.find("Type"); | 
|  | 220 | std::string itemType; | 
|  | 221 | if (findType != item.end()) | 
|  | 222 | { | 
|  | 223 | itemType = findType->get<std::string>(); | 
|  | 224 | std::regex_replace(itemType.begin(), itemType.begin(), itemType.end(), | 
|  | 225 | illegalDbusPathRegex, "_"); | 
|  | 226 | } | 
|  | 227 | else | 
|  | 228 | { | 
|  | 229 | itemType = "unknown"; | 
|  | 230 | } | 
|  | 231 | std::string itemName = findName->get<std::string>(); | 
|  | 232 | std::regex_replace(itemName.begin(), itemName.begin(), itemName.end(), | 
|  | 233 | illegalDbusMemberRegex, "_"); | 
|  | 234 | std::string ifacePath = boardPath; | 
|  | 235 | ifacePath += "/"; | 
|  | 236 | ifacePath += itemName; | 
|  | 237 |  | 
|  | 238 | if (itemType == "BMC") | 
|  | 239 | { | 
|  | 240 | std::shared_ptr<sdbusplus::asio::dbus_interface> bmcIface = | 
|  | 241 | dbus_interface.createInterface( | 
| Alexander Hansen | c58af0b | 2025-09-12 15:47:19 +0200 | [diff] [blame] | 242 | ifacePath, | 
|  | 243 | sdbusplus::common::xyz::openbmc_project::inventory::item::Bmc:: | 
|  | 244 | interface, | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 245 | boardNameOrig); | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 246 | dbus_interface.populateInterfaceFromJson( | 
|  | 247 | systemConfiguration, jsonPointerPath, bmcIface, item, | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 248 | getPermission(itemType)); | 
|  | 249 | } | 
|  | 250 | else if (itemType == "System") | 
|  | 251 | { | 
|  | 252 | std::shared_ptr<sdbusplus::asio::dbus_interface> systemIface = | 
|  | 253 | dbus_interface.createInterface( | 
| Alexander Hansen | c58af0b | 2025-09-12 15:47:19 +0200 | [diff] [blame] | 254 | ifacePath, | 
|  | 255 | sdbusplus::common::xyz::openbmc_project::inventory::item:: | 
|  | 256 | System::interface, | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 257 | boardNameOrig); | 
|  | 258 | dbus_interface.populateInterfaceFromJson( | 
|  | 259 | systemConfiguration, jsonPointerPath, systemIface, item, | 
|  | 260 | getPermission(itemType)); | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 261 | } | 
|  | 262 |  | 
|  | 263 | for (const auto& [name, config] : item.items()) | 
|  | 264 | { | 
|  | 265 | jsonPointerPath = jsonPointerPathBoard; | 
|  | 266 | jsonPointerPath.append(std::to_string(exposesIndex)) | 
|  | 267 | .append("/") | 
|  | 268 | .append(name); | 
| Alexander Hansen | 5aa65d8 | 2025-07-31 14:08:42 +0200 | [diff] [blame] | 269 |  | 
|  | 270 | if (!postConfigurationRecord(name, config, boardNameOrig, itemType, | 
|  | 271 | jsonPointerPath, ifacePath)) | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 272 | { | 
| Alexander Hansen | 5aa65d8 | 2025-07-31 14:08:42 +0200 | [diff] [blame] | 273 | break; | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 274 | } | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 275 | } | 
|  | 276 |  | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 277 | std::shared_ptr<sdbusplus::asio::dbus_interface> itemIface = | 
|  | 278 | dbus_interface.createInterface( | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 279 | ifacePath, "xyz.openbmc_project.Configuration." + itemType, | 
|  | 280 | boardNameOrig); | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 281 |  | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 282 | dbus_interface.populateInterfaceFromJson( | 
|  | 283 | systemConfiguration, jsonPointerPath, itemIface, item, | 
| Alexander Hansen | 4fa4012 | 2025-07-30 18:26:35 +0200 | [diff] [blame] | 284 | getPermission(itemType)); | 
|  | 285 |  | 
|  | 286 | topology.addBoard(boardPath, boardType, boardNameOrig, item); | 
| Alexander Hansen | 4fcd946 | 2025-07-30 17:44:44 +0200 | [diff] [blame] | 287 | } | 
|  | 288 |  | 
| Alexander Hansen | 5aa65d8 | 2025-07-31 14:08:42 +0200 | [diff] [blame] | 289 | bool EntityManager::postConfigurationRecord( | 
|  | 290 | const std::string& name, nlohmann::json& config, | 
|  | 291 | const std::string& boardNameOrig, const std::string& itemType, | 
|  | 292 | const std::string& jsonPointerPath, const std::string& ifacePath) | 
|  | 293 | { | 
|  | 294 | if (config.type() == nlohmann::json::value_t::object) | 
|  | 295 | { | 
|  | 296 | std::string ifaceName = "xyz.openbmc_project.Configuration."; | 
|  | 297 | ifaceName.append(itemType).append(".").append(name); | 
|  | 298 |  | 
|  | 299 | std::shared_ptr<sdbusplus::asio::dbus_interface> objectIface = | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 300 | dbus_interface.createInterface(ifacePath, ifaceName, boardNameOrig); | 
| Alexander Hansen | 5aa65d8 | 2025-07-31 14:08:42 +0200 | [diff] [blame] | 301 |  | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 302 | dbus_interface.populateInterfaceFromJson( | 
|  | 303 | systemConfiguration, jsonPointerPath, objectIface, config, | 
|  | 304 | getPermission(name)); | 
| Alexander Hansen | 5aa65d8 | 2025-07-31 14:08:42 +0200 | [diff] [blame] | 305 | } | 
|  | 306 | else if (config.type() == nlohmann::json::value_t::array) | 
|  | 307 | { | 
|  | 308 | size_t index = 0; | 
|  | 309 | if (config.empty()) | 
|  | 310 | { | 
|  | 311 | return true; | 
|  | 312 | } | 
|  | 313 | bool isLegal = true; | 
|  | 314 | auto type = config[0].type(); | 
|  | 315 | if (type != nlohmann::json::value_t::object) | 
|  | 316 | { | 
|  | 317 | return true; | 
|  | 318 | } | 
|  | 319 |  | 
|  | 320 | // verify legal json | 
|  | 321 | for (const auto& arrayItem : config) | 
|  | 322 | { | 
|  | 323 | if (arrayItem.type() != type) | 
|  | 324 | { | 
|  | 325 | isLegal = false; | 
|  | 326 | break; | 
|  | 327 | } | 
|  | 328 | } | 
|  | 329 | if (!isLegal) | 
|  | 330 | { | 
| Alexander Hansen | 8feb045 | 2025-09-15 14:29:20 +0200 | [diff] [blame] | 331 | lg2::error("dbus format error {JSON}", "JSON", config); | 
| Alexander Hansen | 5aa65d8 | 2025-07-31 14:08:42 +0200 | [diff] [blame] | 332 | return false; | 
|  | 333 | } | 
|  | 334 |  | 
|  | 335 | for (auto& arrayItem : config) | 
|  | 336 | { | 
|  | 337 | std::string ifaceName = "xyz.openbmc_project.Configuration."; | 
|  | 338 | ifaceName.append(itemType).append(".").append(name); | 
|  | 339 | ifaceName.append(std::to_string(index)); | 
|  | 340 |  | 
|  | 341 | std::shared_ptr<sdbusplus::asio::dbus_interface> objectIface = | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 342 | dbus_interface.createInterface(ifacePath, ifaceName, | 
| Alexander Hansen | 5aa65d8 | 2025-07-31 14:08:42 +0200 | [diff] [blame] | 343 | boardNameOrig); | 
|  | 344 |  | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 345 | dbus_interface.populateInterfaceFromJson( | 
|  | 346 | systemConfiguration, | 
| Alexander Hansen | 5aa65d8 | 2025-07-31 14:08:42 +0200 | [diff] [blame] | 347 | jsonPointerPath + "/" + std::to_string(index), objectIface, | 
| Alexander Hansen | 8973725 | 2025-08-04 15:15:13 +0200 | [diff] [blame] | 348 | arrayItem, getPermission(name)); | 
| Alexander Hansen | 5aa65d8 | 2025-07-31 14:08:42 +0200 | [diff] [blame] | 349 | index++; | 
|  | 350 | } | 
|  | 351 | } | 
|  | 352 |  | 
|  | 353 | return true; | 
|  | 354 | } | 
|  | 355 |  | 
| Andrew Jeffery | 5519293 | 2022-03-24 12:29:27 +1030 | [diff] [blame] | 356 | static bool deviceRequiresPowerOn(const nlohmann::json& entity) | 
|  | 357 | { | 
|  | 358 | auto powerState = entity.find("PowerState"); | 
| Andrew Jeffery | b620944 | 2022-03-24 12:36:20 +1030 | [diff] [blame] | 359 | if (powerState == entity.end()) | 
| Andrew Jeffery | 5519293 | 2022-03-24 12:29:27 +1030 | [diff] [blame] | 360 | { | 
| Andrew Jeffery | b620944 | 2022-03-24 12:36:20 +1030 | [diff] [blame] | 361 | return false; | 
| Andrew Jeffery | 5519293 | 2022-03-24 12:29:27 +1030 | [diff] [blame] | 362 | } | 
|  | 363 |  | 
| Ed Tanous | 3013fb4 | 2022-07-09 08:27:06 -0700 | [diff] [blame] | 364 | const auto* ptr = powerState->get_ptr<const std::string*>(); | 
|  | 365 | if (ptr == nullptr) | 
| Andrew Jeffery | b620944 | 2022-03-24 12:36:20 +1030 | [diff] [blame] | 366 | { | 
|  | 367 | return false; | 
|  | 368 | } | 
|  | 369 |  | 
|  | 370 | return *ptr == "On" || *ptr == "BiosPost"; | 
| Andrew Jeffery | 5519293 | 2022-03-24 12:29:27 +1030 | [diff] [blame] | 371 | } | 
|  | 372 |  | 
| Andrew Jeffery | 89ec352 | 2022-03-24 13:30:41 +1030 | [diff] [blame] | 373 | static void pruneDevice(const nlohmann::json& systemConfiguration, | 
|  | 374 | const bool powerOff, const bool scannedPowerOff, | 
|  | 375 | const std::string& name, const nlohmann::json& device) | 
|  | 376 | { | 
|  | 377 | if (systemConfiguration.contains(name)) | 
|  | 378 | { | 
|  | 379 | return; | 
|  | 380 | } | 
|  | 381 |  | 
| Andrew Jeffery | 4db38bc | 2022-03-24 13:42:41 +1030 | [diff] [blame] | 382 | if (deviceRequiresPowerOn(device) && (powerOff || scannedPowerOff)) | 
| Andrew Jeffery | 89ec352 | 2022-03-24 13:30:41 +1030 | [diff] [blame] | 383 | { | 
| Andrew Jeffery | 89ec352 | 2022-03-24 13:30:41 +1030 | [diff] [blame] | 384 | return; | 
|  | 385 | } | 
|  | 386 |  | 
|  | 387 | logDeviceRemoved(device); | 
|  | 388 | } | 
|  | 389 |  | 
| Alexander Hansen | 95ab18f | 2025-06-27 13:58:10 +0200 | [diff] [blame] | 390 | void EntityManager::startRemovedTimer(boost::asio::steady_timer& timer, | 
|  | 391 | nlohmann::json& systemConfiguration) | 
| James Feist | 1df06a4 | 2019-04-11 14:23:04 -0700 | [diff] [blame] | 392 | { | 
| James Feist | fb00f39 | 2019-06-25 14:16:48 -0700 | [diff] [blame] | 393 | if (systemConfiguration.empty() || lastJson.empty()) | 
|  | 394 | { | 
|  | 395 | return; // not ready yet | 
|  | 396 | } | 
| James Feist | 1df06a4 | 2019-04-11 14:23:04 -0700 | [diff] [blame] | 397 | if (scannedPowerOn) | 
|  | 398 | { | 
|  | 399 | return; | 
|  | 400 | } | 
|  | 401 |  | 
| Alexander Hansen | 0ab32b3 | 2025-06-27 14:50:33 +0200 | [diff] [blame] | 402 | if (!powerStatus.isPowerOn() && scannedPowerOff) | 
| James Feist | 1df06a4 | 2019-04-11 14:23:04 -0700 | [diff] [blame] | 403 | { | 
|  | 404 | return; | 
|  | 405 | } | 
|  | 406 |  | 
| James Feist | b1728ca | 2020-04-30 15:40:55 -0700 | [diff] [blame] | 407 | timer.expires_after(std::chrono::seconds(10)); | 
| Andrew Jeffery | 27a1cfb | 2022-03-24 12:31:53 +1030 | [diff] [blame] | 408 | timer.async_wait( | 
| Alexander Hansen | 95ab18f | 2025-06-27 13:58:10 +0200 | [diff] [blame] | 409 | [&systemConfiguration, this](const boost::system::error_code& ec) { | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 410 | if (ec == boost::asio::error::operation_aborted) | 
|  | 411 | { | 
|  | 412 | return; | 
|  | 413 | } | 
| Andrew Jeffery | 27a1cfb | 2022-03-24 12:31:53 +1030 | [diff] [blame] | 414 |  | 
| Alexander Hansen | 0ab32b3 | 2025-06-27 14:50:33 +0200 | [diff] [blame] | 415 | bool powerOff = !powerStatus.isPowerOn(); | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 416 | for (const auto& [name, device] : lastJson.items()) | 
|  | 417 | { | 
|  | 418 | pruneDevice(systemConfiguration, powerOff, scannedPowerOff, | 
|  | 419 | name, device); | 
|  | 420 | } | 
| Andrew Jeffery | 89ec352 | 2022-03-24 13:30:41 +1030 | [diff] [blame] | 421 |  | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 422 | scannedPowerOff = true; | 
|  | 423 | if (!powerOff) | 
|  | 424 | { | 
|  | 425 | scannedPowerOn = true; | 
|  | 426 | } | 
|  | 427 | }); | 
| James Feist | 1df06a4 | 2019-04-11 14:23:04 -0700 | [diff] [blame] | 428 | } | 
|  | 429 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 430 | void EntityManager::pruneConfiguration(bool powerOff, const std::string& name, | 
|  | 431 | const nlohmann::json& device) | 
| Andrew Jeffery | 0d0c146 | 2022-03-24 15:26:39 +1030 | [diff] [blame] | 432 | { | 
|  | 433 | if (powerOff && deviceRequiresPowerOn(device)) | 
|  | 434 | { | 
|  | 435 | // power not on yet, don't know if it's there or not | 
|  | 436 | return; | 
|  | 437 | } | 
|  | 438 |  | 
| Alexander Hansen | 57604ed | 2025-06-27 13:22:28 +0200 | [diff] [blame] | 439 | auto& ifaces = dbus_interface.getDeviceInterfaces(device); | 
| Andrew Jeffery | 0d0c146 | 2022-03-24 15:26:39 +1030 | [diff] [blame] | 440 | for (auto& iface : ifaces) | 
|  | 441 | { | 
|  | 442 | auto sharedPtr = iface.lock(); | 
|  | 443 | if (!!sharedPtr) | 
|  | 444 | { | 
|  | 445 | objServer.remove_interface(sharedPtr); | 
|  | 446 | } | 
|  | 447 | } | 
|  | 448 |  | 
|  | 449 | ifaces.clear(); | 
|  | 450 | systemConfiguration.erase(name); | 
| Matt Spinler | 6eb6097 | 2023-08-14 16:36:20 -0500 | [diff] [blame] | 451 | topology.remove(device["Name"].get<std::string>()); | 
| Andrew Jeffery | 0d0c146 | 2022-03-24 15:26:39 +1030 | [diff] [blame] | 452 | logDeviceRemoved(device); | 
|  | 453 | } | 
|  | 454 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 455 | void EntityManager::publishNewConfiguration( | 
| Andrew Jeffery | e35d0ac | 2022-03-24 15:53:13 +1030 | [diff] [blame] | 456 | const size_t& instance, const size_t count, | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 457 | boost::asio::steady_timer& timer, // Gerrit discussion: | 
| Andrew Jeffery | e35d0ac | 2022-03-24 15:53:13 +1030 | [diff] [blame] | 458 | // https://gerrit.openbmc-project.xyz/c/openbmc/entity-manager/+/52316/6 | 
|  | 459 | // | 
|  | 460 | // Discord discussion: | 
|  | 461 | // https://discord.com/channels/775381525260664832/867820390406422538/958048437729910854 | 
|  | 462 | // | 
|  | 463 | // NOLINTNEXTLINE(performance-unnecessary-value-param) | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 464 | const nlohmann::json newConfiguration) | 
| Andrew Jeffery | e35d0ac | 2022-03-24 15:53:13 +1030 | [diff] [blame] | 465 | { | 
| Alexander Hansen | a555acf | 2025-06-27 11:59:10 +0200 | [diff] [blame] | 466 | loadOverlays(newConfiguration, io); | 
| Andrew Jeffery | e35d0ac | 2022-03-24 15:53:13 +1030 | [diff] [blame] | 467 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 468 | boost::asio::post(io, [this]() { | 
| Christopher Meis | f725257 | 2025-06-11 13:22:05 +0200 | [diff] [blame] | 469 | if (!writeJsonFiles(systemConfiguration)) | 
| Andrew Jeffery | e35d0ac | 2022-03-24 15:53:13 +1030 | [diff] [blame] | 470 | { | 
| Alexander Hansen | 8feb045 | 2025-09-15 14:29:20 +0200 | [diff] [blame] | 471 | lg2::error("Error writing json files"); | 
| Andrew Jeffery | e35d0ac | 2022-03-24 15:53:13 +1030 | [diff] [blame] | 472 | } | 
|  | 473 | }); | 
|  | 474 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 475 | boost::asio::post(io, [this, &instance, count, &timer, newConfiguration]() { | 
|  | 476 | postToDbus(newConfiguration); | 
| Andrew Jeffery | e35d0ac | 2022-03-24 15:53:13 +1030 | [diff] [blame] | 477 | if (count == instance) | 
|  | 478 | { | 
| Alexander Hansen | 95ab18f | 2025-06-27 13:58:10 +0200 | [diff] [blame] | 479 | startRemovedTimer(timer, systemConfiguration); | 
| Andrew Jeffery | e35d0ac | 2022-03-24 15:53:13 +1030 | [diff] [blame] | 480 | } | 
|  | 481 | }); | 
|  | 482 | } | 
|  | 483 |  | 
| James Feist | 8f2710a | 2018-05-09 17:18:55 -0700 | [diff] [blame] | 484 | // main properties changed entry | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 485 | void EntityManager::propertiesChangedCallback() | 
| James Feist | 8f2710a | 2018-05-09 17:18:55 -0700 | [diff] [blame] | 486 | { | 
| Alexander Hansen | fc1b1e2 | 2025-06-27 14:34:11 +0200 | [diff] [blame] | 487 | propertiesChangedInstance++; | 
|  | 488 | size_t count = propertiesChangedInstance; | 
| James Feist | 1df06a4 | 2019-04-11 14:23:04 -0700 | [diff] [blame] | 489 |  | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 490 | propertiesChangedTimer.expires_after(std::chrono::milliseconds(500)); | 
| James Feist | 8f2710a | 2018-05-09 17:18:55 -0700 | [diff] [blame] | 491 |  | 
|  | 492 | // setup an async wait as we normally get flooded with new requests | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 493 | propertiesChangedTimer.async_wait( | 
|  | 494 | [this, count](const boost::system::error_code& ec) { | 
|  | 495 | if (ec == boost::asio::error::operation_aborted) | 
|  | 496 | { | 
|  | 497 | // we were cancelled | 
|  | 498 | return; | 
|  | 499 | } | 
|  | 500 | if (ec) | 
|  | 501 | { | 
| Alexander Hansen | 8feb045 | 2025-09-15 14:29:20 +0200 | [diff] [blame] | 502 | lg2::error("async wait error {ERR}", "ERR", ec.message()); | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 503 | return; | 
|  | 504 | } | 
| James Feist | 8f2710a | 2018-05-09 17:18:55 -0700 | [diff] [blame] | 505 |  | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 506 | if (propertiesChangedInProgress) | 
|  | 507 | { | 
|  | 508 | propertiesChangedCallback(); | 
|  | 509 | return; | 
|  | 510 | } | 
|  | 511 | propertiesChangedInProgress = true; | 
| James Feist | 2539ccd | 2020-05-01 16:15:08 -0700 | [diff] [blame] | 512 |  | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 513 | nlohmann::json oldConfiguration = systemConfiguration; | 
|  | 514 | auto missingConfigurations = std::make_shared<nlohmann::json>(); | 
|  | 515 | *missingConfigurations = systemConfiguration; | 
| James Feist | 899e17f | 2019-09-13 11:46:29 -0700 | [diff] [blame] | 516 |  | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 517 | auto perfScan = std::make_shared<scan::PerformScan>( | 
| Christopher Meis | f725257 | 2025-06-11 13:22:05 +0200 | [diff] [blame] | 518 | *this, *missingConfigurations, configuration.configurations, io, | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 519 | [this, count, oldConfiguration, missingConfigurations]() { | 
|  | 520 | // this is something that since ac has been applied to the | 
|  | 521 | // bmc we saw, and we no longer see it | 
| Alexander Hansen | 0ab32b3 | 2025-06-27 14:50:33 +0200 | [diff] [blame] | 522 | bool powerOff = !powerStatus.isPowerOn(); | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 523 | for (const auto& [name, device] : | 
|  | 524 | missingConfigurations->items()) | 
|  | 525 | { | 
|  | 526 | pruneConfiguration(powerOff, name, device); | 
|  | 527 | } | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 528 | nlohmann::json newConfiguration = systemConfiguration; | 
|  | 529 |  | 
| Christopher Meis | f725257 | 2025-06-11 13:22:05 +0200 | [diff] [blame] | 530 | deriveNewConfiguration(oldConfiguration, newConfiguration); | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 531 |  | 
|  | 532 | for (const auto& [_, device] : newConfiguration.items()) | 
|  | 533 | { | 
|  | 534 | logDeviceAdded(device); | 
|  | 535 | } | 
|  | 536 |  | 
|  | 537 | propertiesChangedInProgress = false; | 
|  | 538 |  | 
|  | 539 | boost::asio::post(io, [this, newConfiguration, count] { | 
|  | 540 | publishNewConfiguration( | 
| Alexander Hansen | fc1b1e2 | 2025-06-27 14:34:11 +0200 | [diff] [blame] | 541 | std::ref(propertiesChangedInstance), count, | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 542 | std::ref(propertiesChangedTimer), newConfiguration); | 
|  | 543 | }); | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 544 | }); | 
| Alexander Hansen | b1340da | 2025-06-27 14:29:13 +0200 | [diff] [blame] | 545 | perfScan->run(); | 
|  | 546 | }); | 
| James Feist | 75fdeeb | 2018-02-20 14:26:16 -0800 | [diff] [blame] | 547 | } | 
|  | 548 |  | 
| Matt Spinler | 8d1ac3a | 2023-02-02 09:48:04 -0600 | [diff] [blame] | 549 | // Check if InterfacesAdded payload contains an iface that needs probing. | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 550 | static bool iaContainsProbeInterface( | 
| Christopher Meis | f725257 | 2025-06-11 13:22:05 +0200 | [diff] [blame] | 551 | sdbusplus::message_t& msg, | 
|  | 552 | const std::unordered_set<std::string>& probeInterfaces) | 
| Matt Spinler | 8d1ac3a | 2023-02-02 09:48:04 -0600 | [diff] [blame] | 553 | { | 
|  | 554 | sdbusplus::message::object_path path; | 
|  | 555 | DBusObject interfaces; | 
| Matt Spinler | 8d1ac3a | 2023-02-02 09:48:04 -0600 | [diff] [blame] | 556 | msg.read(path, interfaces); | 
| Eldin Lee | 802cbf2 | 2025-08-22 14:44:04 +0800 | [diff] [blame] | 557 | return std::ranges::any_of(interfaces | std::views::keys, | 
|  | 558 | [&probeInterfaces](const auto& ifaceName) { | 
|  | 559 | return probeInterfaces.contains(ifaceName); | 
|  | 560 | }); | 
| Matt Spinler | 8d1ac3a | 2023-02-02 09:48:04 -0600 | [diff] [blame] | 561 | } | 
|  | 562 |  | 
|  | 563 | // Check if InterfacesRemoved payload contains an iface that needs probing. | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 564 | static bool irContainsProbeInterface( | 
| Christopher Meis | f725257 | 2025-06-11 13:22:05 +0200 | [diff] [blame] | 565 | sdbusplus::message_t& msg, | 
|  | 566 | const std::unordered_set<std::string>& probeInterfaces) | 
| Matt Spinler | 8d1ac3a | 2023-02-02 09:48:04 -0600 | [diff] [blame] | 567 | { | 
|  | 568 | sdbusplus::message::object_path path; | 
| Eldin Lee | 802cbf2 | 2025-08-22 14:44:04 +0800 | [diff] [blame] | 569 | std::vector<std::string> interfaces; | 
| Matt Spinler | 8d1ac3a | 2023-02-02 09:48:04 -0600 | [diff] [blame] | 570 | msg.read(path, interfaces); | 
| Eldin Lee | 802cbf2 | 2025-08-22 14:44:04 +0800 | [diff] [blame] | 571 | return std::ranges::any_of(interfaces, | 
|  | 572 | [&probeInterfaces](const auto& ifaceName) { | 
|  | 573 | return probeInterfaces.contains(ifaceName); | 
|  | 574 | }); | 
| Matt Spinler | 8d1ac3a | 2023-02-02 09:48:04 -0600 | [diff] [blame] | 575 | } | 
|  | 576 |  | 
| Alexander Hansen | ad28e40 | 2025-06-25 12:38:20 +0200 | [diff] [blame] | 577 | void EntityManager::handleCurrentConfigurationJson() | 
|  | 578 | { | 
| Alexander Hansen | e665185 | 2025-01-21 16:22:05 +0100 | [diff] [blame] | 579 | if (EM_CACHE_CONFIGURATION && em_utils::fwVersionIsSame()) | 
| Alexander Hansen | ad28e40 | 2025-06-25 12:38:20 +0200 | [diff] [blame] | 580 | { | 
| Christopher Meis | f725257 | 2025-06-11 13:22:05 +0200 | [diff] [blame] | 581 | if (std::filesystem::is_regular_file(currentConfiguration)) | 
| Alexander Hansen | ad28e40 | 2025-06-25 12:38:20 +0200 | [diff] [blame] | 582 | { | 
|  | 583 | // this file could just be deleted, but it's nice for debug | 
|  | 584 | std::filesystem::create_directory(tempConfigDir); | 
|  | 585 | std::filesystem::remove(lastConfiguration); | 
| Christopher Meis | f725257 | 2025-06-11 13:22:05 +0200 | [diff] [blame] | 586 | std::filesystem::copy(currentConfiguration, lastConfiguration); | 
|  | 587 | std::filesystem::remove(currentConfiguration); | 
| Alexander Hansen | ad28e40 | 2025-06-25 12:38:20 +0200 | [diff] [blame] | 588 |  | 
|  | 589 | std::ifstream jsonStream(lastConfiguration); | 
|  | 590 | if (jsonStream.good()) | 
|  | 591 | { | 
|  | 592 | auto data = nlohmann::json::parse(jsonStream, nullptr, false); | 
|  | 593 | if (data.is_discarded()) | 
|  | 594 | { | 
| Alexander Hansen | 8feb045 | 2025-09-15 14:29:20 +0200 | [diff] [blame] | 595 | lg2::error("syntax error in {PATH}", "PATH", | 
|  | 596 | lastConfiguration); | 
| Alexander Hansen | ad28e40 | 2025-06-25 12:38:20 +0200 | [diff] [blame] | 597 | } | 
|  | 598 | else | 
|  | 599 | { | 
|  | 600 | lastJson = std::move(data); | 
|  | 601 | } | 
|  | 602 | } | 
|  | 603 | else | 
|  | 604 | { | 
| Alexander Hansen | 8feb045 | 2025-09-15 14:29:20 +0200 | [diff] [blame] | 605 | lg2::error("unable to open {PATH}", "PATH", lastConfiguration); | 
| Alexander Hansen | ad28e40 | 2025-06-25 12:38:20 +0200 | [diff] [blame] | 606 | } | 
|  | 607 | } | 
|  | 608 | } | 
|  | 609 | else | 
|  | 610 | { | 
|  | 611 | // not an error, just logging at this level to make it in the journal | 
| Marc Olberding | b2f8282 | 2025-09-25 13:56:41 -0700 | [diff] [blame] | 612 | std::error_code ec; | 
| Alexander Hansen | 8feb045 | 2025-09-15 14:29:20 +0200 | [diff] [blame] | 613 | lg2::error("Clearing previous configuration"); | 
| Marc Olberding | b2f8282 | 2025-09-25 13:56:41 -0700 | [diff] [blame] | 614 | std::filesystem::remove(currentConfiguration, ec); | 
| Alexander Hansen | ad28e40 | 2025-06-25 12:38:20 +0200 | [diff] [blame] | 615 | } | 
|  | 616 | } | 
|  | 617 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 618 | void EntityManager::registerCallback(const std::string& path) | 
| James Feist | 75fdeeb | 2018-02-20 14:26:16 -0800 | [diff] [blame] | 619 | { | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 620 | if (dbusMatches.contains(path)) | 
|  | 621 | { | 
|  | 622 | return; | 
|  | 623 | } | 
| Nan Zhou | a331567 | 2022-09-20 19:48:14 +0000 | [diff] [blame] | 624 |  | 
| Alexander Hansen | 6080318 | 2025-06-27 14:41:28 +0200 | [diff] [blame] | 625 | lg2::debug("creating PropertiesChanged match on {PATH}", "PATH", path); | 
|  | 626 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 627 | std::function<void(sdbusplus::message_t & message)> eventHandler = | 
|  | 628 | [&](sdbusplus::message_t&) { propertiesChangedCallback(); }; | 
| James Feist | fd1264a | 2018-05-03 12:10:00 -0700 | [diff] [blame] | 629 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 630 | sdbusplus::bus::match_t match( | 
|  | 631 | static_cast<sdbusplus::bus_t&>(*systemBus), | 
|  | 632 | "type='signal',member='PropertiesChanged',path='" + path + "'", | 
|  | 633 | eventHandler); | 
|  | 634 | dbusMatches.emplace(path, std::move(match)); | 
|  | 635 | } | 
| James Feist | fd1264a | 2018-05-03 12:10:00 -0700 | [diff] [blame] | 636 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 637 | // We need a poke from DBus for static providers that create all their | 
|  | 638 | // objects prior to claiming a well-known name, and thus don't emit any | 
|  | 639 | // org.freedesktop.DBus.Properties signals.  Similarly if a process exits | 
|  | 640 | // for any reason, expected or otherwise, we'll need a poke to remove | 
|  | 641 | // entities from DBus. | 
| Christopher Meis | f725257 | 2025-06-11 13:22:05 +0200 | [diff] [blame] | 642 | void EntityManager::initFilters( | 
|  | 643 | const std::unordered_set<std::string>& probeInterfaces) | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 644 | { | 
| Alexander Hansen | 0f7bd78 | 2025-06-27 13:39:53 +0200 | [diff] [blame] | 645 | nameOwnerChangedMatch = std::make_unique<sdbusplus::bus::match_t>( | 
| Patrick Williams | 2af3922 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 646 | static_cast<sdbusplus::bus_t&>(*systemBus), | 
| Brad Bishop | c76af0f | 2020-12-04 13:50:23 -0500 | [diff] [blame] | 647 | sdbusplus::bus::match::rules::nameOwnerChanged(), | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 648 | [this](sdbusplus::message_t& m) { | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 649 | auto [name, oldOwner, | 
|  | 650 | newOwner] = m.unpack<std::string, std::string, std::string>(); | 
| Patrick Williams | 7b8786f | 2022-10-10 10:23:37 -0500 | [diff] [blame] | 651 |  | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 652 | if (name.starts_with(':')) | 
|  | 653 | { | 
|  | 654 | // We should do nothing with unique-name connections. | 
|  | 655 | return; | 
|  | 656 | } | 
| Patrick Williams | 7b8786f | 2022-10-10 10:23:37 -0500 | [diff] [blame] | 657 |  | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 658 | propertiesChangedCallback(); | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 659 | }); | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 660 |  | 
| Brad Bishop | 10a8c5f | 2020-12-07 21:40:07 -0500 | [diff] [blame] | 661 | // We also need a poke from DBus when new interfaces are created or | 
|  | 662 | // destroyed. | 
| Alexander Hansen | 0f7bd78 | 2025-06-27 13:39:53 +0200 | [diff] [blame] | 663 | interfacesAddedMatch = std::make_unique<sdbusplus::bus::match_t>( | 
| Patrick Williams | 2af3922 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 664 | static_cast<sdbusplus::bus_t&>(*systemBus), | 
| Brad Bishop | 10a8c5f | 2020-12-07 21:40:07 -0500 | [diff] [blame] | 665 | sdbusplus::bus::match::rules::interfacesAdded(), | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 666 | [this, probeInterfaces](sdbusplus::message_t& msg) { | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 667 | if (iaContainsProbeInterface(msg, probeInterfaces)) | 
|  | 668 | { | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 669 | propertiesChangedCallback(); | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 670 | } | 
|  | 671 | }); | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 672 |  | 
| Alexander Hansen | 0f7bd78 | 2025-06-27 13:39:53 +0200 | [diff] [blame] | 673 | interfacesRemovedMatch = std::make_unique<sdbusplus::bus::match_t>( | 
| Patrick Williams | 2af3922 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 674 | static_cast<sdbusplus::bus_t&>(*systemBus), | 
| Brad Bishop | 10a8c5f | 2020-12-07 21:40:07 -0500 | [diff] [blame] | 675 | sdbusplus::bus::match::rules::interfacesRemoved(), | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 676 | [this, probeInterfaces](sdbusplus::message_t& msg) { | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 677 | if (irContainsProbeInterface(msg, probeInterfaces)) | 
|  | 678 | { | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 679 | propertiesChangedCallback(); | 
| Patrick Williams | b707743 | 2024-08-16 15:22:21 -0400 | [diff] [blame] | 680 | } | 
|  | 681 | }); | 
| Christopher Meis | cf6a75b | 2025-06-03 07:53:50 +0200 | [diff] [blame] | 682 | } |