blob: ef4212a0a4ef5b9021146b5acc0e5ee12afb0649 [file] [log] [blame]
Alexander Hansen4e1142d2025-07-25 17:07:27 +02001// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright 2018 Intel Corporation
James Feist3cb5fec2018-01-23 14:41:51 -08003
Brad Bishope45d8c72022-05-25 15:12:53 -04004#include "entity_manager.hpp"
James Feist1df06a42019-04-11 14:23:04 -07005
Christopher Meisfc9e7fd2025-04-03 13:13:35 +02006#include "../utils.hpp"
7#include "../variant_visitors.hpp"
Christopher Meisbdaa6b22025-04-02 10:49:02 +02008#include "configuration.hpp"
Christopher Meis12bea9b2025-04-03 10:14:42 +02009#include "dbus_interface.hpp"
Alexander Hansenf57a2592025-06-27 15:07:07 +020010#include "log_device_inventory.hpp"
Brad Bishope45d8c72022-05-25 15:12:53 -040011#include "overlay.hpp"
Christopher Meis26fbbd52025-03-26 14:55:06 +010012#include "perform_scan.hpp"
Benjamin Fairca2eb042022-09-13 06:40:42 +000013#include "topology.hpp"
Christopher Meis59ef1e72025-04-16 08:53:25 +020014#include "utils.hpp"
James Feist481c5d52019-08-13 14:40:40 -070015
James Feist11be6672018-04-06 14:05:32 -070016#include <boost/algorithm/string/case_conv.hpp>
James Feistf5125b02019-06-06 11:27:43 -070017#include <boost/algorithm/string/classification.hpp>
James Feist3cb5fec2018-01-23 14:41:51 -080018#include <boost/algorithm/string/replace.hpp>
James Feistf5125b02019-06-06 11:27:43 -070019#include <boost/algorithm/string/split.hpp>
James Feist02d2b932020-02-06 16:28:48 -080020#include <boost/asio/io_context.hpp>
Ed Tanous49a888c2023-03-06 13:44:51 -080021#include <boost/asio/post.hpp>
James Feistb1728ca2020-04-30 15:40:55 -070022#include <boost/asio/steady_timer.hpp>
James Feist3cb5fec2018-01-23 14:41:51 -080023#include <boost/container/flat_map.hpp>
24#include <boost/container/flat_set.hpp>
James Feistf5125b02019-06-06 11:27:43 -070025#include <boost/range/iterator_range.hpp>
James Feist8c505da2020-05-28 10:06:33 -070026#include <nlohmann/json.hpp>
Alexander Hansen8feb0452025-09-15 14:29:20 +020027#include <phosphor-logging/lg2.hpp>
James Feist8c505da2020-05-28 10:06:33 -070028#include <sdbusplus/asio/connection.hpp>
29#include <sdbusplus/asio/object_server.hpp>
30
James Feist637b3ef2019-04-15 16:35:30 -070031#include <filesystem>
James Feista465ccc2019-02-08 12:51:01 -080032#include <fstream>
Andrew Jefferye35d0ac2022-03-24 15:53:13 +103033#include <functional>
Andrew Jeffery666583b2021-12-01 15:50:12 +103034#include <map>
James Feista465ccc2019-02-08 12:51:01 -080035#include <regex>
James Feist1df06a42019-04-11 14:23:04 -070036constexpr const char* tempConfigDir = "/tmp/configuration/";
37constexpr const char* lastConfiguration = "/tmp/configuration/last.json";
James Feistf1b14142019-04-10 15:22:09 -070038
Adrian Ambrożewiczc789fca2020-05-14 15:50:05 +020039static constexpr std::array<const char*, 6> settableInterfaces = {
40 "FanProfile", "Pid", "Pid.Zone", "Stepwise", "Thresholds", "Polling"};
James Feist3cb5fec2018-01-23 14:41:51 -080041
Ed Tanous07d467b2021-02-23 14:48:37 -080042const std::regex illegalDbusPathRegex("[^A-Za-z0-9_.]");
43const std::regex illegalDbusMemberRegex("[^A-Za-z0-9_]");
James Feist1b2e2242018-01-30 13:45:19 -080044
James Feista465ccc2019-02-08 12:51:01 -080045sdbusplus::asio::PropertyPermission getPermission(const std::string& interface)
James Feistc6248a52018-08-14 10:09:45 -070046{
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 Meiscf6a75b2025-06-03 07:53:50 +020053EntityManager::EntityManager(
Alexander Hansena555acf2025-06-27 11:59:10 +020054 std::shared_ptr<sdbusplus::asio::connection>& systemBus,
55 boost::asio::io_context& io) :
Christopher Meiscf6a75b2025-06-03 07:53:50 +020056 systemBus(systemBus),
57 objServer(sdbusplus::asio::object_server(systemBus, /*skipManager=*/true)),
58 lastJson(nlohmann::json::object()),
Alexander Hansenb1340da2025-06-27 14:29:13 +020059 systemConfiguration(nlohmann::json::object()), io(io),
Alexander Hansen89737252025-08-04 15:15:13 +020060 dbus_interface(io, objServer), powerStatus(*systemBus),
61 propertiesChangedTimer(io)
Christopher Meiscf6a75b2025-06-03 07:53:50 +020062{
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 Feist75fdeeb2018-02-20 14:26:16 -080068
Christopher Meiscf6a75b2025-06-03 07:53:50 +020069 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 Meisf7252572025-06-11 13:22:05 +020075
76 initFilters(configuration.probeInterfaces);
Christopher Meiscf6a75b2025-06-03 07:53:50 +020077}
78
79void EntityManager::postToDbus(const nlohmann::json& newConfiguration)
James Feist1b2e2242018-01-30 13:45:19 -080080{
Matt Spinler6eb60972023-08-14 16:36:20 -050081 std::map<std::string, std::string> newBoards; // path -> name
Benjamin Fairca2eb042022-09-13 06:40:42 +000082
James Feist97a63f12018-05-17 13:50:57 -070083 // iterate through boards
Patrick Williams2594d362022-09-28 06:46:24 -050084 for (const auto& [boardId, boardConfig] : newConfiguration.items())
James Feist1b2e2242018-01-30 13:45:19 -080085 {
Alexander Hansen4fcd9462025-07-30 17:44:44 +020086 postBoardToDBus(boardId, boardConfig, newBoards);
James Feist1b2e2242018-01-30 13:45:19 -080087 }
Benjamin Fairca2eb042022-09-13 06:40:42 +000088
Matt Spinler6eb60972023-08-14 16:36:20 -050089 for (const auto& [assocPath, assocPropValue] :
Alexander Hansen32e74182025-08-20 16:16:00 +020090 topology.getAssocs(std::views::keys(newBoards)))
Benjamin Fairca2eb042022-09-13 06:40:42 +000091 {
Matt Spinler6eb60972023-08-14 16:36:20 -050092 auto findBoard = newBoards.find(assocPath);
93 if (findBoard == newBoards.end())
94 {
95 continue;
96 }
Benjamin Fairca2eb042022-09-13 06:40:42 +000097
Alexander Hansen57604ed2025-06-27 13:22:28 +020098 auto ifacePtr = dbus_interface.createInterface(
Alexander Hansen89737252025-08-04 15:15:13 +020099 assocPath, "xyz.openbmc_project.Association.Definitions",
Matt Spinler6eb60972023-08-14 16:36:20 -0500100 findBoard->second);
101
102 ifacePtr->register_property("Associations", assocPropValue);
Christopher Meis12bea9b2025-04-03 10:14:42 +0200103 dbus_interface::tryIfaceInitialize(ifacePtr);
Benjamin Fairca2eb042022-09-13 06:40:42 +0000104 }
James Feist1b2e2242018-01-30 13:45:19 -0800105}
106
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200107void EntityManager::postBoardToDBus(
108 const std::string& boardId, const nlohmann::json& boardConfig,
109 std::map<std::string, std::string>& newBoards)
110{
111 std::string boardName = boardConfig["Name"];
112 std::string boardNameOrig = boardConfig["Name"];
113 std::string jsonPointerPath = "/" + boardId;
114 // loop through newConfiguration, but use values from system
115 // configuration to be able to modify via dbus later
116 auto boardValues = systemConfiguration[boardId];
117 auto findBoardType = boardValues.find("Type");
118 std::string boardType;
119 if (findBoardType != boardValues.end() &&
120 findBoardType->type() == nlohmann::json::value_t::string)
121 {
122 boardType = findBoardType->get<std::string>();
123 std::regex_replace(boardType.begin(), boardType.begin(),
124 boardType.end(), illegalDbusMemberRegex, "_");
125 }
126 else
127 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200128 lg2::error("Unable to find type for {BOARD} reverting to Chassis.",
129 "BOARD", boardName);
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200130 boardType = "Chassis";
131 }
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200132
Christopher Meis811160e2025-08-08 08:48:37 +0200133 const std::string boardPath =
134 em_utils::buildInventorySystemPath(boardName, boardType);
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200135
136 std::shared_ptr<sdbusplus::asio::dbus_interface> inventoryIface =
Alexander Hansen89737252025-08-04 15:15:13 +0200137 dbus_interface.createInterface(
138 boardPath, "xyz.openbmc_project.Inventory.Item", boardName);
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200139
140 std::shared_ptr<sdbusplus::asio::dbus_interface> boardIface =
141 dbus_interface.createInterface(
Alexander Hansen89737252025-08-04 15:15:13 +0200142 boardPath, "xyz.openbmc_project.Inventory.Item." + boardType,
143 boardNameOrig);
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200144
Alexander Hansen89737252025-08-04 15:15:13 +0200145 dbus_interface.createAddObjectMethod(jsonPointerPath, boardPath,
146 systemConfiguration, boardNameOrig);
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200147
Alexander Hansen89737252025-08-04 15:15:13 +0200148 dbus_interface.populateInterfaceFromJson(
149 systemConfiguration, jsonPointerPath, boardIface, boardValues);
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200150 jsonPointerPath += "/";
151 // iterate through board properties
152 for (const auto& [propName, propValue] : boardValues.items())
153 {
154 if (propValue.type() == nlohmann::json::value_t::object)
155 {
156 std::shared_ptr<sdbusplus::asio::dbus_interface> iface =
Alexander Hansen89737252025-08-04 15:15:13 +0200157 dbus_interface.createInterface(boardPath, propName,
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200158 boardNameOrig);
159
Alexander Hansen89737252025-08-04 15:15:13 +0200160 dbus_interface.populateInterfaceFromJson(
161 systemConfiguration, jsonPointerPath + propName, iface,
162 propValue);
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200163 }
164 }
165
Alexander Hansen4fa40122025-07-30 18:26:35 +0200166 nlohmann::json::iterator exposes = boardValues.find("Exposes");
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200167 if (exposes == boardValues.end())
168 {
169 return;
170 }
171 // iterate through exposes
172 jsonPointerPath += "Exposes/";
173
174 // store the board level pointer so we can modify it on the way down
175 std::string jsonPointerPathBoard = jsonPointerPath;
176 size_t exposesIndex = -1;
Alexander Hansen4fa40122025-07-30 18:26:35 +0200177 for (nlohmann::json& item : *exposes)
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200178 {
Alexander Hansen4fa40122025-07-30 18:26:35 +0200179 postExposesRecordsToDBus(item, exposesIndex, boardNameOrig,
180 jsonPointerPath, jsonPointerPathBoard,
181 boardPath, boardType);
182 }
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200183
Alexander Hansen4fa40122025-07-30 18:26:35 +0200184 newBoards.emplace(boardPath, boardNameOrig);
185}
186
187void EntityManager::postExposesRecordsToDBus(
188 nlohmann::json& item, size_t& exposesIndex,
189 const std::string& boardNameOrig, std::string jsonPointerPath,
190 const std::string& jsonPointerPathBoard, const std::string& boardPath,
191 const std::string& boardType)
192{
193 exposesIndex++;
194 jsonPointerPath = jsonPointerPathBoard;
195 jsonPointerPath += std::to_string(exposesIndex);
196
197 auto findName = item.find("Name");
198 if (findName == item.end())
199 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200200 lg2::error("cannot find name in field {ITEM}", "ITEM", item);
Alexander Hansen4fa40122025-07-30 18:26:35 +0200201 return;
202 }
203 auto findStatus = item.find("Status");
204 // if status is not found it is assumed to be status = 'okay'
205 if (findStatus != item.end())
206 {
207 if (*findStatus == "disabled")
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200208 {
Alexander Hansen4fa40122025-07-30 18:26:35 +0200209 return;
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200210 }
Alexander Hansen4fa40122025-07-30 18:26:35 +0200211 }
212 auto findType = item.find("Type");
213 std::string itemType;
214 if (findType != item.end())
215 {
216 itemType = findType->get<std::string>();
217 std::regex_replace(itemType.begin(), itemType.begin(), itemType.end(),
218 illegalDbusPathRegex, "_");
219 }
220 else
221 {
222 itemType = "unknown";
223 }
224 std::string itemName = findName->get<std::string>();
225 std::regex_replace(itemName.begin(), itemName.begin(), itemName.end(),
226 illegalDbusMemberRegex, "_");
227 std::string ifacePath = boardPath;
228 ifacePath += "/";
229 ifacePath += itemName;
230
231 if (itemType == "BMC")
232 {
233 std::shared_ptr<sdbusplus::asio::dbus_interface> bmcIface =
234 dbus_interface.createInterface(
Alexander Hansen89737252025-08-04 15:15:13 +0200235 ifacePath, "xyz.openbmc_project.Inventory.Item.Bmc",
Alexander Hansen4fa40122025-07-30 18:26:35 +0200236 boardNameOrig);
Alexander Hansen89737252025-08-04 15:15:13 +0200237 dbus_interface.populateInterfaceFromJson(
238 systemConfiguration, jsonPointerPath, bmcIface, item,
Alexander Hansen4fa40122025-07-30 18:26:35 +0200239 getPermission(itemType));
240 }
241 else if (itemType == "System")
242 {
243 std::shared_ptr<sdbusplus::asio::dbus_interface> systemIface =
244 dbus_interface.createInterface(
Alexander Hansen89737252025-08-04 15:15:13 +0200245 ifacePath, "xyz.openbmc_project.Inventory.Item.System",
246 boardNameOrig);
247 dbus_interface.populateInterfaceFromJson(
248 systemConfiguration, jsonPointerPath, systemIface, item,
249 getPermission(itemType));
Alexander Hansen4fa40122025-07-30 18:26:35 +0200250 }
251
252 for (const auto& [name, config] : item.items())
253 {
254 jsonPointerPath = jsonPointerPathBoard;
255 jsonPointerPath.append(std::to_string(exposesIndex))
256 .append("/")
257 .append(name);
Alexander Hansen5aa65d82025-07-31 14:08:42 +0200258
259 if (!postConfigurationRecord(name, config, boardNameOrig, itemType,
260 jsonPointerPath, ifacePath))
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200261 {
Alexander Hansen5aa65d82025-07-31 14:08:42 +0200262 break;
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200263 }
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200264 }
265
Alexander Hansen4fa40122025-07-30 18:26:35 +0200266 std::shared_ptr<sdbusplus::asio::dbus_interface> itemIface =
267 dbus_interface.createInterface(
Alexander Hansen89737252025-08-04 15:15:13 +0200268 ifacePath, "xyz.openbmc_project.Configuration." + itemType,
269 boardNameOrig);
Alexander Hansen4fa40122025-07-30 18:26:35 +0200270
Alexander Hansen89737252025-08-04 15:15:13 +0200271 dbus_interface.populateInterfaceFromJson(
272 systemConfiguration, jsonPointerPath, itemIface, item,
Alexander Hansen4fa40122025-07-30 18:26:35 +0200273 getPermission(itemType));
274
275 topology.addBoard(boardPath, boardType, boardNameOrig, item);
Alexander Hansen4fcd9462025-07-30 17:44:44 +0200276}
277
Alexander Hansen5aa65d82025-07-31 14:08:42 +0200278bool EntityManager::postConfigurationRecord(
279 const std::string& name, nlohmann::json& config,
280 const std::string& boardNameOrig, const std::string& itemType,
281 const std::string& jsonPointerPath, const std::string& ifacePath)
282{
283 if (config.type() == nlohmann::json::value_t::object)
284 {
285 std::string ifaceName = "xyz.openbmc_project.Configuration.";
286 ifaceName.append(itemType).append(".").append(name);
287
288 std::shared_ptr<sdbusplus::asio::dbus_interface> objectIface =
Alexander Hansen89737252025-08-04 15:15:13 +0200289 dbus_interface.createInterface(ifacePath, ifaceName, boardNameOrig);
Alexander Hansen5aa65d82025-07-31 14:08:42 +0200290
Alexander Hansen89737252025-08-04 15:15:13 +0200291 dbus_interface.populateInterfaceFromJson(
292 systemConfiguration, jsonPointerPath, objectIface, config,
293 getPermission(name));
Alexander Hansen5aa65d82025-07-31 14:08:42 +0200294 }
295 else if (config.type() == nlohmann::json::value_t::array)
296 {
297 size_t index = 0;
298 if (config.empty())
299 {
300 return true;
301 }
302 bool isLegal = true;
303 auto type = config[0].type();
304 if (type != nlohmann::json::value_t::object)
305 {
306 return true;
307 }
308
309 // verify legal json
310 for (const auto& arrayItem : config)
311 {
312 if (arrayItem.type() != type)
313 {
314 isLegal = false;
315 break;
316 }
317 }
318 if (!isLegal)
319 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200320 lg2::error("dbus format error {JSON}", "JSON", config);
Alexander Hansen5aa65d82025-07-31 14:08:42 +0200321 return false;
322 }
323
324 for (auto& arrayItem : config)
325 {
326 std::string ifaceName = "xyz.openbmc_project.Configuration.";
327 ifaceName.append(itemType).append(".").append(name);
328 ifaceName.append(std::to_string(index));
329
330 std::shared_ptr<sdbusplus::asio::dbus_interface> objectIface =
Alexander Hansen89737252025-08-04 15:15:13 +0200331 dbus_interface.createInterface(ifacePath, ifaceName,
Alexander Hansen5aa65d82025-07-31 14:08:42 +0200332 boardNameOrig);
333
Alexander Hansen89737252025-08-04 15:15:13 +0200334 dbus_interface.populateInterfaceFromJson(
335 systemConfiguration,
Alexander Hansen5aa65d82025-07-31 14:08:42 +0200336 jsonPointerPath + "/" + std::to_string(index), objectIface,
Alexander Hansen89737252025-08-04 15:15:13 +0200337 arrayItem, getPermission(name));
Alexander Hansen5aa65d82025-07-31 14:08:42 +0200338 index++;
339 }
340 }
341
342 return true;
343}
344
Andrew Jeffery55192932022-03-24 12:29:27 +1030345static bool deviceRequiresPowerOn(const nlohmann::json& entity)
346{
347 auto powerState = entity.find("PowerState");
Andrew Jefferyb6209442022-03-24 12:36:20 +1030348 if (powerState == entity.end())
Andrew Jeffery55192932022-03-24 12:29:27 +1030349 {
Andrew Jefferyb6209442022-03-24 12:36:20 +1030350 return false;
Andrew Jeffery55192932022-03-24 12:29:27 +1030351 }
352
Ed Tanous3013fb42022-07-09 08:27:06 -0700353 const auto* ptr = powerState->get_ptr<const std::string*>();
354 if (ptr == nullptr)
Andrew Jefferyb6209442022-03-24 12:36:20 +1030355 {
356 return false;
357 }
358
359 return *ptr == "On" || *ptr == "BiosPost";
Andrew Jeffery55192932022-03-24 12:29:27 +1030360}
361
Andrew Jeffery89ec3522022-03-24 13:30:41 +1030362static void pruneDevice(const nlohmann::json& systemConfiguration,
363 const bool powerOff, const bool scannedPowerOff,
364 const std::string& name, const nlohmann::json& device)
365{
366 if (systemConfiguration.contains(name))
367 {
368 return;
369 }
370
Andrew Jeffery4db38bc2022-03-24 13:42:41 +1030371 if (deviceRequiresPowerOn(device) && (powerOff || scannedPowerOff))
Andrew Jeffery89ec3522022-03-24 13:30:41 +1030372 {
Andrew Jeffery89ec3522022-03-24 13:30:41 +1030373 return;
374 }
375
376 logDeviceRemoved(device);
377}
378
Alexander Hansen95ab18f2025-06-27 13:58:10 +0200379void EntityManager::startRemovedTimer(boost::asio::steady_timer& timer,
380 nlohmann::json& systemConfiguration)
James Feist1df06a42019-04-11 14:23:04 -0700381{
James Feistfb00f392019-06-25 14:16:48 -0700382 if (systemConfiguration.empty() || lastJson.empty())
383 {
384 return; // not ready yet
385 }
James Feist1df06a42019-04-11 14:23:04 -0700386 if (scannedPowerOn)
387 {
388 return;
389 }
390
Alexander Hansen0ab32b32025-06-27 14:50:33 +0200391 if (!powerStatus.isPowerOn() && scannedPowerOff)
James Feist1df06a42019-04-11 14:23:04 -0700392 {
393 return;
394 }
395
James Feistb1728ca2020-04-30 15:40:55 -0700396 timer.expires_after(std::chrono::seconds(10));
Andrew Jeffery27a1cfb2022-03-24 12:31:53 +1030397 timer.async_wait(
Alexander Hansen95ab18f2025-06-27 13:58:10 +0200398 [&systemConfiguration, this](const boost::system::error_code& ec) {
Patrick Williamsb7077432024-08-16 15:22:21 -0400399 if (ec == boost::asio::error::operation_aborted)
400 {
401 return;
402 }
Andrew Jeffery27a1cfb2022-03-24 12:31:53 +1030403
Alexander Hansen0ab32b32025-06-27 14:50:33 +0200404 bool powerOff = !powerStatus.isPowerOn();
Patrick Williamsb7077432024-08-16 15:22:21 -0400405 for (const auto& [name, device] : lastJson.items())
406 {
407 pruneDevice(systemConfiguration, powerOff, scannedPowerOff,
408 name, device);
409 }
Andrew Jeffery89ec3522022-03-24 13:30:41 +1030410
Patrick Williamsb7077432024-08-16 15:22:21 -0400411 scannedPowerOff = true;
412 if (!powerOff)
413 {
414 scannedPowerOn = true;
415 }
416 });
James Feist1df06a42019-04-11 14:23:04 -0700417}
418
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200419void EntityManager::pruneConfiguration(bool powerOff, const std::string& name,
420 const nlohmann::json& device)
Andrew Jeffery0d0c1462022-03-24 15:26:39 +1030421{
422 if (powerOff && deviceRequiresPowerOn(device))
423 {
424 // power not on yet, don't know if it's there or not
425 return;
426 }
427
Alexander Hansen57604ed2025-06-27 13:22:28 +0200428 auto& ifaces = dbus_interface.getDeviceInterfaces(device);
Andrew Jeffery0d0c1462022-03-24 15:26:39 +1030429 for (auto& iface : ifaces)
430 {
431 auto sharedPtr = iface.lock();
432 if (!!sharedPtr)
433 {
434 objServer.remove_interface(sharedPtr);
435 }
436 }
437
438 ifaces.clear();
439 systemConfiguration.erase(name);
Matt Spinler6eb60972023-08-14 16:36:20 -0500440 topology.remove(device["Name"].get<std::string>());
Andrew Jeffery0d0c1462022-03-24 15:26:39 +1030441 logDeviceRemoved(device);
442}
443
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200444void EntityManager::publishNewConfiguration(
Andrew Jefferye35d0ac2022-03-24 15:53:13 +1030445 const size_t& instance, const size_t count,
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200446 boost::asio::steady_timer& timer, // Gerrit discussion:
Andrew Jefferye35d0ac2022-03-24 15:53:13 +1030447 // https://gerrit.openbmc-project.xyz/c/openbmc/entity-manager/+/52316/6
448 //
449 // Discord discussion:
450 // https://discord.com/channels/775381525260664832/867820390406422538/958048437729910854
451 //
452 // NOLINTNEXTLINE(performance-unnecessary-value-param)
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200453 const nlohmann::json newConfiguration)
Andrew Jefferye35d0ac2022-03-24 15:53:13 +1030454{
Alexander Hansena555acf2025-06-27 11:59:10 +0200455 loadOverlays(newConfiguration, io);
Andrew Jefferye35d0ac2022-03-24 15:53:13 +1030456
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200457 boost::asio::post(io, [this]() {
Christopher Meisf7252572025-06-11 13:22:05 +0200458 if (!writeJsonFiles(systemConfiguration))
Andrew Jefferye35d0ac2022-03-24 15:53:13 +1030459 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200460 lg2::error("Error writing json files");
Andrew Jefferye35d0ac2022-03-24 15:53:13 +1030461 }
462 });
463
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200464 boost::asio::post(io, [this, &instance, count, &timer, newConfiguration]() {
465 postToDbus(newConfiguration);
Andrew Jefferye35d0ac2022-03-24 15:53:13 +1030466 if (count == instance)
467 {
Alexander Hansen95ab18f2025-06-27 13:58:10 +0200468 startRemovedTimer(timer, systemConfiguration);
Andrew Jefferye35d0ac2022-03-24 15:53:13 +1030469 }
470 });
471}
472
James Feist8f2710a2018-05-09 17:18:55 -0700473// main properties changed entry
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200474void EntityManager::propertiesChangedCallback()
James Feist8f2710a2018-05-09 17:18:55 -0700475{
Alexander Hansenfc1b1e22025-06-27 14:34:11 +0200476 propertiesChangedInstance++;
477 size_t count = propertiesChangedInstance;
James Feist1df06a42019-04-11 14:23:04 -0700478
Alexander Hansenb1340da2025-06-27 14:29:13 +0200479 propertiesChangedTimer.expires_after(std::chrono::milliseconds(500));
James Feist8f2710a2018-05-09 17:18:55 -0700480
481 // setup an async wait as we normally get flooded with new requests
Alexander Hansenb1340da2025-06-27 14:29:13 +0200482 propertiesChangedTimer.async_wait(
483 [this, count](const boost::system::error_code& ec) {
484 if (ec == boost::asio::error::operation_aborted)
485 {
486 // we were cancelled
487 return;
488 }
489 if (ec)
490 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200491 lg2::error("async wait error {ERR}", "ERR", ec.message());
Alexander Hansenb1340da2025-06-27 14:29:13 +0200492 return;
493 }
James Feist8f2710a2018-05-09 17:18:55 -0700494
Alexander Hansenb1340da2025-06-27 14:29:13 +0200495 if (propertiesChangedInProgress)
496 {
497 propertiesChangedCallback();
498 return;
499 }
500 propertiesChangedInProgress = true;
James Feist2539ccd2020-05-01 16:15:08 -0700501
Alexander Hansenb1340da2025-06-27 14:29:13 +0200502 nlohmann::json oldConfiguration = systemConfiguration;
503 auto missingConfigurations = std::make_shared<nlohmann::json>();
504 *missingConfigurations = systemConfiguration;
James Feist899e17f2019-09-13 11:46:29 -0700505
Alexander Hansenb1340da2025-06-27 14:29:13 +0200506 auto perfScan = std::make_shared<scan::PerformScan>(
Christopher Meisf7252572025-06-11 13:22:05 +0200507 *this, *missingConfigurations, configuration.configurations, io,
Alexander Hansenb1340da2025-06-27 14:29:13 +0200508 [this, count, oldConfiguration, missingConfigurations]() {
509 // this is something that since ac has been applied to the
510 // bmc we saw, and we no longer see it
Alexander Hansen0ab32b32025-06-27 14:50:33 +0200511 bool powerOff = !powerStatus.isPowerOn();
Alexander Hansenb1340da2025-06-27 14:29:13 +0200512 for (const auto& [name, device] :
513 missingConfigurations->items())
514 {
515 pruneConfiguration(powerOff, name, device);
516 }
Alexander Hansenb1340da2025-06-27 14:29:13 +0200517 nlohmann::json newConfiguration = systemConfiguration;
518
Christopher Meisf7252572025-06-11 13:22:05 +0200519 deriveNewConfiguration(oldConfiguration, newConfiguration);
Alexander Hansenb1340da2025-06-27 14:29:13 +0200520
521 for (const auto& [_, device] : newConfiguration.items())
522 {
523 logDeviceAdded(device);
524 }
525
526 propertiesChangedInProgress = false;
527
528 boost::asio::post(io, [this, newConfiguration, count] {
529 publishNewConfiguration(
Alexander Hansenfc1b1e22025-06-27 14:34:11 +0200530 std::ref(propertiesChangedInstance), count,
Alexander Hansenb1340da2025-06-27 14:29:13 +0200531 std::ref(propertiesChangedTimer), newConfiguration);
532 });
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200533 });
Alexander Hansenb1340da2025-06-27 14:29:13 +0200534 perfScan->run();
535 });
James Feist75fdeeb2018-02-20 14:26:16 -0800536}
537
Matt Spinler8d1ac3a2023-02-02 09:48:04 -0600538// Check if InterfacesAdded payload contains an iface that needs probing.
Patrick Williamsb7077432024-08-16 15:22:21 -0400539static bool iaContainsProbeInterface(
Christopher Meisf7252572025-06-11 13:22:05 +0200540 sdbusplus::message_t& msg,
541 const std::unordered_set<std::string>& probeInterfaces)
Matt Spinler8d1ac3a2023-02-02 09:48:04 -0600542{
543 sdbusplus::message::object_path path;
544 DBusObject interfaces;
Matt Spinler8d1ac3a2023-02-02 09:48:04 -0600545 msg.read(path, interfaces);
Eldin Lee802cbf22025-08-22 14:44:04 +0800546 return std::ranges::any_of(interfaces | std::views::keys,
547 [&probeInterfaces](const auto& ifaceName) {
548 return probeInterfaces.contains(ifaceName);
549 });
Matt Spinler8d1ac3a2023-02-02 09:48:04 -0600550}
551
552// Check if InterfacesRemoved payload contains an iface that needs probing.
Patrick Williamsb7077432024-08-16 15:22:21 -0400553static bool irContainsProbeInterface(
Christopher Meisf7252572025-06-11 13:22:05 +0200554 sdbusplus::message_t& msg,
555 const std::unordered_set<std::string>& probeInterfaces)
Matt Spinler8d1ac3a2023-02-02 09:48:04 -0600556{
557 sdbusplus::message::object_path path;
Eldin Lee802cbf22025-08-22 14:44:04 +0800558 std::vector<std::string> interfaces;
Matt Spinler8d1ac3a2023-02-02 09:48:04 -0600559 msg.read(path, interfaces);
Eldin Lee802cbf22025-08-22 14:44:04 +0800560 return std::ranges::any_of(interfaces,
561 [&probeInterfaces](const auto& ifaceName) {
562 return probeInterfaces.contains(ifaceName);
563 });
Matt Spinler8d1ac3a2023-02-02 09:48:04 -0600564}
565
Alexander Hansenad28e402025-06-25 12:38:20 +0200566void EntityManager::handleCurrentConfigurationJson()
567{
Alexander Hansene6651852025-01-21 16:22:05 +0100568 if (EM_CACHE_CONFIGURATION && em_utils::fwVersionIsSame())
Alexander Hansenad28e402025-06-25 12:38:20 +0200569 {
Christopher Meisf7252572025-06-11 13:22:05 +0200570 if (std::filesystem::is_regular_file(currentConfiguration))
Alexander Hansenad28e402025-06-25 12:38:20 +0200571 {
572 // this file could just be deleted, but it's nice for debug
573 std::filesystem::create_directory(tempConfigDir);
574 std::filesystem::remove(lastConfiguration);
Christopher Meisf7252572025-06-11 13:22:05 +0200575 std::filesystem::copy(currentConfiguration, lastConfiguration);
576 std::filesystem::remove(currentConfiguration);
Alexander Hansenad28e402025-06-25 12:38:20 +0200577
578 std::ifstream jsonStream(lastConfiguration);
579 if (jsonStream.good())
580 {
581 auto data = nlohmann::json::parse(jsonStream, nullptr, false);
582 if (data.is_discarded())
583 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200584 lg2::error("syntax error in {PATH}", "PATH",
585 lastConfiguration);
Alexander Hansenad28e402025-06-25 12:38:20 +0200586 }
587 else
588 {
589 lastJson = std::move(data);
590 }
591 }
592 else
593 {
Alexander Hansen8feb0452025-09-15 14:29:20 +0200594 lg2::error("unable to open {PATH}", "PATH", lastConfiguration);
Alexander Hansenad28e402025-06-25 12:38:20 +0200595 }
596 }
597 }
598 else
599 {
600 // not an error, just logging at this level to make it in the journal
Marc Olberdingb2f82822025-09-25 13:56:41 -0700601 std::error_code ec;
Alexander Hansen8feb0452025-09-15 14:29:20 +0200602 lg2::error("Clearing previous configuration");
Marc Olberdingb2f82822025-09-25 13:56:41 -0700603 std::filesystem::remove(currentConfiguration, ec);
Alexander Hansenad28e402025-06-25 12:38:20 +0200604 }
605}
606
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200607void EntityManager::registerCallback(const std::string& path)
James Feist75fdeeb2018-02-20 14:26:16 -0800608{
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200609 if (dbusMatches.contains(path))
610 {
611 return;
612 }
Nan Zhoua3315672022-09-20 19:48:14 +0000613
Alexander Hansen60803182025-06-27 14:41:28 +0200614 lg2::debug("creating PropertiesChanged match on {PATH}", "PATH", path);
615
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200616 std::function<void(sdbusplus::message_t & message)> eventHandler =
617 [&](sdbusplus::message_t&) { propertiesChangedCallback(); };
James Feistfd1264a2018-05-03 12:10:00 -0700618
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200619 sdbusplus::bus::match_t match(
620 static_cast<sdbusplus::bus_t&>(*systemBus),
621 "type='signal',member='PropertiesChanged',path='" + path + "'",
622 eventHandler);
623 dbusMatches.emplace(path, std::move(match));
624}
James Feistfd1264a2018-05-03 12:10:00 -0700625
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200626// We need a poke from DBus for static providers that create all their
627// objects prior to claiming a well-known name, and thus don't emit any
628// org.freedesktop.DBus.Properties signals. Similarly if a process exits
629// for any reason, expected or otherwise, we'll need a poke to remove
630// entities from DBus.
Christopher Meisf7252572025-06-11 13:22:05 +0200631void EntityManager::initFilters(
632 const std::unordered_set<std::string>& probeInterfaces)
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200633{
Alexander Hansen0f7bd782025-06-27 13:39:53 +0200634 nameOwnerChangedMatch = std::make_unique<sdbusplus::bus::match_t>(
Patrick Williams2af39222022-07-22 19:26:56 -0500635 static_cast<sdbusplus::bus_t&>(*systemBus),
Brad Bishopc76af0f2020-12-04 13:50:23 -0500636 sdbusplus::bus::match::rules::nameOwnerChanged(),
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200637 [this](sdbusplus::message_t& m) {
Patrick Williamsb7077432024-08-16 15:22:21 -0400638 auto [name, oldOwner,
639 newOwner] = m.unpack<std::string, std::string, std::string>();
Patrick Williams7b8786f2022-10-10 10:23:37 -0500640
Patrick Williamsb7077432024-08-16 15:22:21 -0400641 if (name.starts_with(':'))
642 {
643 // We should do nothing with unique-name connections.
644 return;
645 }
Patrick Williams7b8786f2022-10-10 10:23:37 -0500646
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200647 propertiesChangedCallback();
Patrick Williamsb7077432024-08-16 15:22:21 -0400648 });
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200649
Brad Bishop10a8c5f2020-12-07 21:40:07 -0500650 // We also need a poke from DBus when new interfaces are created or
651 // destroyed.
Alexander Hansen0f7bd782025-06-27 13:39:53 +0200652 interfacesAddedMatch = std::make_unique<sdbusplus::bus::match_t>(
Patrick Williams2af39222022-07-22 19:26:56 -0500653 static_cast<sdbusplus::bus_t&>(*systemBus),
Brad Bishop10a8c5f2020-12-07 21:40:07 -0500654 sdbusplus::bus::match::rules::interfacesAdded(),
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200655 [this, probeInterfaces](sdbusplus::message_t& msg) {
Patrick Williamsb7077432024-08-16 15:22:21 -0400656 if (iaContainsProbeInterface(msg, probeInterfaces))
657 {
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200658 propertiesChangedCallback();
Patrick Williamsb7077432024-08-16 15:22:21 -0400659 }
660 });
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200661
Alexander Hansen0f7bd782025-06-27 13:39:53 +0200662 interfacesRemovedMatch = std::make_unique<sdbusplus::bus::match_t>(
Patrick Williams2af39222022-07-22 19:26:56 -0500663 static_cast<sdbusplus::bus_t&>(*systemBus),
Brad Bishop10a8c5f2020-12-07 21:40:07 -0500664 sdbusplus::bus::match::rules::interfacesRemoved(),
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200665 [this, probeInterfaces](sdbusplus::message_t& msg) {
Patrick Williamsb7077432024-08-16 15:22:21 -0400666 if (irContainsProbeInterface(msg, probeInterfaces))
667 {
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200668 propertiesChangedCallback();
Patrick Williamsb7077432024-08-16 15:22:21 -0400669 }
670 });
Christopher Meiscf6a75b2025-06-03 07:53:50 +0200671}