blob: dca9765f39a3c5f700d126958df12e129838d526 [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>
Patrick Ventureb51bf9c2018-09-10 15:53:14 -070014#include <cstring>
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -050015#include <phosphor-logging/elog-errors.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -070016#include <phosphor-logging/log.hpp>
William A. Kennington III4c008022018-10-12 17:18:14 -070017#include <sdbusplus/message/types.hpp>
Patrick Venture0b02be92018-08-31 11:55:55 -070018#include <set>
19#include <xyz/openbmc_project/Common/error.hpp>
20#include <xyz/openbmc_project/Sensor/Value/server.hpp>
21
Ratan Guptae0cc8552018-01-22 14:23:04 +053022static constexpr uint8_t fruInventoryDevice = 0x10;
23static constexpr uint8_t IPMIFruInventory = 0x02;
24static constexpr uint8_t BMCSlaveAddress = 0x20;
25
Patrick Venture0b02be92018-08-31 11:55:55 -070026extern int updateSensorRecordFromSSRAESC(const void*);
27extern sd_bus* bus;
Tom Josephbe703f72017-03-09 12:34:35 +053028extern const ipmi::sensor::IdInfoMap sensors;
Ratan Guptae0cc8552018-01-22 14:23:04 +053029extern const FruMap frus;
30
Tom Josephbe703f72017-03-09 12:34:35 +053031using namespace phosphor::logging;
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -050032using InternalFailure =
33 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Chris Austenac4604a2015-10-13 12:43:27 -050034
James Feist37544422018-10-12 14:57:06 -070035namespace variant_ns = sdbusplus::message::variant_ns;
36
Patrick Venture0b02be92018-08-31 11:55:55 -070037void register_netfn_sen_functions() __attribute__((constructor));
Chris Austenac4604a2015-10-13 12:43:27 -050038
Patrick Venture0b02be92018-08-31 11:55:55 -070039struct sensorTypemap_t
40{
Chris Austen0012e9b2015-10-22 01:37:46 -050041 uint8_t number;
Chris Austend7cf0e42015-11-07 14:27:12 -060042 uint8_t typecode;
Chris Austen0012e9b2015-10-22 01:37:46 -050043 char dbusname[32];
Patrick Venture0b02be92018-08-31 11:55:55 -070044};
Chris Austen0012e9b2015-10-22 01:37:46 -050045
Chris Austen0012e9b2015-10-22 01:37:46 -050046sensorTypemap_t g_SensorTypeMap[] = {
47
Chris Austend7cf0e42015-11-07 14:27:12 -060048 {0x01, 0x6F, "Temp"},
49 {0x0C, 0x6F, "DIMM"},
50 {0x0C, 0x6F, "MEMORY_BUFFER"},
51 {0x07, 0x6F, "PROC"},
52 {0x07, 0x6F, "CORE"},
53 {0x07, 0x6F, "CPU"},
54 {0x0F, 0x6F, "BootProgress"},
Patrick Venture0b02be92018-08-31 11:55:55 -070055 {0xe9, 0x09, "OccStatus"}, // E9 is an internal mapping to handle sensor
56 // type code os 0x09
Chris Austend7cf0e42015-11-07 14:27:12 -060057 {0xC3, 0x6F, "BootCount"},
58 {0x1F, 0x6F, "OperatingSystemStatus"},
Chris Austen800ba712015-12-03 15:31:00 -060059 {0x12, 0x6F, "SYSTEM_EVENT"},
60 {0xC7, 0x03, "SYSTEM"},
61 {0xC7, 0x03, "MAIN_PLANAR"},
Chris Austen10ccc0f2015-12-10 18:27:04 -060062 {0xC2, 0x6F, "PowerCap"},
Tom Joseph558184e2017-09-01 13:45:05 +053063 {0x0b, 0xCA, "PowerSupplyRedundancy"},
Jayanth Othayoth0661beb2017-03-22 06:00:58 -050064 {0xDA, 0x03, "TurboAllowed"},
Tom Joseph558184e2017-09-01 13:45:05 +053065 {0xD8, 0xC8, "PowerSupplyDerating"},
Chris Austend7cf0e42015-11-07 14:27:12 -060066 {0xFF, 0x00, ""},
Chris Austen0012e9b2015-10-22 01:37:46 -050067};
68
Patrick Venture0b02be92018-08-31 11:55:55 -070069struct sensor_data_t
70{
Chris Austenac4604a2015-10-13 12:43:27 -050071 uint8_t sennum;
Patrick Venture0b02be92018-08-31 11:55:55 -070072} __attribute__((packed));
Chris Austenac4604a2015-10-13 12:43:27 -050073
Patrick Venture0b02be92018-08-31 11:55:55 -070074struct sensorreadingresp_t
75{
Chris Austen10ccc0f2015-12-10 18:27:04 -060076 uint8_t value;
77 uint8_t operation;
78 uint8_t indication[2];
Patrick Venture0b02be92018-08-31 11:55:55 -070079} __attribute__((packed));
Chris Austenac4604a2015-10-13 12:43:27 -050080
Patrick Venture0b02be92018-08-31 11:55:55 -070081int get_bus_for_path(const char* path, char** busname)
82{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070083 return mapper_get_service(bus, path, busname);
84}
Tomd700e762016-09-20 18:24:13 +053085
Emily Shaffer2ae09b92017-04-05 15:09:41 -070086// Use a lookup table to find the interface name of a specific sensor
87// This will be used until an alternative is found. this is the first
88// step for mapping IPMI
Patrick Venture0b02be92018-08-31 11:55:55 -070089int find_openbmc_path(uint8_t num, dbus_interface_t* interface)
90{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070091 int rc;
92
Emily Shaffer2ae09b92017-04-05 15:09:41 -070093 const auto& sensor_it = sensors.find(num);
94 if (sensor_it == sensors.end())
95 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -050096 // The sensor map does not contain the sensor requested
97 return -EINVAL;
Emily Shaffer2ae09b92017-04-05 15:09:41 -070098 }
99
100 const auto& info = sensor_it->second;
101
Patrick Williams8451edf2017-06-13 09:01:06 -0500102 char* busname = nullptr;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700103 rc = get_bus_for_path(info.sensorPath.c_str(), &busname);
Patrick Venture0b02be92018-08-31 11:55:55 -0700104 if (rc < 0)
105 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700106 std::fprintf(stderr, "Failed to get %s busname: %s\n",
107 info.sensorPath.c_str(), busname);
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700108 goto final;
109 }
110
111 interface->sensortype = info.sensorType;
112 strcpy(interface->bus, busname);
113 strcpy(interface->path, info.sensorPath.c_str());
114 // Take the interface name from the beginning of the DbusInterfaceMap. This
115 // works for the Value interface but may not suffice for more complex
116 // sensors.
117 // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103
Patrick Venture0b02be92018-08-31 11:55:55 -0700118 strcpy(interface->interface,
119 info.propertyInterfaces.begin()->first.c_str());
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700120 interface->sensornumber = num;
121
122final:
123 free(busname);
124 return rc;
125}
126
Tomd700e762016-09-20 18:24:13 +0530127/////////////////////////////////////////////////////////////////////
128//
129// Routines used by ipmi commands wanting to interact on the dbus
130//
131/////////////////////////////////////////////////////////////////////
Patrick Venture0b02be92018-08-31 11:55:55 -0700132int set_sensor_dbus_state_s(uint8_t number, const char* method,
133 const char* value)
134{
Tomd700e762016-09-20 18:24:13 +0530135
136 dbus_interface_t a;
137 int r;
138 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700139 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530140
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700141 std::fprintf(ipmidbus,
142 "Attempting to set a dbus Variant Sensor 0x%02x via %s with a "
143 "value of %s\n",
144 number, method, value);
Tomd700e762016-09-20 18:24:13 +0530145
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700146 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530147
Patrick Venture0b02be92018-08-31 11:55:55 -0700148 if (r < 0)
149 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700150 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530151 return 0;
152 }
153
Patrick Venture0b02be92018-08-31 11:55:55 -0700154 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
155 method);
156 if (r < 0)
157 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700158 std::fprintf(stderr, "Failed to create a method call: %s",
159 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530160 goto final;
161 }
162
163 r = sd_bus_message_append(m, "v", "s", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700164 if (r < 0)
165 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700166 std::fprintf(stderr, "Failed to create a input parameter: %s",
167 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530168 goto final;
169 }
170
Tomd700e762016-09-20 18:24:13 +0530171 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700172 if (r < 0)
173 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700174 std::fprintf(stderr, "Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530175 }
176
177final:
178 sd_bus_error_free(&error);
179 m = sd_bus_message_unref(m);
180
181 return 0;
182}
Patrick Venture0b02be92018-08-31 11:55:55 -0700183int set_sensor_dbus_state_y(uint8_t number, const char* method,
184 const uint8_t value)
185{
Tomd700e762016-09-20 18:24:13 +0530186
187 dbus_interface_t a;
188 int r;
189 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700190 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530191
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700192 std::fprintf(ipmidbus,
193 "Attempting to set a dbus Variant Sensor 0x%02x via %s with a "
194 "value of 0x%02x\n",
195 number, method, value);
Tomd700e762016-09-20 18:24:13 +0530196
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700197 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530198
Patrick Venture0b02be92018-08-31 11:55:55 -0700199 if (r < 0)
200 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700201 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530202 return 0;
203 }
204
Patrick Venture0b02be92018-08-31 11:55:55 -0700205 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
206 method);
207 if (r < 0)
208 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700209 std::fprintf(stderr, "Failed to create a method call: %s",
210 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530211 goto final;
212 }
213
214 r = sd_bus_message_append(m, "v", "i", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700215 if (r < 0)
216 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700217 std::fprintf(stderr, "Failed to create a input parameter: %s",
218 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530219 goto final;
220 }
221
Tomd700e762016-09-20 18:24:13 +0530222 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700223 if (r < 0)
224 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700225 std::fprintf(stderr, "12 Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530226 }
227
228final:
229 sd_bus_error_free(&error);
230 m = sd_bus_message_unref(m);
231
232 return 0;
233}
234
Patrick Venture0b02be92018-08-31 11:55:55 -0700235uint8_t dbus_to_sensor_type(char* p)
236{
Chris Austenac4604a2015-10-13 12:43:27 -0500237
Patrick Venture0b02be92018-08-31 11:55:55 -0700238 sensorTypemap_t* s = g_SensorTypeMap;
239 char r = 0;
240 while (s->number != 0xFF)
241 {
242 if (!strcmp(s->dbusname, p))
243 {
Tom Joseph558184e2017-09-01 13:45:05 +0530244 r = s->typecode;
Patrick Venture0b02be92018-08-31 11:55:55 -0700245 break;
Chris Austenac4604a2015-10-13 12:43:27 -0500246 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500247 s++;
Chris Austenac4604a2015-10-13 12:43:27 -0500248 }
249
Chris Austen0012e9b2015-10-22 01:37:46 -0500250 if (s->number == 0xFF)
251 printf("Failed to find Sensor Type %s\n", p);
Chris Austenac4604a2015-10-13 12:43:27 -0500252
Chris Austen0012e9b2015-10-22 01:37:46 -0500253 return r;
Chris Austenac4604a2015-10-13 12:43:27 -0500254}
255
Patrick Venture0b02be92018-08-31 11:55:55 -0700256uint8_t get_type_from_interface(dbus_interface_t dbus_if)
257{
Chris Austen0012e9b2015-10-22 01:37:46 -0500258
Patrick Venture0b02be92018-08-31 11:55:55 -0700259 char* p;
Brad Bishop56003452016-10-05 21:49:19 -0400260 uint8_t type;
Chris Austen0012e9b2015-10-22 01:37:46 -0500261
Chris Austen0012e9b2015-10-22 01:37:46 -0500262 // This is where sensors that do not exist in dbus but do
263 // exist in the host code stop. This should indicate it
264 // is not a supported sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700265 if (dbus_if.interface[0] == 0)
266 {
267 return 0;
268 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500269
Emily Shaffer71174412017-04-05 15:10:40 -0700270 // Fetch type from interface itself.
271 if (dbus_if.sensortype != 0)
272 {
273 type = dbus_if.sensortype;
Patrick Venture0b02be92018-08-31 11:55:55 -0700274 }
275 else
276 {
Chris Austen0012e9b2015-10-22 01:37:46 -0500277 // Non InventoryItems
Patrick Venture0b02be92018-08-31 11:55:55 -0700278 p = strrchr(dbus_if.path, '/');
279 type = dbus_to_sensor_type(p + 1);
Chris Austen0012e9b2015-10-22 01:37:46 -0500280 }
281
Brad Bishop56003452016-10-05 21:49:19 -0400282 return type;
Patrick Venture0b02be92018-08-31 11:55:55 -0700283}
Chris Austen0012e9b2015-10-22 01:37:46 -0500284
Emily Shaffer391f3302017-04-03 10:27:08 -0700285// Replaces find_sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700286uint8_t find_type_for_sensor_number(uint8_t num)
287{
Emily Shaffer391f3302017-04-03 10:27:08 -0700288 int r;
289 dbus_interface_t dbus_if;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700290 r = find_openbmc_path(num, &dbus_if);
Patrick Venture0b02be92018-08-31 11:55:55 -0700291 if (r < 0)
292 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700293 std::fprintf(stderr, "Could not find sensor %d\n", num);
Lei YU91875f72018-04-03 15:14:49 +0800294 return 0;
Emily Shaffer391f3302017-04-03 10:27:08 -0700295 }
296 return get_type_from_interface(dbus_if);
297}
298
Chris Austen0012e9b2015-10-22 01:37:46 -0500299ipmi_ret_t ipmi_sen_get_sensor_type(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700300 ipmi_request_t request,
301 ipmi_response_t response,
302 ipmi_data_len_t data_len,
303 ipmi_context_t context)
Chris Austenac4604a2015-10-13 12:43:27 -0500304{
Patrick Ventured99148b2018-10-13 10:06:13 -0700305 auto reqptr = static_cast<sensor_data_t*>(request);
Chris Austenac4604a2015-10-13 12:43:27 -0500306 ipmi_ret_t rc = IPMI_CC_OK;
307
Patrick Venture0b02be92018-08-31 11:55:55 -0700308 printf("IPMI GET_SENSOR_TYPE [0x%02X]\n", reqptr->sennum);
Chris Austenac4604a2015-10-13 12:43:27 -0500309
310 // TODO Not sure what the System-event-sensor is suppose to return
311 // need to ask Hostboot team
Patrick Venture0b02be92018-08-31 11:55:55 -0700312 unsigned char buf[] = {0x00, 0x6F};
Chris Austenac4604a2015-10-13 12:43:27 -0500313
Emily Shaffer391f3302017-04-03 10:27:08 -0700314 buf[0] = find_type_for_sensor_number(reqptr->sennum);
Chris Austen0012e9b2015-10-22 01:37:46 -0500315
316 // HACK UNTIL Dbus gets updated or we find a better way
Patrick Venture0b02be92018-08-31 11:55:55 -0700317 if (buf[0] == 0)
318 {
Chris Austen800ba712015-12-03 15:31:00 -0600319 rc = IPMI_CC_SENSOR_INVALID;
Chris Austen0012e9b2015-10-22 01:37:46 -0500320 }
321
Chris Austenac4604a2015-10-13 12:43:27 -0500322 *data_len = sizeof(buf);
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700323 std::memcpy(response, &buf, *data_len);
Chris Austenac4604a2015-10-13 12:43:27 -0500324
Chris Austenac4604a2015-10-13 12:43:27 -0500325 return rc;
326}
327
Patrick Venture0b02be92018-08-31 11:55:55 -0700328const std::set<std::string> analogSensorInterfaces = {
Emily Shaffercc941e12017-06-14 13:06:26 -0700329 "xyz.openbmc_project.Sensor.Value",
Patrick Venturee9a64052017-08-18 19:17:27 -0700330 "xyz.openbmc_project.Control.FanPwm",
Emily Shaffercc941e12017-06-14 13:06:26 -0700331};
332
333bool isAnalogSensor(const std::string& interface)
334{
335 return (analogSensorInterfaces.count(interface));
336}
337
Patrick Venture0b02be92018-08-31 11:55:55 -0700338ipmi_ret_t setSensorReading(void* request)
Tom Josephbe703f72017-03-09 12:34:35 +0530339{
Tom Joseph816e92b2017-09-06 19:23:00 +0530340 ipmi::sensor::SetSensorReadingReq cmdData =
Patrick Venture0b02be92018-08-31 11:55:55 -0700341 *(static_cast<ipmi::sensor::SetSensorReadingReq*>(request));
Tom Josephbe703f72017-03-09 12:34:35 +0530342
343 // Check if the Sensor Number is present
Dhruvaraj Subhashchandrane0af7202017-07-12 06:35:20 -0500344 const auto iter = sensors.find(cmdData.number);
Tom Josephbe703f72017-03-09 12:34:35 +0530345 if (iter == sensors.end())
346 {
347 return IPMI_CC_SENSOR_INVALID;
348 }
349
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500350 try
351 {
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500352 if (ipmi::sensor::Mutability::Write !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700353 (iter->second.mutability & ipmi::sensor::Mutability::Write))
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500354 {
355 log<level::ERR>("Sensor Set operation is not allowed",
356 entry("SENSOR_NUM=%d", cmdData.number));
357 return IPMI_CC_ILLEGAL_COMMAND;
358 }
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500359 return iter->second.updateFunc(cmdData, iter->second);
360 }
361 catch (InternalFailure& e)
362 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700363 log<level::ERR>("Set sensor failed",
364 entry("SENSOR_NUM=%d", cmdData.number));
365 commit<InternalFailure>();
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500366 }
Tom Joseph82024322017-09-28 20:07:29 +0530367 catch (const std::runtime_error& e)
368 {
369 log<level::ERR>(e.what());
370 }
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500371
372 return IPMI_CC_UNSPECIFIED_ERROR;
Tom Josephbe703f72017-03-09 12:34:35 +0530373}
Chris Austenac4604a2015-10-13 12:43:27 -0500374
Chris Austen0012e9b2015-10-22 01:37:46 -0500375ipmi_ret_t ipmi_sen_set_sensor(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700376 ipmi_request_t request, ipmi_response_t response,
377 ipmi_data_len_t data_len, ipmi_context_t context)
Chris Austenac4604a2015-10-13 12:43:27 -0500378{
Patrick Ventured99148b2018-10-13 10:06:13 -0700379 auto reqptr = static_cast<sensor_data_t*>(request);
Chris Austenac4604a2015-10-13 12:43:27 -0500380
Aditya Saripalli5fb14602017-11-09 14:46:27 +0530381 log<level::DEBUG>("IPMI SET_SENSOR",
382 entry("SENSOR_NUM=0x%02x", reqptr->sennum));
Chris Austenac4604a2015-10-13 12:43:27 -0500383
Tom Josephbe703f72017-03-09 12:34:35 +0530384 /*
385 * This would support the Set Sensor Reading command for the presence
386 * and functional state of Processor, Core & DIMM. For the remaining
387 * sensors the existing support is invoked.
388 */
389 auto ipmiRC = setSensorReading(request);
390
Patrick Venture0b02be92018-08-31 11:55:55 -0700391 if (ipmiRC == IPMI_CC_SENSOR_INVALID)
Tom Josephbe703f72017-03-09 12:34:35 +0530392 {
393 updateSensorRecordFromSSRAESC(reqptr);
394 ipmiRC = IPMI_CC_OK;
395 }
Chris Austen8a45e7c2015-10-15 00:31:46 -0500396
Patrick Venture0b02be92018-08-31 11:55:55 -0700397 *data_len = 0;
Tom Josephbe703f72017-03-09 12:34:35 +0530398 return ipmiRC;
Chris Austenac4604a2015-10-13 12:43:27 -0500399}
400
Tom Joseph3ee668f2018-03-02 19:49:17 +0530401ipmi_ret_t ipmi_sen_get_sensor_reading(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700402 ipmi_request_t request,
403 ipmi_response_t response,
404 ipmi_data_len_t data_len,
405 ipmi_context_t context)
Tom Joseph3ee668f2018-03-02 19:49:17 +0530406{
Patrick Ventured99148b2018-10-13 10:06:13 -0700407 auto reqptr = static_cast<sensor_data_t*>(request);
408 auto resp = static_cast<sensorreadingresp_t*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700409 ipmi::sensor::GetSensorResponse getResponse{};
Tom Joseph3ee668f2018-03-02 19:49:17 +0530410 static constexpr auto scanningEnabledBit = 6;
411
412 const auto iter = sensors.find(reqptr->sennum);
413 if (iter == sensors.end())
414 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -0500415 return IPMI_CC_SENSOR_INVALID;
Tom Joseph3ee668f2018-03-02 19:49:17 +0530416 }
417 if (ipmi::sensor::Mutability::Read !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700418 (iter->second.mutability & ipmi::sensor::Mutability::Read))
Tom Joseph3ee668f2018-03-02 19:49:17 +0530419 {
Jayanth Othayoth6ccf8812018-04-05 22:58:48 -0500420 return IPMI_CC_ILLEGAL_COMMAND;
Tom Joseph3ee668f2018-03-02 19:49:17 +0530421 }
422
423 try
424 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700425 getResponse = iter->second.getFunc(iter->second);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530426 *data_len = getResponse.size();
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700427 std::memcpy(resp, getResponse.data(), *data_len);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530428 resp->operation = 1 << scanningEnabledBit;
429 return IPMI_CC_OK;
430 }
431 catch (const std::exception& e)
432 {
433 *data_len = getResponse.size();
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700434 std::memcpy(resp, getResponse.data(), *data_len);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530435 return IPMI_CC_OK;
436 }
437}
438
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530439void getSensorThresholds(uint8_t sensorNum,
440 get_sdr::GetSensorThresholdsResponse* response)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600441{
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530442 constexpr auto warningThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600443 "xyz.openbmc_project.Sensor.Threshold.Warning";
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530444 constexpr auto criticalThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600445 "xyz.openbmc_project.Sensor.Threshold.Critical";
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600446
447 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
448
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530449 const auto iter = sensors.find(sensorNum);
450 const auto info = iter->second;
451
452 auto service = ipmi::getService(bus, info.sensorInterface, info.sensorPath);
453
Patrick Venture0b02be92018-08-31 11:55:55 -0700454 auto warnThresholds = ipmi::getAllDbusProperties(
455 bus, service, info.sensorPath, warningThreshIntf);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530456
William A. Kennington III4c008022018-10-12 17:18:14 -0700457 double warnLow = variant_ns::visit(ipmi::VariantToDoubleVisitor(),
458 warnThresholds["WarningLow"]);
459 double warnHigh = variant_ns::visit(ipmi::VariantToDoubleVisitor(),
460 warnThresholds["WarningHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530461
462 if (warnLow != 0)
463 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700464 warnLow *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700465 response->lowerNonCritical = static_cast<uint8_t>(
466 (warnLow - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530467 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700468 ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530469 }
470
471 if (warnHigh != 0)
472 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700473 warnHigh *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700474 response->upperNonCritical = static_cast<uint8_t>(
475 (warnHigh - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530476 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700477 ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530478 }
479
Patrick Venture0b02be92018-08-31 11:55:55 -0700480 auto critThresholds = ipmi::getAllDbusProperties(
481 bus, service, info.sensorPath, criticalThreshIntf);
William A. Kennington III4c008022018-10-12 17:18:14 -0700482 double critLow = variant_ns::visit(ipmi::VariantToDoubleVisitor(),
483 critThresholds["CriticalLow"]);
484 double critHigh = variant_ns::visit(ipmi::VariantToDoubleVisitor(),
485 critThresholds["CriticalHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530486
487 if (critLow != 0)
488 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700489 critLow *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700490 response->lowerCritical = static_cast<uint8_t>(
491 (critLow - 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::CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530494 }
495
496 if (critHigh != 0)
497 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700498 critHigh *= std::pow(10, info.scale - info.exponentR);
Patrick Venture0b02be92018-08-31 11:55:55 -0700499 response->upperCritical = static_cast<uint8_t>(
500 (critHigh - info.scaledOffset) / info.coefficientM);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530501 response->validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700502 ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530503 }
504}
505
506ipmi_ret_t ipmi_sen_get_sensor_thresholds(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700507 ipmi_request_t request,
508 ipmi_response_t response,
509 ipmi_data_len_t data_len,
510 ipmi_context_t context)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530511{
512 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
513
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600514 if (*data_len != sizeof(uint8_t))
515 {
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530516 *data_len = 0;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600517 return IPMI_CC_REQ_DATA_LEN_INVALID;
518 }
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600519
Patrick Venture0b02be92018-08-31 11:55:55 -0700520 auto sensorNum = *(reinterpret_cast<const uint8_t*>(request));
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530521 *data_len = 0;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600522
523 const auto iter = sensors.find(sensorNum);
524 if (iter == sensors.end())
525 {
526 return IPMI_CC_SENSOR_INVALID;
527 }
528
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530529 const auto info = iter->second;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600530
Patrick Venture0b02be92018-08-31 11:55:55 -0700531 // Proceed only if the sensor value interface is implemented.
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530532 if (info.propertyInterfaces.find(valueInterface) ==
533 info.propertyInterfaces.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600534 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700535 // return with valid mask as 0
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600536 return IPMI_CC_OK;
537 }
538
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530539 auto responseData =
540 reinterpret_cast<get_sdr::GetSensorThresholdsResponse*>(response);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600541
542 try
543 {
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530544 getSensorThresholds(sensorNum, responseData);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600545 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530546 catch (std::exception& e)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600547 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700548 // Mask if the property is not present
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600549 responseData->validMask = 0;
550 }
551
552 *data_len = sizeof(get_sdr::GetSensorThresholdsResponse);
553 return IPMI_CC_OK;
554}
555
Chris Austen0012e9b2015-10-22 01:37:46 -0500556ipmi_ret_t ipmi_sen_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
557 ipmi_request_t request, ipmi_response_t response,
Chris Austenac4604a2015-10-13 12:43:27 -0500558 ipmi_data_len_t data_len, ipmi_context_t context)
559{
Nan Li70aa8d92016-08-29 00:11:10 +0800560 ipmi_ret_t rc = IPMI_CC_INVALID;
Chris Austenac4604a2015-10-13 12:43:27 -0500561
Patrick Venture0b02be92018-08-31 11:55:55 -0700562 printf("IPMI S/E Wildcard Netfn:[0x%X], Cmd:[0x%X]\n", netfn, cmd);
Chris Austenac4604a2015-10-13 12:43:27 -0500563 *data_len = 0;
564
565 return rc;
566}
567
Emily Shafferd06e0e72017-04-05 09:08:57 -0700568ipmi_ret_t ipmi_sen_get_sdr_info(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
569 ipmi_request_t request,
570 ipmi_response_t response,
571 ipmi_data_len_t data_len,
572 ipmi_context_t context)
573{
574 auto resp = static_cast<get_sdr_info::GetSdrInfoResp*>(response);
575 if (request == nullptr ||
576 get_sdr_info::request::get_count(request) == false)
577 {
578 // Get Sensor Count
Ratan Guptae0cc8552018-01-22 14:23:04 +0530579 resp->count = sensors.size() + frus.size();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700580 }
581 else
582 {
583 resp->count = 1;
584 }
585
586 // Multiple LUNs not supported.
587 namespace response = get_sdr_info::response;
588 response::set_lun_present(0, &(resp->luns_and_dynamic_population));
589 response::set_lun_not_present(1, &(resp->luns_and_dynamic_population));
590 response::set_lun_not_present(2, &(resp->luns_and_dynamic_population));
591 response::set_lun_not_present(3, &(resp->luns_and_dynamic_population));
592 response::set_static_population(&(resp->luns_and_dynamic_population));
593
594 *data_len = SDR_INFO_RESP_SIZE;
595
596 return IPMI_CC_OK;
597}
598
Emily Shaffera344afc2017-04-13 15:09:39 -0700599ipmi_ret_t ipmi_sen_reserve_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
600 ipmi_request_t request,
601 ipmi_response_t response,
602 ipmi_data_len_t data_len,
603 ipmi_context_t context)
604{
605 // A constant reservation ID is okay until we implement add/remove SDR.
606 const uint16_t reservation_id = 1;
607 *(uint16_t*)response = reservation_id;
Emily Shaffer5a5a6282017-08-15 11:17:17 -0700608 *data_len = sizeof(uint16_t);
Emily Shaffera344afc2017-04-13 15:09:39 -0700609
610 printf("Created new IPMI SDR reservation ID %d\n", *(uint16_t*)response);
611 return IPMI_CC_OK;
612}
Chris Austenac4604a2015-10-13 12:43:27 -0500613
Patrick Venture0b02be92018-08-31 11:55:55 -0700614void setUnitFieldsForObject(const ipmi::sensor::Info* info,
615 get_sdr::SensorDataFullRecordBody* body)
Emily Shaffercc941e12017-06-14 13:06:26 -0700616{
Tom Josephdc212b22018-02-16 09:59:57 +0530617 namespace server = sdbusplus::xyz::openbmc_project::Sensor::server;
618 try
Emily Shaffercc941e12017-06-14 13:06:26 -0700619 {
Tom Josephdc212b22018-02-16 09:59:57 +0530620 auto unit = server::Value::convertUnitFromString(info->unit);
621 // Unit strings defined in
622 // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml
623 switch (unit)
Emily Shaffercc941e12017-06-14 13:06:26 -0700624 {
Tom Josephdc212b22018-02-16 09:59:57 +0530625 case server::Value::Unit::DegreesC:
626 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C;
627 break;
628 case server::Value::Unit::RPMS:
Patrick Venture0b02be92018-08-31 11:55:55 -0700629 body->sensor_units_2_base =
630 get_sdr::SENSOR_UNIT_REVOLUTIONS; // revolutions
Tom Josephdc212b22018-02-16 09:59:57 +0530631 get_sdr::body::set_rate_unit(0b100, body); // per minute
632 break;
633 case server::Value::Unit::Volts:
634 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS;
635 break;
636 case server::Value::Unit::Meters:
637 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS;
638 break;
639 case server::Value::Unit::Amperes:
640 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES;
641 break;
642 case server::Value::Unit::Joules:
643 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES;
644 break;
645 case server::Value::Unit::Watts:
646 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS;
647 break;
648 default:
649 // Cannot be hit.
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700650 std::fprintf(stderr, "Unknown value unit type: = %s\n",
651 info->unit.c_str());
Emily Shaffercc941e12017-06-14 13:06:26 -0700652 }
653 }
Patrick Venture64678b82018-10-13 13:11:32 -0700654 catch (const sdbusplus::exception::InvalidEnumString& e)
Emily Shaffercc941e12017-06-14 13:06:26 -0700655 {
Tom Josephdc212b22018-02-16 09:59:57 +0530656 log<level::WARNING>("Warning: no unit provided for sensor!");
Emily Shaffercc941e12017-06-14 13:06:26 -0700657 }
Emily Shaffercc941e12017-06-14 13:06:26 -0700658}
659
Patrick Venture0b02be92018-08-31 11:55:55 -0700660ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body,
661 const ipmi::sensor::Info* info,
Emily Shafferbbef71c2017-05-08 16:36:17 -0700662 ipmi_data_len_t data_len)
663{
664 /* Functional sensor case */
Emily Shaffercc941e12017-06-14 13:06:26 -0700665 if (isAnalogSensor(info->propertyInterfaces.begin()->first))
Emily Shafferbbef71c2017-05-08 16:36:17 -0700666 {
Emily Shafferbbef71c2017-05-08 16:36:17 -0700667
668 body->sensor_units_1 = 0; // unsigned, no rate, no modifier, not a %
669
670 /* Unit info */
Tom Josephdc212b22018-02-16 09:59:57 +0530671 setUnitFieldsForObject(info, body);
Emily Shaffer10f49592017-05-10 12:01:10 -0700672
673 get_sdr::body::set_b(info->coefficientB, body);
674 get_sdr::body::set_m(info->coefficientM, body);
675 get_sdr::body::set_b_exp(info->exponentB, body);
Tom Josephdc212b22018-02-16 09:59:57 +0530676 get_sdr::body::set_r_exp(info->exponentR, body);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700677
Emily Shafferbbef71c2017-05-08 16:36:17 -0700678 get_sdr::body::set_id_type(0b00, body); // 00 = unicode
Emily Shafferbbef71c2017-05-08 16:36:17 -0700679 }
680
Tom Joseph96423912018-01-25 00:14:34 +0530681 /* ID string */
682 auto id_string = info->sensorNameFunc(*info);
683
684 if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH)
685 {
686 get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body);
687 }
688 else
689 {
690 get_sdr::body::set_id_strlen(id_string.length(), body);
691 }
692 strncpy(body->id_string, id_string.c_str(),
693 get_sdr::body::get_id_strlen(body));
694
Emily Shafferbbef71c2017-05-08 16:36:17 -0700695 return IPMI_CC_OK;
696};
697
Ratan Guptae0cc8552018-01-22 14:23:04 +0530698ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response,
699 ipmi_data_len_t data_len)
700{
701 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
702 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700703 get_sdr::SensorDataFruRecord record{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530704 auto dataLength = 0;
705
706 auto fru = frus.begin();
Patrick Venture0b02be92018-08-31 11:55:55 -0700707 uint8_t fruID{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530708 auto recordID = get_sdr::request::get_record_id(req);
709
710 fruID = recordID - FRU_RECORD_ID_START;
711 fru = frus.find(fruID);
712 if (fru == frus.end())
713 {
714 return IPMI_CC_SENSOR_INVALID;
715 }
716
717 /* Header */
718 get_sdr::header::set_record_id(recordID, &(record.header));
719 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
720 record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD;
721 record.header.record_length = sizeof(record.key) + sizeof(record.body);
722
723 /* Key */
724 record.key.fruID = fruID;
725 record.key.accessLun |= IPMI_LOGICAL_FRU;
726 record.key.deviceAddress = BMCSlaveAddress;
727
728 /* Body */
729 record.body.entityID = fru->second[0].entityID;
730 record.body.entityInstance = fru->second[0].entityInstance;
731 record.body.deviceType = fruInventoryDevice;
732 record.body.deviceTypeModifier = IPMIFruInventory;
733
734 /* Device ID string */
Patrick Venture0b02be92018-08-31 11:55:55 -0700735 auto deviceID =
736 fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1,
737 fru->second[0].path.length());
Ratan Guptae0cc8552018-01-22 14:23:04 +0530738
739 if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH)
740 {
741 get_sdr::body::set_device_id_strlen(
Patrick Venture0b02be92018-08-31 11:55:55 -0700742 get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530743 }
744 else
745 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700746 get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530747 }
748
749 strncpy(record.body.deviceID, deviceID.c_str(),
750 get_sdr::body::get_device_id_strlen(&(record.body)));
751
752 if (++fru == frus.end())
753 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700754 get_sdr::response::set_next_record_id(END_OF_RECORD,
755 resp); // last record
Ratan Guptae0cc8552018-01-22 14:23:04 +0530756 }
757 else
758 {
759 get_sdr::response::set_next_record_id(
Patrick Venture0b02be92018-08-31 11:55:55 -0700760 (FRU_RECORD_ID_START + fru->first), resp);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530761 }
762
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700763 // Check for invalid offset size
764 if (req->offset > sizeof(record))
Ratan Guptae0cc8552018-01-22 14:23:04 +0530765 {
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700766 return IPMI_CC_PARM_OUT_OF_RANGE;
Ratan Guptae0cc8552018-01-22 14:23:04 +0530767 }
768
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700769 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
770 sizeof(record) - req->offset);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530771
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700772 std::memcpy(resp->record_data,
Jason M. Bills1cd85962018-10-05 12:04:01 -0700773 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530774
775 *data_len = dataLength;
776 *data_len += 2; // additional 2 bytes for next record ID
777
778 return IPMI_CC_OK;
779}
780
Emily Shafferbbef71c2017-05-08 16:36:17 -0700781ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
782 ipmi_request_t request, ipmi_response_t response,
783 ipmi_data_len_t data_len, ipmi_context_t context)
784{
785 ipmi_ret_t ret = IPMI_CC_OK;
Patrick Venture0b02be92018-08-31 11:55:55 -0700786 get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request;
787 get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700788 get_sdr::SensorDataFullRecord record = {0};
789 if (req != NULL)
790 {
791 // Note: we use an iterator so we can provide the next ID at the end of
792 // the call.
793 auto sensor = sensors.begin();
Ratan Guptae0cc8552018-01-22 14:23:04 +0530794 auto recordID = get_sdr::request::get_record_id(req);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700795
796 // At the beginning of a scan, the host side will send us id=0.
Ratan Guptae0cc8552018-01-22 14:23:04 +0530797 if (recordID != 0)
Emily Shafferbbef71c2017-05-08 16:36:17 -0700798 {
Ratan Guptae0cc8552018-01-22 14:23:04 +0530799 // recordID greater then 255,it means it is a FRU record.
800 // Currently we are supporting two record types either FULL record
801 // or FRU record.
802 if (recordID >= FRU_RECORD_ID_START)
803 {
804 return ipmi_fru_get_sdr(request, response, data_len);
805 }
806 else
807 {
808 sensor = sensors.find(recordID);
809 if (sensor == sensors.end())
810 {
811 return IPMI_CC_SENSOR_INVALID;
812 }
Emily Shafferbbef71c2017-05-08 16:36:17 -0700813 }
814 }
815
816 uint8_t sensor_id = sensor->first;
817
818 /* Header */
819 get_sdr::header::set_record_id(sensor_id, &(record.header));
820 record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1
821 record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD;
822 record.header.record_length = sizeof(get_sdr::SensorDataFullRecord);
823
824 /* Key */
Tom Joseph96423912018-01-25 00:14:34 +0530825 get_sdr::key::set_owner_id_bmc(&(record.key));
Emily Shafferbbef71c2017-05-08 16:36:17 -0700826 record.key.sensor_number = sensor_id;
827
828 /* Body */
Tom Joseph96423912018-01-25 00:14:34 +0530829 record.body.entity_id = sensor->second.entityType;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700830 record.body.sensor_type = sensor->second.sensorType;
831 record.body.event_reading_type = sensor->second.sensorReadingType;
Tom Joseph96423912018-01-25 00:14:34 +0530832 record.body.entity_instance = sensor->second.instance;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700833
834 // Set the type-specific details given the DBus interface
835 ret = populate_record_from_dbus(&(record.body), &(sensor->second),
836 data_len);
837
838 if (++sensor == sensors.end())
839 {
Ratan Guptae0cc8552018-01-22 14:23:04 +0530840 // we have reached till end of sensor, so assign the next record id
841 // to 256(Max Sensor ID = 255) + FRU ID(may start with 0).
Patrick Venture0b02be92018-08-31 11:55:55 -0700842 auto next_record_id =
843 (frus.size()) ? frus.begin()->first + FRU_RECORD_ID_START
844 : END_OF_RECORD;
Ratan Guptae0cc8552018-01-22 14:23:04 +0530845
846 get_sdr::response::set_next_record_id(next_record_id, resp);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700847 }
848 else
849 {
850 get_sdr::response::set_next_record_id(sensor->first, resp);
851 }
852
Emily Shaffer6c9ee512018-09-27 11:04:36 -0700853 if (req->offset > sizeof(record))
854 {
855 return IPMI_CC_PARM_OUT_OF_RANGE;
856 }
857
858 // data_len will ultimately be the size of the record, plus
859 // the size of the next record ID:
860 *data_len = std::min(static_cast<size_t>(req->bytes_to_read),
861 sizeof(record) - req->offset);
862
863 std::memcpy(resp->record_data,
864 reinterpret_cast<uint8_t*>(&record) + req->offset,
865 *data_len);
866
867 // data_len should include the LSB and MSB:
Jason M. Bills1cd85962018-10-05 12:04:01 -0700868 *data_len +=
869 sizeof(resp->next_record_id_lsb) + sizeof(resp->next_record_id_msb);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700870 }
871
872 return ret;
873}
874
Chris Austenac4604a2015-10-13 12:43:27 -0500875void register_netfn_sen_functions()
876{
Tom05732372016-09-06 17:21:23 +0530877 // <Wildcard Command>
Patrick Venture0b02be92018-08-31 11:55:55 -0700878 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_WILDCARD, nullptr,
879 ipmi_sen_wildcard, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -0500880
Tom05732372016-09-06 17:21:23 +0530881 // <Get Sensor Type>
Patrick Venture0b02be92018-08-31 11:55:55 -0700882 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_TYPE, nullptr,
883 ipmi_sen_get_sensor_type, PRIVILEGE_USER);
Chris Austenac4604a2015-10-13 12:43:27 -0500884
Tom05732372016-09-06 17:21:23 +0530885 // <Set Sensor Reading and Event Status>
Patrick Venture0b02be92018-08-31 11:55:55 -0700886 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_SET_SENSOR, nullptr,
887 ipmi_sen_set_sensor, PRIVILEGE_OPERATOR);
Chris Austen8a45e7c2015-10-15 00:31:46 -0500888
Tom05732372016-09-06 17:21:23 +0530889 // <Get Sensor Reading>
Patrick Venture0b02be92018-08-31 11:55:55 -0700890 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_READING, nullptr,
891 ipmi_sen_get_sensor_reading, PRIVILEGE_USER);
Emily Shaffera344afc2017-04-13 15:09:39 -0700892
Tom Joseph5ca50952018-02-22 00:33:38 +0530893 // <Reserve Device SDR Repository>
894 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_RESERVE_DEVICE_SDR_REPO,
Patrick Venture0b02be92018-08-31 11:55:55 -0700895 nullptr, ipmi_sen_reserve_sdr, PRIVILEGE_USER);
Chris Austen10ccc0f2015-12-10 18:27:04 -0600896
Tom Joseph5ca50952018-02-22 00:33:38 +0530897 // <Get Device SDR Info>
Patrick Venture0b02be92018-08-31 11:55:55 -0700898 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR_INFO, nullptr,
899 ipmi_sen_get_sdr_info, PRIVILEGE_USER);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700900
Tom Joseph5ca50952018-02-22 00:33:38 +0530901 // <Get Device SDR>
Patrick Venture0b02be92018-08-31 11:55:55 -0700902 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr,
903 ipmi_sen_get_sdr, PRIVILEGE_USER);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700904
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600905 // <Get Sensor Thresholds>
906 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_SENSOR_THRESHOLDS,
907 nullptr, ipmi_sen_get_sensor_thresholds,
908 PRIVILEGE_USER);
909
Chris Austenac4604a2015-10-13 12:43:27 -0500910 return;
911}