blob: ef18a8f1914075b2633ed13d8a4d8090c2b3b420 [file] [log] [blame]
Patrick Venture3a5071a2018-09-12 13:27:42 -07001#include "sensordatahandler.hpp"
2
3#include "sensorhandler.hpp"
Patrick Venture3a5071a2018-09-12 13:27:42 -07004
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -05005#include <bitset>
Vernon Mauerybdda8002019-02-26 10:18:51 -08006#include <filesystem>
Vernon Mauery33250242019-03-12 16:49:26 -07007#include <ipmid/types.hpp>
Vernon Mauery6a98fe72019-03-11 15:57:48 -07008#include <ipmid/utils.hpp>
William A. Kennington III4c008022018-10-12 17:18:14 -07009#include <optional>
William A. Kennington III4c008022018-10-12 17:18:14 -070010#include <sdbusplus/message/types.hpp>
Patrick Venture3a5071a2018-09-12 13:27:42 -070011#include <xyz/openbmc_project/Common/error.hpp>
12
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -050013namespace ipmi
14{
15namespace sensor
16{
17
18using namespace phosphor::logging;
19using InternalFailure =
20 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
21
22static constexpr auto MAPPER_BUSNAME = "xyz.openbmc_project.ObjectMapper";
23static constexpr auto MAPPER_PATH = "/xyz/openbmc_project/object_mapper";
24static constexpr auto MAPPER_INTERFACE = "xyz.openbmc_project.ObjectMapper";
25
26/** @brief get the D-Bus service and service path
27 * @param[in] bus - The Dbus bus object
28 * @param[in] interface - interface to the service
29 * @param[in] path - interested path in the list of objects
30 * @return pair of service path and service
31 */
32ServicePath getServiceAndPath(sdbusplus::bus::bus& bus,
33 const std::string& interface,
34 const std::string& path)
35{
36 auto depth = 0;
Patrick Venture0b02be92018-08-31 11:55:55 -070037 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
38 MAPPER_INTERFACE, "GetSubTree");
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -050039 mapperCall.append("/");
40 mapperCall.append(depth);
41 mapperCall.append(std::vector<Interface>({interface}));
42
43 auto mapperResponseMsg = bus.call(mapperCall);
44 if (mapperResponseMsg.is_method_error())
45 {
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -050046 log<level::ERR>("Mapper GetSubTree failed",
Joseph Reynolds510eb9c2018-05-30 11:51:28 -050047 entry("PATH=%s", path.c_str()),
48 entry("INTERFACE=%s", interface.c_str()));
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -050049 elog<InternalFailure>();
50 }
51
52 MapperResponseType mapperResponse;
53 mapperResponseMsg.read(mapperResponse);
54 if (mapperResponse.empty())
55 {
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -050056 log<level::ERR>("Invalid mapper response",
Joseph Reynolds510eb9c2018-05-30 11:51:28 -050057 entry("PATH=%s", path.c_str()),
58 entry("INTERFACE=%s", interface.c_str()));
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -050059 elog<InternalFailure>();
60 }
61
62 if (path.empty())
63 {
Patrick Venture0b02be92018-08-31 11:55:55 -070064 // Get the first one if the path is not in list.
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -050065 return std::make_pair(mapperResponse.begin()->first,
66 mapperResponse.begin()->second.begin()->first);
67 }
68 const auto& iter = mapperResponse.find(path);
69 if (iter == mapperResponse.end())
70 {
Gunnar Millsc9fa69e2018-04-08 16:35:25 -050071 log<level::ERR>("Couldn't find D-Bus path",
Joseph Reynolds510eb9c2018-05-30 11:51:28 -050072 entry("PATH=%s", path.c_str()),
73 entry("INTERFACE=%s", interface.c_str()));
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -050074 elog<InternalFailure>();
75 }
76 return std::make_pair(iter->first, iter->second.begin()->first);
77}
78
79AssertionSet getAssertionSet(const SetSensorReadingReq& cmdData)
80{
81 Assertion assertionStates =
82 (static_cast<Assertion>(cmdData.assertOffset8_14)) << 8 |
83 cmdData.assertOffset0_7;
84 Deassertion deassertionStates =
85 (static_cast<Deassertion>(cmdData.deassertOffset8_14)) << 8 |
86 cmdData.deassertOffset0_7;
87 return std::make_pair(assertionStates, deassertionStates);
88}
89
90ipmi_ret_t updateToDbus(IpmiUpdateData& msg)
91{
92 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
93 try
94 {
95 auto serviceResponseMsg = bus.call(msg);
96 if (serviceResponseMsg.is_method_error())
97 {
98 log<level::ERR>("Error in D-Bus call");
99 return IPMI_CC_UNSPECIFIED_ERROR;
100 }
101 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -0500102 catch (const InternalFailure& e)
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500103 {
104 commit<InternalFailure>();
105 return IPMI_CC_UNSPECIFIED_ERROR;
106 }
107 return IPMI_CC_OK;
108}
109
Tom Joseph816e92b2017-09-06 19:23:00 +0530110namespace get
111{
112
Tom Josephb0adbcd2018-01-24 11:51:29 +0530113SensorName nameParentLeaf(const Info& sensorInfo)
114{
115 const auto pos = sensorInfo.sensorPath.find_last_of('/');
116 const auto leaf = sensorInfo.sensorPath.substr(pos + 1);
117
118 const auto remaining = sensorInfo.sensorPath.substr(0, pos);
119
120 const auto parentPos = remaining.find_last_of('/');
121 auto parent = remaining.substr(parentPos + 1);
122
123 parent += "_" + leaf;
124 return parent;
125}
126
Tom Joseph816e92b2017-09-06 19:23:00 +0530127GetSensorResponse mapDbusToAssertion(const Info& sensorInfo,
128 const InstancePath& path,
129 const DbusInterface& interface)
130{
131 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
Patrick Venture0b02be92018-08-31 11:55:55 -0700132 GetSensorResponse response{};
Tom Joseph816e92b2017-09-06 19:23:00 +0530133
Jeremy Kerr3dc35582020-05-17 15:47:07 +0800134 enableScanning(&response);
135
Tom Joseph816e92b2017-09-06 19:23:00 +0530136 auto service = ipmi::getService(bus, interface, path);
137
138 const auto& interfaceList = sensorInfo.propertyInterfaces;
139
140 for (const auto& interface : interfaceList)
141 {
142 for (const auto& property : interface.second)
143 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700144 auto propValue = ipmi::getDbusProperty(
145 bus, service, path, interface.first, property.first);
Tom Joseph816e92b2017-09-06 19:23:00 +0530146
Dhruvaraj Subhashchandrane245e4e2017-10-03 03:58:05 -0500147 for (const auto& value : std::get<OffsetValueMap>(property.second))
Tom Joseph816e92b2017-09-06 19:23:00 +0530148 {
149 if (propValue == value.second.assert)
150 {
Sui Chen4cc42552019-09-11 10:28:35 -0700151 setOffset(value.first, &response);
Tom Joseph816e92b2017-09-06 19:23:00 +0530152 break;
153 }
Tom Joseph816e92b2017-09-06 19:23:00 +0530154 }
155 }
156 }
157
158 return response;
159}
160
Lei YUa8dc09b2021-10-13 18:06:46 +0800161GetSensorResponse mapDbusToEventdata2(const Info& sensorInfo)
Tom Josephe4014fc2017-09-06 23:57:36 +0530162{
163 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
Patrick Venture0b02be92018-08-31 11:55:55 -0700164 GetSensorResponse response{};
Tom Josephe4014fc2017-09-06 23:57:36 +0530165
Jeremy Kerr3dc35582020-05-17 15:47:07 +0800166 enableScanning(&response);
167
Patrick Venture0b02be92018-08-31 11:55:55 -0700168 auto service = ipmi::getService(bus, sensorInfo.sensorInterface,
Tom Josephe4014fc2017-09-06 23:57:36 +0530169 sensorInfo.sensorPath);
170
171 const auto& interfaceList = sensorInfo.propertyInterfaces;
172
173 for (const auto& interface : interfaceList)
174 {
175 for (const auto& property : interface.second)
176 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700177 auto propValue =
178 ipmi::getDbusProperty(bus, service, sensorInfo.sensorPath,
179 interface.first, property.first);
Tom Josephe4014fc2017-09-06 23:57:36 +0530180
Dhruvaraj Subhashchandrane245e4e2017-10-03 03:58:05 -0500181 for (const auto& value : std::get<OffsetValueMap>(property.second))
Tom Josephe4014fc2017-09-06 23:57:36 +0530182 {
183 if (propValue == value.second.assert)
184 {
Sui Chen4cc42552019-09-11 10:28:35 -0700185 setReading(value.first, &response);
Tom Josephe4014fc2017-09-06 23:57:36 +0530186 break;
187 }
188 }
189 }
190 }
191
192 return response;
193}
Lei YUa8dc09b2021-10-13 18:06:46 +0800194
195#ifndef FEATURE_SENSORS_CACHE
196GetSensorResponse assertion(const Info& sensorInfo)
197{
198 return mapDbusToAssertion(sensorInfo, sensorInfo.sensorPath,
199 sensorInfo.sensorInterface);
200}
201
202GetSensorResponse eventdata2(const Info& sensorInfo)
203{
204 return mapDbusToEventdata2(sensorInfo);
205}
Lei YU8c2c0482021-09-16 17:28:28 +0800206#else
207std::optional<GetSensorResponse> assertion(uint8_t id, const Info& sensorInfo,
208 sdbusplus::message::message& msg)
209{
Lei YUef960c02021-10-13 17:54:59 +0800210 auto type = msg.get_type();
211 if (type == msgTypeSignal)
212 {
213 // This is signal callback
214 std::string interfaceName;
215 msg.read(interfaceName);
216 if (interfaceName != sensorInfo.sensorInterface)
217 {
218 // Not the interface we need
219 return {};
220 }
221 }
222
223 // The assertion may contain multiple properties
224 // So we have to get the properties from DBus anyway
225 auto response = mapDbusToAssertion(sensorInfo, sensorInfo.sensorPath,
226 sensorInfo.sensorInterface);
227
228 if (!sensorCacheMap[id].has_value())
229 {
230 sensorCacheMap[id] = SensorData{};
231 }
232 sensorCacheMap[id]->response = response;
233 return response;
Lei YU8c2c0482021-09-16 17:28:28 +0800234}
235
236std::optional<GetSensorResponse> eventdata2(uint8_t id, const Info& sensorInfo,
237 sdbusplus::message::message& msg)
238{
Lei YUa8dc09b2021-10-13 18:06:46 +0800239 auto type = msg.get_type();
240 if (type == msgTypeSignal)
241 {
242 // This is signal callback
243 std::string interfaceName;
244 msg.read(interfaceName);
245 if (interfaceName != sensorInfo.sensorInterface)
246 {
247 // Not the interface we need
248 return {};
249 }
250 }
251
252 // The eventdata2 may contain multiple properties
253 // So we have to get the properties from DBus anyway
254 auto response = mapDbusToEventdata2(sensorInfo);
255
256 if (!sensorCacheMap[id].has_value())
257 {
258 sensorCacheMap[id] = SensorData{};
259 }
260 sensorCacheMap[id]->response = response;
261 return response;
Lei YU8c2c0482021-09-16 17:28:28 +0800262}
263
264#endif // FEATURE_SENSORS_CACHE
Tom Josephe4014fc2017-09-06 23:57:36 +0530265
Patrick Venture0b02be92018-08-31 11:55:55 -0700266} // namespace get
Tom Joseph816e92b2017-09-06 19:23:00 +0530267
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500268namespace set
269{
270
271IpmiUpdateData makeDbusMsg(const std::string& updateInterface,
272 const std::string& sensorPath,
273 const std::string& command,
274 const std::string& sensorInterface)
275{
276 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
277 using namespace std::string_literals;
278
Patrick Venture0b02be92018-08-31 11:55:55 -0700279 auto dbusService = getService(bus, sensorInterface, sensorPath);
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500280
Patrick Venture0b02be92018-08-31 11:55:55 -0700281 return bus.new_method_call(dbusService.c_str(), sensorPath.c_str(),
282 updateInterface.c_str(), command.c_str());
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500283}
284
Patrick Venture0b02be92018-08-31 11:55:55 -0700285ipmi_ret_t eventdata(const SetSensorReadingReq& cmdData, const Info& sensorInfo,
Deepak Kodihalli1bb0d382017-08-12 02:01:27 -0500286 uint8_t data)
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500287{
Patrick Venture0b02be92018-08-31 11:55:55 -0700288 auto msg =
289 makeDbusMsg("org.freedesktop.DBus.Properties", sensorInfo.sensorPath,
290 "Set", sensorInfo.sensorInterface);
Deepak Kodihalli1bb0d382017-08-12 02:01:27 -0500291
292 const auto& interface = sensorInfo.propertyInterfaces.begin();
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500293 msg.append(interface->first);
294 for (const auto& property : interface->second)
295 {
296 msg.append(property.first);
Dhruvaraj Subhashchandrane245e4e2017-10-03 03:58:05 -0500297 const auto& iter = std::get<OffsetValueMap>(property.second).find(data);
298 if (iter == std::get<OffsetValueMap>(property.second).end())
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500299 {
300 log<level::ERR>("Invalid event data");
301 return IPMI_CC_PARM_OUT_OF_RANGE;
302 }
303 msg.append(iter->second.assert);
304 }
Deepak Kodihalli1bb0d382017-08-12 02:01:27 -0500305 return updateToDbus(msg);
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500306}
307
Patrick Venture0b02be92018-08-31 11:55:55 -0700308ipmi_ret_t assertion(const SetSensorReadingReq& cmdData, const Info& sensorInfo)
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500309{
Brad Bishop06a0abf2018-02-26 20:46:00 -0500310 std::bitset<16> assertionSet(getAssertionSet(cmdData).first);
311 std::bitset<16> deassertionSet(getAssertionSet(cmdData).second);
312 auto bothSet = assertionSet ^ deassertionSet;
313
314 const auto& interface = sensorInfo.propertyInterfaces.begin();
315
316 for (const auto& property : interface->second)
317 {
William A. Kennington III4c008022018-10-12 17:18:14 -0700318 std::optional<Value> tmp;
Brad Bishop06a0abf2018-02-26 20:46:00 -0500319 for (const auto& value : std::get<OffsetValueMap>(property.second))
320 {
321 if (bothSet.size() <= value.first || !bothSet.test(value.first))
322 {
323 // A BIOS shouldn't do this but ignore if they do.
324 continue;
325 }
326
327 if (assertionSet.test(value.first))
328 {
329 tmp = value.second.assert;
330 break;
331 }
332 if (deassertionSet.test(value.first))
333 {
334 tmp = value.second.deassert;
335 break;
336 }
337 }
338
William A. Kennington III4c008022018-10-12 17:18:14 -0700339 if (tmp)
Brad Bishop06a0abf2018-02-26 20:46:00 -0500340 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700341 auto msg = makeDbusMsg("org.freedesktop.DBus.Properties",
342 sensorInfo.sensorPath, "Set",
343 sensorInfo.sensorInterface);
Brad Bishop06a0abf2018-02-26 20:46:00 -0500344 msg.append(interface->first);
345 msg.append(property.first);
William A. Kennington III4c008022018-10-12 17:18:14 -0700346 msg.append(*tmp);
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500347
Brad Bishop06a0abf2018-02-26 20:46:00 -0500348 auto rc = updateToDbus(msg);
349 if (rc)
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500350 {
Brad Bishop06a0abf2018-02-26 20:46:00 -0500351 return rc;
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500352 }
353 }
354 }
Brad Bishop06a0abf2018-02-26 20:46:00 -0500355
356 return IPMI_CC_OK;
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500357}
Deepak Kodihalli1bb0d382017-08-12 02:01:27 -0500358
Patrick Venture0b02be92018-08-31 11:55:55 -0700359} // namespace set
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500360
361namespace notify
362{
363
364IpmiUpdateData makeDbusMsg(const std::string& updateInterface,
365 const std::string& sensorPath,
366 const std::string& command,
367 const std::string& sensorInterface)
368{
369 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
370 using namespace std::string_literals;
371
Dhruvaraj Subhashchandranf915f852017-09-14 07:01:48 -0500372 static const auto dbusPath = "/xyz/openbmc_project/inventory"s;
373 std::string dbusService = ipmi::getService(bus, updateInterface, dbusPath);
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500374
Patrick Venture0b02be92018-08-31 11:55:55 -0700375 return bus.new_method_call(dbusService.c_str(), dbusPath.c_str(),
376 updateInterface.c_str(), command.c_str());
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500377}
378
Patrick Venture0b02be92018-08-31 11:55:55 -0700379ipmi_ret_t assertion(const SetSensorReadingReq& cmdData, const Info& sensorInfo)
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500380{
Patrick Venture0b02be92018-08-31 11:55:55 -0700381 auto msg = makeDbusMsg(sensorInfo.sensorInterface, sensorInfo.sensorPath,
382 "Notify", sensorInfo.sensorInterface);
Deepak Kodihalli1bb0d382017-08-12 02:01:27 -0500383
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500384 std::bitset<16> assertionSet(getAssertionSet(cmdData).first);
385 std::bitset<16> deassertionSet(getAssertionSet(cmdData).second);
386 ipmi::sensor::ObjectMap objects;
387 ipmi::sensor::InterfaceMap interfaces;
Deepak Kodihalli1bb0d382017-08-12 02:01:27 -0500388 for (const auto& interface : sensorInfo.propertyInterfaces)
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500389 {
Santosh Puranikbbf8bd62019-05-01 19:02:52 +0530390 // An interface with no properties - It is possible that the sensor
391 // object on DBUS implements a DBUS interface with no properties.
392 // Make sure we add the interface to the list if interfaces on the
393 // object with an empty property map.
394 if (interface.second.empty())
395 {
396 interfaces.emplace(interface.first, ipmi::sensor::PropertyMap{});
397 continue;
398 }
Patrick Venture0b02be92018-08-31 11:55:55 -0700399 // For a property like functional state the result will be
400 // calculated based on the true value of all conditions.
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500401 for (const auto& property : interface.second)
402 {
403 ipmi::sensor::PropertyMap props;
404 bool valid = false;
Dhruvaraj Subhashchandrane245e4e2017-10-03 03:58:05 -0500405 auto result = true;
406 for (const auto& value : std::get<OffsetValueMap>(property.second))
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500407 {
408 if (assertionSet.test(value.first))
409 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700410 // Skip update if skipOn is ASSERT
Dhruvaraj Subhashchandrane84841c2017-08-22 07:40:27 -0500411 if (SkipAssertion::ASSERT == value.second.skip)
412 {
413 return IPMI_CC_OK;
414 }
Vernon Maueryf442e112019-04-09 11:44:36 -0700415 result = result && std::get<bool>(value.second.assert);
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500416 valid = true;
417 }
418 else if (deassertionSet.test(value.first))
419 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700420 // Skip update if skipOn is DEASSERT
Dhruvaraj Subhashchandrane84841c2017-08-22 07:40:27 -0500421 if (SkipAssertion::DEASSERT == value.second.skip)
422 {
423 return IPMI_CC_OK;
424 }
Vernon Maueryf442e112019-04-09 11:44:36 -0700425 result = result && std::get<bool>(value.second.deassert);
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500426 valid = true;
427 }
428 }
Dhruvaraj Subhashchandrane245e4e2017-10-03 03:58:05 -0500429 for (const auto& value :
Patrick Venture0b02be92018-08-31 11:55:55 -0700430 std::get<PreReqOffsetValueMap>(property.second))
Dhruvaraj Subhashchandrane245e4e2017-10-03 03:58:05 -0500431 {
432 if (assertionSet.test(value.first))
433 {
Vernon Maueryf442e112019-04-09 11:44:36 -0700434 result = result && std::get<bool>(value.second.assert);
Dhruvaraj Subhashchandrane245e4e2017-10-03 03:58:05 -0500435 }
436 else if (deassertionSet.test(value.first))
437 {
Vernon Maueryf442e112019-04-09 11:44:36 -0700438 result = result && std::get<bool>(value.second.deassert);
Dhruvaraj Subhashchandrane245e4e2017-10-03 03:58:05 -0500439 }
440 }
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500441 if (valid)
442 {
Dhruvaraj Subhashchandrane245e4e2017-10-03 03:58:05 -0500443 props.emplace(property.first, result);
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500444 interfaces.emplace(interface.first, std::move(props));
445 }
446 }
447 }
Dhruvaraj Subhashchandrane84841c2017-08-22 07:40:27 -0500448
Deepak Kodihalli1bb0d382017-08-12 02:01:27 -0500449 objects.emplace(sensorInfo.sensorPath, std::move(interfaces));
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500450 msg.append(std::move(objects));
Deepak Kodihalli1bb0d382017-08-12 02:01:27 -0500451 return updateToDbus(msg);
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500452}
Tom Joseph816e92b2017-09-06 19:23:00 +0530453
Patrick Venture0b02be92018-08-31 11:55:55 -0700454} // namespace notify
Tom Joseph816e92b2017-09-06 19:23:00 +0530455
456namespace inventory
457{
458
459namespace get
460{
461
462GetSensorResponse assertion(const Info& sensorInfo)
463{
Vernon Mauery185b9f82018-07-20 10:52:36 -0700464 namespace fs = std::filesystem;
Tom Joseph816e92b2017-09-06 19:23:00 +0530465
466 fs::path path{ipmi::sensor::inventoryRoot};
467 path += sensorInfo.sensorPath;
468
469 return ipmi::sensor::get::mapDbusToAssertion(
Patrick Venture0b02be92018-08-31 11:55:55 -0700470 sensorInfo, path.string(),
471 sensorInfo.propertyInterfaces.begin()->first);
Tom Joseph816e92b2017-09-06 19:23:00 +0530472}
473
Patrick Venture0b02be92018-08-31 11:55:55 -0700474} // namespace get
Tom Joseph816e92b2017-09-06 19:23:00 +0530475
476} // namespace inventory
Patrick Venture0b02be92018-08-31 11:55:55 -0700477} // namespace sensor
478} // namespace ipmi