blob: 4c0fe016c314dd044e843b9605a7589ba7b91da3 [file] [log] [blame]
Patrick Venture46470a32018-09-07 19:26:25 -07001#include "sensorhandler.hpp"
Patrick Venture0b02be92018-08-31 11:55:55 -07002
3#include "fruread.hpp"
Patrick Venture0b02be92018-08-31 11:55:55 -07004
Tomd700e762016-09-20 18:24:13 +05305#include <mapper.h>
Chris Austen10ccc0f2015-12-10 18:27:04 -06006#include <systemd/sd-bus.h>
Patrick Venture0b02be92018-08-31 11:55:55 -07007
8#include <bitset>
Patrick Venture586d35b2018-09-07 19:56:18 -07009#include <cmath>
Patrick Ventureb51bf9c2018-09-10 15:53:14 -070010#include <cstring>
Vernon Mauerye08fbff2019-04-03 09:19:34 -070011#include <ipmid/api.hpp>
Vernon Mauery33250242019-03-12 16:49:26 -070012#include <ipmid/types.hpp>
Vernon Mauery6a98fe72019-03-11 15:57:48 -070013#include <ipmid/utils.hpp>
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -050014#include <phosphor-logging/elog-errors.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -070015#include <phosphor-logging/log.hpp>
William A. Kennington III4c008022018-10-12 17:18:14 -070016#include <sdbusplus/message/types.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -070017#include <set>
18#include <xyz/openbmc_project/Common/error.hpp>
19#include <xyz/openbmc_project/Sensor/Value/server.hpp>
20
Ratan Guptae0cc8552018-01-22 14:23:04 +053021static constexpr uint8_t fruInventoryDevice = 0x10;
22static constexpr uint8_t IPMIFruInventory = 0x02;
23static constexpr uint8_t BMCSlaveAddress = 0x20;
24
Patrick Venture0b02be92018-08-31 11:55:55 -070025extern int updateSensorRecordFromSSRAESC(const void*);
26extern sd_bus* bus;
Tom Josephbe703f72017-03-09 12:34:35 +053027extern const ipmi::sensor::IdInfoMap sensors;
Ratan Guptae0cc8552018-01-22 14:23:04 +053028extern const FruMap frus;
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -080029extern const ipmi::sensor::EntityInfoMap entities;
Ratan Guptae0cc8552018-01-22 14:23:04 +053030
Tom Josephbe703f72017-03-09 12:34:35 +053031using namespace phosphor::logging;
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -050032using InternalFailure =
33 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Chris Austenac4604a2015-10-13 12:43:27 -050034
Patrick Venture0b02be92018-08-31 11:55:55 -070035void register_netfn_sen_functions() __attribute__((constructor));
Chris Austenac4604a2015-10-13 12:43:27 -050036
Patrick Venture0b02be92018-08-31 11:55:55 -070037struct sensorTypemap_t
38{
Chris Austen0012e9b2015-10-22 01:37:46 -050039 uint8_t number;
Chris Austend7cf0e42015-11-07 14:27:12 -060040 uint8_t typecode;
Chris Austen0012e9b2015-10-22 01:37:46 -050041 char dbusname[32];
Patrick Venture0b02be92018-08-31 11:55:55 -070042};
Chris Austen0012e9b2015-10-22 01:37:46 -050043
Chris Austen0012e9b2015-10-22 01:37:46 -050044sensorTypemap_t g_SensorTypeMap[] = {
45
Chris Austend7cf0e42015-11-07 14:27:12 -060046 {0x01, 0x6F, "Temp"},
47 {0x0C, 0x6F, "DIMM"},
48 {0x0C, 0x6F, "MEMORY_BUFFER"},
49 {0x07, 0x6F, "PROC"},
50 {0x07, 0x6F, "CORE"},
51 {0x07, 0x6F, "CPU"},
52 {0x0F, 0x6F, "BootProgress"},
Patrick Venture0b02be92018-08-31 11:55:55 -070053 {0xe9, 0x09, "OccStatus"}, // E9 is an internal mapping to handle sensor
54 // type code os 0x09
Chris Austend7cf0e42015-11-07 14:27:12 -060055 {0xC3, 0x6F, "BootCount"},
56 {0x1F, 0x6F, "OperatingSystemStatus"},
Chris Austen800ba712015-12-03 15:31:00 -060057 {0x12, 0x6F, "SYSTEM_EVENT"},
58 {0xC7, 0x03, "SYSTEM"},
59 {0xC7, 0x03, "MAIN_PLANAR"},
Chris Austen10ccc0f2015-12-10 18:27:04 -060060 {0xC2, 0x6F, "PowerCap"},
Tom Joseph558184e2017-09-01 13:45:05 +053061 {0x0b, 0xCA, "PowerSupplyRedundancy"},
Jayanth Othayoth0661beb2017-03-22 06:00:58 -050062 {0xDA, 0x03, "TurboAllowed"},
Tom Joseph558184e2017-09-01 13:45:05 +053063 {0xD8, 0xC8, "PowerSupplyDerating"},
Chris Austend7cf0e42015-11-07 14:27:12 -060064 {0xFF, 0x00, ""},
Chris Austen0012e9b2015-10-22 01:37:46 -050065};
66
Patrick Venture0b02be92018-08-31 11:55:55 -070067struct sensor_data_t
68{
Chris Austenac4604a2015-10-13 12:43:27 -050069 uint8_t sennum;
Patrick Venture0b02be92018-08-31 11:55:55 -070070} __attribute__((packed));
Chris Austenac4604a2015-10-13 12:43:27 -050071
Patrick Venture0b02be92018-08-31 11:55:55 -070072struct sensorreadingresp_t
73{
Chris Austen10ccc0f2015-12-10 18:27:04 -060074 uint8_t value;
75 uint8_t operation;
76 uint8_t indication[2];
Patrick Venture0b02be92018-08-31 11:55:55 -070077} __attribute__((packed));
Chris Austenac4604a2015-10-13 12:43:27 -050078
Patrick Venture0b02be92018-08-31 11:55:55 -070079int get_bus_for_path(const char* path, char** busname)
80{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070081 return mapper_get_service(bus, path, busname);
82}
Tomd700e762016-09-20 18:24:13 +053083
Emily Shaffer2ae09b92017-04-05 15:09:41 -070084// Use a lookup table to find the interface name of a specific sensor
85// This will be used until an alternative is found. this is the first
86// step for mapping IPMI
Patrick Venture0b02be92018-08-31 11:55:55 -070087int find_openbmc_path(uint8_t num, dbus_interface_t* interface)
88{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070089 int rc;
90
Emily Shaffer2ae09b92017-04-05 15:09:41 -070091 const auto& sensor_it = sensors.find(num);
92 if (sensor_it == sensors.end())
93 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -050094 // The sensor map does not contain the sensor requested
95 return -EINVAL;
Emily Shaffer2ae09b92017-04-05 15:09:41 -070096 }
97
98 const auto& info = sensor_it->second;
99
Patrick Williams8451edf2017-06-13 09:01:06 -0500100 char* busname = nullptr;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700101 rc = get_bus_for_path(info.sensorPath.c_str(), &busname);
Patrick Venture0b02be92018-08-31 11:55:55 -0700102 if (rc < 0)
103 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700104 std::fprintf(stderr, "Failed to get %s busname: %s\n",
105 info.sensorPath.c_str(), busname);
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700106 goto final;
107 }
108
109 interface->sensortype = info.sensorType;
110 strcpy(interface->bus, busname);
111 strcpy(interface->path, info.sensorPath.c_str());
112 // Take the interface name from the beginning of the DbusInterfaceMap. This
113 // works for the Value interface but may not suffice for more complex
114 // sensors.
115 // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103
Patrick Venture0b02be92018-08-31 11:55:55 -0700116 strcpy(interface->interface,
117 info.propertyInterfaces.begin()->first.c_str());
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700118 interface->sensornumber = num;
119
120final:
121 free(busname);
122 return rc;
123}
124
Tomd700e762016-09-20 18:24:13 +0530125/////////////////////////////////////////////////////////////////////
126//
127// Routines used by ipmi commands wanting to interact on the dbus
128//
129/////////////////////////////////////////////////////////////////////
Patrick Venture0b02be92018-08-31 11:55:55 -0700130int set_sensor_dbus_state_s(uint8_t number, const char* method,
131 const char* value)
132{
Tomd700e762016-09-20 18:24:13 +0530133
134 dbus_interface_t a;
135 int r;
136 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700137 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530138
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700139 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530140
Patrick Venture0b02be92018-08-31 11:55:55 -0700141 if (r < 0)
142 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700143 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530144 return 0;
145 }
146
Patrick Venture0b02be92018-08-31 11:55:55 -0700147 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
148 method);
149 if (r < 0)
150 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700151 std::fprintf(stderr, "Failed to create a method call: %s",
152 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530153 goto final;
154 }
155
156 r = sd_bus_message_append(m, "v", "s", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700157 if (r < 0)
158 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700159 std::fprintf(stderr, "Failed to create a input parameter: %s",
160 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530161 goto final;
162 }
163
Tomd700e762016-09-20 18:24:13 +0530164 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700165 if (r < 0)
166 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700167 std::fprintf(stderr, "Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530168 }
169
170final:
171 sd_bus_error_free(&error);
172 m = sd_bus_message_unref(m);
173
174 return 0;
175}
Patrick Venture0b02be92018-08-31 11:55:55 -0700176int set_sensor_dbus_state_y(uint8_t number, const char* method,
177 const uint8_t value)
178{
Tomd700e762016-09-20 18:24:13 +0530179
180 dbus_interface_t a;
181 int r;
182 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700183 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530184
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700185 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530186
Patrick Venture0b02be92018-08-31 11:55:55 -0700187 if (r < 0)
188 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700189 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530190 return 0;
191 }
192
Patrick Venture0b02be92018-08-31 11:55:55 -0700193 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
194 method);
195 if (r < 0)
196 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700197 std::fprintf(stderr, "Failed to create a method call: %s",
198 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530199 goto final;
200 }
201
202 r = sd_bus_message_append(m, "v", "i", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700203 if (r < 0)
204 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700205 std::fprintf(stderr, "Failed to create a input parameter: %s",
206 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530207 goto final;
208 }
209
Tomd700e762016-09-20 18:24:13 +0530210 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700211 if (r < 0)
212 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700213 std::fprintf(stderr, "12 Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530214 }
215
216final:
217 sd_bus_error_free(&error);
218 m = sd_bus_message_unref(m);
219
220 return 0;
221}
222
Patrick Venture0b02be92018-08-31 11:55:55 -0700223uint8_t dbus_to_sensor_type(char* p)
224{
Chris Austenac4604a2015-10-13 12:43:27 -0500225
Patrick Venture0b02be92018-08-31 11:55:55 -0700226 sensorTypemap_t* s = g_SensorTypeMap;
227 char r = 0;
228 while (s->number != 0xFF)
229 {
230 if (!strcmp(s->dbusname, p))
231 {
Tom Joseph558184e2017-09-01 13:45:05 +0530232 r = s->typecode;
Patrick Venture0b02be92018-08-31 11:55:55 -0700233 break;
Chris Austenac4604a2015-10-13 12:43:27 -0500234 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500235 s++;
Chris Austenac4604a2015-10-13 12:43:27 -0500236 }
237
Chris Austen0012e9b2015-10-22 01:37:46 -0500238 if (s->number == 0xFF)
239 printf("Failed to find Sensor Type %s\n", p);
Chris Austenac4604a2015-10-13 12:43:27 -0500240
Chris Austen0012e9b2015-10-22 01:37:46 -0500241 return r;
Chris Austenac4604a2015-10-13 12:43:27 -0500242}
243
Patrick Venture0b02be92018-08-31 11:55:55 -0700244uint8_t get_type_from_interface(dbus_interface_t dbus_if)
245{
Chris Austen0012e9b2015-10-22 01:37:46 -0500246
Brad Bishop56003452016-10-05 21:49:19 -0400247 uint8_t type;
Chris Austen0012e9b2015-10-22 01:37:46 -0500248
Chris Austen0012e9b2015-10-22 01:37:46 -0500249 // This is where sensors that do not exist in dbus but do
250 // exist in the host code stop. This should indicate it
251 // is not a supported sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700252 if (dbus_if.interface[0] == 0)
253 {
254 return 0;
255 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500256
Emily Shaffer71174412017-04-05 15:10:40 -0700257 // Fetch type from interface itself.
258 if (dbus_if.sensortype != 0)
259 {
260 type = dbus_if.sensortype;
Patrick Venture0b02be92018-08-31 11:55:55 -0700261 }
262 else
263 {
Chris Austen0012e9b2015-10-22 01:37:46 -0500264 // Non InventoryItems
Patrick Venture4491a462018-10-13 13:00:42 -0700265 char* p = strrchr(dbus_if.path, '/');
Patrick Venture0b02be92018-08-31 11:55:55 -0700266 type = dbus_to_sensor_type(p + 1);
Chris Austen0012e9b2015-10-22 01:37:46 -0500267 }
268
Brad Bishop56003452016-10-05 21:49:19 -0400269 return type;
Patrick Venture0b02be92018-08-31 11:55:55 -0700270}
Chris Austen0012e9b2015-10-22 01:37:46 -0500271
Emily Shaffer391f3302017-04-03 10:27:08 -0700272// Replaces find_sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700273uint8_t find_type_for_sensor_number(uint8_t num)
274{
Emily Shaffer391f3302017-04-03 10:27:08 -0700275 int r;
276 dbus_interface_t dbus_if;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700277 r = find_openbmc_path(num, &dbus_if);
Patrick Venture0b02be92018-08-31 11:55:55 -0700278 if (r < 0)
279 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700280 std::fprintf(stderr, "Could not find sensor %d\n", num);
Lei YU91875f72018-04-03 15:14:49 +0800281 return 0;
Emily Shaffer391f3302017-04-03 10:27:08 -0700282 }
283 return get_type_from_interface(dbus_if);
284}
285
Chris Austen0012e9b2015-10-22 01:37:46 -0500286ipmi_ret_t ipmi_sen_get_sensor_type(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700287 ipmi_request_t request,
288 ipmi_response_t response,
289 ipmi_data_len_t data_len,
290 ipmi_context_t context)
Chris Austenac4604a2015-10-13 12:43:27 -0500291{
Patrick Ventured99148b2018-10-13 10:06:13 -0700292 auto reqptr = static_cast<sensor_data_t*>(request);
Chris Austenac4604a2015-10-13 12:43:27 -0500293 ipmi_ret_t rc = IPMI_CC_OK;
294
Patrick Venture0b02be92018-08-31 11:55:55 -0700295 printf("IPMI GET_SENSOR_TYPE [0x%02X]\n", reqptr->sennum);
Chris Austenac4604a2015-10-13 12:43:27 -0500296
297 // TODO Not sure what the System-event-sensor is suppose to return
298 // need to ask Hostboot team
Patrick Venture0b02be92018-08-31 11:55:55 -0700299 unsigned char buf[] = {0x00, 0x6F};
Chris Austenac4604a2015-10-13 12:43:27 -0500300
Emily Shaffer391f3302017-04-03 10:27:08 -0700301 buf[0] = find_type_for_sensor_number(reqptr->sennum);
Chris Austen0012e9b2015-10-22 01:37:46 -0500302
303 // HACK UNTIL Dbus gets updated or we find a better way
Patrick Venture0b02be92018-08-31 11:55:55 -0700304 if (buf[0] == 0)
305 {
Chris Austen800ba712015-12-03 15:31:00 -0600306 rc = IPMI_CC_SENSOR_INVALID;
Chris Austen0012e9b2015-10-22 01:37:46 -0500307 }
308
Chris Austenac4604a2015-10-13 12:43:27 -0500309 *data_len = sizeof(buf);
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700310 std::memcpy(response, &buf, *data_len);
Chris Austenac4604a2015-10-13 12:43:27 -0500311
Chris Austenac4604a2015-10-13 12:43:27 -0500312 return rc;
313}
314
Patrick Venture0b02be92018-08-31 11:55:55 -0700315const std::set<std::string> analogSensorInterfaces = {
Emily Shaffercc941e12017-06-14 13:06:26 -0700316 "xyz.openbmc_project.Sensor.Value",
Patrick Venturee9a64052017-08-18 19:17:27 -0700317 "xyz.openbmc_project.Control.FanPwm",
Emily Shaffercc941e12017-06-14 13:06:26 -0700318};
319
320bool isAnalogSensor(const std::string& interface)
321{
322 return (analogSensorInterfaces.count(interface));
323}
324
Patrick Venture0b02be92018-08-31 11:55:55 -0700325ipmi_ret_t setSensorReading(void* request)
Tom Josephbe703f72017-03-09 12:34:35 +0530326{
Tom Joseph816e92b2017-09-06 19:23:00 +0530327 ipmi::sensor::SetSensorReadingReq cmdData =
Patrick Venture0b02be92018-08-31 11:55:55 -0700328 *(static_cast<ipmi::sensor::SetSensorReadingReq*>(request));
Tom Josephbe703f72017-03-09 12:34:35 +0530329
330 // Check if the Sensor Number is present
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500331 const auto iter = sensors.find(cmdData.number);
Tom Josephbe703f72017-03-09 12:34:35 +0530332 if (iter == sensors.end())
333 {
334 return IPMI_CC_SENSOR_INVALID;
335 }
336
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500337 try
338 {
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500339 if (ipmi::sensor::Mutability::Write !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700340 (iter->second.mutability & ipmi::sensor::Mutability::Write))
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500341 {
342 log<level::ERR>("Sensor Set operation is not allowed",
343 entry("SENSOR_NUM=%d", cmdData.number));
344 return IPMI_CC_ILLEGAL_COMMAND;
345 }
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500346 return iter->second.updateFunc(cmdData, iter->second);
347 }
348 catch (InternalFailure& e)
349 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700350 log<level::ERR>("Set sensor failed",
351 entry("SENSOR_NUM=%d", cmdData.number));
352 commit<InternalFailure>();
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500353 }
Tom Joseph82024322017-09-28 20:07:29 +0530354 catch (const std::runtime_error& e)
355 {
356 log<level::ERR>(e.what());
357 }
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500358
359 return IPMI_CC_UNSPECIFIED_ERROR;
Tom Josephbe703f72017-03-09 12:34:35 +0530360}
Chris Austenac4604a2015-10-13 12:43:27 -0500361
Chris Austen0012e9b2015-10-22 01:37:46 -0500362ipmi_ret_t ipmi_sen_set_sensor(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700363 ipmi_request_t request, ipmi_response_t response,
364 ipmi_data_len_t data_len, ipmi_context_t context)
Chris Austenac4604a2015-10-13 12:43:27 -0500365{
Patrick Ventured99148b2018-10-13 10:06:13 -0700366 auto reqptr = static_cast<sensor_data_t*>(request);
Chris Austenac4604a2015-10-13 12:43:27 -0500367
Aditya Saripalli5fb14602017-11-09 14:46:27 +0530368 log<level::DEBUG>("IPMI SET_SENSOR",
369 entry("SENSOR_NUM=0x%02x", reqptr->sennum));
Chris Austenac4604a2015-10-13 12:43:27 -0500370
Tom Josephbe703f72017-03-09 12:34:35 +0530371 /*
372 * This would support the Set Sensor Reading command for the presence
373 * and functional state of Processor, Core & DIMM. For the remaining
374 * sensors the existing support is invoked.
375 */
376 auto ipmiRC = setSensorReading(request);
377
Patrick Venture0b02be92018-08-31 11:55:55 -0700378 if (ipmiRC == IPMI_CC_SENSOR_INVALID)
Tom Josephbe703f72017-03-09 12:34:35 +0530379 {
380 updateSensorRecordFromSSRAESC(reqptr);
381 ipmiRC = IPMI_CC_OK;
382 }
Chris Austen8a45e7c2015-10-15 00:31:46 -0500383
Patrick Venture0b02be92018-08-31 11:55:55 -0700384 *data_len = 0;
Tom Josephbe703f72017-03-09 12:34:35 +0530385 return ipmiRC;
Chris Austenac4604a2015-10-13 12:43:27 -0500386}
387
Tom Joseph3ee668f2018-03-02 19:49:17 +0530388ipmi_ret_t ipmi_sen_get_sensor_reading(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700389 ipmi_request_t request,
390 ipmi_response_t response,
391 ipmi_data_len_t data_len,
392 ipmi_context_t context)
Tom Joseph3ee668f2018-03-02 19:49:17 +0530393{
Patrick Ventured99148b2018-10-13 10:06:13 -0700394 auto reqptr = static_cast<sensor_data_t*>(request);
395 auto resp = static_cast<sensorreadingresp_t*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700396 ipmi::sensor::GetSensorResponse getResponse{};
Tom Joseph3ee668f2018-03-02 19:49:17 +0530397 static constexpr auto scanningEnabledBit = 6;
398
399 const auto iter = sensors.find(reqptr->sennum);
400 if (iter == sensors.end())
401 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -0500402 return IPMI_CC_SENSOR_INVALID;
Tom Joseph3ee668f2018-03-02 19:49:17 +0530403 }
404 if (ipmi::sensor::Mutability::Read !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700405 (iter->second.mutability & ipmi::sensor::Mutability::Read))
Tom Joseph3ee668f2018-03-02 19:49:17 +0530406 {
Jayanth Othayoth6ccf8812018-04-05 22:58:48 -0500407 return IPMI_CC_ILLEGAL_COMMAND;
Tom Joseph3ee668f2018-03-02 19:49:17 +0530408 }
409
410 try
411 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700412 getResponse = iter->second.getFunc(iter->second);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530413 *data_len = getResponse.size();
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700414 std::memcpy(resp, getResponse.data(), *data_len);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530415 resp->operation = 1 << scanningEnabledBit;
416 return IPMI_CC_OK;
417 }
418 catch (const std::exception& e)
419 {
420 *data_len = getResponse.size();
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700421 std::memcpy(resp, getResponse.data(), *data_len);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530422 return IPMI_CC_OK;
423 }
424}
425
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530426void getSensorThresholds(uint8_t sensorNum,
427 get_sdr::GetSensorThresholdsResponse* response)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600428{
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530429 constexpr auto warningThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600430 "xyz.openbmc_project.Sensor.Threshold.Warning";
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530431 constexpr auto criticalThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600432 "xyz.openbmc_project.Sensor.Threshold.Critical";
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600433
434 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
435
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530436 const auto iter = sensors.find(sensorNum);
437 const auto info = iter->second;
438
439 auto service = ipmi::getService(bus, info.sensorInterface, info.sensorPath);
440
Patrick Venture0b02be92018-08-31 11:55:55 -0700441 auto warnThresholds = ipmi::getAllDbusProperties(
442 bus, service, info.sensorPath, warningThreshIntf);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530443
Vernon Maueryf442e112019-04-09 11:44:36 -0700444 double warnLow = std::visit(ipmi::VariantToDoubleVisitor(),
445 warnThresholds["WarningLow"]);
446 double warnHigh = std::visit(ipmi::VariantToDoubleVisitor(),
447 warnThresholds["WarningHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530448
449 if (warnLow != 0)
450 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700451 warnLow *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700452 response->lowerNonCritical = static_cast<uint8_t>(
453 (warnLow - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530454 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700455 ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530456 }
457
458 if (warnHigh != 0)
459 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700460 warnHigh *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700461 response->upperNonCritical = static_cast<uint8_t>(
462 (warnHigh - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530463 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700464 ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530465 }
466
Patrick Venture0b02be92018-08-31 11:55:55 -0700467 auto critThresholds = ipmi::getAllDbusProperties(
468 bus, service, info.sensorPath, criticalThreshIntf);
Vernon Maueryf442e112019-04-09 11:44:36 -0700469 double critLow = std::visit(ipmi::VariantToDoubleVisitor(),
470 critThresholds["CriticalLow"]);
471 double critHigh = std::visit(ipmi::VariantToDoubleVisitor(),
472 critThresholds["CriticalHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530473
474 if (critLow != 0)
475 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700476 critLow *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700477 response->lowerCritical = static_cast<uint8_t>(
478 (critLow - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530479 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700480 ipmi::sensor::ThresholdMask::CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530481 }
482
483 if (critHigh != 0)
484 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700485 critHigh *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700486 response->upperCritical = static_cast<uint8_t>(
487 (critHigh - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530488 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700489 ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530490 }
491}
492
493ipmi_ret_t ipmi_sen_get_sensor_thresholds(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700494 ipmi_request_t request,
495 ipmi_response_t response,
496 ipmi_data_len_t data_len,
497 ipmi_context_t context)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530498{
499 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
500
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600501 if (*data_len != sizeof(uint8_t))
502 {
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530503 *data_len = 0;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600504 return IPMI_CC_REQ_DATA_LEN_INVALID;
505 }
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600506
Patrick Venture0b02be92018-08-31 11:55:55 -0700507 auto sensorNum = *(reinterpret_cast<const uint8_t*>(request));
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530508 *data_len = 0;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600509
510 const auto iter = sensors.find(sensorNum);
511 if (iter == sensors.end())
512 {
513 return IPMI_CC_SENSOR_INVALID;
514 }
515
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530516 const auto info = iter->second;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600517
Patrick Venture0b02be92018-08-31 11:55:55 -0700518 // Proceed only if the sensor value interface is implemented.
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530519 if (info.propertyInterfaces.find(valueInterface) ==
520 info.propertyInterfaces.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600521 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700522 // return with valid mask as 0
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600523 return IPMI_CC_OK;
524 }
525
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530526 auto responseData =
527 reinterpret_cast<get_sdr::GetSensorThresholdsResponse*>(response);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600528
529 try
530 {
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530531 getSensorThresholds(sensorNum, responseData);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600532 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530533 catch (std::exception& e)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600534 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700535 // Mask if the property is not present
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600536 responseData->validMask = 0;
537 }
538
539 *data_len = sizeof(get_sdr::GetSensorThresholdsResponse);
540 return IPMI_CC_OK;
541}
542
Chris Austen0012e9b2015-10-22 01:37:46 -0500543ipmi_ret_t ipmi_sen_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
544 ipmi_request_t request, ipmi_response_t response,
Chris Austenac4604a2015-10-13 12:43:27 -0500545 ipmi_data_len_t data_len, ipmi_context_t context)
546{
Nan Li70aa8d92016-08-29 00:11:10 +0800547 ipmi_ret_t rc = IPMI_CC_INVALID;
Chris Austenac4604a2015-10-13 12:43:27 -0500548
Patrick Venture0b02be92018-08-31 11:55:55 -0700549 printf("IPMI S/E Wildcard Netfn:[0x%X], Cmd:[0x%X]\n", netfn, cmd);
Chris Austenac4604a2015-10-13 12:43:27 -0500550 *data_len = 0;
551
552 return rc;
553}
554
Emily Shafferd06e0e72017-04-05 09:08:57 -0700555ipmi_ret_t ipmi_sen_get_sdr_info(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
556 ipmi_request_t request,
557 ipmi_response_t response,
558 ipmi_data_len_t data_len,
559 ipmi_context_t context)
560{
561 auto resp = static_cast<get_sdr_info::GetSdrInfoResp*>(response);
562 if (request == nullptr ||
563 get_sdr_info::request::get_count(request) == false)
564 {
565 // Get Sensor Count
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800566 resp->count = sensors.size() + frus.size() + entities.size();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700567 }
568 else
569 {
570 resp->count = 1;
571 }
572
573 // Multiple LUNs not supported.
574 namespace response = get_sdr_info::response;
575 response::set_lun_present(0, &(resp->luns_and_dynamic_population));
576 response::set_lun_not_present(1, &(resp->luns_and_dynamic_population));
577 response::set_lun_not_present(2, &(resp->luns_and_dynamic_population));
578 response::set_lun_not_present(3, &(resp->luns_and_dynamic_population));
579 response::set_static_population(&(resp->luns_and_dynamic_population));
580
581 *data_len = SDR_INFO_RESP_SIZE;
582
583 return IPMI_CC_OK;
584}
585
Emily Shaffera344afc2017-04-13 15:09:39 -0700586ipmi_ret_t ipmi_sen_reserve_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
587 ipmi_request_t request,
588 ipmi_response_t response,
589 ipmi_data_len_t data_len,
590 ipmi_context_t context)
591{
592 // A constant reservation ID is okay until we implement add/remove SDR.
593 const uint16_t reservation_id = 1;
594 *(uint16_t*)response = reservation_id;
Emily Shaffer5a5a6282017-08-15 11:17:17 -0700595 *data_len = sizeof(uint16_t);
Emily Shaffera344afc2017-04-13 15:09:39 -0700596
597 printf("Created new IPMI SDR reservation ID %d\n", *(uint16_t*)response);
598 return IPMI_CC_OK;
599}
Chris Austenac4604a2015-10-13 12:43:27 -0500600
Patrick Venture0b02be92018-08-31 11:55:55 -0700601void setUnitFieldsForObject(const ipmi::sensor::Info* info,
602 get_sdr::SensorDataFullRecordBody* body)
Emily Shaffercc941e12017-06-14 13:06:26 -0700603{
Tom Josephdc212b22018-02-16 09:59:57 +0530604 namespace server = sdbusplus::xyz::openbmc_project::Sensor::server;
605 try
Emily Shaffercc941e12017-06-14 13:06:26 -0700606 {
Tom Josephdc212b22018-02-16 09:59:57 +0530607 auto unit = server::Value::convertUnitFromString(info->unit);
608 // Unit strings defined in
609 // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml
610 switch (unit)
Emily Shaffercc941e12017-06-14 13:06:26 -0700611 {
Tom Josephdc212b22018-02-16 09:59:57 +0530612 case server::Value::Unit::DegreesC:
613 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C;
614 break;
615 case server::Value::Unit::RPMS:
Kirill Pakhomov812e44c2018-10-22 16:25:35 +0300616 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_RPM;
Tom Josephdc212b22018-02-16 09:59:57 +0530617 break;
618 case server::Value::Unit::Volts:
619 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS;
620 break;
621 case server::Value::Unit::Meters:
622 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS;
623 break;
624 case server::Value::Unit::Amperes:
625 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES;
626 break;
627 case server::Value::Unit::Joules:
628 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES;
629 break;
630 case server::Value::Unit::Watts:
631 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS;
632 break;
633 default:
634 // Cannot be hit.
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700635 std::fprintf(stderr, "Unknown value unit type: = %s\n",
636 info->unit.c_str());
Emily Shaffercc941e12017-06-14 13:06:26 -0700637 }
638 }
Patrick Venture64678b82018-10-13 13:11:32 -0700639 catch (const sdbusplus::exception::InvalidEnumString& e)
Emily Shaffercc941e12017-06-14 13:06:26 -0700640 {
Tom Josephdc212b22018-02-16 09:59:57 +0530641 log<level::WARNING>("Warning: no unit provided for sensor!");
Emily Shaffercc941e12017-06-14 13:06:26 -0700642 }
Emily Shaffercc941e12017-06-14 13:06:26 -0700643}
644
Patrick Venture0b02be92018-08-31 11:55:55 -0700645ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body,
646 const ipmi::sensor::Info* info,
Emily Shafferbbef71c2017-05-08 16:36:17 -0700647 ipmi_data_len_t data_len)
648{
649 /* Functional sensor case */
Emily Shaffercc941e12017-06-14 13:06:26 -0700650 if (isAnalogSensor(info->propertyInterfaces.begin()->first))
Emily Shafferbbef71c2017-05-08 16:36:17 -0700651 {
Emily Shafferbbef71c2017-05-08 16:36:17 -0700652
653 body->sensor_units_1 = 0; // unsigned, no rate, no modifier, not a %
654
655 /* Unit info */
Tom Josephdc212b22018-02-16 09:59:57 +0530656 setUnitFieldsForObject(info, body);
Emily Shaffer10f49592017-05-10 12:01:10 -0700657
658 get_sdr::body::set_b(info->coefficientB, body);
659 get_sdr::body::set_m(info->coefficientM, body);
660 get_sdr::body::set_b_exp(info->exponentB, body);
Tom Josephdc212b22018-02-16 09:59:57 +0530661 get_sdr::body::set_r_exp(info->exponentR, body);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700662
Emily Shafferbbef71c2017-05-08 16:36:17 -0700663 get_sdr::body::set_id_type(0b00, body); // 00 = unicode
Emily Shafferbbef71c2017-05-08 16:36:17 -0700664 }
665
Tom Joseph96423912018-01-25 00:14:34 +0530666 /* ID string */
667 auto id_string = info->sensorNameFunc(*info);
668
669 if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH)
670 {
671 get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body);
672 }
673 else
674 {
675 get_sdr::body::set_id_strlen(id_string.length(), body);
676 }
677 strncpy(body->id_string, id_string.c_str(),
678 get_sdr::body::get_id_strlen(body));
679
Emily Shafferbbef71c2017-05-08 16:36:17 -0700680 return IPMI_CC_OK;
681};
682
Ratan Guptae0cc8552018-01-22 14:23:04 +0530683ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response,
684 ipmi_data_len_t data_len)
685{
686 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
687 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700688 get_sdr::SensorDataFruRecord record{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530689 auto dataLength = 0;
690
691 auto fru = frus.begin();
Patrick Venture0b02be92018-08-31 11:55:55 -0700692 uint8_t fruID{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530693 auto recordID = get_sdr::request::get_record_id(req);
694
695 fruID = recordID - FRU_RECORD_ID_START;
696 fru = frus.find(fruID);
697 if (fru == frus.end())
698 {
699 return IPMI_CC_SENSOR_INVALID;
700 }
701
702 /* Header */
703 get_sdr::header::set_record_id(recordID, &(record.header));
704 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
705 record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD;
706 record.header.record_length = sizeof(record.key) + sizeof(record.body);
707
708 /* Key */
709 record.key.fruID = fruID;
710 record.key.accessLun |= IPMI_LOGICAL_FRU;
711 record.key.deviceAddress = BMCSlaveAddress;
712
713 /* Body */
714 record.body.entityID = fru->second[0].entityID;
715 record.body.entityInstance = fru->second[0].entityInstance;
716 record.body.deviceType = fruInventoryDevice;
717 record.body.deviceTypeModifier = IPMIFruInventory;
718
719 /* Device ID string */
Patrick Venture0b02be92018-08-31 11:55:55 -0700720 auto deviceID =
721 fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1,
722 fru->second[0].path.length());
Ratan Guptae0cc8552018-01-22 14:23:04 +0530723
724 if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH)
725 {
726 get_sdr::body::set_device_id_strlen(
Patrick Venture0b02be92018-08-31 11:55:55 -0700727 get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530728 }
729 else
730 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700731 get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530732 }
733
734 strncpy(record.body.deviceID, deviceID.c_str(),
735 get_sdr::body::get_device_id_strlen(&(record.body)));
736
737 if (++fru == frus.end())
738 {
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800739 // we have reached till end of fru, so assign the next record id to
740 // 512(Max fru ID = 511) + Entity Record ID(may start with 0).
741 auto next_record_id =
742 (entities.size()) ? entities.begin()->first + ENTITY_RECORD_ID_START
743 : END_OF_RECORD;
744 get_sdr::response::set_next_record_id(next_record_id, resp);
745 }
746 else
747 {
748 get_sdr::response::set_next_record_id(
749 (FRU_RECORD_ID_START + fru->first), resp);
750 }
751
752 // Check for invalid offset size
753 if (req->offset > sizeof(record))
754 {
755 return IPMI_CC_PARM_OUT_OF_RANGE;
756 }
757
758 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
759 sizeof(record) - req->offset);
760
761 std::memcpy(resp->record_data,
762 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
763
764 *data_len = dataLength;
765 *data_len += 2; // additional 2 bytes for next record ID
766
767 return IPMI_CC_OK;
768}
769
770ipmi_ret_t ipmi_entity_get_sdr(ipmi_request_t request, ipmi_response_t response,
771 ipmi_data_len_t data_len)
772{
773 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
774 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
775 get_sdr::SensorDataEntityRecord record{};
776 auto dataLength = 0;
777
778 auto entity = entities.begin();
779 uint8_t entityRecordID;
780 auto recordID = get_sdr::request::get_record_id(req);
781
782 entityRecordID = recordID - ENTITY_RECORD_ID_START;
783 entity = entities.find(entityRecordID);
784 if (entity == entities.end())
785 {
786 return IPMI_CC_SENSOR_INVALID;
787 }
788
789 /* Header */
790 get_sdr::header::set_record_id(recordID, &(record.header));
791 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
792 record.header.record_type = get_sdr::SENSOR_DATA_ENTITY_RECORD;
793 record.header.record_length = sizeof(record.key) + sizeof(record.body);
794
795 /* Key */
796 record.key.containerEntityId = entity->second.containerEntityId;
797 record.key.containerEntityInstance = entity->second.containerEntityInstance;
798 get_sdr::key::set_flags(entity->second.isList, entity->second.isLinked,
799 &(record.key));
800 record.key.entityId1 = entity->second.containedEntities[0].first;
801 record.key.entityInstance1 = entity->second.containedEntities[0].second;
802
803 /* Body */
804 record.body.entityId2 = entity->second.containedEntities[1].first;
805 record.body.entityInstance2 = entity->second.containedEntities[1].second;
806 record.body.entityId3 = entity->second.containedEntities[2].first;
807 record.body.entityInstance3 = entity->second.containedEntities[2].second;
808 record.body.entityId4 = entity->second.containedEntities[3].first;
809 record.body.entityInstance4 = entity->second.containedEntities[3].second;
810
811 if (++entity == entities.end())
812 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700813 get_sdr::response::set_next_record_id(END_OF_RECORD,
814 resp); // last record
Ratan Guptae0cc8552018-01-22 14:23:04 +0530815 }
816 else
817 {
818 get_sdr::response::set_next_record_id(
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800819 (ENTITY_RECORD_ID_START + entity->first), resp);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530820 }
821
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700822 // Check for invalid offset size
823 if (req->offset > sizeof(record))
Ratan Guptae0cc8552018-01-22 14:23:04 +0530824 {
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700825 return IPMI_CC_PARM_OUT_OF_RANGE;
Ratan Guptae0cc8552018-01-22 14:23:04 +0530826 }
827
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700828 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
829 sizeof(record) - req->offset);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530830
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700831 std::memcpy(resp->record_data,
Jason M. Bills1cd85962018-10-05 12:04:01 -0700832 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530833
834 *data_len = dataLength;
835 *data_len += 2; // additional 2 bytes for next record ID
836
837 return IPMI_CC_OK;
838}
839
Emily Shafferbbef71c2017-05-08 16:36:17 -0700840ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
841 ipmi_request_t request, ipmi_response_t response,
842 ipmi_data_len_t data_len, ipmi_context_t context)
843{
844 ipmi_ret_t ret = IPMI_CC_OK;
Patrick Venture0b02be92018-08-31 11:55:55 -0700845 get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request;
846 get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700847 get_sdr::SensorDataFullRecord record = {0};
848 if (req != NULL)
849 {
850 // Note: we use an iterator so we can provide the next ID at the end of
851 // the call.
852 auto sensor = sensors.begin();
Ratan Guptae0cc8552018-01-22 14:23:04 +0530853 auto recordID = get_sdr::request::get_record_id(req);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700854
855 // At the beginning of a scan, the host side will send us id=0.
Ratan Guptae0cc8552018-01-22 14:23:04 +0530856 if (recordID != 0)
Emily Shafferbbef71c2017-05-08 16:36:17 -0700857 {
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800858 // recordID 0 to 255 means it is a FULL record.
859 // recordID 256 to 511 means it is a FRU record.
860 // recordID greater then 511 means it is a Entity Association
861 // record. Currently we are supporting three record types: FULL
862 // record, FRU record and Enttiy Association record.
863 if (recordID >= ENTITY_RECORD_ID_START)
864 {
865 return ipmi_entity_get_sdr(request, response, data_len);
866 }
867 else if (recordID >= FRU_RECORD_ID_START &&
868 recordID < ENTITY_RECORD_ID_START)
Ratan Guptae0cc8552018-01-22 14:23:04 +0530869 {
870 return ipmi_fru_get_sdr(request, response, data_len);
871 }
872 else
873 {
874 sensor = sensors.find(recordID);
875 if (sensor == sensors.end())
876 {
877 return IPMI_CC_SENSOR_INVALID;
878 }
Emily Shafferbbef71c2017-05-08 16:36:17 -0700879 }
880 }
881
882 uint8_t sensor_id = sensor->first;
883
884 /* Header */
885 get_sdr::header::set_record_id(sensor_id, &(record.header));
886 record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1
887 record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD;
888 record.header.record_length = sizeof(get_sdr::SensorDataFullRecord);
889
890 /* Key */
Tom Joseph96423912018-01-25 00:14:34 +0530891 get_sdr::key::set_owner_id_bmc(&(record.key));
Emily Shafferbbef71c2017-05-08 16:36:17 -0700892 record.key.sensor_number = sensor_id;
893
894 /* Body */
Tom Joseph96423912018-01-25 00:14:34 +0530895 record.body.entity_id = sensor->second.entityType;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700896 record.body.sensor_type = sensor->second.sensorType;
897 record.body.event_reading_type = sensor->second.sensorReadingType;
Tom Joseph96423912018-01-25 00:14:34 +0530898 record.body.entity_instance = sensor->second.instance;
Jaghathiswari Rankappagounder Natarajan0780df12019-02-06 15:29:24 -0800899 if (ipmi::sensor::Mutability::Write ==
900 (sensor->second.mutability & ipmi::sensor::Mutability::Write))
901 {
902 get_sdr::body::init_settable_state(true, &(record.body));
903 }
Emily Shafferbbef71c2017-05-08 16:36:17 -0700904
905 // Set the type-specific details given the DBus interface
906 ret = populate_record_from_dbus(&(record.body), &(sensor->second),
907 data_len);
908
909 if (++sensor == sensors.end())
910 {
Ratan Guptae0cc8552018-01-22 14:23:04 +0530911 // we have reached till end of sensor, so assign the next record id
912 // to 256(Max Sensor ID = 255) + FRU ID(may start with 0).
Patrick Venture0b02be92018-08-31 11:55:55 -0700913 auto next_record_id =
914 (frus.size()) ? frus.begin()->first + FRU_RECORD_ID_START
915 : END_OF_RECORD;
Ratan Guptae0cc8552018-01-22 14:23:04 +0530916
917 get_sdr::response::set_next_record_id(next_record_id, resp);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700918 }
919 else
920 {
921 get_sdr::response::set_next_record_id(sensor->first, resp);
922 }
923
Emily Shaffer6c9ee512018-09-27 11:04:36 -0700924 if (req->offset > sizeof(record))
925 {
926 return IPMI_CC_PARM_OUT_OF_RANGE;
927 }
928
929 // data_len will ultimately be the size of the record, plus
930 // the size of the next record ID:
931 *data_len = std::min(static_cast<size_t>(req->bytes_to_read),
932 sizeof(record) - req->offset);
933
934 std::memcpy(resp->record_data,
935 reinterpret_cast<uint8_t*>(&record) + req->offset,
936 *data_len);
937
938 // data_len should include the LSB and MSB:
Jason M. Bills1cd85962018-10-05 12:04:01 -0700939 *data_len +=
940 sizeof(resp->next_record_id_lsb) + sizeof(resp->next_record_id_msb);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700941 }
942
943 return ret;
944}
945
Jia, Chunhui3342a8e2018-12-29 13:32:26 +0800946static bool isFromSystemChannel()
947{
948 // TODO we could not figure out where the request is from based on IPMI
949 // command handler parameters. because of it, we can not differentiate
950 // request from SMS/SMM or IPMB channel
951 return true;
952}
953
954ipmi_ret_t ipmicmdPlatformEvent(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
955 ipmi_request_t request,
956 ipmi_response_t response,
957 ipmi_data_len_t dataLen, ipmi_context_t context)
958{
959 uint16_t generatorID;
960 size_t count;
961 bool assert = true;
962 std::string sensorPath;
963 size_t paraLen = *dataLen;
964 PlatformEventRequest* req;
965 *dataLen = 0;
966
967 if ((paraLen < selSystemEventSizeWith1Bytes) ||
968 (paraLen > selSystemEventSizeWith3Bytes))
969 {
970 return IPMI_CC_REQ_DATA_LEN_INVALID;
971 }
972
973 if (isFromSystemChannel())
974 { // first byte for SYSTEM Interface is Generator ID
975 // +1 to get common struct
976 req = reinterpret_cast<PlatformEventRequest*>((uint8_t*)request + 1);
977 // Capture the generator ID
978 generatorID = *reinterpret_cast<uint8_t*>(request);
979 // Platform Event usually comes from other firmware, like BIOS.
980 // Unlike BMC sensor, it does not have BMC DBUS sensor path.
981 sensorPath = "System";
982 }
983 else
984 {
985 req = reinterpret_cast<PlatformEventRequest*>(request);
986 // TODO GenratorID for IPMB is combination of RqSA and RqLUN
987 generatorID = 0xff;
988 sensorPath = "IPMB";
989 }
990 // Content of event data field depends on sensor class.
991 // When data0 bit[5:4] is non-zero, valid data counts is 3.
992 // When data0 bit[7:6] is non-zero, valid data counts is 2.
993 if (((req->data[0] & byte3EnableMask) != 0 &&
994 paraLen < selSystemEventSizeWith3Bytes) ||
995 ((req->data[0] & byte2EnableMask) != 0 &&
996 paraLen < selSystemEventSizeWith2Bytes))
997 {
998 return IPMI_CC_REQ_DATA_LEN_INVALID;
999 }
1000
1001 // Count bytes of Event Data
1002 if ((req->data[0] & byte3EnableMask) != 0)
1003 {
1004 count = 3;
1005 }
1006 else if ((req->data[0] & byte2EnableMask) != 0)
1007 {
1008 count = 2;
1009 }
1010 else
1011 {
1012 count = 1;
1013 }
1014 assert = req->eventDirectionType & directionMask ? false : true;
1015 std::vector<uint8_t> eventData(req->data, req->data + count);
1016
1017 sdbusplus::bus::bus dbus(bus);
1018 std::string service =
1019 ipmi::getService(dbus, ipmiSELAddInterface, ipmiSELPath);
1020 sdbusplus::message::message writeSEL = dbus.new_method_call(
1021 service.c_str(), ipmiSELPath, ipmiSELAddInterface, "IpmiSelAdd");
1022 writeSEL.append(ipmiSELAddMessage, sensorPath, eventData, assert,
1023 generatorID);
1024 try
1025 {
1026 dbus.call(writeSEL);
1027 }
1028 catch (sdbusplus::exception_t& e)
1029 {
1030 phosphor::logging::log<phosphor::logging::level::ERR>(e.what());
1031 return IPMI_CC_UNSPECIFIED_ERROR;
1032 }
1033 return IPMI_CC_OK;
1034}
1035
Chris Austenac4604a2015-10-13 12:43:27 -05001036void register_netfn_sen_functions()
1037{
Tom05732372016-09-06 17:21:23 +05301038 // <Wildcard Command>
Patrick Venture0b02be92018-08-31 11:55:55 -07001039 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_WILDCARD, nullptr,
1040 ipmi_sen_wildcard, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -05001041
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001042 // <Platform Event Message>
1043 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_PLATFORM_EVENT, nullptr,
1044 ipmicmdPlatformEvent, PRIVILEGE_OPERATOR);
Tom05732372016-09-06 17:21:23 +05301045 // <Get Sensor Type>
Patrick Venture0b02be92018-08-31 11:55:55 -07001046 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_TYPE, nullptr,
1047 ipmi_sen_get_sensor_type, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -05001048
Tom05732372016-09-06 17:21:23 +05301049 // <Set Sensor Reading and Event Status>
Patrick Venture0b02be92018-08-31 11:55:55 -07001050 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_SET_SENSOR, nullptr,
1051 ipmi_sen_set_sensor, PRIVILEGE_OPERATOR);
Chris Austen8a45e7c2015-10-15 00:31:46 -05001052
Tom05732372016-09-06 17:21:23 +05301053 // <Get Sensor Reading>
Patrick Venture0b02be92018-08-31 11:55:55 -07001054 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_READING, nullptr,
1055 ipmi_sen_get_sensor_reading, PRIVILEGE_USER);
Emily Shaffera344afc2017-04-13 15:09:39 -07001056
Tom Joseph5ca50952018-02-22 00:33:38 +05301057 // <Reserve Device SDR Repository>
1058 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_RESERVE_DEVICE_SDR_REPO,
Patrick Venture0b02be92018-08-31 11:55:55 -07001059 nullptr, ipmi_sen_reserve_sdr, PRIVILEGE_USER);
Chris Austen10ccc0f2015-12-10 18:27:04 -06001060
Tom Joseph5ca50952018-02-22 00:33:38 +05301061 // <Get Device SDR Info>
Patrick Venture0b02be92018-08-31 11:55:55 -07001062 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR_INFO, nullptr,
1063 ipmi_sen_get_sdr_info, PRIVILEGE_USER);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001064
Tom Joseph5ca50952018-02-22 00:33:38 +05301065 // <Get Device SDR>
Patrick Venture0b02be92018-08-31 11:55:55 -07001066 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr,
1067 ipmi_sen_get_sdr, PRIVILEGE_USER);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001068
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001069 // <Get Sensor Thresholds>
1070 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_THRESHOLDS,
1071 nullptr, ipmi_sen_get_sensor_thresholds,
1072 PRIVILEGE_USER);
1073
Chris Austenac4604a2015-10-13 12:43:27 -05001074 return;
1075}