blob: 428d63e773b784cca361b569ef60d158f09d1b3b [file] [log] [blame]
James Feist3cb5fec2018-01-23 14:41:51 -08001/*
2// Copyright (c) 2018 Intel Corporation
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15*/
Brad Bishope45d8c72022-05-25 15:12:53 -040016/// \file entity_manager.cpp
James Feist3cb5fec2018-01-23 14:41:51 -080017
Brad Bishope45d8c72022-05-25 15:12:53 -040018#include "entity_manager.hpp"
James Feist1df06a42019-04-11 14:23:04 -070019
Brad Bishope45d8c72022-05-25 15:12:53 -040020#include "overlay.hpp"
Benjamin Fairca2eb042022-09-13 06:40:42 +000021#include "topology.hpp"
Brad Bishope45d8c72022-05-25 15:12:53 -040022#include "utils.hpp"
23#include "variant_visitors.hpp"
James Feist481c5d52019-08-13 14:40:40 -070024
James Feist11be6672018-04-06 14:05:32 -070025#include <boost/algorithm/string/case_conv.hpp>
James Feistf5125b02019-06-06 11:27:43 -070026#include <boost/algorithm/string/classification.hpp>
James Feist3cb5fec2018-01-23 14:41:51 -080027#include <boost/algorithm/string/predicate.hpp>
28#include <boost/algorithm/string/replace.hpp>
James Feistf5125b02019-06-06 11:27:43 -070029#include <boost/algorithm/string/split.hpp>
James Feist02d2b932020-02-06 16:28:48 -080030#include <boost/asio/io_context.hpp>
Ed Tanous49a888c2023-03-06 13:44:51 -080031#include <boost/asio/post.hpp>
James Feistb1728ca2020-04-30 15:40:55 -070032#include <boost/asio/steady_timer.hpp>
James Feist3cb5fec2018-01-23 14:41:51 -080033#include <boost/container/flat_map.hpp>
34#include <boost/container/flat_set.hpp>
James Feistf5125b02019-06-06 11:27:43 -070035#include <boost/range/iterator_range.hpp>
James Feist8c505da2020-05-28 10:06:33 -070036#include <nlohmann/json.hpp>
37#include <sdbusplus/asio/connection.hpp>
38#include <sdbusplus/asio/object_server.hpp>
39
Igor Kononenko9fd87e52020-10-06 01:18:17 +030040#include <charconv>
James Feist637b3ef2019-04-15 16:35:30 -070041#include <filesystem>
James Feista465ccc2019-02-08 12:51:01 -080042#include <fstream>
Andrew Jefferye35d0ac2022-03-24 15:53:13 +103043#include <functional>
James Feista465ccc2019-02-08 12:51:01 -080044#include <iostream>
Andrew Jeffery666583b2021-12-01 15:50:12 +103045#include <map>
James Feista465ccc2019-02-08 12:51:01 -080046#include <regex>
James Feista465ccc2019-02-08 12:51:01 -080047#include <variant>
Andrew Jefferya9c58922021-06-01 09:28:59 +093048constexpr const char* hostConfigurationDirectory = SYSCONF_DIR "configurations";
James Feista465ccc2019-02-08 12:51:01 -080049constexpr const char* configurationDirectory = PACKAGE_DIR "configurations";
50constexpr const char* schemaDirectory = PACKAGE_DIR "configurations/schemas";
James Feist1df06a42019-04-11 14:23:04 -070051constexpr const char* tempConfigDir = "/tmp/configuration/";
52constexpr const char* lastConfiguration = "/tmp/configuration/last.json";
53constexpr const char* currentConfiguration = "/var/configuration/system.json";
James Feista465ccc2019-02-08 12:51:01 -080054constexpr const char* globalSchema = "global.json";
James Feistf1b14142019-04-10 15:22:09 -070055
Andrew Jeffery666583b2021-12-01 15:50:12 +103056const boost::container::flat_map<const char*, probe_type_codes, CmpStr>
Ed Tanous07d467b2021-02-23 14:48:37 -080057 probeTypes{{{"FALSE", probe_type_codes::FALSE_T},
58 {"TRUE", probe_type_codes::TRUE_T},
59 {"AND", probe_type_codes::AND},
60 {"OR", probe_type_codes::OR},
61 {"FOUND", probe_type_codes::FOUND},
62 {"MATCH_ONE", probe_type_codes::MATCH_ONE}}};
James Feist3cb5fec2018-01-23 14:41:51 -080063
Adrian Ambrożewiczc789fca2020-05-14 15:50:05 +020064static constexpr std::array<const char*, 6> settableInterfaces = {
65 "FanProfile", "Pid", "Pid.Zone", "Stepwise", "Thresholds", "Polling"};
James Feist68500ff2018-08-08 15:40:42 -070066using JsonVariantType =
James Feist338b8a72019-03-01 10:16:45 -080067 std::variant<std::vector<std::string>, std::vector<double>, std::string,
68 int64_t, uint64_t, double, int32_t, uint32_t, int16_t,
69 uint16_t, uint8_t, bool>;
James Feist3cb5fec2018-01-23 14:41:51 -080070
James Feistd58879a2019-09-11 11:26:07 -070071// store reference to all interfaces so we can destroy them later
72boost::container::flat_map<
James Feist02d2b932020-02-06 16:28:48 -080073 std::string, std::vector<std::weak_ptr<sdbusplus::asio::dbus_interface>>>
James Feistd58879a2019-09-11 11:26:07 -070074 inventory;
75
James Feist3cb5fec2018-01-23 14:41:51 -080076// todo: pass this through nicer
Ed Tanous07d467b2021-02-23 14:48:37 -080077std::shared_ptr<sdbusplus::asio::connection> systemBus;
Andrew Jeffery47af65a2021-12-01 14:16:31 +103078nlohmann::json lastJson;
James Feist3cb5fec2018-01-23 14:41:51 -080079
James Feist02d2b932020-02-06 16:28:48 -080080boost::asio::io_context io;
81
Ed Tanous07d467b2021-02-23 14:48:37 -080082const std::regex illegalDbusPathRegex("[^A-Za-z0-9_.]");
83const std::regex illegalDbusMemberRegex("[^A-Za-z0-9_]");
James Feist1b2e2242018-01-30 13:45:19 -080084
Andrew Jeffery666583b2021-12-01 15:50:12 +103085FoundProbeTypeT findProbeType(const std::string& probe)
86{
87 boost::container::flat_map<const char*, probe_type_codes,
88 CmpStr>::const_iterator probeType;
89 for (probeType = probeTypes.begin(); probeType != probeTypes.end();
90 ++probeType)
91 {
92 if (probe.find(probeType->first) != std::string::npos)
93 {
94 return probeType;
95 }
96 }
97
98 return std::nullopt;
99}
100
James Feistd58879a2019-09-11 11:26:07 -0700101static std::shared_ptr<sdbusplus::asio::dbus_interface>
102 createInterface(sdbusplus::asio::object_server& objServer,
103 const std::string& path, const std::string& interface,
James Feist02d2b932020-02-06 16:28:48 -0800104 const std::string& parent, bool checkNull = false)
James Feistd58879a2019-09-11 11:26:07 -0700105{
James Feist02d2b932020-02-06 16:28:48 -0800106 // on first add we have no reason to check for null before add, as there
107 // won't be any. For dynamically added interfaces, we check for null so that
108 // a constant delete/add will not create a memory leak
109
110 auto ptr = objServer.add_interface(path, interface);
111 auto& dataVector = inventory[parent];
112 if (checkNull)
113 {
114 auto it = std::find_if(dataVector.begin(), dataVector.end(),
115 [](const auto& p) { return p.expired(); });
116 if (it != dataVector.end())
117 {
118 *it = ptr;
119 return ptr;
120 }
121 }
122 dataVector.emplace_back(ptr);
123 return ptr;
James Feistd58879a2019-09-11 11:26:07 -0700124}
125
James Feist8f2710a2018-05-09 17:18:55 -0700126// writes output files to persist data
James Feista465ccc2019-02-08 12:51:01 -0800127bool writeJsonFiles(const nlohmann::json& systemConfiguration)
James Feist1b2e2242018-01-30 13:45:19 -0800128{
James Feist1df06a42019-04-11 14:23:04 -0700129 std::filesystem::create_directory(configurationOutDir);
130 std::ofstream output(currentConfiguration);
James Feistbb43d022018-06-12 15:44:33 -0700131 if (!output.good())
132 {
133 return false;
134 }
James Feist1b2e2242018-01-30 13:45:19 -0800135 output << systemConfiguration.dump(4);
136 output.close();
James Feistbb43d022018-06-12 15:44:33 -0700137 return true;
James Feist8f2710a2018-05-09 17:18:55 -0700138}
James Feist1b2e2242018-01-30 13:45:19 -0800139
James Feist97a63f12018-05-17 13:50:57 -0700140template <typename JsonType>
James Feista465ccc2019-02-08 12:51:01 -0800141bool setJsonFromPointer(const std::string& ptrStr, const JsonType& value,
142 nlohmann::json& systemConfiguration)
James Feist97a63f12018-05-17 13:50:57 -0700143{
144 try
145 {
146 nlohmann::json::json_pointer ptr(ptrStr);
James Feista465ccc2019-02-08 12:51:01 -0800147 nlohmann::json& ref = systemConfiguration[ptr];
James Feist97a63f12018-05-17 13:50:57 -0700148 ref = value;
149 return true;
150 }
James Feist98132792019-07-09 13:29:09 -0700151 catch (const std::out_of_range&)
James Feist97a63f12018-05-17 13:50:57 -0700152 {
153 return false;
154 }
155}
James Feistbb43d022018-06-12 15:44:33 -0700156
James Feistebcc26b2019-03-22 12:30:43 -0700157// template function to add array as dbus property
158template <typename PropertyType>
159void addArrayToDbus(const std::string& name, const nlohmann::json& array,
160 sdbusplus::asio::dbus_interface* iface,
161 sdbusplus::asio::PropertyPermission permission,
162 nlohmann::json& systemConfiguration,
163 const std::string& jsonPointerString)
164{
165 std::vector<PropertyType> values;
166 for (const auto& property : array)
167 {
168 auto ptr = property.get_ptr<const PropertyType*>();
169 if (ptr != nullptr)
170 {
171 values.emplace_back(*ptr);
172 }
173 }
174
175 if (permission == sdbusplus::asio::PropertyPermission::readOnly)
176 {
177 iface->register_property(name, values);
178 }
179 else
180 {
181 iface->register_property(
182 name, values,
183 [&systemConfiguration,
184 jsonPointerString{std::string(jsonPointerString)}](
185 const std::vector<PropertyType>& newVal,
186 std::vector<PropertyType>& val) {
Patrick Williamsdf190612023-05-10 07:51:34 -0500187 val = newVal;
188 if (!setJsonFromPointer(jsonPointerString, val,
189 systemConfiguration))
190 {
191 std::cerr << "error setting json field\n";
192 return -1;
193 }
194 if (!writeJsonFiles(systemConfiguration))
195 {
196 std::cerr << "error setting json file\n";
197 return -1;
198 }
199 return 1;
James Feistebcc26b2019-03-22 12:30:43 -0700200 });
201 }
202}
203
James Feistbb43d022018-06-12 15:44:33 -0700204template <typename PropertyType>
Ed Tanous3013fb42022-07-09 08:27:06 -0700205void addProperty(const std::string& name, const PropertyType& value,
James Feista465ccc2019-02-08 12:51:01 -0800206 sdbusplus::asio::dbus_interface* iface,
207 nlohmann::json& systemConfiguration,
208 const std::string& jsonPointerString,
James Feistbb43d022018-06-12 15:44:33 -0700209 sdbusplus::asio::PropertyPermission permission)
210{
211 if (permission == sdbusplus::asio::PropertyPermission::readOnly)
212 {
Ed Tanous3013fb42022-07-09 08:27:06 -0700213 iface->register_property(name, value);
James Feistbb43d022018-06-12 15:44:33 -0700214 return;
215 }
James Feist68500ff2018-08-08 15:40:42 -0700216 iface->register_property(
Ed Tanous3013fb42022-07-09 08:27:06 -0700217 name, value,
James Feist68500ff2018-08-08 15:40:42 -0700218 [&systemConfiguration,
219 jsonPointerString{std::string(jsonPointerString)}](
James Feista465ccc2019-02-08 12:51:01 -0800220 const PropertyType& newVal, PropertyType& val) {
Patrick Williamsdf190612023-05-10 07:51:34 -0500221 val = newVal;
222 if (!setJsonFromPointer(jsonPointerString, val, systemConfiguration))
223 {
224 std::cerr << "error setting json field\n";
225 return -1;
226 }
227 if (!writeJsonFiles(systemConfiguration))
228 {
229 std::cerr << "error setting json file\n";
230 return -1;
231 }
232 return 1;
James Feistc6248a52018-08-14 10:09:45 -0700233 });
234}
235
236void createDeleteObjectMethod(
James Feista465ccc2019-02-08 12:51:01 -0800237 const std::string& jsonPointerPath,
238 const std::shared_ptr<sdbusplus::asio::dbus_interface>& iface,
239 sdbusplus::asio::object_server& objServer,
240 nlohmann::json& systemConfiguration)
James Feistc6248a52018-08-14 10:09:45 -0700241{
242 std::weak_ptr<sdbusplus::asio::dbus_interface> interface = iface;
Patrick Williamsdf190612023-05-10 07:51:34 -0500243 iface->register_method("Delete",
244 [&objServer, &systemConfiguration, interface,
245 jsonPointerPath{std::string(jsonPointerPath)}]() {
246 std::shared_ptr<sdbusplus::asio::dbus_interface> dbusInterface =
247 interface.lock();
248 if (!dbusInterface)
249 {
250 // this technically can't happen as the pointer is pointing to
251 // us
252 throw DBusInternalError();
253 }
254 nlohmann::json::json_pointer ptr(jsonPointerPath);
255 systemConfiguration[ptr] = nullptr;
James Feistc6248a52018-08-14 10:09:45 -0700256
Patrick Williamsdf190612023-05-10 07:51:34 -0500257 // todo(james): dig through sdbusplus to find out why we can't
258 // delete it in a method call
259 boost::asio::post(io, [&objServer, dbusInterface]() mutable {
260 objServer.remove_interface(dbusInterface);
James Feist68500ff2018-08-08 15:40:42 -0700261 });
Patrick Williamsdf190612023-05-10 07:51:34 -0500262
263 if (!writeJsonFiles(systemConfiguration))
264 {
265 std::cerr << "error setting json file\n";
266 throw DBusInternalError();
267 }
268 });
James Feistbb43d022018-06-12 15:44:33 -0700269}
270
James Feist1b2e2242018-01-30 13:45:19 -0800271// adds simple json types to interface's properties
James Feistbb43d022018-06-12 15:44:33 -0700272void populateInterfaceFromJson(
James Feista465ccc2019-02-08 12:51:01 -0800273 nlohmann::json& systemConfiguration, const std::string& jsonPointerPath,
274 std::shared_ptr<sdbusplus::asio::dbus_interface>& iface,
275 nlohmann::json& dict, sdbusplus::asio::object_server& objServer,
James Feistbb43d022018-06-12 15:44:33 -0700276 sdbusplus::asio::PropertyPermission permission =
277 sdbusplus::asio::PropertyPermission::readOnly)
James Feist1b2e2242018-01-30 13:45:19 -0800278{
Patrick Williams2594d362022-09-28 06:46:24 -0500279 for (const auto& [key, value] : dict.items())
James Feist1b2e2242018-01-30 13:45:19 -0800280 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030281 auto type = value.type();
James Feist8f2710a2018-05-09 17:18:55 -0700282 bool array = false;
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030283 if (value.type() == nlohmann::json::value_t::array)
James Feist8f2710a2018-05-09 17:18:55 -0700284 {
285 array = true;
Ed Tanous3013fb42022-07-09 08:27:06 -0700286 if (value.empty())
James Feist8f2710a2018-05-09 17:18:55 -0700287 {
288 continue;
289 }
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030290 type = value[0].type();
James Feist8f2710a2018-05-09 17:18:55 -0700291 bool isLegal = true;
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030292 for (const auto& arrayItem : value)
James Feist8f2710a2018-05-09 17:18:55 -0700293 {
294 if (arrayItem.type() != type)
295 {
296 isLegal = false;
297 break;
298 }
299 }
300 if (!isLegal)
301 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030302 std::cerr << "dbus format error" << value << "\n";
James Feist8f2710a2018-05-09 17:18:55 -0700303 continue;
304 }
James Feista218ddb2019-04-11 14:01:31 -0700305 }
306 if (type == nlohmann::json::value_t::object)
307 {
308 continue; // handled elsewhere
James Feist8f2710a2018-05-09 17:18:55 -0700309 }
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030310
311 std::string path = jsonPointerPath;
312 path.append("/").append(key);
James Feistbb43d022018-06-12 15:44:33 -0700313 if (permission == sdbusplus::asio::PropertyPermission::readWrite)
314 {
315 // all setable numbers are doubles as it is difficult to always
316 // create a configuration file with all whole numbers as decimals
317 // i.e. 1.0
James Feistebcc26b2019-03-22 12:30:43 -0700318 if (array)
319 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030320 if (value[0].is_number())
James Feistebcc26b2019-03-22 12:30:43 -0700321 {
322 type = nlohmann::json::value_t::number_float;
323 }
324 }
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030325 else if (value.is_number())
James Feistbb43d022018-06-12 15:44:33 -0700326 {
327 type = nlohmann::json::value_t::number_float;
328 }
329 }
330
James Feist8f2710a2018-05-09 17:18:55 -0700331 switch (type)
James Feist1b2e2242018-01-30 13:45:19 -0800332 {
James Feist9eb0b582018-04-27 12:15:46 -0700333 case (nlohmann::json::value_t::boolean):
334 {
James Feist8f2710a2018-05-09 17:18:55 -0700335 if (array)
336 {
337 // todo: array of bool isn't detected correctly by
338 // sdbusplus, change it to numbers
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030339 addArrayToDbus<uint64_t>(key, value, iface.get(),
340 permission, systemConfiguration,
341 path);
James Feist8f2710a2018-05-09 17:18:55 -0700342 }
James Feistbb43d022018-06-12 15:44:33 -0700343
James Feist97a63f12018-05-17 13:50:57 -0700344 else
345 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030346 addProperty(key, value.get<bool>(), iface.get(),
347 systemConfiguration, path, permission);
James Feist97a63f12018-05-17 13:50:57 -0700348 }
James Feist9eb0b582018-04-27 12:15:46 -0700349 break;
350 }
351 case (nlohmann::json::value_t::number_integer):
352 {
James Feist8f2710a2018-05-09 17:18:55 -0700353 if (array)
354 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030355 addArrayToDbus<int64_t>(key, value, iface.get(), permission,
Andrew Jeffery029ee282022-03-25 13:11:36 +1030356 systemConfiguration, path);
James Feist97a63f12018-05-17 13:50:57 -0700357 }
358 else
359 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030360 addProperty(key, value.get<int64_t>(), iface.get(),
361 systemConfiguration, path,
James Feistbb43d022018-06-12 15:44:33 -0700362 sdbusplus::asio::PropertyPermission::readOnly);
James Feist97a63f12018-05-17 13:50:57 -0700363 }
James Feist9eb0b582018-04-27 12:15:46 -0700364 break;
365 }
366 case (nlohmann::json::value_t::number_unsigned):
367 {
James Feist8f2710a2018-05-09 17:18:55 -0700368 if (array)
369 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030370 addArrayToDbus<uint64_t>(key, value, iface.get(),
371 permission, systemConfiguration,
372 path);
James Feist97a63f12018-05-17 13:50:57 -0700373 }
374 else
375 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030376 addProperty(key, value.get<uint64_t>(), iface.get(),
Andrew Jeffery029ee282022-03-25 13:11:36 +1030377 systemConfiguration, path,
James Feistbb43d022018-06-12 15:44:33 -0700378 sdbusplus::asio::PropertyPermission::readOnly);
James Feist97a63f12018-05-17 13:50:57 -0700379 }
James Feist9eb0b582018-04-27 12:15:46 -0700380 break;
381 }
382 case (nlohmann::json::value_t::number_float):
383 {
James Feist8f2710a2018-05-09 17:18:55 -0700384 if (array)
385 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030386 addArrayToDbus<double>(key, value, iface.get(), permission,
Andrew Jeffery029ee282022-03-25 13:11:36 +1030387 systemConfiguration, path);
James Feist8f2710a2018-05-09 17:18:55 -0700388 }
James Feistbb43d022018-06-12 15:44:33 -0700389
James Feist97a63f12018-05-17 13:50:57 -0700390 else
391 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030392 addProperty(key, value.get<double>(), iface.get(),
393 systemConfiguration, path, permission);
James Feist97a63f12018-05-17 13:50:57 -0700394 }
James Feist9eb0b582018-04-27 12:15:46 -0700395 break;
396 }
397 case (nlohmann::json::value_t::string):
398 {
James Feist8f2710a2018-05-09 17:18:55 -0700399 if (array)
400 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030401 addArrayToDbus<std::string>(key, value, iface.get(),
402 permission, systemConfiguration,
403 path);
James Feist97a63f12018-05-17 13:50:57 -0700404 }
405 else
406 {
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030407 addProperty(key, value.get<std::string>(), iface.get(),
408 systemConfiguration, path, permission);
James Feist97a63f12018-05-17 13:50:57 -0700409 }
James Feist9eb0b582018-04-27 12:15:46 -0700410 break;
411 }
James Feist0eb40352019-04-09 14:44:04 -0700412 default:
413 {
James Feista218ddb2019-04-11 14:01:31 -0700414 std::cerr << "Unexpected json type in system configuration "
Andrew Jeffery65ea4502022-03-25 13:15:34 +1030415 << key << ": " << value.type_name() << "\n";
James Feist0eb40352019-04-09 14:44:04 -0700416 break;
417 }
James Feist1b2e2242018-01-30 13:45:19 -0800418 }
419 }
James Feistc6248a52018-08-14 10:09:45 -0700420 if (permission == sdbusplus::asio::PropertyPermission::readWrite)
421 {
422 createDeleteObjectMethod(jsonPointerPath, iface, objServer,
423 systemConfiguration);
424 }
James Feist8f2710a2018-05-09 17:18:55 -0700425 iface->initialize();
James Feist1b2e2242018-01-30 13:45:19 -0800426}
427
James Feista465ccc2019-02-08 12:51:01 -0800428sdbusplus::asio::PropertyPermission getPermission(const std::string& interface)
James Feistc6248a52018-08-14 10:09:45 -0700429{
430 return std::find(settableInterfaces.begin(), settableInterfaces.end(),
431 interface) != settableInterfaces.end()
432 ? sdbusplus::asio::PropertyPermission::readWrite
433 : sdbusplus::asio::PropertyPermission::readOnly;
434}
435
James Feista465ccc2019-02-08 12:51:01 -0800436void createAddObjectMethod(const std::string& jsonPointerPath,
437 const std::string& path,
438 nlohmann::json& systemConfiguration,
James Feistd58879a2019-09-11 11:26:07 -0700439 sdbusplus::asio::object_server& objServer,
440 const std::string& board)
James Feist68500ff2018-08-08 15:40:42 -0700441{
James Feistd58879a2019-09-11 11:26:07 -0700442 std::shared_ptr<sdbusplus::asio::dbus_interface> iface = createInterface(
443 objServer, path, "xyz.openbmc_project.AddObject", board);
James Feist68500ff2018-08-08 15:40:42 -0700444
445 iface->register_method(
446 "AddObject",
447 [&systemConfiguration, &objServer,
James Feistd58879a2019-09-11 11:26:07 -0700448 jsonPointerPath{std::string(jsonPointerPath)}, path{std::string(path)},
449 board](const boost::container::flat_map<std::string, JsonVariantType>&
450 data) {
Patrick Williamsdf190612023-05-10 07:51:34 -0500451 nlohmann::json::json_pointer ptr(jsonPointerPath);
452 nlohmann::json& base = systemConfiguration[ptr];
453 auto findExposes = base.find("Exposes");
James Feist68500ff2018-08-08 15:40:42 -0700454
Patrick Williamsdf190612023-05-10 07:51:34 -0500455 if (findExposes == base.end())
456 {
457 throw std::invalid_argument("Entity must have children.");
458 }
459
460 // this will throw invalid-argument to sdbusplus if invalid json
461 nlohmann::json newData{};
462 for (const auto& item : data)
463 {
464 nlohmann::json& newJson = newData[item.first];
465 std::visit(
466 [&newJson](auto&& val) {
467 newJson = std::forward<decltype(val)>(val);
468 },
469 item.second);
470 }
471
472 auto findName = newData.find("Name");
473 auto findType = newData.find("Type");
474 if (findName == newData.end() || findType == newData.end())
475 {
476 throw std::invalid_argument("AddObject missing Name or Type");
477 }
478 const std::string* type = findType->get_ptr<const std::string*>();
479 const std::string* name = findName->get_ptr<const std::string*>();
480 if (type == nullptr || name == nullptr)
481 {
482 throw std::invalid_argument("Type and Name must be a string.");
483 }
484
485 bool foundNull = false;
486 size_t lastIndex = 0;
487 // we add in the "exposes"
488 for (const auto& expose : *findExposes)
489 {
490 if (expose.is_null())
James Feist68500ff2018-08-08 15:40:42 -0700491 {
Patrick Williamsdf190612023-05-10 07:51:34 -0500492 foundNull = true;
493 continue;
James Feist68500ff2018-08-08 15:40:42 -0700494 }
495
Patrick Williamsdf190612023-05-10 07:51:34 -0500496 if (expose["Name"] == *name && expose["Type"] == *type)
James Feist68500ff2018-08-08 15:40:42 -0700497 {
498 throw std::invalid_argument(
Patrick Williamsdf190612023-05-10 07:51:34 -0500499 "Field already in JSON, not adding");
James Feist68500ff2018-08-08 15:40:42 -0700500 }
Patrick Williamsdf190612023-05-10 07:51:34 -0500501
James Feist02d2b932020-02-06 16:28:48 -0800502 if (foundNull)
503 {
Patrick Williamsdf190612023-05-10 07:51:34 -0500504 continue;
James Feist02d2b932020-02-06 16:28:48 -0800505 }
James Feist68500ff2018-08-08 15:40:42 -0700506
Patrick Williamsdf190612023-05-10 07:51:34 -0500507 lastIndex++;
508 }
James Feistd58879a2019-09-11 11:26:07 -0700509
Patrick Williamsdf190612023-05-10 07:51:34 -0500510 std::ifstream schemaFile(std::string(schemaDirectory) + "/" +
511 boost::to_lower_copy(*type) + ".json");
512 // todo(james) we might want to also make a list of 'can add'
513 // interfaces but for now I think the assumption if there is a
514 // schema avaliable that it is allowed to update is fine
515 if (!schemaFile.good())
516 {
517 throw std::invalid_argument(
518 "No schema avaliable, cannot validate.");
519 }
520 nlohmann::json schema = nlohmann::json::parse(schemaFile, nullptr,
521 false);
522 if (schema.is_discarded())
523 {
524 std::cerr << "Schema not legal" << *type << ".json\n";
525 throw DBusInternalError();
526 }
527 if (!validateJson(schema, newData))
528 {
529 throw std::invalid_argument("Data does not match schema");
530 }
531 if (foundNull)
532 {
533 findExposes->at(lastIndex) = newData;
534 }
535 else
536 {
537 findExposes->push_back(newData);
538 }
539 if (!writeJsonFiles(systemConfiguration))
540 {
541 std::cerr << "Error writing json files\n";
542 throw DBusInternalError();
543 }
544 std::string dbusName = *name;
545
546 std::regex_replace(dbusName.begin(), dbusName.begin(), dbusName.end(),
547 illegalDbusMemberRegex, "_");
548
549 std::shared_ptr<sdbusplus::asio::dbus_interface> interface =
550 createInterface(objServer, path + "/" + dbusName,
551 "xyz.openbmc_project.Configuration." + *type, board,
552 true);
553 // permission is read-write, as since we just created it, must be
554 // runtime modifiable
555 populateInterfaceFromJson(
556 systemConfiguration,
557 jsonPointerPath + "/Exposes/" + std::to_string(lastIndex),
558 interface, newData, objServer,
559 sdbusplus::asio::PropertyPermission::readWrite);
James Feist68500ff2018-08-08 15:40:42 -0700560 });
561 iface->initialize();
562}
563
James Feista465ccc2019-02-08 12:51:01 -0800564void postToDbus(const nlohmann::json& newConfiguration,
565 nlohmann::json& systemConfiguration,
566 sdbusplus::asio::object_server& objServer)
James Feist75fdeeb2018-02-20 14:26:16 -0800567
James Feist1b2e2242018-01-30 13:45:19 -0800568{
Benjamin Fairca2eb042022-09-13 06:40:42 +0000569 Topology topology;
570
James Feist97a63f12018-05-17 13:50:57 -0700571 // iterate through boards
Patrick Williams2594d362022-09-28 06:46:24 -0500572 for (const auto& [boardId, boardConfig] : newConfiguration.items())
James Feist1b2e2242018-01-30 13:45:19 -0800573 {
Andrew Jeffery13132df2022-03-25 13:29:41 +1030574 std::string boardKey = boardConfig["Name"];
575 std::string boardKeyOrig = boardConfig["Name"];
576 std::string jsonPointerPath = "/" + boardId;
James Feist97a63f12018-05-17 13:50:57 -0700577 // loop through newConfiguration, but use values from system
578 // configuration to be able to modify via dbus later
Andrew Jeffery13132df2022-03-25 13:29:41 +1030579 auto boardValues = systemConfiguration[boardId];
James Feistd63d18a2018-07-19 15:23:45 -0700580 auto findBoardType = boardValues.find("Type");
James Feist1b2e2242018-01-30 13:45:19 -0800581 std::string boardType;
582 if (findBoardType != boardValues.end() &&
583 findBoardType->type() == nlohmann::json::value_t::string)
584 {
585 boardType = findBoardType->get<std::string>();
586 std::regex_replace(boardType.begin(), boardType.begin(),
Ed Tanous07d467b2021-02-23 14:48:37 -0800587 boardType.end(), illegalDbusMemberRegex, "_");
James Feist1b2e2242018-01-30 13:45:19 -0800588 }
589 else
590 {
591 std::cerr << "Unable to find type for " << boardKey
592 << " reverting to Chassis.\n";
593 boardType = "Chassis";
594 }
James Feist11be6672018-04-06 14:05:32 -0700595 std::string boardtypeLower = boost::algorithm::to_lower_copy(boardType);
James Feist1b2e2242018-01-30 13:45:19 -0800596
597 std::regex_replace(boardKey.begin(), boardKey.begin(), boardKey.end(),
Ed Tanous07d467b2021-02-23 14:48:37 -0800598 illegalDbusMemberRegex, "_");
599 std::string boardName = "/xyz/openbmc_project/inventory/system/";
600 boardName += boardtypeLower;
601 boardName += "/";
602 boardName += boardKey;
James Feist1b2e2242018-01-30 13:45:19 -0800603
James Feistd58879a2019-09-11 11:26:07 -0700604 std::shared_ptr<sdbusplus::asio::dbus_interface> inventoryIface =
605 createInterface(objServer, boardName,
606 "xyz.openbmc_project.Inventory.Item", boardKey);
James Feist68500ff2018-08-08 15:40:42 -0700607
James Feistd58879a2019-09-11 11:26:07 -0700608 std::shared_ptr<sdbusplus::asio::dbus_interface> boardIface =
609 createInterface(objServer, boardName,
610 "xyz.openbmc_project.Inventory.Item." + boardType,
611 boardKeyOrig);
James Feist11be6672018-04-06 14:05:32 -0700612
James Feist68500ff2018-08-08 15:40:42 -0700613 createAddObjectMethod(jsonPointerPath, boardName, systemConfiguration,
James Feistd58879a2019-09-11 11:26:07 -0700614 objServer, boardKeyOrig);
James Feist68500ff2018-08-08 15:40:42 -0700615
James Feist97a63f12018-05-17 13:50:57 -0700616 populateInterfaceFromJson(systemConfiguration, jsonPointerPath,
James Feistc6248a52018-08-14 10:09:45 -0700617 boardIface, boardValues, objServer);
James Feist97a63f12018-05-17 13:50:57 -0700618 jsonPointerPath += "/";
619 // iterate through board properties
Patrick Williams2594d362022-09-28 06:46:24 -0500620 for (const auto& [propName, propValue] : boardValues.items())
James Feist11be6672018-04-06 14:05:32 -0700621 {
Andrew Jefferya96950d2022-03-25 13:32:46 +1030622 if (propValue.type() == nlohmann::json::value_t::object)
James Feist11be6672018-04-06 14:05:32 -0700623 {
James Feistd58879a2019-09-11 11:26:07 -0700624 std::shared_ptr<sdbusplus::asio::dbus_interface> iface =
Andrew Jefferya96950d2022-03-25 13:32:46 +1030625 createInterface(objServer, boardName, propName,
James Feistd58879a2019-09-11 11:26:07 -0700626 boardKeyOrig);
627
James Feistc6248a52018-08-14 10:09:45 -0700628 populateInterfaceFromJson(systemConfiguration,
Andrew Jefferya96950d2022-03-25 13:32:46 +1030629 jsonPointerPath + propName, iface,
630 propValue, objServer);
James Feist11be6672018-04-06 14:05:32 -0700631 }
632 }
James Feist97a63f12018-05-17 13:50:57 -0700633
James Feist1e3e6982018-08-03 16:09:28 -0700634 auto exposes = boardValues.find("Exposes");
James Feist1b2e2242018-01-30 13:45:19 -0800635 if (exposes == boardValues.end())
636 {
637 continue;
638 }
James Feist97a63f12018-05-17 13:50:57 -0700639 // iterate through exposes
James Feist1e3e6982018-08-03 16:09:28 -0700640 jsonPointerPath += "Exposes/";
James Feist97a63f12018-05-17 13:50:57 -0700641
642 // store the board level pointer so we can modify it on the way down
643 std::string jsonPointerPathBoard = jsonPointerPath;
644 size_t exposesIndex = -1;
James Feista465ccc2019-02-08 12:51:01 -0800645 for (auto& item : *exposes)
James Feist1b2e2242018-01-30 13:45:19 -0800646 {
James Feist97a63f12018-05-17 13:50:57 -0700647 exposesIndex++;
648 jsonPointerPath = jsonPointerPathBoard;
649 jsonPointerPath += std::to_string(exposesIndex);
650
James Feistd63d18a2018-07-19 15:23:45 -0700651 auto findName = item.find("Name");
James Feist1b2e2242018-01-30 13:45:19 -0800652 if (findName == item.end())
653 {
654 std::cerr << "cannot find name in field " << item << "\n";
655 continue;
656 }
James Feist1e3e6982018-08-03 16:09:28 -0700657 auto findStatus = item.find("Status");
James Feist1b2e2242018-01-30 13:45:19 -0800658 // if status is not found it is assumed to be status = 'okay'
659 if (findStatus != item.end())
660 {
661 if (*findStatus == "disabled")
662 {
663 continue;
664 }
665 }
James Feistd63d18a2018-07-19 15:23:45 -0700666 auto findType = item.find("Type");
James Feist1b2e2242018-01-30 13:45:19 -0800667 std::string itemType;
668 if (findType != item.end())
669 {
670 itemType = findType->get<std::string>();
671 std::regex_replace(itemType.begin(), itemType.begin(),
Ed Tanous07d467b2021-02-23 14:48:37 -0800672 itemType.end(), illegalDbusPathRegex, "_");
James Feist1b2e2242018-01-30 13:45:19 -0800673 }
674 else
675 {
676 itemType = "unknown";
677 }
678 std::string itemName = findName->get<std::string>();
679 std::regex_replace(itemName.begin(), itemName.begin(),
Ed Tanous07d467b2021-02-23 14:48:37 -0800680 itemName.end(), illegalDbusMemberRegex, "_");
681 std::string ifacePath = boardName;
682 ifacePath += "/";
683 ifacePath += itemName;
James Feistc6248a52018-08-14 10:09:45 -0700684
James Feistd58879a2019-09-11 11:26:07 -0700685 std::shared_ptr<sdbusplus::asio::dbus_interface> itemIface =
Ed Tanous07d467b2021-02-23 14:48:37 -0800686 createInterface(objServer, ifacePath,
James Feistd58879a2019-09-11 11:26:07 -0700687 "xyz.openbmc_project.Configuration." + itemType,
688 boardKeyOrig);
James Feist1b2e2242018-01-30 13:45:19 -0800689
Sui Chen74ebe592022-09-13 10:22:03 -0700690 if (itemType == "BMC")
691 {
692 std::shared_ptr<sdbusplus::asio::dbus_interface> bmcIface =
693 createInterface(objServer, ifacePath,
694 "xyz.openbmc_project.Inventory.Item.Bmc",
695 boardKeyOrig);
696 populateInterfaceFromJson(systemConfiguration, jsonPointerPath,
697 bmcIface, item, objServer,
698 getPermission(itemType));
699 }
700
James Feist97a63f12018-05-17 13:50:57 -0700701 populateInterfaceFromJson(systemConfiguration, jsonPointerPath,
James Feistc6248a52018-08-14 10:09:45 -0700702 itemIface, item, objServer,
703 getPermission(itemType));
James Feist1b2e2242018-01-30 13:45:19 -0800704
Patrick Williams2594d362022-09-28 06:46:24 -0500705 for (const auto& [name, config] : item.items())
James Feist1b2e2242018-01-30 13:45:19 -0800706 {
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030707 jsonPointerPath = jsonPointerPathBoard;
708 jsonPointerPath.append(std::to_string(exposesIndex))
709 .append("/")
710 .append(name);
711 if (config.type() == nlohmann::json::value_t::object)
James Feist1b2e2242018-01-30 13:45:19 -0800712 {
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030713 std::string ifaceName =
714 "xyz.openbmc_project.Configuration.";
715 ifaceName.append(itemType).append(".").append(name);
James Feist97a63f12018-05-17 13:50:57 -0700716
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030717 std::shared_ptr<sdbusplus::asio::dbus_interface>
718 objectIface = createInterface(objServer, ifacePath,
719 ifaceName, boardKeyOrig);
720
721 populateInterfaceFromJson(
722 systemConfiguration, jsonPointerPath, objectIface,
723 config, objServer, getPermission(name));
James Feist1b2e2242018-01-30 13:45:19 -0800724 }
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030725 else if (config.type() == nlohmann::json::value_t::array)
James Feist1b2e2242018-01-30 13:45:19 -0800726 {
727 size_t index = 0;
Ed Tanous3013fb42022-07-09 08:27:06 -0700728 if (config.empty())
James Feist1b2e2242018-01-30 13:45:19 -0800729 {
James Feist8f2710a2018-05-09 17:18:55 -0700730 continue;
731 }
732 bool isLegal = true;
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030733 auto type = config[0].type();
James Feist8f2710a2018-05-09 17:18:55 -0700734 if (type != nlohmann::json::value_t::object)
735 {
736 continue;
737 }
738
739 // verify legal json
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030740 for (const auto& arrayItem : config)
James Feist8f2710a2018-05-09 17:18:55 -0700741 {
742 if (arrayItem.type() != type)
James Feist1b2e2242018-01-30 13:45:19 -0800743 {
James Feist8f2710a2018-05-09 17:18:55 -0700744 isLegal = false;
James Feist1b2e2242018-01-30 13:45:19 -0800745 break;
746 }
James Feist8f2710a2018-05-09 17:18:55 -0700747 }
748 if (!isLegal)
749 {
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030750 std::cerr << "dbus format error" << config << "\n";
James Feist8f2710a2018-05-09 17:18:55 -0700751 break;
752 }
753
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030754 for (auto& arrayItem : config)
James Feist8f2710a2018-05-09 17:18:55 -0700755 {
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030756 std::string ifaceName =
757 "xyz.openbmc_project.Configuration.";
758 ifaceName.append(itemType).append(".").append(name);
759 ifaceName.append(std::to_string(index));
James Feist97a63f12018-05-17 13:50:57 -0700760
James Feistd58879a2019-09-11 11:26:07 -0700761 std::shared_ptr<sdbusplus::asio::dbus_interface>
762 objectIface = createInterface(
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030763 objServer, ifacePath, ifaceName, boardKeyOrig);
James Feistd58879a2019-09-11 11:26:07 -0700764
James Feistc6248a52018-08-14 10:09:45 -0700765 populateInterfaceFromJson(
766 systemConfiguration,
767 jsonPointerPath + "/" + std::to_string(index),
768 objectIface, arrayItem, objServer,
Andrew Jeffery5a6379c2022-03-25 13:25:31 +1030769 getPermission(name));
James Feistbb43d022018-06-12 15:44:33 -0700770 index++;
James Feist1b2e2242018-01-30 13:45:19 -0800771 }
772 }
773 }
Benjamin Fairca2eb042022-09-13 06:40:42 +0000774
775 topology.addBoard(boardName, boardType, item);
James Feist1b2e2242018-01-30 13:45:19 -0800776 }
777 }
Benjamin Fairca2eb042022-09-13 06:40:42 +0000778
779 for (const auto& boardAssoc : topology.getAssocs())
780 {
781 auto ifacePtr = objServer.add_interface(
782 boardAssoc.first, "xyz.openbmc_project.Association.Definitions");
783
784 ifacePtr->register_property("Associations", boardAssoc.second);
785 ifacePtr->initialize();
786 }
James Feist1b2e2242018-01-30 13:45:19 -0800787}
788
James Feist8f2710a2018-05-09 17:18:55 -0700789// reads json files out of the filesystem
Andrew Jefferyf3311792022-03-29 22:09:00 +1030790bool loadConfigurations(std::list<nlohmann::json>& configurations)
James Feist3cb5fec2018-01-23 14:41:51 -0800791{
792 // find configuration files
Ed Tanous072e25d2018-12-16 21:45:20 -0800793 std::vector<std::filesystem::path> jsonPaths;
Andrew Jefferya9c58922021-06-01 09:28:59 +0930794 if (!findFiles(
795 std::vector<std::filesystem::path>{configurationDirectory,
796 hostConfigurationDirectory},
797 R"(.*\.json)", jsonPaths))
James Feist3cb5fec2018-01-23 14:41:51 -0800798 {
799 std::cerr << "Unable to find any configuration files in "
James Feistb4383f42018-08-06 16:54:10 -0700800 << configurationDirectory << "\n";
James Feist75fdeeb2018-02-20 14:26:16 -0800801 return false;
James Feist3cb5fec2018-01-23 14:41:51 -0800802 }
James Feistb4383f42018-08-06 16:54:10 -0700803
804 std::ifstream schemaStream(std::string(schemaDirectory) + "/" +
805 globalSchema);
806 if (!schemaStream.good())
807 {
808 std::cerr
809 << "Cannot open schema file, cannot validate JSON, exiting\n\n";
810 std::exit(EXIT_FAILURE);
Ed Tanous072e25d2018-12-16 21:45:20 -0800811 return false;
James Feistb4383f42018-08-06 16:54:10 -0700812 }
813 nlohmann::json schema = nlohmann::json::parse(schemaStream, nullptr, false);
814 if (schema.is_discarded())
815 {
816 std::cerr
817 << "Illegal schema file detected, cannot validate JSON, exiting\n";
818 std::exit(EXIT_FAILURE);
Ed Tanous072e25d2018-12-16 21:45:20 -0800819 return false;
James Feistb4383f42018-08-06 16:54:10 -0700820 }
821
James Feista465ccc2019-02-08 12:51:01 -0800822 for (auto& jsonPath : jsonPaths)
James Feist3cb5fec2018-01-23 14:41:51 -0800823 {
824 std::ifstream jsonStream(jsonPath.c_str());
825 if (!jsonStream.good())
826 {
827 std::cerr << "unable to open " << jsonPath.string() << "\n";
828 continue;
829 }
830 auto data = nlohmann::json::parse(jsonStream, nullptr, false);
831 if (data.is_discarded())
832 {
833 std::cerr << "syntax error in " << jsonPath.string() << "\n";
834 continue;
835 }
James Feist8da99192019-01-24 08:20:16 -0800836 /*
837 * todo(james): reenable this once less things are in flight
838 *
James Feistb4383f42018-08-06 16:54:10 -0700839 if (!validateJson(schema, data))
840 {
841 std::cerr << "Error validating " << jsonPath.string() << "\n";
842 continue;
843 }
James Feist8da99192019-01-24 08:20:16 -0800844 */
James Feistb4383f42018-08-06 16:54:10 -0700845
James Feist3cb5fec2018-01-23 14:41:51 -0800846 if (data.type() == nlohmann::json::value_t::array)
847 {
James Feista465ccc2019-02-08 12:51:01 -0800848 for (auto& d : data)
James Feist3cb5fec2018-01-23 14:41:51 -0800849 {
850 configurations.emplace_back(d);
851 }
852 }
853 else
854 {
855 configurations.emplace_back(data);
856 }
857 }
Ed Tanous072e25d2018-12-16 21:45:20 -0800858 return true;
James Feist75fdeeb2018-02-20 14:26:16 -0800859}
James Feist3cb5fec2018-01-23 14:41:51 -0800860
Andrew Jeffery55192932022-03-24 12:29:27 +1030861static bool deviceRequiresPowerOn(const nlohmann::json& entity)
862{
863 auto powerState = entity.find("PowerState");
Andrew Jefferyb6209442022-03-24 12:36:20 +1030864 if (powerState == entity.end())
Andrew Jeffery55192932022-03-24 12:29:27 +1030865 {
Andrew Jefferyb6209442022-03-24 12:36:20 +1030866 return false;
Andrew Jeffery55192932022-03-24 12:29:27 +1030867 }
868
Ed Tanous3013fb42022-07-09 08:27:06 -0700869 const auto* ptr = powerState->get_ptr<const std::string*>();
870 if (ptr == nullptr)
Andrew Jefferyb6209442022-03-24 12:36:20 +1030871 {
872 return false;
873 }
874
875 return *ptr == "On" || *ptr == "BiosPost";
Andrew Jeffery55192932022-03-24 12:29:27 +1030876}
877
Andrew Jeffery89ec3522022-03-24 13:30:41 +1030878static void pruneDevice(const nlohmann::json& systemConfiguration,
879 const bool powerOff, const bool scannedPowerOff,
880 const std::string& name, const nlohmann::json& device)
881{
882 if (systemConfiguration.contains(name))
883 {
884 return;
885 }
886
Andrew Jeffery4db38bc2022-03-24 13:42:41 +1030887 if (deviceRequiresPowerOn(device) && (powerOff || scannedPowerOff))
Andrew Jeffery89ec3522022-03-24 13:30:41 +1030888 {
Andrew Jeffery89ec3522022-03-24 13:30:41 +1030889 return;
890 }
891
892 logDeviceRemoved(device);
893}
894
James Feistb1728ca2020-04-30 15:40:55 -0700895void startRemovedTimer(boost::asio::steady_timer& timer,
James Feist1df06a42019-04-11 14:23:04 -0700896 nlohmann::json& systemConfiguration)
897{
898 static bool scannedPowerOff = false;
899 static bool scannedPowerOn = false;
900
James Feistfb00f392019-06-25 14:16:48 -0700901 if (systemConfiguration.empty() || lastJson.empty())
902 {
903 return; // not ready yet
904 }
James Feist1df06a42019-04-11 14:23:04 -0700905 if (scannedPowerOn)
906 {
907 return;
908 }
909
910 if (!isPowerOn() && scannedPowerOff)
911 {
912 return;
913 }
914
James Feistb1728ca2020-04-30 15:40:55 -0700915 timer.expires_after(std::chrono::seconds(10));
Andrew Jeffery27a1cfb2022-03-24 12:31:53 +1030916 timer.async_wait(
917 [&systemConfiguration](const boost::system::error_code& ec) {
Patrick Williamsdf190612023-05-10 07:51:34 -0500918 if (ec == boost::asio::error::operation_aborted)
919 {
920 return;
921 }
Andrew Jeffery27a1cfb2022-03-24 12:31:53 +1030922
Patrick Williamsdf190612023-05-10 07:51:34 -0500923 bool powerOff = !isPowerOn();
924 for (const auto& [name, device] : lastJson.items())
925 {
926 pruneDevice(systemConfiguration, powerOff, scannedPowerOff, name,
927 device);
928 }
Andrew Jeffery89ec3522022-03-24 13:30:41 +1030929
Patrick Williamsdf190612023-05-10 07:51:34 -0500930 scannedPowerOff = true;
931 if (!powerOff)
932 {
933 scannedPowerOn = true;
934 }
935 });
James Feist1df06a42019-04-11 14:23:04 -0700936}
937
Andrew Jeffery2f750d22022-03-24 14:32:57 +1030938static std::vector<std::weak_ptr<sdbusplus::asio::dbus_interface>>&
939 getDeviceInterfaces(const nlohmann::json& device)
940{
941 return inventory[device["Name"].get<std::string>()];
942}
943
Andrew Jeffery0d0c1462022-03-24 15:26:39 +1030944static void pruneConfiguration(nlohmann::json& systemConfiguration,
945 sdbusplus::asio::object_server& objServer,
946 bool powerOff, const std::string& name,
947 const nlohmann::json& device)
948{
949 if (powerOff && deviceRequiresPowerOn(device))
950 {
951 // power not on yet, don't know if it's there or not
952 return;
953 }
954
955 auto& ifaces = getDeviceInterfaces(device);
956 for (auto& iface : ifaces)
957 {
958 auto sharedPtr = iface.lock();
959 if (!!sharedPtr)
960 {
961 objServer.remove_interface(sharedPtr);
962 }
963 }
964
965 ifaces.clear();
966 systemConfiguration.erase(name);
967 logDeviceRemoved(device);
968}
969
Andrew Jeffery7c4cbbe2022-03-24 15:27:10 +1030970static void deriveNewConfiguration(const nlohmann::json& oldConfiguration,
971 nlohmann::json& newConfiguration)
972{
973 for (auto it = newConfiguration.begin(); it != newConfiguration.end();)
974 {
975 auto findKey = oldConfiguration.find(it.key());
976 if (findKey != oldConfiguration.end())
977 {
978 it = newConfiguration.erase(it);
979 }
980 else
981 {
982 it++;
983 }
984 }
985}
986
Andrew Jefferye35d0ac2022-03-24 15:53:13 +1030987static void publishNewConfiguration(
988 const size_t& instance, const size_t count,
989 boost::asio::steady_timer& timer, nlohmann::json& systemConfiguration,
990 // Gerrit discussion:
991 // https://gerrit.openbmc-project.xyz/c/openbmc/entity-manager/+/52316/6
992 //
993 // Discord discussion:
994 // https://discord.com/channels/775381525260664832/867820390406422538/958048437729910854
995 //
996 // NOLINTNEXTLINE(performance-unnecessary-value-param)
997 const nlohmann::json newConfiguration,
998 sdbusplus::asio::object_server& objServer)
999{
1000 loadOverlays(newConfiguration);
1001
Ed Tanous49a888c2023-03-06 13:44:51 -08001002 boost::asio::post(io, [systemConfiguration]() {
Andrew Jefferye35d0ac2022-03-24 15:53:13 +10301003 if (!writeJsonFiles(systemConfiguration))
1004 {
1005 std::cerr << "Error writing json files\n";
1006 }
1007 });
1008
Ed Tanous49a888c2023-03-06 13:44:51 -08001009 boost::asio::post(io, [&instance, count, &timer, newConfiguration,
1010 &systemConfiguration, &objServer]() {
Andrew Jefferye35d0ac2022-03-24 15:53:13 +10301011 postToDbus(newConfiguration, systemConfiguration, objServer);
1012 if (count == instance)
1013 {
1014 startRemovedTimer(timer, systemConfiguration);
1015 }
1016 });
1017}
1018
James Feist8f2710a2018-05-09 17:18:55 -07001019// main properties changed entry
James Feist4dc617b2020-05-01 09:54:47 -07001020void propertiesChangedCallback(nlohmann::json& systemConfiguration,
1021 sdbusplus::asio::object_server& objServer)
James Feist8f2710a2018-05-09 17:18:55 -07001022{
James Feist2539ccd2020-05-01 16:15:08 -07001023 static bool inProgress = false;
James Feistb1728ca2020-04-30 15:40:55 -07001024 static boost::asio::steady_timer timer(io);
James Feist899e17f2019-09-13 11:46:29 -07001025 static size_t instance = 0;
1026 instance++;
1027 size_t count = instance;
James Feist1df06a42019-04-11 14:23:04 -07001028
James Feistb1728ca2020-04-30 15:40:55 -07001029 timer.expires_after(std::chrono::seconds(5));
James Feist8f2710a2018-05-09 17:18:55 -07001030
1031 // setup an async wait as we normally get flooded with new requests
James Feist4dc617b2020-05-01 09:54:47 -07001032 timer.async_wait([&systemConfiguration, &objServer,
James Feist899e17f2019-09-13 11:46:29 -07001033 count](const boost::system::error_code& ec) {
James Feist8f2710a2018-05-09 17:18:55 -07001034 if (ec == boost::asio::error::operation_aborted)
1035 {
1036 // we were cancelled
1037 return;
1038 }
Ed Tanous07d467b2021-02-23 14:48:37 -08001039 if (ec)
James Feist8f2710a2018-05-09 17:18:55 -07001040 {
1041 std::cerr << "async wait error " << ec << "\n";
1042 return;
1043 }
1044
James Feist2539ccd2020-05-01 16:15:08 -07001045 if (inProgress)
1046 {
1047 propertiesChangedCallback(systemConfiguration, objServer);
1048 return;
1049 }
1050 inProgress = true;
1051
James Feist8f2710a2018-05-09 17:18:55 -07001052 nlohmann::json oldConfiguration = systemConfiguration;
James Feist899e17f2019-09-13 11:46:29 -07001053 auto missingConfigurations = std::make_shared<nlohmann::json>();
1054 *missingConfigurations = systemConfiguration;
1055
James Feist8f2710a2018-05-09 17:18:55 -07001056 std::list<nlohmann::json> configurations;
Andrew Jefferyf3311792022-03-29 22:09:00 +10301057 if (!loadConfigurations(configurations))
James Feist8f2710a2018-05-09 17:18:55 -07001058 {
Andrew Jefferyf3311792022-03-29 22:09:00 +10301059 std::cerr << "Could not load configurations\n";
James Feist2539ccd2020-05-01 16:15:08 -07001060 inProgress = false;
James Feist8f2710a2018-05-09 17:18:55 -07001061 return;
1062 }
1063
1064 auto perfScan = std::make_shared<PerformScan>(
James Feist899e17f2019-09-13 11:46:29 -07001065 systemConfiguration, *missingConfigurations, configurations,
James Feist4dc617b2020-05-01 09:54:47 -07001066 objServer,
1067 [&systemConfiguration, &objServer, count, oldConfiguration,
1068 missingConfigurations]() {
Patrick Williamsdf190612023-05-10 07:51:34 -05001069 // this is something that since ac has been applied to the bmc
1070 // we saw, and we no longer see it
1071 bool powerOff = !isPowerOn();
1072 for (const auto& [name, device] : missingConfigurations->items())
1073 {
1074 pruneConfiguration(systemConfiguration, objServer, powerOff,
1075 name, device);
1076 }
James Feist899e17f2019-09-13 11:46:29 -07001077
Patrick Williamsdf190612023-05-10 07:51:34 -05001078 nlohmann::json newConfiguration = systemConfiguration;
Andrew Jeffery7c4cbbe2022-03-24 15:27:10 +10301079
Patrick Williamsdf190612023-05-10 07:51:34 -05001080 deriveNewConfiguration(oldConfiguration, newConfiguration);
Andrew Jeffery7c4cbbe2022-03-24 15:27:10 +10301081
Patrick Williamsdf190612023-05-10 07:51:34 -05001082 for (const auto& [_, device] : newConfiguration.items())
1083 {
1084 logDeviceAdded(device);
1085 }
James Feist899e17f2019-09-13 11:46:29 -07001086
Patrick Williamsdf190612023-05-10 07:51:34 -05001087 inProgress = false;
James Feist2539ccd2020-05-01 16:15:08 -07001088
Patrick Williamsdf190612023-05-10 07:51:34 -05001089 boost::asio::post(
1090 io, std::bind_front(publishNewConfiguration, std::ref(instance),
1091 count, std::ref(timer),
1092 std::ref(systemConfiguration),
1093 newConfiguration, std::ref(objServer)));
James Feist8f2710a2018-05-09 17:18:55 -07001094 });
1095 perfScan->run();
1096 });
James Feist75fdeeb2018-02-20 14:26:16 -08001097}
1098
Matt Spinler8d1ac3a2023-02-02 09:48:04 -06001099// Extract the D-Bus interfaces to probe from the JSON config files.
1100static std::set<std::string> getProbeInterfaces()
1101{
1102 std::set<std::string> interfaces;
1103 std::list<nlohmann::json> configurations;
1104 if (!loadConfigurations(configurations))
1105 {
1106 return interfaces;
1107 }
1108
1109 for (auto it = configurations.begin(); it != configurations.end();)
1110 {
1111 auto findProbe = it->find("Probe");
1112 if (findProbe == it->end())
1113 {
1114 std::cerr << "configuration file missing probe:\n " << *it << "\n";
1115 it++;
1116 continue;
1117 }
1118
1119 nlohmann::json probeCommand;
1120 if ((*findProbe).type() != nlohmann::json::value_t::array)
1121 {
1122 probeCommand = nlohmann::json::array();
1123 probeCommand.push_back(*findProbe);
1124 }
1125 else
1126 {
1127 probeCommand = *findProbe;
1128 }
1129
1130 for (const nlohmann::json& probeJson : probeCommand)
1131 {
1132 const std::string* probe = probeJson.get_ptr<const std::string*>();
1133 if (probe == nullptr)
1134 {
1135 std::cerr << "Probe statement wasn't a string, can't parse";
1136 continue;
1137 }
1138 // Skip it if the probe cmd doesn't contain an interface.
1139 if (findProbeType(*probe))
1140 {
1141 continue;
1142 }
1143
1144 // syntax requires probe before first open brace
1145 auto findStart = probe->find('(');
1146 if (findStart != std::string::npos)
1147 {
1148 std::string interface = probe->substr(0, findStart);
1149 interfaces.emplace(interface);
1150 }
1151 }
1152 it++;
1153 }
1154
1155 return interfaces;
1156}
1157
1158// Check if InterfacesAdded payload contains an iface that needs probing.
1159static bool
1160 iaContainsProbeInterface(sdbusplus::message_t& msg,
1161 const std::set<std::string>& probeInterfaces)
1162{
1163 sdbusplus::message::object_path path;
1164 DBusObject interfaces;
1165 std::set<std::string> interfaceSet;
1166 std::set<std::string> intersect;
1167
1168 msg.read(path, interfaces);
1169
1170 std::for_each(interfaces.begin(), interfaces.end(),
1171 [&interfaceSet](const auto& iface) {
Patrick Williamsdf190612023-05-10 07:51:34 -05001172 interfaceSet.insert(iface.first);
1173 });
Matt Spinler8d1ac3a2023-02-02 09:48:04 -06001174
1175 std::set_intersection(interfaceSet.begin(), interfaceSet.end(),
1176 probeInterfaces.begin(), probeInterfaces.end(),
1177 std::inserter(intersect, intersect.end()));
1178 return !intersect.empty();
1179}
1180
1181// Check if InterfacesRemoved payload contains an iface that needs probing.
1182static bool
1183 irContainsProbeInterface(sdbusplus::message_t& msg,
1184 const std::set<std::string>& probeInterfaces)
1185{
1186 sdbusplus::message::object_path path;
1187 std::set<std::string> interfaces;
1188 std::set<std::string> intersect;
1189
1190 msg.read(path, interfaces);
1191
1192 std::set_intersection(interfaces.begin(), interfaces.end(),
1193 probeInterfaces.begin(), probeInterfaces.end(),
1194 std::inserter(intersect, intersect.end()));
1195 return !intersect.empty();
1196}
1197
James Feist98132792019-07-09 13:29:09 -07001198int main()
James Feist75fdeeb2018-02-20 14:26:16 -08001199{
1200 // setup connection to dbus
Ed Tanous07d467b2021-02-23 14:48:37 -08001201 systemBus = std::make_shared<sdbusplus::asio::connection>(io);
1202 systemBus->request_name("xyz.openbmc_project.EntityManager");
James Feist4131aea2018-03-09 09:47:30 -08001203
Nan Zhoua3315672022-09-20 19:48:14 +00001204 // The EntityManager object itself doesn't expose any properties.
1205 // No need to set up ObjectManager for the |EntityManager| object.
1206 sdbusplus::asio::object_server objServer(systemBus, /*skipManager=*/true);
1207
1208 // All other objects that EntityManager currently support are under the
1209 // inventory subtree.
1210 // See the discussion at
1211 // https://discord.com/channels/775381525260664832/1018929092009144380
1212 objServer.add_manager("/xyz/openbmc_project/inventory");
James Feistfd1264a2018-05-03 12:10:00 -07001213
James Feist8f2710a2018-05-09 17:18:55 -07001214 std::shared_ptr<sdbusplus::asio::dbus_interface> entityIface =
1215 objServer.add_interface("/xyz/openbmc_project/EntityManager",
1216 "xyz.openbmc_project.EntityManager");
James Feistfd1264a2018-05-03 12:10:00 -07001217
James Feist4131aea2018-03-09 09:47:30 -08001218 // to keep reference to the match / filter objects so they don't get
1219 // destroyed
James Feist8f2710a2018-05-09 17:18:55 -07001220
1221 nlohmann::json systemConfiguration = nlohmann::json::object();
1222
Matt Spinler8d1ac3a2023-02-02 09:48:04 -06001223 std::set<std::string> probeInterfaces = getProbeInterfaces();
1224
Brad Bishopc76af0f2020-12-04 13:50:23 -05001225 // We need a poke from DBus for static providers that create all their
1226 // objects prior to claiming a well-known name, and thus don't emit any
1227 // org.freedesktop.DBus.Properties signals. Similarly if a process exits
1228 // for any reason, expected or otherwise, we'll need a poke to remove
1229 // entities from DBus.
Patrick Williams2af39222022-07-22 19:26:56 -05001230 sdbusplus::bus::match_t nameOwnerChangedMatch(
1231 static_cast<sdbusplus::bus_t&>(*systemBus),
Brad Bishopc76af0f2020-12-04 13:50:23 -05001232 sdbusplus::bus::match::rules::nameOwnerChanged(),
Patrick Williams7b8786f2022-10-10 10:23:37 -05001233 [&](sdbusplus::message_t& m) {
Patrick Williamsdf190612023-05-10 07:51:34 -05001234 auto [name, oldOwner,
1235 newOwner] = m.unpack<std::string, std::string, std::string>();
Patrick Williams7b8786f2022-10-10 10:23:37 -05001236
Patrick Williamsdf190612023-05-10 07:51:34 -05001237 if (name.starts_with(':'))
1238 {
1239 // We should do nothing with unique-name connections.
1240 return;
1241 }
Patrick Williams7b8786f2022-10-10 10:23:37 -05001242
Patrick Williamsdf190612023-05-10 07:51:34 -05001243 propertiesChangedCallback(systemConfiguration, objServer);
Brad Bishopc76af0f2020-12-04 13:50:23 -05001244 });
Brad Bishop10a8c5f2020-12-07 21:40:07 -05001245 // We also need a poke from DBus when new interfaces are created or
1246 // destroyed.
Patrick Williams2af39222022-07-22 19:26:56 -05001247 sdbusplus::bus::match_t interfacesAddedMatch(
1248 static_cast<sdbusplus::bus_t&>(*systemBus),
Brad Bishop10a8c5f2020-12-07 21:40:07 -05001249 sdbusplus::bus::match::rules::interfacesAdded(),
Matt Spinler8d1ac3a2023-02-02 09:48:04 -06001250 [&](sdbusplus::message_t& msg) {
Patrick Williamsdf190612023-05-10 07:51:34 -05001251 if (iaContainsProbeInterface(msg, probeInterfaces))
1252 {
1253 propertiesChangedCallback(systemConfiguration, objServer);
1254 }
Brad Bishop10a8c5f2020-12-07 21:40:07 -05001255 });
Patrick Williams2af39222022-07-22 19:26:56 -05001256 sdbusplus::bus::match_t interfacesRemovedMatch(
1257 static_cast<sdbusplus::bus_t&>(*systemBus),
Brad Bishop10a8c5f2020-12-07 21:40:07 -05001258 sdbusplus::bus::match::rules::interfacesRemoved(),
Matt Spinler8d1ac3a2023-02-02 09:48:04 -06001259 [&](sdbusplus::message_t& msg) {
Patrick Williamsdf190612023-05-10 07:51:34 -05001260 if (irContainsProbeInterface(msg, probeInterfaces))
1261 {
1262 propertiesChangedCallback(systemConfiguration, objServer);
1263 }
Brad Bishop10a8c5f2020-12-07 21:40:07 -05001264 });
Brad Bishopc76af0f2020-12-04 13:50:23 -05001265
Ed Tanous49a888c2023-03-06 13:44:51 -08001266 boost::asio::post(io, [&]() {
1267 propertiesChangedCallback(systemConfiguration, objServer);
1268 });
James Feist4131aea2018-03-09 09:47:30 -08001269
James Feistfd1264a2018-05-03 12:10:00 -07001270 entityIface->register_method("ReScan", [&]() {
James Feist4dc617b2020-05-01 09:54:47 -07001271 propertiesChangedCallback(systemConfiguration, objServer);
James Feist75fdeeb2018-02-20 14:26:16 -08001272 });
James Feist8f2710a2018-05-09 17:18:55 -07001273 entityIface->initialize();
1274
James Feist1df06a42019-04-11 14:23:04 -07001275 if (fwVersionIsSame())
1276 {
1277 if (std::filesystem::is_regular_file(currentConfiguration))
1278 {
1279 // this file could just be deleted, but it's nice for debug
1280 std::filesystem::create_directory(tempConfigDir);
1281 std::filesystem::remove(lastConfiguration);
1282 std::filesystem::copy(currentConfiguration, lastConfiguration);
1283 std::filesystem::remove(currentConfiguration);
1284
1285 std::ifstream jsonStream(lastConfiguration);
1286 if (jsonStream.good())
1287 {
1288 auto data = nlohmann::json::parse(jsonStream, nullptr, false);
1289 if (data.is_discarded())
1290 {
1291 std::cerr << "syntax error in " << lastConfiguration
1292 << "\n";
1293 }
1294 else
1295 {
1296 lastJson = std::move(data);
1297 }
1298 }
1299 else
1300 {
1301 std::cerr << "unable to open " << lastConfiguration << "\n";
1302 }
1303 }
1304 }
1305 else
1306 {
1307 // not an error, just logging at this level to make it in the journal
1308 std::cerr << "Clearing previous configuration\n";
1309 std::filesystem::remove(currentConfiguration);
1310 }
1311
1312 // some boards only show up after power is on, we want to not say they are
1313 // removed until the same state happens
Ed Tanous07d467b2021-02-23 14:48:37 -08001314 setupPowerMatch(systemBus);
James Feist1df06a42019-04-11 14:23:04 -07001315
James Feist1b2e2242018-01-30 13:45:19 -08001316 io.run();
James Feist3cb5fec2018-01-23 14:41:51 -08001317
1318 return 0;
James Feist75fdeeb2018-02-20 14:26:16 -08001319}