blob: bda7fdad1dc9996a02ed6d52cfb7c616c70b44e3 [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
Patrick Venture0b02be92018-08-31 11:55:55 -070082struct sensorreadingresp_t
83{
Chris Austen10ccc0f2015-12-10 18:27:04 -060084 uint8_t value;
85 uint8_t operation;
86 uint8_t indication[2];
Patrick Venture0b02be92018-08-31 11:55:55 -070087} __attribute__((packed));
Chris Austenac4604a2015-10-13 12:43:27 -050088
Patrick Venture0b02be92018-08-31 11:55:55 -070089int get_bus_for_path(const char* path, char** busname)
90{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070091 return mapper_get_service(bus, path, busname);
92}
Tomd700e762016-09-20 18:24:13 +053093
Emily Shaffer2ae09b92017-04-05 15:09:41 -070094// Use a lookup table to find the interface name of a specific sensor
95// This will be used until an alternative is found. this is the first
96// step for mapping IPMI
Patrick Venture0b02be92018-08-31 11:55:55 -070097int find_openbmc_path(uint8_t num, dbus_interface_t* interface)
98{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070099 int rc;
100
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700101 const auto& sensor_it = ipmi::sensor::sensors.find(num);
102 if (sensor_it == ipmi::sensor::sensors.end())
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700103 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -0500104 // The sensor map does not contain the sensor requested
105 return -EINVAL;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700106 }
107
108 const auto& info = sensor_it->second;
109
Patrick Williams8451edf2017-06-13 09:01:06 -0500110 char* busname = nullptr;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700111 rc = get_bus_for_path(info.sensorPath.c_str(), &busname);
Patrick Venture0b02be92018-08-31 11:55:55 -0700112 if (rc < 0)
113 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700114 std::fprintf(stderr, "Failed to get %s busname: %s\n",
115 info.sensorPath.c_str(), busname);
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700116 goto final;
117 }
118
119 interface->sensortype = info.sensorType;
120 strcpy(interface->bus, busname);
121 strcpy(interface->path, info.sensorPath.c_str());
122 // Take the interface name from the beginning of the DbusInterfaceMap. This
123 // works for the Value interface but may not suffice for more complex
124 // sensors.
125 // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103
Patrick Venture0b02be92018-08-31 11:55:55 -0700126 strcpy(interface->interface,
127 info.propertyInterfaces.begin()->first.c_str());
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700128 interface->sensornumber = num;
129
130final:
131 free(busname);
132 return rc;
133}
134
Tomd700e762016-09-20 18:24:13 +0530135/////////////////////////////////////////////////////////////////////
136//
137// Routines used by ipmi commands wanting to interact on the dbus
138//
139/////////////////////////////////////////////////////////////////////
Patrick Venture0b02be92018-08-31 11:55:55 -0700140int set_sensor_dbus_state_s(uint8_t number, const char* method,
141 const char* value)
142{
Tomd700e762016-09-20 18:24:13 +0530143
144 dbus_interface_t a;
145 int r;
146 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700147 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530148
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700149 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530150
Patrick Venture0b02be92018-08-31 11:55:55 -0700151 if (r < 0)
152 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700153 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530154 return 0;
155 }
156
Patrick Venture0b02be92018-08-31 11:55:55 -0700157 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
158 method);
159 if (r < 0)
160 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700161 std::fprintf(stderr, "Failed to create a method call: %s",
162 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530163 goto final;
164 }
165
166 r = sd_bus_message_append(m, "v", "s", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700167 if (r < 0)
168 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700169 std::fprintf(stderr, "Failed to create a input parameter: %s",
170 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530171 goto final;
172 }
173
Tomd700e762016-09-20 18:24:13 +0530174 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700175 if (r < 0)
176 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700177 std::fprintf(stderr, "Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530178 }
179
180final:
181 sd_bus_error_free(&error);
182 m = sd_bus_message_unref(m);
183
184 return 0;
185}
Patrick Venture0b02be92018-08-31 11:55:55 -0700186int set_sensor_dbus_state_y(uint8_t number, const char* method,
187 const uint8_t value)
188{
Tomd700e762016-09-20 18:24:13 +0530189
190 dbus_interface_t a;
191 int r;
192 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700193 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530194
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700195 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530196
Patrick Venture0b02be92018-08-31 11:55:55 -0700197 if (r < 0)
198 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700199 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530200 return 0;
201 }
202
Patrick Venture0b02be92018-08-31 11:55:55 -0700203 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
204 method);
205 if (r < 0)
206 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700207 std::fprintf(stderr, "Failed to create a method call: %s",
208 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530209 goto final;
210 }
211
212 r = sd_bus_message_append(m, "v", "i", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700213 if (r < 0)
214 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700215 std::fprintf(stderr, "Failed to create a input parameter: %s",
216 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530217 goto final;
218 }
219
Tomd700e762016-09-20 18:24:13 +0530220 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700221 if (r < 0)
222 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700223 std::fprintf(stderr, "12 Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530224 }
225
226final:
227 sd_bus_error_free(&error);
228 m = sd_bus_message_unref(m);
229
230 return 0;
231}
232
Patrick Venture0b02be92018-08-31 11:55:55 -0700233uint8_t dbus_to_sensor_type(char* p)
234{
Chris Austenac4604a2015-10-13 12:43:27 -0500235
Patrick Venture0b02be92018-08-31 11:55:55 -0700236 sensorTypemap_t* s = g_SensorTypeMap;
237 char r = 0;
238 while (s->number != 0xFF)
239 {
240 if (!strcmp(s->dbusname, p))
241 {
Tom Joseph558184e2017-09-01 13:45:05 +0530242 r = s->typecode;
Patrick Venture0b02be92018-08-31 11:55:55 -0700243 break;
Chris Austenac4604a2015-10-13 12:43:27 -0500244 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500245 s++;
Chris Austenac4604a2015-10-13 12:43:27 -0500246 }
247
Chris Austen0012e9b2015-10-22 01:37:46 -0500248 if (s->number == 0xFF)
249 printf("Failed to find Sensor Type %s\n", p);
Chris Austenac4604a2015-10-13 12:43:27 -0500250
Chris Austen0012e9b2015-10-22 01:37:46 -0500251 return r;
Chris Austenac4604a2015-10-13 12:43:27 -0500252}
253
Patrick Venture0b02be92018-08-31 11:55:55 -0700254uint8_t get_type_from_interface(dbus_interface_t dbus_if)
255{
Chris Austen0012e9b2015-10-22 01:37:46 -0500256
Brad Bishop56003452016-10-05 21:49:19 -0400257 uint8_t type;
Chris Austen0012e9b2015-10-22 01:37:46 -0500258
Chris Austen0012e9b2015-10-22 01:37:46 -0500259 // This is where sensors that do not exist in dbus but do
260 // exist in the host code stop. This should indicate it
261 // is not a supported sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700262 if (dbus_if.interface[0] == 0)
263 {
264 return 0;
265 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500266
Emily Shaffer71174412017-04-05 15:10:40 -0700267 // Fetch type from interface itself.
268 if (dbus_if.sensortype != 0)
269 {
270 type = dbus_if.sensortype;
Patrick Venture0b02be92018-08-31 11:55:55 -0700271 }
272 else
273 {
Chris Austen0012e9b2015-10-22 01:37:46 -0500274 // Non InventoryItems
Patrick Venture4491a462018-10-13 13:00:42 -0700275 char* p = strrchr(dbus_if.path, '/');
Patrick Venture0b02be92018-08-31 11:55:55 -0700276 type = dbus_to_sensor_type(p + 1);
Chris Austen0012e9b2015-10-22 01:37:46 -0500277 }
278
Brad Bishop56003452016-10-05 21:49:19 -0400279 return type;
Patrick Venture0b02be92018-08-31 11:55:55 -0700280}
Chris Austen0012e9b2015-10-22 01:37:46 -0500281
Emily Shaffer391f3302017-04-03 10:27:08 -0700282// Replaces find_sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700283uint8_t find_type_for_sensor_number(uint8_t num)
284{
Emily Shaffer391f3302017-04-03 10:27:08 -0700285 int r;
286 dbus_interface_t dbus_if;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700287 r = find_openbmc_path(num, &dbus_if);
Patrick Venture0b02be92018-08-31 11:55:55 -0700288 if (r < 0)
289 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700290 std::fprintf(stderr, "Could not find sensor %d\n", num);
Lei YU91875f72018-04-03 15:14:49 +0800291 return 0;
Emily Shaffer391f3302017-04-03 10:27:08 -0700292 }
293 return get_type_from_interface(dbus_if);
294}
295
Chris Austen0012e9b2015-10-22 01:37:46 -0500296ipmi_ret_t ipmi_sen_get_sensor_type(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700297 ipmi_request_t request,
298 ipmi_response_t response,
299 ipmi_data_len_t data_len,
300 ipmi_context_t context)
Chris Austenac4604a2015-10-13 12:43:27 -0500301{
Patrick Ventured99148b2018-10-13 10:06:13 -0700302 auto reqptr = static_cast<sensor_data_t*>(request);
Chris Austenac4604a2015-10-13 12:43:27 -0500303 ipmi_ret_t rc = IPMI_CC_OK;
304
Patrick Venture0b02be92018-08-31 11:55:55 -0700305 printf("IPMI GET_SENSOR_TYPE [0x%02X]\n", reqptr->sennum);
Chris Austenac4604a2015-10-13 12:43:27 -0500306
307 // TODO Not sure what the System-event-sensor is suppose to return
308 // need to ask Hostboot team
Patrick Venture0b02be92018-08-31 11:55:55 -0700309 unsigned char buf[] = {0x00, 0x6F};
Chris Austenac4604a2015-10-13 12:43:27 -0500310
Emily Shaffer391f3302017-04-03 10:27:08 -0700311 buf[0] = find_type_for_sensor_number(reqptr->sennum);
Chris Austen0012e9b2015-10-22 01:37:46 -0500312
313 // HACK UNTIL Dbus gets updated or we find a better way
Patrick Venture0b02be92018-08-31 11:55:55 -0700314 if (buf[0] == 0)
315 {
Chris Austen800ba712015-12-03 15:31:00 -0600316 rc = IPMI_CC_SENSOR_INVALID;
Chris Austen0012e9b2015-10-22 01:37:46 -0500317 }
318
Chris Austenac4604a2015-10-13 12:43:27 -0500319 *data_len = sizeof(buf);
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700320 std::memcpy(response, &buf, *data_len);
Chris Austenac4604a2015-10-13 12:43:27 -0500321
Chris Austenac4604a2015-10-13 12:43:27 -0500322 return rc;
323}
324
Patrick Venture0b02be92018-08-31 11:55:55 -0700325const std::set<std::string> analogSensorInterfaces = {
Emily Shaffercc941e12017-06-14 13:06:26 -0700326 "xyz.openbmc_project.Sensor.Value",
Patrick Venturee9a64052017-08-18 19:17:27 -0700327 "xyz.openbmc_project.Control.FanPwm",
Emily Shaffercc941e12017-06-14 13:06:26 -0700328};
329
330bool isAnalogSensor(const std::string& interface)
331{
332 return (analogSensorInterfaces.count(interface));
333}
334
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000335/**
336@brief This command is used to set sensorReading.
337
338@param
339 - sensorNumber
340 - operation
341 - reading
342 - assertOffset0_7
343 - assertOffset8_14
344 - deassertOffset0_7
345 - deassertOffset8_14
346 - eventData1
347 - eventData2
348 - eventData3
349
350@return completion code on success.
351**/
352
353ipmi::RspType<> ipmiSetSensorReading(uint8_t sensorNumber, uint8_t operation,
354 uint8_t reading, uint8_t assertOffset0_7,
355 uint8_t assertOffset8_14,
356 uint8_t deassertOffset0_7,
357 uint8_t deassertOffset8_14,
358 uint8_t eventData1, uint8_t eventData2,
359 uint8_t eventData3)
Tom Josephbe703f72017-03-09 12:34:35 +0530360{
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000361 log<level::DEBUG>("IPMI SET_SENSOR",
362 entry("SENSOR_NUM=0x%02x", sensorNumber));
363
364 ipmi::sensor::SetSensorReadingReq cmdData;
365
366 cmdData.number = sensorNumber;
367 cmdData.operation = operation;
368 cmdData.reading = reading;
369 cmdData.assertOffset0_7 = assertOffset0_7;
370 cmdData.assertOffset8_14 = assertOffset8_14;
371 cmdData.deassertOffset0_7 = deassertOffset0_7;
372 cmdData.deassertOffset8_14 = deassertOffset8_14;
373 cmdData.eventData1 = eventData1;
374 cmdData.eventData2 = eventData2;
375 cmdData.eventData3 = eventData3;
Tom Josephbe703f72017-03-09 12:34:35 +0530376
377 // Check if the Sensor Number is present
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700378 const auto iter = ipmi::sensor::sensors.find(sensorNumber);
379 if (iter == ipmi::sensor::sensors.end())
Tom Josephbe703f72017-03-09 12:34:35 +0530380 {
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000381 updateSensorRecordFromSSRAESC(&sensorNumber);
382 return ipmi::responseSuccess();
Tom Josephbe703f72017-03-09 12:34:35 +0530383 }
384
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500385 try
386 {
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500387 if (ipmi::sensor::Mutability::Write !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700388 (iter->second.mutability & ipmi::sensor::Mutability::Write))
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500389 {
390 log<level::ERR>("Sensor Set operation is not allowed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000391 entry("SENSOR_NUM=%d", sensorNumber));
392 return ipmi::responseIllegalCommand();
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500393 }
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000394 auto ipmiRC = iter->second.updateFunc(cmdData, iter->second);
395 return ipmi::response(ipmiRC);
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500396 }
397 catch (InternalFailure& e)
398 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700399 log<level::ERR>("Set sensor failed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000400 entry("SENSOR_NUM=%d", sensorNumber));
Patrick Venture0b02be92018-08-31 11:55:55 -0700401 commit<InternalFailure>();
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000402 return ipmi::responseUnspecifiedError();
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500403 }
Tom Joseph82024322017-09-28 20:07:29 +0530404 catch (const std::runtime_error& e)
405 {
406 log<level::ERR>(e.what());
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000407 return ipmi::responseUnspecifiedError();
Tom Joseph82024322017-09-28 20:07:29 +0530408 }
Chris Austenac4604a2015-10-13 12:43:27 -0500409}
410
Tom Joseph3ee668f2018-03-02 19:49:17 +0530411ipmi_ret_t ipmi_sen_get_sensor_reading(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700412 ipmi_request_t request,
413 ipmi_response_t response,
414 ipmi_data_len_t data_len,
415 ipmi_context_t context)
Tom Joseph3ee668f2018-03-02 19:49:17 +0530416{
Patrick Ventured99148b2018-10-13 10:06:13 -0700417 auto reqptr = static_cast<sensor_data_t*>(request);
418 auto resp = static_cast<sensorreadingresp_t*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700419 ipmi::sensor::GetSensorResponse getResponse{};
Tom Joseph3ee668f2018-03-02 19:49:17 +0530420 static constexpr auto scanningEnabledBit = 6;
421
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700422 const auto iter = ipmi::sensor::sensors.find(reqptr->sennum);
423 if (iter == ipmi::sensor::sensors.end())
Tom Joseph3ee668f2018-03-02 19:49:17 +0530424 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -0500425 return IPMI_CC_SENSOR_INVALID;
Tom Joseph3ee668f2018-03-02 19:49:17 +0530426 }
427 if (ipmi::sensor::Mutability::Read !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700428 (iter->second.mutability & ipmi::sensor::Mutability::Read))
Tom Joseph3ee668f2018-03-02 19:49:17 +0530429 {
Jayanth Othayoth6ccf8812018-04-05 22:58:48 -0500430 return IPMI_CC_ILLEGAL_COMMAND;
Tom Joseph3ee668f2018-03-02 19:49:17 +0530431 }
432
433 try
434 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700435 getResponse = iter->second.getFunc(iter->second);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530436 *data_len = getResponse.size();
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700437 std::memcpy(resp, getResponse.data(), *data_len);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530438 resp->operation = 1 << scanningEnabledBit;
439 return IPMI_CC_OK;
440 }
Brandon Kim9cf85622019-06-19 12:05:08 -0700441#ifdef UPDATE_FUNCTIONAL_ON_FAIL
442 catch (const SensorFunctionalError& e)
443 {
444 return IPMI_CC_RESPONSE_ERROR;
445 }
446#endif
Tom Joseph3ee668f2018-03-02 19:49:17 +0530447 catch (const std::exception& e)
448 {
449 *data_len = getResponse.size();
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700450 std::memcpy(resp, getResponse.data(), *data_len);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530451 return IPMI_CC_OK;
452 }
453}
454
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530455void getSensorThresholds(uint8_t sensorNum,
456 get_sdr::GetSensorThresholdsResponse* response)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600457{
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530458 constexpr auto warningThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600459 "xyz.openbmc_project.Sensor.Threshold.Warning";
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530460 constexpr auto criticalThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600461 "xyz.openbmc_project.Sensor.Threshold.Critical";
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600462
463 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
464
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700465 const auto iter = ipmi::sensor::sensors.find(sensorNum);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530466 const auto info = iter->second;
467
468 auto service = ipmi::getService(bus, info.sensorInterface, info.sensorPath);
469
Patrick Venture0b02be92018-08-31 11:55:55 -0700470 auto warnThresholds = ipmi::getAllDbusProperties(
471 bus, service, info.sensorPath, warningThreshIntf);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530472
Vernon Maueryf442e112019-04-09 11:44:36 -0700473 double warnLow = std::visit(ipmi::VariantToDoubleVisitor(),
474 warnThresholds["WarningLow"]);
475 double warnHigh = std::visit(ipmi::VariantToDoubleVisitor(),
476 warnThresholds["WarningHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530477
478 if (warnLow != 0)
479 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700480 warnLow *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700481 response->lowerNonCritical = static_cast<uint8_t>(
482 (warnLow - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530483 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700484 ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530485 }
486
487 if (warnHigh != 0)
488 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700489 warnHigh *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700490 response->upperNonCritical = static_cast<uint8_t>(
491 (warnHigh - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530492 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700493 ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530494 }
495
Patrick Venture0b02be92018-08-31 11:55:55 -0700496 auto critThresholds = ipmi::getAllDbusProperties(
497 bus, service, info.sensorPath, criticalThreshIntf);
Vernon Maueryf442e112019-04-09 11:44:36 -0700498 double critLow = std::visit(ipmi::VariantToDoubleVisitor(),
499 critThresholds["CriticalLow"]);
500 double critHigh = std::visit(ipmi::VariantToDoubleVisitor(),
501 critThresholds["CriticalHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530502
503 if (critLow != 0)
504 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700505 critLow *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700506 response->lowerCritical = static_cast<uint8_t>(
507 (critLow - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530508 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700509 ipmi::sensor::ThresholdMask::CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530510 }
511
512 if (critHigh != 0)
513 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700514 critHigh *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700515 response->upperCritical = static_cast<uint8_t>(
516 (critHigh - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530517 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700518 ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530519 }
520}
521
522ipmi_ret_t ipmi_sen_get_sensor_thresholds(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700523 ipmi_request_t request,
524 ipmi_response_t response,
525 ipmi_data_len_t data_len,
526 ipmi_context_t context)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530527{
528 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
529
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600530 if (*data_len != sizeof(uint8_t))
531 {
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530532 *data_len = 0;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600533 return IPMI_CC_REQ_DATA_LEN_INVALID;
534 }
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600535
Patrick Venture0b02be92018-08-31 11:55:55 -0700536 auto sensorNum = *(reinterpret_cast<const uint8_t*>(request));
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530537 *data_len = 0;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600538
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700539 const auto iter = ipmi::sensor::sensors.find(sensorNum);
540 if (iter == ipmi::sensor::sensors.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600541 {
542 return IPMI_CC_SENSOR_INVALID;
543 }
544
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530545 const auto info = iter->second;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600546
Patrick Venture0b02be92018-08-31 11:55:55 -0700547 // Proceed only if the sensor value interface is implemented.
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530548 if (info.propertyInterfaces.find(valueInterface) ==
549 info.propertyInterfaces.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600550 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700551 // return with valid mask as 0
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600552 return IPMI_CC_OK;
553 }
554
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530555 auto responseData =
556 reinterpret_cast<get_sdr::GetSensorThresholdsResponse*>(response);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600557
558 try
559 {
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530560 getSensorThresholds(sensorNum, responseData);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600561 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530562 catch (std::exception& e)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600563 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700564 // Mask if the property is not present
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600565 responseData->validMask = 0;
566 }
567
568 *data_len = sizeof(get_sdr::GetSensorThresholdsResponse);
569 return IPMI_CC_OK;
570}
571
Chris Austen0012e9b2015-10-22 01:37:46 -0500572ipmi_ret_t ipmi_sen_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
573 ipmi_request_t request, ipmi_response_t response,
Chris Austenac4604a2015-10-13 12:43:27 -0500574 ipmi_data_len_t data_len, ipmi_context_t context)
575{
Nan Li70aa8d92016-08-29 00:11:10 +0800576 ipmi_ret_t rc = IPMI_CC_INVALID;
Chris Austenac4604a2015-10-13 12:43:27 -0500577
Patrick Venture0b02be92018-08-31 11:55:55 -0700578 printf("IPMI S/E Wildcard Netfn:[0x%X], Cmd:[0x%X]\n", netfn, cmd);
Chris Austenac4604a2015-10-13 12:43:27 -0500579 *data_len = 0;
580
581 return rc;
582}
583
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000584/** @brief implements the get SDR Info command
585 * @param count - Operation
586 *
587 * @returns IPMI completion code plus response data
588 * - sdrCount - sensor/SDR count
589 * - lunsAndDynamicPopulation - static/Dynamic sensor population flag
590 */
591ipmi::RspType<uint8_t, // respcount
592 uint8_t // dynamic population flags
593 >
594 ipmiSensorGetDeviceSdrInfo(std::optional<uint8_t> count)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700595{
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000596 uint8_t sdrCount;
597 // multiple LUNs not supported.
598 constexpr uint8_t lunsAndDynamicPopulation = 1;
599 constexpr uint8_t getSdrCount = 0x01;
600 constexpr uint8_t getSensorCount = 0x00;
601
602 if (count.value_or(0) == getSdrCount)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700603 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000604 // Get SDR count. This returns the total number of SDRs in the device.
Patrick Venture87fd2cd2019-08-19 12:07:18 -0700605 const auto& entityRecords =
606 ipmi::sensor::EntityInfoMapContainer::getContainer()
607 ->getIpmiEntityRecords();
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700608 sdrCount =
609 ipmi::sensor::sensors.size() + frus.size() + entityRecords.size();
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000610 }
611 else if (count.value_or(0) == getSensorCount)
612 {
613 // Get Sensor count. This returns the number of sensors
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700614 sdrCount = ipmi::sensor::sensors.size();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700615 }
616 else
617 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000618 return ipmi::responseInvalidCommandOnLun();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700619 }
620
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000621 return ipmi::responseSuccess(sdrCount, lunsAndDynamicPopulation);
Emily Shafferd06e0e72017-04-05 09:08:57 -0700622}
623
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000624/** @brief implements the reserve SDR command
625 * @returns IPMI completion code plus response data
626 * - reservationID - reservation ID
627 */
628ipmi::RspType<uint16_t> ipmiSensorReserveSdr()
Emily Shaffera344afc2017-04-13 15:09:39 -0700629{
630 // A constant reservation ID is okay until we implement add/remove SDR.
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000631 constexpr uint16_t reservationID = 1;
Emily Shaffera344afc2017-04-13 15:09:39 -0700632
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000633 return ipmi::responseSuccess(reservationID);
Emily Shaffera344afc2017-04-13 15:09:39 -0700634}
Chris Austenac4604a2015-10-13 12:43:27 -0500635
Patrick Venture0b02be92018-08-31 11:55:55 -0700636void setUnitFieldsForObject(const ipmi::sensor::Info* info,
637 get_sdr::SensorDataFullRecordBody* body)
Emily Shaffercc941e12017-06-14 13:06:26 -0700638{
Tom Josephdc212b22018-02-16 09:59:57 +0530639 namespace server = sdbusplus::xyz::openbmc_project::Sensor::server;
640 try
Emily Shaffercc941e12017-06-14 13:06:26 -0700641 {
Tom Josephdc212b22018-02-16 09:59:57 +0530642 auto unit = server::Value::convertUnitFromString(info->unit);
643 // Unit strings defined in
644 // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml
645 switch (unit)
Emily Shaffercc941e12017-06-14 13:06:26 -0700646 {
Tom Josephdc212b22018-02-16 09:59:57 +0530647 case server::Value::Unit::DegreesC:
648 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C;
649 break;
650 case server::Value::Unit::RPMS:
Kirill Pakhomov812e44c2018-10-22 16:25:35 +0300651 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_RPM;
Tom Josephdc212b22018-02-16 09:59:57 +0530652 break;
653 case server::Value::Unit::Volts:
654 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS;
655 break;
656 case server::Value::Unit::Meters:
657 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS;
658 break;
659 case server::Value::Unit::Amperes:
660 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES;
661 break;
662 case server::Value::Unit::Joules:
663 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES;
664 break;
665 case server::Value::Unit::Watts:
666 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS;
667 break;
668 default:
669 // Cannot be hit.
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700670 std::fprintf(stderr, "Unknown value unit type: = %s\n",
671 info->unit.c_str());
Emily Shaffercc941e12017-06-14 13:06:26 -0700672 }
673 }
Patrick Venture64678b82018-10-13 13:11:32 -0700674 catch (const sdbusplus::exception::InvalidEnumString& e)
Emily Shaffercc941e12017-06-14 13:06:26 -0700675 {
Tom Josephdc212b22018-02-16 09:59:57 +0530676 log<level::WARNING>("Warning: no unit provided for sensor!");
Emily Shaffercc941e12017-06-14 13:06:26 -0700677 }
Emily Shaffercc941e12017-06-14 13:06:26 -0700678}
679
Patrick Venture0b02be92018-08-31 11:55:55 -0700680ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body,
681 const ipmi::sensor::Info* info,
Emily Shafferbbef71c2017-05-08 16:36:17 -0700682 ipmi_data_len_t data_len)
683{
684 /* Functional sensor case */
Emily Shaffercc941e12017-06-14 13:06:26 -0700685 if (isAnalogSensor(info->propertyInterfaces.begin()->first))
Emily Shafferbbef71c2017-05-08 16:36:17 -0700686 {
Emily Shafferbbef71c2017-05-08 16:36:17 -0700687
688 body->sensor_units_1 = 0; // unsigned, no rate, no modifier, not a %
689
690 /* Unit info */
Tom Josephdc212b22018-02-16 09:59:57 +0530691 setUnitFieldsForObject(info, body);
Emily Shaffer10f49592017-05-10 12:01:10 -0700692
693 get_sdr::body::set_b(info->coefficientB, body);
694 get_sdr::body::set_m(info->coefficientM, body);
695 get_sdr::body::set_b_exp(info->exponentB, body);
Tom Josephdc212b22018-02-16 09:59:57 +0530696 get_sdr::body::set_r_exp(info->exponentR, body);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700697
Emily Shafferbbef71c2017-05-08 16:36:17 -0700698 get_sdr::body::set_id_type(0b00, body); // 00 = unicode
Emily Shafferbbef71c2017-05-08 16:36:17 -0700699 }
700
Tom Joseph96423912018-01-25 00:14:34 +0530701 /* ID string */
702 auto id_string = info->sensorNameFunc(*info);
703
704 if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH)
705 {
706 get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body);
707 }
708 else
709 {
710 get_sdr::body::set_id_strlen(id_string.length(), body);
711 }
712 strncpy(body->id_string, id_string.c_str(),
713 get_sdr::body::get_id_strlen(body));
714
Emily Shafferbbef71c2017-05-08 16:36:17 -0700715 return IPMI_CC_OK;
716};
717
Ratan Guptae0cc8552018-01-22 14:23:04 +0530718ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response,
719 ipmi_data_len_t data_len)
720{
721 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
722 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700723 get_sdr::SensorDataFruRecord record{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530724 auto dataLength = 0;
725
726 auto fru = frus.begin();
Patrick Venture0b02be92018-08-31 11:55:55 -0700727 uint8_t fruID{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530728 auto recordID = get_sdr::request::get_record_id(req);
729
730 fruID = recordID - FRU_RECORD_ID_START;
731 fru = frus.find(fruID);
732 if (fru == frus.end())
733 {
734 return IPMI_CC_SENSOR_INVALID;
735 }
736
737 /* Header */
738 get_sdr::header::set_record_id(recordID, &(record.header));
739 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
740 record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD;
741 record.header.record_length = sizeof(record.key) + sizeof(record.body);
742
743 /* Key */
744 record.key.fruID = fruID;
745 record.key.accessLun |= IPMI_LOGICAL_FRU;
746 record.key.deviceAddress = BMCSlaveAddress;
747
748 /* Body */
749 record.body.entityID = fru->second[0].entityID;
750 record.body.entityInstance = fru->second[0].entityInstance;
751 record.body.deviceType = fruInventoryDevice;
752 record.body.deviceTypeModifier = IPMIFruInventory;
753
754 /* Device ID string */
Patrick Venture0b02be92018-08-31 11:55:55 -0700755 auto deviceID =
756 fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1,
757 fru->second[0].path.length());
Ratan Guptae0cc8552018-01-22 14:23:04 +0530758
759 if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH)
760 {
761 get_sdr::body::set_device_id_strlen(
Patrick Venture0b02be92018-08-31 11:55:55 -0700762 get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530763 }
764 else
765 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700766 get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530767 }
768
769 strncpy(record.body.deviceID, deviceID.c_str(),
770 get_sdr::body::get_device_id_strlen(&(record.body)));
771
772 if (++fru == frus.end())
773 {
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800774 // we have reached till end of fru, so assign the next record id to
775 // 512(Max fru ID = 511) + Entity Record ID(may start with 0).
Patrick Venture87fd2cd2019-08-19 12:07:18 -0700776 const auto& entityRecords =
777 ipmi::sensor::EntityInfoMapContainer::getContainer()
778 ->getIpmiEntityRecords();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800779 auto next_record_id =
Patrick Venture83a0b842019-07-19 18:37:15 -0700780 (entityRecords.size())
781 ? entityRecords.begin()->first + ENTITY_RECORD_ID_START
782 : END_OF_RECORD;
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800783 get_sdr::response::set_next_record_id(next_record_id, resp);
784 }
785 else
786 {
787 get_sdr::response::set_next_record_id(
788 (FRU_RECORD_ID_START + fru->first), resp);
789 }
790
791 // Check for invalid offset size
792 if (req->offset > sizeof(record))
793 {
794 return IPMI_CC_PARM_OUT_OF_RANGE;
795 }
796
797 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
798 sizeof(record) - req->offset);
799
800 std::memcpy(resp->record_data,
801 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
802
803 *data_len = dataLength;
804 *data_len += 2; // additional 2 bytes for next record ID
805
806 return IPMI_CC_OK;
807}
808
809ipmi_ret_t ipmi_entity_get_sdr(ipmi_request_t request, ipmi_response_t response,
810 ipmi_data_len_t data_len)
811{
812 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
813 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
814 get_sdr::SensorDataEntityRecord record{};
815 auto dataLength = 0;
816
Patrick Venture87fd2cd2019-08-19 12:07:18 -0700817 const auto& entityRecords =
818 ipmi::sensor::EntityInfoMapContainer::getContainer()
819 ->getIpmiEntityRecords();
Patrick Venture83a0b842019-07-19 18:37:15 -0700820 auto entity = entityRecords.begin();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800821 uint8_t entityRecordID;
822 auto recordID = get_sdr::request::get_record_id(req);
823
824 entityRecordID = recordID - ENTITY_RECORD_ID_START;
Patrick Venture83a0b842019-07-19 18:37:15 -0700825 entity = entityRecords.find(entityRecordID);
826 if (entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800827 {
828 return IPMI_CC_SENSOR_INVALID;
829 }
830
831 /* Header */
832 get_sdr::header::set_record_id(recordID, &(record.header));
833 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
834 record.header.record_type = get_sdr::SENSOR_DATA_ENTITY_RECORD;
835 record.header.record_length = sizeof(record.key) + sizeof(record.body);
836
837 /* Key */
838 record.key.containerEntityId = entity->second.containerEntityId;
839 record.key.containerEntityInstance = entity->second.containerEntityInstance;
840 get_sdr::key::set_flags(entity->second.isList, entity->second.isLinked,
841 &(record.key));
842 record.key.entityId1 = entity->second.containedEntities[0].first;
843 record.key.entityInstance1 = entity->second.containedEntities[0].second;
844
845 /* Body */
846 record.body.entityId2 = entity->second.containedEntities[1].first;
847 record.body.entityInstance2 = entity->second.containedEntities[1].second;
848 record.body.entityId3 = entity->second.containedEntities[2].first;
849 record.body.entityInstance3 = entity->second.containedEntities[2].second;
850 record.body.entityId4 = entity->second.containedEntities[3].first;
851 record.body.entityInstance4 = entity->second.containedEntities[3].second;
852
Patrick Venture83a0b842019-07-19 18:37:15 -0700853 if (++entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800854 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700855 get_sdr::response::set_next_record_id(END_OF_RECORD,
856 resp); // last record
Ratan Guptae0cc8552018-01-22 14:23:04 +0530857 }
858 else
859 {
860 get_sdr::response::set_next_record_id(
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800861 (ENTITY_RECORD_ID_START + entity->first), resp);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530862 }
863
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700864 // Check for invalid offset size
865 if (req->offset > sizeof(record))
Ratan Guptae0cc8552018-01-22 14:23:04 +0530866 {
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700867 return IPMI_CC_PARM_OUT_OF_RANGE;
Ratan Guptae0cc8552018-01-22 14:23:04 +0530868 }
869
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700870 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
871 sizeof(record) - req->offset);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530872
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700873 std::memcpy(resp->record_data,
Jason M. Bills1cd85962018-10-05 12:04:01 -0700874 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530875
876 *data_len = dataLength;
877 *data_len += 2; // additional 2 bytes for next record ID
878
879 return IPMI_CC_OK;
880}
881
Emily Shafferbbef71c2017-05-08 16:36:17 -0700882ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
883 ipmi_request_t request, ipmi_response_t response,
884 ipmi_data_len_t data_len, ipmi_context_t context)
885{
886 ipmi_ret_t ret = IPMI_CC_OK;
Patrick Venture0b02be92018-08-31 11:55:55 -0700887 get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request;
888 get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700889 get_sdr::SensorDataFullRecord record = {0};
Patrick Venture38426dd2019-07-30 15:22:29 -0700890
891 // Note: we use an iterator so we can provide the next ID at the end of
892 // the call.
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700893 auto sensor = ipmi::sensor::sensors.begin();
Patrick Venture38426dd2019-07-30 15:22:29 -0700894 auto recordID = get_sdr::request::get_record_id(req);
895
896 // At the beginning of a scan, the host side will send us id=0.
897 if (recordID != 0)
Emily Shafferbbef71c2017-05-08 16:36:17 -0700898 {
Patrick Venture38426dd2019-07-30 15:22:29 -0700899 // recordID 0 to 255 means it is a FULL record.
900 // recordID 256 to 511 means it is a FRU record.
901 // recordID greater then 511 means it is a Entity Association
902 // record. Currently we are supporting three record types: FULL
903 // record, FRU record and Enttiy Association record.
904 if (recordID >= ENTITY_RECORD_ID_START)
Emily Shafferbbef71c2017-05-08 16:36:17 -0700905 {
Patrick Venture38426dd2019-07-30 15:22:29 -0700906 return ipmi_entity_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700907 }
Patrick Venture38426dd2019-07-30 15:22:29 -0700908 else if (recordID >= FRU_RECORD_ID_START &&
909 recordID < ENTITY_RECORD_ID_START)
Jaghathiswari Rankappagounder Natarajan0780df12019-02-06 15:29:24 -0800910 {
Patrick Venture38426dd2019-07-30 15:22:29 -0700911 return ipmi_fru_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700912 }
913 else
914 {
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700915 sensor = ipmi::sensor::sensors.find(recordID);
916 if (sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -0700917 {
918 return IPMI_CC_SENSOR_INVALID;
919 }
Emily Shafferbbef71c2017-05-08 16:36:17 -0700920 }
Emily Shafferbbef71c2017-05-08 16:36:17 -0700921 }
922
Patrick Venture38426dd2019-07-30 15:22:29 -0700923 uint8_t sensor_id = sensor->first;
924
925 /* Header */
926 get_sdr::header::set_record_id(sensor_id, &(record.header));
927 record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1
928 record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD;
929 record.header.record_length = sizeof(get_sdr::SensorDataFullRecord);
930
931 /* Key */
932 get_sdr::key::set_owner_id_bmc(&(record.key));
933 record.key.sensor_number = sensor_id;
934
935 /* Body */
936 record.body.entity_id = sensor->second.entityType;
937 record.body.sensor_type = sensor->second.sensorType;
938 record.body.event_reading_type = sensor->second.sensorReadingType;
939 record.body.entity_instance = sensor->second.instance;
940 if (ipmi::sensor::Mutability::Write ==
941 (sensor->second.mutability & ipmi::sensor::Mutability::Write))
942 {
943 get_sdr::body::init_settable_state(true, &(record.body));
944 }
945
946 // Set the type-specific details given the DBus interface
947 ret =
948 populate_record_from_dbus(&(record.body), &(sensor->second), data_len);
949
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700950 if (++sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -0700951 {
952 // we have reached till end of sensor, so assign the next record id
953 // to 256(Max Sensor ID = 255) + FRU ID(may start with 0).
954 auto next_record_id = (frus.size())
955 ? frus.begin()->first + FRU_RECORD_ID_START
956 : END_OF_RECORD;
957
958 get_sdr::response::set_next_record_id(next_record_id, resp);
959 }
960 else
961 {
962 get_sdr::response::set_next_record_id(sensor->first, resp);
963 }
964
965 if (req->offset > sizeof(record))
966 {
967 return IPMI_CC_PARM_OUT_OF_RANGE;
968 }
969
970 // data_len will ultimately be the size of the record, plus
971 // the size of the next record ID:
972 *data_len = std::min(static_cast<size_t>(req->bytes_to_read),
973 sizeof(record) - req->offset);
974
975 std::memcpy(resp->record_data,
976 reinterpret_cast<uint8_t*>(&record) + req->offset, *data_len);
977
978 // data_len should include the LSB and MSB:
979 *data_len +=
980 sizeof(resp->next_record_id_lsb) + sizeof(resp->next_record_id_msb);
981
Emily Shafferbbef71c2017-05-08 16:36:17 -0700982 return ret;
983}
984
Jia, Chunhui3342a8e2018-12-29 13:32:26 +0800985static bool isFromSystemChannel()
986{
987 // TODO we could not figure out where the request is from based on IPMI
988 // command handler parameters. because of it, we can not differentiate
989 // request from SMS/SMM or IPMB channel
990 return true;
991}
992
993ipmi_ret_t ipmicmdPlatformEvent(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
994 ipmi_request_t request,
995 ipmi_response_t response,
996 ipmi_data_len_t dataLen, ipmi_context_t context)
997{
998 uint16_t generatorID;
999 size_t count;
1000 bool assert = true;
1001 std::string sensorPath;
1002 size_t paraLen = *dataLen;
1003 PlatformEventRequest* req;
1004 *dataLen = 0;
1005
1006 if ((paraLen < selSystemEventSizeWith1Bytes) ||
1007 (paraLen > selSystemEventSizeWith3Bytes))
1008 {
1009 return IPMI_CC_REQ_DATA_LEN_INVALID;
1010 }
1011
1012 if (isFromSystemChannel())
1013 { // first byte for SYSTEM Interface is Generator ID
1014 // +1 to get common struct
1015 req = reinterpret_cast<PlatformEventRequest*>((uint8_t*)request + 1);
1016 // Capture the generator ID
1017 generatorID = *reinterpret_cast<uint8_t*>(request);
1018 // Platform Event usually comes from other firmware, like BIOS.
1019 // Unlike BMC sensor, it does not have BMC DBUS sensor path.
1020 sensorPath = "System";
1021 }
1022 else
1023 {
1024 req = reinterpret_cast<PlatformEventRequest*>(request);
1025 // TODO GenratorID for IPMB is combination of RqSA and RqLUN
1026 generatorID = 0xff;
1027 sensorPath = "IPMB";
1028 }
1029 // Content of event data field depends on sensor class.
1030 // When data0 bit[5:4] is non-zero, valid data counts is 3.
1031 // When data0 bit[7:6] is non-zero, valid data counts is 2.
1032 if (((req->data[0] & byte3EnableMask) != 0 &&
1033 paraLen < selSystemEventSizeWith3Bytes) ||
1034 ((req->data[0] & byte2EnableMask) != 0 &&
1035 paraLen < selSystemEventSizeWith2Bytes))
1036 {
1037 return IPMI_CC_REQ_DATA_LEN_INVALID;
1038 }
1039
1040 // Count bytes of Event Data
1041 if ((req->data[0] & byte3EnableMask) != 0)
1042 {
1043 count = 3;
1044 }
1045 else if ((req->data[0] & byte2EnableMask) != 0)
1046 {
1047 count = 2;
1048 }
1049 else
1050 {
1051 count = 1;
1052 }
1053 assert = req->eventDirectionType & directionMask ? false : true;
1054 std::vector<uint8_t> eventData(req->data, req->data + count);
1055
1056 sdbusplus::bus::bus dbus(bus);
1057 std::string service =
1058 ipmi::getService(dbus, ipmiSELAddInterface, ipmiSELPath);
1059 sdbusplus::message::message writeSEL = dbus.new_method_call(
1060 service.c_str(), ipmiSELPath, ipmiSELAddInterface, "IpmiSelAdd");
1061 writeSEL.append(ipmiSELAddMessage, sensorPath, eventData, assert,
1062 generatorID);
1063 try
1064 {
1065 dbus.call(writeSEL);
1066 }
1067 catch (sdbusplus::exception_t& e)
1068 {
1069 phosphor::logging::log<phosphor::logging::level::ERR>(e.what());
1070 return IPMI_CC_UNSPECIFIED_ERROR;
1071 }
1072 return IPMI_CC_OK;
1073}
1074
Chris Austenac4604a2015-10-13 12:43:27 -05001075void register_netfn_sen_functions()
1076{
Tom05732372016-09-06 17:21:23 +05301077 // <Wildcard Command>
Patrick Venture0b02be92018-08-31 11:55:55 -07001078 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_WILDCARD, nullptr,
1079 ipmi_sen_wildcard, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -05001080
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001081 // <Platform Event Message>
1082 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_PLATFORM_EVENT, nullptr,
1083 ipmicmdPlatformEvent, PRIVILEGE_OPERATOR);
Tom05732372016-09-06 17:21:23 +05301084 // <Get Sensor Type>
Patrick Venture0b02be92018-08-31 11:55:55 -07001085 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_TYPE, nullptr,
1086 ipmi_sen_get_sensor_type, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -05001087
Tom05732372016-09-06 17:21:23 +05301088 // <Set Sensor Reading and Event Status>
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +00001089 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1090 ipmi::sensor_event::cmdSetSensorReadingAndEvtSts,
1091 ipmi::Privilege::Operator, ipmiSetSensorReading);
Tom05732372016-09-06 17:21:23 +05301092 // <Get Sensor Reading>
Patrick Venture0b02be92018-08-31 11:55:55 -07001093 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_READING, nullptr,
1094 ipmi_sen_get_sensor_reading, PRIVILEGE_USER);
Emily Shaffera344afc2017-04-13 15:09:39 -07001095
Tom Joseph5ca50952018-02-22 00:33:38 +05301096 // <Reserve Device SDR Repository>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001097 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1098 ipmi::sensor_event::cmdReserveDeviceSdrRepository,
1099 ipmi::Privilege::User, ipmiSensorReserveSdr);
Chris Austen10ccc0f2015-12-10 18:27:04 -06001100
Tom Joseph5ca50952018-02-22 00:33:38 +05301101 // <Get Device SDR Info>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001102 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1103 ipmi::sensor_event::cmdGetDeviceSdrInfo,
1104 ipmi::Privilege::User, ipmiSensorGetDeviceSdrInfo);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001105
Tom Joseph5ca50952018-02-22 00:33:38 +05301106 // <Get Device SDR>
Patrick Venture0b02be92018-08-31 11:55:55 -07001107 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr,
1108 ipmi_sen_get_sdr, PRIVILEGE_USER);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001109
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001110 // <Get Sensor Thresholds>
1111 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_THRESHOLDS,
1112 nullptr, ipmi_sen_get_sensor_thresholds,
1113 PRIVILEGE_USER);
1114
Chris Austenac4604a2015-10-13 12:43:27 -05001115 return;
1116}