-
Notifications
You must be signed in to change notification settings - Fork 75
/
sensordatahandler.hpp
670 lines (586 loc) · 20.4 KB
/
sensordatahandler.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
#pragma once
#include "config.h"
#include "sensorhandler.hpp"
#include <ipmid/api.hpp>
#include <ipmid/types.hpp>
#include <ipmid/utils.hpp>
#include <phosphor-logging/elog-errors.hpp>
#include <phosphor-logging/lg2.hpp>
#include <sdbusplus/message/types.hpp>
#include <cmath>
#ifdef FEATURE_SENSORS_CACHE
extern ipmi::sensor::SensorCacheMap sensorCacheMap;
// The signal's message type is 0x04 from DBus spec:
// https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-messages
static constexpr auto msgTypeSignal = 0x04;
#endif
namespace ipmi
{
namespace sensor
{
using Assertion = uint16_t;
using Deassertion = uint16_t;
using AssertionSet = std::pair<Assertion, Deassertion>;
using Service = std::string;
using Path = std::string;
using Interface = std::string;
using ServicePath = std::pair<Path, Service>;
using Interfaces = std::vector<Interface>;
using MapperResponseType = std::map<Path, std::map<Service, Interfaces>>;
using PropertyMap = ipmi::PropertyMap;
using namespace phosphor::logging;
/** @brief Make assertion set from input data
* @param[in] cmdData - Input sensor data
* @return pair of assertion and deassertion set
*/
AssertionSet getAssertionSet(const SetSensorReadingReq& cmdData);
/** @brief send the message to DBus
* @param[in] msg - message to send
* @return failure status in IPMI error code
*/
ipmi_ret_t updateToDbus(IpmiUpdateData& msg);
namespace get
{
/** @brief Populate sensor name from the D-Bus property associated with the
* sensor. In the example entry from the yaml, the name of the D-bus
* property "AttemptsLeft" is the sensor name.
*
* 0x07:
* sensorType: 195
* path: /xyz/openbmc_project/state/host0
* sensorReadingType: 0x6F
* serviceInterface: org.freedesktop.DBus.Properties
* readingType: readingAssertion
* sensorNamePattern: nameProperty
* interfaces:
* xyz.openbmc_project.Control.Boot.RebootAttempts:
* AttemptsLeft:
* Offsets:
* 0xFF:
* type: uint32_t
*
*
* @param[in] sensorInfo - Dbus info related to sensor.
*
* @return On success return the sensor name for the sensor.
*/
inline SensorName nameProperty(const Info& sensorInfo)
{
return sensorInfo.propertyInterfaces.begin()->second.begin()->first;
}
/** @brief Populate sensor name from the D-Bus object associated with the
* sensor. If the object path is /system/chassis/motherboard/dimm0 then
* the leaf dimm0 is considered as the sensor name.
*
* @param[in] sensorInfo - Dbus info related to sensor.
*
* @return On success return the sensor name for the sensor.
*/
inline SensorName nameLeaf(const Info& sensorInfo)
{
return sensorInfo.sensorPath.substr(
sensorInfo.sensorPath.find_last_of('/') + 1,
sensorInfo.sensorPath.length());
}
/** @brief Populate sensor name from the D-Bus object associated with the
* sensor and the property.
* If the object path is /xyz/openbmc_project/inventory/Fan0 and
* the property is Present, the leaf Fan0 and the Property is
* joined to Fan0_Present as the sensor name.
*
* @param[in] sensorInfo - Dbus info related to sensor.
*
* @return On success return the sensor name for the sensor.
*/
inline SensorName nameLeafProperty(const Info& sensorInfo)
{
return nameLeaf(sensorInfo) + "_" + nameProperty(sensorInfo);
}
/** @brief Populate sensor name from the D-Bus object associated with the
* sensor. If the object path is /system/chassis/motherboard/cpu0/core0
* then the sensor name is cpu0_core0. The leaf and the parent is put
* together to get the sensor name.
*
* @param[in] sensorInfo - Dbus info related to sensor.
*
* @return On success return the sensor name for the sensor.
*/
SensorName nameParentLeaf(const Info& sensorInfo);
/**
* @brief Helper function to map the dbus info to sensor's assertion status
* for the get sensor reading command.
*
* @param[in] sensorInfo - Dbus info related to sensor.
* @param[in] path - Dbus object path.
* @param[in] interface - Dbus interface.
*
* @return Response for get sensor reading command.
*/
GetSensorResponse mapDbusToAssertion(const Info& sensorInfo,
const InstancePath& path,
const DbusInterface& interface);
#ifndef FEATURE_SENSORS_CACHE
/**
* @brief Map the Dbus info to sensor's assertion status in the Get sensor
* reading command response.
*
* @param[in] sensorInfo - Dbus info related to sensor.
*
* @return Response for get sensor reading command.
*/
GetSensorResponse assertion(const Info& sensorInfo);
/**
* @brief Maps the Dbus info to the reading field in the Get sensor reading
* command response.
*
* @param[in] sensorInfo - Dbus info related to sensor.
*
* @return Response for get sensor reading command.
*/
GetSensorResponse eventdata2(const Info& sensorInfo);
/**
* @brief readingAssertion is a case where the entire assertion state field
* serves as the sensor value.
*
* @tparam T - type of the dbus property related to sensor.
* @param[in] sensorInfo - Dbus info related to sensor.
*
* @return Response for get sensor reading command.
*/
template <typename T>
GetSensorResponse readingAssertion(const Info& sensorInfo)
{
sdbusplus::bus_t bus{ipmid_get_sd_bus_connection()};
GetSensorResponse response{};
enableScanning(&response);
auto service = ipmi::getService(bus, sensorInfo.sensorInterface,
sensorInfo.sensorPath);
auto propValue = ipmi::getDbusProperty(
bus, service, sensorInfo.sensorPath,
sensorInfo.propertyInterfaces.begin()->first,
sensorInfo.propertyInterfaces.begin()->second.begin()->first);
setAssertionBytes(static_cast<uint16_t>(std::get<T>(propValue)), &response);
return response;
}
/** @brief Map the Dbus info to the reading field in the Get sensor reading
* command response
*
* @tparam T - type of the dbus property related to sensor.
* @param[in] sensorInfo - Dbus info related to sensor.
*
* @return Response for get sensor reading command.
*/
template <typename T>
GetSensorResponse readingData(const Info& sensorInfo)
{
sdbusplus::bus_t bus{ipmid_get_sd_bus_connection()};
GetSensorResponse response{};
enableScanning(&response);
auto service = ipmi::getService(bus, sensorInfo.sensorInterface,
sensorInfo.sensorPath);
#ifdef UPDATE_FUNCTIONAL_ON_FAIL
// Check the OperationalStatus interface for functional property
if (sensorInfo.propertyInterfaces.begin()->first ==
"xyz.openbmc_project.Sensor.Value")
{
bool functional = true;
try
{
auto funcValue = ipmi::getDbusProperty(
bus, service, sensorInfo.sensorPath,
"xyz.openbmc_project.State.Decorator.OperationalStatus",
"Functional");
functional = std::get<bool>(funcValue);
}
catch (...)
{
// No-op if Functional property could not be found since this
// check is only valid for Sensor.Value read for hwmonio
}
if (!functional)
{
throw SensorFunctionalError();
}
}
#endif
auto propValue = ipmi::getDbusProperty(
bus, service, sensorInfo.sensorPath,
sensorInfo.propertyInterfaces.begin()->first,
sensorInfo.propertyInterfaces.begin()->second.begin()->first);
double value = std::get<T>(propValue) *
std::pow(10, sensorInfo.scale - sensorInfo.exponentR);
int32_t rawData =
(value - sensorInfo.scaledOffset) / sensorInfo.coefficientM;
constexpr uint8_t sensorUnitsSignedBits = 2 << 6;
constexpr uint8_t signedDataFormat = 0x80;
// if sensorUnits1 [7:6] = 10b, sensor is signed
int32_t minClamp;
int32_t maxClamp;
if ((sensorInfo.sensorUnits1 & sensorUnitsSignedBits) == signedDataFormat)
{
minClamp = std::numeric_limits<int8_t>::lowest();
maxClamp = std::numeric_limits<int8_t>::max();
}
else
{
minClamp = std::numeric_limits<uint8_t>::lowest();
maxClamp = std::numeric_limits<uint8_t>::max();
}
setReading(static_cast<uint8_t>(std::clamp(rawData, minClamp, maxClamp)),
&response);
if (!std::isfinite(value))
{
response.readingOrStateUnavailable = 1;
}
bool critAlarmHigh;
try
{
critAlarmHigh = std::get<bool>(ipmi::getDbusProperty(
bus, service, sensorInfo.sensorPath,
"xyz.openbmc_project.Sensor.Threshold.Critical",
"CriticalAlarmHigh"));
}
catch (const std::exception& e)
{
critAlarmHigh = false;
}
bool critAlarmLow;
try
{
critAlarmLow = std::get<bool>(ipmi::getDbusProperty(
bus, service, sensorInfo.sensorPath,
"xyz.openbmc_project.Sensor.Threshold.Critical",
"CriticalAlarmLow"));
}
catch (const std::exception& e)
{
critAlarmLow = false;
}
bool warningAlarmHigh;
try
{
warningAlarmHigh = std::get<bool>(ipmi::getDbusProperty(
bus, service, sensorInfo.sensorPath,
"xyz.openbmc_project.Sensor.Threshold.Warning",
"WarningAlarmHigh"));
}
catch (const std::exception& e)
{
warningAlarmHigh = false;
}
bool warningAlarmLow;
try
{
warningAlarmLow = std::get<bool>(ipmi::getDbusProperty(
bus, service, sensorInfo.sensorPath,
"xyz.openbmc_project.Sensor.Threshold.Warning", "WarningAlarmLow"));
}
catch (const std::exception& e)
{
warningAlarmLow = false;
}
response.thresholdLevelsStates =
(static_cast<uint8_t>(critAlarmHigh) << 3) |
(static_cast<uint8_t>(critAlarmLow) << 2) |
(static_cast<uint8_t>(warningAlarmHigh) << 1) |
(static_cast<uint8_t>(warningAlarmLow));
return response;
}
#else
/**
* @brief Map the Dbus info to sensor's assertion status in the Get sensor
* reading command response.
*
* @param[in] id - The sensor id
* @param[in] sensorInfo - Dbus info related to sensor.
* @param[in] msg - Dbus message from match callback.
*
* @return Response for get sensor reading command.
*/
std::optional<GetSensorResponse> assertion(uint8_t id, const Info& sensorInfo,
const PropertyMap& properties);
/**
* @brief Maps the Dbus info to the reading field in the Get sensor reading
* command response.
*
* @param[in] id - The sensor id
* @param[in] sensorInfo - Dbus info related to sensor.
* @param[in] msg - Dbus message from match callback.
*
* @return Response for get sensor reading command.
*/
std::optional<GetSensorResponse> eventdata2(uint8_t id, const Info& sensorInfo,
const PropertyMap& properties);
/**
* @brief readingAssertion is a case where the entire assertion state field
* serves as the sensor value.
*
* @tparam T - type of the dbus property related to sensor.
* @param[in] id - The sensor id
* @param[in] sensorInfo - Dbus info related to sensor.
* @param[in] msg - Dbus message from match callback.
*
* @return Response for get sensor reading command.
*/
template <typename T>
std::optional<GetSensorResponse> readingAssertion(
uint8_t id, const Info& sensorInfo, const PropertyMap& properties)
{
GetSensorResponse response{};
enableScanning(&response);
auto iter = properties.find(
sensorInfo.propertyInterfaces.begin()->second.begin()->first);
if (iter == properties.end())
{
return {};
}
setAssertionBytes(static_cast<uint16_t>(std::get<T>(iter->second)),
&response);
if (!sensorCacheMap[id].has_value())
{
sensorCacheMap[id] = SensorData{};
}
sensorCacheMap[id]->response = response;
return response;
}
/** @brief Get sensor reading from the dbus message from match
*
* @tparam T - type of the dbus property related to sensor.
* @param[in] id - The sensor id
* @param[in] sensorInfo - Dbus info related to sensor.
* @param[in] msg - Dbus message from match callback.
*
* @return Response for get sensor reading command.
*/
template <typename T>
std::optional<GetSensorResponse> readingData(uint8_t id, const Info& sensorInfo,
const PropertyMap& properties)
{
auto iter = properties.find("Functional");
if (iter != properties.end())
{
sensorCacheMap[id]->functional = std::get<bool>(iter->second);
}
iter = properties.find("Available");
if (iter != properties.end())
{
sensorCacheMap[id]->available = std::get<bool>(iter->second);
}
#ifdef UPDATE_FUNCTIONAL_ON_FAIL
if (sensorCacheMap[id])
{
if (!sensorCacheMap[id]->functional)
{
throw SensorFunctionalError();
}
}
#endif
GetSensorResponse response{};
enableScanning(&response);
iter = properties.find(
sensorInfo.propertyInterfaces.begin()->second.begin()->first);
if (iter == properties.end())
{
return {};
}
double value = std::get<T>(iter->second) *
std::pow(10, sensorInfo.scale - sensorInfo.exponentR);
int32_t rawData =
(value - sensorInfo.scaledOffset) / sensorInfo.coefficientM;
constexpr uint8_t sensorUnitsSignedBits = 2 << 6;
constexpr uint8_t signedDataFormat = 0x80;
// if sensorUnits1 [7:6] = 10b, sensor is signed
if ((sensorInfo.sensorUnits1 & sensorUnitsSignedBits) == signedDataFormat)
{
if (rawData > std::numeric_limits<int8_t>::max() ||
rawData < std::numeric_limits<int8_t>::lowest())
{
lg2::error("Value out of range");
throw std::out_of_range("Value out of range");
}
setReading(static_cast<int8_t>(rawData), &response);
}
else
{
if (rawData > std::numeric_limits<uint8_t>::max() ||
rawData < std::numeric_limits<uint8_t>::lowest())
{
lg2::error("Value out of range");
throw std::out_of_range("Value out of range");
}
setReading(static_cast<uint8_t>(rawData), &response);
}
if (!std::isfinite(value))
{
response.readingOrStateUnavailable = 1;
}
if (!sensorCacheMap[id].has_value())
{
sensorCacheMap[id] = SensorData{};
}
sensorCacheMap[id]->response = response;
return response;
}
#endif // FEATURE_SENSORS_CACHE
} // namespace get
namespace set
{
/** @brief Make a DBus message for a Dbus call
* @param[in] updateInterface - Interface name
* @param[in] sensorPath - Path of the sensor
* @param[in] command - command to be executed
* @param[in] sensorInterface - DBus interface of sensor
* @return a dbus message
*/
IpmiUpdateData makeDbusMsg(const std::string& updateInterface,
const std::string& sensorPath,
const std::string& command,
const std::string& sensorInterface);
/** @brief Update d-bus based on assertion type sensor data
* @param[in] cmdData - input sensor data
* @param[in] sensorInfo - sensor d-bus info
* @return a IPMI error code
*/
ipmi_ret_t assertion(const SetSensorReadingReq& cmdData,
const Info& sensorInfo);
/** @brief Update d-bus based on a reading assertion
* @tparam T - type of d-bus property mapping this sensor
* @param[in] cmdData - input sensor data
* @param[in] sensorInfo - sensor d-bus info
* @return a IPMI error code
*/
template <typename T>
ipmi_ret_t readingAssertion(const SetSensorReadingReq& cmdData,
const Info& sensorInfo)
{
auto msg =
makeDbusMsg("org.freedesktop.DBus.Properties", sensorInfo.sensorPath,
"Set", sensorInfo.sensorInterface);
const auto& interface = sensorInfo.propertyInterfaces.begin();
msg.append(interface->first);
for (const auto& property : interface->second)
{
msg.append(property.first);
std::variant<T> value = static_cast<T>(
(cmdData.assertOffset8_14 << 8) | cmdData.assertOffset0_7);
msg.append(value);
}
return updateToDbus(msg);
}
/** @brief Update d-bus based on a discrete reading
* @param[in] cmdData - input sensor data
* @param[in] sensorInfo - sensor d-bus info
* @return an IPMI error code
*/
template <typename T>
ipmi_ret_t readingData(const SetSensorReadingReq& cmdData,
const Info& sensorInfo)
{
T raw_value = (sensorInfo.coefficientM * cmdData.reading) +
sensorInfo.scaledOffset;
raw_value *= std::pow(10, sensorInfo.exponentR - sensorInfo.scale);
auto msg =
makeDbusMsg("org.freedesktop.DBus.Properties", sensorInfo.sensorPath,
"Set", sensorInfo.sensorInterface);
const auto& interface = sensorInfo.propertyInterfaces.begin();
msg.append(interface->first);
for (const auto& property : interface->second)
{
msg.append(property.first);
std::variant<T> value = raw_value;
msg.append(value);
}
return updateToDbus(msg);
}
/** @brief Update d-bus based on eventdata type sensor data
* @param[in] cmdData - input sensor data
* @param[in] sensorInfo - sensor d-bus info
* @return a IPMI error code
*/
ipmi_ret_t eventdata(const SetSensorReadingReq& cmdData, const Info& sensorInfo,
uint8_t data);
/** @brief Update d-bus based on eventdata1 type sensor data
* @param[in] cmdData - input sensor data
* @param[in] sensorInfo - sensor d-bus info
* @return a IPMI error code
*/
inline ipmi_ret_t eventdata1(const SetSensorReadingReq& cmdData,
const Info& sensorInfo)
{
return eventdata(cmdData, sensorInfo, cmdData.eventData1);
}
/** @brief Update d-bus based on eventdata2 type sensor data
* @param[in] cmdData - input sensor data
* @param[in] sensorInfo - sensor d-bus info
* @return a IPMI error code
*/
inline ipmi_ret_t eventdata2(const SetSensorReadingReq& cmdData,
const Info& sensorInfo)
{
return eventdata(cmdData, sensorInfo, cmdData.eventData2);
}
/** @brief Update d-bus based on eventdata3 type sensor data
* @param[in] cmdData - input sensor data
* @param[in] sensorInfo - sensor d-bus info
* @return a IPMI error code
*/
inline ipmi_ret_t eventdata3(const SetSensorReadingReq& cmdData,
const Info& sensorInfo)
{
return eventdata(cmdData, sensorInfo, cmdData.eventData3);
}
} // namespace set
namespace notify
{
/** @brief Make a DBus message for a Dbus call
* @param[in] updateInterface - Interface name
* @param[in] sensorPath - Path of the sensor
* @param[in] command - command to be executed
* @param[in] sensorInterface - DBus interface of sensor
* @return a dbus message
*/
IpmiUpdateData makeDbusMsg(const std::string& updateInterface,
const std::string& sensorPath,
const std::string& command,
const std::string& sensorInterface);
/** @brief Update d-bus based on assertion type sensor data
* @param[in] interfaceMap - sensor interface
* @param[in] cmdData - input sensor data
* @param[in] sensorInfo - sensor d-bus info
* @return a IPMI error code
*/
ipmi_ret_t assertion(const SetSensorReadingReq& cmdData,
const Info& sensorInfo);
} // namespace notify
namespace inventory
{
namespace get
{
#ifndef FEATURE_SENSORS_CACHE
/**
* @brief Map the Dbus info to sensor's assertion status in the Get sensor
* reading command response.
*
* @param[in] sensorInfo - Dbus info related to sensor.
*
* @return Response for get sensor reading command.
*/
GetSensorResponse assertion(const Info& sensorInfo);
#else
/**
* @brief Map the Dbus info to sensor's assertion status in the Get sensor
* reading command response.
*
* @param[in] id - The sensor id
* @param[in] sensorInfo - Dbus info related to sensor.
* @param[in] msg - Dbus message from match callback.
*
* @return Response for get sensor reading command.
*/
std::optional<GetSensorResponse> assertion(uint8_t id, const Info& sensorInfo,
const PropertyMap& properties);
#endif
} // namespace get
} // namespace inventory
} // namespace sensor
} // namespace ipmi