blob: e842355fed896a433559fe0d214ace43bd67e206 [file] [log] [blame]
Brandon Kim9cf85622019-06-19 12:05:08 -07001#include "config.h"
2
Patrick Venture46470a32018-09-07 19:26:25 -07003#include "sensorhandler.hpp"
Patrick Venture0b02be92018-08-31 11:55:55 -07004
Patrick Venture99bf1c42019-08-23 09:02:13 -07005#include "entity_map_json.hpp"
Patrick Venture0b02be92018-08-31 11:55:55 -07006#include "fruread.hpp"
Patrick Venture0b02be92018-08-31 11:55:55 -07007
Tomd700e762016-09-20 18:24:13 +05308#include <mapper.h>
Chris Austen10ccc0f2015-12-10 18:27:04 -06009#include <systemd/sd-bus.h>
Patrick Venture0b02be92018-08-31 11:55:55 -070010
11#include <bitset>
Patrick Venture586d35b2018-09-07 19:56:18 -070012#include <cmath>
Patrick Ventureb51bf9c2018-09-10 15:53:14 -070013#include <cstring>
Vernon Mauerye08fbff2019-04-03 09:19:34 -070014#include <ipmid/api.hpp>
Vernon Mauery33250242019-03-12 16:49:26 -070015#include <ipmid/types.hpp>
Vernon Mauery6a98fe72019-03-11 15:57:48 -070016#include <ipmid/utils.hpp>
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -050017#include <phosphor-logging/elog-errors.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -070018#include <phosphor-logging/log.hpp>
William A. Kennington III4c008022018-10-12 17:18:14 -070019#include <sdbusplus/message/types.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -070020#include <set>
21#include <xyz/openbmc_project/Common/error.hpp>
22#include <xyz/openbmc_project/Sensor/Value/server.hpp>
23
Ratan Guptae0cc8552018-01-22 14:23:04 +053024static constexpr uint8_t fruInventoryDevice = 0x10;
25static constexpr uint8_t IPMIFruInventory = 0x02;
26static constexpr uint8_t BMCSlaveAddress = 0x20;
27
Patrick Venture0b02be92018-08-31 11:55:55 -070028extern int updateSensorRecordFromSSRAESC(const void*);
29extern sd_bus* bus;
Patrick Venturedb0cbe62019-09-09 14:47:22 -070030
31namespace ipmi
32{
33namespace sensor
34{
35extern const IdInfoMap sensors;
36} // namespace sensor
37} // namespace ipmi
38
Ratan Guptae0cc8552018-01-22 14:23:04 +053039extern const FruMap frus;
40
Tom Josephbe703f72017-03-09 12:34:35 +053041using namespace phosphor::logging;
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -050042using InternalFailure =
43 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Chris Austenac4604a2015-10-13 12:43:27 -050044
Patrick Venture0b02be92018-08-31 11:55:55 -070045void register_netfn_sen_functions() __attribute__((constructor));
Chris Austenac4604a2015-10-13 12:43:27 -050046
Patrick Venture0b02be92018-08-31 11:55:55 -070047struct sensorTypemap_t
48{
Chris Austen0012e9b2015-10-22 01:37:46 -050049 uint8_t number;
Chris Austend7cf0e42015-11-07 14:27:12 -060050 uint8_t typecode;
Chris Austen0012e9b2015-10-22 01:37:46 -050051 char dbusname[32];
Patrick Venture0b02be92018-08-31 11:55:55 -070052};
Chris Austen0012e9b2015-10-22 01:37:46 -050053
Chris Austen0012e9b2015-10-22 01:37:46 -050054sensorTypemap_t g_SensorTypeMap[] = {
55
Chris Austend7cf0e42015-11-07 14:27:12 -060056 {0x01, 0x6F, "Temp"},
57 {0x0C, 0x6F, "DIMM"},
58 {0x0C, 0x6F, "MEMORY_BUFFER"},
59 {0x07, 0x6F, "PROC"},
60 {0x07, 0x6F, "CORE"},
61 {0x07, 0x6F, "CPU"},
62 {0x0F, 0x6F, "BootProgress"},
Patrick Venture0b02be92018-08-31 11:55:55 -070063 {0xe9, 0x09, "OccStatus"}, // E9 is an internal mapping to handle sensor
64 // type code os 0x09
Chris Austend7cf0e42015-11-07 14:27:12 -060065 {0xC3, 0x6F, "BootCount"},
66 {0x1F, 0x6F, "OperatingSystemStatus"},
Chris Austen800ba712015-12-03 15:31:00 -060067 {0x12, 0x6F, "SYSTEM_EVENT"},
68 {0xC7, 0x03, "SYSTEM"},
69 {0xC7, 0x03, "MAIN_PLANAR"},
Chris Austen10ccc0f2015-12-10 18:27:04 -060070 {0xC2, 0x6F, "PowerCap"},
Tom Joseph558184e2017-09-01 13:45:05 +053071 {0x0b, 0xCA, "PowerSupplyRedundancy"},
Jayanth Othayoth0661beb2017-03-22 06:00:58 -050072 {0xDA, 0x03, "TurboAllowed"},
Tom Joseph558184e2017-09-01 13:45:05 +053073 {0xD8, 0xC8, "PowerSupplyDerating"},
Chris Austend7cf0e42015-11-07 14:27:12 -060074 {0xFF, 0x00, ""},
Chris Austen0012e9b2015-10-22 01:37:46 -050075};
76
Patrick Venture0b02be92018-08-31 11:55:55 -070077struct sensor_data_t
78{
Chris Austenac4604a2015-10-13 12:43:27 -050079 uint8_t sennum;
Patrick Venture0b02be92018-08-31 11:55:55 -070080} __attribute__((packed));
Chris Austenac4604a2015-10-13 12:43:27 -050081
Lei YU14a47812021-09-17 15:58:04 +080082using SDRCacheMap = std::unordered_map<uint8_t, get_sdr::SensorDataFullRecord>;
83SDRCacheMap sdrCacheMap __attribute__((init_priority(101)));
84
85using SensorThresholdMap =
86 std::unordered_map<uint8_t, get_sdr::GetSensorThresholdsResponse>;
87SensorThresholdMap sensorThresholdMap __attribute__((init_priority(101)));
88
Lei YUbe5c6b22021-09-16 15:46:20 +080089std::map<uint8_t, std::unique_ptr<sdbusplus::bus::match::match>>
90 sensorAddedMatches __attribute__((init_priority(101)));
91std::map<uint8_t, std::unique_ptr<sdbusplus::bus::match::match>>
92 sensorUpdatedMatches __attribute__((init_priority(101)));
93
94void initSensorMatches()
95{
96 using namespace sdbusplus::bus::match::rules;
97 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
98 for (const auto& s : ipmi::sensor::sensors)
99 {
100 sensorAddedMatches.emplace(
101 s.first,
102 std::make_unique<sdbusplus::bus::match::match>(
103 bus, interfacesAdded() + argNpath(0, s.second.sensorPath),
104 [id = s.first, obj = s.second.sensorPath](auto& /*msg*/) {
105 // TODO
106 }));
107 sensorUpdatedMatches.emplace(
108 s.first,
109 std::make_unique<sdbusplus::bus::match::match>(
110 bus,
111 type::signal() + path(s.second.sensorPath) +
112 member("PropertiesChanged"s) +
113 interface("org.freedesktop.DBus.Properties"s),
114 [id = s.first, obj = s.second.sensorPath](auto& /*msg*/) {
115 // TODO
116 }));
117 }
118}
119
Patrick Venture0b02be92018-08-31 11:55:55 -0700120int get_bus_for_path(const char* path, char** busname)
121{
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700122 return mapper_get_service(bus, path, busname);
123}
Tomd700e762016-09-20 18:24:13 +0530124
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700125// Use a lookup table to find the interface name of a specific sensor
126// This will be used until an alternative is found. this is the first
127// step for mapping IPMI
Patrick Venture0b02be92018-08-31 11:55:55 -0700128int find_openbmc_path(uint8_t num, dbus_interface_t* interface)
129{
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700130 int rc;
131
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700132 const auto& sensor_it = ipmi::sensor::sensors.find(num);
133 if (sensor_it == ipmi::sensor::sensors.end())
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700134 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -0500135 // The sensor map does not contain the sensor requested
136 return -EINVAL;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700137 }
138
139 const auto& info = sensor_it->second;
140
Patrick Williams8451edf2017-06-13 09:01:06 -0500141 char* busname = nullptr;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700142 rc = get_bus_for_path(info.sensorPath.c_str(), &busname);
Patrick Venture0b02be92018-08-31 11:55:55 -0700143 if (rc < 0)
144 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700145 std::fprintf(stderr, "Failed to get %s busname: %s\n",
146 info.sensorPath.c_str(), busname);
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700147 goto final;
148 }
149
150 interface->sensortype = info.sensorType;
151 strcpy(interface->bus, busname);
152 strcpy(interface->path, info.sensorPath.c_str());
153 // Take the interface name from the beginning of the DbusInterfaceMap. This
154 // works for the Value interface but may not suffice for more complex
155 // sensors.
156 // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103
Patrick Venture0b02be92018-08-31 11:55:55 -0700157 strcpy(interface->interface,
158 info.propertyInterfaces.begin()->first.c_str());
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700159 interface->sensornumber = num;
160
161final:
162 free(busname);
163 return rc;
164}
165
Tomd700e762016-09-20 18:24:13 +0530166/////////////////////////////////////////////////////////////////////
167//
168// Routines used by ipmi commands wanting to interact on the dbus
169//
170/////////////////////////////////////////////////////////////////////
Patrick Venture0b02be92018-08-31 11:55:55 -0700171int set_sensor_dbus_state_s(uint8_t number, const char* method,
172 const char* value)
173{
Tomd700e762016-09-20 18:24:13 +0530174
175 dbus_interface_t a;
176 int r;
177 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700178 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530179
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700180 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530181
Patrick Venture0b02be92018-08-31 11:55:55 -0700182 if (r < 0)
183 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700184 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530185 return 0;
186 }
187
Patrick Venture0b02be92018-08-31 11:55:55 -0700188 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
189 method);
190 if (r < 0)
191 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700192 std::fprintf(stderr, "Failed to create a method call: %s",
193 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530194 goto final;
195 }
196
197 r = sd_bus_message_append(m, "v", "s", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700198 if (r < 0)
199 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700200 std::fprintf(stderr, "Failed to create a input parameter: %s",
201 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530202 goto final;
203 }
204
Tomd700e762016-09-20 18:24:13 +0530205 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700206 if (r < 0)
207 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700208 std::fprintf(stderr, "Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530209 }
210
211final:
212 sd_bus_error_free(&error);
213 m = sd_bus_message_unref(m);
214
215 return 0;
216}
Patrick Venture0b02be92018-08-31 11:55:55 -0700217int set_sensor_dbus_state_y(uint8_t number, const char* method,
218 const uint8_t value)
219{
Tomd700e762016-09-20 18:24:13 +0530220
221 dbus_interface_t a;
222 int r;
223 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700224 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530225
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700226 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530227
Patrick Venture0b02be92018-08-31 11:55:55 -0700228 if (r < 0)
229 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700230 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530231 return 0;
232 }
233
Patrick Venture0b02be92018-08-31 11:55:55 -0700234 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
235 method);
236 if (r < 0)
237 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700238 std::fprintf(stderr, "Failed to create a method call: %s",
239 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530240 goto final;
241 }
242
243 r = sd_bus_message_append(m, "v", "i", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700244 if (r < 0)
245 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700246 std::fprintf(stderr, "Failed to create a input parameter: %s",
247 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530248 goto final;
249 }
250
Tomd700e762016-09-20 18:24:13 +0530251 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700252 if (r < 0)
253 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700254 std::fprintf(stderr, "12 Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530255 }
256
257final:
258 sd_bus_error_free(&error);
259 m = sd_bus_message_unref(m);
260
261 return 0;
262}
263
Patrick Venture0b02be92018-08-31 11:55:55 -0700264uint8_t dbus_to_sensor_type(char* p)
265{
Chris Austenac4604a2015-10-13 12:43:27 -0500266
Patrick Venture0b02be92018-08-31 11:55:55 -0700267 sensorTypemap_t* s = g_SensorTypeMap;
268 char r = 0;
269 while (s->number != 0xFF)
270 {
271 if (!strcmp(s->dbusname, p))
272 {
Tom Joseph558184e2017-09-01 13:45:05 +0530273 r = s->typecode;
Patrick Venture0b02be92018-08-31 11:55:55 -0700274 break;
Chris Austenac4604a2015-10-13 12:43:27 -0500275 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500276 s++;
Chris Austenac4604a2015-10-13 12:43:27 -0500277 }
278
Chris Austen0012e9b2015-10-22 01:37:46 -0500279 if (s->number == 0xFF)
280 printf("Failed to find Sensor Type %s\n", p);
Chris Austenac4604a2015-10-13 12:43:27 -0500281
Chris Austen0012e9b2015-10-22 01:37:46 -0500282 return r;
Chris Austenac4604a2015-10-13 12:43:27 -0500283}
284
Patrick Venture0b02be92018-08-31 11:55:55 -0700285uint8_t get_type_from_interface(dbus_interface_t dbus_if)
286{
Chris Austen0012e9b2015-10-22 01:37:46 -0500287
Brad Bishop56003452016-10-05 21:49:19 -0400288 uint8_t type;
Chris Austen0012e9b2015-10-22 01:37:46 -0500289
Chris Austen0012e9b2015-10-22 01:37:46 -0500290 // This is where sensors that do not exist in dbus but do
291 // exist in the host code stop. This should indicate it
292 // is not a supported sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700293 if (dbus_if.interface[0] == 0)
294 {
295 return 0;
296 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500297
Emily Shaffer71174412017-04-05 15:10:40 -0700298 // Fetch type from interface itself.
299 if (dbus_if.sensortype != 0)
300 {
301 type = dbus_if.sensortype;
Patrick Venture0b02be92018-08-31 11:55:55 -0700302 }
303 else
304 {
Chris Austen0012e9b2015-10-22 01:37:46 -0500305 // Non InventoryItems
Patrick Venture4491a462018-10-13 13:00:42 -0700306 char* p = strrchr(dbus_if.path, '/');
Patrick Venture0b02be92018-08-31 11:55:55 -0700307 type = dbus_to_sensor_type(p + 1);
Chris Austen0012e9b2015-10-22 01:37:46 -0500308 }
309
Brad Bishop56003452016-10-05 21:49:19 -0400310 return type;
Patrick Venture0b02be92018-08-31 11:55:55 -0700311}
Chris Austen0012e9b2015-10-22 01:37:46 -0500312
Emily Shaffer391f3302017-04-03 10:27:08 -0700313// Replaces find_sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700314uint8_t find_type_for_sensor_number(uint8_t num)
315{
Emily Shaffer391f3302017-04-03 10:27:08 -0700316 int r;
317 dbus_interface_t dbus_if;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700318 r = find_openbmc_path(num, &dbus_if);
Patrick Venture0b02be92018-08-31 11:55:55 -0700319 if (r < 0)
320 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700321 std::fprintf(stderr, "Could not find sensor %d\n", num);
Lei YU91875f72018-04-03 15:14:49 +0800322 return 0;
Emily Shaffer391f3302017-04-03 10:27:08 -0700323 }
324 return get_type_from_interface(dbus_if);
325}
326
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000327/**
328 * @brief implements the get sensor type command.
329 * @param - sensorNumber
330 *
331 * @return IPMI completion code plus response data on success.
332 * - sensorType
333 * - eventType
334 **/
335
336ipmi::RspType<uint8_t, // sensorType
337 uint8_t // eventType
338 >
339 ipmiGetSensorType(uint8_t sensorNumber)
Chris Austenac4604a2015-10-13 12:43:27 -0500340{
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000341 uint8_t sensorType = find_type_for_sensor_number(sensorNumber);
Chris Austenac4604a2015-10-13 12:43:27 -0500342
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000343 if (sensorType == 0)
Patrick Venture0b02be92018-08-31 11:55:55 -0700344 {
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000345 return ipmi::responseSensorInvalid();
Chris Austen0012e9b2015-10-22 01:37:46 -0500346 }
347
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000348 constexpr uint8_t eventType = 0x6F;
349 return ipmi::responseSuccess(sensorType, eventType);
Chris Austenac4604a2015-10-13 12:43:27 -0500350}
351
Patrick Venture0b02be92018-08-31 11:55:55 -0700352const std::set<std::string> analogSensorInterfaces = {
Emily Shaffercc941e12017-06-14 13:06:26 -0700353 "xyz.openbmc_project.Sensor.Value",
Patrick Venturee9a64052017-08-18 19:17:27 -0700354 "xyz.openbmc_project.Control.FanPwm",
Emily Shaffercc941e12017-06-14 13:06:26 -0700355};
356
357bool isAnalogSensor(const std::string& interface)
358{
359 return (analogSensorInterfaces.count(interface));
360}
361
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000362/**
363@brief This command is used to set sensorReading.
364
365@param
366 - sensorNumber
367 - operation
368 - reading
369 - assertOffset0_7
370 - assertOffset8_14
371 - deassertOffset0_7
372 - deassertOffset8_14
373 - eventData1
374 - eventData2
375 - eventData3
376
377@return completion code on success.
378**/
379
380ipmi::RspType<> ipmiSetSensorReading(uint8_t sensorNumber, uint8_t operation,
381 uint8_t reading, uint8_t assertOffset0_7,
382 uint8_t assertOffset8_14,
383 uint8_t deassertOffset0_7,
384 uint8_t deassertOffset8_14,
385 uint8_t eventData1, uint8_t eventData2,
386 uint8_t eventData3)
Tom Josephbe703f72017-03-09 12:34:35 +0530387{
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000388 log<level::DEBUG>("IPMI SET_SENSOR",
389 entry("SENSOR_NUM=0x%02x", sensorNumber));
390
Arun P. Mohanan0634e982021-08-30 15:21:33 +0530391 if (sensorNumber == 0xFF)
392 {
393 return ipmi::responseInvalidFieldRequest();
394 }
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000395 ipmi::sensor::SetSensorReadingReq cmdData;
396
397 cmdData.number = sensorNumber;
398 cmdData.operation = operation;
399 cmdData.reading = reading;
400 cmdData.assertOffset0_7 = assertOffset0_7;
401 cmdData.assertOffset8_14 = assertOffset8_14;
402 cmdData.deassertOffset0_7 = deassertOffset0_7;
403 cmdData.deassertOffset8_14 = deassertOffset8_14;
404 cmdData.eventData1 = eventData1;
405 cmdData.eventData2 = eventData2;
406 cmdData.eventData3 = eventData3;
Tom Josephbe703f72017-03-09 12:34:35 +0530407
408 // Check if the Sensor Number is present
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700409 const auto iter = ipmi::sensor::sensors.find(sensorNumber);
410 if (iter == ipmi::sensor::sensors.end())
Tom Josephbe703f72017-03-09 12:34:35 +0530411 {
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000412 updateSensorRecordFromSSRAESC(&sensorNumber);
413 return ipmi::responseSuccess();
Tom Josephbe703f72017-03-09 12:34:35 +0530414 }
415
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500416 try
417 {
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500418 if (ipmi::sensor::Mutability::Write !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700419 (iter->second.mutability & ipmi::sensor::Mutability::Write))
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500420 {
421 log<level::ERR>("Sensor Set operation is not allowed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000422 entry("SENSOR_NUM=%d", sensorNumber));
423 return ipmi::responseIllegalCommand();
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500424 }
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000425 auto ipmiRC = iter->second.updateFunc(cmdData, iter->second);
426 return ipmi::response(ipmiRC);
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500427 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -0500428 catch (const InternalFailure& e)
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500429 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700430 log<level::ERR>("Set sensor failed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000431 entry("SENSOR_NUM=%d", sensorNumber));
Patrick Venture0b02be92018-08-31 11:55:55 -0700432 commit<InternalFailure>();
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000433 return ipmi::responseUnspecifiedError();
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500434 }
Tom Joseph82024322017-09-28 20:07:29 +0530435 catch (const std::runtime_error& e)
436 {
437 log<level::ERR>(e.what());
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000438 return ipmi::responseUnspecifiedError();
Tom Joseph82024322017-09-28 20:07:29 +0530439 }
Chris Austenac4604a2015-10-13 12:43:27 -0500440}
441
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000442/** @brief implements the get sensor reading command
443 * @param sensorNum - sensor number
444 *
445 * @returns IPMI completion code plus response data
446 * - senReading - sensor reading
447 * - reserved
448 * - readState - sensor reading state enabled
449 * - senScanState - sensor scan state disabled
450 * - allEventMessageState - all Event message state disabled
451 * - assertionStatesLsb - threshold levels states
452 * - assertionStatesMsb - discrete reading sensor states
453 */
454ipmi::RspType<uint8_t, // sensor reading
Tom Joseph3ee668f2018-03-02 19:49:17 +0530455
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000456 uint5_t, // reserved
457 bool, // reading state
Sui Chen4cc42552019-09-11 10:28:35 -0700458 bool, // 0 = sensor scanning state disabled
459 bool, // 0 = all event messages disabled
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000460
461 uint8_t, // threshold levels states
462 uint8_t // discrete reading sensor states
463 >
464 ipmiSensorGetSensorReading(uint8_t sensorNum)
465{
466 if (sensorNum == 0xFF)
467 {
468 return ipmi::responseInvalidFieldRequest();
469 }
470
471 const auto iter = ipmi::sensor::sensors.find(sensorNum);
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700472 if (iter == ipmi::sensor::sensors.end())
Tom Joseph3ee668f2018-03-02 19:49:17 +0530473 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000474 return ipmi::responseSensorInvalid();
Tom Joseph3ee668f2018-03-02 19:49:17 +0530475 }
476 if (ipmi::sensor::Mutability::Read !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700477 (iter->second.mutability & ipmi::sensor::Mutability::Read))
Tom Joseph3ee668f2018-03-02 19:49:17 +0530478 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000479 return ipmi::responseIllegalCommand();
Tom Joseph3ee668f2018-03-02 19:49:17 +0530480 }
481
482 try
483 {
Sui Chen4cc42552019-09-11 10:28:35 -0700484 ipmi::sensor::GetSensorResponse getResponse =
485 iter->second.getFunc(iter->second);
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000486
Sui Chen4cc42552019-09-11 10:28:35 -0700487 return ipmi::responseSuccess(getResponse.reading, uint5_t(0),
488 getResponse.readingOrStateUnavailable,
489 getResponse.scanningEnabled,
490 getResponse.allEventMessagesEnabled,
491 getResponse.thresholdLevelsStates,
492 getResponse.discreteReadingSensorStates);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530493 }
Brandon Kim9cf85622019-06-19 12:05:08 -0700494#ifdef UPDATE_FUNCTIONAL_ON_FAIL
495 catch (const SensorFunctionalError& e)
496 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000497 return ipmi::responseResponseError();
Brandon Kim9cf85622019-06-19 12:05:08 -0700498 }
499#endif
Tom Joseph3ee668f2018-03-02 19:49:17 +0530500 catch (const std::exception& e)
501 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000502 // Intitilizing with default values
503 constexpr uint8_t senReading = 0;
504 constexpr uint5_t reserved{0};
505 constexpr bool readState = true;
506 constexpr bool senScanState = false;
507 constexpr bool allEventMessageState = false;
508 constexpr uint8_t assertionStatesLsb = 0;
509 constexpr uint8_t assertionStatesMsb = 0;
510
511 return ipmi::responseSuccess(senReading, reserved, readState,
512 senScanState, allEventMessageState,
513 assertionStatesLsb, assertionStatesMsb);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530514 }
515}
516
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300517get_sdr::GetSensorThresholdsResponse
518 getSensorThresholds(ipmi::Context::ptr& ctx, uint8_t sensorNum)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600519{
William A. Kennington III515bc372020-10-27 16:32:32 -0700520 get_sdr::GetSensorThresholdsResponse resp{};
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530521 constexpr auto warningThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600522 "xyz.openbmc_project.Sensor.Threshold.Warning";
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530523 constexpr auto criticalThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600524 "xyz.openbmc_project.Sensor.Threshold.Critical";
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600525
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700526 const auto iter = ipmi::sensor::sensors.find(sensorNum);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530527 const auto info = iter->second;
528
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300529 std::string service;
530 boost::system::error_code ec;
531 ec = ipmi::getService(ctx, info.sensorInterface, info.sensorPath, service);
532 if (ec)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530533 {
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300534 return resp;
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530535 }
536
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300537 ipmi::PropertyMap warnThresholds;
538 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
539 warningThreshIntf, warnThresholds);
540 if (!ec)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530541 {
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300542 double warnLow = std::visit(ipmi::VariantToDoubleVisitor(),
543 warnThresholds["WarningLow"]);
544 double warnHigh = std::visit(ipmi::VariantToDoubleVisitor(),
545 warnThresholds["WarningHigh"]);
546
547 if (std::isfinite(warnLow))
548 {
549 warnLow *= std::pow(10, info.scale - info.exponentR);
550 resp.lowerNonCritical = static_cast<uint8_t>(
551 (warnLow - info.scaledOffset) / info.coefficientM);
552 resp.validMask |= static_cast<uint8_t>(
553 ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK);
554 }
555
556 if (std::isfinite(warnHigh))
557 {
558 warnHigh *= std::pow(10, info.scale - info.exponentR);
559 resp.upperNonCritical = static_cast<uint8_t>(
560 (warnHigh - info.scaledOffset) / info.coefficientM);
561 resp.validMask |= static_cast<uint8_t>(
562 ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK);
563 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530564 }
565
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300566 ipmi::PropertyMap critThresholds;
567 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
568 criticalThreshIntf, critThresholds);
569 if (!ec)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530570 {
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300571 double critLow = std::visit(ipmi::VariantToDoubleVisitor(),
572 critThresholds["CriticalLow"]);
573 double critHigh = std::visit(ipmi::VariantToDoubleVisitor(),
574 critThresholds["CriticalHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530575
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300576 if (std::isfinite(critLow))
577 {
578 critLow *= std::pow(10, info.scale - info.exponentR);
579 resp.lowerCritical = static_cast<uint8_t>(
580 (critLow - info.scaledOffset) / info.coefficientM);
581 resp.validMask |= static_cast<uint8_t>(
582 ipmi::sensor::ThresholdMask::CRITICAL_LOW_MASK);
583 }
584
585 if (std::isfinite(critHigh))
586 {
587 critHigh *= std::pow(10, info.scale - info.exponentR);
588 resp.upperCritical = static_cast<uint8_t>(
589 (critHigh - info.scaledOffset) / info.coefficientM);
590 resp.validMask |= static_cast<uint8_t>(
591 ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK);
592 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530593 }
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000594
595 return resp;
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530596}
597
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000598/** @brief implements the get sensor thresholds command
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300599 * @param ctx - IPMI context pointer
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000600 * @param sensorNum - sensor number
601 *
602 * @returns IPMI completion code plus response data
603 * - validMask - threshold mask
604 * - lower non-critical threshold - IPMI messaging state
605 * - lower critical threshold - link authentication state
606 * - lower non-recoverable threshold - callback state
607 * - upper non-critical threshold
608 * - upper critical
609 * - upper non-recoverable
610 */
611ipmi::RspType<uint8_t, // validMask
612 uint8_t, // lowerNonCritical
613 uint8_t, // lowerCritical
614 uint8_t, // lowerNonRecoverable
615 uint8_t, // upperNonCritical
616 uint8_t, // upperCritical
617 uint8_t // upperNonRecoverable
618 >
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300619 ipmiSensorGetSensorThresholds(ipmi::Context::ptr& ctx, uint8_t sensorNum)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530620{
621 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
622
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700623 const auto iter = ipmi::sensor::sensors.find(sensorNum);
624 if (iter == ipmi::sensor::sensors.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600625 {
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000626 return ipmi::responseSensorInvalid();
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600627 }
628
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530629 const auto info = iter->second;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600630
Patrick Venture0b02be92018-08-31 11:55:55 -0700631 // Proceed only if the sensor value interface is implemented.
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530632 if (info.propertyInterfaces.find(valueInterface) ==
633 info.propertyInterfaces.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600634 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700635 // return with valid mask as 0
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000636 return ipmi::responseSuccess();
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600637 }
638
Lei YU14a47812021-09-17 15:58:04 +0800639 auto it = sensorThresholdMap.find(sensorNum);
640 if (it == sensorThresholdMap.end())
641 {
642 sensorThresholdMap[sensorNum] = getSensorThresholds(ctx, sensorNum);
643 }
644
645 const auto& resp = sensorThresholdMap[sensorNum];
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600646
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000647 return ipmi::responseSuccess(resp.validMask, resp.lowerNonCritical,
648 resp.lowerCritical, resp.lowerNonRecoverable,
649 resp.upperNonCritical, resp.upperCritical,
650 resp.upperNonRecoverable);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600651}
652
Lotus Xuf93da662021-10-18 17:20:06 +0800653/** @brief implements the Set Sensor threshold command
654 * @param sensorNumber - sensor number
655 * @param lowerNonCriticalThreshMask
656 * @param lowerCriticalThreshMask
657 * @param lowerNonRecovThreshMask
658 * @param upperNonCriticalThreshMask
659 * @param upperCriticalThreshMask
660 * @param upperNonRecovThreshMask
661 * @param reserved
662 * @param lowerNonCritical - lower non-critical threshold
663 * @param lowerCritical - Lower critical threshold
664 * @param lowerNonRecoverable - Lower non recovarable threshold
665 * @param upperNonCritical - Upper non-critical threshold
666 * @param upperCritical - Upper critical
667 * @param upperNonRecoverable - Upper Non-recoverable
668 *
669 * @returns IPMI completion code
670 */
671ipmi::RspType<> ipmiSenSetSensorThresholds(
672 ipmi::Context::ptr& ctx, uint8_t sensorNum, bool lowerNonCriticalThreshMask,
673 bool lowerCriticalThreshMask, bool lowerNonRecovThreshMask,
674 bool upperNonCriticalThreshMask, bool upperCriticalThreshMask,
675 bool upperNonRecovThreshMask, uint2_t reserved, uint8_t lowerNonCritical,
676 uint8_t lowerCritical, uint8_t lowerNonRecoverable,
677 uint8_t upperNonCritical, uint8_t upperCritical,
678 uint8_t upperNonRecoverable)
679{
680 if (reserved)
681 {
682 return ipmi::responseInvalidFieldRequest();
683 }
684
685 // lower nc and upper nc not suppported on any sensor
686 if (lowerNonRecovThreshMask || upperNonRecovThreshMask)
687 {
688 return ipmi::responseInvalidFieldRequest();
689 }
690
691 // if none of the threshold mask are set, nothing to do
692 if (!(lowerNonCriticalThreshMask | lowerCriticalThreshMask |
693 lowerNonRecovThreshMask | upperNonCriticalThreshMask |
694 upperCriticalThreshMask | upperNonRecovThreshMask))
695 {
696 return ipmi::responseSuccess();
697 }
698
699 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
700
701 const auto iter = ipmi::sensor::sensors.find(sensorNum);
702 if (iter == ipmi::sensor::sensors.end())
703 {
704 return ipmi::responseSensorInvalid();
705 }
706
707 const auto& info = iter->second;
708
709 // Proceed only if the sensor value interface is implemented.
710 if (info.propertyInterfaces.find(valueInterface) ==
711 info.propertyInterfaces.end())
712 {
713 // return with valid mask as 0
714 return ipmi::responseSuccess();
715 }
716
717 constexpr auto warningThreshIntf =
718 "xyz.openbmc_project.Sensor.Threshold.Warning";
719 constexpr auto criticalThreshIntf =
720 "xyz.openbmc_project.Sensor.Threshold.Critical";
721
722 std::string service;
723 boost::system::error_code ec;
724 ec = ipmi::getService(ctx, info.sensorInterface, info.sensorPath, service);
725 if (ec)
726 {
727 return ipmi::responseResponseError();
728 }
729 // store a vector of property name, value to set, and interface
730 std::vector<std::tuple<std::string, uint8_t, std::string>> thresholdsToSet;
731
732 // define the indexes of the tuple
733 constexpr uint8_t propertyName = 0;
734 constexpr uint8_t thresholdValue = 1;
735 constexpr uint8_t interface = 2;
736 // verifiy all needed fields are present
737 if (lowerCriticalThreshMask || upperCriticalThreshMask)
738 {
739
740 ipmi::PropertyMap findThreshold;
741 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
742 criticalThreshIntf, findThreshold);
743
744 if (!ec)
745 {
746 if (lowerCriticalThreshMask)
747 {
748 auto findLower = findThreshold.find("CriticalLow");
749 if (findLower == findThreshold.end())
750 {
751 return ipmi::responseInvalidFieldRequest();
752 }
753 thresholdsToSet.emplace_back("CriticalLow", lowerCritical,
754 criticalThreshIntf);
755 }
756 if (upperCriticalThreshMask)
757 {
758 auto findUpper = findThreshold.find("CriticalHigh");
759 if (findUpper == findThreshold.end())
760 {
761 return ipmi::responseInvalidFieldRequest();
762 }
763 thresholdsToSet.emplace_back("CriticalHigh", upperCritical,
764 criticalThreshIntf);
765 }
766 }
767 }
768 if (lowerNonCriticalThreshMask || upperNonCriticalThreshMask)
769 {
770 ipmi::PropertyMap findThreshold;
771 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
772 warningThreshIntf, findThreshold);
773
774 if (!ec)
775 {
776 if (lowerNonCriticalThreshMask)
777 {
778 auto findLower = findThreshold.find("WarningLow");
779 if (findLower == findThreshold.end())
780 {
781 return ipmi::responseInvalidFieldRequest();
782 }
783 thresholdsToSet.emplace_back("WarningLow", lowerNonCritical,
784 warningThreshIntf);
785 }
786 if (upperNonCriticalThreshMask)
787 {
788 auto findUpper = findThreshold.find("WarningHigh");
789 if (findUpper == findThreshold.end())
790 {
791 return ipmi::responseInvalidFieldRequest();
792 }
793 thresholdsToSet.emplace_back("WarningHigh", upperNonCritical,
794 warningThreshIntf);
795 }
796 }
797 }
798 for (const auto& property : thresholdsToSet)
799 {
800 // from section 36.3 in the IPMI Spec, assume all linear
801 double valueToSet =
802 ((info.coefficientM * std::get<thresholdValue>(property)) +
803 (info.scaledOffset * std::pow(10.0, info.scale))) *
804 std::pow(10.0, info.exponentR);
805 ipmi::setDbusProperty(
806 ctx, service, info.sensorPath, std::get<interface>(property),
807 std::get<propertyName>(property), ipmi::Value(valueToSet));
808 }
809
Lei YU14a47812021-09-17 15:58:04 +0800810 // Invalidate the cache
811 sensorThresholdMap.erase(sensorNum);
Lotus Xuf93da662021-10-18 17:20:06 +0800812 return ipmi::responseSuccess();
813}
814
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000815/** @brief implements the get SDR Info command
816 * @param count - Operation
817 *
818 * @returns IPMI completion code plus response data
819 * - sdrCount - sensor/SDR count
820 * - lunsAndDynamicPopulation - static/Dynamic sensor population flag
821 */
822ipmi::RspType<uint8_t, // respcount
823 uint8_t // dynamic population flags
824 >
825 ipmiSensorGetDeviceSdrInfo(std::optional<uint8_t> count)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700826{
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000827 uint8_t sdrCount;
828 // multiple LUNs not supported.
829 constexpr uint8_t lunsAndDynamicPopulation = 1;
830 constexpr uint8_t getSdrCount = 0x01;
831 constexpr uint8_t getSensorCount = 0x00;
832
833 if (count.value_or(0) == getSdrCount)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700834 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000835 // Get SDR count. This returns the total number of SDRs in the device.
Patrick Venture87fd2cd2019-08-19 12:07:18 -0700836 const auto& entityRecords =
837 ipmi::sensor::EntityInfoMapContainer::getContainer()
838 ->getIpmiEntityRecords();
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700839 sdrCount =
840 ipmi::sensor::sensors.size() + frus.size() + entityRecords.size();
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000841 }
842 else if (count.value_or(0) == getSensorCount)
843 {
844 // Get Sensor count. This returns the number of sensors
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700845 sdrCount = ipmi::sensor::sensors.size();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700846 }
847 else
848 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000849 return ipmi::responseInvalidCommandOnLun();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700850 }
851
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000852 return ipmi::responseSuccess(sdrCount, lunsAndDynamicPopulation);
Emily Shafferd06e0e72017-04-05 09:08:57 -0700853}
854
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000855/** @brief implements the reserve SDR command
856 * @returns IPMI completion code plus response data
857 * - reservationID - reservation ID
858 */
859ipmi::RspType<uint16_t> ipmiSensorReserveSdr()
Emily Shaffera344afc2017-04-13 15:09:39 -0700860{
861 // A constant reservation ID is okay until we implement add/remove SDR.
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000862 constexpr uint16_t reservationID = 1;
Emily Shaffera344afc2017-04-13 15:09:39 -0700863
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000864 return ipmi::responseSuccess(reservationID);
Emily Shaffera344afc2017-04-13 15:09:39 -0700865}
Chris Austenac4604a2015-10-13 12:43:27 -0500866
Patrick Venture0b02be92018-08-31 11:55:55 -0700867void setUnitFieldsForObject(const ipmi::sensor::Info* info,
868 get_sdr::SensorDataFullRecordBody* body)
Emily Shaffercc941e12017-06-14 13:06:26 -0700869{
Tom Josephdc212b22018-02-16 09:59:57 +0530870 namespace server = sdbusplus::xyz::openbmc_project::Sensor::server;
871 try
Emily Shaffercc941e12017-06-14 13:06:26 -0700872 {
Tom Josephdc212b22018-02-16 09:59:57 +0530873 auto unit = server::Value::convertUnitFromString(info->unit);
874 // Unit strings defined in
875 // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml
876 switch (unit)
Emily Shaffercc941e12017-06-14 13:06:26 -0700877 {
Tom Josephdc212b22018-02-16 09:59:57 +0530878 case server::Value::Unit::DegreesC:
879 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C;
880 break;
881 case server::Value::Unit::RPMS:
Kirill Pakhomov812e44c2018-10-22 16:25:35 +0300882 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_RPM;
Tom Josephdc212b22018-02-16 09:59:57 +0530883 break;
884 case server::Value::Unit::Volts:
885 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS;
886 break;
887 case server::Value::Unit::Meters:
888 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS;
889 break;
890 case server::Value::Unit::Amperes:
891 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES;
892 break;
893 case server::Value::Unit::Joules:
894 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES;
895 break;
896 case server::Value::Unit::Watts:
897 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS;
898 break;
899 default:
900 // Cannot be hit.
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700901 std::fprintf(stderr, "Unknown value unit type: = %s\n",
902 info->unit.c_str());
Emily Shaffercc941e12017-06-14 13:06:26 -0700903 }
904 }
Patrick Venture64678b82018-10-13 13:11:32 -0700905 catch (const sdbusplus::exception::InvalidEnumString& e)
Emily Shaffercc941e12017-06-14 13:06:26 -0700906 {
Tom Josephdc212b22018-02-16 09:59:57 +0530907 log<level::WARNING>("Warning: no unit provided for sensor!");
Emily Shaffercc941e12017-06-14 13:06:26 -0700908 }
Emily Shaffercc941e12017-06-14 13:06:26 -0700909}
910
Patrick Venture0b02be92018-08-31 11:55:55 -0700911ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body,
912 const ipmi::sensor::Info* info,
Emily Shafferbbef71c2017-05-08 16:36:17 -0700913 ipmi_data_len_t data_len)
914{
915 /* Functional sensor case */
Emily Shaffercc941e12017-06-14 13:06:26 -0700916 if (isAnalogSensor(info->propertyInterfaces.begin()->first))
Emily Shafferbbef71c2017-05-08 16:36:17 -0700917 {
Tony Leec5324252019-10-31 17:24:16 +0800918 body->sensor_units_1 = info->sensorUnits1; // default is 0. unsigned, no
919 // rate, no modifier, not a %
Emily Shafferbbef71c2017-05-08 16:36:17 -0700920 /* Unit info */
Tom Josephdc212b22018-02-16 09:59:57 +0530921 setUnitFieldsForObject(info, body);
Emily Shaffer10f49592017-05-10 12:01:10 -0700922
923 get_sdr::body::set_b(info->coefficientB, body);
924 get_sdr::body::set_m(info->coefficientM, body);
925 get_sdr::body::set_b_exp(info->exponentB, body);
Tom Josephdc212b22018-02-16 09:59:57 +0530926 get_sdr::body::set_r_exp(info->exponentR, body);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700927
Emily Shafferbbef71c2017-05-08 16:36:17 -0700928 get_sdr::body::set_id_type(0b00, body); // 00 = unicode
Emily Shafferbbef71c2017-05-08 16:36:17 -0700929 }
930
Tom Joseph96423912018-01-25 00:14:34 +0530931 /* ID string */
Jeremy Kerrbe4ffa82020-08-10 16:17:37 +0800932 auto id_string = info->sensorName;
933
934 if (id_string.empty())
935 {
936 id_string = info->sensorNameFunc(*info);
937 }
Tom Joseph96423912018-01-25 00:14:34 +0530938
939 if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH)
940 {
941 get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body);
942 }
943 else
944 {
945 get_sdr::body::set_id_strlen(id_string.length(), body);
946 }
947 strncpy(body->id_string, id_string.c_str(),
948 get_sdr::body::get_id_strlen(body));
949
Emily Shafferbbef71c2017-05-08 16:36:17 -0700950 return IPMI_CC_OK;
951};
952
Ratan Guptae0cc8552018-01-22 14:23:04 +0530953ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response,
954 ipmi_data_len_t data_len)
955{
956 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
957 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700958 get_sdr::SensorDataFruRecord record{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530959 auto dataLength = 0;
960
961 auto fru = frus.begin();
Patrick Venture0b02be92018-08-31 11:55:55 -0700962 uint8_t fruID{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530963 auto recordID = get_sdr::request::get_record_id(req);
964
965 fruID = recordID - FRU_RECORD_ID_START;
966 fru = frus.find(fruID);
967 if (fru == frus.end())
968 {
969 return IPMI_CC_SENSOR_INVALID;
970 }
971
972 /* Header */
973 get_sdr::header::set_record_id(recordID, &(record.header));
974 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
975 record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD;
976 record.header.record_length = sizeof(record.key) + sizeof(record.body);
977
978 /* Key */
979 record.key.fruID = fruID;
980 record.key.accessLun |= IPMI_LOGICAL_FRU;
981 record.key.deviceAddress = BMCSlaveAddress;
982
983 /* Body */
984 record.body.entityID = fru->second[0].entityID;
985 record.body.entityInstance = fru->second[0].entityInstance;
986 record.body.deviceType = fruInventoryDevice;
987 record.body.deviceTypeModifier = IPMIFruInventory;
988
989 /* Device ID string */
Patrick Venture0b02be92018-08-31 11:55:55 -0700990 auto deviceID =
991 fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1,
992 fru->second[0].path.length());
Ratan Guptae0cc8552018-01-22 14:23:04 +0530993
994 if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH)
995 {
996 get_sdr::body::set_device_id_strlen(
Patrick Venture0b02be92018-08-31 11:55:55 -0700997 get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530998 }
999 else
1000 {
Patrick Venture0b02be92018-08-31 11:55:55 -07001001 get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +05301002 }
1003
1004 strncpy(record.body.deviceID, deviceID.c_str(),
1005 get_sdr::body::get_device_id_strlen(&(record.body)));
1006
1007 if (++fru == frus.end())
1008 {
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001009 // we have reached till end of fru, so assign the next record id to
1010 // 512(Max fru ID = 511) + Entity Record ID(may start with 0).
Patrick Venture87fd2cd2019-08-19 12:07:18 -07001011 const auto& entityRecords =
1012 ipmi::sensor::EntityInfoMapContainer::getContainer()
1013 ->getIpmiEntityRecords();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001014 auto next_record_id =
Patrick Venture83a0b842019-07-19 18:37:15 -07001015 (entityRecords.size())
1016 ? entityRecords.begin()->first + ENTITY_RECORD_ID_START
1017 : END_OF_RECORD;
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001018 get_sdr::response::set_next_record_id(next_record_id, resp);
1019 }
1020 else
1021 {
1022 get_sdr::response::set_next_record_id(
1023 (FRU_RECORD_ID_START + fru->first), resp);
1024 }
1025
1026 // Check for invalid offset size
1027 if (req->offset > sizeof(record))
1028 {
1029 return IPMI_CC_PARM_OUT_OF_RANGE;
1030 }
1031
1032 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
1033 sizeof(record) - req->offset);
1034
1035 std::memcpy(resp->record_data,
1036 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
1037
1038 *data_len = dataLength;
1039 *data_len += 2; // additional 2 bytes for next record ID
1040
1041 return IPMI_CC_OK;
1042}
1043
1044ipmi_ret_t ipmi_entity_get_sdr(ipmi_request_t request, ipmi_response_t response,
1045 ipmi_data_len_t data_len)
1046{
1047 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
1048 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
1049 get_sdr::SensorDataEntityRecord record{};
1050 auto dataLength = 0;
1051
Patrick Venture87fd2cd2019-08-19 12:07:18 -07001052 const auto& entityRecords =
1053 ipmi::sensor::EntityInfoMapContainer::getContainer()
1054 ->getIpmiEntityRecords();
Patrick Venture83a0b842019-07-19 18:37:15 -07001055 auto entity = entityRecords.begin();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001056 uint8_t entityRecordID;
1057 auto recordID = get_sdr::request::get_record_id(req);
1058
1059 entityRecordID = recordID - ENTITY_RECORD_ID_START;
Patrick Venture83a0b842019-07-19 18:37:15 -07001060 entity = entityRecords.find(entityRecordID);
1061 if (entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001062 {
1063 return IPMI_CC_SENSOR_INVALID;
1064 }
1065
1066 /* Header */
1067 get_sdr::header::set_record_id(recordID, &(record.header));
1068 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
1069 record.header.record_type = get_sdr::SENSOR_DATA_ENTITY_RECORD;
1070 record.header.record_length = sizeof(record.key) + sizeof(record.body);
1071
1072 /* Key */
1073 record.key.containerEntityId = entity->second.containerEntityId;
1074 record.key.containerEntityInstance = entity->second.containerEntityInstance;
1075 get_sdr::key::set_flags(entity->second.isList, entity->second.isLinked,
1076 &(record.key));
1077 record.key.entityId1 = entity->second.containedEntities[0].first;
1078 record.key.entityInstance1 = entity->second.containedEntities[0].second;
1079
1080 /* Body */
1081 record.body.entityId2 = entity->second.containedEntities[1].first;
1082 record.body.entityInstance2 = entity->second.containedEntities[1].second;
1083 record.body.entityId3 = entity->second.containedEntities[2].first;
1084 record.body.entityInstance3 = entity->second.containedEntities[2].second;
1085 record.body.entityId4 = entity->second.containedEntities[3].first;
1086 record.body.entityInstance4 = entity->second.containedEntities[3].second;
1087
Patrick Venture83a0b842019-07-19 18:37:15 -07001088 if (++entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001089 {
Patrick Venture0b02be92018-08-31 11:55:55 -07001090 get_sdr::response::set_next_record_id(END_OF_RECORD,
1091 resp); // last record
Ratan Guptae0cc8552018-01-22 14:23:04 +05301092 }
1093 else
1094 {
1095 get_sdr::response::set_next_record_id(
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001096 (ENTITY_RECORD_ID_START + entity->first), resp);
Ratan Guptae0cc8552018-01-22 14:23:04 +05301097 }
1098
Emily Shaffer0fbdbce2018-09-27 09:30:41 -07001099 // Check for invalid offset size
1100 if (req->offset > sizeof(record))
Ratan Guptae0cc8552018-01-22 14:23:04 +05301101 {
Emily Shaffer0fbdbce2018-09-27 09:30:41 -07001102 return IPMI_CC_PARM_OUT_OF_RANGE;
Ratan Guptae0cc8552018-01-22 14:23:04 +05301103 }
1104
Emily Shaffer0fbdbce2018-09-27 09:30:41 -07001105 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
1106 sizeof(record) - req->offset);
Ratan Guptae0cc8552018-01-22 14:23:04 +05301107
Patrick Ventureb51bf9c2018-09-10 15:53:14 -07001108 std::memcpy(resp->record_data,
Jason M. Bills1cd85962018-10-05 12:04:01 -07001109 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
Ratan Guptae0cc8552018-01-22 14:23:04 +05301110
1111 *data_len = dataLength;
1112 *data_len += 2; // additional 2 bytes for next record ID
1113
1114 return IPMI_CC_OK;
1115}
1116
Emily Shafferbbef71c2017-05-08 16:36:17 -07001117ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1118 ipmi_request_t request, ipmi_response_t response,
1119 ipmi_data_len_t data_len, ipmi_context_t context)
1120{
1121 ipmi_ret_t ret = IPMI_CC_OK;
Patrick Venture0b02be92018-08-31 11:55:55 -07001122 get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request;
1123 get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response;
Patrick Venture38426dd2019-07-30 15:22:29 -07001124
1125 // Note: we use an iterator so we can provide the next ID at the end of
1126 // the call.
Patrick Venturedb0cbe62019-09-09 14:47:22 -07001127 auto sensor = ipmi::sensor::sensors.begin();
Patrick Venture38426dd2019-07-30 15:22:29 -07001128 auto recordID = get_sdr::request::get_record_id(req);
1129
1130 // At the beginning of a scan, the host side will send us id=0.
1131 if (recordID != 0)
Emily Shafferbbef71c2017-05-08 16:36:17 -07001132 {
Patrick Venture38426dd2019-07-30 15:22:29 -07001133 // recordID 0 to 255 means it is a FULL record.
1134 // recordID 256 to 511 means it is a FRU record.
1135 // recordID greater then 511 means it is a Entity Association
1136 // record. Currently we are supporting three record types: FULL
1137 // record, FRU record and Enttiy Association record.
1138 if (recordID >= ENTITY_RECORD_ID_START)
Emily Shafferbbef71c2017-05-08 16:36:17 -07001139 {
Patrick Venture38426dd2019-07-30 15:22:29 -07001140 return ipmi_entity_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001141 }
Patrick Venture38426dd2019-07-30 15:22:29 -07001142 else if (recordID >= FRU_RECORD_ID_START &&
1143 recordID < ENTITY_RECORD_ID_START)
Jaghathiswari Rankappagounder Natarajan0780df12019-02-06 15:29:24 -08001144 {
Patrick Venture38426dd2019-07-30 15:22:29 -07001145 return ipmi_fru_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001146 }
1147 else
1148 {
Patrick Venturedb0cbe62019-09-09 14:47:22 -07001149 sensor = ipmi::sensor::sensors.find(recordID);
1150 if (sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -07001151 {
1152 return IPMI_CC_SENSOR_INVALID;
1153 }
Emily Shafferbbef71c2017-05-08 16:36:17 -07001154 }
Emily Shafferbbef71c2017-05-08 16:36:17 -07001155 }
1156
Patrick Venture38426dd2019-07-30 15:22:29 -07001157 uint8_t sensor_id = sensor->first;
1158
Lei YU14a47812021-09-17 15:58:04 +08001159 auto it = sdrCacheMap.find(sensor_id);
1160 if (it == sdrCacheMap.end())
Patrick Venture38426dd2019-07-30 15:22:29 -07001161 {
Lei YU14a47812021-09-17 15:58:04 +08001162 /* Header */
1163 get_sdr::SensorDataFullRecord record = {0};
1164 get_sdr::header::set_record_id(sensor_id, &(record.header));
1165 record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1
1166 record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD;
1167 record.header.record_length = sizeof(record.key) + sizeof(record.body);
1168
1169 /* Key */
1170 get_sdr::key::set_owner_id_bmc(&(record.key));
1171 record.key.sensor_number = sensor_id;
1172
1173 /* Body */
1174 record.body.entity_id = sensor->second.entityType;
1175 record.body.sensor_type = sensor->second.sensorType;
1176 record.body.event_reading_type = sensor->second.sensorReadingType;
1177 record.body.entity_instance = sensor->second.instance;
1178 if (ipmi::sensor::Mutability::Write ==
1179 (sensor->second.mutability & ipmi::sensor::Mutability::Write))
1180 {
1181 get_sdr::body::init_settable_state(true, &(record.body));
1182 }
1183
1184 // Set the type-specific details given the DBus interface
1185 populate_record_from_dbus(&(record.body), &(sensor->second), data_len);
1186 sdrCacheMap[sensor_id] = std::move(record);
Patrick Venture38426dd2019-07-30 15:22:29 -07001187 }
1188
Lei YU14a47812021-09-17 15:58:04 +08001189 const auto& record = sdrCacheMap[sensor_id];
Patrick Venture38426dd2019-07-30 15:22:29 -07001190
Patrick Venturedb0cbe62019-09-09 14:47:22 -07001191 if (++sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -07001192 {
1193 // we have reached till end of sensor, so assign the next record id
1194 // to 256(Max Sensor ID = 255) + FRU ID(may start with 0).
1195 auto next_record_id = (frus.size())
1196 ? frus.begin()->first + FRU_RECORD_ID_START
1197 : END_OF_RECORD;
1198
1199 get_sdr::response::set_next_record_id(next_record_id, resp);
1200 }
1201 else
1202 {
1203 get_sdr::response::set_next_record_id(sensor->first, resp);
1204 }
1205
1206 if (req->offset > sizeof(record))
1207 {
1208 return IPMI_CC_PARM_OUT_OF_RANGE;
1209 }
1210
1211 // data_len will ultimately be the size of the record, plus
1212 // the size of the next record ID:
1213 *data_len = std::min(static_cast<size_t>(req->bytes_to_read),
1214 sizeof(record) - req->offset);
1215
1216 std::memcpy(resp->record_data,
Lei YU14a47812021-09-17 15:58:04 +08001217 reinterpret_cast<const uint8_t*>(&record) + req->offset,
1218 *data_len);
Patrick Venture38426dd2019-07-30 15:22:29 -07001219
1220 // data_len should include the LSB and MSB:
1221 *data_len +=
1222 sizeof(resp->next_record_id_lsb) + sizeof(resp->next_record_id_msb);
1223
Emily Shafferbbef71c2017-05-08 16:36:17 -07001224 return ret;
1225}
1226
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001227static bool isFromSystemChannel()
1228{
1229 // TODO we could not figure out where the request is from based on IPMI
1230 // command handler parameters. because of it, we can not differentiate
1231 // request from SMS/SMM or IPMB channel
1232 return true;
1233}
1234
1235ipmi_ret_t ipmicmdPlatformEvent(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1236 ipmi_request_t request,
1237 ipmi_response_t response,
1238 ipmi_data_len_t dataLen, ipmi_context_t context)
1239{
1240 uint16_t generatorID;
1241 size_t count;
1242 bool assert = true;
1243 std::string sensorPath;
1244 size_t paraLen = *dataLen;
1245 PlatformEventRequest* req;
1246 *dataLen = 0;
1247
1248 if ((paraLen < selSystemEventSizeWith1Bytes) ||
1249 (paraLen > selSystemEventSizeWith3Bytes))
1250 {
1251 return IPMI_CC_REQ_DATA_LEN_INVALID;
1252 }
1253
1254 if (isFromSystemChannel())
1255 { // first byte for SYSTEM Interface is Generator ID
1256 // +1 to get common struct
1257 req = reinterpret_cast<PlatformEventRequest*>((uint8_t*)request + 1);
1258 // Capture the generator ID
1259 generatorID = *reinterpret_cast<uint8_t*>(request);
1260 // Platform Event usually comes from other firmware, like BIOS.
1261 // Unlike BMC sensor, it does not have BMC DBUS sensor path.
1262 sensorPath = "System";
1263 }
1264 else
1265 {
1266 req = reinterpret_cast<PlatformEventRequest*>(request);
1267 // TODO GenratorID for IPMB is combination of RqSA and RqLUN
1268 generatorID = 0xff;
1269 sensorPath = "IPMB";
1270 }
1271 // Content of event data field depends on sensor class.
1272 // When data0 bit[5:4] is non-zero, valid data counts is 3.
1273 // When data0 bit[7:6] is non-zero, valid data counts is 2.
1274 if (((req->data[0] & byte3EnableMask) != 0 &&
1275 paraLen < selSystemEventSizeWith3Bytes) ||
1276 ((req->data[0] & byte2EnableMask) != 0 &&
1277 paraLen < selSystemEventSizeWith2Bytes))
1278 {
1279 return IPMI_CC_REQ_DATA_LEN_INVALID;
1280 }
1281
1282 // Count bytes of Event Data
1283 if ((req->data[0] & byte3EnableMask) != 0)
1284 {
1285 count = 3;
1286 }
1287 else if ((req->data[0] & byte2EnableMask) != 0)
1288 {
1289 count = 2;
1290 }
1291 else
1292 {
1293 count = 1;
1294 }
1295 assert = req->eventDirectionType & directionMask ? false : true;
1296 std::vector<uint8_t> eventData(req->data, req->data + count);
1297
1298 sdbusplus::bus::bus dbus(bus);
1299 std::string service =
1300 ipmi::getService(dbus, ipmiSELAddInterface, ipmiSELPath);
1301 sdbusplus::message::message writeSEL = dbus.new_method_call(
1302 service.c_str(), ipmiSELPath, ipmiSELAddInterface, "IpmiSelAdd");
1303 writeSEL.append(ipmiSELAddMessage, sensorPath, eventData, assert,
1304 generatorID);
1305 try
1306 {
1307 dbus.call(writeSEL);
1308 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -05001309 catch (const sdbusplus::exception_t& e)
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001310 {
1311 phosphor::logging::log<phosphor::logging::level::ERR>(e.what());
1312 return IPMI_CC_UNSPECIFIED_ERROR;
1313 }
1314 return IPMI_CC_OK;
1315}
1316
Chris Austenac4604a2015-10-13 12:43:27 -05001317void register_netfn_sen_functions()
1318{
Willy Tud351a722021-08-12 14:33:40 -07001319 // Handlers with dbus-sdr handler implementation.
1320 // Do not register the hander if it dynamic sensors stack is used.
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +00001321
Willy Tud351a722021-08-12 14:33:40 -07001322#ifndef FEATURE_DYNAMIC_SENSORS
Lei YUbe5c6b22021-09-16 15:46:20 +08001323
1324 // Initialize the sensor matches
1325 initSensorMatches();
1326
Tom05732372016-09-06 17:21:23 +05301327 // <Set Sensor Reading and Event Status>
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +00001328 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1329 ipmi::sensor_event::cmdSetSensorReadingAndEvtSts,
1330 ipmi::Privilege::Operator, ipmiSetSensorReading);
Tom05732372016-09-06 17:21:23 +05301331 // <Get Sensor Reading>
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +00001332 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1333 ipmi::sensor_event::cmdGetSensorReading,
1334 ipmi::Privilege::User, ipmiSensorGetSensorReading);
Emily Shaffera344afc2017-04-13 15:09:39 -07001335
Tom Joseph5ca50952018-02-22 00:33:38 +05301336 // <Reserve Device SDR Repository>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001337 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1338 ipmi::sensor_event::cmdReserveDeviceSdrRepository,
1339 ipmi::Privilege::User, ipmiSensorReserveSdr);
Chris Austen10ccc0f2015-12-10 18:27:04 -06001340
Tom Joseph5ca50952018-02-22 00:33:38 +05301341 // <Get Device SDR Info>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001342 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1343 ipmi::sensor_event::cmdGetDeviceSdrInfo,
1344 ipmi::Privilege::User, ipmiSensorGetDeviceSdrInfo);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001345
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001346 // <Get Sensor Thresholds>
jayaprakash Mutyala996c9792019-05-03 15:56:48 +00001347 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1348 ipmi::sensor_event::cmdGetSensorThreshold,
1349 ipmi::Privilege::User, ipmiSensorGetSensorThresholds);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001350
Lotus Xuf93da662021-10-18 17:20:06 +08001351 // <Set Sensor Thresholds>
1352 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1353 ipmi::sensor_event::cmdSetSensorThreshold,
1354 ipmi::Privilege::User, ipmiSenSetSensorThresholds);
Willy Tud351a722021-08-12 14:33:40 -07001355#endif
1356
1357 // Common Handers used by both implementation.
1358
1359 // <Platform Event Message>
1360 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_PLATFORM_EVENT, nullptr,
1361 ipmicmdPlatformEvent, PRIVILEGE_OPERATOR);
1362
1363 // <Get Sensor Type>
1364 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1365 ipmi::sensor_event::cmdGetSensorType,
1366 ipmi::Privilege::User, ipmiGetSensorType);
1367
1368 // <Get Device SDR>
1369 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr,
1370 ipmi_sen_get_sdr, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -05001371 return;
1372}