blob: 369a1a73f4be273e3f71f55f2124554f3940b8ad [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"
4#include "ipmid.hpp"
5#include "types.hpp"
6#include "utils.hpp"
7
Patrick Venture46470a32018-09-07 19:26:25 -07008#include <host-ipmid/ipmid-api.h>
Tomd700e762016-09-20 18:24:13 +05309#include <mapper.h>
Chris Austen10ccc0f2015-12-10 18:27:04 -060010#include <systemd/sd-bus.h>
Patrick Venture0b02be92018-08-31 11:55:55 -070011
12#include <bitset>
Patrick Venture586d35b2018-09-07 19:56:18 -070013#include <cmath>
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>
16#include <set>
17#include <xyz/openbmc_project/Common/error.hpp>
18#include <xyz/openbmc_project/Sensor/Value/server.hpp>
19
Ratan Guptae0cc8552018-01-22 14:23:04 +053020static constexpr uint8_t fruInventoryDevice = 0x10;
21static constexpr uint8_t IPMIFruInventory = 0x02;
22static constexpr uint8_t BMCSlaveAddress = 0x20;
23
Patrick Venture0b02be92018-08-31 11:55:55 -070024extern int updateSensorRecordFromSSRAESC(const void*);
25extern sd_bus* bus;
Tom Josephbe703f72017-03-09 12:34:35 +053026extern const ipmi::sensor::IdInfoMap sensors;
Ratan Guptae0cc8552018-01-22 14:23:04 +053027extern const FruMap frus;
28
Tom Josephbe703f72017-03-09 12:34:35 +053029using namespace phosphor::logging;
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -050030using InternalFailure =
31 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Chris Austenac4604a2015-10-13 12:43:27 -050032
Patrick Venture0b02be92018-08-31 11:55:55 -070033void register_netfn_sen_functions() __attribute__((constructor));
Chris Austenac4604a2015-10-13 12:43:27 -050034
Patrick Venture0b02be92018-08-31 11:55:55 -070035struct sensorTypemap_t
36{
Chris Austen0012e9b2015-10-22 01:37:46 -050037 uint8_t number;
Chris Austend7cf0e42015-11-07 14:27:12 -060038 uint8_t typecode;
Chris Austen0012e9b2015-10-22 01:37:46 -050039 char dbusname[32];
Patrick Venture0b02be92018-08-31 11:55:55 -070040};
Chris Austen0012e9b2015-10-22 01:37:46 -050041
Chris Austen0012e9b2015-10-22 01:37:46 -050042sensorTypemap_t g_SensorTypeMap[] = {
43
Chris Austend7cf0e42015-11-07 14:27:12 -060044 {0x01, 0x6F, "Temp"},
45 {0x0C, 0x6F, "DIMM"},
46 {0x0C, 0x6F, "MEMORY_BUFFER"},
47 {0x07, 0x6F, "PROC"},
48 {0x07, 0x6F, "CORE"},
49 {0x07, 0x6F, "CPU"},
50 {0x0F, 0x6F, "BootProgress"},
Patrick Venture0b02be92018-08-31 11:55:55 -070051 {0xe9, 0x09, "OccStatus"}, // E9 is an internal mapping to handle sensor
52 // type code os 0x09
Chris Austend7cf0e42015-11-07 14:27:12 -060053 {0xC3, 0x6F, "BootCount"},
54 {0x1F, 0x6F, "OperatingSystemStatus"},
Chris Austen800ba712015-12-03 15:31:00 -060055 {0x12, 0x6F, "SYSTEM_EVENT"},
56 {0xC7, 0x03, "SYSTEM"},
57 {0xC7, 0x03, "MAIN_PLANAR"},
Chris Austen10ccc0f2015-12-10 18:27:04 -060058 {0xC2, 0x6F, "PowerCap"},
Tom Joseph558184e2017-09-01 13:45:05 +053059 {0x0b, 0xCA, "PowerSupplyRedundancy"},
Jayanth Othayoth0661beb2017-03-22 06:00:58 -050060 {0xDA, 0x03, "TurboAllowed"},
Tom Joseph558184e2017-09-01 13:45:05 +053061 {0xD8, 0xC8, "PowerSupplyDerating"},
Chris Austend7cf0e42015-11-07 14:27:12 -060062 {0xFF, 0x00, ""},
Chris Austen0012e9b2015-10-22 01:37:46 -050063};
64
Patrick Venture0b02be92018-08-31 11:55:55 -070065struct sensor_data_t
66{
Chris Austenac4604a2015-10-13 12:43:27 -050067 uint8_t sennum;
Patrick Venture0b02be92018-08-31 11:55:55 -070068} __attribute__((packed));
Chris Austenac4604a2015-10-13 12:43:27 -050069
Patrick Venture0b02be92018-08-31 11:55:55 -070070struct sensorreadingresp_t
71{
Chris Austen10ccc0f2015-12-10 18:27:04 -060072 uint8_t value;
73 uint8_t operation;
74 uint8_t indication[2];
Patrick Venture0b02be92018-08-31 11:55:55 -070075} __attribute__((packed));
Chris Austenac4604a2015-10-13 12:43:27 -050076
Patrick Venture0b02be92018-08-31 11:55:55 -070077int get_bus_for_path(const char* path, char** busname)
78{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070079 return mapper_get_service(bus, path, busname);
80}
Tomd700e762016-09-20 18:24:13 +053081
Emily Shaffer2ae09b92017-04-05 15:09:41 -070082// Use a lookup table to find the interface name of a specific sensor
83// This will be used until an alternative is found. this is the first
84// step for mapping IPMI
Patrick Venture0b02be92018-08-31 11:55:55 -070085int find_openbmc_path(uint8_t num, dbus_interface_t* interface)
86{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070087 int rc;
88
Emily Shaffer2ae09b92017-04-05 15:09:41 -070089 const auto& sensor_it = sensors.find(num);
90 if (sensor_it == sensors.end())
91 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -050092 // The sensor map does not contain the sensor requested
93 return -EINVAL;
Emily Shaffer2ae09b92017-04-05 15:09:41 -070094 }
95
96 const auto& info = sensor_it->second;
97
Patrick Williams8451edf2017-06-13 09:01:06 -050098 char* busname = nullptr;
Emily Shaffer2ae09b92017-04-05 15:09:41 -070099 rc = get_bus_for_path(info.sensorPath.c_str(), &busname);
Patrick Venture0b02be92018-08-31 11:55:55 -0700100 if (rc < 0)
101 {
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700102 fprintf(stderr, "Failed to get %s busname: %s\n",
Patrick Venture0b02be92018-08-31 11:55:55 -0700103 info.sensorPath.c_str(), busname);
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700104 goto final;
105 }
106
107 interface->sensortype = info.sensorType;
108 strcpy(interface->bus, busname);
109 strcpy(interface->path, info.sensorPath.c_str());
110 // Take the interface name from the beginning of the DbusInterfaceMap. This
111 // works for the Value interface but may not suffice for more complex
112 // sensors.
113 // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103
Patrick Venture0b02be92018-08-31 11:55:55 -0700114 strcpy(interface->interface,
115 info.propertyInterfaces.begin()->first.c_str());
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700116 interface->sensornumber = num;
117
118final:
119 free(busname);
120 return rc;
121}
122
Tomd700e762016-09-20 18:24:13 +0530123/////////////////////////////////////////////////////////////////////
124//
125// Routines used by ipmi commands wanting to interact on the dbus
126//
127/////////////////////////////////////////////////////////////////////
Patrick Venture0b02be92018-08-31 11:55:55 -0700128int set_sensor_dbus_state_s(uint8_t number, const char* method,
129 const char* value)
130{
Tomd700e762016-09-20 18:24:13 +0530131
132 dbus_interface_t a;
133 int r;
134 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700135 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530136
Patrick Venture0b02be92018-08-31 11:55:55 -0700137 fprintf(ipmidbus,
138 "Attempting to set a dbus Variant Sensor 0x%02x via %s with a "
139 "value of %s\n",
140 number, method, value);
Tomd700e762016-09-20 18:24:13 +0530141
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700142 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530143
Patrick Venture0b02be92018-08-31 11:55:55 -0700144 if (r < 0)
145 {
Tomd700e762016-09-20 18:24:13 +0530146 fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
147 return 0;
148 }
149
Patrick Venture0b02be92018-08-31 11:55:55 -0700150 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
151 method);
152 if (r < 0)
153 {
Tomd700e762016-09-20 18:24:13 +0530154 fprintf(stderr, "Failed to create a method call: %s", strerror(-r));
155 goto final;
156 }
157
158 r = sd_bus_message_append(m, "v", "s", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700159 if (r < 0)
160 {
Tomd700e762016-09-20 18:24:13 +0530161 fprintf(stderr, "Failed to create a input parameter: %s", strerror(-r));
162 goto final;
163 }
164
Tomd700e762016-09-20 18:24:13 +0530165 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700166 if (r < 0)
167 {
Tomd700e762016-09-20 18:24:13 +0530168 fprintf(stderr, "Failed to call the method: %s", strerror(-r));
169 }
170
171final:
172 sd_bus_error_free(&error);
173 m = sd_bus_message_unref(m);
174
175 return 0;
176}
Patrick Venture0b02be92018-08-31 11:55:55 -0700177int set_sensor_dbus_state_y(uint8_t number, const char* method,
178 const uint8_t value)
179{
Tomd700e762016-09-20 18:24:13 +0530180
181 dbus_interface_t a;
182 int r;
183 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700184 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530185
Patrick Venture0b02be92018-08-31 11:55:55 -0700186 fprintf(ipmidbus,
187 "Attempting to set a dbus Variant Sensor 0x%02x via %s with a "
188 "value of 0x%02x\n",
189 number, method, value);
Tomd700e762016-09-20 18:24:13 +0530190
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700191 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530192
Patrick Venture0b02be92018-08-31 11:55:55 -0700193 if (r < 0)
194 {
Tomd700e762016-09-20 18:24:13 +0530195 fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
196 return 0;
197 }
198
Patrick Venture0b02be92018-08-31 11:55:55 -0700199 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
200 method);
201 if (r < 0)
202 {
Tomd700e762016-09-20 18:24:13 +0530203 fprintf(stderr, "Failed to create a method call: %s", strerror(-r));
204 goto final;
205 }
206
207 r = sd_bus_message_append(m, "v", "i", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700208 if (r < 0)
209 {
Tomd700e762016-09-20 18:24:13 +0530210 fprintf(stderr, "Failed to create a input parameter: %s", strerror(-r));
211 goto final;
212 }
213
Tomd700e762016-09-20 18:24:13 +0530214 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700215 if (r < 0)
216 {
Tomd700e762016-09-20 18:24:13 +0530217 fprintf(stderr, "12 Failed to call the method: %s", strerror(-r));
218 }
219
220final:
221 sd_bus_error_free(&error);
222 m = sd_bus_message_unref(m);
223
224 return 0;
225}
226
Patrick Venture0b02be92018-08-31 11:55:55 -0700227uint8_t dbus_to_sensor_type(char* p)
228{
Chris Austenac4604a2015-10-13 12:43:27 -0500229
Patrick Venture0b02be92018-08-31 11:55:55 -0700230 sensorTypemap_t* s = g_SensorTypeMap;
231 char r = 0;
232 while (s->number != 0xFF)
233 {
234 if (!strcmp(s->dbusname, p))
235 {
Tom Joseph558184e2017-09-01 13:45:05 +0530236 r = s->typecode;
Patrick Venture0b02be92018-08-31 11:55:55 -0700237 break;
Chris Austenac4604a2015-10-13 12:43:27 -0500238 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500239 s++;
Chris Austenac4604a2015-10-13 12:43:27 -0500240 }
241
Chris Austen0012e9b2015-10-22 01:37:46 -0500242 if (s->number == 0xFF)
243 printf("Failed to find Sensor Type %s\n", p);
Chris Austenac4604a2015-10-13 12:43:27 -0500244
Chris Austen0012e9b2015-10-22 01:37:46 -0500245 return r;
Chris Austenac4604a2015-10-13 12:43:27 -0500246}
247
Patrick Venture0b02be92018-08-31 11:55:55 -0700248uint8_t get_type_from_interface(dbus_interface_t dbus_if)
249{
Chris Austen0012e9b2015-10-22 01:37:46 -0500250
Patrick Venture0b02be92018-08-31 11:55:55 -0700251 char* p;
Brad Bishop56003452016-10-05 21:49:19 -0400252 uint8_t type;
Chris Austen0012e9b2015-10-22 01:37:46 -0500253
Chris Austen0012e9b2015-10-22 01:37:46 -0500254 // This is where sensors that do not exist in dbus but do
255 // exist in the host code stop. This should indicate it
256 // is not a supported sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700257 if (dbus_if.interface[0] == 0)
258 {
259 return 0;
260 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500261
Emily Shaffer71174412017-04-05 15:10:40 -0700262 // Fetch type from interface itself.
263 if (dbus_if.sensortype != 0)
264 {
265 type = dbus_if.sensortype;
Patrick Venture0b02be92018-08-31 11:55:55 -0700266 }
267 else
268 {
Chris Austen0012e9b2015-10-22 01:37:46 -0500269 // Non InventoryItems
Patrick Venture0b02be92018-08-31 11:55:55 -0700270 p = strrchr(dbus_if.path, '/');
271 type = dbus_to_sensor_type(p + 1);
Chris Austen0012e9b2015-10-22 01:37:46 -0500272 }
273
Brad Bishop56003452016-10-05 21:49:19 -0400274 return type;
Patrick Venture0b02be92018-08-31 11:55:55 -0700275}
Chris Austen0012e9b2015-10-22 01:37:46 -0500276
Emily Shaffer391f3302017-04-03 10:27:08 -0700277// Replaces find_sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700278uint8_t find_type_for_sensor_number(uint8_t num)
279{
Emily Shaffer391f3302017-04-03 10:27:08 -0700280 int r;
281 dbus_interface_t dbus_if;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700282 r = find_openbmc_path(num, &dbus_if);
Patrick Venture0b02be92018-08-31 11:55:55 -0700283 if (r < 0)
284 {
Emily Shaffer391f3302017-04-03 10:27:08 -0700285 fprintf(stderr, "Could not find sensor %d\n", num);
Lei YU91875f72018-04-03 15:14:49 +0800286 return 0;
Emily Shaffer391f3302017-04-03 10:27:08 -0700287 }
288 return get_type_from_interface(dbus_if);
289}
290
Chris Austen0012e9b2015-10-22 01:37:46 -0500291ipmi_ret_t ipmi_sen_get_sensor_type(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700292 ipmi_request_t request,
293 ipmi_response_t response,
294 ipmi_data_len_t data_len,
295 ipmi_context_t context)
Chris Austenac4604a2015-10-13 12:43:27 -0500296{
Patrick Venture0b02be92018-08-31 11:55:55 -0700297 sensor_data_t* reqptr = (sensor_data_t*)request;
Chris Austenac4604a2015-10-13 12:43:27 -0500298 ipmi_ret_t rc = IPMI_CC_OK;
299
Patrick Venture0b02be92018-08-31 11:55:55 -0700300 printf("IPMI GET_SENSOR_TYPE [0x%02X]\n", reqptr->sennum);
Chris Austenac4604a2015-10-13 12:43:27 -0500301
302 // TODO Not sure what the System-event-sensor is suppose to return
303 // need to ask Hostboot team
Patrick Venture0b02be92018-08-31 11:55:55 -0700304 unsigned char buf[] = {0x00, 0x6F};
Chris Austenac4604a2015-10-13 12:43:27 -0500305
Emily Shaffer391f3302017-04-03 10:27:08 -0700306 buf[0] = find_type_for_sensor_number(reqptr->sennum);
Chris Austen0012e9b2015-10-22 01:37:46 -0500307
308 // HACK UNTIL Dbus gets updated or we find a better way
Patrick Venture0b02be92018-08-31 11:55:55 -0700309 if (buf[0] == 0)
310 {
Chris Austen800ba712015-12-03 15:31:00 -0600311 rc = IPMI_CC_SENSOR_INVALID;
Chris Austen0012e9b2015-10-22 01:37:46 -0500312 }
313
Chris Austenac4604a2015-10-13 12:43:27 -0500314 *data_len = sizeof(buf);
315 memcpy(response, &buf, *data_len);
316
Chris Austenac4604a2015-10-13 12:43:27 -0500317 return rc;
318}
319
Patrick Venture0b02be92018-08-31 11:55:55 -0700320const std::set<std::string> analogSensorInterfaces = {
Emily Shaffercc941e12017-06-14 13:06:26 -0700321 "xyz.openbmc_project.Sensor.Value",
Patrick Venturee9a64052017-08-18 19:17:27 -0700322 "xyz.openbmc_project.Control.FanPwm",
Emily Shaffercc941e12017-06-14 13:06:26 -0700323};
324
325bool isAnalogSensor(const std::string& interface)
326{
327 return (analogSensorInterfaces.count(interface));
328}
329
Patrick Venture0b02be92018-08-31 11:55:55 -0700330ipmi_ret_t setSensorReading(void* request)
Tom Josephbe703f72017-03-09 12:34:35 +0530331{
Tom Joseph816e92b2017-09-06 19:23:00 +0530332 ipmi::sensor::SetSensorReadingReq cmdData =
Patrick Venture0b02be92018-08-31 11:55:55 -0700333 *(static_cast<ipmi::sensor::SetSensorReadingReq*>(request));
Tom Josephbe703f72017-03-09 12:34:35 +0530334
335 // Check if the Sensor Number is present
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500336 const auto iter = sensors.find(cmdData.number);
Tom Josephbe703f72017-03-09 12:34:35 +0530337 if (iter == sensors.end())
338 {
339 return IPMI_CC_SENSOR_INVALID;
340 }
341
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500342 try
343 {
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500344 if (ipmi::sensor::Mutability::Write !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700345 (iter->second.mutability & ipmi::sensor::Mutability::Write))
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500346 {
347 log<level::ERR>("Sensor Set operation is not allowed",
348 entry("SENSOR_NUM=%d", cmdData.number));
349 return IPMI_CC_ILLEGAL_COMMAND;
350 }
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500351 return iter->second.updateFunc(cmdData, iter->second);
352 }
353 catch (InternalFailure& e)
354 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700355 log<level::ERR>("Set sensor failed",
356 entry("SENSOR_NUM=%d", cmdData.number));
357 commit<InternalFailure>();
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500358 }
Tom Joseph82024322017-09-28 20:07:29 +0530359 catch (const std::runtime_error& e)
360 {
361 log<level::ERR>(e.what());
362 }
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500363
364 return IPMI_CC_UNSPECIFIED_ERROR;
Tom Josephbe703f72017-03-09 12:34:35 +0530365}
Chris Austenac4604a2015-10-13 12:43:27 -0500366
Chris Austen0012e9b2015-10-22 01:37:46 -0500367ipmi_ret_t ipmi_sen_set_sensor(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700368 ipmi_request_t request, ipmi_response_t response,
369 ipmi_data_len_t data_len, ipmi_context_t context)
Chris Austenac4604a2015-10-13 12:43:27 -0500370{
Patrick Venture0b02be92018-08-31 11:55:55 -0700371 sensor_data_t* reqptr = (sensor_data_t*)request;
Chris Austenac4604a2015-10-13 12:43:27 -0500372
Aditya Saripalli5fb14602017-11-09 14:46:27 +0530373 log<level::DEBUG>("IPMI SET_SENSOR",
374 entry("SENSOR_NUM=0x%02x", reqptr->sennum));
Chris Austenac4604a2015-10-13 12:43:27 -0500375
Tom Josephbe703f72017-03-09 12:34:35 +0530376 /*
377 * This would support the Set Sensor Reading command for the presence
378 * and functional state of Processor, Core & DIMM. For the remaining
379 * sensors the existing support is invoked.
380 */
381 auto ipmiRC = setSensorReading(request);
382
Patrick Venture0b02be92018-08-31 11:55:55 -0700383 if (ipmiRC == IPMI_CC_SENSOR_INVALID)
Tom Josephbe703f72017-03-09 12:34:35 +0530384 {
385 updateSensorRecordFromSSRAESC(reqptr);
386 ipmiRC = IPMI_CC_OK;
387 }
Chris Austen8a45e7c2015-10-15 00:31:46 -0500388
Patrick Venture0b02be92018-08-31 11:55:55 -0700389 *data_len = 0;
Tom Josephbe703f72017-03-09 12:34:35 +0530390 return ipmiRC;
Chris Austenac4604a2015-10-13 12:43:27 -0500391}
392
Tom Joseph3ee668f2018-03-02 19:49:17 +0530393ipmi_ret_t ipmi_sen_get_sensor_reading(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700394 ipmi_request_t request,
395 ipmi_response_t response,
396 ipmi_data_len_t data_len,
397 ipmi_context_t context)
Tom Joseph3ee668f2018-03-02 19:49:17 +0530398{
Patrick Venture0b02be92018-08-31 11:55:55 -0700399 sensor_data_t* reqptr = (sensor_data_t*)request;
400 sensorreadingresp_t* resp = (sensorreadingresp_t*)response;
401 ipmi::sensor::GetSensorResponse getResponse{};
Tom Joseph3ee668f2018-03-02 19:49:17 +0530402 static constexpr auto scanningEnabledBit = 6;
403
404 const auto iter = sensors.find(reqptr->sennum);
405 if (iter == sensors.end())
406 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -0500407 return IPMI_CC_SENSOR_INVALID;
Tom Joseph3ee668f2018-03-02 19:49:17 +0530408 }
409 if (ipmi::sensor::Mutability::Read !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700410 (iter->second.mutability & ipmi::sensor::Mutability::Read))
Tom Joseph3ee668f2018-03-02 19:49:17 +0530411 {
Jayanth Othayoth6ccf8812018-04-05 22:58:48 -0500412 return IPMI_CC_ILLEGAL_COMMAND;
Tom Joseph3ee668f2018-03-02 19:49:17 +0530413 }
414
415 try
416 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700417 getResponse = iter->second.getFunc(iter->second);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530418 *data_len = getResponse.size();
419 memcpy(resp, getResponse.data(), *data_len);
420 resp->operation = 1 << scanningEnabledBit;
421 return IPMI_CC_OK;
422 }
423 catch (const std::exception& e)
424 {
425 *data_len = getResponse.size();
426 memcpy(resp, getResponse.data(), *data_len);
427 return IPMI_CC_OK;
428 }
429}
430
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530431void getSensorThresholds(uint8_t sensorNum,
432 get_sdr::GetSensorThresholdsResponse* response)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600433{
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530434 constexpr auto warningThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600435 "xyz.openbmc_project.Sensor.Threshold.Warning";
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530436 constexpr auto criticalThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600437 "xyz.openbmc_project.Sensor.Threshold.Critical";
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600438
439 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
440
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530441 const auto iter = sensors.find(sensorNum);
442 const auto info = iter->second;
443
444 auto service = ipmi::getService(bus, info.sensorInterface, info.sensorPath);
445
Patrick Venture0b02be92018-08-31 11:55:55 -0700446 auto warnThresholds = ipmi::getAllDbusProperties(
447 bus, service, info.sensorPath, warningThreshIntf);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530448
James Feist1e121122018-07-31 11:44:09 -0700449 double warnLow = mapbox::util::apply_visitor(ipmi::VariantToDoubleVisitor(),
450 warnThresholds["WarningLow"]);
451 double warnHigh = mapbox::util::apply_visitor(
452 ipmi::VariantToDoubleVisitor(), warnThresholds["WarningHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530453
454 if (warnLow != 0)
455 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700456 warnLow *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700457 response->lowerNonCritical = static_cast<uint8_t>(
458 (warnLow - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530459 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700460 ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530461 }
462
463 if (warnHigh != 0)
464 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700465 warnHigh *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700466 response->upperNonCritical = static_cast<uint8_t>(
467 (warnHigh - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530468 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700469 ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530470 }
471
Patrick Venture0b02be92018-08-31 11:55:55 -0700472 auto critThresholds = ipmi::getAllDbusProperties(
473 bus, service, info.sensorPath, criticalThreshIntf);
James Feist1e121122018-07-31 11:44:09 -0700474 double critLow = mapbox::util::apply_visitor(ipmi::VariantToDoubleVisitor(),
475 critThresholds["CriticalLow"]);
476 double critHigh = mapbox::util::apply_visitor(
477 ipmi::VariantToDoubleVisitor(), critThresholds["CriticalHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530478
479 if (critLow != 0)
480 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700481 critLow *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700482 response->lowerCritical = static_cast<uint8_t>(
483 (critLow - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530484 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700485 ipmi::sensor::ThresholdMask::CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530486 }
487
488 if (critHigh != 0)
489 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700490 critHigh *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700491 response->upperCritical = static_cast<uint8_t>(
492 (critHigh - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530493 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700494 ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530495 }
496}
497
498ipmi_ret_t ipmi_sen_get_sensor_thresholds(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700499 ipmi_request_t request,
500 ipmi_response_t response,
501 ipmi_data_len_t data_len,
502 ipmi_context_t context)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530503{
504 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
505
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600506 if (*data_len != sizeof(uint8_t))
507 {
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530508 *data_len = 0;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600509 return IPMI_CC_REQ_DATA_LEN_INVALID;
510 }
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600511
Patrick Venture0b02be92018-08-31 11:55:55 -0700512 auto sensorNum = *(reinterpret_cast<const uint8_t*>(request));
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530513 *data_len = 0;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600514
515 const auto iter = sensors.find(sensorNum);
516 if (iter == sensors.end())
517 {
518 return IPMI_CC_SENSOR_INVALID;
519 }
520
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530521 const auto info = iter->second;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600522
Patrick Venture0b02be92018-08-31 11:55:55 -0700523 // Proceed only if the sensor value interface is implemented.
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530524 if (info.propertyInterfaces.find(valueInterface) ==
525 info.propertyInterfaces.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600526 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700527 // return with valid mask as 0
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600528 return IPMI_CC_OK;
529 }
530
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530531 auto responseData =
532 reinterpret_cast<get_sdr::GetSensorThresholdsResponse*>(response);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600533
534 try
535 {
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530536 getSensorThresholds(sensorNum, responseData);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600537 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530538 catch (std::exception& e)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600539 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700540 // Mask if the property is not present
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600541 responseData->validMask = 0;
542 }
543
544 *data_len = sizeof(get_sdr::GetSensorThresholdsResponse);
545 return IPMI_CC_OK;
546}
547
Chris Austen0012e9b2015-10-22 01:37:46 -0500548ipmi_ret_t ipmi_sen_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
549 ipmi_request_t request, ipmi_response_t response,
Chris Austenac4604a2015-10-13 12:43:27 -0500550 ipmi_data_len_t data_len, ipmi_context_t context)
551{
Nan Li70aa8d92016-08-29 00:11:10 +0800552 ipmi_ret_t rc = IPMI_CC_INVALID;
Chris Austenac4604a2015-10-13 12:43:27 -0500553
Patrick Venture0b02be92018-08-31 11:55:55 -0700554 printf("IPMI S/E Wildcard Netfn:[0x%X], Cmd:[0x%X]\n", netfn, cmd);
Chris Austenac4604a2015-10-13 12:43:27 -0500555 *data_len = 0;
556
557 return rc;
558}
559
Emily Shafferd06e0e72017-04-05 09:08:57 -0700560ipmi_ret_t ipmi_sen_get_sdr_info(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
561 ipmi_request_t request,
562 ipmi_response_t response,
563 ipmi_data_len_t data_len,
564 ipmi_context_t context)
565{
566 auto resp = static_cast<get_sdr_info::GetSdrInfoResp*>(response);
567 if (request == nullptr ||
568 get_sdr_info::request::get_count(request) == false)
569 {
570 // Get Sensor Count
Ratan Guptae0cc8552018-01-22 14:23:04 +0530571 resp->count = sensors.size() + frus.size();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700572 }
573 else
574 {
575 resp->count = 1;
576 }
577
578 // Multiple LUNs not supported.
579 namespace response = get_sdr_info::response;
580 response::set_lun_present(0, &(resp->luns_and_dynamic_population));
581 response::set_lun_not_present(1, &(resp->luns_and_dynamic_population));
582 response::set_lun_not_present(2, &(resp->luns_and_dynamic_population));
583 response::set_lun_not_present(3, &(resp->luns_and_dynamic_population));
584 response::set_static_population(&(resp->luns_and_dynamic_population));
585
586 *data_len = SDR_INFO_RESP_SIZE;
587
588 return IPMI_CC_OK;
589}
590
Emily Shaffera344afc2017-04-13 15:09:39 -0700591ipmi_ret_t ipmi_sen_reserve_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
592 ipmi_request_t request,
593 ipmi_response_t response,
594 ipmi_data_len_t data_len,
595 ipmi_context_t context)
596{
597 // A constant reservation ID is okay until we implement add/remove SDR.
598 const uint16_t reservation_id = 1;
599 *(uint16_t*)response = reservation_id;
Emily Shaffer5a5a6282017-08-15 11:17:17 -0700600 *data_len = sizeof(uint16_t);
Emily Shaffera344afc2017-04-13 15:09:39 -0700601
602 printf("Created new IPMI SDR reservation ID %d\n", *(uint16_t*)response);
603 return IPMI_CC_OK;
604}
Chris Austenac4604a2015-10-13 12:43:27 -0500605
Patrick Venture0b02be92018-08-31 11:55:55 -0700606void setUnitFieldsForObject(const ipmi::sensor::Info* info,
607 get_sdr::SensorDataFullRecordBody* body)
Emily Shaffercc941e12017-06-14 13:06:26 -0700608{
Tom Josephdc212b22018-02-16 09:59:57 +0530609 namespace server = sdbusplus::xyz::openbmc_project::Sensor::server;
610 try
Emily Shaffercc941e12017-06-14 13:06:26 -0700611 {
Tom Josephdc212b22018-02-16 09:59:57 +0530612 auto unit = server::Value::convertUnitFromString(info->unit);
613 // Unit strings defined in
614 // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml
615 switch (unit)
Emily Shaffercc941e12017-06-14 13:06:26 -0700616 {
Tom Josephdc212b22018-02-16 09:59:57 +0530617 case server::Value::Unit::DegreesC:
618 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C;
619 break;
620 case server::Value::Unit::RPMS:
Patrick Venture0b02be92018-08-31 11:55:55 -0700621 body->sensor_units_2_base =
622 get_sdr::SENSOR_UNIT_REVOLUTIONS; // revolutions
Tom Josephdc212b22018-02-16 09:59:57 +0530623 get_sdr::body::set_rate_unit(0b100, body); // per minute
624 break;
625 case server::Value::Unit::Volts:
626 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS;
627 break;
628 case server::Value::Unit::Meters:
629 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS;
630 break;
631 case server::Value::Unit::Amperes:
632 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES;
633 break;
634 case server::Value::Unit::Joules:
635 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES;
636 break;
637 case server::Value::Unit::Watts:
638 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS;
639 break;
640 default:
641 // Cannot be hit.
642 fprintf(stderr, "Unknown value unit type: = %s\n",
643 info->unit.c_str());
Emily Shaffercc941e12017-06-14 13:06:26 -0700644 }
645 }
Tom Josephdc212b22018-02-16 09:59:57 +0530646 catch (sdbusplus::exception::InvalidEnumString e)
Emily Shaffercc941e12017-06-14 13:06:26 -0700647 {
Tom Josephdc212b22018-02-16 09:59:57 +0530648 log<level::WARNING>("Warning: no unit provided for sensor!");
Emily Shaffercc941e12017-06-14 13:06:26 -0700649 }
Emily Shaffercc941e12017-06-14 13:06:26 -0700650}
651
Patrick Venture0b02be92018-08-31 11:55:55 -0700652ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body,
653 const ipmi::sensor::Info* info,
Emily Shafferbbef71c2017-05-08 16:36:17 -0700654 ipmi_data_len_t data_len)
655{
656 /* Functional sensor case */
Emily Shaffercc941e12017-06-14 13:06:26 -0700657 if (isAnalogSensor(info->propertyInterfaces.begin()->first))
Emily Shafferbbef71c2017-05-08 16:36:17 -0700658 {
Emily Shafferbbef71c2017-05-08 16:36:17 -0700659
660 body->sensor_units_1 = 0; // unsigned, no rate, no modifier, not a %
661
662 /* Unit info */
Tom Josephdc212b22018-02-16 09:59:57 +0530663 setUnitFieldsForObject(info, body);
Emily Shaffer10f49592017-05-10 12:01:10 -0700664
665 get_sdr::body::set_b(info->coefficientB, body);
666 get_sdr::body::set_m(info->coefficientM, body);
667 get_sdr::body::set_b_exp(info->exponentB, body);
Tom Josephdc212b22018-02-16 09:59:57 +0530668 get_sdr::body::set_r_exp(info->exponentR, body);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700669
Emily Shafferbbef71c2017-05-08 16:36:17 -0700670 get_sdr::body::set_id_type(0b00, body); // 00 = unicode
Emily Shafferbbef71c2017-05-08 16:36:17 -0700671 }
672
Tom Joseph96423912018-01-25 00:14:34 +0530673 /* ID string */
674 auto id_string = info->sensorNameFunc(*info);
675
676 if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH)
677 {
678 get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body);
679 }
680 else
681 {
682 get_sdr::body::set_id_strlen(id_string.length(), body);
683 }
684 strncpy(body->id_string, id_string.c_str(),
685 get_sdr::body::get_id_strlen(body));
686
Emily Shafferbbef71c2017-05-08 16:36:17 -0700687 return IPMI_CC_OK;
688};
689
Ratan Guptae0cc8552018-01-22 14:23:04 +0530690ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response,
691 ipmi_data_len_t data_len)
692{
693 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
694 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700695 get_sdr::SensorDataFruRecord record{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530696 auto dataLength = 0;
697
698 auto fru = frus.begin();
Patrick Venture0b02be92018-08-31 11:55:55 -0700699 uint8_t fruID{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530700 auto recordID = get_sdr::request::get_record_id(req);
701
702 fruID = recordID - FRU_RECORD_ID_START;
703 fru = frus.find(fruID);
704 if (fru == frus.end())
705 {
706 return IPMI_CC_SENSOR_INVALID;
707 }
708
709 /* Header */
710 get_sdr::header::set_record_id(recordID, &(record.header));
711 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
712 record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD;
713 record.header.record_length = sizeof(record.key) + sizeof(record.body);
714
715 /* Key */
716 record.key.fruID = fruID;
717 record.key.accessLun |= IPMI_LOGICAL_FRU;
718 record.key.deviceAddress = BMCSlaveAddress;
719
720 /* Body */
721 record.body.entityID = fru->second[0].entityID;
722 record.body.entityInstance = fru->second[0].entityInstance;
723 record.body.deviceType = fruInventoryDevice;
724 record.body.deviceTypeModifier = IPMIFruInventory;
725
726 /* Device ID string */
Patrick Venture0b02be92018-08-31 11:55:55 -0700727 auto deviceID =
728 fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1,
729 fru->second[0].path.length());
Ratan Guptae0cc8552018-01-22 14:23:04 +0530730
731 if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH)
732 {
733 get_sdr::body::set_device_id_strlen(
Patrick Venture0b02be92018-08-31 11:55:55 -0700734 get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530735 }
736 else
737 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700738 get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530739 }
740
741 strncpy(record.body.deviceID, deviceID.c_str(),
742 get_sdr::body::get_device_id_strlen(&(record.body)));
743
744 if (++fru == frus.end())
745 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700746 get_sdr::response::set_next_record_id(END_OF_RECORD,
747 resp); // last record
Ratan Guptae0cc8552018-01-22 14:23:04 +0530748 }
749 else
750 {
751 get_sdr::response::set_next_record_id(
Patrick Venture0b02be92018-08-31 11:55:55 -0700752 (FRU_RECORD_ID_START + fru->first), resp);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530753 }
754
755 if (req->bytes_to_read > (sizeof(*resp) - req->offset))
756 {
757 dataLength = (sizeof(*resp) - req->offset);
758 }
759 else
760 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700761 dataLength = req->bytes_to_read;
Ratan Guptae0cc8552018-01-22 14:23:04 +0530762 }
763
764 if (dataLength <= 0)
765 {
766 return IPMI_CC_REQ_DATA_LEN_INVALID;
767 }
768
Patrick Venture0b02be92018-08-31 11:55:55 -0700769 memcpy(resp->record_data, reinterpret_cast<uint8_t*>(&record) + req->offset,
770 (dataLength));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530771
772 *data_len = dataLength;
773 *data_len += 2; // additional 2 bytes for next record ID
774
775 return IPMI_CC_OK;
776}
777
Emily Shafferbbef71c2017-05-08 16:36:17 -0700778ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
779 ipmi_request_t request, ipmi_response_t response,
780 ipmi_data_len_t data_len, ipmi_context_t context)
781{
782 ipmi_ret_t ret = IPMI_CC_OK;
Patrick Venture0b02be92018-08-31 11:55:55 -0700783 get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request;
784 get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700785 get_sdr::SensorDataFullRecord record = {0};
786 if (req != NULL)
787 {
788 // Note: we use an iterator so we can provide the next ID at the end of
789 // the call.
790 auto sensor = sensors.begin();
Ratan Guptae0cc8552018-01-22 14:23:04 +0530791 auto recordID = get_sdr::request::get_record_id(req);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700792
793 // At the beginning of a scan, the host side will send us id=0.
Ratan Guptae0cc8552018-01-22 14:23:04 +0530794 if (recordID != 0)
Emily Shafferbbef71c2017-05-08 16:36:17 -0700795 {
Ratan Guptae0cc8552018-01-22 14:23:04 +0530796 // recordID greater then 255,it means it is a FRU record.
797 // Currently we are supporting two record types either FULL record
798 // or FRU record.
799 if (recordID >= FRU_RECORD_ID_START)
800 {
801 return ipmi_fru_get_sdr(request, response, data_len);
802 }
803 else
804 {
805 sensor = sensors.find(recordID);
806 if (sensor == sensors.end())
807 {
808 return IPMI_CC_SENSOR_INVALID;
809 }
Emily Shafferbbef71c2017-05-08 16:36:17 -0700810 }
811 }
812
813 uint8_t sensor_id = sensor->first;
814
815 /* Header */
816 get_sdr::header::set_record_id(sensor_id, &(record.header));
817 record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1
818 record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD;
819 record.header.record_length = sizeof(get_sdr::SensorDataFullRecord);
820
821 /* Key */
Tom Joseph96423912018-01-25 00:14:34 +0530822 get_sdr::key::set_owner_id_bmc(&(record.key));
Emily Shafferbbef71c2017-05-08 16:36:17 -0700823 record.key.sensor_number = sensor_id;
824
825 /* Body */
Tom Joseph96423912018-01-25 00:14:34 +0530826 record.body.entity_id = sensor->second.entityType;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700827 record.body.sensor_type = sensor->second.sensorType;
828 record.body.event_reading_type = sensor->second.sensorReadingType;
Tom Joseph96423912018-01-25 00:14:34 +0530829 record.body.entity_instance = sensor->second.instance;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700830
831 // Set the type-specific details given the DBus interface
832 ret = populate_record_from_dbus(&(record.body), &(sensor->second),
833 data_len);
834
835 if (++sensor == sensors.end())
836 {
Ratan Guptae0cc8552018-01-22 14:23:04 +0530837 // we have reached till end of sensor, so assign the next record id
838 // to 256(Max Sensor ID = 255) + FRU ID(may start with 0).
Patrick Venture0b02be92018-08-31 11:55:55 -0700839 auto next_record_id =
840 (frus.size()) ? frus.begin()->first + FRU_RECORD_ID_START
841 : END_OF_RECORD;
Ratan Guptae0cc8552018-01-22 14:23:04 +0530842
843 get_sdr::response::set_next_record_id(next_record_id, resp);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700844 }
845 else
846 {
847 get_sdr::response::set_next_record_id(sensor->first, resp);
848 }
849
850 *data_len = sizeof(get_sdr::GetSdrResp) - req->offset;
851 memcpy(resp->record_data, (char*)&record + req->offset,
852 sizeof(get_sdr::SensorDataFullRecord) - req->offset);
853 }
854
855 return ret;
856}
857
Chris Austenac4604a2015-10-13 12:43:27 -0500858void register_netfn_sen_functions()
859{
Tom05732372016-09-06 17:21:23 +0530860 // <Wildcard Command>
Patrick Venture0b02be92018-08-31 11:55:55 -0700861 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_WILDCARD, nullptr,
862 ipmi_sen_wildcard, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -0500863
Tom05732372016-09-06 17:21:23 +0530864 // <Get Sensor Type>
Patrick Venture0b02be92018-08-31 11:55:55 -0700865 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_TYPE, nullptr,
866 ipmi_sen_get_sensor_type, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -0500867
Tom05732372016-09-06 17:21:23 +0530868 // <Set Sensor Reading and Event Status>
Patrick Venture0b02be92018-08-31 11:55:55 -0700869 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_SET_SENSOR, nullptr,
870 ipmi_sen_set_sensor, PRIVILEGE_OPERATOR);
Chris Austen8a45e7c2015-10-15 00:31:46 -0500871
Tom05732372016-09-06 17:21:23 +0530872 // <Get Sensor Reading>
Patrick Venture0b02be92018-08-31 11:55:55 -0700873 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_READING, nullptr,
874 ipmi_sen_get_sensor_reading, PRIVILEGE_USER);
Emily Shaffera344afc2017-04-13 15:09:39 -0700875
Tom Joseph5ca50952018-02-22 00:33:38 +0530876 // <Reserve Device SDR Repository>
877 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_RESERVE_DEVICE_SDR_REPO,
Patrick Venture0b02be92018-08-31 11:55:55 -0700878 nullptr, ipmi_sen_reserve_sdr, PRIVILEGE_USER);
Chris Austen10ccc0f2015-12-10 18:27:04 -0600879
Tom Joseph5ca50952018-02-22 00:33:38 +0530880 // <Get Device SDR Info>
Patrick Venture0b02be92018-08-31 11:55:55 -0700881 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR_INFO, nullptr,
882 ipmi_sen_get_sdr_info, PRIVILEGE_USER);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700883
Tom Joseph5ca50952018-02-22 00:33:38 +0530884 // <Get Device SDR>
Patrick Venture0b02be92018-08-31 11:55:55 -0700885 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr,
886 ipmi_sen_get_sdr, PRIVILEGE_USER);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700887
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600888 // <Get Sensor Thresholds>
889 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_THRESHOLDS,
890 nullptr, ipmi_sen_get_sensor_thresholds,
891 PRIVILEGE_USER);
892
Chris Austenac4604a2015-10-13 12:43:27 -0500893 return;
894}