blob: f3e075375ffc5b26ac1516a07f389a713509603b [file] [log] [blame]
James Feist6714a252018-09-10 15:26:18 -07001#pragma once
Andrew Jefferye73bd0a2023-01-25 10:39:57 +10302
3#include "VariantVisitors.hpp"
4
Zhikui Renda98f092021-11-01 09:41:08 -07005#include <boost/algorithm/string/replace.hpp>
James Feist8086aba2020-08-25 16:00:59 -07006#include <boost/asio/steady_timer.hpp>
James Feist6714a252018-09-10 15:26:18 -07007#include <boost/container/flat_map.hpp>
James Feist38fb5982020-05-28 10:09:54 -07008#include <sdbusplus/asio/connection.hpp>
9#include <sdbusplus/asio/object_server.hpp>
10#include <sdbusplus/message/types.hpp>
11
James Feist24f02f22019-04-15 11:05:39 -070012#include <filesystem>
Patrick Venturefd6ba732019-10-31 14:27:39 -070013#include <functional>
James Feist6714a252018-09-10 15:26:18 -070014#include <iostream>
Patrick Venturefd6ba732019-10-31 14:27:39 -070015#include <memory>
Bruce Mitchell544e7dc2021-07-29 18:05:49 -050016#include <optional>
James Feist6714a252018-09-10 15:26:18 -070017#include <regex>
Zev Weiss214d9712022-08-12 12:54:31 -070018#include <span>
Patrick Venturefd6ba732019-10-31 14:27:39 -070019#include <string>
20#include <tuple>
21#include <utility>
22#include <variant>
23#include <vector>
James Feist6714a252018-09-10 15:26:18 -070024
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -070025const constexpr char* jsonStore = "/var/configuration/flattened.json";
26const constexpr char* inventoryPath = "/xyz/openbmc_project/inventory";
27const constexpr char* entityManagerName = "xyz.openbmc_project.EntityManager";
James Feist58295ad2019-05-30 15:01:41 -070028
29constexpr const char* cpuInventoryPath =
30 "/xyz/openbmc_project/inventory/system/chassis/motherboard";
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -070031const std::regex illegalDbusRegex("[^A-Za-z0-9_]");
James Feist6714a252018-09-10 15:26:18 -070032
33using BasicVariantType =
James Feist3eb82622019-02-08 13:10:22 -080034 std::variant<std::vector<std::string>, std::string, int64_t, uint64_t,
35 double, int32_t, uint32_t, int16_t, uint16_t, uint8_t, bool>;
Alex Qiu8b3f7d42020-01-06 13:54:42 -080036using SensorBaseConfigMap =
37 boost::container::flat_map<std::string, BasicVariantType>;
38using SensorBaseConfiguration = std::pair<std::string, SensorBaseConfigMap>;
39using SensorData = boost::container::flat_map<std::string, SensorBaseConfigMap>;
40using ManagedObjectType =
41 boost::container::flat_map<sdbusplus::message::object_path, SensorData>;
James Feist6714a252018-09-10 15:26:18 -070042
James Feista5e58722019-04-22 14:43:11 -070043using GetSubTreeType = std::vector<
44 std::pair<std::string,
45 std::vector<std::pair<std::string, std::vector<std::string>>>>>;
James Feistd8bd5622019-06-26 12:09:05 -070046using Association = std::tuple<std::string, std::string, std::string>;
47
Zhikui Renda98f092021-11-01 09:41:08 -070048inline std::string escapeName(const std::string& sensorName)
49{
50 return boost::replace_all_copy(sensorName, " ", "_");
51}
52
Zev Weiss88cb29d2022-05-09 03:46:15 +000053enum class PowerState
54{
55 on,
56 biosPost,
Thu Nguyen6db8aae2022-10-04 08:12:48 +070057 always,
58 chassisOn
Zev Weiss88cb29d2022-05-09 03:46:15 +000059};
60
Jason Ling100c20b2020-08-11 14:50:33 -070061std::optional<std::string> openAndRead(const std::string& hwmonFile);
62std::optional<std::string>
63 getFullHwmonFilePath(const std::string& directory,
64 const std::string& hwmonBaseName,
65 const std::set<std::string>& permitSet);
66std::set<std::string> getPermitSet(const SensorBaseConfigMap& config);
Ed Tanous8a57ec02020-10-09 12:46:52 -070067bool findFiles(const std::filesystem::path& dirPath,
Lei YU6a4e9732021-10-20 13:27:34 +080068 std::string_view matchString,
James Feistcf3bce62019-01-08 10:07:19 -080069 std::vector<std::filesystem::path>& foundPaths,
Ed Tanous8a57ec02020-10-09 12:46:52 -070070 int symlinkDepth = 1);
Ed Tanous201a1012024-04-03 18:07:28 -070071bool isPowerOn();
72bool hasBiosPost();
73bool isChassisOn();
Zev Weiss88cb29d2022-05-09 03:46:15 +000074void setupPowerMatchCallback(
75 const std::shared_ptr<sdbusplus::asio::connection>& conn,
76 std::function<void(PowerState type, bool state)>&& callback);
James Feist71d31b22019-01-02 16:57:54 -080077void setupPowerMatch(const std::shared_ptr<sdbusplus::asio::connection>& conn);
James Feist6714a252018-09-10 15:26:18 -070078bool getSensorConfiguration(
79 const std::string& type,
80 const std::shared_ptr<sdbusplus::asio::connection>& dbusConnection,
Ed Tanous8a57ec02020-10-09 12:46:52 -070081 ManagedObjectType& resp, bool useCache);
82
James Feist82bac4c2019-03-11 11:16:53 -070083void createAssociation(
84 std::shared_ptr<sdbusplus::asio::dbus_interface>& association,
85 const std::string& path);
86
James Feist87d713a2018-12-06 16:06:24 -080087// replaces limits if MinReading and MaxReading are found.
88void findLimits(std::pair<double, double>& limits,
James Feist40a72142018-12-21 10:09:53 -080089 const SensorBaseConfiguration* data);
90
Konstantin Aladyshevc7a1ae62021-04-30 08:50:43 +000091bool readingStateGood(const PowerState& powerState);
92
Zev Weiss054aad82022-08-18 01:37:34 -070093constexpr const char* configInterfacePrefix =
94 "xyz.openbmc_project.Configuration.";
95
96inline std::string configInterfaceName(const std::string& type)
97{
98 return std::string(configInterfacePrefix) + type;
99}
100
James Feista5e58722019-04-22 14:43:11 -0700101namespace mapper
102{
103constexpr const char* busName = "xyz.openbmc_project.ObjectMapper";
104constexpr const char* path = "/xyz/openbmc_project/object_mapper";
105constexpr const char* interface = "xyz.openbmc_project.ObjectMapper";
106constexpr const char* subtree = "GetSubTree";
107} // namespace mapper
108
109namespace properties
110{
111constexpr const char* interface = "org.freedesktop.DBus.Properties";
112constexpr const char* get = "Get";
James Feist49a8ccd2020-09-16 16:09:52 -0700113constexpr const char* set = "Set";
James Feista5e58722019-04-22 14:43:11 -0700114} // namespace properties
115
James Feist52497fd2019-06-07 13:01:33 -0700116namespace power
117{
118const static constexpr char* busname = "xyz.openbmc_project.State.Host";
119const static constexpr char* interface = "xyz.openbmc_project.State.Host";
120const static constexpr char* path = "/xyz/openbmc_project/state/host0";
121const static constexpr char* property = "CurrentHostState";
122} // namespace power
Thu Nguyen6db8aae2022-10-04 08:12:48 +0700123
124namespace chassis
125{
Patrick Williamsea14f142024-01-19 14:23:54 -0600126const static constexpr char* busname = "xyz.openbmc_project.State.Chassis0";
Thu Nguyen6db8aae2022-10-04 08:12:48 +0700127const static constexpr char* interface = "xyz.openbmc_project.State.Chassis";
128const static constexpr char* path = "/xyz/openbmc_project/state/chassis0";
129const static constexpr char* property = "CurrentPowerState";
Thang Tran819eb322023-11-07 13:50:18 +0700130const static constexpr char* sOn = ".On";
Thu Nguyen6db8aae2022-10-04 08:12:48 +0700131} // namespace chassis
132
James Feist52497fd2019-06-07 13:01:33 -0700133namespace post
134{
135const static constexpr char* busname =
136 "xyz.openbmc_project.State.OperatingSystem";
137const static constexpr char* interface =
138 "xyz.openbmc_project.State.OperatingSystem.Status";
139const static constexpr char* path = "/xyz/openbmc_project/state/os";
140const static constexpr char* property = "OperatingSystemState";
141} // namespace post
142
James Feist2adc95c2019-09-30 14:55:28 -0700143namespace association
144{
145const static constexpr char* interface =
146 "xyz.openbmc_project.Association.Definitions";
147} // namespace association
148
James Feist40a72142018-12-21 10:09:53 -0800149template <typename T>
Zev Weissafd15042022-07-18 12:28:40 -0700150inline T loadVariant(const SensorBaseConfigMap& data, const std::string& key)
James Feist40a72142018-12-21 10:09:53 -0800151{
152 auto it = data.find(key);
153 if (it == data.end())
154 {
155 std::cerr << "Configuration missing " << key << "\n";
156 throw std::invalid_argument("Key Missing");
157 }
158 if constexpr (std::is_same_v<T, double>)
159 {
James Feist3eb82622019-02-08 13:10:22 -0800160 return std::visit(VariantToDoubleVisitor(), it->second);
James Feist40a72142018-12-21 10:09:53 -0800161 }
James Feist6ef20402019-01-07 16:45:08 -0800162 else if constexpr (std::is_unsigned_v<T>)
163 {
James Feist3eb82622019-02-08 13:10:22 -0800164 return std::visit(VariantToUnsignedIntVisitor(), it->second);
James Feist6ef20402019-01-07 16:45:08 -0800165 }
James Feist40a72142018-12-21 10:09:53 -0800166 else if constexpr (std::is_same_v<T, std::string>)
167 {
James Feist3eb82622019-02-08 13:10:22 -0800168 return std::visit(VariantToStringVisitor(), it->second);
James Feist40a72142018-12-21 10:09:53 -0800169 }
170 else
171 {
James Feist52497fd2019-06-07 13:01:33 -0700172 static_assert(!std::is_same_v<T, T>, "Type Not Implemented");
James Feist40a72142018-12-21 10:09:53 -0800173 }
174}
James Feistfc94b212019-02-06 16:14:51 -0800175
176inline void setReadState(const std::string& str, PowerState& val)
177{
James Feistfc94b212019-02-06 16:14:51 -0800178 if (str == "On")
179 {
180 val = PowerState::on;
181 }
182 else if (str == "BiosPost")
183 {
184 val = PowerState::biosPost;
185 }
186 else if (str == "Always")
187 {
188 val = PowerState::always;
189 }
Thu Nguyen6db8aae2022-10-04 08:12:48 +0700190 else if (str == "ChassisOn")
191 {
192 val = PowerState::chassisOn;
193 }
James Feistfc94b212019-02-06 16:14:51 -0800194}
Cheng C Yang5580f2f2019-09-19 09:01:47 +0800195
Zev Weissa4d27682022-07-19 15:30:36 -0700196inline PowerState getPowerState(const SensorBaseConfigMap& cfg)
197{
198 PowerState state = PowerState::always;
199 auto findPowerState = cfg.find("PowerState");
200 if (findPowerState != cfg.end())
201 {
Patrick Williams779c96a2023-05-10 07:50:42 -0500202 std::string powerState = std::visit(VariantToStringVisitor(),
203 findPowerState->second);
Zev Weissa4d27682022-07-19 15:30:36 -0700204 setReadState(powerState, state);
205 }
206 return state;
207}
208
Zev Weiss8569bf22022-10-11 15:37:44 -0700209inline float getPollRate(const SensorBaseConfigMap& cfg, float dflt)
210{
211 float pollRate = dflt;
212 auto findPollRate = cfg.find("PollRate");
213 if (findPollRate != cfg.end())
214 {
215 pollRate = std::visit(VariantToFloatVisitor(), findPollRate->second);
216 if (!std::isfinite(pollRate) || pollRate <= 0.0F)
217 {
218 pollRate = dflt; // poll time invalid, fall back to default
219 }
220 }
221 return pollRate;
222}
223
Ed Tanous8a57ec02020-10-09 12:46:52 -0700224inline void setLed(const std::shared_ptr<sdbusplus::asio::connection>& conn,
James Feist49a8ccd2020-09-16 16:09:52 -0700225 const std::string& name, bool on)
226{
227 conn->async_method_call(
228 [name](const boost::system::error_code ec) {
Ed Tanousbb679322022-05-16 16:10:00 -0700229 if (ec)
230 {
231 std::cerr << "Failed to set LED " << name << "\n";
232 }
Patrick Williams597e8422023-10-20 11:19:01 -0500233 },
James Feist49a8ccd2020-09-16 16:09:52 -0700234 "xyz.openbmc_project.LED.GroupManager",
235 "/xyz/openbmc_project/led/groups/" + name, properties::interface,
236 properties::set, "xyz.openbmc_project.Led.Group", "Asserted",
237 std::variant<bool>(on));
238}
239
Cheng C Yang5580f2f2019-09-19 09:01:47 +0800240void createInventoryAssoc(
Ed Tanous8a57ec02020-10-09 12:46:52 -0700241 const std::shared_ptr<sdbusplus::asio::connection>& conn,
242 const std::shared_ptr<sdbusplus::asio::dbus_interface>& association,
Cheng C Yang5580f2f2019-09-19 09:01:47 +0800243 const std::string& path);
James Feistc71c1192019-09-18 14:31:33 -0700244
James Feist38fb5982020-05-28 10:09:54 -0700245struct GetSensorConfiguration :
246 std::enable_shared_from_this<GetSensorConfiguration>
James Feistc71c1192019-09-18 14:31:33 -0700247{
248 GetSensorConfiguration(
249 std::shared_ptr<sdbusplus::asio::connection> connection,
250 std::function<void(ManagedObjectType& resp)>&& callbackFunc) :
Ed Tanous8a57ec02020-10-09 12:46:52 -0700251 dbusConnection(std::move(connection)),
James Feistc71c1192019-09-18 14:31:33 -0700252 callback(std::move(callbackFunc))
James Feist38fb5982020-05-28 10:09:54 -0700253 {}
James Feistf27a55c2020-08-04 14:27:30 -0700254
255 void getPath(const std::string& path, const std::string& interface,
256 const std::string& owner, size_t retries = 5)
James Feistc71c1192019-09-18 14:31:33 -0700257 {
James Feistf27a55c2020-08-04 14:27:30 -0700258 if (retries > 5)
259 {
260 retries = 5;
261 }
262 std::shared_ptr<GetSensorConfiguration> self = shared_from_this();
263
264 self->dbusConnection->async_method_call(
Zev Weissafd15042022-07-18 12:28:40 -0700265 [self, path, interface, owner, retries](
266 const boost::system::error_code ec, SensorBaseConfigMap& data) {
Ed Tanousbb679322022-05-16 16:10:00 -0700267 if (ec)
268 {
269 std::cerr << "Error getting " << path << ": retries left"
270 << retries - 1 << "\n";
Ed Tanous2049bd22022-07-09 07:20:26 -0700271 if (retries == 0U)
James Feistf27a55c2020-08-04 14:27:30 -0700272 {
James Feistf27a55c2020-08-04 14:27:30 -0700273 return;
274 }
Ed Tanousbb679322022-05-16 16:10:00 -0700275 auto timer = std::make_shared<boost::asio::steady_timer>(
276 self->dbusConnection->get_io_context());
277 timer->expires_after(std::chrono::seconds(10));
278 timer->async_wait([self, timer, path, interface, owner,
279 retries](boost::system::error_code ec) {
280 if (ec)
281 {
282 std::cerr << "Timer error!\n";
283 return;
284 }
285 self->getPath(path, interface, owner, retries - 1);
286 });
287 return;
288 }
James Feistf27a55c2020-08-04 14:27:30 -0700289
Ed Tanousbb679322022-05-16 16:10:00 -0700290 self->respData[path][interface] = std::move(data);
Patrick Williams597e8422023-10-20 11:19:01 -0500291 },
James Feistf27a55c2020-08-04 14:27:30 -0700292 owner, path, "org.freedesktop.DBus.Properties", "GetAll",
293 interface);
294 }
295
Zev Weiss054aad82022-08-18 01:37:34 -0700296 void getConfiguration(const std::vector<std::string>& types,
James Feistf27a55c2020-08-04 14:27:30 -0700297 size_t retries = 0)
298 {
299 if (retries > 5)
300 {
301 retries = 5;
302 }
303
Zev Weiss054aad82022-08-18 01:37:34 -0700304 std::vector<std::string> interfaces(types.size());
305 for (const auto& type : types)
306 {
307 interfaces.push_back(configInterfaceName(type));
308 }
309
James Feistc71c1192019-09-18 14:31:33 -0700310 std::shared_ptr<GetSensorConfiguration> self = shared_from_this();
311 dbusConnection->async_method_call(
James Feistf27a55c2020-08-04 14:27:30 -0700312 [self, interfaces, retries](const boost::system::error_code ec,
313 const GetSubTreeType& ret) {
Ed Tanousbb679322022-05-16 16:10:00 -0700314 if (ec)
315 {
316 std::cerr << "Error calling mapper\n";
Ed Tanous2049bd22022-07-09 07:20:26 -0700317 if (retries == 0U)
James Feistc71c1192019-09-18 14:31:33 -0700318 {
James Feistc71c1192019-09-18 14:31:33 -0700319 return;
320 }
Ed Tanousbb679322022-05-16 16:10:00 -0700321 auto timer = std::make_shared<boost::asio::steady_timer>(
322 self->dbusConnection->get_io_context());
323 timer->expires_after(std::chrono::seconds(10));
324 timer->async_wait([self, timer, interfaces,
325 retries](boost::system::error_code ec) {
326 if (ec)
James Feistc71c1192019-09-18 14:31:33 -0700327 {
Ed Tanousbb679322022-05-16 16:10:00 -0700328 std::cerr << "Timer error!\n";
James Feistc71c1192019-09-18 14:31:33 -0700329 return;
330 }
Ed Tanousbb679322022-05-16 16:10:00 -0700331 self->getConfiguration(interfaces, retries - 1);
332 });
James Feistc71c1192019-09-18 14:31:33 -0700333
Ed Tanousbb679322022-05-16 16:10:00 -0700334 return;
335 }
336 for (const auto& [path, objDict] : ret)
337 {
338 if (objDict.empty())
339 {
340 return;
James Feistc71c1192019-09-18 14:31:33 -0700341 }
Ed Tanousbb679322022-05-16 16:10:00 -0700342 const std::string& owner = objDict.begin()->first;
343
344 for (const std::string& interface : objDict.begin()->second)
345 {
346 // anything that starts with a requested configuration
347 // is good
348 if (std::find_if(interfaces.begin(), interfaces.end(),
349 [interface](const std::string& possible) {
Zev Weiss6c106d62022-08-17 20:50:00 -0700350 return interface.starts_with(possible);
Patrick Williams597e8422023-10-20 11:19:01 -0500351 }) == interfaces.end())
Ed Tanousbb679322022-05-16 16:10:00 -0700352 {
353 continue;
354 }
355 self->getPath(path, interface, owner);
356 }
357 }
Patrick Williams597e8422023-10-20 11:19:01 -0500358 },
James Feistc71c1192019-09-18 14:31:33 -0700359 mapper::busName, mapper::path, mapper::interface, mapper::subtree,
360 "/", 0, interfaces);
361 }
362
363 ~GetSensorConfiguration()
364 {
365 callback(respData);
366 }
367
368 std::shared_ptr<sdbusplus::asio::connection> dbusConnection;
369 std::function<void(ManagedObjectType& resp)> callback;
370 ManagedObjectType respData;
371};
Zbigniew Kurzynski63f38662020-06-09 13:02:11 +0200372
373// The common scheme for sysfs files naming is: <type><number>_<item>.
374// This function returns optionally these 3 elements as a tuple.
375std::optional<std::tuple<std::string, std::string, std::string>>
376 splitFileName(const std::filesystem::path& filePath);
377std::optional<double> readFile(const std::string& thresholdFile,
James Feist8086aba2020-08-25 16:00:59 -0700378 const double& scaleFactor);
Bruce Lee1263c3d2021-06-04 15:16:33 +0800379void setupManufacturingModeMatch(sdbusplus::asio::connection& conn);
380bool getManufacturingMode();
Zev Weiss214d9712022-08-12 12:54:31 -0700381std::vector<std::unique_ptr<sdbusplus::bus::match_t>>
382 setupPropertiesChangedMatches(
383 sdbusplus::asio::connection& bus, std::span<const char* const> types,
384 const std::function<void(sdbusplus::message_t&)>& handler);
Tom Tung278e1772023-12-12 09:20:40 +0800385
386template <typename T>
387bool getDeviceBusAddr(const std::string& deviceName, T& bus, T& addr)
388{
389 auto findHyphen = deviceName.find('-');
390 if (findHyphen == std::string::npos)
391 {
392 std::cerr << "found bad device " << deviceName << "\n";
393 return false;
394 }
395 std::string busStr = deviceName.substr(0, findHyphen);
396 std::string addrStr = deviceName.substr(findHyphen + 1);
397
398 std::from_chars_result res{};
399 res = std::from_chars(&*busStr.begin(), &*busStr.end(), bus);
400 if (res.ec != std::errc{} || res.ptr != &*busStr.end())
401 {
402 std::cerr << "Error finding bus for " << deviceName << "\n";
403 return false;
404 }
405 res = std::from_chars(&*addrStr.begin(), &*addrStr.end(), addr, 16);
406 if (res.ec != std::errc{} || res.ptr != &*addrStr.end())
407 {
408 std::cerr << "Error finding addr for " << deviceName << "\n";
409 return false;
410 }
411
412 return true;
413}