blob: c8fef9c10e8bda0b1091793214514601ab6e7acf [file] [log] [blame]
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001/*
2// Copyright (c) 2017 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*/
16
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070017#include <boost/algorithm/string.hpp>
18#include <boost/container/flat_map.hpp>
19#include <chrono>
20#include <cmath>
21#include <commandutils.hpp>
22#include <iostream>
Jason M. Bills99b78ec2019-01-18 10:42:18 -080023#include <ipmi_to_redfish_hooks.hpp>
James Feist2a265d52019-04-08 11:16:27 -070024#include <ipmid/api.hpp>
Vernon Mauery5480ef62019-03-20 13:43:11 -070025#include <ipmid/utils.hpp>
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070026#include <phosphor-logging/log.hpp>
27#include <sdbusplus/bus.hpp>
28#include <sdrutils.hpp>
29#include <sensorcommands.hpp>
30#include <sensorutils.hpp>
31#include <storagecommands.hpp>
32#include <string>
33
34namespace ipmi
35{
36using ManagedObjectType =
37 std::map<sdbusplus::message::object_path,
38 std::map<std::string, std::map<std::string, DbusVariant>>>;
39
40using SensorMap = std::map<std::string, std::map<std::string, DbusVariant>>;
41
42static constexpr int sensorListUpdatePeriod = 10;
43static constexpr int sensorMapUpdatePeriod = 2;
44
45constexpr size_t maxSDRTotalSize =
46 76; // Largest SDR Record Size (type 01) + SDR Overheader Size
47constexpr static const uint32_t noTimestamp = 0xFFFFFFFF;
48
49static uint16_t sdrReservationID;
50static uint32_t sdrLastAdd = noTimestamp;
51static uint32_t sdrLastRemove = noTimestamp;
52
Richard Marian Thomaiyar01fbcb52018-11-19 22:04:34 +053053SensorSubTree sensorTree;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070054static boost::container::flat_map<std::string, ManagedObjectType> SensorCache;
55
Jason M. Bills17add592018-11-12 14:30:12 -080056// Specify the comparison required to sort and find char* map objects
57struct CmpStr
58{
59 bool operator()(const char *a, const char *b) const
60 {
61 return std::strcmp(a, b) < 0;
62 }
63};
64const static boost::container::flat_map<const char *, SensorUnits, CmpStr>
65 sensorUnits{{{"temperature", SensorUnits::degreesC},
66 {"voltage", SensorUnits::volts},
67 {"current", SensorUnits::amps},
68 {"fan_tach", SensorUnits::rpm},
69 {"power", SensorUnits::watts}}};
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070070
71void registerSensorFunctions() __attribute__((constructor));
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070072
73static sdbusplus::bus::match::match sensorAdded(
Vernon Mauery15419dd2019-05-24 09:40:30 -070074 *getSdBus(),
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070075 "type='signal',member='InterfacesAdded',arg0path='/xyz/openbmc_project/"
76 "sensors/'",
77 [](sdbusplus::message::message &m) {
78 sensorTree.clear();
79 sdrLastAdd = std::chrono::duration_cast<std::chrono::seconds>(
80 std::chrono::system_clock::now().time_since_epoch())
81 .count();
82 });
83
84static sdbusplus::bus::match::match sensorRemoved(
Vernon Mauery15419dd2019-05-24 09:40:30 -070085 *getSdBus(),
Jason M. Bills3f7c5e42018-10-03 14:00:41 -070086 "type='signal',member='InterfacesRemoved',arg0path='/xyz/openbmc_project/"
87 "sensors/'",
88 [](sdbusplus::message::message &m) {
89 sensorTree.clear();
90 sdrLastRemove = std::chrono::duration_cast<std::chrono::seconds>(
91 std::chrono::system_clock::now().time_since_epoch())
92 .count();
93 });
94
James Feist392786a2019-03-19 13:36:10 -070095// this keeps track of deassertions for sensor event status command. A
96// deasertion can only happen if an assertion was seen first.
97static boost::container::flat_map<
98 std::string, boost::container::flat_map<std::string, std::optional<bool>>>
99 thresholdDeassertMap;
100
101static sdbusplus::bus::match::match thresholdChanged(
Vernon Mauery15419dd2019-05-24 09:40:30 -0700102 *getSdBus(),
James Feist392786a2019-03-19 13:36:10 -0700103 "type='signal',member='PropertiesChanged',interface='org.freedesktop.DBus."
104 "Properties',arg0namespace='xyz.openbmc_project.Sensor.Threshold'",
105 [](sdbusplus::message::message &m) {
106 boost::container::flat_map<std::string, std::variant<bool, double>>
107 values;
108 m.read(std::string(), values);
109
110 auto findAssert =
111 std::find_if(values.begin(), values.end(), [](const auto &pair) {
112 return pair.first.find("Alarm") != std::string::npos;
113 });
114 if (findAssert != values.end())
115 {
116 auto ptr = std::get_if<bool>(&(findAssert->second));
117 if (ptr == nullptr)
118 {
119 phosphor::logging::log<phosphor::logging::level::ERR>(
120 "thresholdChanged: Assert non bool");
121 return;
122 }
123 if (*ptr)
124 {
125 phosphor::logging::log<phosphor::logging::level::INFO>(
126 "thresholdChanged: Assert",
127 phosphor::logging::entry("SENSOR=%s", m.get_path()));
128 thresholdDeassertMap[m.get_path()][findAssert->first] = *ptr;
129 }
130 else
131 {
132 auto &value =
133 thresholdDeassertMap[m.get_path()][findAssert->first];
134 if (value)
135 {
136 phosphor::logging::log<phosphor::logging::level::INFO>(
137 "thresholdChanged: deassert",
138 phosphor::logging::entry("SENSOR=%s", m.get_path()));
139 value = *ptr;
140 }
141 }
142 }
143 });
144
James Feistaecaef72019-04-26 10:30:32 -0700145static void getSensorMaxMin(const SensorMap &sensorMap, double &max,
146 double &min)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700147{
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700148 max = 127;
149 min = -128;
150
James Feistaecaef72019-04-26 10:30:32 -0700151 auto sensorObject = sensorMap.find("xyz.openbmc_project.Sensor.Value");
152 auto critical =
153 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical");
154 auto warning =
155 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning");
156
157 if (sensorObject != sensorMap.end())
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700158 {
James Feistaecaef72019-04-26 10:30:32 -0700159 auto maxMap = sensorObject->second.find("MaxValue");
160 auto minMap = sensorObject->second.find("MinValue");
161
162 if (maxMap != sensorObject->second.end())
163 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700164 max = std::visit(VariantToDoubleVisitor(), maxMap->second);
James Feistaecaef72019-04-26 10:30:32 -0700165 }
166 if (minMap != sensorObject->second.end())
167 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700168 min = std::visit(VariantToDoubleVisitor(), minMap->second);
James Feistaecaef72019-04-26 10:30:32 -0700169 }
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700170 }
James Feistaecaef72019-04-26 10:30:32 -0700171 if (critical != sensorMap.end())
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700172 {
James Feistaecaef72019-04-26 10:30:32 -0700173 auto lower = critical->second.find("CriticalLow");
174 auto upper = critical->second.find("CriticalHigh");
175 if (lower != critical->second.end())
176 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700177 double value = std::visit(VariantToDoubleVisitor(), lower->second);
James Feistaecaef72019-04-26 10:30:32 -0700178 min = std::min(value, min);
179 }
180 if (upper != critical->second.end())
181 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700182 double value = std::visit(VariantToDoubleVisitor(), upper->second);
James Feistaecaef72019-04-26 10:30:32 -0700183 max = std::max(value, max);
184 }
185 }
186 if (warning != sensorMap.end())
187 {
188
189 auto lower = warning->second.find("WarningLow");
190 auto upper = warning->second.find("WarningHigh");
191 if (lower != warning->second.end())
192 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700193 double value = std::visit(VariantToDoubleVisitor(), lower->second);
James Feistaecaef72019-04-26 10:30:32 -0700194 min = std::min(value, min);
195 }
196 if (upper != warning->second.end())
197 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700198 double value = std::visit(VariantToDoubleVisitor(), upper->second);
James Feistaecaef72019-04-26 10:30:32 -0700199 max = std::max(value, max);
200 }
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700201 }
202}
203
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700204static bool getSensorMap(std::string sensorConnection, std::string sensorPath,
205 SensorMap &sensorMap)
206{
207 static boost::container::flat_map<
208 std::string, std::chrono::time_point<std::chrono::steady_clock>>
209 updateTimeMap;
210
211 auto updateFind = updateTimeMap.find(sensorConnection);
212 auto lastUpdate = std::chrono::time_point<std::chrono::steady_clock>();
213 if (updateFind != updateTimeMap.end())
214 {
215 lastUpdate = updateFind->second;
216 }
217
218 auto now = std::chrono::steady_clock::now();
219
220 if (std::chrono::duration_cast<std::chrono::seconds>(now - lastUpdate)
221 .count() > sensorMapUpdatePeriod)
222 {
223 updateTimeMap[sensorConnection] = now;
224
Vernon Mauery15419dd2019-05-24 09:40:30 -0700225 std::shared_ptr<sdbusplus::asio::connection> dbus = getSdBus();
226 auto managedObj = dbus->new_method_call(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700227 sensorConnection.c_str(), "/", "org.freedesktop.DBus.ObjectManager",
228 "GetManagedObjects");
229
230 ManagedObjectType managedObjects;
231 try
232 {
Vernon Mauery15419dd2019-05-24 09:40:30 -0700233 auto reply = dbus->call(managedObj);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700234 reply.read(managedObjects);
235 }
236 catch (sdbusplus::exception_t &)
237 {
238 phosphor::logging::log<phosphor::logging::level::ERR>(
239 "Error getting managed objects from connection",
240 phosphor::logging::entry("CONNECTION=%s",
241 sensorConnection.c_str()));
242 return false;
243 }
244
245 SensorCache[sensorConnection] = managedObjects;
246 }
247 auto connection = SensorCache.find(sensorConnection);
248 if (connection == SensorCache.end())
249 {
250 return false;
251 }
252 auto path = connection->second.find(sensorPath);
253 if (path == connection->second.end())
254 {
255 return false;
256 }
257 sensorMap = path->second;
258
259 return true;
260}
261
262/* sensor commands */
263ipmi_ret_t ipmiSensorWildcardHandler(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
264 ipmi_request_t request,
265 ipmi_response_t response,
266 ipmi_data_len_t dataLen,
267 ipmi_context_t context)
268{
269 *dataLen = 0;
270 printCommand(+netfn, +cmd);
271 return IPMI_CC_INVALID;
272}
273
James Feist7aaf3fe2019-06-25 11:52:11 -0700274namespace meHealth
275{
276constexpr const char *busname = "xyz.openbmc_project.NodeManagerProxy";
277constexpr const char *path = "/xyz/openbmc_project/status/me";
278constexpr const char *interface = "xyz.openbmc_project.SetHealth";
279constexpr const char *method = "SetHealth";
280constexpr const char *critical = "critical";
281constexpr const char *warning = "warning";
282constexpr const char *ok = "ok";
283} // namespace meHealth
284
285static void setMeStatus(uint8_t eventData2, uint8_t eventData3, bool disable)
286{
287 constexpr const std::array<uint8_t, 10> critical = {
288 0x1, 0x2, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xD, 0xE};
289 constexpr const std::array<uint8_t, 5> warning = {0x3, 0xA, 0x13, 0x19,
290 0x1A};
291
292 std::string state;
293 if (std::find(critical.begin(), critical.end(), eventData2) !=
294 critical.end())
295 {
296 state = meHealth::critical;
297 }
298 // special case 0x3 as we only care about a few states
299 else if (eventData2 == 0x3)
300 {
301 if (eventData3 <= 0x2)
302 {
303 state = meHealth::warning;
304 }
305 else
306 {
307 return;
308 }
309 }
310 else if (std::find(warning.begin(), warning.end(), eventData2) !=
311 warning.end())
312 {
313 state = meHealth::warning;
314 }
315 else
316 {
317 return;
318 }
319 if (disable)
320 {
321 state = meHealth::ok;
322 }
323
324 std::shared_ptr<sdbusplus::asio::connection> dbus = getSdBus();
325 auto setHealth =
326 dbus->new_method_call(meHealth::busname, meHealth::path,
327 meHealth::interface, meHealth::method);
328 setHealth.append(std::to_string(static_cast<size_t>(eventData2)), state);
329 try
330 {
331 dbus->call(setHealth);
332 }
333 catch (sdbusplus::exception_t &)
334 {
335 phosphor::logging::log<phosphor::logging::level::ERR>(
336 "Failed to set ME Health");
337 }
338}
339
Jason M. Billsae6bdb12019-04-02 12:00:04 -0700340ipmi::RspType<> ipmiSenPlatformEvent(ipmi::message::Payload &p)
341{
James Feist7aaf3fe2019-06-25 11:52:11 -0700342 constexpr const uint8_t meId = 0x2C;
343 constexpr const uint8_t meSensorNum = 0x17;
344 constexpr const uint8_t disabled = 0x80;
345
Jason M. Billsae6bdb12019-04-02 12:00:04 -0700346 uint8_t generatorID = 0;
347 uint8_t evmRev = 0;
348 uint8_t sensorType = 0;
349 uint8_t sensorNum = 0;
350 uint8_t eventType = 0;
351 uint8_t eventData1 = 0;
352 std::optional<uint8_t> eventData2 = 0;
353 std::optional<uint8_t> eventData3 = 0;
354
355 // todo: This check is supposed to be based on the incoming channel.
356 // e.g. system channel will provide upto 8 bytes including generator
357 // ID, but ipmb channel will provide only up to 7 bytes without the
358 // generator ID.
359 // Support for this check is coming in future patches, so for now just base
360 // it on if the first byte is the EvMRev (0x04).
361 if (p.size() && p.data()[0] == 0x04)
362 {
363 p.unpack(evmRev, sensorType, sensorNum, eventType, eventData1,
364 eventData2, eventData3);
365 // todo: the generator ID for this channel is supposed to come from the
366 // IPMB requesters slave address. Support for this is coming in future
367 // patches, so for now just assume it is coming from the ME (0x2C).
368 generatorID = 0x2C;
369 }
370 else
371 {
372 p.unpack(generatorID, evmRev, sensorType, sensorNum, eventType,
373 eventData1, eventData2, eventData3);
374 }
375 if (!p.fullyUnpacked())
376 {
377 return ipmi::responseReqDataLenInvalid();
378 }
379
Jason M. Bills6dd8f042019-04-11 10:39:02 -0700380 // Send this request to the Redfish hooks to log it as a Redfish message
381 // instead. There is no need to add it to the SEL, so just return success.
382 intel_oem::ipmi::sel::checkRedfishHooks(
383 generatorID, evmRev, sensorType, sensorNum, eventType, eventData1,
384 eventData2.value_or(0xFF), eventData3.value_or(0xFF));
Jason M. Billsae6bdb12019-04-02 12:00:04 -0700385
James Feist7aaf3fe2019-06-25 11:52:11 -0700386 if (generatorID == meId && sensorNum == meSensorNum && eventData2 &&
387 eventData3)
388 {
389 setMeStatus(*eventData2, *eventData3, (eventType & disabled));
390 }
391
Jason M. Billsae6bdb12019-04-02 12:00:04 -0700392 return ipmi::responseSuccess();
393}
394
James Feist0cd014a2019-04-08 15:04:33 -0700395ipmi::RspType<uint8_t, uint8_t, uint8_t, std::optional<uint8_t>>
396 ipmiSenGetSensorReading(uint8_t sensnum)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700397{
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700398 std::string connection;
399 std::string path;
400
401 auto status = getSensorConnection(sensnum, connection, path);
402 if (status)
403 {
James Feist0cd014a2019-04-08 15:04:33 -0700404 return ipmi::response(status);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700405 }
406
407 SensorMap sensorMap;
408 if (!getSensorMap(connection, path, sensorMap))
409 {
James Feist0cd014a2019-04-08 15:04:33 -0700410 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700411 }
412 auto sensorObject = sensorMap.find("xyz.openbmc_project.Sensor.Value");
413
414 if (sensorObject == sensorMap.end() ||
415 sensorObject->second.find("Value") == sensorObject->second.end())
416 {
James Feist0cd014a2019-04-08 15:04:33 -0700417 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700418 }
James Feist0cd014a2019-04-08 15:04:33 -0700419 auto &valueVariant = sensorObject->second["Value"];
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700420 double reading = std::visit(VariantToDoubleVisitor(), valueVariant);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700421
Yong Li1f2eb5e2019-05-23 14:07:17 +0800422 double max = 0;
423 double min = 0;
James Feistaecaef72019-04-26 10:30:32 -0700424 getSensorMaxMin(sensorMap, max, min);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700425
426 int16_t mValue = 0;
427 int16_t bValue = 0;
428 int8_t rExp = 0;
429 int8_t bExp = 0;
430 bool bSigned = false;
431
432 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
433 {
James Feist0cd014a2019-04-08 15:04:33 -0700434 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700435 }
436
James Feist0cd014a2019-04-08 15:04:33 -0700437 uint8_t value =
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700438 scaleIPMIValueFromDouble(reading, mValue, rExp, bValue, bExp, bSigned);
James Feist0cd014a2019-04-08 15:04:33 -0700439 uint8_t operation =
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700440 static_cast<uint8_t>(IPMISensorReadingByte2::sensorScanningEnable);
James Feist0cd014a2019-04-08 15:04:33 -0700441 operation |=
James Feist81a95c12019-03-01 15:08:28 -0800442 static_cast<uint8_t>(IPMISensorReadingByte2::eventMessagesEnable);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700443
James Feist0cd014a2019-04-08 15:04:33 -0700444 uint8_t thresholds = 0;
445
446 auto warningObject =
447 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning");
448 if (warningObject != sensorMap.end())
449 {
450 auto alarmHigh = warningObject->second.find("WarningAlarmHigh");
451 auto alarmLow = warningObject->second.find("WarningAlarmLow");
452 if (alarmHigh != warningObject->second.end())
453 {
454 if (std::get<bool>(alarmHigh->second))
455 {
456 thresholds |= static_cast<uint8_t>(
457 IPMISensorReadingByte3::upperNonCritical);
458 }
459 }
460 if (alarmLow != warningObject->second.end())
461 {
462 if (std::get<bool>(alarmLow->second))
463 {
464 thresholds |= static_cast<uint8_t>(
465 IPMISensorReadingByte3::lowerNonCritical);
466 }
467 }
468 }
469
470 auto criticalObject =
471 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical");
472 if (criticalObject != sensorMap.end())
473 {
474 auto alarmHigh = criticalObject->second.find("CriticalAlarmHigh");
475 auto alarmLow = criticalObject->second.find("CriticalAlarmLow");
476 if (alarmHigh != criticalObject->second.end())
477 {
478 if (std::get<bool>(alarmHigh->second))
479 {
480 thresholds |=
481 static_cast<uint8_t>(IPMISensorReadingByte3::upperCritical);
482 }
483 }
484 if (alarmLow != criticalObject->second.end())
485 {
486 if (std::get<bool>(alarmLow->second))
487 {
488 thresholds |=
489 static_cast<uint8_t>(IPMISensorReadingByte3::lowerCritical);
490 }
491 }
492 }
493
494 // no discrete as of today so optional byte is never returned
495 return ipmi::responseSuccess(value, operation, thresholds, std::nullopt);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700496}
497
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000498/** @brief implements the Set Sensor threshold command
499 * @param sensorNumber - sensor number
500 * @param lowerNonCriticalThreshMask
501 * @param lowerCriticalThreshMask
502 * @param lowerNonRecovThreshMask
503 * @param upperNonCriticalThreshMask
504 * @param upperCriticalThreshMask
505 * @param upperNonRecovThreshMask
506 * @param reserved
507 * @param lowerNonCritical - lower non-critical threshold
508 * @param lowerCritical - Lower critical threshold
509 * @param lowerNonRecoverable - Lower non recovarable threshold
510 * @param upperNonCritical - Upper non-critical threshold
511 * @param upperCritical - Upper critical
512 * @param upperNonRecoverable - Upper Non-recoverable
513 *
514 * @returns IPMI completion code
515 */
516ipmi::RspType<> ipmiSenSetSensorThresholds(
517 uint8_t sensorNum, bool lowerNonCriticalThreshMask,
518 bool lowerCriticalThreshMask, bool lowerNonRecovThreshMask,
519 bool upperNonCriticalThreshMask, bool upperCriticalThreshMask,
520 bool upperNonRecovThreshMask, uint2_t reserved, uint8_t lowerNonCritical,
521 uint8_t lowerCritical, uint8_t lowerNonRecoverable,
522 uint8_t upperNonCritical, uint8_t upperCritical,
523 uint8_t upperNonRecoverable)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700524{
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000525 constexpr uint8_t thresholdMask = 0xFF;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700526
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000527 if (reserved)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700528 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000529 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700530 }
531
532 // lower nc and upper nc not suppported on any sensor
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000533 if (lowerNonRecovThreshMask || upperNonRecovThreshMask)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700534 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000535 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700536 }
537
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000538 // if none of the threshold mask are set, nothing to do
539 if (!(lowerNonCriticalThreshMask | lowerCriticalThreshMask |
540 lowerNonRecovThreshMask | upperNonCriticalThreshMask |
541 upperCriticalThreshMask | upperNonRecovThreshMask))
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700542 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000543 return ipmi::responseSuccess();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700544 }
545
546 std::string connection;
547 std::string path;
548
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000549 ipmi::Cc status = getSensorConnection(sensorNum, connection, path);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700550 if (status)
551 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000552 return ipmi::response(status);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700553 }
554 SensorMap sensorMap;
555 if (!getSensorMap(connection, path, sensorMap))
556 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000557 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700558 }
559
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700560 double max = 0;
561 double min = 0;
James Feistaecaef72019-04-26 10:30:32 -0700562 getSensorMaxMin(sensorMap, max, min);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700563
564 int16_t mValue = 0;
565 int16_t bValue = 0;
566 int8_t rExp = 0;
567 int8_t bExp = 0;
568 bool bSigned = false;
569
570 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
571 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000572 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700573 }
574
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700575 // store a vector of property name, value to set, and interface
576 std::vector<std::tuple<std::string, uint8_t, std::string>> thresholdsToSet;
577
578 // define the indexes of the tuple
579 constexpr uint8_t propertyName = 0;
580 constexpr uint8_t thresholdValue = 1;
581 constexpr uint8_t interface = 2;
582 // verifiy all needed fields are present
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000583 if (lowerCriticalThreshMask || upperCriticalThreshMask)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700584 {
585 auto findThreshold =
586 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical");
587 if (findThreshold == sensorMap.end())
588 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000589 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700590 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000591 if (lowerCriticalThreshMask)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700592 {
593 auto findLower = findThreshold->second.find("CriticalLow");
594 if (findLower == findThreshold->second.end())
595 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000596 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700597 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000598 thresholdsToSet.emplace_back("CriticalLow", lowerCritical,
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700599 findThreshold->first);
600 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000601 if (upperCriticalThreshMask)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700602 {
603 auto findUpper = findThreshold->second.find("CriticalHigh");
604 if (findUpper == findThreshold->second.end())
605 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000606 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700607 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000608 thresholdsToSet.emplace_back("CriticalHigh", upperCritical,
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700609 findThreshold->first);
610 }
611 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000612 if (lowerNonCriticalThreshMask || upperNonCriticalThreshMask)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700613 {
614 auto findThreshold =
615 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning");
616 if (findThreshold == sensorMap.end())
617 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000618 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700619 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000620 if (lowerNonCriticalThreshMask)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700621 {
622 auto findLower = findThreshold->second.find("WarningLow");
623 if (findLower == findThreshold->second.end())
624 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000625 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700626 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000627 thresholdsToSet.emplace_back("WarningLow", lowerNonCritical,
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700628 findThreshold->first);
629 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000630 if (upperNonCriticalThreshMask)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700631 {
632 auto findUpper = findThreshold->second.find("WarningHigh");
633 if (findUpper == findThreshold->second.end())
634 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000635 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700636 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000637 thresholdsToSet.emplace_back("WarningHigh", upperNonCritical,
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700638 findThreshold->first);
639 }
640 }
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700641 for (const auto &property : thresholdsToSet)
642 {
643 // from section 36.3 in the IPMI Spec, assume all linear
644 double valueToSet = ((mValue * std::get<thresholdValue>(property)) +
645 (bValue * std::pow(10, bExp))) *
646 std::pow(10, rExp);
Vernon Mauery15419dd2019-05-24 09:40:30 -0700647 setDbusProperty(
648 *getSdBus(), connection, path, std::get<interface>(property),
649 std::get<propertyName>(property), ipmi::Value(valueToSet));
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700650 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000651 return ipmi::responseSuccess();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700652}
653
James Feist902c4c52019-04-16 14:51:31 -0700654IPMIThresholds getIPMIThresholds(const SensorMap &sensorMap)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700655{
James Feist902c4c52019-04-16 14:51:31 -0700656 IPMIThresholds resp;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700657 auto warningInterface =
658 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning");
659 auto criticalInterface =
660 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical");
661
662 if ((warningInterface != sensorMap.end()) ||
663 (criticalInterface != sensorMap.end()))
664 {
665 auto sensorPair = sensorMap.find("xyz.openbmc_project.Sensor.Value");
666
667 if (sensorPair == sensorMap.end())
668 {
669 // should not have been able to find a sensor not implementing
670 // the sensor object
James Feist902c4c52019-04-16 14:51:31 -0700671 throw std::runtime_error("Invalid sensor map");
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700672 }
673
Chen,Yugang606dd9f2019-07-01 10:37:30 +0800674 double max = 0;
675 double min = 0;
James Feistaecaef72019-04-26 10:30:32 -0700676 getSensorMaxMin(sensorMap, max, min);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700677
678 int16_t mValue = 0;
679 int16_t bValue = 0;
680 int8_t rExp = 0;
681 int8_t bExp = 0;
682 bool bSigned = false;
683
684 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
685 {
James Feist902c4c52019-04-16 14:51:31 -0700686 throw std::runtime_error("Invalid sensor atrributes");
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700687 }
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700688 if (warningInterface != sensorMap.end())
689 {
690 auto &warningMap = warningInterface->second;
691
692 auto warningHigh = warningMap.find("WarningHigh");
693 auto warningLow = warningMap.find("WarningLow");
694
695 if (warningHigh != warningMap.end())
696 {
James Feist902c4c52019-04-16 14:51:31 -0700697
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700698 double value =
699 std::visit(VariantToDoubleVisitor(), warningHigh->second);
James Feist902c4c52019-04-16 14:51:31 -0700700 resp.warningHigh = scaleIPMIValueFromDouble(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700701 value, mValue, rExp, bValue, bExp, bSigned);
702 }
703 if (warningLow != warningMap.end())
704 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700705 double value =
706 std::visit(VariantToDoubleVisitor(), warningLow->second);
James Feist902c4c52019-04-16 14:51:31 -0700707 resp.warningLow = scaleIPMIValueFromDouble(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700708 value, mValue, rExp, bValue, bExp, bSigned);
709 }
710 }
711 if (criticalInterface != sensorMap.end())
712 {
713 auto &criticalMap = criticalInterface->second;
714
715 auto criticalHigh = criticalMap.find("CriticalHigh");
716 auto criticalLow = criticalMap.find("CriticalLow");
717
718 if (criticalHigh != criticalMap.end())
719 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700720 double value =
721 std::visit(VariantToDoubleVisitor(), criticalHigh->second);
James Feist902c4c52019-04-16 14:51:31 -0700722 resp.criticalHigh = scaleIPMIValueFromDouble(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700723 value, mValue, rExp, bValue, bExp, bSigned);
724 }
725 if (criticalLow != criticalMap.end())
726 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700727 double value =
728 std::visit(VariantToDoubleVisitor(), criticalLow->second);
James Feist902c4c52019-04-16 14:51:31 -0700729 resp.criticalLow = scaleIPMIValueFromDouble(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700730 value, mValue, rExp, bValue, bExp, bSigned);
731 }
732 }
733 }
James Feist902c4c52019-04-16 14:51:31 -0700734 return resp;
735}
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700736
James Feist902c4c52019-04-16 14:51:31 -0700737ipmi::RspType<uint8_t, // readable
738 uint8_t, // lowerNCrit
739 uint8_t, // lowerCrit
740 uint8_t, // lowerNrecoverable
741 uint8_t, // upperNC
742 uint8_t, // upperCrit
743 uint8_t> // upperNRecoverable
744 ipmiSenGetSensorThresholds(uint8_t sensorNumber)
745{
746 std::string connection;
747 std::string path;
748
749 auto status = getSensorConnection(sensorNumber, connection, path);
750 if (status)
751 {
752 return ipmi::response(status);
753 }
754
755 SensorMap sensorMap;
756 if (!getSensorMap(connection, path, sensorMap))
757 {
758 return ipmi::responseResponseError();
759 }
760
761 IPMIThresholds thresholdData;
762 try
763 {
764 thresholdData = getIPMIThresholds(sensorMap);
765 }
766 catch (std::exception &)
767 {
768 return ipmi::responseResponseError();
769 }
770
771 uint8_t readable = 0;
772 uint8_t lowerNC = 0;
773 uint8_t lowerCritical = 0;
774 uint8_t lowerNonRecoverable = 0;
775 uint8_t upperNC = 0;
776 uint8_t upperCritical = 0;
777 uint8_t upperNonRecoverable = 0;
778
779 if (thresholdData.warningHigh)
780 {
781 readable |=
782 1 << static_cast<uint8_t>(IPMIThresholdRespBits::upperNonCritical);
783 upperNC = *thresholdData.warningHigh;
784 }
785 if (thresholdData.warningLow)
786 {
787 readable |=
788 1 << static_cast<uint8_t>(IPMIThresholdRespBits::lowerNonCritical);
789 lowerNC = *thresholdData.warningLow;
790 }
791
792 if (thresholdData.criticalHigh)
793 {
794 readable |=
795 1 << static_cast<uint8_t>(IPMIThresholdRespBits::upperCritical);
796 upperCritical = *thresholdData.criticalHigh;
797 }
798 if (thresholdData.criticalLow)
799 {
800 readable |=
801 1 << static_cast<uint8_t>(IPMIThresholdRespBits::lowerCritical);
802 lowerCritical = *thresholdData.criticalLow;
803 }
804
805 return ipmi::responseSuccess(readable, lowerNC, lowerCritical,
806 lowerNonRecoverable, upperNC, upperCritical,
807 upperNonRecoverable);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700808}
809
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000810/** @brief implements the get Sensor event enable command
811 * @param sensorNumber - sensor number
812 *
813 * @returns IPMI completion code plus response data
814 * - enabled - Sensor Event messages
815 * - assertionEnabledLsb - Assertion event messages
816 * - assertionEnabledMsb - Assertion event messages
817 * - deassertionEnabledLsb - Deassertion event messages
818 * - deassertionEnabledMsb - Deassertion event messages
819 */
820
821ipmi::RspType<uint8_t, // enabled
822 uint8_t, // assertionEnabledLsb
823 uint8_t, // assertionEnabledMsb
824 uint8_t, // deassertionEnabledLsb
825 uint8_t> // deassertionEnabledMsb
826 ipmiSenGetSensorEventEnable(uint8_t sensorNum)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700827{
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700828 std::string connection;
829 std::string path;
830
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000831 uint8_t enabled;
832 uint8_t assertionEnabledLsb;
833 uint8_t assertionEnabledMsb;
834 uint8_t deassertionEnabledLsb;
835 uint8_t deassertionEnabledMsb;
836
837 auto status = getSensorConnection(sensorNum, connection, path);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700838 if (status)
839 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000840 return ipmi::response(status);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700841 }
842
843 SensorMap sensorMap;
844 if (!getSensorMap(connection, path, sensorMap))
845 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000846 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700847 }
848
849 auto warningInterface =
850 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning");
851 auto criticalInterface =
852 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical");
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700853 if ((warningInterface != sensorMap.end()) ||
854 (criticalInterface != sensorMap.end()))
855 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000856 enabled = static_cast<uint8_t>(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700857 IPMISensorEventEnableByte2::sensorScanningEnable);
858 if (warningInterface != sensorMap.end())
859 {
860 auto &warningMap = warningInterface->second;
861
862 auto warningHigh = warningMap.find("WarningHigh");
863 auto warningLow = warningMap.find("WarningLow");
864 if (warningHigh != warningMap.end())
865 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000866 assertionEnabledLsb |= static_cast<uint8_t>(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700867 IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh);
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000868 deassertionEnabledLsb |= static_cast<uint8_t>(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700869 IPMISensorEventEnableThresholds::upperNonCriticalGoingLow);
870 }
871 if (warningLow != warningMap.end())
872 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000873 assertionEnabledLsb |= static_cast<uint8_t>(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700874 IPMISensorEventEnableThresholds::lowerNonCriticalGoingLow);
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000875 deassertionEnabledLsb |= static_cast<uint8_t>(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700876 IPMISensorEventEnableThresholds::lowerNonCriticalGoingHigh);
877 }
878 }
879 if (criticalInterface != sensorMap.end())
880 {
881 auto &criticalMap = criticalInterface->second;
882
883 auto criticalHigh = criticalMap.find("CriticalHigh");
884 auto criticalLow = criticalMap.find("CriticalLow");
885
886 if (criticalHigh != criticalMap.end())
887 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000888 assertionEnabledMsb |= static_cast<uint8_t>(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700889 IPMISensorEventEnableThresholds::upperCriticalGoingHigh);
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000890 deassertionEnabledMsb |= static_cast<uint8_t>(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700891 IPMISensorEventEnableThresholds::upperCriticalGoingLow);
892 }
893 if (criticalLow != criticalMap.end())
894 {
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000895 assertionEnabledLsb |= static_cast<uint8_t>(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700896 IPMISensorEventEnableThresholds::lowerCriticalGoingLow);
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000897 deassertionEnabledLsb |= static_cast<uint8_t>(
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700898 IPMISensorEventEnableThresholds::lowerCriticalGoingHigh);
899 }
900 }
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700901 }
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +0000902
903 return ipmi::responseSuccess(enabled, assertionEnabledLsb,
904 assertionEnabledMsb, deassertionEnabledLsb,
905 deassertionEnabledMsb);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700906}
907
908ipmi_ret_t ipmiSenGetSensorEventStatus(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
909 ipmi_request_t request,
910 ipmi_response_t response,
911 ipmi_data_len_t dataLen,
912 ipmi_context_t context)
913{
914 if (*dataLen != 1)
915 {
916 *dataLen = 0;
917 return IPMI_CC_REQ_DATA_LEN_INVALID;
918 }
919 *dataLen = 0; // default to 0 in case of an error
920
921 uint8_t sensnum = *(static_cast<uint8_t *>(request));
922
923 std::string connection;
924 std::string path;
925
926 auto status = getSensorConnection(sensnum, connection, path);
927 if (status)
928 {
929 return status;
930 }
931
932 SensorMap sensorMap;
933 if (!getSensorMap(connection, path, sensorMap))
934 {
935 return IPMI_CC_RESPONSE_ERROR;
936 }
937
938 auto warningInterface =
939 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning");
940 auto criticalInterface =
941 sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical");
942
943 // zero out response buff
944 auto responseClear = static_cast<uint8_t *>(response);
945 std::fill(responseClear, responseClear + sizeof(SensorEventStatusResp), 0);
946 auto resp = static_cast<SensorEventStatusResp *>(response);
947 resp->enabled =
948 static_cast<uint8_t>(IPMISensorEventEnableByte2::sensorScanningEnable);
949
James Feist392786a2019-03-19 13:36:10 -0700950 std::optional<bool> criticalDeassertHigh =
951 thresholdDeassertMap[path]["CriticalAlarmHigh"];
952 std::optional<bool> criticalDeassertLow =
953 thresholdDeassertMap[path]["CriticalAlarmLow"];
954 std::optional<bool> warningDeassertHigh =
955 thresholdDeassertMap[path]["WarningAlarmHigh"];
956 std::optional<bool> warningDeassertLow =
957 thresholdDeassertMap[path]["WarningAlarmLow"];
958
959 if (criticalDeassertHigh && !*criticalDeassertHigh)
960 {
961 resp->deassertionsMSB |= static_cast<uint8_t>(
962 IPMISensorEventEnableThresholds::upperCriticalGoingHigh);
963 }
964 if (criticalDeassertLow && !*criticalDeassertLow)
965 {
966 resp->deassertionsMSB |= static_cast<uint8_t>(
967 IPMISensorEventEnableThresholds::upperCriticalGoingLow);
968 }
969 if (warningDeassertHigh && !*warningDeassertHigh)
970 {
971 resp->deassertionsLSB |= static_cast<uint8_t>(
972 IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh);
973 }
974 if (warningDeassertLow && !*warningDeassertLow)
975 {
976 resp->deassertionsLSB |= static_cast<uint8_t>(
977 IPMISensorEventEnableThresholds::lowerNonCriticalGoingHigh);
978 }
979
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700980 if ((warningInterface != sensorMap.end()) ||
981 (criticalInterface != sensorMap.end()))
982 {
983 resp->enabled = static_cast<uint8_t>(
984 IPMISensorEventEnableByte2::eventMessagesEnable);
985 if (warningInterface != sensorMap.end())
986 {
987 auto &warningMap = warningInterface->second;
988
989 auto warningHigh = warningMap.find("WarningAlarmHigh");
990 auto warningLow = warningMap.find("WarningAlarmLow");
991 auto warningHighAlarm = false;
992 auto warningLowAlarm = false;
993
994 if (warningHigh != warningMap.end())
995 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -0700996 warningHighAlarm = std::get<bool>(warningHigh->second);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -0700997 }
998 if (warningLow != warningMap.end())
999 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -07001000 warningLowAlarm = std::get<bool>(warningLow->second);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001001 }
1002 if (warningHighAlarm)
1003 {
1004 resp->assertionsLSB |= static_cast<uint8_t>(
1005 IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh);
1006 }
1007 if (warningLowAlarm)
1008 {
1009 resp->assertionsLSB |= 1; // lower nc going low
1010 }
1011 }
1012 if (criticalInterface != sensorMap.end())
1013 {
1014 auto &criticalMap = criticalInterface->second;
1015
1016 auto criticalHigh = criticalMap.find("CriticalAlarmHigh");
1017 auto criticalLow = criticalMap.find("CriticalAlarmLow");
1018 auto criticalHighAlarm = false;
1019 auto criticalLowAlarm = false;
1020
1021 if (criticalHigh != criticalMap.end())
1022 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -07001023 criticalHighAlarm = std::get<bool>(criticalHigh->second);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001024 }
1025 if (criticalLow != criticalMap.end())
1026 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -07001027 criticalLowAlarm = std::get<bool>(criticalLow->second);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001028 }
1029 if (criticalHighAlarm)
1030 {
1031 resp->assertionsMSB |= static_cast<uint8_t>(
1032 IPMISensorEventEnableThresholds::upperCriticalGoingHigh);
1033 }
1034 if (criticalLowAlarm)
1035 {
1036 resp->assertionsLSB |= static_cast<uint8_t>(
1037 IPMISensorEventEnableThresholds::lowerCriticalGoingLow);
1038 }
1039 }
1040 *dataLen = sizeof(SensorEventStatusResp);
1041 }
1042
1043 // no thresholds enabled, don't need assertionMSB
1044 else
1045 {
1046 *dataLen = sizeof(SensorEventStatusResp) - 1;
1047 }
1048
1049 return IPMI_CC_OK;
1050}
1051
1052/* end sensor commands */
1053
1054/* storage commands */
1055
1056ipmi_ret_t ipmiStorageGetSDRRepositoryInfo(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1057 ipmi_request_t request,
1058 ipmi_response_t response,
1059 ipmi_data_len_t dataLen,
1060 ipmi_context_t context)
1061{
1062 printCommand(+netfn, +cmd);
1063
1064 if (*dataLen)
1065 {
1066 *dataLen = 0;
1067 return IPMI_CC_REQ_DATA_LEN_INVALID;
1068 }
1069 *dataLen = 0; // default to 0 in case of an error
1070
1071 if (sensorTree.empty() && !getSensorSubtree(sensorTree))
1072 {
1073 return IPMI_CC_RESPONSE_ERROR;
1074 }
1075
1076 // zero out response buff
1077 auto responseClear = static_cast<uint8_t *>(response);
1078 std::fill(responseClear, responseClear + sizeof(GetSDRInfoResp), 0);
1079
1080 auto resp = static_cast<GetSDRInfoResp *>(response);
1081 resp->sdrVersion = ipmiSdrVersion;
1082 uint16_t recordCount = sensorTree.size();
1083
1084 // todo: for now, sdr count is number of sensors
1085 resp->recordCountLS = recordCount & 0xFF;
1086 resp->recordCountMS = recordCount >> 8;
1087
1088 // free space unspcified
1089 resp->freeSpace[0] = 0xFF;
1090 resp->freeSpace[1] = 0xFF;
1091
1092 resp->mostRecentAddition = sdrLastAdd;
1093 resp->mostRecentErase = sdrLastRemove;
1094 resp->operationSupport = static_cast<uint8_t>(
1095 SdrRepositoryInfoOps::overflow); // write not supported
1096 resp->operationSupport |=
1097 static_cast<uint8_t>(SdrRepositoryInfoOps::allocCommandSupported);
1098 resp->operationSupport |= static_cast<uint8_t>(
1099 SdrRepositoryInfoOps::reserveSDRRepositoryCommandSupported);
1100 *dataLen = sizeof(GetSDRInfoResp);
1101 return IPMI_CC_OK;
1102}
1103
1104ipmi_ret_t ipmiStorageGetSDRAllocationInfo(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1105 ipmi_request_t request,
1106 ipmi_response_t response,
1107 ipmi_data_len_t dataLen,
1108 ipmi_context_t context)
1109{
1110 if (*dataLen)
1111 {
1112 *dataLen = 0;
1113 return IPMI_CC_REQ_DATA_LEN_INVALID;
1114 }
1115 *dataLen = 0; // default to 0 in case of an error
1116 GetAllocInfoResp *resp = static_cast<GetAllocInfoResp *>(response);
1117
1118 // 0000h unspecified number of alloc units
1119 resp->allocUnitsLSB = 0;
1120 resp->allocUnitsMSB = 0;
1121
1122 // max unit size is size of max record
1123 resp->allocUnitSizeLSB = maxSDRTotalSize & 0xFF;
1124 resp->allocUnitSizeMSB = maxSDRTotalSize >> 8;
1125 // read only sdr, no free alloc blocks
1126 resp->allocUnitFreeLSB = 0;
1127 resp->allocUnitFreeMSB = 0;
1128 resp->allocUnitLargestFreeLSB = 0;
1129 resp->allocUnitLargestFreeMSB = 0;
1130 // only allow one block at a time
1131 resp->maxRecordSize = 1;
1132
1133 *dataLen = sizeof(GetAllocInfoResp);
1134
1135 return IPMI_CC_OK;
1136}
1137
1138ipmi_ret_t ipmiStorageReserveSDR(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1139 ipmi_request_t request,
1140 ipmi_response_t response,
1141 ipmi_data_len_t dataLen,
1142 ipmi_context_t context)
1143{
1144 printCommand(+netfn, +cmd);
1145
1146 if (*dataLen)
1147 {
1148 *dataLen = 0;
1149 return IPMI_CC_REQ_DATA_LEN_INVALID;
1150 }
1151 *dataLen = 0; // default to 0 in case of an error
1152 sdrReservationID++;
James Feista80cb902019-02-14 13:05:25 -08001153 if (sdrReservationID == 0)
1154 {
1155 sdrReservationID++;
1156 }
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001157 *dataLen = 2;
1158 auto resp = static_cast<uint8_t *>(response);
1159 resp[0] = sdrReservationID & 0xFF;
1160 resp[1] = sdrReservationID >> 8;
1161
1162 return IPMI_CC_OK;
1163}
1164
James Feistb49a98a2019-04-16 13:48:09 -07001165ipmi::RspType<uint16_t, // next record ID
1166 std::vector<uint8_t> // payload
1167 >
1168 ipmiStorageGetSDR(uint16_t reservationID, uint16_t recordID, uint8_t offset,
1169 uint8_t bytesToRead)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001170{
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001171 constexpr uint16_t lastRecordIndex = 0xFFFF;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001172
1173 // reservation required for partial reads with non zero offset into
1174 // record
James Feistb49a98a2019-04-16 13:48:09 -07001175 if ((sdrReservationID == 0 || reservationID != sdrReservationID) && offset)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001176 {
James Feistb49a98a2019-04-16 13:48:09 -07001177 return ipmi::responseInvalidReservationId();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001178 }
1179
1180 if (sensorTree.empty() && !getSensorSubtree(sensorTree))
1181 {
James Feistb49a98a2019-04-16 13:48:09 -07001182 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001183 }
1184
1185 size_t fruCount = 0;
1186 ipmi_ret_t ret = ipmi::storage::getFruSdrCount(fruCount);
1187 if (ret != IPMI_CC_OK)
1188 {
James Feistb49a98a2019-04-16 13:48:09 -07001189 return ipmi::response(ret);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001190 }
1191
1192 size_t lastRecord = sensorTree.size() + fruCount - 1;
James Feistb49a98a2019-04-16 13:48:09 -07001193 if (recordID == lastRecordIndex)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001194 {
James Feistb49a98a2019-04-16 13:48:09 -07001195 recordID = lastRecord;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001196 }
James Feistb49a98a2019-04-16 13:48:09 -07001197 if (recordID > lastRecord)
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001198 {
James Feistb49a98a2019-04-16 13:48:09 -07001199 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001200 }
1201
James Feistb49a98a2019-04-16 13:48:09 -07001202 uint16_t nextRecordId = lastRecord > recordID ? recordID + 1 : 0XFFFF;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001203
James Feistb49a98a2019-04-16 13:48:09 -07001204 if (recordID >= sensorTree.size())
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001205 {
James Feistb49a98a2019-04-16 13:48:09 -07001206 size_t fruIndex = recordID - sensorTree.size();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001207 if (fruIndex >= fruCount)
1208 {
James Feistb49a98a2019-04-16 13:48:09 -07001209 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001210 }
1211 get_sdr::SensorDataFruRecord data;
James Feistb49a98a2019-04-16 13:48:09 -07001212 if (offset > sizeof(data))
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001213 {
James Feistb49a98a2019-04-16 13:48:09 -07001214 return ipmi::responseInvalidFieldRequest();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001215 }
1216 ret = ipmi::storage::getFruSdrs(fruIndex, data);
1217 if (ret != IPMI_CC_OK)
1218 {
James Feistb49a98a2019-04-16 13:48:09 -07001219 return ipmi::response(ret);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001220 }
James Feistb49a98a2019-04-16 13:48:09 -07001221 data.header.record_id_msb = recordID << 8;
1222 data.header.record_id_lsb = recordID & 0xFF;
1223 if (sizeof(data) < (offset + bytesToRead))
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001224 {
James Feistb49a98a2019-04-16 13:48:09 -07001225 bytesToRead = sizeof(data) - offset;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001226 }
James Feistb49a98a2019-04-16 13:48:09 -07001227
1228 uint8_t *respStart = reinterpret_cast<uint8_t *>(&data) + offset;
1229 std::vector<uint8_t> recordData(respStart, respStart + bytesToRead);
1230
1231 return ipmi::responseSuccess(nextRecordId, recordData);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001232 }
1233
1234 std::string connection;
1235 std::string path;
James Feistb49a98a2019-04-16 13:48:09 -07001236 uint16_t sensorIndex = recordID;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001237 for (const auto &sensor : sensorTree)
1238 {
1239 if (sensorIndex-- == 0)
1240 {
1241 if (!sensor.second.size())
1242 {
James Feistb49a98a2019-04-16 13:48:09 -07001243 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001244 }
1245 connection = sensor.second.begin()->first;
1246 path = sensor.first;
1247 break;
1248 }
1249 }
1250
1251 SensorMap sensorMap;
1252 if (!getSensorMap(connection, path, sensorMap))
1253 {
James Feistb49a98a2019-04-16 13:48:09 -07001254 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001255 }
James Feistb49a98a2019-04-16 13:48:09 -07001256 uint8_t sensornumber = (recordID & 0xFF);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001257 get_sdr::SensorDataFullRecord record = {0};
1258
James Feistb49a98a2019-04-16 13:48:09 -07001259 record.header.record_id_msb = recordID << 8;
1260 record.header.record_id_lsb = recordID & 0xFF;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001261 record.header.sdr_version = ipmiSdrVersion;
1262 record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD;
1263 record.header.record_length = sizeof(get_sdr::SensorDataFullRecord) -
1264 sizeof(get_sdr::SensorDataRecordHeader);
1265 record.key.owner_id = 0x20;
1266 record.key.owner_lun = 0x0;
1267 record.key.sensor_number = sensornumber;
1268
1269 record.body.entity_id = 0x0;
1270 record.body.entity_instance = 0x01;
James Feist7086a882019-03-13 10:46:00 -07001271 record.body.sensor_capabilities = 0x68; // auto rearm - todo hysteresis
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001272 record.body.sensor_type = getSensorTypeFromPath(path);
1273 std::string type = getSensorTypeStringFromPath(path);
1274 auto typeCstr = type.c_str();
1275 auto findUnits = sensorUnits.find(typeCstr);
1276 if (findUnits != sensorUnits.end())
1277 {
1278 record.body.sensor_units_2_base =
1279 static_cast<uint8_t>(findUnits->second);
1280 } // else default 0x0 unspecified
1281
1282 record.body.event_reading_type = getSensorEventTypeFromPath(path);
1283
1284 auto sensorObject = sensorMap.find("xyz.openbmc_project.Sensor.Value");
1285 if (sensorObject == sensorMap.end())
1286 {
James Feistb49a98a2019-04-16 13:48:09 -07001287 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001288 }
1289
1290 auto maxObject = sensorObject->second.find("MaxValue");
1291 auto minObject = sensorObject->second.find("MinValue");
1292 double max = 128;
1293 double min = -127;
1294 if (maxObject != sensorObject->second.end())
1295 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -07001296 max = std::visit(VariantToDoubleVisitor(), maxObject->second);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001297 }
1298
1299 if (minObject != sensorObject->second.end())
1300 {
Vernon Mauery8166c8d2019-05-23 11:22:30 -07001301 min = std::visit(VariantToDoubleVisitor(), minObject->second);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001302 }
1303
Yong Li1f2eb5e2019-05-23 14:07:17 +08001304 int16_t mValue = 0;
1305 int8_t rExp = 0;
1306 int16_t bValue = 0;
1307 int8_t bExp = 0;
1308 bool bSigned = false;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001309
1310 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
1311 {
James Feistb49a98a2019-04-16 13:48:09 -07001312 return ipmi::responseResponseError();
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001313 }
1314
1315 // apply M, B, and exponents, M and B are 10 bit values, exponents are 4
1316 record.body.m_lsb = mValue & 0xFF;
1317
1318 // move the smallest bit of the MSB into place (bit 9)
1319 // the MSbs are bits 7:8 in m_msb_and_tolerance
1320 uint8_t mMsb = (mValue & (1 << 8)) > 0 ? (1 << 6) : 0;
1321
1322 // assign the negative
1323 if (mValue < 0)
1324 {
1325 mMsb |= (1 << 7);
1326 }
1327 record.body.m_msb_and_tolerance = mMsb;
1328
1329 record.body.b_lsb = bValue & 0xFF;
1330
1331 // move the smallest bit of the MSB into place
1332 // the MSbs are bits 7:8 in b_msb_and_accuracy_lsb
1333 uint8_t bMsb = (bValue & (1 << 8)) > 0 ? (1 << 6) : 0;
1334
1335 // assign the negative
1336 if (bValue < 0)
1337 {
1338 bMsb |= (1 << 7);
1339 }
1340 record.body.b_msb_and_accuracy_lsb = bMsb;
1341
1342 record.body.r_b_exponents = bExp & 0x7;
1343 if (bExp < 0)
1344 {
1345 record.body.r_b_exponents |= 1 << 3;
1346 }
1347 record.body.r_b_exponents = (rExp & 0x7) << 4;
1348 if (rExp < 0)
1349 {
1350 record.body.r_b_exponents |= 1 << 7;
1351 }
1352
1353 // todo fill out rest of units
1354 if (bSigned)
1355 {
1356 record.body.sensor_units_1 = 1 << 7;
1357 }
1358
1359 // populate sensor name from path
1360 std::string name;
1361 size_t nameStart = path.rfind("/");
1362 if (nameStart != std::string::npos)
1363 {
1364 name = path.substr(nameStart + 1, std::string::npos - nameStart);
1365 }
1366
1367 std::replace(name.begin(), name.end(), '_', ' ');
1368 if (name.size() > FULL_RECORD_ID_STR_MAX_LENGTH)
1369 {
James Feist979a2322019-05-15 09:06:54 -07001370 // try to not truncate by replacing common words
1371 constexpr std::array<std::pair<const char *, const char *>, 2>
1372 replaceWords = {std::make_pair("Output", "Out"),
1373 std::make_pair("Input", "In")};
1374 for (const auto &[find, replace] : replaceWords)
1375 {
1376 boost::replace_all(name, find, replace);
1377 }
1378
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001379 name.resize(FULL_RECORD_ID_STR_MAX_LENGTH);
1380 }
1381 record.body.id_string_info = name.size();
1382 std::strncpy(record.body.id_string, name.c_str(),
1383 sizeof(record.body.id_string));
1384
James Feistc4b15bc2019-04-16 15:41:39 -07001385 IPMIThresholds thresholdData;
1386 try
1387 {
1388 thresholdData = getIPMIThresholds(sensorMap);
1389 }
1390 catch (std::exception &)
1391 {
1392 return ipmi::responseResponseError();
1393 }
1394
1395 if (thresholdData.criticalHigh)
1396 {
1397 record.body.upper_critical_threshold = *thresholdData.criticalHigh;
1398 record.body.supported_deassertions[1] |= static_cast<uint8_t>(
1399 IPMISensorEventEnableThresholds::upperCriticalGoingHigh);
1400 record.body.supported_assertions[1] |= static_cast<uint8_t>(
1401 IPMISensorEventEnableThresholds::upperCriticalGoingHigh);
1402 record.body.discrete_reading_setting_mask[0] |=
1403 static_cast<uint8_t>(IPMISensorReadingByte3::upperCritical);
1404 }
1405 if (thresholdData.warningHigh)
1406 {
1407 record.body.upper_noncritical_threshold = *thresholdData.warningHigh;
1408 record.body.supported_deassertions[0] |= static_cast<uint8_t>(
1409 IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh);
1410 record.body.supported_assertions[0] |= static_cast<uint8_t>(
1411 IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh);
1412 record.body.discrete_reading_setting_mask[0] |=
1413 static_cast<uint8_t>(IPMISensorReadingByte3::upperNonCritical);
1414 }
1415 if (thresholdData.criticalLow)
1416 {
1417 record.body.lower_critical_threshold = *thresholdData.criticalLow;
1418 record.body.supported_deassertions[0] |= static_cast<uint8_t>(
1419 IPMISensorEventEnableThresholds::lowerCriticalGoingLow);
1420 record.body.supported_assertions[0] |= static_cast<uint8_t>(
1421 IPMISensorEventEnableThresholds::lowerCriticalGoingLow);
1422 record.body.discrete_reading_setting_mask[0] |=
1423 static_cast<uint8_t>(IPMISensorReadingByte3::lowerCritical);
1424 }
1425 if (thresholdData.warningLow)
1426 {
1427 record.body.lower_noncritical_threshold = *thresholdData.warningLow;
1428 record.body.supported_deassertions[0] |= static_cast<uint8_t>(
1429 IPMISensorEventEnableThresholds::lowerNonCriticalGoingLow);
1430 record.body.supported_assertions[0] |= static_cast<uint8_t>(
1431 IPMISensorEventEnableThresholds::lowerNonCriticalGoingLow);
1432 record.body.discrete_reading_setting_mask[0] |=
1433 static_cast<uint8_t>(IPMISensorReadingByte3::lowerNonCritical);
1434 }
1435
1436 // everything that is readable is setable
1437 record.body.discrete_reading_setting_mask[1] =
1438 record.body.discrete_reading_setting_mask[0];
1439
James Feistb49a98a2019-04-16 13:48:09 -07001440 if (sizeof(get_sdr::SensorDataFullRecord) < (offset + bytesToRead))
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001441 {
James Feistb49a98a2019-04-16 13:48:09 -07001442 bytesToRead = sizeof(get_sdr::SensorDataFullRecord) - offset;
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001443 }
1444
James Feistb49a98a2019-04-16 13:48:09 -07001445 uint8_t *respStart = reinterpret_cast<uint8_t *>(&record) + offset;
1446 std::vector<uint8_t> recordData(respStart, respStart + bytesToRead);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001447
James Feistb49a98a2019-04-16 13:48:09 -07001448 return ipmi::responseSuccess(nextRecordId, recordData);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001449}
1450/* end storage commands */
1451
1452void registerSensorFunctions()
1453{
1454 // get firmware version information
1455 ipmiPrintAndRegister(NETFUN_SENSOR, IPMI_CMD_WILDCARD, nullptr,
1456 ipmiSensorWildcardHandler, PRIVILEGE_USER);
1457
1458 // <Get Sensor Type>
1459 ipmiPrintAndRegister(
1460 NETFUN_SENSOR,
1461 static_cast<ipmi_cmd_t>(IPMINetfnSensorCmds::ipmiCmdGetSensorType),
1462 nullptr, ipmiSensorWildcardHandler, PRIVILEGE_USER);
1463
1464 // <Set Sensor Reading and Event Status>
1465 ipmiPrintAndRegister(
1466 NETFUN_SENSOR,
1467 static_cast<ipmi_cmd_t>(
1468 IPMINetfnSensorCmds::ipmiCmdSetSensorReadingAndEventStatus),
1469 nullptr, ipmiSensorWildcardHandler, PRIVILEGE_OPERATOR);
1470
Jason M. Billsae6bdb12019-04-02 12:00:04 -07001471 // <Platform Event>
1472 ipmi::registerHandler(
1473 ipmi::prioOemBase, ipmi::netFnSensor,
1474 static_cast<ipmi::Cmd>(ipmi::sensor_event::cmdPlatformEvent),
1475 ipmi::Privilege::Operator, ipmiSenPlatformEvent);
1476
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001477 // <Get Sensor Reading>
James Feist0cd014a2019-04-08 15:04:33 -07001478 ipmi::registerHandler(
1479 ipmi::prioOemBase, NETFUN_SENSOR,
1480 static_cast<ipmi::Cmd>(IPMINetfnSensorCmds::ipmiCmdGetSensorReading),
1481 ipmi::Privilege::User, ipmiSenGetSensorReading);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001482
1483 // <Get Sensor Threshold>
James Feist902c4c52019-04-16 14:51:31 -07001484 ipmi::registerHandler(
1485 ipmi::prioOemBase, NETFUN_SENSOR,
1486 static_cast<ipmi::Cmd>(IPMINetfnSensorCmds::ipmiCmdGetSensorThreshold),
1487 ipmi::Privilege::User, ipmiSenGetSensorThresholds);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001488
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +00001489 // <Set Sensor Threshold>
1490 ipmi::registerHandler(
1491 ipmi::prioOemBase, NETFUN_SENSOR,
1492 static_cast<ipmi::Cmd>(IPMINetfnSensorCmds::ipmiCmdSetSensorThreshold),
1493 ipmi::Privilege::Operator, ipmiSenSetSensorThresholds);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001494
1495 // <Get Sensor Event Enable>
jayaprakash Mutyala39fa93f2019-05-13 12:16:30 +00001496 ipmi::registerHandler(ipmi::prioOemBase, NETFUN_SENSOR,
1497 static_cast<ipmi::Cmd>(
1498 IPMINetfnSensorCmds::ipmiCmdGetSensorEventEnable),
1499 ipmi::Privilege::User, ipmiSenGetSensorEventEnable);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001500
1501 // <Get Sensor Event Status>
1502 ipmiPrintAndRegister(NETFUN_SENSOR,
1503 static_cast<ipmi_cmd_t>(
1504 IPMINetfnSensorCmds::ipmiCmdGetSensorEventStatus),
1505 nullptr, ipmiSenGetSensorEventStatus, PRIVILEGE_USER);
1506
1507 // register all storage commands for both Sensor and Storage command
1508 // versions
1509
1510 // <Get SDR Repository Info>
1511 ipmiPrintAndRegister(
1512 NETFUN_STORAGE,
1513 static_cast<ipmi_cmd_t>(IPMINetfnStorageCmds::ipmiCmdGetRepositoryInfo),
1514 nullptr, ipmiStorageGetSDRRepositoryInfo, PRIVILEGE_USER);
1515
1516 // <Get SDR Allocation Info>
1517 ipmiPrintAndRegister(NETFUN_STORAGE,
1518 static_cast<ipmi_cmd_t>(
1519 IPMINetfnStorageCmds::ipmiCmdGetSDRAllocationInfo),
1520 nullptr, ipmiStorageGetSDRAllocationInfo,
1521 PRIVILEGE_USER);
1522
1523 // <Reserve SDR Repo>
1524 ipmiPrintAndRegister(NETFUN_SENSOR,
1525 static_cast<ipmi_cmd_t>(
1526 IPMINetfnSensorCmds::ipmiCmdReserveDeviceSDRRepo),
1527 nullptr, ipmiStorageReserveSDR, PRIVILEGE_USER);
1528
1529 ipmiPrintAndRegister(
1530 NETFUN_STORAGE,
1531 static_cast<ipmi_cmd_t>(IPMINetfnStorageCmds::ipmiCmdReserveSDR),
1532 nullptr, ipmiStorageReserveSDR, PRIVILEGE_USER);
1533
1534 // <Get Sdr>
James Feistb49a98a2019-04-16 13:48:09 -07001535 ipmi::registerHandler(
1536 ipmi::prioOemBase, NETFUN_SENSOR,
1537 static_cast<ipmi::Cmd>(IPMINetfnSensorCmds::ipmiCmdGetDeviceSDR),
1538 ipmi::Privilege::User, ipmiStorageGetSDR);
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001539
James Feistb49a98a2019-04-16 13:48:09 -07001540 ipmi::registerHandler(
1541 ipmi::prioOemBase, NETFUN_STORAGE,
1542 static_cast<ipmi::Cmd>(IPMINetfnStorageCmds::ipmiCmdGetSDR),
1543 ipmi::Privilege::User, ipmiStorageGetSDR);
1544
Jason M. Bills3f7c5e42018-10-03 14:00:41 -07001545 return;
1546}
1547} // namespace ipmi