blob: 86ef05518ebdc824036b37b86cded10cf543f868 [file] [log] [blame]
Andrew Geisslera80a3af2019-02-04 14:01:49 -06001#include "associations.hpp"
Andrew Geissler3b025e62019-02-01 10:33:54 -06002#include "processing.hpp"
Matt Spinlerdd945862018-09-07 12:41:05 -05003#include "src/argument.hpp"
Matt Spinler35396c12019-04-05 11:46:57 -05004#include "types.hpp"
Matt Spinlerdd945862018-09-07 12:41:05 -05005
Ed Tanous60520632018-06-11 17:46:52 -07006#include <tinyxml2.h>
7
Ed Tanous60520632018-06-11 17:46:52 -07008#include <boost/algorithm/string/predicate.hpp>
Ed Tanous21c60592020-08-17 23:43:46 -07009#include <boost/asio/io_context.hpp>
10#include <boost/asio/signal_set.hpp>
Ed Tanous60520632018-06-11 17:46:52 -070011#include <boost/container/flat_map.hpp>
Ed Tanous60520632018-06-11 17:46:52 -070012#include <sdbusplus/asio/connection.hpp>
13#include <sdbusplus/asio/object_server.hpp>
Konstantin Aladyshevb15df6b2022-01-11 14:50:55 +030014#include <xyz/openbmc_project/Common/error.hpp>
Ed Tanous60520632018-06-11 17:46:52 -070015
Brad Bishop23520882022-05-26 21:39:53 -040016#include <atomic>
17#include <chrono>
Brad Bishopea119462022-05-31 20:32:04 -040018#include <exception>
Brad Bishop23520882022-05-26 21:39:53 -040019#include <iomanip>
20#include <iostream>
Brad Bishop1f623802022-05-31 18:22:10 -040021#include <utility>
Brad Bishop23520882022-05-26 21:39:53 -040022
Matt Spinlere2359fb2019-04-05 14:11:33 -050023AssociationMaps associationMaps;
Matt Spinler937a2322019-01-23 13:54:22 -060024
Brad Bishopf944a452022-05-05 15:06:46 -040025static AllowDenyList serviceAllowList;
Matt Spinlerdd945862018-09-07 12:41:05 -050026
Brad Bishopa098a372022-05-05 15:19:04 -040027void updateOwners(sdbusplus::asio::connection* conn,
28 boost::container::flat_map<std::string, std::string>& owners,
29 const std::string& newObject)
Ed Tanous60520632018-06-11 17:46:52 -070030{
Brad Bishopa098a372022-05-05 15:19:04 -040031 if (boost::starts_with(newObject, ":"))
Ed Tanous60520632018-06-11 17:46:52 -070032 {
33 return;
34 }
35 conn->async_method_call(
Brad Bishopa098a372022-05-05 15:19:04 -040036 [&, newObject](const boost::system::error_code ec,
37 const std::string& nameOwner) {
Ed Tanous60520632018-06-11 17:46:52 -070038 if (ec)
39 {
Brad Bishopa098a372022-05-05 15:19:04 -040040 std::cerr << "Error getting owner of " << newObject << " : "
Ed Tanous60520632018-06-11 17:46:52 -070041 << ec << "\n";
42 return;
43 }
Brad Bishopa098a372022-05-05 15:19:04 -040044 owners[nameOwner] = newObject;
Ed Tanous60520632018-06-11 17:46:52 -070045 },
46 "org.freedesktop.DBus", "/", "org.freedesktop.DBus", "GetNameOwner",
Brad Bishopa098a372022-05-05 15:19:04 -040047 newObject);
Ed Tanous60520632018-06-11 17:46:52 -070048}
49
Brad Bishopa098a372022-05-05 15:19:04 -040050void sendIntrospectionCompleteSignal(sdbusplus::asio::connection* systemBus,
51 const std::string& processName)
Ed Tanous60520632018-06-11 17:46:52 -070052{
53 // TODO(ed) This signal doesn't get exposed properly in the
54 // introspect right now. Find out how to register signals in
55 // sdbusplus
Brad Bishopa098a372022-05-05 15:19:04 -040056 sdbusplus::message::message m = systemBus->new_signal(
Brad Bishopa02cd542021-10-12 19:12:42 -040057 "/xyz/openbmc_project/object_mapper",
58 "xyz.openbmc_project.ObjectMapper.Private", "IntrospectionComplete");
Brad Bishopa098a372022-05-05 15:19:04 -040059 m.append(processName);
Ed Tanous60520632018-06-11 17:46:52 -070060 m.signal_send();
61}
62
63struct InProgressIntrospect
64{
Brad Bishop1f623802022-05-31 18:22:10 -040065 InProgressIntrospect() = delete;
66 InProgressIntrospect(const InProgressIntrospect&) = delete;
67 InProgressIntrospect(InProgressIntrospect&&) = delete;
68 InProgressIntrospect& operator=(const InProgressIntrospect&) = delete;
69 InProgressIntrospect& operator=(InProgressIntrospect&&) = delete;
Ed Tanous60520632018-06-11 17:46:52 -070070 InProgressIntrospect(
Brad Bishopa098a372022-05-05 15:19:04 -040071 sdbusplus::asio::connection* systemBus, boost::asio::io_context& io,
72 const std::string& processName, AssociationMaps& am
Brad Bishopd6aa5522022-05-31 19:23:48 -040073#ifdef MAPPER_ENABLE_DEBUG
Matt Spinleraecabe82018-09-19 13:25:42 -050074 ,
Ed Tanous60520632018-06-11 17:46:52 -070075 std::shared_ptr<std::chrono::time_point<std::chrono::steady_clock>>
Brad Bishopa098a372022-05-05 15:19:04 -040076 globalStartTime
Matt Spinleraecabe82018-09-19 13:25:42 -050077#endif
78 ) :
Brad Bishopa098a372022-05-05 15:19:04 -040079 systemBus(systemBus),
80 io(io), processName(processName), assocMaps(am)
Brad Bishopd6aa5522022-05-31 19:23:48 -040081#ifdef MAPPER_ENABLE_DEBUG
Matt Spinleraecabe82018-09-19 13:25:42 -050082 ,
Brad Bishop1f623802022-05-31 18:22:10 -040083 globalStartTime(std::move(globalStartTime)),
Brad Bishopa098a372022-05-05 15:19:04 -040084 processStartTime(std::chrono::steady_clock::now())
Matt Spinleraecabe82018-09-19 13:25:42 -050085#endif
Brad Bishop23520882022-05-26 21:39:53 -040086 {}
Ed Tanous60520632018-06-11 17:46:52 -070087 ~InProgressIntrospect()
88 {
Brad Bishopea119462022-05-31 20:32:04 -040089 try
Ed Tanous60520632018-06-11 17:46:52 -070090 {
Brad Bishopea119462022-05-31 20:32:04 -040091 sendIntrospectionCompleteSignal(systemBus, processName);
Brad Bishopd6aa5522022-05-31 19:23:48 -040092#ifdef MAPPER_ENABLE_DEBUG
Brad Bishopea119462022-05-31 20:32:04 -040093 std::chrono::duration<float> diff =
94 std::chrono::steady_clock::now() - processStartTime;
95 std::cout << std::setw(50) << processName << " scan took "
96 << diff.count() << " seconds\n";
97
98 // If we're the last outstanding caller globally, calculate the
99 // time it took
100 if (globalStartTime != nullptr && globalStartTime.use_count() == 1)
101 {
102 diff = std::chrono::steady_clock::now() - *globalStartTime;
103 std::cout << "Total scan took " << diff.count()
104 << " seconds to complete\n";
105 }
Matt Spinleraecabe82018-09-19 13:25:42 -0500106#endif
Brad Bishopea119462022-05-31 20:32:04 -0400107 }
108 catch (const std::exception& e)
109 {
110 std::cerr
111 << "Terminating, unhandled exception while introspecting: "
112 << e.what() << "\n";
113 std::terminate();
114 }
115 catch (...)
116 {
117 std::cerr
118 << "Terminating, unhandled exception while introspecting\n";
119 std::terminate();
120 }
Ed Tanous60520632018-06-11 17:46:52 -0700121 }
Brad Bishopa098a372022-05-05 15:19:04 -0400122 sdbusplus::asio::connection* systemBus;
Ed Tanous21c60592020-08-17 23:43:46 -0700123 boost::asio::io_context& io;
Brad Bishopa098a372022-05-05 15:19:04 -0400124 std::string processName;
Matt Spinler11401e22019-04-08 13:13:25 -0500125 AssociationMaps& assocMaps;
Brad Bishopd6aa5522022-05-31 19:23:48 -0400126#ifdef MAPPER_ENABLE_DEBUG
Ed Tanous60520632018-06-11 17:46:52 -0700127 std::shared_ptr<std::chrono::time_point<std::chrono::steady_clock>>
Brad Bishopa098a372022-05-05 15:19:04 -0400128 globalStartTime;
129 std::chrono::time_point<std::chrono::steady_clock> processStartTime;
Matt Spinleraecabe82018-09-19 13:25:42 -0500130#endif
Ed Tanous60520632018-06-11 17:46:52 -0700131};
132
Brad Bishopa098a372022-05-05 15:19:04 -0400133void doAssociations(sdbusplus::asio::connection* systemBus,
134 InterfaceMapType& interfaceMap,
135 sdbusplus::asio::object_server& objectServer,
136 const std::string& processName, const std::string& path,
137 int timeoutRetries = 0)
Ed Tanous60520632018-06-11 17:46:52 -0700138{
Adrian Ambrożewiczbb40bd32021-02-12 13:36:26 +0100139 constexpr int maxTimeoutRetries = 3;
Brad Bishopa098a372022-05-05 15:19:04 -0400140 systemBus->async_method_call(
141 [&objectServer, path, processName, &interfaceMap, systemBus,
Adrian Ambrożewiczbb40bd32021-02-12 13:36:26 +0100142 timeoutRetries](
Matt Spinler937a2322019-01-23 13:54:22 -0600143 const boost::system::error_code ec,
Patrick Williams2bb2d6b2020-05-13 17:59:02 -0500144 const std::variant<std::vector<Association>>& variantAssociations) {
Ed Tanous60520632018-06-11 17:46:52 -0700145 if (ec)
146 {
Adrian Ambrożewiczbb40bd32021-02-12 13:36:26 +0100147 if (ec.value() == boost::system::errc::timed_out &&
148 timeoutRetries < maxTimeoutRetries)
149 {
Brad Bishopa098a372022-05-05 15:19:04 -0400150 doAssociations(systemBus, interfaceMap, objectServer,
151 processName, path, timeoutRetries + 1);
Adrian Ambrożewiczbb40bd32021-02-12 13:36:26 +0100152 return;
153 }
Ed Tanous60520632018-06-11 17:46:52 -0700154 std::cerr << "Error getting associations from " << path << "\n";
155 }
156 std::vector<Association> associations =
Patrick Williamsb05bc122020-05-13 12:21:00 -0500157 std::get<std::vector<Association>>(variantAssociations);
Andrew Geissler4511b332019-02-21 15:40:40 -0600158 associationChanged(objectServer, associations, path, processName,
Matt Spinlere0b0e3a2019-04-08 10:39:23 -0500159 interfaceMap, associationMaps);
Ed Tanous60520632018-06-11 17:46:52 -0700160 },
161 processName, path, "org.freedesktop.DBus.Properties", "Get",
John Wangd0cf9422019-09-17 16:01:34 +0800162 assocDefsInterface, assocDefsProperty);
Ed Tanous60520632018-06-11 17:46:52 -0700163}
164
Brad Bishopa098a372022-05-05 15:19:04 -0400165void doIntrospect(sdbusplus::asio::connection* systemBus,
Brad Bishop1f623802022-05-31 18:22:10 -0400166 const std::shared_ptr<InProgressIntrospect>& transaction,
Brad Bishopa098a372022-05-05 15:19:04 -0400167 InterfaceMapType& interfaceMap,
168 sdbusplus::asio::object_server& objectServer,
Brad Bishop1f623802022-05-31 18:22:10 -0400169 const std::string& path, int timeoutRetries = 0)
Ed Tanous60520632018-06-11 17:46:52 -0700170{
Vernon Maueryc52be0d2020-01-14 11:14:25 -0800171 constexpr int maxTimeoutRetries = 3;
Brad Bishopa098a372022-05-05 15:19:04 -0400172 systemBus->async_method_call(
173 [&interfaceMap, &objectServer, transaction, path, systemBus,
Vernon Maueryc52be0d2020-01-14 11:14:25 -0800174 timeoutRetries](const boost::system::error_code ec,
Brad Bishopa098a372022-05-05 15:19:04 -0400175 const std::string& introspectXml) {
Ed Tanous60520632018-06-11 17:46:52 -0700176 if (ec)
177 {
Vernon Maueryc52be0d2020-01-14 11:14:25 -0800178 if (ec.value() == boost::system::errc::timed_out &&
179 timeoutRetries < maxTimeoutRetries)
180 {
Brad Bishopa098a372022-05-05 15:19:04 -0400181 doIntrospect(systemBus, transaction, interfaceMap,
182 objectServer, path, timeoutRetries + 1);
Vernon Maueryc52be0d2020-01-14 11:14:25 -0800183 return;
184 }
Ed Tanous60520632018-06-11 17:46:52 -0700185 std::cerr << "Introspect call failed with error: " << ec << ", "
186 << ec.message()
Brad Bishopa098a372022-05-05 15:19:04 -0400187 << " on process: " << transaction->processName
Ed Tanous60520632018-06-11 17:46:52 -0700188 << " path: " << path << "\n";
189 return;
190 }
191
192 tinyxml2::XMLDocument doc;
193
Brad Bishopa098a372022-05-05 15:19:04 -0400194 tinyxml2::XMLError e = doc.Parse(introspectXml.c_str());
Ed Tanous60520632018-06-11 17:46:52 -0700195 if (e != tinyxml2::XMLError::XML_SUCCESS)
196 {
197 std::cerr << "XML parsing failed\n";
198 return;
199 }
200
201 tinyxml2::XMLNode* pRoot = doc.FirstChildElement("node");
202 if (pRoot == nullptr)
203 {
204 std::cerr << "XML document did not contain any data\n";
205 return;
206 }
Brad Bishopa098a372022-05-05 15:19:04 -0400207 auto& thisPathMap = interfaceMap[path];
Ed Tanous60520632018-06-11 17:46:52 -0700208 tinyxml2::XMLElement* pElement =
209 pRoot->FirstChildElement("interface");
210 while (pElement != nullptr)
211 {
Brad Bishopa098a372022-05-05 15:19:04 -0400212 const char* ifaceName = pElement->Attribute("name");
213 if (ifaceName == nullptr)
Ed Tanous60520632018-06-11 17:46:52 -0700214 {
215 continue;
216 }
217
Brad Bishopa098a372022-05-05 15:19:04 -0400218 thisPathMap[transaction->processName].emplace(ifaceName);
Ed Tanousd4dd96a2018-11-12 11:37:44 -0800219
Brad Bishopa098a372022-05-05 15:19:04 -0400220 if (std::strcmp(ifaceName, assocDefsInterface) == 0)
Ed Tanous60520632018-06-11 17:46:52 -0700221 {
Brad Bishopa098a372022-05-05 15:19:04 -0400222 doAssociations(systemBus, interfaceMap, objectServer,
223 transaction->processName, path);
Ed Tanous60520632018-06-11 17:46:52 -0700224 }
Ed Tanous60520632018-06-11 17:46:52 -0700225
226 pElement = pElement->NextSiblingElement("interface");
227 }
228
Matt Spinler11401e22019-04-08 13:13:25 -0500229 // Check if this new path has a pending association that can
230 // now be completed.
Brad Bishopa098a372022-05-05 15:19:04 -0400231 checkIfPendingAssociation(path, interfaceMap,
Matt Spinler11401e22019-04-08 13:13:25 -0500232 transaction->assocMaps, objectServer);
233
Ed Tanous50232cd2018-11-12 11:34:43 -0800234 pElement = pRoot->FirstChildElement("node");
235 while (pElement != nullptr)
Ed Tanous60520632018-06-11 17:46:52 -0700236 {
Brad Bishopa098a372022-05-05 15:19:04 -0400237 const char* childPath = pElement->Attribute("name");
238 if (childPath != nullptr)
Ed Tanous60520632018-06-11 17:46:52 -0700239 {
Brad Bishopa098a372022-05-05 15:19:04 -0400240 std::string parentPath(path);
241 if (parentPath == "/")
Ed Tanous60520632018-06-11 17:46:52 -0700242 {
Brad Bishopa098a372022-05-05 15:19:04 -0400243 parentPath.clear();
Ed Tanous60520632018-06-11 17:46:52 -0700244 }
Ed Tanous50232cd2018-11-12 11:34:43 -0800245
Brad Bishopa098a372022-05-05 15:19:04 -0400246 doIntrospect(systemBus, transaction, interfaceMap,
247 objectServer, parentPath + "/" + childPath);
Ed Tanous60520632018-06-11 17:46:52 -0700248 }
Ed Tanous50232cd2018-11-12 11:34:43 -0800249 pElement = pElement->NextSiblingElement("node");
Ed Tanous60520632018-06-11 17:46:52 -0700250 }
251 },
Brad Bishopa098a372022-05-05 15:19:04 -0400252 transaction->processName, path, "org.freedesktop.DBus.Introspectable",
Ed Tanous60520632018-06-11 17:46:52 -0700253 "Introspect");
254}
255
Brad Bishopa098a372022-05-05 15:19:04 -0400256void startNewIntrospect(
257 sdbusplus::asio::connection* systemBus, boost::asio::io_context& io,
258 InterfaceMapType& interfaceMap, const std::string& processName,
Matt Spinler11401e22019-04-08 13:13:25 -0500259 AssociationMaps& assocMaps,
Brad Bishopd6aa5522022-05-31 19:23:48 -0400260#ifdef MAPPER_ENABLE_DEBUG
Ed Tanous60520632018-06-11 17:46:52 -0700261 std::shared_ptr<std::chrono::time_point<std::chrono::steady_clock>>
Brad Bishopa098a372022-05-05 15:19:04 -0400262 globalStartTime,
Matt Spinleraecabe82018-09-19 13:25:42 -0500263#endif
Ed Tanous60520632018-06-11 17:46:52 -0700264 sdbusplus::asio::object_server& objectServer)
265{
Brad Bishopd5542322022-06-02 19:56:23 -0400266 if (needToIntrospect(processName, serviceAllowList))
Ed Tanous60520632018-06-11 17:46:52 -0700267 {
Ed Tanous60520632018-06-11 17:46:52 -0700268 std::shared_ptr<InProgressIntrospect> transaction =
Brad Bishopa098a372022-05-05 15:19:04 -0400269 std::make_shared<InProgressIntrospect>(systemBus, io, processName,
Matt Spinler11401e22019-04-08 13:13:25 -0500270 assocMaps
Brad Bishopd6aa5522022-05-31 19:23:48 -0400271#ifdef MAPPER_ENABLE_DEBUG
Matt Spinleraecabe82018-09-19 13:25:42 -0500272 ,
Brad Bishopa098a372022-05-05 15:19:04 -0400273 globalStartTime
Matt Spinleraecabe82018-09-19 13:25:42 -0500274#endif
275 );
Ed Tanous60520632018-06-11 17:46:52 -0700276
Brad Bishopa098a372022-05-05 15:19:04 -0400277 doIntrospect(systemBus, transaction, interfaceMap, objectServer, "/");
Ed Tanous60520632018-06-11 17:46:52 -0700278 }
279}
280
281// TODO(ed) replace with std::set_intersection once c++17 is available
282template <class InputIt1, class InputIt2>
283bool intersect(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2)
284{
285 while (first1 != last1 && first2 != last2)
286 {
287 if (*first1 < *first2)
288 {
289 ++first1;
290 continue;
291 }
292 if (*first2 < *first1)
293 {
294 ++first2;
295 continue;
296 }
297 return true;
298 }
299 return false;
300}
301
302void doListNames(
Brad Bishopa098a372022-05-05 15:19:04 -0400303 boost::asio::io_context& io, InterfaceMapType& interfaceMap,
304 sdbusplus::asio::connection* systemBus,
305 boost::container::flat_map<std::string, std::string>& nameOwners,
Matt Spinler11401e22019-04-08 13:13:25 -0500306 AssociationMaps& assocMaps, sdbusplus::asio::object_server& objectServer)
Ed Tanous60520632018-06-11 17:46:52 -0700307{
Brad Bishopa098a372022-05-05 15:19:04 -0400308 systemBus->async_method_call(
309 [&io, &interfaceMap, &nameOwners, &objectServer, systemBus,
Matt Spinler11401e22019-04-08 13:13:25 -0500310 &assocMaps](const boost::system::error_code ec,
Brad Bishopa098a372022-05-05 15:19:04 -0400311 std::vector<std::string> processNames) {
Ed Tanous60520632018-06-11 17:46:52 -0700312 if (ec)
313 {
314 std::cerr << "Error getting names: " << ec << "\n";
315 std::exit(EXIT_FAILURE);
316 return;
317 }
Ed Tanous60520632018-06-11 17:46:52 -0700318 // Try to make startup consistent
Brad Bishopa098a372022-05-05 15:19:04 -0400319 std::sort(processNames.begin(), processNames.end());
Brad Bishopd6aa5522022-05-31 19:23:48 -0400320#ifdef MAPPER_ENABLE_DEBUG
Ed Tanous60520632018-06-11 17:46:52 -0700321 std::shared_ptr<std::chrono::time_point<std::chrono::steady_clock>>
Brad Bishopa098a372022-05-05 15:19:04 -0400322 globalStartTime = std::make_shared<
Ed Tanous60520632018-06-11 17:46:52 -0700323 std::chrono::time_point<std::chrono::steady_clock>>(
324 std::chrono::steady_clock::now());
Matt Spinleraecabe82018-09-19 13:25:42 -0500325#endif
Brad Bishopa098a372022-05-05 15:19:04 -0400326 for (const std::string& processName : processNames)
Ed Tanous60520632018-06-11 17:46:52 -0700327 {
Brad Bishopd5542322022-06-02 19:56:23 -0400328 if (needToIntrospect(processName, serviceAllowList))
Ed Tanous60520632018-06-11 17:46:52 -0700329 {
Brad Bishopa098a372022-05-05 15:19:04 -0400330 startNewIntrospect(systemBus, io, interfaceMap, processName,
331 assocMaps,
Brad Bishopd6aa5522022-05-31 19:23:48 -0400332#ifdef MAPPER_ENABLE_DEBUG
Brad Bishopa098a372022-05-05 15:19:04 -0400333 globalStartTime,
Matt Spinleraecabe82018-09-19 13:25:42 -0500334#endif
Brad Bishopa098a372022-05-05 15:19:04 -0400335 objectServer);
336 updateOwners(systemBus, nameOwners, processName);
Ed Tanous60520632018-06-11 17:46:52 -0700337 }
338 }
339 },
340 "org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus",
341 "ListNames");
342}
343
Matt Spinlerdd945862018-09-07 12:41:05 -0500344void splitArgs(const std::string& stringArgs,
345 boost::container::flat_set<std::string>& listArgs)
346{
347 std::istringstream args;
348 std::string arg;
349
350 args.str(stringArgs);
351
352 while (!args.eof())
353 {
354 args >> arg;
355 if (!arg.empty())
356 {
357 listArgs.insert(arg);
358 }
359 }
360}
361
Matt Spinler47c09752018-11-29 14:54:13 -0600362void addObjectMapResult(
Brad Bishopa098a372022-05-05 15:19:04 -0400363 std::vector<InterfaceMapType::value_type>& objectMap,
Matt Spinler9f0958e2018-09-11 08:26:10 -0500364 const std::string& objectPath,
365 const std::pair<std::string, boost::container::flat_set<std::string>>&
366 interfaceMap)
367{
368 // Adds an object path/service name/interface list entry to
Matt Spinler47c09752018-11-29 14:54:13 -0600369 // the results of GetSubTree and GetAncestors.
Matt Spinler9f0958e2018-09-11 08:26:10 -0500370 // If an entry for the object path already exists, just add the
371 // service name and interfaces to that entry, otherwise create
372 // a new entry.
373 auto entry = std::find_if(
Matt Spinler47c09752018-11-29 14:54:13 -0600374 objectMap.begin(), objectMap.end(),
Matt Spinler9f0958e2018-09-11 08:26:10 -0500375 [&objectPath](const auto& i) { return objectPath == i.first; });
376
Matt Spinler47c09752018-11-29 14:54:13 -0600377 if (entry != objectMap.end())
Matt Spinler9f0958e2018-09-11 08:26:10 -0500378 {
379 entry->second.emplace(interfaceMap);
380 }
381 else
382 {
Brad Bishopa098a372022-05-05 15:19:04 -0400383 InterfaceMapType::value_type object;
Matt Spinler9f0958e2018-09-11 08:26:10 -0500384 object.first = objectPath;
385 object.second.emplace(interfaceMap);
Matt Spinler47c09752018-11-29 14:54:13 -0600386 objectMap.push_back(object);
Matt Spinler9f0958e2018-09-11 08:26:10 -0500387 }
388}
389
Matt Spinlera82779f2019-01-09 12:39:42 -0600390// Remove parents of the passed in path that:
391// 1) Only have the 3 default interfaces on them
392// - Means D-Bus created these, not application code,
393// with the Properties, Introspectable, and Peer ifaces
394// 2) Have no other child for this owner
395void removeUnneededParents(const std::string& objectPath,
396 const std::string& owner,
Brad Bishopa098a372022-05-05 15:19:04 -0400397 InterfaceMapType& interfaceMap)
Matt Spinlera82779f2019-01-09 12:39:42 -0600398{
399 auto parent = objectPath;
400
401 while (true)
402 {
403 auto pos = parent.find_last_of('/');
404 if ((pos == std::string::npos) || (pos == 0))
405 {
406 break;
407 }
408 parent = parent.substr(0, pos);
409
Brad Bishopa098a372022-05-05 15:19:04 -0400410 auto parentIt = interfaceMap.find(parent);
411 if (parentIt == interfaceMap.end())
Matt Spinlera82779f2019-01-09 12:39:42 -0600412 {
413 break;
414 }
415
Brad Bishopa098a372022-05-05 15:19:04 -0400416 auto ifacesIt = parentIt->second.find(owner);
417 if (ifacesIt == parentIt->second.end())
Matt Spinlera82779f2019-01-09 12:39:42 -0600418 {
419 break;
420 }
421
Brad Bishopa098a372022-05-05 15:19:04 -0400422 if (ifacesIt->second.size() != 3)
Matt Spinlera82779f2019-01-09 12:39:42 -0600423 {
424 break;
425 }
426
Brad Bishopa098a372022-05-05 15:19:04 -0400427 auto childPath = parent + '/';
Matt Spinlera82779f2019-01-09 12:39:42 -0600428
429 // Remove this parent if there isn't a remaining child on this owner
430 auto child = std::find_if(
Brad Bishopa098a372022-05-05 15:19:04 -0400431 interfaceMap.begin(), interfaceMap.end(),
432 [&owner, &childPath](const auto& entry) {
433 return boost::starts_with(entry.first, childPath) &&
Matt Spinlera82779f2019-01-09 12:39:42 -0600434 (entry.second.find(owner) != entry.second.end());
435 });
436
Brad Bishopa098a372022-05-05 15:19:04 -0400437 if (child == interfaceMap.end())
Matt Spinlera82779f2019-01-09 12:39:42 -0600438 {
Brad Bishopa098a372022-05-05 15:19:04 -0400439 parentIt->second.erase(ifacesIt);
440 if (parentIt->second.empty())
Matt Spinlera82779f2019-01-09 12:39:42 -0600441 {
Brad Bishopa098a372022-05-05 15:19:04 -0400442 interfaceMap.erase(parentIt);
Matt Spinlera82779f2019-01-09 12:39:42 -0600443 }
444 }
445 else
446 {
447 break;
448 }
449 }
450}
451
Brad Bishopa098a372022-05-05 15:19:04 -0400452std::vector<InterfaceMapType::value_type>
453 getAncestors(const InterfaceMapType& interfaceMap, std::string reqPath,
Ed Tanous0a13c762021-09-28 13:29:25 -0700454 std::vector<std::string>& interfaces)
455{
456 // Interfaces need to be sorted for intersect to function
457 std::sort(interfaces.begin(), interfaces.end());
458
Brad Bishopa098a372022-05-05 15:19:04 -0400459 if (boost::ends_with(reqPath, "/"))
Ed Tanous0a13c762021-09-28 13:29:25 -0700460 {
Brad Bishopa098a372022-05-05 15:19:04 -0400461 reqPath.pop_back();
Ed Tanous0a13c762021-09-28 13:29:25 -0700462 }
Brad Bishop1f623802022-05-31 18:22:10 -0400463 if (!reqPath.empty() && interfaceMap.find(reqPath) == interfaceMap.end())
Ed Tanous0a13c762021-09-28 13:29:25 -0700464 {
Konstantin Aladyshevb15df6b2022-01-11 14:50:55 +0300465 throw sdbusplus::xyz::openbmc_project::Common::Error::
466 ResourceNotFound();
Ed Tanous0a13c762021-09-28 13:29:25 -0700467 }
468
Brad Bishopa098a372022-05-05 15:19:04 -0400469 std::vector<InterfaceMapType::value_type> ret;
Brad Bishop1f623802022-05-31 18:22:10 -0400470 for (const auto& objectPath : interfaceMap)
Ed Tanous0a13c762021-09-28 13:29:25 -0700471 {
Brad Bishop1f623802022-05-31 18:22:10 -0400472 const auto& thisPath = objectPath.first;
Brad Bishopa098a372022-05-05 15:19:04 -0400473 if (boost::starts_with(reqPath, thisPath) && (reqPath != thisPath))
Ed Tanous0a13c762021-09-28 13:29:25 -0700474 {
475 if (interfaces.empty())
476 {
Brad Bishopa098a372022-05-05 15:19:04 -0400477 ret.emplace_back(objectPath);
Ed Tanous0a13c762021-09-28 13:29:25 -0700478 }
479 else
480 {
Brad Bishop1f623802022-05-31 18:22:10 -0400481 for (const auto& interfaceMap : objectPath.second)
Ed Tanous0a13c762021-09-28 13:29:25 -0700482 {
Ed Tanous0a13c762021-09-28 13:29:25 -0700483 if (intersect(interfaces.begin(), interfaces.end(),
Brad Bishopa098a372022-05-05 15:19:04 -0400484 interfaceMap.second.begin(),
485 interfaceMap.second.end()))
Ed Tanous0a13c762021-09-28 13:29:25 -0700486 {
Brad Bishopa098a372022-05-05 15:19:04 -0400487 addObjectMapResult(ret, thisPath, interfaceMap);
Ed Tanous0a13c762021-09-28 13:29:25 -0700488 }
489 }
490 }
491 }
492 }
493
494 return ret;
495}
496
497boost::container::flat_map<std::string, boost::container::flat_set<std::string>>
Brad Bishopa098a372022-05-05 15:19:04 -0400498 getObject(const InterfaceMapType& interfaceMap, const std::string& path,
Ed Tanous0a13c762021-09-28 13:29:25 -0700499 std::vector<std::string>& interfaces)
500{
501 boost::container::flat_map<std::string,
502 boost::container::flat_set<std::string>>
503 results;
504
505 // Interfaces need to be sorted for intersect to function
506 std::sort(interfaces.begin(), interfaces.end());
Brad Bishopa098a372022-05-05 15:19:04 -0400507 auto pathRef = interfaceMap.find(path);
508 if (pathRef == interfaceMap.end())
Ed Tanous0a13c762021-09-28 13:29:25 -0700509 {
Konstantin Aladyshevb15df6b2022-01-11 14:50:55 +0300510 throw sdbusplus::xyz::openbmc_project::Common::Error::
511 ResourceNotFound();
Ed Tanous0a13c762021-09-28 13:29:25 -0700512 }
513 if (interfaces.empty())
514 {
Brad Bishopa098a372022-05-05 15:19:04 -0400515 return pathRef->second;
Ed Tanous0a13c762021-09-28 13:29:25 -0700516 }
Brad Bishop1f623802022-05-31 18:22:10 -0400517 for (const auto& interfaceMap : pathRef->second)
Ed Tanous0a13c762021-09-28 13:29:25 -0700518 {
519 if (intersect(interfaces.begin(), interfaces.end(),
Brad Bishopa098a372022-05-05 15:19:04 -0400520 interfaceMap.second.begin(), interfaceMap.second.end()))
Ed Tanous0a13c762021-09-28 13:29:25 -0700521 {
Brad Bishopa098a372022-05-05 15:19:04 -0400522 results.emplace(interfaceMap.first, interfaceMap.second);
Ed Tanous0a13c762021-09-28 13:29:25 -0700523 }
524 }
525
526 if (results.empty())
527 {
Konstantin Aladyshevb15df6b2022-01-11 14:50:55 +0300528 throw sdbusplus::xyz::openbmc_project::Common::Error::
529 ResourceNotFound();
Ed Tanous0a13c762021-09-28 13:29:25 -0700530 }
531
532 return results;
533}
534
Brad Bishopa098a372022-05-05 15:19:04 -0400535std::vector<InterfaceMapType::value_type>
536 getSubTree(const InterfaceMapType& interfaceMap, std::string reqPath,
Ed Tanous0a13c762021-09-28 13:29:25 -0700537 int32_t depth, std::vector<std::string>& interfaces)
538{
539 if (depth <= 0)
540 {
541 depth = std::numeric_limits<int32_t>::max();
542 }
543 // Interfaces need to be sorted for intersect to function
544 std::sort(interfaces.begin(), interfaces.end());
Brad Bishopa098a372022-05-05 15:19:04 -0400545 std::vector<InterfaceMapType::value_type> ret;
Ed Tanous0a13c762021-09-28 13:29:25 -0700546
Brad Bishopa098a372022-05-05 15:19:04 -0400547 if (boost::ends_with(reqPath, "/"))
Ed Tanous0a13c762021-09-28 13:29:25 -0700548 {
Brad Bishopa098a372022-05-05 15:19:04 -0400549 reqPath.pop_back();
Ed Tanous0a13c762021-09-28 13:29:25 -0700550 }
Brad Bishop1f623802022-05-31 18:22:10 -0400551 if (!reqPath.empty() && interfaceMap.find(reqPath) == interfaceMap.end())
Ed Tanous0a13c762021-09-28 13:29:25 -0700552 {
Konstantin Aladyshevb15df6b2022-01-11 14:50:55 +0300553 throw sdbusplus::xyz::openbmc_project::Common::Error::
554 ResourceNotFound();
Ed Tanous0a13c762021-09-28 13:29:25 -0700555 }
556
Brad Bishop1f623802022-05-31 18:22:10 -0400557 for (const auto& objectPath : interfaceMap)
Ed Tanous0a13c762021-09-28 13:29:25 -0700558 {
Brad Bishop1f623802022-05-31 18:22:10 -0400559 const auto& thisPath = objectPath.first;
Ed Tanous0a13c762021-09-28 13:29:25 -0700560
Brad Bishopa098a372022-05-05 15:19:04 -0400561 if (thisPath == reqPath)
Ed Tanous0a13c762021-09-28 13:29:25 -0700562 {
563 continue;
564 }
565
Brad Bishopa098a372022-05-05 15:19:04 -0400566 if (boost::starts_with(thisPath, reqPath))
Ed Tanous0a13c762021-09-28 13:29:25 -0700567 {
568 // count the number of slashes past the search term
Brad Bishopa098a372022-05-05 15:19:04 -0400569 int32_t thisDepth = std::count(thisPath.begin() + reqPath.size(),
570 thisPath.end(), '/');
571 if (thisDepth <= depth)
Ed Tanous0a13c762021-09-28 13:29:25 -0700572 {
Brad Bishop1f623802022-05-31 18:22:10 -0400573 for (const auto& interfaceMap : objectPath.second)
Ed Tanous0a13c762021-09-28 13:29:25 -0700574 {
575 if (intersect(interfaces.begin(), interfaces.end(),
Brad Bishopa098a372022-05-05 15:19:04 -0400576 interfaceMap.second.begin(),
577 interfaceMap.second.end()) ||
Ed Tanous0a13c762021-09-28 13:29:25 -0700578 interfaces.empty())
579 {
Brad Bishopa098a372022-05-05 15:19:04 -0400580 addObjectMapResult(ret, thisPath, interfaceMap);
Ed Tanous0a13c762021-09-28 13:29:25 -0700581 }
582 }
583 }
584 }
585 }
586
587 return ret;
588}
589
Brad Bishopa098a372022-05-05 15:19:04 -0400590std::vector<std::string> getSubTreePaths(const InterfaceMapType& interfaceMap,
591 std::string reqPath, int32_t depth,
592 std::vector<std::string>& interfaces)
Ed Tanous0a13c762021-09-28 13:29:25 -0700593{
594 if (depth <= 0)
595 {
596 depth = std::numeric_limits<int32_t>::max();
597 }
598 // Interfaces need to be sorted for intersect to function
599 std::sort(interfaces.begin(), interfaces.end());
600 std::vector<std::string> ret;
601
Brad Bishopa098a372022-05-05 15:19:04 -0400602 if (boost::ends_with(reqPath, "/"))
Ed Tanous0a13c762021-09-28 13:29:25 -0700603 {
Brad Bishopa098a372022-05-05 15:19:04 -0400604 reqPath.pop_back();
Ed Tanous0a13c762021-09-28 13:29:25 -0700605 }
Brad Bishop1f623802022-05-31 18:22:10 -0400606 if (!reqPath.empty() && interfaceMap.find(reqPath) == interfaceMap.end())
Ed Tanous0a13c762021-09-28 13:29:25 -0700607 {
Konstantin Aladyshevb15df6b2022-01-11 14:50:55 +0300608 throw sdbusplus::xyz::openbmc_project::Common::Error::
609 ResourceNotFound();
Ed Tanous0a13c762021-09-28 13:29:25 -0700610 }
611
Brad Bishop1f623802022-05-31 18:22:10 -0400612 for (const auto& objectPath : interfaceMap)
Ed Tanous0a13c762021-09-28 13:29:25 -0700613 {
Brad Bishop1f623802022-05-31 18:22:10 -0400614 const auto& thisPath = objectPath.first;
Ed Tanous0a13c762021-09-28 13:29:25 -0700615
Brad Bishopa098a372022-05-05 15:19:04 -0400616 if (thisPath == reqPath)
Ed Tanous0a13c762021-09-28 13:29:25 -0700617 {
618 continue;
619 }
620
Brad Bishopa098a372022-05-05 15:19:04 -0400621 if (boost::starts_with(thisPath, reqPath))
Ed Tanous0a13c762021-09-28 13:29:25 -0700622 {
623 // count the number of slashes past the search term
Brad Bishopa098a372022-05-05 15:19:04 -0400624 int thisDepth = std::count(thisPath.begin() + reqPath.size(),
625 thisPath.end(), '/');
626 if (thisDepth <= depth)
Ed Tanous0a13c762021-09-28 13:29:25 -0700627 {
628 bool add = interfaces.empty();
Brad Bishop1f623802022-05-31 18:22:10 -0400629 for (const auto& interfaceMap : objectPath.second)
Ed Tanous0a13c762021-09-28 13:29:25 -0700630 {
631 if (intersect(interfaces.begin(), interfaces.end(),
Brad Bishopa098a372022-05-05 15:19:04 -0400632 interfaceMap.second.begin(),
633 interfaceMap.second.end()))
Ed Tanous0a13c762021-09-28 13:29:25 -0700634 {
635 add = true;
636 break;
637 }
638 }
639 if (add)
640 {
641 // TODO(ed) this is a copy
Brad Bishopa098a372022-05-05 15:19:04 -0400642 ret.emplace_back(thisPath);
Ed Tanous0a13c762021-09-28 13:29:25 -0700643 }
644 }
645 }
646 }
647
648 return ret;
649}
650
Ed Tanous60520632018-06-11 17:46:52 -0700651int main(int argc, char** argv)
652{
Matt Spinlerdd945862018-09-07 12:41:05 -0500653 auto options = ArgumentParser(argc, argv);
Ed Tanous21c60592020-08-17 23:43:46 -0700654 boost::asio::io_context io;
Brad Bishopa098a372022-05-05 15:19:04 -0400655 std::shared_ptr<sdbusplus::asio::connection> systemBus =
Ed Tanous60520632018-06-11 17:46:52 -0700656 std::make_shared<sdbusplus::asio::connection>(io);
657
Brad Bishopf944a452022-05-05 15:06:46 -0400658 splitArgs(options["service-namespaces"], serviceAllowList);
Matt Spinlerdd945862018-09-07 12:41:05 -0500659
Brad Bishopa098a372022-05-05 15:19:04 -0400660 sdbusplus::asio::object_server server(systemBus);
Ed Tanous60520632018-06-11 17:46:52 -0700661
662 // Construct a signal set registered for process termination.
663 boost::asio::signal_set signals(io, SIGINT, SIGTERM);
Brad Bishop2d41d6a2021-08-03 08:14:45 -0400664 signals.async_wait(
665 [&io](const boost::system::error_code&, int) { io.stop(); });
Ed Tanous60520632018-06-11 17:46:52 -0700666
Brad Bishopa098a372022-05-05 15:19:04 -0400667 InterfaceMapType interfaceMap;
668 boost::container::flat_map<std::string, std::string> nameOwners;
Ed Tanous60520632018-06-11 17:46:52 -0700669
670 std::function<void(sdbusplus::message::message & message)>
Brad Bishopa098a372022-05-05 15:19:04 -0400671 nameChangeHandler = [&interfaceMap, &io, &nameOwners, &server,
672 systemBus](sdbusplus::message::message& message) {
673 std::string name; // well-known
674 std::string oldOwner; // unique-name
675 std::string newOwner; // unique-name
Ed Tanous60520632018-06-11 17:46:52 -0700676
Brad Bishopa098a372022-05-05 15:19:04 -0400677 message.read(name, oldOwner, newOwner);
Ed Tanous60520632018-06-11 17:46:52 -0700678
Brad Bishopa098a372022-05-05 15:19:04 -0400679 if (!oldOwner.empty())
Ed Tanous60520632018-06-11 17:46:52 -0700680 {
Brad Bishopa098a372022-05-05 15:19:04 -0400681 processNameChangeDelete(nameOwners, name, oldOwner,
682 interfaceMap, associationMaps, server);
Ed Tanous60520632018-06-11 17:46:52 -0700683 }
684
Brad Bishopa098a372022-05-05 15:19:04 -0400685 if (!newOwner.empty())
Ed Tanous60520632018-06-11 17:46:52 -0700686 {
Brad Bishopd6aa5522022-05-31 19:23:48 -0400687#ifdef MAPPER_ENABLE_DEBUG
Ed Tanous60520632018-06-11 17:46:52 -0700688 auto transaction = std::make_shared<
689 std::chrono::time_point<std::chrono::steady_clock>>(
690 std::chrono::steady_clock::now());
Matt Spinleraecabe82018-09-19 13:25:42 -0500691#endif
Ed Tanous60520632018-06-11 17:46:52 -0700692 // New daemon added
Brad Bishopd5542322022-06-02 19:56:23 -0400693 if (needToIntrospect(name, serviceAllowList))
Ed Tanous60520632018-06-11 17:46:52 -0700694 {
Brad Bishopa098a372022-05-05 15:19:04 -0400695 nameOwners[newOwner] = name;
696 startNewIntrospect(systemBus.get(), io, interfaceMap, name,
697 associationMaps,
Brad Bishopd6aa5522022-05-31 19:23:48 -0400698#ifdef MAPPER_ENABLE_DEBUG
Brad Bishopa098a372022-05-05 15:19:04 -0400699 transaction,
Matt Spinleraecabe82018-09-19 13:25:42 -0500700#endif
Brad Bishopa098a372022-05-05 15:19:04 -0400701 server);
Ed Tanous60520632018-06-11 17:46:52 -0700702 }
703 }
704 };
705
706 sdbusplus::bus::match::match nameOwnerChanged(
Brad Bishopa098a372022-05-05 15:19:04 -0400707 static_cast<sdbusplus::bus::bus&>(*systemBus),
Ed Tanous60520632018-06-11 17:46:52 -0700708 sdbusplus::bus::match::rules::nameOwnerChanged(), nameChangeHandler);
709
710 std::function<void(sdbusplus::message::message & message)>
Brad Bishopa098a372022-05-05 15:19:04 -0400711 interfacesAddedHandler = [&interfaceMap, &nameOwners, &server](
Ed Tanous60520632018-06-11 17:46:52 -0700712 sdbusplus::message::message& message) {
Brad Bishopa098a372022-05-05 15:19:04 -0400713 sdbusplus::message::object_path objPath;
714 InterfacesAdded interfacesAdded;
715 message.read(objPath, interfacesAdded);
716 std::string wellKnown;
717 if (!getWellKnown(nameOwners, message.get_sender(), wellKnown))
Ed Tanous60520632018-06-11 17:46:52 -0700718 {
719 return; // only introspect well-known
720 }
Brad Bishopd5542322022-06-02 19:56:23 -0400721 if (needToIntrospect(wellKnown, serviceAllowList))
Ed Tanous60520632018-06-11 17:46:52 -0700722 {
Brad Bishopa098a372022-05-05 15:19:04 -0400723 processInterfaceAdded(interfaceMap, objPath, interfacesAdded,
724 wellKnown, associationMaps, server);
Ed Tanous60520632018-06-11 17:46:52 -0700725 }
726 };
727
728 sdbusplus::bus::match::match interfacesAdded(
Brad Bishopa098a372022-05-05 15:19:04 -0400729 static_cast<sdbusplus::bus::bus&>(*systemBus),
Ed Tanous60520632018-06-11 17:46:52 -0700730 sdbusplus::bus::match::rules::interfacesAdded(),
731 interfacesAddedHandler);
732
733 std::function<void(sdbusplus::message::message & message)>
Brad Bishopa098a372022-05-05 15:19:04 -0400734 interfacesRemovedHandler = [&interfaceMap, &nameOwners, &server](
Ed Tanous60520632018-06-11 17:46:52 -0700735 sdbusplus::message::message& message) {
Brad Bishopa098a372022-05-05 15:19:04 -0400736 sdbusplus::message::object_path objPath;
737 std::vector<std::string> interfacesRemoved;
738 message.read(objPath, interfacesRemoved);
739 auto connectionMap = interfaceMap.find(objPath.str);
740 if (connectionMap == interfaceMap.end())
Ed Tanous60520632018-06-11 17:46:52 -0700741 {
742 return;
743 }
744
745 std::string sender;
Brad Bishopa098a372022-05-05 15:19:04 -0400746 if (!getWellKnown(nameOwners, message.get_sender(), sender))
Ed Tanous60520632018-06-11 17:46:52 -0700747 {
748 return;
749 }
Brad Bishopa098a372022-05-05 15:19:04 -0400750 for (const std::string& interface : interfacesRemoved)
Ed Tanous60520632018-06-11 17:46:52 -0700751 {
Brad Bishopa098a372022-05-05 15:19:04 -0400752 auto interfaceSet = connectionMap->second.find(sender);
753 if (interfaceSet == connectionMap->second.end())
Ed Tanous60520632018-06-11 17:46:52 -0700754 {
755 continue;
756 }
757
John Wangd0cf9422019-09-17 16:01:34 +0800758 if (interface == assocDefsInterface)
Ed Tanous60520632018-06-11 17:46:52 -0700759 {
Brad Bishopa098a372022-05-05 15:19:04 -0400760 removeAssociation(objPath.str, sender, server,
Matt Spinlere2359fb2019-04-05 14:11:33 -0500761 associationMaps);
Ed Tanous60520632018-06-11 17:46:52 -0700762 }
763
Brad Bishopa098a372022-05-05 15:19:04 -0400764 interfaceSet->second.erase(interface);
Matt Spinler9c3d2852019-04-08 15:57:19 -0500765
Brad Bishopa098a372022-05-05 15:19:04 -0400766 if (interfaceSet->second.empty())
Ed Tanous60520632018-06-11 17:46:52 -0700767 {
Matt Spinler9c3d2852019-04-08 15:57:19 -0500768 // If this was the last interface on this connection,
769 // erase the connection
Brad Bishopa098a372022-05-05 15:19:04 -0400770 connectionMap->second.erase(interfaceSet);
Matt Spinler9c3d2852019-04-08 15:57:19 -0500771
772 // Instead of checking if every single path is the endpoint
773 // of an association that needs to be moved to pending,
774 // only check when the only remaining owner of this path is
775 // ourself, which would be because we still own the
776 // association path.
Brad Bishopa098a372022-05-05 15:19:04 -0400777 if ((connectionMap->second.size() == 1) &&
778 (connectionMap->second.begin()->first ==
Brad Bishopa02cd542021-10-12 19:12:42 -0400779 "xyz.openbmc_project.ObjectMapper"))
Matt Spinler9c3d2852019-04-08 15:57:19 -0500780 {
781 // Remove the 2 association D-Bus paths and move the
782 // association to pending.
Brad Bishopa098a372022-05-05 15:19:04 -0400783 moveAssociationToPending(objPath.str, associationMaps,
Matt Spinler9c3d2852019-04-08 15:57:19 -0500784 server);
785 }
Ed Tanous60520632018-06-11 17:46:52 -0700786 }
787 }
788 // If this was the last connection on this object path,
789 // erase the object path
Brad Bishopa098a372022-05-05 15:19:04 -0400790 if (connectionMap->second.empty())
Ed Tanous60520632018-06-11 17:46:52 -0700791 {
Brad Bishopa098a372022-05-05 15:19:04 -0400792 interfaceMap.erase(connectionMap);
Ed Tanous60520632018-06-11 17:46:52 -0700793 }
Matt Spinlera82779f2019-01-09 12:39:42 -0600794
Brad Bishopa098a372022-05-05 15:19:04 -0400795 removeUnneededParents(objPath.str, sender, interfaceMap);
Ed Tanous60520632018-06-11 17:46:52 -0700796 };
797
798 sdbusplus::bus::match::match interfacesRemoved(
Brad Bishopa098a372022-05-05 15:19:04 -0400799 static_cast<sdbusplus::bus::bus&>(*systemBus),
Ed Tanous60520632018-06-11 17:46:52 -0700800 sdbusplus::bus::match::rules::interfacesRemoved(),
801 interfacesRemovedHandler);
802
803 std::function<void(sdbusplus::message::message & message)>
Brad Bishopa098a372022-05-05 15:19:04 -0400804 associationChangedHandler = [&server, &nameOwners, &interfaceMap](
Matt Spinler8f876a52019-04-15 13:22:50 -0500805 sdbusplus::message::message& message) {
806 std::string objectName;
Patrick Williams2bb2d6b2020-05-13 17:59:02 -0500807 boost::container::flat_map<std::string,
808 std::variant<std::vector<Association>>>
Matt Spinler8f876a52019-04-15 13:22:50 -0500809 values;
810 message.read(objectName, values);
John Wangd0cf9422019-09-17 16:01:34 +0800811 auto prop = values.find(assocDefsProperty);
Matt Spinler8f876a52019-04-15 13:22:50 -0500812 if (prop != values.end())
813 {
814 std::vector<Association> associations =
Patrick Williamsb05bc122020-05-13 12:21:00 -0500815 std::get<std::vector<Association>>(prop->second);
Matt Spinler8f876a52019-04-15 13:22:50 -0500816
Brad Bishopa098a372022-05-05 15:19:04 -0400817 std::string wellKnown;
818 if (!getWellKnown(nameOwners, message.get_sender(), wellKnown))
Matt Spinler8f876a52019-04-15 13:22:50 -0500819 {
820 return;
Ed Tanous60520632018-06-11 17:46:52 -0700821 }
Matt Spinler8f876a52019-04-15 13:22:50 -0500822 associationChanged(server, associations, message.get_path(),
Brad Bishopa098a372022-05-05 15:19:04 -0400823 wellKnown, interfaceMap, associationMaps);
Matt Spinler8f876a52019-04-15 13:22:50 -0500824 }
825 };
826 sdbusplus::bus::match::match assocChangedMatch(
Brad Bishopa098a372022-05-05 15:19:04 -0400827 static_cast<sdbusplus::bus::bus&>(*systemBus),
Ed Tanous60520632018-06-11 17:46:52 -0700828 sdbusplus::bus::match::rules::interface(
829 "org.freedesktop.DBus.Properties") +
830 sdbusplus::bus::match::rules::member("PropertiesChanged") +
Matt Spinler8f876a52019-04-15 13:22:50 -0500831 sdbusplus::bus::match::rules::argN(0, assocDefsInterface),
832 associationChangedHandler);
833
Ed Tanous60520632018-06-11 17:46:52 -0700834 std::shared_ptr<sdbusplus::asio::dbus_interface> iface =
Brad Bishopa02cd542021-10-12 19:12:42 -0400835 server.add_interface("/xyz/openbmc_project/object_mapper",
836 "xyz.openbmc_project.ObjectMapper");
Ed Tanous60520632018-06-11 17:46:52 -0700837
838 iface->register_method(
Brad Bishopa098a372022-05-05 15:19:04 -0400839 "GetAncestors", [&interfaceMap](std::string& reqPath,
840 std::vector<std::string>& interfaces) {
841 return getAncestors(interfaceMap, reqPath, interfaces);
Ed Tanous60520632018-06-11 17:46:52 -0700842 });
843
844 iface->register_method(
Brad Bishopa098a372022-05-05 15:19:04 -0400845 "GetObject", [&interfaceMap](const std::string& path,
846 std::vector<std::string>& interfaces) {
847 return getObject(interfaceMap, path, interfaces);
848 });
849
850 iface->register_method(
851 "GetSubTree", [&interfaceMap](std::string& reqPath, int32_t depth,
Ed Tanous60520632018-06-11 17:46:52 -0700852 std::vector<std::string>& interfaces) {
Brad Bishopa098a372022-05-05 15:19:04 -0400853 return getSubTree(interfaceMap, reqPath, depth, interfaces);
Ed Tanous60520632018-06-11 17:46:52 -0700854 });
855
856 iface->register_method(
857 "GetSubTreePaths",
Brad Bishopa098a372022-05-05 15:19:04 -0400858 [&interfaceMap](std::string& reqPath, int32_t depth,
859 std::vector<std::string>& interfaces) {
860 return getSubTreePaths(interfaceMap, reqPath, depth, interfaces);
Ed Tanous60520632018-06-11 17:46:52 -0700861 });
862
863 iface->initialize();
864
865 io.post([&]() {
Brad Bishopa098a372022-05-05 15:19:04 -0400866 doListNames(io, interfaceMap, systemBus.get(), nameOwners,
Matt Spinler11401e22019-04-08 13:13:25 -0500867 associationMaps, server);
Ed Tanous60520632018-06-11 17:46:52 -0700868 });
869
Brad Bishopa098a372022-05-05 15:19:04 -0400870 systemBus->request_name("xyz.openbmc_project.ObjectMapper");
Vishwanatha Subbanna64354ef2020-08-21 03:35:26 -0500871
Ed Tanous60520632018-06-11 17:46:52 -0700872 io.run();
873}