blob: b82e74b7d5488c831cee1b90f31d048bed25c557 [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 YU97140502021-09-17 13:49:43 +080095ipmi::sensor::SensorCacheMap sensorCacheMap __attribute__((init_priority(101)));
Lei YU8c2c0482021-09-16 17:28:28 +080096
Lei YUbe5c6b22021-09-16 15:46:20 +080097void initSensorMatches()
98{
99 using namespace sdbusplus::bus::match::rules;
100 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
101 for (const auto& s : ipmi::sensor::sensors)
102 {
103 sensorAddedMatches.emplace(
104 s.first,
105 std::make_unique<sdbusplus::bus::match::match>(
106 bus, interfacesAdded() + argNpath(0, s.second.sensorPath),
107 [id = s.first, obj = s.second.sensorPath](auto& /*msg*/) {
108 // TODO
109 }));
110 sensorUpdatedMatches.emplace(
Lei YU97140502021-09-17 13:49:43 +0800111 s.first, std::make_unique<sdbusplus::bus::match::match>(
112 bus,
113 type::signal() + path(s.second.sensorPath) +
114 member("PropertiesChanged"s) +
115 interface("org.freedesktop.DBus.Properties"s),
116 [&s](auto& msg) {
117 try
118 {
119 s.second.getFunc(s.first, s.second, msg);
120 }
121 catch (const std::exception& e)
122 {
123 sensorCacheMap[s.first].reset();
124 }
125 }));
Lei YUbe5c6b22021-09-16 15:46:20 +0800126 }
127}
Lei YU962e68b2021-09-16 16:25:34 +0800128#endif
Lei YUbe5c6b22021-09-16 15:46:20 +0800129
Patrick Venture0b02be92018-08-31 11:55:55 -0700130int get_bus_for_path(const char* path, char** busname)
131{
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700132 return mapper_get_service(bus, path, busname);
133}
Tomd700e762016-09-20 18:24:13 +0530134
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700135// Use a lookup table to find the interface name of a specific sensor
136// This will be used until an alternative is found. this is the first
137// step for mapping IPMI
Patrick Venture0b02be92018-08-31 11:55:55 -0700138int find_openbmc_path(uint8_t num, dbus_interface_t* interface)
139{
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700140 int rc;
141
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700142 const auto& sensor_it = ipmi::sensor::sensors.find(num);
143 if (sensor_it == ipmi::sensor::sensors.end())
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700144 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -0500145 // The sensor map does not contain the sensor requested
146 return -EINVAL;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700147 }
148
149 const auto& info = sensor_it->second;
150
Patrick Williams8451edf2017-06-13 09:01:06 -0500151 char* busname = nullptr;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700152 rc = get_bus_for_path(info.sensorPath.c_str(), &busname);
Patrick Venture0b02be92018-08-31 11:55:55 -0700153 if (rc < 0)
154 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700155 std::fprintf(stderr, "Failed to get %s busname: %s\n",
156 info.sensorPath.c_str(), busname);
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700157 goto final;
158 }
159
160 interface->sensortype = info.sensorType;
161 strcpy(interface->bus, busname);
162 strcpy(interface->path, info.sensorPath.c_str());
163 // Take the interface name from the beginning of the DbusInterfaceMap. This
164 // works for the Value interface but may not suffice for more complex
165 // sensors.
166 // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103
Patrick Venture0b02be92018-08-31 11:55:55 -0700167 strcpy(interface->interface,
168 info.propertyInterfaces.begin()->first.c_str());
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700169 interface->sensornumber = num;
170
171final:
172 free(busname);
173 return rc;
174}
175
Tomd700e762016-09-20 18:24:13 +0530176/////////////////////////////////////////////////////////////////////
177//
178// Routines used by ipmi commands wanting to interact on the dbus
179//
180/////////////////////////////////////////////////////////////////////
Patrick Venture0b02be92018-08-31 11:55:55 -0700181int set_sensor_dbus_state_s(uint8_t number, const char* method,
182 const char* value)
183{
Tomd700e762016-09-20 18:24:13 +0530184
185 dbus_interface_t a;
186 int r;
187 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700188 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530189
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700190 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530191
Patrick Venture0b02be92018-08-31 11:55:55 -0700192 if (r < 0)
193 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700194 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530195 return 0;
196 }
197
Patrick Venture0b02be92018-08-31 11:55:55 -0700198 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
199 method);
200 if (r < 0)
201 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700202 std::fprintf(stderr, "Failed to create a method call: %s",
203 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530204 goto final;
205 }
206
207 r = sd_bus_message_append(m, "v", "s", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700208 if (r < 0)
209 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700210 std::fprintf(stderr, "Failed to create a input parameter: %s",
211 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530212 goto final;
213 }
214
Tomd700e762016-09-20 18:24:13 +0530215 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700216 if (r < 0)
217 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700218 std::fprintf(stderr, "Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530219 }
220
221final:
222 sd_bus_error_free(&error);
223 m = sd_bus_message_unref(m);
224
225 return 0;
226}
Patrick Venture0b02be92018-08-31 11:55:55 -0700227int set_sensor_dbus_state_y(uint8_t number, const char* method,
228 const uint8_t value)
229{
Tomd700e762016-09-20 18:24:13 +0530230
231 dbus_interface_t a;
232 int r;
233 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700234 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530235
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700236 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530237
Patrick Venture0b02be92018-08-31 11:55:55 -0700238 if (r < 0)
239 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700240 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530241 return 0;
242 }
243
Patrick Venture0b02be92018-08-31 11:55:55 -0700244 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
245 method);
246 if (r < 0)
247 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700248 std::fprintf(stderr, "Failed to create a method call: %s",
249 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530250 goto final;
251 }
252
253 r = sd_bus_message_append(m, "v", "i", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700254 if (r < 0)
255 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700256 std::fprintf(stderr, "Failed to create a input parameter: %s",
257 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530258 goto final;
259 }
260
Tomd700e762016-09-20 18:24:13 +0530261 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700262 if (r < 0)
263 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700264 std::fprintf(stderr, "12 Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530265 }
266
267final:
268 sd_bus_error_free(&error);
269 m = sd_bus_message_unref(m);
270
271 return 0;
272}
273
Patrick Venture0b02be92018-08-31 11:55:55 -0700274uint8_t dbus_to_sensor_type(char* p)
275{
Chris Austenac4604a2015-10-13 12:43:27 -0500276
Patrick Venture0b02be92018-08-31 11:55:55 -0700277 sensorTypemap_t* s = g_SensorTypeMap;
278 char r = 0;
279 while (s->number != 0xFF)
280 {
281 if (!strcmp(s->dbusname, p))
282 {
Tom Joseph558184e2017-09-01 13:45:05 +0530283 r = s->typecode;
Patrick Venture0b02be92018-08-31 11:55:55 -0700284 break;
Chris Austenac4604a2015-10-13 12:43:27 -0500285 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500286 s++;
Chris Austenac4604a2015-10-13 12:43:27 -0500287 }
288
Chris Austen0012e9b2015-10-22 01:37:46 -0500289 if (s->number == 0xFF)
290 printf("Failed to find Sensor Type %s\n", p);
Chris Austenac4604a2015-10-13 12:43:27 -0500291
Chris Austen0012e9b2015-10-22 01:37:46 -0500292 return r;
Chris Austenac4604a2015-10-13 12:43:27 -0500293}
294
Patrick Venture0b02be92018-08-31 11:55:55 -0700295uint8_t get_type_from_interface(dbus_interface_t dbus_if)
296{
Chris Austen0012e9b2015-10-22 01:37:46 -0500297
Brad Bishop56003452016-10-05 21:49:19 -0400298 uint8_t type;
Chris Austen0012e9b2015-10-22 01:37:46 -0500299
Chris Austen0012e9b2015-10-22 01:37:46 -0500300 // This is where sensors that do not exist in dbus but do
301 // exist in the host code stop. This should indicate it
302 // is not a supported sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700303 if (dbus_if.interface[0] == 0)
304 {
305 return 0;
306 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500307
Emily Shaffer71174412017-04-05 15:10:40 -0700308 // Fetch type from interface itself.
309 if (dbus_if.sensortype != 0)
310 {
311 type = dbus_if.sensortype;
Patrick Venture0b02be92018-08-31 11:55:55 -0700312 }
313 else
314 {
Chris Austen0012e9b2015-10-22 01:37:46 -0500315 // Non InventoryItems
Patrick Venture4491a462018-10-13 13:00:42 -0700316 char* p = strrchr(dbus_if.path, '/');
Patrick Venture0b02be92018-08-31 11:55:55 -0700317 type = dbus_to_sensor_type(p + 1);
Chris Austen0012e9b2015-10-22 01:37:46 -0500318 }
319
Brad Bishop56003452016-10-05 21:49:19 -0400320 return type;
Patrick Venture0b02be92018-08-31 11:55:55 -0700321}
Chris Austen0012e9b2015-10-22 01:37:46 -0500322
Emily Shaffer391f3302017-04-03 10:27:08 -0700323// Replaces find_sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700324uint8_t find_type_for_sensor_number(uint8_t num)
325{
Emily Shaffer391f3302017-04-03 10:27:08 -0700326 int r;
327 dbus_interface_t dbus_if;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700328 r = find_openbmc_path(num, &dbus_if);
Patrick Venture0b02be92018-08-31 11:55:55 -0700329 if (r < 0)
330 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700331 std::fprintf(stderr, "Could not find sensor %d\n", num);
Lei YU91875f72018-04-03 15:14:49 +0800332 return 0;
Emily Shaffer391f3302017-04-03 10:27:08 -0700333 }
334 return get_type_from_interface(dbus_if);
335}
336
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000337/**
338 * @brief implements the get sensor type command.
339 * @param - sensorNumber
340 *
341 * @return IPMI completion code plus response data on success.
342 * - sensorType
343 * - eventType
344 **/
345
346ipmi::RspType<uint8_t, // sensorType
347 uint8_t // eventType
348 >
349 ipmiGetSensorType(uint8_t sensorNumber)
Chris Austenac4604a2015-10-13 12:43:27 -0500350{
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000351 uint8_t sensorType = find_type_for_sensor_number(sensorNumber);
Chris Austenac4604a2015-10-13 12:43:27 -0500352
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000353 if (sensorType == 0)
Patrick Venture0b02be92018-08-31 11:55:55 -0700354 {
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000355 return ipmi::responseSensorInvalid();
Chris Austen0012e9b2015-10-22 01:37:46 -0500356 }
357
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000358 constexpr uint8_t eventType = 0x6F;
359 return ipmi::responseSuccess(sensorType, eventType);
Chris Austenac4604a2015-10-13 12:43:27 -0500360}
361
Patrick Venture0b02be92018-08-31 11:55:55 -0700362const std::set<std::string> analogSensorInterfaces = {
Emily Shaffercc941e12017-06-14 13:06:26 -0700363 "xyz.openbmc_project.Sensor.Value",
Patrick Venturee9a64052017-08-18 19:17:27 -0700364 "xyz.openbmc_project.Control.FanPwm",
Emily Shaffercc941e12017-06-14 13:06:26 -0700365};
366
367bool isAnalogSensor(const std::string& interface)
368{
369 return (analogSensorInterfaces.count(interface));
370}
371
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000372/**
373@brief This command is used to set sensorReading.
374
375@param
376 - sensorNumber
377 - operation
378 - reading
379 - assertOffset0_7
380 - assertOffset8_14
381 - deassertOffset0_7
382 - deassertOffset8_14
383 - eventData1
384 - eventData2
385 - eventData3
386
387@return completion code on success.
388**/
389
390ipmi::RspType<> ipmiSetSensorReading(uint8_t sensorNumber, uint8_t operation,
391 uint8_t reading, uint8_t assertOffset0_7,
392 uint8_t assertOffset8_14,
393 uint8_t deassertOffset0_7,
394 uint8_t deassertOffset8_14,
395 uint8_t eventData1, uint8_t eventData2,
396 uint8_t eventData3)
Tom Josephbe703f72017-03-09 12:34:35 +0530397{
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000398 log<level::DEBUG>("IPMI SET_SENSOR",
399 entry("SENSOR_NUM=0x%02x", sensorNumber));
400
Arun P. Mohanan0634e982021-08-30 15:21:33 +0530401 if (sensorNumber == 0xFF)
402 {
403 return ipmi::responseInvalidFieldRequest();
404 }
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000405 ipmi::sensor::SetSensorReadingReq cmdData;
406
407 cmdData.number = sensorNumber;
408 cmdData.operation = operation;
409 cmdData.reading = reading;
410 cmdData.assertOffset0_7 = assertOffset0_7;
411 cmdData.assertOffset8_14 = assertOffset8_14;
412 cmdData.deassertOffset0_7 = deassertOffset0_7;
413 cmdData.deassertOffset8_14 = deassertOffset8_14;
414 cmdData.eventData1 = eventData1;
415 cmdData.eventData2 = eventData2;
416 cmdData.eventData3 = eventData3;
Tom Josephbe703f72017-03-09 12:34:35 +0530417
418 // Check if the Sensor Number is present
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700419 const auto iter = ipmi::sensor::sensors.find(sensorNumber);
420 if (iter == ipmi::sensor::sensors.end())
Tom Josephbe703f72017-03-09 12:34:35 +0530421 {
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000422 updateSensorRecordFromSSRAESC(&sensorNumber);
423 return ipmi::responseSuccess();
Tom Josephbe703f72017-03-09 12:34:35 +0530424 }
425
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500426 try
427 {
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500428 if (ipmi::sensor::Mutability::Write !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700429 (iter->second.mutability & ipmi::sensor::Mutability::Write))
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500430 {
431 log<level::ERR>("Sensor Set operation is not allowed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000432 entry("SENSOR_NUM=%d", sensorNumber));
433 return ipmi::responseIllegalCommand();
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500434 }
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000435 auto ipmiRC = iter->second.updateFunc(cmdData, iter->second);
436 return ipmi::response(ipmiRC);
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500437 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -0500438 catch (const InternalFailure& e)
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500439 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700440 log<level::ERR>("Set sensor failed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000441 entry("SENSOR_NUM=%d", sensorNumber));
Patrick Venture0b02be92018-08-31 11:55:55 -0700442 commit<InternalFailure>();
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000443 return ipmi::responseUnspecifiedError();
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500444 }
Tom Joseph82024322017-09-28 20:07:29 +0530445 catch (const std::runtime_error& e)
446 {
447 log<level::ERR>(e.what());
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000448 return ipmi::responseUnspecifiedError();
Tom Joseph82024322017-09-28 20:07:29 +0530449 }
Chris Austenac4604a2015-10-13 12:43:27 -0500450}
451
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000452/** @brief implements the get sensor reading command
453 * @param sensorNum - sensor number
454 *
455 * @returns IPMI completion code plus response data
456 * - senReading - sensor reading
457 * - reserved
458 * - readState - sensor reading state enabled
459 * - senScanState - sensor scan state disabled
460 * - allEventMessageState - all Event message state disabled
461 * - assertionStatesLsb - threshold levels states
462 * - assertionStatesMsb - discrete reading sensor states
463 */
464ipmi::RspType<uint8_t, // sensor reading
Tom Joseph3ee668f2018-03-02 19:49:17 +0530465
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000466 uint5_t, // reserved
467 bool, // reading state
Sui Chen4cc42552019-09-11 10:28:35 -0700468 bool, // 0 = sensor scanning state disabled
469 bool, // 0 = all event messages disabled
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000470
471 uint8_t, // threshold levels states
472 uint8_t // discrete reading sensor states
473 >
474 ipmiSensorGetSensorReading(uint8_t sensorNum)
475{
476 if (sensorNum == 0xFF)
477 {
478 return ipmi::responseInvalidFieldRequest();
479 }
480
481 const auto iter = ipmi::sensor::sensors.find(sensorNum);
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700482 if (iter == ipmi::sensor::sensors.end())
Tom Joseph3ee668f2018-03-02 19:49:17 +0530483 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000484 return ipmi::responseSensorInvalid();
Tom Joseph3ee668f2018-03-02 19:49:17 +0530485 }
486 if (ipmi::sensor::Mutability::Read !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700487 (iter->second.mutability & ipmi::sensor::Mutability::Read))
Tom Joseph3ee668f2018-03-02 19:49:17 +0530488 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000489 return ipmi::responseIllegalCommand();
Tom Joseph3ee668f2018-03-02 19:49:17 +0530490 }
491
492 try
493 {
Lei YU8c2c0482021-09-16 17:28:28 +0800494#ifdef FEATURE_SENSORS_CACHE
495 // TODO
Lei YU97140502021-09-17 13:49:43 +0800496 const auto& sensorData = sensorCacheMap[sensorNum];
497 if (!sensorData.has_value())
498 {
Lei YUa55e9ea2021-09-18 15:15:17 +0800499 // No cached value, try read it
500 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
501 const auto& sensorInfo = iter->second;
502 auto service = ipmi::getService(bus, sensorInfo.sensorInterface,
503 sensorInfo.sensorPath);
504 try
505 {
506 auto method = bus.new_method_call(
507 service.c_str(), sensorInfo.sensorPath.c_str(),
508 "org.freedesktop.DBus.Properties", "GetAll");
509 method.append(
510 sensorInfo.propertyInterfaces.begin()->first.c_str());
511 auto reply = bus.call(method);
512 sensorInfo.getFunc(sensorNum, sensorInfo, reply);
513 }
514 catch (const std::exception& e)
515 {
516 fprintf(stderr, "Failed to get sensor %s\n",
517 sensorInfo.sensorPath.c_str());
518 // Intitilizing with default values
519 constexpr uint8_t senReading = 0;
520 constexpr uint5_t reserved{0};
521 constexpr bool readState = true;
522 constexpr bool senScanState = false;
523 constexpr bool allEventMessageState = false;
524 constexpr uint8_t assertionStatesLsb = 0;
525 constexpr uint8_t assertionStatesMsb = 0;
Lei YU97140502021-09-17 13:49:43 +0800526
Lei YUa55e9ea2021-09-18 15:15:17 +0800527 return ipmi::responseSuccess(senReading, reserved, readState,
528 senScanState, allEventMessageState,
529 assertionStatesLsb,
530 assertionStatesMsb);
531 }
Lei YU97140502021-09-17 13:49:43 +0800532 }
533 return ipmi::responseSuccess(
534 sensorData->response.reading, uint5_t(0),
535 sensorData->response.readingOrStateUnavailable,
536 sensorData->response.scanningEnabled,
537 sensorData->response.allEventMessagesEnabled,
538 sensorData->response.thresholdLevelsStates,
539 sensorData->response.discreteReadingSensorStates);
540
Lei YU8c2c0482021-09-16 17:28:28 +0800541#else
Sui Chen4cc42552019-09-11 10:28:35 -0700542 ipmi::sensor::GetSensorResponse getResponse =
543 iter->second.getFunc(iter->second);
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000544
Sui Chen4cc42552019-09-11 10:28:35 -0700545 return ipmi::responseSuccess(getResponse.reading, uint5_t(0),
546 getResponse.readingOrStateUnavailable,
547 getResponse.scanningEnabled,
548 getResponse.allEventMessagesEnabled,
549 getResponse.thresholdLevelsStates,
550 getResponse.discreteReadingSensorStates);
Lei YU8c2c0482021-09-16 17:28:28 +0800551#endif
Tom Joseph3ee668f2018-03-02 19:49:17 +0530552 }
Brandon Kim9cf85622019-06-19 12:05:08 -0700553#ifdef UPDATE_FUNCTIONAL_ON_FAIL
554 catch (const SensorFunctionalError& e)
555 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000556 return ipmi::responseResponseError();
Brandon Kim9cf85622019-06-19 12:05:08 -0700557 }
558#endif
Tom Joseph3ee668f2018-03-02 19:49:17 +0530559 catch (const std::exception& e)
560 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000561 // Intitilizing with default values
562 constexpr uint8_t senReading = 0;
563 constexpr uint5_t reserved{0};
564 constexpr bool readState = true;
565 constexpr bool senScanState = false;
566 constexpr bool allEventMessageState = false;
567 constexpr uint8_t assertionStatesLsb = 0;
568 constexpr uint8_t assertionStatesMsb = 0;
569
570 return ipmi::responseSuccess(senReading, reserved, readState,
571 senScanState, allEventMessageState,
572 assertionStatesLsb, assertionStatesMsb);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530573 }
574}
575
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300576get_sdr::GetSensorThresholdsResponse
577 getSensorThresholds(ipmi::Context::ptr& ctx, uint8_t sensorNum)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600578{
William A. Kennington III515bc372020-10-27 16:32:32 -0700579 get_sdr::GetSensorThresholdsResponse resp{};
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530580 constexpr auto warningThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600581 "xyz.openbmc_project.Sensor.Threshold.Warning";
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530582 constexpr auto criticalThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600583 "xyz.openbmc_project.Sensor.Threshold.Critical";
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600584
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700585 const auto iter = ipmi::sensor::sensors.find(sensorNum);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530586 const auto info = iter->second;
587
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300588 std::string service;
589 boost::system::error_code ec;
590 ec = ipmi::getService(ctx, info.sensorInterface, info.sensorPath, service);
591 if (ec)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530592 {
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300593 return resp;
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530594 }
595
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300596 ipmi::PropertyMap warnThresholds;
597 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
598 warningThreshIntf, warnThresholds);
599 if (!ec)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530600 {
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300601 double warnLow = std::visit(ipmi::VariantToDoubleVisitor(),
602 warnThresholds["WarningLow"]);
603 double warnHigh = std::visit(ipmi::VariantToDoubleVisitor(),
604 warnThresholds["WarningHigh"]);
605
606 if (std::isfinite(warnLow))
607 {
608 warnLow *= std::pow(10, info.scale - info.exponentR);
609 resp.lowerNonCritical = static_cast<uint8_t>(
610 (warnLow - info.scaledOffset) / info.coefficientM);
611 resp.validMask |= static_cast<uint8_t>(
612 ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK);
613 }
614
615 if (std::isfinite(warnHigh))
616 {
617 warnHigh *= std::pow(10, info.scale - info.exponentR);
618 resp.upperNonCritical = static_cast<uint8_t>(
619 (warnHigh - info.scaledOffset) / info.coefficientM);
620 resp.validMask |= static_cast<uint8_t>(
621 ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK);
622 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530623 }
624
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300625 ipmi::PropertyMap critThresholds;
626 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
627 criticalThreshIntf, critThresholds);
628 if (!ec)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530629 {
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300630 double critLow = std::visit(ipmi::VariantToDoubleVisitor(),
631 critThresholds["CriticalLow"]);
632 double critHigh = std::visit(ipmi::VariantToDoubleVisitor(),
633 critThresholds["CriticalHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530634
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300635 if (std::isfinite(critLow))
636 {
637 critLow *= std::pow(10, info.scale - info.exponentR);
638 resp.lowerCritical = static_cast<uint8_t>(
639 (critLow - info.scaledOffset) / info.coefficientM);
640 resp.validMask |= static_cast<uint8_t>(
641 ipmi::sensor::ThresholdMask::CRITICAL_LOW_MASK);
642 }
643
644 if (std::isfinite(critHigh))
645 {
646 critHigh *= std::pow(10, info.scale - info.exponentR);
647 resp.upperCritical = static_cast<uint8_t>(
648 (critHigh - info.scaledOffset) / info.coefficientM);
649 resp.validMask |= static_cast<uint8_t>(
650 ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK);
651 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530652 }
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000653
654 return resp;
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530655}
656
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000657/** @brief implements the get sensor thresholds command
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300658 * @param ctx - IPMI context pointer
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000659 * @param sensorNum - sensor number
660 *
661 * @returns IPMI completion code plus response data
662 * - validMask - threshold mask
663 * - lower non-critical threshold - IPMI messaging state
664 * - lower critical threshold - link authentication state
665 * - lower non-recoverable threshold - callback state
666 * - upper non-critical threshold
667 * - upper critical
668 * - upper non-recoverable
669 */
670ipmi::RspType<uint8_t, // validMask
671 uint8_t, // lowerNonCritical
672 uint8_t, // lowerCritical
673 uint8_t, // lowerNonRecoverable
674 uint8_t, // upperNonCritical
675 uint8_t, // upperCritical
676 uint8_t // upperNonRecoverable
677 >
Konstantin Aladyshev89a83b62021-05-12 18:59:27 +0300678 ipmiSensorGetSensorThresholds(ipmi::Context::ptr& ctx, uint8_t sensorNum)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530679{
680 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
681
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700682 const auto iter = ipmi::sensor::sensors.find(sensorNum);
683 if (iter == ipmi::sensor::sensors.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600684 {
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000685 return ipmi::responseSensorInvalid();
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600686 }
687
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530688 const auto info = iter->second;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600689
Patrick Venture0b02be92018-08-31 11:55:55 -0700690 // Proceed only if the sensor value interface is implemented.
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530691 if (info.propertyInterfaces.find(valueInterface) ==
692 info.propertyInterfaces.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600693 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700694 // return with valid mask as 0
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000695 return ipmi::responseSuccess();
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600696 }
697
Lei YU14a47812021-09-17 15:58:04 +0800698 auto it = sensorThresholdMap.find(sensorNum);
699 if (it == sensorThresholdMap.end())
700 {
701 sensorThresholdMap[sensorNum] = getSensorThresholds(ctx, sensorNum);
702 }
703
704 const auto& resp = sensorThresholdMap[sensorNum];
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600705
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000706 return ipmi::responseSuccess(resp.validMask, resp.lowerNonCritical,
707 resp.lowerCritical, resp.lowerNonRecoverable,
708 resp.upperNonCritical, resp.upperCritical,
709 resp.upperNonRecoverable);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600710}
711
Lotus Xuf93da662021-10-18 17:20:06 +0800712/** @brief implements the Set Sensor threshold command
713 * @param sensorNumber - sensor number
714 * @param lowerNonCriticalThreshMask
715 * @param lowerCriticalThreshMask
716 * @param lowerNonRecovThreshMask
717 * @param upperNonCriticalThreshMask
718 * @param upperCriticalThreshMask
719 * @param upperNonRecovThreshMask
720 * @param reserved
721 * @param lowerNonCritical - lower non-critical threshold
722 * @param lowerCritical - Lower critical threshold
723 * @param lowerNonRecoverable - Lower non recovarable threshold
724 * @param upperNonCritical - Upper non-critical threshold
725 * @param upperCritical - Upper critical
726 * @param upperNonRecoverable - Upper Non-recoverable
727 *
728 * @returns IPMI completion code
729 */
730ipmi::RspType<> ipmiSenSetSensorThresholds(
731 ipmi::Context::ptr& ctx, uint8_t sensorNum, bool lowerNonCriticalThreshMask,
732 bool lowerCriticalThreshMask, bool lowerNonRecovThreshMask,
733 bool upperNonCriticalThreshMask, bool upperCriticalThreshMask,
734 bool upperNonRecovThreshMask, uint2_t reserved, uint8_t lowerNonCritical,
735 uint8_t lowerCritical, uint8_t lowerNonRecoverable,
736 uint8_t upperNonCritical, uint8_t upperCritical,
737 uint8_t upperNonRecoverable)
738{
739 if (reserved)
740 {
741 return ipmi::responseInvalidFieldRequest();
742 }
743
744 // lower nc and upper nc not suppported on any sensor
745 if (lowerNonRecovThreshMask || upperNonRecovThreshMask)
746 {
747 return ipmi::responseInvalidFieldRequest();
748 }
749
750 // if none of the threshold mask are set, nothing to do
751 if (!(lowerNonCriticalThreshMask | lowerCriticalThreshMask |
752 lowerNonRecovThreshMask | upperNonCriticalThreshMask |
753 upperCriticalThreshMask | upperNonRecovThreshMask))
754 {
755 return ipmi::responseSuccess();
756 }
757
758 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
759
760 const auto iter = ipmi::sensor::sensors.find(sensorNum);
761 if (iter == ipmi::sensor::sensors.end())
762 {
763 return ipmi::responseSensorInvalid();
764 }
765
766 const auto& info = iter->second;
767
768 // Proceed only if the sensor value interface is implemented.
769 if (info.propertyInterfaces.find(valueInterface) ==
770 info.propertyInterfaces.end())
771 {
772 // return with valid mask as 0
773 return ipmi::responseSuccess();
774 }
775
776 constexpr auto warningThreshIntf =
777 "xyz.openbmc_project.Sensor.Threshold.Warning";
778 constexpr auto criticalThreshIntf =
779 "xyz.openbmc_project.Sensor.Threshold.Critical";
780
781 std::string service;
782 boost::system::error_code ec;
783 ec = ipmi::getService(ctx, info.sensorInterface, info.sensorPath, service);
784 if (ec)
785 {
786 return ipmi::responseResponseError();
787 }
788 // store a vector of property name, value to set, and interface
789 std::vector<std::tuple<std::string, uint8_t, std::string>> thresholdsToSet;
790
791 // define the indexes of the tuple
792 constexpr uint8_t propertyName = 0;
793 constexpr uint8_t thresholdValue = 1;
794 constexpr uint8_t interface = 2;
795 // verifiy all needed fields are present
796 if (lowerCriticalThreshMask || upperCriticalThreshMask)
797 {
798
799 ipmi::PropertyMap findThreshold;
800 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
801 criticalThreshIntf, findThreshold);
802
803 if (!ec)
804 {
805 if (lowerCriticalThreshMask)
806 {
807 auto findLower = findThreshold.find("CriticalLow");
808 if (findLower == findThreshold.end())
809 {
810 return ipmi::responseInvalidFieldRequest();
811 }
812 thresholdsToSet.emplace_back("CriticalLow", lowerCritical,
813 criticalThreshIntf);
814 }
815 if (upperCriticalThreshMask)
816 {
817 auto findUpper = findThreshold.find("CriticalHigh");
818 if (findUpper == findThreshold.end())
819 {
820 return ipmi::responseInvalidFieldRequest();
821 }
822 thresholdsToSet.emplace_back("CriticalHigh", upperCritical,
823 criticalThreshIntf);
824 }
825 }
826 }
827 if (lowerNonCriticalThreshMask || upperNonCriticalThreshMask)
828 {
829 ipmi::PropertyMap findThreshold;
830 ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath,
831 warningThreshIntf, findThreshold);
832
833 if (!ec)
834 {
835 if (lowerNonCriticalThreshMask)
836 {
837 auto findLower = findThreshold.find("WarningLow");
838 if (findLower == findThreshold.end())
839 {
840 return ipmi::responseInvalidFieldRequest();
841 }
842 thresholdsToSet.emplace_back("WarningLow", lowerNonCritical,
843 warningThreshIntf);
844 }
845 if (upperNonCriticalThreshMask)
846 {
847 auto findUpper = findThreshold.find("WarningHigh");
848 if (findUpper == findThreshold.end())
849 {
850 return ipmi::responseInvalidFieldRequest();
851 }
852 thresholdsToSet.emplace_back("WarningHigh", upperNonCritical,
853 warningThreshIntf);
854 }
855 }
856 }
857 for (const auto& property : thresholdsToSet)
858 {
859 // from section 36.3 in the IPMI Spec, assume all linear
860 double valueToSet =
861 ((info.coefficientM * std::get<thresholdValue>(property)) +
862 (info.scaledOffset * std::pow(10.0, info.scale))) *
863 std::pow(10.0, info.exponentR);
864 ipmi::setDbusProperty(
865 ctx, service, info.sensorPath, std::get<interface>(property),
866 std::get<propertyName>(property), ipmi::Value(valueToSet));
867 }
868
Lei YU14a47812021-09-17 15:58:04 +0800869 // Invalidate the cache
870 sensorThresholdMap.erase(sensorNum);
Lotus Xuf93da662021-10-18 17:20:06 +0800871 return ipmi::responseSuccess();
872}
873
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000874/** @brief implements the get SDR Info command
875 * @param count - Operation
876 *
877 * @returns IPMI completion code plus response data
878 * - sdrCount - sensor/SDR count
879 * - lunsAndDynamicPopulation - static/Dynamic sensor population flag
880 */
881ipmi::RspType<uint8_t, // respcount
882 uint8_t // dynamic population flags
883 >
884 ipmiSensorGetDeviceSdrInfo(std::optional<uint8_t> count)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700885{
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000886 uint8_t sdrCount;
887 // multiple LUNs not supported.
888 constexpr uint8_t lunsAndDynamicPopulation = 1;
889 constexpr uint8_t getSdrCount = 0x01;
890 constexpr uint8_t getSensorCount = 0x00;
891
892 if (count.value_or(0) == getSdrCount)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700893 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000894 // Get SDR count. This returns the total number of SDRs in the device.
Patrick Venture87fd2cd2019-08-19 12:07:18 -0700895 const auto& entityRecords =
896 ipmi::sensor::EntityInfoMapContainer::getContainer()
897 ->getIpmiEntityRecords();
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700898 sdrCount =
899 ipmi::sensor::sensors.size() + frus.size() + entityRecords.size();
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000900 }
901 else if (count.value_or(0) == getSensorCount)
902 {
903 // Get Sensor count. This returns the number of sensors
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700904 sdrCount = ipmi::sensor::sensors.size();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700905 }
906 else
907 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000908 return ipmi::responseInvalidCommandOnLun();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700909 }
910
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000911 return ipmi::responseSuccess(sdrCount, lunsAndDynamicPopulation);
Emily Shafferd06e0e72017-04-05 09:08:57 -0700912}
913
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000914/** @brief implements the reserve SDR command
915 * @returns IPMI completion code plus response data
916 * - reservationID - reservation ID
917 */
918ipmi::RspType<uint16_t> ipmiSensorReserveSdr()
Emily Shaffera344afc2017-04-13 15:09:39 -0700919{
920 // A constant reservation ID is okay until we implement add/remove SDR.
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000921 constexpr uint16_t reservationID = 1;
Emily Shaffera344afc2017-04-13 15:09:39 -0700922
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000923 return ipmi::responseSuccess(reservationID);
Emily Shaffera344afc2017-04-13 15:09:39 -0700924}
Chris Austenac4604a2015-10-13 12:43:27 -0500925
Patrick Venture0b02be92018-08-31 11:55:55 -0700926void setUnitFieldsForObject(const ipmi::sensor::Info* info,
927 get_sdr::SensorDataFullRecordBody* body)
Emily Shaffercc941e12017-06-14 13:06:26 -0700928{
Tom Josephdc212b22018-02-16 09:59:57 +0530929 namespace server = sdbusplus::xyz::openbmc_project::Sensor::server;
930 try
Emily Shaffercc941e12017-06-14 13:06:26 -0700931 {
Tom Josephdc212b22018-02-16 09:59:57 +0530932 auto unit = server::Value::convertUnitFromString(info->unit);
933 // Unit strings defined in
934 // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml
935 switch (unit)
Emily Shaffercc941e12017-06-14 13:06:26 -0700936 {
Tom Josephdc212b22018-02-16 09:59:57 +0530937 case server::Value::Unit::DegreesC:
938 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C;
939 break;
940 case server::Value::Unit::RPMS:
Kirill Pakhomov812e44c2018-10-22 16:25:35 +0300941 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_RPM;
Tom Josephdc212b22018-02-16 09:59:57 +0530942 break;
943 case server::Value::Unit::Volts:
944 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS;
945 break;
946 case server::Value::Unit::Meters:
947 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS;
948 break;
949 case server::Value::Unit::Amperes:
950 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES;
951 break;
952 case server::Value::Unit::Joules:
953 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES;
954 break;
955 case server::Value::Unit::Watts:
956 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS;
957 break;
958 default:
959 // Cannot be hit.
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700960 std::fprintf(stderr, "Unknown value unit type: = %s\n",
961 info->unit.c_str());
Emily Shaffercc941e12017-06-14 13:06:26 -0700962 }
963 }
Patrick Venture64678b82018-10-13 13:11:32 -0700964 catch (const sdbusplus::exception::InvalidEnumString& e)
Emily Shaffercc941e12017-06-14 13:06:26 -0700965 {
Tom Josephdc212b22018-02-16 09:59:57 +0530966 log<level::WARNING>("Warning: no unit provided for sensor!");
Emily Shaffercc941e12017-06-14 13:06:26 -0700967 }
Emily Shaffercc941e12017-06-14 13:06:26 -0700968}
969
Patrick Venture0b02be92018-08-31 11:55:55 -0700970ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body,
971 const ipmi::sensor::Info* info,
Emily Shafferbbef71c2017-05-08 16:36:17 -0700972 ipmi_data_len_t data_len)
973{
974 /* Functional sensor case */
Emily Shaffercc941e12017-06-14 13:06:26 -0700975 if (isAnalogSensor(info->propertyInterfaces.begin()->first))
Emily Shafferbbef71c2017-05-08 16:36:17 -0700976 {
Tony Leec5324252019-10-31 17:24:16 +0800977 body->sensor_units_1 = info->sensorUnits1; // default is 0. unsigned, no
978 // rate, no modifier, not a %
Emily Shafferbbef71c2017-05-08 16:36:17 -0700979 /* Unit info */
Tom Josephdc212b22018-02-16 09:59:57 +0530980 setUnitFieldsForObject(info, body);
Emily Shaffer10f49592017-05-10 12:01:10 -0700981
982 get_sdr::body::set_b(info->coefficientB, body);
983 get_sdr::body::set_m(info->coefficientM, body);
984 get_sdr::body::set_b_exp(info->exponentB, body);
Tom Josephdc212b22018-02-16 09:59:57 +0530985 get_sdr::body::set_r_exp(info->exponentR, body);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700986
Emily Shafferbbef71c2017-05-08 16:36:17 -0700987 get_sdr::body::set_id_type(0b00, body); // 00 = unicode
Emily Shafferbbef71c2017-05-08 16:36:17 -0700988 }
989
Tom Joseph96423912018-01-25 00:14:34 +0530990 /* ID string */
Jeremy Kerrbe4ffa82020-08-10 16:17:37 +0800991 auto id_string = info->sensorName;
992
993 if (id_string.empty())
994 {
995 id_string = info->sensorNameFunc(*info);
996 }
Tom Joseph96423912018-01-25 00:14:34 +0530997
998 if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH)
999 {
1000 get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body);
1001 }
1002 else
1003 {
1004 get_sdr::body::set_id_strlen(id_string.length(), body);
1005 }
1006 strncpy(body->id_string, id_string.c_str(),
1007 get_sdr::body::get_id_strlen(body));
1008
Emily Shafferbbef71c2017-05-08 16:36:17 -07001009 return IPMI_CC_OK;
1010};
1011
Ratan Guptae0cc8552018-01-22 14:23:04 +05301012ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response,
1013 ipmi_data_len_t data_len)
1014{
1015 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
1016 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -07001017 get_sdr::SensorDataFruRecord record{};
Ratan Guptae0cc8552018-01-22 14:23:04 +05301018 auto dataLength = 0;
1019
1020 auto fru = frus.begin();
Patrick Venture0b02be92018-08-31 11:55:55 -07001021 uint8_t fruID{};
Ratan Guptae0cc8552018-01-22 14:23:04 +05301022 auto recordID = get_sdr::request::get_record_id(req);
1023
1024 fruID = recordID - FRU_RECORD_ID_START;
1025 fru = frus.find(fruID);
1026 if (fru == frus.end())
1027 {
1028 return IPMI_CC_SENSOR_INVALID;
1029 }
1030
1031 /* Header */
1032 get_sdr::header::set_record_id(recordID, &(record.header));
1033 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
1034 record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD;
1035 record.header.record_length = sizeof(record.key) + sizeof(record.body);
1036
1037 /* Key */
1038 record.key.fruID = fruID;
1039 record.key.accessLun |= IPMI_LOGICAL_FRU;
1040 record.key.deviceAddress = BMCSlaveAddress;
1041
1042 /* Body */
1043 record.body.entityID = fru->second[0].entityID;
1044 record.body.entityInstance = fru->second[0].entityInstance;
1045 record.body.deviceType = fruInventoryDevice;
1046 record.body.deviceTypeModifier = IPMIFruInventory;
1047
1048 /* Device ID string */
Patrick Venture0b02be92018-08-31 11:55:55 -07001049 auto deviceID =
1050 fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1,
1051 fru->second[0].path.length());
Ratan Guptae0cc8552018-01-22 14:23:04 +05301052
1053 if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH)
1054 {
1055 get_sdr::body::set_device_id_strlen(
Patrick Venture0b02be92018-08-31 11:55:55 -07001056 get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +05301057 }
1058 else
1059 {
Patrick Venture0b02be92018-08-31 11:55:55 -07001060 get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +05301061 }
1062
1063 strncpy(record.body.deviceID, deviceID.c_str(),
1064 get_sdr::body::get_device_id_strlen(&(record.body)));
1065
1066 if (++fru == frus.end())
1067 {
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001068 // we have reached till end of fru, so assign the next record id to
1069 // 512(Max fru ID = 511) + Entity Record ID(may start with 0).
Patrick Venture87fd2cd2019-08-19 12:07:18 -07001070 const auto& entityRecords =
1071 ipmi::sensor::EntityInfoMapContainer::getContainer()
1072 ->getIpmiEntityRecords();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001073 auto next_record_id =
Patrick Venture83a0b842019-07-19 18:37:15 -07001074 (entityRecords.size())
1075 ? entityRecords.begin()->first + ENTITY_RECORD_ID_START
1076 : END_OF_RECORD;
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001077 get_sdr::response::set_next_record_id(next_record_id, resp);
1078 }
1079 else
1080 {
1081 get_sdr::response::set_next_record_id(
1082 (FRU_RECORD_ID_START + fru->first), resp);
1083 }
1084
1085 // Check for invalid offset size
1086 if (req->offset > sizeof(record))
1087 {
1088 return IPMI_CC_PARM_OUT_OF_RANGE;
1089 }
1090
1091 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
1092 sizeof(record) - req->offset);
1093
1094 std::memcpy(resp->record_data,
1095 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
1096
1097 *data_len = dataLength;
1098 *data_len += 2; // additional 2 bytes for next record ID
1099
1100 return IPMI_CC_OK;
1101}
1102
1103ipmi_ret_t ipmi_entity_get_sdr(ipmi_request_t request, ipmi_response_t response,
1104 ipmi_data_len_t data_len)
1105{
1106 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
1107 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
1108 get_sdr::SensorDataEntityRecord record{};
1109 auto dataLength = 0;
1110
Patrick Venture87fd2cd2019-08-19 12:07:18 -07001111 const auto& entityRecords =
1112 ipmi::sensor::EntityInfoMapContainer::getContainer()
1113 ->getIpmiEntityRecords();
Patrick Venture83a0b842019-07-19 18:37:15 -07001114 auto entity = entityRecords.begin();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001115 uint8_t entityRecordID;
1116 auto recordID = get_sdr::request::get_record_id(req);
1117
1118 entityRecordID = recordID - ENTITY_RECORD_ID_START;
Patrick Venture83a0b842019-07-19 18:37:15 -07001119 entity = entityRecords.find(entityRecordID);
1120 if (entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001121 {
1122 return IPMI_CC_SENSOR_INVALID;
1123 }
1124
1125 /* Header */
1126 get_sdr::header::set_record_id(recordID, &(record.header));
1127 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
1128 record.header.record_type = get_sdr::SENSOR_DATA_ENTITY_RECORD;
1129 record.header.record_length = sizeof(record.key) + sizeof(record.body);
1130
1131 /* Key */
1132 record.key.containerEntityId = entity->second.containerEntityId;
1133 record.key.containerEntityInstance = entity->second.containerEntityInstance;
1134 get_sdr::key::set_flags(entity->second.isList, entity->second.isLinked,
1135 &(record.key));
1136 record.key.entityId1 = entity->second.containedEntities[0].first;
1137 record.key.entityInstance1 = entity->second.containedEntities[0].second;
1138
1139 /* Body */
1140 record.body.entityId2 = entity->second.containedEntities[1].first;
1141 record.body.entityInstance2 = entity->second.containedEntities[1].second;
1142 record.body.entityId3 = entity->second.containedEntities[2].first;
1143 record.body.entityInstance3 = entity->second.containedEntities[2].second;
1144 record.body.entityId4 = entity->second.containedEntities[3].first;
1145 record.body.entityInstance4 = entity->second.containedEntities[3].second;
1146
Patrick Venture83a0b842019-07-19 18:37:15 -07001147 if (++entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001148 {
Patrick Venture0b02be92018-08-31 11:55:55 -07001149 get_sdr::response::set_next_record_id(END_OF_RECORD,
1150 resp); // last record
Ratan Guptae0cc8552018-01-22 14:23:04 +05301151 }
1152 else
1153 {
1154 get_sdr::response::set_next_record_id(
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -08001155 (ENTITY_RECORD_ID_START + entity->first), resp);
Ratan Guptae0cc8552018-01-22 14:23:04 +05301156 }
1157
Emily Shaffer0fbdbce2018-09-27 09:30:41 -07001158 // Check for invalid offset size
1159 if (req->offset > sizeof(record))
Ratan Guptae0cc8552018-01-22 14:23:04 +05301160 {
Emily Shaffer0fbdbce2018-09-27 09:30:41 -07001161 return IPMI_CC_PARM_OUT_OF_RANGE;
Ratan Guptae0cc8552018-01-22 14:23:04 +05301162 }
1163
Emily Shaffer0fbdbce2018-09-27 09:30:41 -07001164 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
1165 sizeof(record) - req->offset);
Ratan Guptae0cc8552018-01-22 14:23:04 +05301166
Patrick Ventureb51bf9c2018-09-10 15:53:14 -07001167 std::memcpy(resp->record_data,
Jason M. Bills1cd85962018-10-05 12:04:01 -07001168 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
Ratan Guptae0cc8552018-01-22 14:23:04 +05301169
1170 *data_len = dataLength;
1171 *data_len += 2; // additional 2 bytes for next record ID
1172
1173 return IPMI_CC_OK;
1174}
1175
Emily Shafferbbef71c2017-05-08 16:36:17 -07001176ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1177 ipmi_request_t request, ipmi_response_t response,
1178 ipmi_data_len_t data_len, ipmi_context_t context)
1179{
1180 ipmi_ret_t ret = IPMI_CC_OK;
Patrick Venture0b02be92018-08-31 11:55:55 -07001181 get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request;
1182 get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response;
Patrick Venture38426dd2019-07-30 15:22:29 -07001183
1184 // Note: we use an iterator so we can provide the next ID at the end of
1185 // the call.
Patrick Venturedb0cbe62019-09-09 14:47:22 -07001186 auto sensor = ipmi::sensor::sensors.begin();
Patrick Venture38426dd2019-07-30 15:22:29 -07001187 auto recordID = get_sdr::request::get_record_id(req);
1188
1189 // At the beginning of a scan, the host side will send us id=0.
1190 if (recordID != 0)
Emily Shafferbbef71c2017-05-08 16:36:17 -07001191 {
Patrick Venture38426dd2019-07-30 15:22:29 -07001192 // recordID 0 to 255 means it is a FULL record.
1193 // recordID 256 to 511 means it is a FRU record.
1194 // recordID greater then 511 means it is a Entity Association
1195 // record. Currently we are supporting three record types: FULL
1196 // record, FRU record and Enttiy Association record.
1197 if (recordID >= ENTITY_RECORD_ID_START)
Emily Shafferbbef71c2017-05-08 16:36:17 -07001198 {
Patrick Venture38426dd2019-07-30 15:22:29 -07001199 return ipmi_entity_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001200 }
Patrick Venture38426dd2019-07-30 15:22:29 -07001201 else if (recordID >= FRU_RECORD_ID_START &&
1202 recordID < ENTITY_RECORD_ID_START)
Jaghathiswari Rankappagounder Natarajan0780df12019-02-06 15:29:24 -08001203 {
Patrick Venture38426dd2019-07-30 15:22:29 -07001204 return ipmi_fru_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001205 }
1206 else
1207 {
Patrick Venturedb0cbe62019-09-09 14:47:22 -07001208 sensor = ipmi::sensor::sensors.find(recordID);
1209 if (sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -07001210 {
1211 return IPMI_CC_SENSOR_INVALID;
1212 }
Emily Shafferbbef71c2017-05-08 16:36:17 -07001213 }
Emily Shafferbbef71c2017-05-08 16:36:17 -07001214 }
1215
Patrick Venture38426dd2019-07-30 15:22:29 -07001216 uint8_t sensor_id = sensor->first;
1217
Lei YU14a47812021-09-17 15:58:04 +08001218 auto it = sdrCacheMap.find(sensor_id);
1219 if (it == sdrCacheMap.end())
Patrick Venture38426dd2019-07-30 15:22:29 -07001220 {
Lei YU14a47812021-09-17 15:58:04 +08001221 /* Header */
1222 get_sdr::SensorDataFullRecord record = {0};
1223 get_sdr::header::set_record_id(sensor_id, &(record.header));
1224 record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1
1225 record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD;
1226 record.header.record_length = sizeof(record.key) + sizeof(record.body);
1227
1228 /* Key */
1229 get_sdr::key::set_owner_id_bmc(&(record.key));
1230 record.key.sensor_number = sensor_id;
1231
1232 /* Body */
1233 record.body.entity_id = sensor->second.entityType;
1234 record.body.sensor_type = sensor->second.sensorType;
1235 record.body.event_reading_type = sensor->second.sensorReadingType;
1236 record.body.entity_instance = sensor->second.instance;
1237 if (ipmi::sensor::Mutability::Write ==
1238 (sensor->second.mutability & ipmi::sensor::Mutability::Write))
1239 {
1240 get_sdr::body::init_settable_state(true, &(record.body));
1241 }
1242
1243 // Set the type-specific details given the DBus interface
1244 populate_record_from_dbus(&(record.body), &(sensor->second), data_len);
1245 sdrCacheMap[sensor_id] = std::move(record);
Patrick Venture38426dd2019-07-30 15:22:29 -07001246 }
1247
Lei YU14a47812021-09-17 15:58:04 +08001248 const auto& record = sdrCacheMap[sensor_id];
Patrick Venture38426dd2019-07-30 15:22:29 -07001249
Patrick Venturedb0cbe62019-09-09 14:47:22 -07001250 if (++sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -07001251 {
1252 // we have reached till end of sensor, so assign the next record id
1253 // to 256(Max Sensor ID = 255) + FRU ID(may start with 0).
1254 auto next_record_id = (frus.size())
1255 ? frus.begin()->first + FRU_RECORD_ID_START
1256 : END_OF_RECORD;
1257
1258 get_sdr::response::set_next_record_id(next_record_id, resp);
1259 }
1260 else
1261 {
1262 get_sdr::response::set_next_record_id(sensor->first, resp);
1263 }
1264
1265 if (req->offset > sizeof(record))
1266 {
1267 return IPMI_CC_PARM_OUT_OF_RANGE;
1268 }
1269
1270 // data_len will ultimately be the size of the record, plus
1271 // the size of the next record ID:
1272 *data_len = std::min(static_cast<size_t>(req->bytes_to_read),
1273 sizeof(record) - req->offset);
1274
1275 std::memcpy(resp->record_data,
Lei YU14a47812021-09-17 15:58:04 +08001276 reinterpret_cast<const uint8_t*>(&record) + req->offset,
1277 *data_len);
Patrick Venture38426dd2019-07-30 15:22:29 -07001278
1279 // data_len should include the LSB and MSB:
1280 *data_len +=
1281 sizeof(resp->next_record_id_lsb) + sizeof(resp->next_record_id_msb);
1282
Emily Shafferbbef71c2017-05-08 16:36:17 -07001283 return ret;
1284}
1285
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001286static bool isFromSystemChannel()
1287{
1288 // TODO we could not figure out where the request is from based on IPMI
1289 // command handler parameters. because of it, we can not differentiate
1290 // request from SMS/SMM or IPMB channel
1291 return true;
1292}
1293
1294ipmi_ret_t ipmicmdPlatformEvent(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1295 ipmi_request_t request,
1296 ipmi_response_t response,
1297 ipmi_data_len_t dataLen, ipmi_context_t context)
1298{
1299 uint16_t generatorID;
1300 size_t count;
1301 bool assert = true;
1302 std::string sensorPath;
1303 size_t paraLen = *dataLen;
1304 PlatformEventRequest* req;
1305 *dataLen = 0;
1306
1307 if ((paraLen < selSystemEventSizeWith1Bytes) ||
1308 (paraLen > selSystemEventSizeWith3Bytes))
1309 {
1310 return IPMI_CC_REQ_DATA_LEN_INVALID;
1311 }
1312
1313 if (isFromSystemChannel())
1314 { // first byte for SYSTEM Interface is Generator ID
1315 // +1 to get common struct
1316 req = reinterpret_cast<PlatformEventRequest*>((uint8_t*)request + 1);
1317 // Capture the generator ID
1318 generatorID = *reinterpret_cast<uint8_t*>(request);
1319 // Platform Event usually comes from other firmware, like BIOS.
1320 // Unlike BMC sensor, it does not have BMC DBUS sensor path.
1321 sensorPath = "System";
1322 }
1323 else
1324 {
1325 req = reinterpret_cast<PlatformEventRequest*>(request);
1326 // TODO GenratorID for IPMB is combination of RqSA and RqLUN
1327 generatorID = 0xff;
1328 sensorPath = "IPMB";
1329 }
1330 // Content of event data field depends on sensor class.
1331 // When data0 bit[5:4] is non-zero, valid data counts is 3.
1332 // When data0 bit[7:6] is non-zero, valid data counts is 2.
1333 if (((req->data[0] & byte3EnableMask) != 0 &&
1334 paraLen < selSystemEventSizeWith3Bytes) ||
1335 ((req->data[0] & byte2EnableMask) != 0 &&
1336 paraLen < selSystemEventSizeWith2Bytes))
1337 {
1338 return IPMI_CC_REQ_DATA_LEN_INVALID;
1339 }
1340
1341 // Count bytes of Event Data
1342 if ((req->data[0] & byte3EnableMask) != 0)
1343 {
1344 count = 3;
1345 }
1346 else if ((req->data[0] & byte2EnableMask) != 0)
1347 {
1348 count = 2;
1349 }
1350 else
1351 {
1352 count = 1;
1353 }
1354 assert = req->eventDirectionType & directionMask ? false : true;
1355 std::vector<uint8_t> eventData(req->data, req->data + count);
1356
1357 sdbusplus::bus::bus dbus(bus);
1358 std::string service =
1359 ipmi::getService(dbus, ipmiSELAddInterface, ipmiSELPath);
1360 sdbusplus::message::message writeSEL = dbus.new_method_call(
1361 service.c_str(), ipmiSELPath, ipmiSELAddInterface, "IpmiSelAdd");
1362 writeSEL.append(ipmiSELAddMessage, sensorPath, eventData, assert,
1363 generatorID);
1364 try
1365 {
1366 dbus.call(writeSEL);
1367 }
Patrick Williamsa2ad2da2021-10-06 12:21:46 -05001368 catch (const sdbusplus::exception_t& e)
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001369 {
1370 phosphor::logging::log<phosphor::logging::level::ERR>(e.what());
1371 return IPMI_CC_UNSPECIFIED_ERROR;
1372 }
1373 return IPMI_CC_OK;
1374}
1375
Chris Austenac4604a2015-10-13 12:43:27 -05001376void register_netfn_sen_functions()
1377{
Willy Tud351a722021-08-12 14:33:40 -07001378 // Handlers with dbus-sdr handler implementation.
1379 // Do not register the hander if it dynamic sensors stack is used.
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +00001380
Willy Tud351a722021-08-12 14:33:40 -07001381#ifndef FEATURE_DYNAMIC_SENSORS
Lei YUbe5c6b22021-09-16 15:46:20 +08001382
Lei YU962e68b2021-09-16 16:25:34 +08001383#ifdef FEATURE_SENSORS_CACHE
Lei YUbe5c6b22021-09-16 15:46:20 +08001384 // Initialize the sensor matches
1385 initSensorMatches();
Lei YU962e68b2021-09-16 16:25:34 +08001386#endif
Lei YUbe5c6b22021-09-16 15:46:20 +08001387
Tom05732372016-09-06 17:21:23 +05301388 // <Set Sensor Reading and Event Status>
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +00001389 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1390 ipmi::sensor_event::cmdSetSensorReadingAndEvtSts,
1391 ipmi::Privilege::Operator, ipmiSetSensorReading);
Tom05732372016-09-06 17:21:23 +05301392 // <Get Sensor Reading>
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +00001393 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1394 ipmi::sensor_event::cmdGetSensorReading,
1395 ipmi::Privilege::User, ipmiSensorGetSensorReading);
Emily Shaffera344afc2017-04-13 15:09:39 -07001396
Tom Joseph5ca50952018-02-22 00:33:38 +05301397 // <Reserve Device SDR Repository>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001398 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1399 ipmi::sensor_event::cmdReserveDeviceSdrRepository,
1400 ipmi::Privilege::User, ipmiSensorReserveSdr);
Chris Austen10ccc0f2015-12-10 18:27:04 -06001401
Tom Joseph5ca50952018-02-22 00:33:38 +05301402 // <Get Device SDR Info>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001403 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1404 ipmi::sensor_event::cmdGetDeviceSdrInfo,
1405 ipmi::Privilege::User, ipmiSensorGetDeviceSdrInfo);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001406
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001407 // <Get Sensor Thresholds>
jayaprakash Mutyala996c9792019-05-03 15:56:48 +00001408 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1409 ipmi::sensor_event::cmdGetSensorThreshold,
1410 ipmi::Privilege::User, ipmiSensorGetSensorThresholds);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001411
Lotus Xuf93da662021-10-18 17:20:06 +08001412 // <Set Sensor Thresholds>
1413 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1414 ipmi::sensor_event::cmdSetSensorThreshold,
1415 ipmi::Privilege::User, ipmiSenSetSensorThresholds);
Willy Tud351a722021-08-12 14:33:40 -07001416#endif
1417
1418 // Common Handers used by both implementation.
1419
1420 // <Platform Event Message>
1421 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_PLATFORM_EVENT, nullptr,
1422 ipmicmdPlatformEvent, PRIVILEGE_OPERATOR);
1423
1424 // <Get Sensor Type>
1425 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1426 ipmi::sensor_event::cmdGetSensorType,
1427 ipmi::Privilege::User, ipmiGetSensorType);
1428
1429 // <Get Device SDR>
1430 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr,
1431 ipmi_sen_get_sdr, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -05001432 return;
1433}