blob: 34565a113cb5ce787b97be9c577d6d8eaf709905 [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 YU962e68b2021-09-16 16:25:34 +080089#ifdef FEATURE_SENSORS_CACHE
Lei YUbe5c6b22021-09-16 15:46:20 +080090std::map<uint8_t, std::unique_ptr<sdbusplus::bus::match::match>>
91 sensorAddedMatches __attribute__((init_priority(101)));
92std::map<uint8_t, std::unique_ptr<sdbusplus::bus::match::match>>
93 sensorUpdatedMatches __attribute__((init_priority(101)));
94
Lei YU8c2c0482021-09-16 17:28:28 +080095using SensorCacheMap =
96 std::map<uint8_t, std::optional<ipmi::sensor::GetSensorResponse>>;
97SensorCacheMap sensorCacheMap __attribute__((init_priority(101)));
98
Lei YUbe5c6b22021-09-16 15:46:20 +080099void initSensorMatches()
100{
101 using namespace sdbusplus::bus::match::rules;
102 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
103 for (const auto& s : ipmi::sensor::sensors)
104 {
105 sensorAddedMatches.emplace(
106 s.first,
107 std::make_unique<sdbusplus::bus::match::match>(
108 bus, interfacesAdded() + argNpath(0, s.second.sensorPath),
109 [id = s.first, obj = s.second.sensorPath](auto& /*msg*/) {
110 // TODO
111 }));
112 sensorUpdatedMatches.emplace(
113 s.first,
114 std::make_unique<sdbusplus::bus::match::match>(
115 bus,
116 type::signal() + path(s.second.sensorPath) +
117 member("PropertiesChanged"s) +
118 interface("org.freedesktop.DBus.Properties"s),
119 [id = s.first, obj = s.second.sensorPath](auto& /*msg*/) {
120 // TODO
121 }));
122 }
123}
Lei YU962e68b2021-09-16 16:25:34 +0800124#endif
Lei YUbe5c6b22021-09-16 15:46:20 +0800125
Patrick Venture0b02be92018-08-31 11:55:55 -0700126int get_bus_for_path(const char* path, char** busname)
127{
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700128 return mapper_get_service(bus, path, busname);
129}
Tomd700e762016-09-20 18:24:13 +0530130
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700131// Use a lookup table to find the interface name of a specific sensor
132// This will be used until an alternative is found. this is the first
133// step for mapping IPMI
Patrick Venture0b02be92018-08-31 11:55:55 -0700134int find_openbmc_path(uint8_t num, dbus_interface_t* interface)
135{
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700136 int rc;
137
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700138 const auto& sensor_it = ipmi::sensor::sensors.find(num);
139 if (sensor_it == ipmi::sensor::sensors.end())
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700140 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -0500141 // The sensor map does not contain the sensor requested
142 return -EINVAL;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700143 }
144
145 const auto& info = sensor_it->second;
146
Patrick Williams8451edf2017-06-13 09:01:06 -0500147 char* busname = nullptr;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700148 rc = get_bus_for_path(info.sensorPath.c_str(), &busname);
Patrick Venture0b02be92018-08-31 11:55:55 -0700149 if (rc < 0)
150 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700151 std::fprintf(stderr, "Failed to get %s busname: %s\n",
152 info.sensorPath.c_str(), busname);
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700153 goto final;
154 }
155
156 interface->sensortype = info.sensorType;
157 strcpy(interface->bus, busname);
158 strcpy(interface->path, info.sensorPath.c_str());
159 // Take the interface name from the beginning of the DbusInterfaceMap. This
160 // works for the Value interface but may not suffice for more complex
161 // sensors.
162 // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103
Patrick Venture0b02be92018-08-31 11:55:55 -0700163 strcpy(interface->interface,
164 info.propertyInterfaces.begin()->first.c_str());
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700165 interface->sensornumber = num;
166
167final:
168 free(busname);
169 return rc;
170}
171
Tomd700e762016-09-20 18:24:13 +0530172/////////////////////////////////////////////////////////////////////
173//
174// Routines used by ipmi commands wanting to interact on the dbus
175//
176/////////////////////////////////////////////////////////////////////
Patrick Venture0b02be92018-08-31 11:55:55 -0700177int set_sensor_dbus_state_s(uint8_t number, const char* method,
178 const char* value)
179{
Tomd700e762016-09-20 18:24:13 +0530180
181 dbus_interface_t a;
182 int r;
183 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700184 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530185
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700186 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530187
Patrick Venture0b02be92018-08-31 11:55:55 -0700188 if (r < 0)
189 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700190 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530191 return 0;
192 }
193
Patrick Venture0b02be92018-08-31 11:55:55 -0700194 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
195 method);
196 if (r < 0)
197 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700198 std::fprintf(stderr, "Failed to create a method call: %s",
199 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530200 goto final;
201 }
202
203 r = sd_bus_message_append(m, "v", "s", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700204 if (r < 0)
205 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700206 std::fprintf(stderr, "Failed to create a input parameter: %s",
207 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530208 goto final;
209 }
210
Tomd700e762016-09-20 18:24:13 +0530211 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700212 if (r < 0)
213 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700214 std::fprintf(stderr, "Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530215 }
216
217final:
218 sd_bus_error_free(&error);
219 m = sd_bus_message_unref(m);
220
221 return 0;
222}
Patrick Venture0b02be92018-08-31 11:55:55 -0700223int set_sensor_dbus_state_y(uint8_t number, const char* method,
224 const uint8_t value)
225{
Tomd700e762016-09-20 18:24:13 +0530226
227 dbus_interface_t a;
228 int r;
229 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700230 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530231
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700232 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530233
Patrick Venture0b02be92018-08-31 11:55:55 -0700234 if (r < 0)
235 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700236 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530237 return 0;
238 }
239
Patrick Venture0b02be92018-08-31 11:55:55 -0700240 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
241 method);
242 if (r < 0)
243 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700244 std::fprintf(stderr, "Failed to create a method call: %s",
245 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530246 goto final;
247 }
248
249 r = sd_bus_message_append(m, "v", "i", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700250 if (r < 0)
251 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700252 std::fprintf(stderr, "Failed to create a input parameter: %s",
253 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530254 goto final;
255 }
256
Tomd700e762016-09-20 18:24:13 +0530257 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700258 if (r < 0)
259 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700260 std::fprintf(stderr, "12 Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530261 }
262
263final:
264 sd_bus_error_free(&error);
265 m = sd_bus_message_unref(m);
266
267 return 0;
268}
269
Patrick Venture0b02be92018-08-31 11:55:55 -0700270uint8_t dbus_to_sensor_type(char* p)
271{
Chris Austenac4604a2015-10-13 12:43:27 -0500272
Patrick Venture0b02be92018-08-31 11:55:55 -0700273 sensorTypemap_t* s = g_SensorTypeMap;
274 char r = 0;
275 while (s->number != 0xFF)
276 {
277 if (!strcmp(s->dbusname, p))
278 {
Tom Joseph558184e2017-09-01 13:45:05 +0530279 r = s->typecode;
Patrick Venture0b02be92018-08-31 11:55:55 -0700280 break;
Chris Austenac4604a2015-10-13 12:43:27 -0500281 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500282 s++;
Chris Austenac4604a2015-10-13 12:43:27 -0500283 }
284
Chris Austen0012e9b2015-10-22 01:37:46 -0500285 if (s->number == 0xFF)
286 printf("Failed to find Sensor Type %s\n", p);
Chris Austenac4604a2015-10-13 12:43:27 -0500287
Chris Austen0012e9b2015-10-22 01:37:46 -0500288 return r;
Chris Austenac4604a2015-10-13 12:43:27 -0500289}
290
Patrick Venture0b02be92018-08-31 11:55:55 -0700291uint8_t get_type_from_interface(dbus_interface_t dbus_if)
292{
Chris Austen0012e9b2015-10-22 01:37:46 -0500293
Brad Bishop56003452016-10-05 21:49:19 -0400294 uint8_t type;
Chris Austen0012e9b2015-10-22 01:37:46 -0500295
Chris Austen0012e9b2015-10-22 01:37:46 -0500296 // This is where sensors that do not exist in dbus but do
297 // exist in the host code stop. This should indicate it
298 // is not a supported sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700299 if (dbus_if.interface[0] == 0)
300 {
301 return 0;
302 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500303
Emily Shaffer71174412017-04-05 15:10:40 -0700304 // Fetch type from interface itself.
305 if (dbus_if.sensortype != 0)
306 {
307 type = dbus_if.sensortype;
Patrick Venture0b02be92018-08-31 11:55:55 -0700308 }
309 else
310 {
Chris Austen0012e9b2015-10-22 01:37:46 -0500311 // Non InventoryItems
Patrick Venture4491a462018-10-13 13:00:42 -0700312 char* p = strrchr(dbus_if.path, '/');
Patrick Venture0b02be92018-08-31 11:55:55 -0700313 type = dbus_to_sensor_type(p + 1);
Chris Austen0012e9b2015-10-22 01:37:46 -0500314 }
315
Brad Bishop56003452016-10-05 21:49:19 -0400316 return type;
Patrick Venture0b02be92018-08-31 11:55:55 -0700317}
Chris Austen0012e9b2015-10-22 01:37:46 -0500318
Emily Shaffer391f3302017-04-03 10:27:08 -0700319// Replaces find_sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700320uint8_t find_type_for_sensor_number(uint8_t num)
321{
Emily Shaffer391f3302017-04-03 10:27:08 -0700322 int r;
323 dbus_interface_t dbus_if;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700324 r = find_openbmc_path(num, &dbus_if);
Patrick Venture0b02be92018-08-31 11:55:55 -0700325 if (r < 0)
326 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700327 std::fprintf(stderr, "Could not find sensor %d\n", num);
Lei YU91875f72018-04-03 15:14:49 +0800328 return 0;
Emily Shaffer391f3302017-04-03 10:27:08 -0700329 }
330 return get_type_from_interface(dbus_if);
331}
332
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000333/**
334 * @brief implements the get sensor type command.
335 * @param - sensorNumber
336 *
337 * @return IPMI completion code plus response data on success.
338 * - sensorType
339 * - eventType
340 **/
341
342ipmi::RspType<uint8_t, // sensorType
343 uint8_t // eventType
344 >
345 ipmiGetSensorType(uint8_t sensorNumber)
Chris Austenac4604a2015-10-13 12:43:27 -0500346{
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000347 uint8_t sensorType = find_type_for_sensor_number(sensorNumber);
Chris Austenac4604a2015-10-13 12:43:27 -0500348
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000349 if (sensorType == 0)
Patrick Venture0b02be92018-08-31 11:55:55 -0700350 {
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000351 return ipmi::responseSensorInvalid();
Chris Austen0012e9b2015-10-22 01:37:46 -0500352 }
353
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000354 constexpr uint8_t eventType = 0x6F;
355 return ipmi::responseSuccess(sensorType, eventType);
Chris Austenac4604a2015-10-13 12:43:27 -0500356}
357
Patrick Venture0b02be92018-08-31 11:55:55 -0700358const std::set<std::string> analogSensorInterfaces = {
Emily Shaffercc941e12017-06-14 13:06:26 -0700359 "xyz.openbmc_project.Sensor.Value",
Patrick Venturee9a64052017-08-18 19:17:27 -0700360 "xyz.openbmc_project.Control.FanPwm",
Emily Shaffercc941e12017-06-14 13:06:26 -0700361};
362
363bool isAnalogSensor(const std::string& interface)
364{
365 return (analogSensorInterfaces.count(interface));
366}
367
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000368/**
369@brief This command is used to set sensorReading.
370
371@param
372 - sensorNumber
373 - operation
374 - reading
375 - assertOffset0_7
376 - assertOffset8_14
377 - deassertOffset0_7
378 - deassertOffset8_14
379 - eventData1
380 - eventData2
381 - eventData3
382
383@return completion code on success.
384**/
385
386ipmi::RspType<> ipmiSetSensorReading(uint8_t sensorNumber, uint8_t operation,
387 uint8_t reading, uint8_t assertOffset0_7,
388 uint8_t assertOffset8_14,
389 uint8_t deassertOffset0_7,
390 uint8_t deassertOffset8_14,
391 uint8_t eventData1, uint8_t eventData2,
392 uint8_t eventData3)
Tom Josephbe703f72017-03-09 12:34:35 +0530393{
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000394 log<level::DEBUG>("IPMI SET_SENSOR",
395 entry("SENSOR_NUM=0x%02x", sensorNumber));
396
Arun P. Mohanan0634e982021-08-30 15:21:33 +0530397 if (sensorNumber == 0xFF)
398 {
399 return ipmi::responseInvalidFieldRequest();
400 }
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000401 ipmi::sensor::SetSensorReadingReq cmdData;
402
403 cmdData.number = sensorNumber;
404 cmdData.operation = operation;
405 cmdData.reading = reading;
406 cmdData.assertOffset0_7 = assertOffset0_7;
407 cmdData.assertOffset8_14 = assertOffset8_14;
408 cmdData.deassertOffset0_7 = deassertOffset0_7;
409 cmdData.deassertOffset8_14 = deassertOffset8_14;
410 cmdData.eventData1 = eventData1;
411 cmdData.eventData2 = eventData2;
412 cmdData.eventData3 = eventData3;
Tom Josephbe703f72017-03-09 12:34:35 +0530413
414 // Check if the Sensor Number is present
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700415 const auto iter = ipmi::sensor::sensors.find(sensorNumber);
416 if (iter == ipmi::sensor::sensors.end())
Tom Josephbe703f72017-03-09 12:34:35 +0530417 {
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000418 updateSensorRecordFromSSRAESC(&sensorNumber);
419 return ipmi::responseSuccess();
Tom Josephbe703f72017-03-09 12:34:35 +0530420 }
421
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500422 try
423 {
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500424 if (ipmi::sensor::Mutability::Write !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700425 (iter->second.mutability & ipmi::sensor::Mutability::Write))
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500426 {
427 log<level::ERR>("Sensor Set operation is not allowed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000428 entry("SENSOR_NUM=%d", sensorNumber));
429 return ipmi::responseIllegalCommand();
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500430 }
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000431 auto ipmiRC = iter->second.updateFunc(cmdData, iter->second);
432 return ipmi::response(ipmiRC);
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500433 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -0500434 catch (const InternalFailure& e)
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500435 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700436 log<level::ERR>("Set sensor failed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000437 entry("SENSOR_NUM=%d", sensorNumber));
Patrick Venture0b02be92018-08-31 11:55:55 -0700438 commit<InternalFailure>();
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000439 return ipmi::responseUnspecifiedError();
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500440 }
Tom Joseph82024322017-09-28 20:07:29 +0530441 catch (const std::runtime_error& e)
442 {
443 log<level::ERR>(e.what());
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000444 return ipmi::responseUnspecifiedError();
Tom Joseph82024322017-09-28 20:07:29 +0530445 }
Chris Austenac4604a2015-10-13 12:43:27 -0500446}
447
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000448/** @brief implements the get sensor reading command
449 * @param sensorNum - sensor number
450 *
451 * @returns IPMI completion code plus response data
452 * - senReading - sensor reading
453 * - reserved
454 * - readState - sensor reading state enabled
455 * - senScanState - sensor scan state disabled
456 * - allEventMessageState - all Event message state disabled
457 * - assertionStatesLsb - threshold levels states
458 * - assertionStatesMsb - discrete reading sensor states
459 */
460ipmi::RspType<uint8_t, // sensor reading
Tom Joseph3ee668f2018-03-02 19:49:17 +0530461
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000462 uint5_t, // reserved
463 bool, // reading state
Sui Chen4cc42552019-09-11 10:28:35 -0700464 bool, // 0 = sensor scanning state disabled
465 bool, // 0 = all event messages disabled
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000466
467 uint8_t, // threshold levels states
468 uint8_t // discrete reading sensor states
469 >
470 ipmiSensorGetSensorReading(uint8_t sensorNum)
471{
472 if (sensorNum == 0xFF)
473 {
474 return ipmi::responseInvalidFieldRequest();
475 }
476
477 const auto iter = ipmi::sensor::sensors.find(sensorNum);
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700478 if (iter == ipmi::sensor::sensors.end())
Tom Joseph3ee668f2018-03-02 19:49:17 +0530479 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000480 return ipmi::responseSensorInvalid();
Tom Joseph3ee668f2018-03-02 19:49:17 +0530481 }
482 if (ipmi::sensor::Mutability::Read !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700483 (iter->second.mutability & ipmi::sensor::Mutability::Read))
Tom Joseph3ee668f2018-03-02 19:49:17 +0530484 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000485 return ipmi::responseIllegalCommand();
Tom Joseph3ee668f2018-03-02 19:49:17 +0530486 }
487
488 try
489 {
Lei YU8c2c0482021-09-16 17:28:28 +0800490#ifdef FEATURE_SENSORS_CACHE
491 // TODO
492 return ipmi::responseSuccess();
493#else
Sui Chen4cc42552019-09-11 10:28:35 -0700494 ipmi::sensor::GetSensorResponse getResponse =
495 iter->second.getFunc(iter->second);
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000496
Sui Chen4cc42552019-09-11 10:28:35 -0700497 return ipmi::responseSuccess(getResponse.reading, uint5_t(0),
498 getResponse.readingOrStateUnavailable,
499 getResponse.scanningEnabled,
500 getResponse.allEventMessagesEnabled,
501 getResponse.thresholdLevelsStates,
502 getResponse.discreteReadingSensorStates);
Lei YU8c2c0482021-09-16 17:28:28 +0800503#endif
Tom Joseph3ee668f2018-03-02 19:49:17 +0530504 }
Brandon Kim9cf85622019-06-19 12:05:08 -0700505#ifdef UPDATE_FUNCTIONAL_ON_FAIL
506 catch (const SensorFunctionalError& e)
507 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000508 return ipmi::responseResponseError();
Brandon Kim9cf85622019-06-19 12:05:08 -0700509 }
510#endif
Tom Joseph3ee668f2018-03-02 19:49:17 +0530511 catch (const std::exception& e)
512 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000513 // Intitilizing with default values
514 constexpr uint8_t senReading = 0;
515 constexpr uint5_t reserved{0};
516 constexpr bool readState = true;
517 constexpr bool senScanState = false;
518 constexpr bool allEventMessageState = false;
519 constexpr uint8_t assertionStatesLsb = 0;
520 constexpr uint8_t assertionStatesMsb = 0;
521
522 return ipmi::responseSuccess(senReading, reserved, readState,
523 senScanState, allEventMessageState,
524 assertionStatesLsb, assertionStatesMsb);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530525 }
526}
527
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300528get_sdr::GetSensorThresholdsResponse
529 getSensorThresholds(ipmi::Context::ptr& ctx, uint8_t sensorNum)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600530{
William A. Kennington III515bc372020-10-27 16:32:32 -0700531 get_sdr::GetSensorThresholdsResponse resp{};
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530532 constexpr auto warningThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600533 "xyz.openbmc_project.Sensor.Threshold.Warning";
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530534 constexpr auto criticalThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600535 "xyz.openbmc_project.Sensor.Threshold.Critical";
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600536
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700537 const auto iter = ipmi::sensor::sensors.find(sensorNum);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530538 const auto info = iter->second;
539
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300540 std::string service;
541 boost::system::error_code ec;
542 ec = ipmi::getService(ctx, info.sensorInterface, info.sensorPath, service);
543 if (ec)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530544 {
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300545 return resp;
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530546 }
547
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300548 ipmi::PropertyMap warnThresholds;
549 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
550 warningThreshIntf, warnThresholds);
551 if (!ec)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530552 {
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300553 double warnLow = std::visit(ipmi::VariantToDoubleVisitor(),
554 warnThresholds["WarningLow"]);
555 double warnHigh = std::visit(ipmi::VariantToDoubleVisitor(),
556 warnThresholds["WarningHigh"]);
557
558 if (std::isfinite(warnLow))
559 {
560 warnLow *= std::pow(10, info.scale - info.exponentR);
561 resp.lowerNonCritical = static_cast<uint8_t>(
562 (warnLow - info.scaledOffset) / info.coefficientM);
563 resp.validMask |= static_cast<uint8_t>(
564 ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK);
565 }
566
567 if (std::isfinite(warnHigh))
568 {
569 warnHigh *= std::pow(10, info.scale - info.exponentR);
570 resp.upperNonCritical = static_cast<uint8_t>(
571 (warnHigh - info.scaledOffset) / info.coefficientM);
572 resp.validMask |= static_cast<uint8_t>(
573 ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK);
574 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530575 }
576
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300577 ipmi::PropertyMap critThresholds;
578 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
579 criticalThreshIntf, critThresholds);
580 if (!ec)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530581 {
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300582 double critLow = std::visit(ipmi::VariantToDoubleVisitor(),
583 critThresholds["CriticalLow"]);
584 double critHigh = std::visit(ipmi::VariantToDoubleVisitor(),
585 critThresholds["CriticalHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530586
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300587 if (std::isfinite(critLow))
588 {
589 critLow *= std::pow(10, info.scale - info.exponentR);
590 resp.lowerCritical = static_cast<uint8_t>(
591 (critLow - info.scaledOffset) / info.coefficientM);
592 resp.validMask |= static_cast<uint8_t>(
593 ipmi::sensor::ThresholdMask::CRITICAL_LOW_MASK);
594 }
595
596 if (std::isfinite(critHigh))
597 {
598 critHigh *= std::pow(10, info.scale - info.exponentR);
599 resp.upperCritical = static_cast<uint8_t>(
600 (critHigh - info.scaledOffset) / info.coefficientM);
601 resp.validMask |= static_cast<uint8_t>(
602 ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK);
603 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530604 }
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000605
606 return resp;
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530607}
608
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000609/** @brief implements the get sensor thresholds command
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300610 * @param ctx - IPMI context pointer
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000611 * @param sensorNum - sensor number
612 *
613 * @returns IPMI completion code plus response data
614 * - validMask - threshold mask
615 * - lower non-critical threshold - IPMI messaging state
616 * - lower critical threshold - link authentication state
617 * - lower non-recoverable threshold - callback state
618 * - upper non-critical threshold
619 * - upper critical
620 * - upper non-recoverable
621 */
622ipmi::RspType<uint8_t, // validMask
623 uint8_t, // lowerNonCritical
624 uint8_t, // lowerCritical
625 uint8_t, // lowerNonRecoverable
626 uint8_t, // upperNonCritical
627 uint8_t, // upperCritical
628 uint8_t // upperNonRecoverable
629 >
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300630 ipmiSensorGetSensorThresholds(ipmi::Context::ptr& ctx, uint8_t sensorNum)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530631{
632 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
633
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700634 const auto iter = ipmi::sensor::sensors.find(sensorNum);
635 if (iter == ipmi::sensor::sensors.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600636 {
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000637 return ipmi::responseSensorInvalid();
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600638 }
639
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530640 const auto info = iter->second;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600641
Patrick Venture0b02be92018-08-31 11:55:55 -0700642 // Proceed only if the sensor value interface is implemented.
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530643 if (info.propertyInterfaces.find(valueInterface) ==
644 info.propertyInterfaces.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600645 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700646 // return with valid mask as 0
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000647 return ipmi::responseSuccess();
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600648 }
649
Lei YU14a47812021-09-17 15:58:04 +0800650 auto it = sensorThresholdMap.find(sensorNum);
651 if (it == sensorThresholdMap.end())
652 {
653 sensorThresholdMap[sensorNum] = getSensorThresholds(ctx, sensorNum);
654 }
655
656 const auto& resp = sensorThresholdMap[sensorNum];
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600657
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000658 return ipmi::responseSuccess(resp.validMask, resp.lowerNonCritical,
659 resp.lowerCritical, resp.lowerNonRecoverable,
660 resp.upperNonCritical, resp.upperCritical,
661 resp.upperNonRecoverable);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600662}
663
Lotus Xuf93da662021-10-18 17:20:06 +0800664/** @brief implements the Set Sensor threshold command
665 * @param sensorNumber - sensor number
666 * @param lowerNonCriticalThreshMask
667 * @param lowerCriticalThreshMask
668 * @param lowerNonRecovThreshMask
669 * @param upperNonCriticalThreshMask
670 * @param upperCriticalThreshMask
671 * @param upperNonRecovThreshMask
672 * @param reserved
673 * @param lowerNonCritical - lower non-critical threshold
674 * @param lowerCritical - Lower critical threshold
675 * @param lowerNonRecoverable - Lower non recovarable threshold
676 * @param upperNonCritical - Upper non-critical threshold
677 * @param upperCritical - Upper critical
678 * @param upperNonRecoverable - Upper Non-recoverable
679 *
680 * @returns IPMI completion code
681 */
682ipmi::RspType<> ipmiSenSetSensorThresholds(
683 ipmi::Context::ptr& ctx, uint8_t sensorNum, bool lowerNonCriticalThreshMask,
684 bool lowerCriticalThreshMask, bool lowerNonRecovThreshMask,
685 bool upperNonCriticalThreshMask, bool upperCriticalThreshMask,
686 bool upperNonRecovThreshMask, uint2_t reserved, uint8_t lowerNonCritical,
687 uint8_t lowerCritical, uint8_t lowerNonRecoverable,
688 uint8_t upperNonCritical, uint8_t upperCritical,
689 uint8_t upperNonRecoverable)
690{
691 if (reserved)
692 {
693 return ipmi::responseInvalidFieldRequest();
694 }
695
696 // lower nc and upper nc not suppported on any sensor
697 if (lowerNonRecovThreshMask || upperNonRecovThreshMask)
698 {
699 return ipmi::responseInvalidFieldRequest();
700 }
701
702 // if none of the threshold mask are set, nothing to do
703 if (!(lowerNonCriticalThreshMask | lowerCriticalThreshMask |
704 lowerNonRecovThreshMask | upperNonCriticalThreshMask |
705 upperCriticalThreshMask | upperNonRecovThreshMask))
706 {
707 return ipmi::responseSuccess();
708 }
709
710 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
711
712 const auto iter = ipmi::sensor::sensors.find(sensorNum);
713 if (iter == ipmi::sensor::sensors.end())
714 {
715 return ipmi::responseSensorInvalid();
716 }
717
718 const auto& info = iter->second;
719
720 // Proceed only if the sensor value interface is implemented.
721 if (info.propertyInterfaces.find(valueInterface) ==
722 info.propertyInterfaces.end())
723 {
724 // return with valid mask as 0
725 return ipmi::responseSuccess();
726 }
727
728 constexpr auto warningThreshIntf =
729 "xyz.openbmc_project.Sensor.Threshold.Warning";
730 constexpr auto criticalThreshIntf =
731 "xyz.openbmc_project.Sensor.Threshold.Critical";
732
733 std::string service;
734 boost::system::error_code ec;
735 ec = ipmi::getService(ctx, info.sensorInterface, info.sensorPath, service);
736 if (ec)
737 {
738 return ipmi::responseResponseError();
739 }
740 // store a vector of property name, value to set, and interface
741 std::vector<std::tuple<std::string, uint8_t, std::string>> thresholdsToSet;
742
743 // define the indexes of the tuple
744 constexpr uint8_t propertyName = 0;
745 constexpr uint8_t thresholdValue = 1;
746 constexpr uint8_t interface = 2;
747 // verifiy all needed fields are present
748 if (lowerCriticalThreshMask || upperCriticalThreshMask)
749 {
750
751 ipmi::PropertyMap findThreshold;
752 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
753 criticalThreshIntf, findThreshold);
754
755 if (!ec)
756 {
757 if (lowerCriticalThreshMask)
758 {
759 auto findLower = findThreshold.find("CriticalLow");
760 if (findLower == findThreshold.end())
761 {
762 return ipmi::responseInvalidFieldRequest();
763 }
764 thresholdsToSet.emplace_back("CriticalLow", lowerCritical,
765 criticalThreshIntf);
766 }
767 if (upperCriticalThreshMask)
768 {
769 auto findUpper = findThreshold.find("CriticalHigh");
770 if (findUpper == findThreshold.end())
771 {
772 return ipmi::responseInvalidFieldRequest();
773 }
774 thresholdsToSet.emplace_back("CriticalHigh", upperCritical,
775 criticalThreshIntf);
776 }
777 }
778 }
779 if (lowerNonCriticalThreshMask || upperNonCriticalThreshMask)
780 {
781 ipmi::PropertyMap findThreshold;
782 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
783 warningThreshIntf, findThreshold);
784
785 if (!ec)
786 {
787 if (lowerNonCriticalThreshMask)
788 {
789 auto findLower = findThreshold.find("WarningLow");
790 if (findLower == findThreshold.end())
791 {
792 return ipmi::responseInvalidFieldRequest();
793 }
794 thresholdsToSet.emplace_back("WarningLow", lowerNonCritical,
795 warningThreshIntf);
796 }
797 if (upperNonCriticalThreshMask)
798 {
799 auto findUpper = findThreshold.find("WarningHigh");
800 if (findUpper == findThreshold.end())
801 {
802 return ipmi::responseInvalidFieldRequest();
803 }
804 thresholdsToSet.emplace_back("WarningHigh", upperNonCritical,
805 warningThreshIntf);
806 }
807 }
808 }
809 for (const auto& property : thresholdsToSet)
810 {
811 // from section 36.3 in the IPMI Spec, assume all linear
812 double valueToSet =
813 ((info.coefficientM * std::get<thresholdValue>(property)) +
814 (info.scaledOffset * std::pow(10.0, info.scale))) *
815 std::pow(10.0, info.exponentR);
816 ipmi::setDbusProperty(
817 ctx, service, info.sensorPath, std::get<interface>(property),
818 std::get<propertyName>(property), ipmi::Value(valueToSet));
819 }
820
Lei YU14a47812021-09-17 15:58:04 +0800821 // Invalidate the cache
822 sensorThresholdMap.erase(sensorNum);
Lotus Xuf93da662021-10-18 17:20:06 +0800823 return ipmi::responseSuccess();
824}
825
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000826/** @brief implements the get SDR Info command
827 * @param count - Operation
828 *
829 * @returns IPMI completion code plus response data
830 * - sdrCount - sensor/SDR count
831 * - lunsAndDynamicPopulation - static/Dynamic sensor population flag
832 */
833ipmi::RspType<uint8_t, // respcount
834 uint8_t // dynamic population flags
835 >
836 ipmiSensorGetDeviceSdrInfo(std::optional<uint8_t> count)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700837{
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000838 uint8_t sdrCount;
839 // multiple LUNs not supported.
840 constexpr uint8_t lunsAndDynamicPopulation = 1;
841 constexpr uint8_t getSdrCount = 0x01;
842 constexpr uint8_t getSensorCount = 0x00;
843
844 if (count.value_or(0) == getSdrCount)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700845 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000846 // Get SDR count. This returns the total number of SDRs in the device.
Patrick Venture87fd2cd2019-08-19 12:07:18 -0700847 const auto& entityRecords =
848 ipmi::sensor::EntityInfoMapContainer::getContainer()
849 ->getIpmiEntityRecords();
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700850 sdrCount =
851 ipmi::sensor::sensors.size() + frus.size() + entityRecords.size();
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000852 }
853 else if (count.value_or(0) == getSensorCount)
854 {
855 // Get Sensor count. This returns the number of sensors
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700856 sdrCount = ipmi::sensor::sensors.size();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700857 }
858 else
859 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000860 return ipmi::responseInvalidCommandOnLun();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700861 }
862
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000863 return ipmi::responseSuccess(sdrCount, lunsAndDynamicPopulation);
Emily Shafferd06e0e72017-04-05 09:08:57 -0700864}
865
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000866/** @brief implements the reserve SDR command
867 * @returns IPMI completion code plus response data
868 * - reservationID - reservation ID
869 */
870ipmi::RspType<uint16_t> ipmiSensorReserveSdr()
Emily Shaffera344afc2017-04-13 15:09:39 -0700871{
872 // A constant reservation ID is okay until we implement add/remove SDR.
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000873 constexpr uint16_t reservationID = 1;
Emily Shaffera344afc2017-04-13 15:09:39 -0700874
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000875 return ipmi::responseSuccess(reservationID);
Emily Shaffera344afc2017-04-13 15:09:39 -0700876}
Chris Austenac4604a2015-10-13 12:43:27 -0500877
Patrick Venture0b02be92018-08-31 11:55:55 -0700878void setUnitFieldsForObject(const ipmi::sensor::Info* info,
879 get_sdr::SensorDataFullRecordBody* body)
Emily Shaffercc941e12017-06-14 13:06:26 -0700880{
Tom Josephdc212b22018-02-16 09:59:57 +0530881 namespace server = sdbusplus::xyz::openbmc_project::Sensor::server;
882 try
Emily Shaffercc941e12017-06-14 13:06:26 -0700883 {
Tom Josephdc212b22018-02-16 09:59:57 +0530884 auto unit = server::Value::convertUnitFromString(info->unit);
885 // Unit strings defined in
886 // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml
887 switch (unit)
Emily Shaffercc941e12017-06-14 13:06:26 -0700888 {
Tom Josephdc212b22018-02-16 09:59:57 +0530889 case server::Value::Unit::DegreesC:
890 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C;
891 break;
892 case server::Value::Unit::RPMS:
Kirill Pakhomov812e44c2018-10-22 16:25:35 +0300893 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_RPM;
Tom Josephdc212b22018-02-16 09:59:57 +0530894 break;
895 case server::Value::Unit::Volts:
896 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS;
897 break;
898 case server::Value::Unit::Meters:
899 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS;
900 break;
901 case server::Value::Unit::Amperes:
902 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES;
903 break;
904 case server::Value::Unit::Joules:
905 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES;
906 break;
907 case server::Value::Unit::Watts:
908 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS;
909 break;
910 default:
911 // Cannot be hit.
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700912 std::fprintf(stderr, "Unknown value unit type: = %s\n",
913 info->unit.c_str());
Emily Shaffercc941e12017-06-14 13:06:26 -0700914 }
915 }
Patrick Venture64678b82018-10-13 13:11:32 -0700916 catch (const sdbusplus::exception::InvalidEnumString& e)
Emily Shaffercc941e12017-06-14 13:06:26 -0700917 {
Tom Josephdc212b22018-02-16 09:59:57 +0530918 log<level::WARNING>("Warning: no unit provided for sensor!");
Emily Shaffercc941e12017-06-14 13:06:26 -0700919 }
Emily Shaffercc941e12017-06-14 13:06:26 -0700920}
921
Patrick Venture0b02be92018-08-31 11:55:55 -0700922ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body,
923 const ipmi::sensor::Info* info,
Emily Shafferbbef71c2017-05-08 16:36:17 -0700924 ipmi_data_len_t data_len)
925{
926 /* Functional sensor case */
Emily Shaffercc941e12017-06-14 13:06:26 -0700927 if (isAnalogSensor(info->propertyInterfaces.begin()->first))
Emily Shafferbbef71c2017-05-08 16:36:17 -0700928 {
Tony Leec5324252019-10-31 17:24:16 +0800929 body->sensor_units_1 = info->sensorUnits1; // default is 0. unsigned, no
930 // rate, no modifier, not a %
Emily Shafferbbef71c2017-05-08 16:36:17 -0700931 /* Unit info */
Tom Josephdc212b22018-02-16 09:59:57 +0530932 setUnitFieldsForObject(info, body);
Emily Shaffer10f49592017-05-10 12:01:10 -0700933
934 get_sdr::body::set_b(info->coefficientB, body);
935 get_sdr::body::set_m(info->coefficientM, body);
936 get_sdr::body::set_b_exp(info->exponentB, body);
Tom Josephdc212b22018-02-16 09:59:57 +0530937 get_sdr::body::set_r_exp(info->exponentR, body);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700938
Emily Shafferbbef71c2017-05-08 16:36:17 -0700939 get_sdr::body::set_id_type(0b00, body); // 00 = unicode
Emily Shafferbbef71c2017-05-08 16:36:17 -0700940 }
941
Tom Joseph96423912018-01-25 00:14:34 +0530942 /* ID string */
Jeremy Kerrbe4ffa82020-08-10 16:17:37 +0800943 auto id_string = info->sensorName;
944
945 if (id_string.empty())
946 {
947 id_string = info->sensorNameFunc(*info);
948 }
Tom Joseph96423912018-01-25 00:14:34 +0530949
950 if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH)
951 {
952 get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body);
953 }
954 else
955 {
956 get_sdr::body::set_id_strlen(id_string.length(), body);
957 }
958 strncpy(body->id_string, id_string.c_str(),
959 get_sdr::body::get_id_strlen(body));
960
Emily Shafferbbef71c2017-05-08 16:36:17 -0700961 return IPMI_CC_OK;
962};
963
Ratan Guptae0cc8552018-01-22 14:23:04 +0530964ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response,
965 ipmi_data_len_t data_len)
966{
967 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
968 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700969 get_sdr::SensorDataFruRecord record{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530970 auto dataLength = 0;
971
972 auto fru = frus.begin();
Patrick Venture0b02be92018-08-31 11:55:55 -0700973 uint8_t fruID{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530974 auto recordID = get_sdr::request::get_record_id(req);
975
976 fruID = recordID - FRU_RECORD_ID_START;
977 fru = frus.find(fruID);
978 if (fru == frus.end())
979 {
980 return IPMI_CC_SENSOR_INVALID;
981 }
982
983 /* Header */
984 get_sdr::header::set_record_id(recordID, &(record.header));
985 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
986 record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD;
987 record.header.record_length = sizeof(record.key) + sizeof(record.body);
988
989 /* Key */
990 record.key.fruID = fruID;
991 record.key.accessLun |= IPMI_LOGICAL_FRU;
992 record.key.deviceAddress = BMCSlaveAddress;
993
994 /* Body */
995 record.body.entityID = fru->second[0].entityID;
996 record.body.entityInstance = fru->second[0].entityInstance;
997 record.body.deviceType = fruInventoryDevice;
998 record.body.deviceTypeModifier = IPMIFruInventory;
999
1000 /* Device ID string */
Patrick Venture0b02be92018-08-31 11:55:55 -07001001 auto deviceID =
1002 fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1,
1003 fru->second[0].path.length());
Ratan Guptae0cc8552018-01-22 14:23:04 +05301004
1005 if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH)
1006 {
1007 get_sdr::body::set_device_id_strlen(
Patrick Venture0b02be92018-08-31 11:55:55 -07001008 get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +05301009 }
1010 else
1011 {
Patrick Venture0b02be92018-08-31 11:55:55 -07001012 get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +05301013 }
1014
1015 strncpy(record.body.deviceID, deviceID.c_str(),
1016 get_sdr::body::get_device_id_strlen(&(record.body)));
1017
1018 if (++fru == frus.end())
1019 {
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001020 // we have reached till end of fru, so assign the next record id to
1021 // 512(Max fru ID = 511) + Entity Record ID(may start with 0).
Patrick Venture87fd2cd2019-08-19 12:07:18 -07001022 const auto& entityRecords =
1023 ipmi::sensor::EntityInfoMapContainer::getContainer()
1024 ->getIpmiEntityRecords();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001025 auto next_record_id =
Patrick Venture83a0b842019-07-19 18:37:15 -07001026 (entityRecords.size())
1027 ? entityRecords.begin()->first + ENTITY_RECORD_ID_START
1028 : END_OF_RECORD;
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001029 get_sdr::response::set_next_record_id(next_record_id, resp);
1030 }
1031 else
1032 {
1033 get_sdr::response::set_next_record_id(
1034 (FRU_RECORD_ID_START + fru->first), resp);
1035 }
1036
1037 // Check for invalid offset size
1038 if (req->offset > sizeof(record))
1039 {
1040 return IPMI_CC_PARM_OUT_OF_RANGE;
1041 }
1042
1043 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
1044 sizeof(record) - req->offset);
1045
1046 std::memcpy(resp->record_data,
1047 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
1048
1049 *data_len = dataLength;
1050 *data_len += 2; // additional 2 bytes for next record ID
1051
1052 return IPMI_CC_OK;
1053}
1054
1055ipmi_ret_t ipmi_entity_get_sdr(ipmi_request_t request, ipmi_response_t response,
1056 ipmi_data_len_t data_len)
1057{
1058 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
1059 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
1060 get_sdr::SensorDataEntityRecord record{};
1061 auto dataLength = 0;
1062
Patrick Venture87fd2cd2019-08-19 12:07:18 -07001063 const auto& entityRecords =
1064 ipmi::sensor::EntityInfoMapContainer::getContainer()
1065 ->getIpmiEntityRecords();
Patrick Venture83a0b842019-07-19 18:37:15 -07001066 auto entity = entityRecords.begin();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001067 uint8_t entityRecordID;
1068 auto recordID = get_sdr::request::get_record_id(req);
1069
1070 entityRecordID = recordID - ENTITY_RECORD_ID_START;
Patrick Venture83a0b842019-07-19 18:37:15 -07001071 entity = entityRecords.find(entityRecordID);
1072 if (entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001073 {
1074 return IPMI_CC_SENSOR_INVALID;
1075 }
1076
1077 /* Header */
1078 get_sdr::header::set_record_id(recordID, &(record.header));
1079 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
1080 record.header.record_type = get_sdr::SENSOR_DATA_ENTITY_RECORD;
1081 record.header.record_length = sizeof(record.key) + sizeof(record.body);
1082
1083 /* Key */
1084 record.key.containerEntityId = entity->second.containerEntityId;
1085 record.key.containerEntityInstance = entity->second.containerEntityInstance;
1086 get_sdr::key::set_flags(entity->second.isList, entity->second.isLinked,
1087 &(record.key));
1088 record.key.entityId1 = entity->second.containedEntities[0].first;
1089 record.key.entityInstance1 = entity->second.containedEntities[0].second;
1090
1091 /* Body */
1092 record.body.entityId2 = entity->second.containedEntities[1].first;
1093 record.body.entityInstance2 = entity->second.containedEntities[1].second;
1094 record.body.entityId3 = entity->second.containedEntities[2].first;
1095 record.body.entityInstance3 = entity->second.containedEntities[2].second;
1096 record.body.entityId4 = entity->second.containedEntities[3].first;
1097 record.body.entityInstance4 = entity->second.containedEntities[3].second;
1098
Patrick Venture83a0b842019-07-19 18:37:15 -07001099 if (++entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001100 {
Patrick Venture0b02be92018-08-31 11:55:55 -07001101 get_sdr::response::set_next_record_id(END_OF_RECORD,
1102 resp); // last record
Ratan Guptae0cc8552018-01-22 14:23:04 +05301103 }
1104 else
1105 {
1106 get_sdr::response::set_next_record_id(
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001107 (ENTITY_RECORD_ID_START + entity->first), resp);
Ratan Guptae0cc8552018-01-22 14:23:04 +05301108 }
1109
Emily Shaffer0fbdbce2018-09-27 09:30:41 -07001110 // Check for invalid offset size
1111 if (req->offset > sizeof(record))
Ratan Guptae0cc8552018-01-22 14:23:04 +05301112 {
Emily Shaffer0fbdbce2018-09-27 09:30:41 -07001113 return IPMI_CC_PARM_OUT_OF_RANGE;
Ratan Guptae0cc8552018-01-22 14:23:04 +05301114 }
1115
Emily Shaffer0fbdbce2018-09-27 09:30:41 -07001116 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
1117 sizeof(record) - req->offset);
Ratan Guptae0cc8552018-01-22 14:23:04 +05301118
Patrick Ventureb51bf9c2018-09-10 15:53:14 -07001119 std::memcpy(resp->record_data,
Jason M. Bills1cd85962018-10-05 12:04:01 -07001120 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
Ratan Guptae0cc8552018-01-22 14:23:04 +05301121
1122 *data_len = dataLength;
1123 *data_len += 2; // additional 2 bytes for next record ID
1124
1125 return IPMI_CC_OK;
1126}
1127
Emily Shafferbbef71c2017-05-08 16:36:17 -07001128ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1129 ipmi_request_t request, ipmi_response_t response,
1130 ipmi_data_len_t data_len, ipmi_context_t context)
1131{
1132 ipmi_ret_t ret = IPMI_CC_OK;
Patrick Venture0b02be92018-08-31 11:55:55 -07001133 get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request;
1134 get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response;
Patrick Venture38426dd2019-07-30 15:22:29 -07001135
1136 // Note: we use an iterator so we can provide the next ID at the end of
1137 // the call.
Patrick Venturedb0cbe62019-09-09 14:47:22 -07001138 auto sensor = ipmi::sensor::sensors.begin();
Patrick Venture38426dd2019-07-30 15:22:29 -07001139 auto recordID = get_sdr::request::get_record_id(req);
1140
1141 // At the beginning of a scan, the host side will send us id=0.
1142 if (recordID != 0)
Emily Shafferbbef71c2017-05-08 16:36:17 -07001143 {
Patrick Venture38426dd2019-07-30 15:22:29 -07001144 // recordID 0 to 255 means it is a FULL record.
1145 // recordID 256 to 511 means it is a FRU record.
1146 // recordID greater then 511 means it is a Entity Association
1147 // record. Currently we are supporting three record types: FULL
1148 // record, FRU record and Enttiy Association record.
1149 if (recordID >= ENTITY_RECORD_ID_START)
Emily Shafferbbef71c2017-05-08 16:36:17 -07001150 {
Patrick Venture38426dd2019-07-30 15:22:29 -07001151 return ipmi_entity_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001152 }
Patrick Venture38426dd2019-07-30 15:22:29 -07001153 else if (recordID >= FRU_RECORD_ID_START &&
1154 recordID < ENTITY_RECORD_ID_START)
Jaghathiswari Rankappagounder Natarajan0780df12019-02-06 15:29:24 -08001155 {
Patrick Venture38426dd2019-07-30 15:22:29 -07001156 return ipmi_fru_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001157 }
1158 else
1159 {
Patrick Venturedb0cbe62019-09-09 14:47:22 -07001160 sensor = ipmi::sensor::sensors.find(recordID);
1161 if (sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -07001162 {
1163 return IPMI_CC_SENSOR_INVALID;
1164 }
Emily Shafferbbef71c2017-05-08 16:36:17 -07001165 }
Emily Shafferbbef71c2017-05-08 16:36:17 -07001166 }
1167
Patrick Venture38426dd2019-07-30 15:22:29 -07001168 uint8_t sensor_id = sensor->first;
1169
Lei YU14a47812021-09-17 15:58:04 +08001170 auto it = sdrCacheMap.find(sensor_id);
1171 if (it == sdrCacheMap.end())
Patrick Venture38426dd2019-07-30 15:22:29 -07001172 {
Lei YU14a47812021-09-17 15:58:04 +08001173 /* Header */
1174 get_sdr::SensorDataFullRecord record = {0};
1175 get_sdr::header::set_record_id(sensor_id, &(record.header));
1176 record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1
1177 record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD;
1178 record.header.record_length = sizeof(record.key) + sizeof(record.body);
1179
1180 /* Key */
1181 get_sdr::key::set_owner_id_bmc(&(record.key));
1182 record.key.sensor_number = sensor_id;
1183
1184 /* Body */
1185 record.body.entity_id = sensor->second.entityType;
1186 record.body.sensor_type = sensor->second.sensorType;
1187 record.body.event_reading_type = sensor->second.sensorReadingType;
1188 record.body.entity_instance = sensor->second.instance;
1189 if (ipmi::sensor::Mutability::Write ==
1190 (sensor->second.mutability & ipmi::sensor::Mutability::Write))
1191 {
1192 get_sdr::body::init_settable_state(true, &(record.body));
1193 }
1194
1195 // Set the type-specific details given the DBus interface
1196 populate_record_from_dbus(&(record.body), &(sensor->second), data_len);
1197 sdrCacheMap[sensor_id] = std::move(record);
Patrick Venture38426dd2019-07-30 15:22:29 -07001198 }
1199
Lei YU14a47812021-09-17 15:58:04 +08001200 const auto& record = sdrCacheMap[sensor_id];
Patrick Venture38426dd2019-07-30 15:22:29 -07001201
Patrick Venturedb0cbe62019-09-09 14:47:22 -07001202 if (++sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -07001203 {
1204 // we have reached till end of sensor, so assign the next record id
1205 // to 256(Max Sensor ID = 255) + FRU ID(may start with 0).
1206 auto next_record_id = (frus.size())
1207 ? frus.begin()->first + FRU_RECORD_ID_START
1208 : END_OF_RECORD;
1209
1210 get_sdr::response::set_next_record_id(next_record_id, resp);
1211 }
1212 else
1213 {
1214 get_sdr::response::set_next_record_id(sensor->first, resp);
1215 }
1216
1217 if (req->offset > sizeof(record))
1218 {
1219 return IPMI_CC_PARM_OUT_OF_RANGE;
1220 }
1221
1222 // data_len will ultimately be the size of the record, plus
1223 // the size of the next record ID:
1224 *data_len = std::min(static_cast<size_t>(req->bytes_to_read),
1225 sizeof(record) - req->offset);
1226
1227 std::memcpy(resp->record_data,
Lei YU14a47812021-09-17 15:58:04 +08001228 reinterpret_cast<const uint8_t*>(&record) + req->offset,
1229 *data_len);
Patrick Venture38426dd2019-07-30 15:22:29 -07001230
1231 // data_len should include the LSB and MSB:
1232 *data_len +=
1233 sizeof(resp->next_record_id_lsb) + sizeof(resp->next_record_id_msb);
1234
Emily Shafferbbef71c2017-05-08 16:36:17 -07001235 return ret;
1236}
1237
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001238static bool isFromSystemChannel()
1239{
1240 // TODO we could not figure out where the request is from based on IPMI
1241 // command handler parameters. because of it, we can not differentiate
1242 // request from SMS/SMM or IPMB channel
1243 return true;
1244}
1245
1246ipmi_ret_t ipmicmdPlatformEvent(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1247 ipmi_request_t request,
1248 ipmi_response_t response,
1249 ipmi_data_len_t dataLen, ipmi_context_t context)
1250{
1251 uint16_t generatorID;
1252 size_t count;
1253 bool assert = true;
1254 std::string sensorPath;
1255 size_t paraLen = *dataLen;
1256 PlatformEventRequest* req;
1257 *dataLen = 0;
1258
1259 if ((paraLen < selSystemEventSizeWith1Bytes) ||
1260 (paraLen > selSystemEventSizeWith3Bytes))
1261 {
1262 return IPMI_CC_REQ_DATA_LEN_INVALID;
1263 }
1264
1265 if (isFromSystemChannel())
1266 { // first byte for SYSTEM Interface is Generator ID
1267 // +1 to get common struct
1268 req = reinterpret_cast<PlatformEventRequest*>((uint8_t*)request + 1);
1269 // Capture the generator ID
1270 generatorID = *reinterpret_cast<uint8_t*>(request);
1271 // Platform Event usually comes from other firmware, like BIOS.
1272 // Unlike BMC sensor, it does not have BMC DBUS sensor path.
1273 sensorPath = "System";
1274 }
1275 else
1276 {
1277 req = reinterpret_cast<PlatformEventRequest*>(request);
1278 // TODO GenratorID for IPMB is combination of RqSA and RqLUN
1279 generatorID = 0xff;
1280 sensorPath = "IPMB";
1281 }
1282 // Content of event data field depends on sensor class.
1283 // When data0 bit[5:4] is non-zero, valid data counts is 3.
1284 // When data0 bit[7:6] is non-zero, valid data counts is 2.
1285 if (((req->data[0] & byte3EnableMask) != 0 &&
1286 paraLen < selSystemEventSizeWith3Bytes) ||
1287 ((req->data[0] & byte2EnableMask) != 0 &&
1288 paraLen < selSystemEventSizeWith2Bytes))
1289 {
1290 return IPMI_CC_REQ_DATA_LEN_INVALID;
1291 }
1292
1293 // Count bytes of Event Data
1294 if ((req->data[0] & byte3EnableMask) != 0)
1295 {
1296 count = 3;
1297 }
1298 else if ((req->data[0] & byte2EnableMask) != 0)
1299 {
1300 count = 2;
1301 }
1302 else
1303 {
1304 count = 1;
1305 }
1306 assert = req->eventDirectionType & directionMask ? false : true;
1307 std::vector<uint8_t> eventData(req->data, req->data + count);
1308
1309 sdbusplus::bus::bus dbus(bus);
1310 std::string service =
1311 ipmi::getService(dbus, ipmiSELAddInterface, ipmiSELPath);
1312 sdbusplus::message::message writeSEL = dbus.new_method_call(
1313 service.c_str(), ipmiSELPath, ipmiSELAddInterface, "IpmiSelAdd");
1314 writeSEL.append(ipmiSELAddMessage, sensorPath, eventData, assert,
1315 generatorID);
1316 try
1317 {
1318 dbus.call(writeSEL);
1319 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -05001320 catch (const sdbusplus::exception_t& e)
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001321 {
1322 phosphor::logging::log<phosphor::logging::level::ERR>(e.what());
1323 return IPMI_CC_UNSPECIFIED_ERROR;
1324 }
1325 return IPMI_CC_OK;
1326}
1327
Chris Austenac4604a2015-10-13 12:43:27 -05001328void register_netfn_sen_functions()
1329{
Willy Tud351a722021-08-12 14:33:40 -07001330 // Handlers with dbus-sdr handler implementation.
1331 // Do not register the hander if it dynamic sensors stack is used.
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +00001332
Willy Tud351a722021-08-12 14:33:40 -07001333#ifndef FEATURE_DYNAMIC_SENSORS
Lei YUbe5c6b22021-09-16 15:46:20 +08001334
Lei YU962e68b2021-09-16 16:25:34 +08001335#ifdef FEATURE_SENSORS_CACHE
Lei YUbe5c6b22021-09-16 15:46:20 +08001336 // Initialize the sensor matches
1337 initSensorMatches();
Lei YU962e68b2021-09-16 16:25:34 +08001338#endif
Lei YUbe5c6b22021-09-16 15:46:20 +08001339
Tom05732372016-09-06 17:21:23 +05301340 // <Set Sensor Reading and Event Status>
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +00001341 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1342 ipmi::sensor_event::cmdSetSensorReadingAndEvtSts,
1343 ipmi::Privilege::Operator, ipmiSetSensorReading);
Tom05732372016-09-06 17:21:23 +05301344 // <Get Sensor Reading>
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +00001345 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1346 ipmi::sensor_event::cmdGetSensorReading,
1347 ipmi::Privilege::User, ipmiSensorGetSensorReading);
Emily Shaffera344afc2017-04-13 15:09:39 -07001348
Tom Joseph5ca50952018-02-22 00:33:38 +05301349 // <Reserve Device SDR Repository>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001350 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1351 ipmi::sensor_event::cmdReserveDeviceSdrRepository,
1352 ipmi::Privilege::User, ipmiSensorReserveSdr);
Chris Austen10ccc0f2015-12-10 18:27:04 -06001353
Tom Joseph5ca50952018-02-22 00:33:38 +05301354 // <Get Device SDR Info>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001355 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1356 ipmi::sensor_event::cmdGetDeviceSdrInfo,
1357 ipmi::Privilege::User, ipmiSensorGetDeviceSdrInfo);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001358
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001359 // <Get Sensor Thresholds>
jayaprakash Mutyala996c9792019-05-03 15:56:48 +00001360 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1361 ipmi::sensor_event::cmdGetSensorThreshold,
1362 ipmi::Privilege::User, ipmiSensorGetSensorThresholds);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001363
Lotus Xuf93da662021-10-18 17:20:06 +08001364 // <Set Sensor Thresholds>
1365 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1366 ipmi::sensor_event::cmdSetSensorThreshold,
1367 ipmi::Privilege::User, ipmiSenSetSensorThresholds);
Willy Tud351a722021-08-12 14:33:40 -07001368#endif
1369
1370 // Common Handers used by both implementation.
1371
1372 // <Platform Event Message>
1373 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_PLATFORM_EVENT, nullptr,
1374 ipmicmdPlatformEvent, PRIVILEGE_OPERATOR);
1375
1376 // <Get Sensor Type>
1377 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1378 ipmi::sensor_event::cmdGetSensorType,
1379 ipmi::Privilege::User, ipmiGetSensorType);
1380
1381 // <Get Device SDR>
1382 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr,
1383 ipmi_sen_get_sdr, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -05001384 return;
1385}