blob: d2fac668e6a84dd4ea6b257ee76c7683f0a11b2b [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 -070082int get_bus_for_path(const char* path, char** busname)
83{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070084 return mapper_get_service(bus, path, busname);
85}
Tomd700e762016-09-20 18:24:13 +053086
Emily Shaffer2ae09b92017-04-05 15:09:41 -070087// Use a lookup table to find the interface name of a specific sensor
88// This will be used until an alternative is found. this is the first
89// step for mapping IPMI
Patrick Venture0b02be92018-08-31 11:55:55 -070090int find_openbmc_path(uint8_t num, dbus_interface_t* interface)
91{
Emily Shaffer2ae09b92017-04-05 15:09:41 -070092 int rc;
93
Patrick Venturedb0cbe62019-09-09 14:47:22 -070094 const auto& sensor_it = ipmi::sensor::sensors.find(num);
95 if (sensor_it == ipmi::sensor::sensors.end())
Emily Shaffer2ae09b92017-04-05 15:09:41 -070096 {
Adriana Kobylakba23ff72018-09-12 12:58:43 -050097 // The sensor map does not contain the sensor requested
98 return -EINVAL;
Emily Shaffer2ae09b92017-04-05 15:09:41 -070099 }
100
101 const auto& info = sensor_it->second;
102
Patrick Williams8451edf2017-06-13 09:01:06 -0500103 char* busname = nullptr;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700104 rc = get_bus_for_path(info.sensorPath.c_str(), &busname);
Patrick Venture0b02be92018-08-31 11:55:55 -0700105 if (rc < 0)
106 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700107 std::fprintf(stderr, "Failed to get %s busname: %s\n",
108 info.sensorPath.c_str(), busname);
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700109 goto final;
110 }
111
112 interface->sensortype = info.sensorType;
113 strcpy(interface->bus, busname);
114 strcpy(interface->path, info.sensorPath.c_str());
115 // Take the interface name from the beginning of the DbusInterfaceMap. This
116 // works for the Value interface but may not suffice for more complex
117 // sensors.
118 // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103
Patrick Venture0b02be92018-08-31 11:55:55 -0700119 strcpy(interface->interface,
120 info.propertyInterfaces.begin()->first.c_str());
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700121 interface->sensornumber = num;
122
123final:
124 free(busname);
125 return rc;
126}
127
Tomd700e762016-09-20 18:24:13 +0530128/////////////////////////////////////////////////////////////////////
129//
130// Routines used by ipmi commands wanting to interact on the dbus
131//
132/////////////////////////////////////////////////////////////////////
Patrick Venture0b02be92018-08-31 11:55:55 -0700133int set_sensor_dbus_state_s(uint8_t number, const char* method,
134 const char* value)
135{
Tomd700e762016-09-20 18:24:13 +0530136
137 dbus_interface_t a;
138 int r;
139 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700140 sd_bus_message* m = NULL;
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 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700146 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530147 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 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700154 std::fprintf(stderr, "Failed to create a method call: %s",
155 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530156 goto final;
157 }
158
159 r = sd_bus_message_append(m, "v", "s", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700160 if (r < 0)
161 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700162 std::fprintf(stderr, "Failed to create a input parameter: %s",
163 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530164 goto final;
165 }
166
Tomd700e762016-09-20 18:24:13 +0530167 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700168 if (r < 0)
169 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700170 std::fprintf(stderr, "Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530171 }
172
173final:
174 sd_bus_error_free(&error);
175 m = sd_bus_message_unref(m);
176
177 return 0;
178}
Patrick Venture0b02be92018-08-31 11:55:55 -0700179int set_sensor_dbus_state_y(uint8_t number, const char* method,
180 const uint8_t value)
181{
Tomd700e762016-09-20 18:24:13 +0530182
183 dbus_interface_t a;
184 int r;
185 sd_bus_error error = SD_BUS_ERROR_NULL;
Patrick Venture0b02be92018-08-31 11:55:55 -0700186 sd_bus_message* m = NULL;
Tomd700e762016-09-20 18:24:13 +0530187
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700188 r = find_openbmc_path(number, &a);
Tomd700e762016-09-20 18:24:13 +0530189
Patrick Venture0b02be92018-08-31 11:55:55 -0700190 if (r < 0)
191 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700192 std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number);
Tomd700e762016-09-20 18:24:13 +0530193 return 0;
194 }
195
Patrick Venture0b02be92018-08-31 11:55:55 -0700196 r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface,
197 method);
198 if (r < 0)
199 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700200 std::fprintf(stderr, "Failed to create a method call: %s",
201 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530202 goto final;
203 }
204
205 r = sd_bus_message_append(m, "v", "i", value);
Patrick Venture0b02be92018-08-31 11:55:55 -0700206 if (r < 0)
207 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700208 std::fprintf(stderr, "Failed to create a input parameter: %s",
209 strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530210 goto final;
211 }
212
Tomd700e762016-09-20 18:24:13 +0530213 r = sd_bus_call(bus, m, 0, &error, NULL);
Patrick Venture0b02be92018-08-31 11:55:55 -0700214 if (r < 0)
215 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700216 std::fprintf(stderr, "12 Failed to call the method: %s", strerror(-r));
Tomd700e762016-09-20 18:24:13 +0530217 }
218
219final:
220 sd_bus_error_free(&error);
221 m = sd_bus_message_unref(m);
222
223 return 0;
224}
225
Patrick Venture0b02be92018-08-31 11:55:55 -0700226uint8_t dbus_to_sensor_type(char* p)
227{
Chris Austenac4604a2015-10-13 12:43:27 -0500228
Patrick Venture0b02be92018-08-31 11:55:55 -0700229 sensorTypemap_t* s = g_SensorTypeMap;
230 char r = 0;
231 while (s->number != 0xFF)
232 {
233 if (!strcmp(s->dbusname, p))
234 {
Tom Joseph558184e2017-09-01 13:45:05 +0530235 r = s->typecode;
Patrick Venture0b02be92018-08-31 11:55:55 -0700236 break;
Chris Austenac4604a2015-10-13 12:43:27 -0500237 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500238 s++;
Chris Austenac4604a2015-10-13 12:43:27 -0500239 }
240
Chris Austen0012e9b2015-10-22 01:37:46 -0500241 if (s->number == 0xFF)
242 printf("Failed to find Sensor Type %s\n", p);
Chris Austenac4604a2015-10-13 12:43:27 -0500243
Chris Austen0012e9b2015-10-22 01:37:46 -0500244 return r;
Chris Austenac4604a2015-10-13 12:43:27 -0500245}
246
Patrick Venture0b02be92018-08-31 11:55:55 -0700247uint8_t get_type_from_interface(dbus_interface_t dbus_if)
248{
Chris Austen0012e9b2015-10-22 01:37:46 -0500249
Brad Bishop56003452016-10-05 21:49:19 -0400250 uint8_t type;
Chris Austen0012e9b2015-10-22 01:37:46 -0500251
Chris Austen0012e9b2015-10-22 01:37:46 -0500252 // This is where sensors that do not exist in dbus but do
253 // exist in the host code stop. This should indicate it
254 // is not a supported sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700255 if (dbus_if.interface[0] == 0)
256 {
257 return 0;
258 }
Chris Austen0012e9b2015-10-22 01:37:46 -0500259
Emily Shaffer71174412017-04-05 15:10:40 -0700260 // Fetch type from interface itself.
261 if (dbus_if.sensortype != 0)
262 {
263 type = dbus_if.sensortype;
Patrick Venture0b02be92018-08-31 11:55:55 -0700264 }
265 else
266 {
Chris Austen0012e9b2015-10-22 01:37:46 -0500267 // Non InventoryItems
Patrick Venture4491a462018-10-13 13:00:42 -0700268 char* p = strrchr(dbus_if.path, '/');
Patrick Venture0b02be92018-08-31 11:55:55 -0700269 type = dbus_to_sensor_type(p + 1);
Chris Austen0012e9b2015-10-22 01:37:46 -0500270 }
271
Brad Bishop56003452016-10-05 21:49:19 -0400272 return type;
Patrick Venture0b02be92018-08-31 11:55:55 -0700273}
Chris Austen0012e9b2015-10-22 01:37:46 -0500274
Emily Shaffer391f3302017-04-03 10:27:08 -0700275// Replaces find_sensor
Patrick Venture0b02be92018-08-31 11:55:55 -0700276uint8_t find_type_for_sensor_number(uint8_t num)
277{
Emily Shaffer391f3302017-04-03 10:27:08 -0700278 int r;
279 dbus_interface_t dbus_if;
Emily Shaffer2ae09b92017-04-05 15:09:41 -0700280 r = find_openbmc_path(num, &dbus_if);
Patrick Venture0b02be92018-08-31 11:55:55 -0700281 if (r < 0)
282 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700283 std::fprintf(stderr, "Could not find sensor %d\n", num);
Lei YU91875f72018-04-03 15:14:49 +0800284 return 0;
Emily Shaffer391f3302017-04-03 10:27:08 -0700285 }
286 return get_type_from_interface(dbus_if);
287}
288
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000289/**
290 * @brief implements the get sensor type command.
291 * @param - sensorNumber
292 *
293 * @return IPMI completion code plus response data on success.
294 * - sensorType
295 * - eventType
296 **/
297
298ipmi::RspType<uint8_t, // sensorType
299 uint8_t // eventType
300 >
301 ipmiGetSensorType(uint8_t sensorNumber)
Chris Austenac4604a2015-10-13 12:43:27 -0500302{
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000303 uint8_t sensorType = find_type_for_sensor_number(sensorNumber);
Chris Austenac4604a2015-10-13 12:43:27 -0500304
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000305 if (sensorType == 0)
Patrick Venture0b02be92018-08-31 11:55:55 -0700306 {
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000307 return ipmi::responseSensorInvalid();
Chris Austen0012e9b2015-10-22 01:37:46 -0500308 }
309
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +0000310 constexpr uint8_t eventType = 0x6F;
311 return ipmi::responseSuccess(sensorType, eventType);
Chris Austenac4604a2015-10-13 12:43:27 -0500312}
313
Patrick Venture0b02be92018-08-31 11:55:55 -0700314const std::set<std::string> analogSensorInterfaces = {
Emily Shaffercc941e12017-06-14 13:06:26 -0700315 "xyz.openbmc_project.Sensor.Value",
Patrick Venturee9a64052017-08-18 19:17:27 -0700316 "xyz.openbmc_project.Control.FanPwm",
Emily Shaffercc941e12017-06-14 13:06:26 -0700317};
318
319bool isAnalogSensor(const std::string& interface)
320{
321 return (analogSensorInterfaces.count(interface));
322}
323
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000324/**
325@brief This command is used to set sensorReading.
326
327@param
328 - sensorNumber
329 - operation
330 - reading
331 - assertOffset0_7
332 - assertOffset8_14
333 - deassertOffset0_7
334 - deassertOffset8_14
335 - eventData1
336 - eventData2
337 - eventData3
338
339@return completion code on success.
340**/
341
342ipmi::RspType<> ipmiSetSensorReading(uint8_t sensorNumber, uint8_t operation,
343 uint8_t reading, uint8_t assertOffset0_7,
344 uint8_t assertOffset8_14,
345 uint8_t deassertOffset0_7,
346 uint8_t deassertOffset8_14,
347 uint8_t eventData1, uint8_t eventData2,
348 uint8_t eventData3)
Tom Josephbe703f72017-03-09 12:34:35 +0530349{
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000350 log<level::DEBUG>("IPMI SET_SENSOR",
351 entry("SENSOR_NUM=0x%02x", sensorNumber));
352
353 ipmi::sensor::SetSensorReadingReq cmdData;
354
355 cmdData.number = sensorNumber;
356 cmdData.operation = operation;
357 cmdData.reading = reading;
358 cmdData.assertOffset0_7 = assertOffset0_7;
359 cmdData.assertOffset8_14 = assertOffset8_14;
360 cmdData.deassertOffset0_7 = deassertOffset0_7;
361 cmdData.deassertOffset8_14 = deassertOffset8_14;
362 cmdData.eventData1 = eventData1;
363 cmdData.eventData2 = eventData2;
364 cmdData.eventData3 = eventData3;
Tom Josephbe703f72017-03-09 12:34:35 +0530365
366 // Check if the Sensor Number is present
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700367 const auto iter = ipmi::sensor::sensors.find(sensorNumber);
368 if (iter == ipmi::sensor::sensors.end())
Tom Josephbe703f72017-03-09 12:34:35 +0530369 {
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000370 updateSensorRecordFromSSRAESC(&sensorNumber);
371 return ipmi::responseSuccess();
Tom Josephbe703f72017-03-09 12:34:35 +0530372 }
373
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500374 try
375 {
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500376 if (ipmi::sensor::Mutability::Write !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700377 (iter->second.mutability & ipmi::sensor::Mutability::Write))
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500378 {
379 log<level::ERR>("Sensor Set operation is not allowed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000380 entry("SENSOR_NUM=%d", sensorNumber));
381 return ipmi::responseIllegalCommand();
Jayanth Othayoth0922bde2018-04-02 07:59:34 -0500382 }
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000383 auto ipmiRC = iter->second.updateFunc(cmdData, iter->second);
384 return ipmi::response(ipmiRC);
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500385 }
386 catch (InternalFailure& e)
387 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700388 log<level::ERR>("Set sensor failed",
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000389 entry("SENSOR_NUM=%d", sensorNumber));
Patrick Venture0b02be92018-08-31 11:55:55 -0700390 commit<InternalFailure>();
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000391 return ipmi::responseUnspecifiedError();
Dhruvaraj Subhashchandran18e99992017-08-09 09:10:47 -0500392 }
Tom Joseph82024322017-09-28 20:07:29 +0530393 catch (const std::runtime_error& e)
394 {
395 log<level::ERR>(e.what());
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +0000396 return ipmi::responseUnspecifiedError();
Tom Joseph82024322017-09-28 20:07:29 +0530397 }
Chris Austenac4604a2015-10-13 12:43:27 -0500398}
399
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000400/** @brief implements the get sensor reading command
401 * @param sensorNum - sensor number
402 *
403 * @returns IPMI completion code plus response data
404 * - senReading - sensor reading
405 * - reserved
406 * - readState - sensor reading state enabled
407 * - senScanState - sensor scan state disabled
408 * - allEventMessageState - all Event message state disabled
409 * - assertionStatesLsb - threshold levels states
410 * - assertionStatesMsb - discrete reading sensor states
411 */
412ipmi::RspType<uint8_t, // sensor reading
Tom Joseph3ee668f2018-03-02 19:49:17 +0530413
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000414 uint5_t, // reserved
415 bool, // reading state
Sui Chen4cc42552019-09-11 10:28:35 -0700416 bool, // 0 = sensor scanning state disabled
417 bool, // 0 = all event messages disabled
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000418
419 uint8_t, // threshold levels states
420 uint8_t // discrete reading sensor states
421 >
422 ipmiSensorGetSensorReading(uint8_t sensorNum)
423{
424 if (sensorNum == 0xFF)
425 {
426 return ipmi::responseInvalidFieldRequest();
427 }
428
429 const auto iter = ipmi::sensor::sensors.find(sensorNum);
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700430 if (iter == ipmi::sensor::sensors.end())
Tom Joseph3ee668f2018-03-02 19:49:17 +0530431 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000432 return ipmi::responseSensorInvalid();
Tom Joseph3ee668f2018-03-02 19:49:17 +0530433 }
434 if (ipmi::sensor::Mutability::Read !=
Patrick Venture0b02be92018-08-31 11:55:55 -0700435 (iter->second.mutability & ipmi::sensor::Mutability::Read))
Tom Joseph3ee668f2018-03-02 19:49:17 +0530436 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000437 return ipmi::responseIllegalCommand();
Tom Joseph3ee668f2018-03-02 19:49:17 +0530438 }
439
440 try
441 {
Sui Chen4cc42552019-09-11 10:28:35 -0700442 ipmi::sensor::GetSensorResponse getResponse =
443 iter->second.getFunc(iter->second);
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000444
Sui Chen4cc42552019-09-11 10:28:35 -0700445 return ipmi::responseSuccess(getResponse.reading, uint5_t(0),
446 getResponse.readingOrStateUnavailable,
447 getResponse.scanningEnabled,
448 getResponse.allEventMessagesEnabled,
449 getResponse.thresholdLevelsStates,
450 getResponse.discreteReadingSensorStates);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530451 }
Brandon Kim9cf85622019-06-19 12:05:08 -0700452#ifdef UPDATE_FUNCTIONAL_ON_FAIL
453 catch (const SensorFunctionalError& e)
454 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000455 return ipmi::responseResponseError();
Brandon Kim9cf85622019-06-19 12:05:08 -0700456 }
457#endif
Tom Joseph3ee668f2018-03-02 19:49:17 +0530458 catch (const std::exception& e)
459 {
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +0000460 // Intitilizing with default values
461 constexpr uint8_t senReading = 0;
462 constexpr uint5_t reserved{0};
463 constexpr bool readState = true;
464 constexpr bool senScanState = false;
465 constexpr bool allEventMessageState = false;
466 constexpr uint8_t assertionStatesLsb = 0;
467 constexpr uint8_t assertionStatesMsb = 0;
468
469 return ipmi::responseSuccess(senReading, reserved, readState,
470 senScanState, allEventMessageState,
471 assertionStatesLsb, assertionStatesMsb);
Tom Joseph3ee668f2018-03-02 19:49:17 +0530472 }
473}
474
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000475get_sdr::GetSensorThresholdsResponse getSensorThresholds(uint8_t sensorNum)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600476{
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000477 get_sdr::GetSensorThresholdsResponse resp;
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530478 constexpr auto warningThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600479 "xyz.openbmc_project.Sensor.Threshold.Warning";
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530480 constexpr auto criticalThreshIntf =
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600481 "xyz.openbmc_project.Sensor.Threshold.Critical";
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600482
483 sdbusplus::bus::bus bus{ipmid_get_sd_bus_connection()};
484
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700485 const auto iter = ipmi::sensor::sensors.find(sensorNum);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530486 const auto info = iter->second;
487
488 auto service = ipmi::getService(bus, info.sensorInterface, info.sensorPath);
489
Patrick Venture0b02be92018-08-31 11:55:55 -0700490 auto warnThresholds = ipmi::getAllDbusProperties(
491 bus, service, info.sensorPath, warningThreshIntf);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530492
Vernon Maueryf442e112019-04-09 11:44:36 -0700493 double warnLow = std::visit(ipmi::VariantToDoubleVisitor(),
494 warnThresholds["WarningLow"]);
495 double warnHigh = std::visit(ipmi::VariantToDoubleVisitor(),
496 warnThresholds["WarningHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530497
498 if (warnLow != 0)
499 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700500 warnLow *= std::pow(10, info.scale - info.exponentR);
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000501 resp.lowerNonCritical = static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700502 (warnLow - info.scaledOffset) / info.coefficientM);
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000503 resp.validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700504 ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530505 }
506
507 if (warnHigh != 0)
508 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700509 warnHigh *= std::pow(10, info.scale - info.exponentR);
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000510 resp.upperNonCritical = static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700511 (warnHigh - info.scaledOffset) / info.coefficientM);
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000512 resp.validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700513 ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530514 }
515
Patrick Venture0b02be92018-08-31 11:55:55 -0700516 auto critThresholds = ipmi::getAllDbusProperties(
517 bus, service, info.sensorPath, criticalThreshIntf);
Vernon Maueryf442e112019-04-09 11:44:36 -0700518 double critLow = std::visit(ipmi::VariantToDoubleVisitor(),
519 critThresholds["CriticalLow"]);
520 double critHigh = std::visit(ipmi::VariantToDoubleVisitor(),
521 critThresholds["CriticalHigh"]);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530522
523 if (critLow != 0)
524 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700525 critLow *= std::pow(10, info.scale - info.exponentR);
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000526 resp.lowerCritical = static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700527 (critLow - info.scaledOffset) / info.coefficientM);
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000528 resp.validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700529 ipmi::sensor::ThresholdMask::CRITICAL_LOW_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530530 }
531
532 if (critHigh != 0)
533 {
Patrick Venture586d35b2018-09-07 19:56:18 -0700534 critHigh *= std::pow(10, info.scale - info.exponentR);
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000535 resp.upperCritical = static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700536 (critHigh - info.scaledOffset) / info.coefficientM);
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000537 resp.validMask |= static_cast<uint8_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700538 ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK);
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530539 }
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000540
541 return resp;
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530542}
543
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000544/** @brief implements the get sensor thresholds command
545 * @param sensorNum - sensor number
546 *
547 * @returns IPMI completion code plus response data
548 * - validMask - threshold mask
549 * - lower non-critical threshold - IPMI messaging state
550 * - lower critical threshold - link authentication state
551 * - lower non-recoverable threshold - callback state
552 * - upper non-critical threshold
553 * - upper critical
554 * - upper non-recoverable
555 */
556ipmi::RspType<uint8_t, // validMask
557 uint8_t, // lowerNonCritical
558 uint8_t, // lowerCritical
559 uint8_t, // lowerNonRecoverable
560 uint8_t, // upperNonCritical
561 uint8_t, // upperCritical
562 uint8_t // upperNonRecoverable
563 >
564 ipmiSensorGetSensorThresholds(uint8_t sensorNum)
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530565{
566 constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value";
567
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700568 const auto iter = ipmi::sensor::sensors.find(sensorNum);
569 if (iter == ipmi::sensor::sensors.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600570 {
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000571 return ipmi::responseSensorInvalid();
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600572 }
573
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530574 const auto info = iter->second;
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600575
Patrick Venture0b02be92018-08-31 11:55:55 -0700576 // Proceed only if the sensor value interface is implemented.
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530577 if (info.propertyInterfaces.find(valueInterface) ==
578 info.propertyInterfaces.end())
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600579 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700580 // return with valid mask as 0
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000581 return ipmi::responseSuccess();
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600582 }
583
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000584 get_sdr::GetSensorThresholdsResponse resp{};
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600585 try
586 {
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000587 resp = getSensorThresholds(sensorNum);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600588 }
Tom Joseph0ac0dd22018-02-16 09:14:45 +0530589 catch (std::exception& e)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600590 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700591 // Mask if the property is not present
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600592 }
593
jayaprakash Mutyala996c9792019-05-03 15:56:48 +0000594 return ipmi::responseSuccess(resp.validMask, resp.lowerNonCritical,
595 resp.lowerCritical, resp.lowerNonRecoverable,
596 resp.upperNonCritical, resp.upperCritical,
597 resp.upperNonRecoverable);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600598}
599
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000600/** @brief implements the get SDR Info command
601 * @param count - Operation
602 *
603 * @returns IPMI completion code plus response data
604 * - sdrCount - sensor/SDR count
605 * - lunsAndDynamicPopulation - static/Dynamic sensor population flag
606 */
607ipmi::RspType<uint8_t, // respcount
608 uint8_t // dynamic population flags
609 >
610 ipmiSensorGetDeviceSdrInfo(std::optional<uint8_t> count)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700611{
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000612 uint8_t sdrCount;
613 // multiple LUNs not supported.
614 constexpr uint8_t lunsAndDynamicPopulation = 1;
615 constexpr uint8_t getSdrCount = 0x01;
616 constexpr uint8_t getSensorCount = 0x00;
617
618 if (count.value_or(0) == getSdrCount)
Emily Shafferd06e0e72017-04-05 09:08:57 -0700619 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000620 // Get SDR count. This returns the total number of SDRs in the device.
Patrick Venture87fd2cd2019-08-19 12:07:18 -0700621 const auto& entityRecords =
622 ipmi::sensor::EntityInfoMapContainer::getContainer()
623 ->getIpmiEntityRecords();
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700624 sdrCount =
625 ipmi::sensor::sensors.size() + frus.size() + entityRecords.size();
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000626 }
627 else if (count.value_or(0) == getSensorCount)
628 {
629 // Get Sensor count. This returns the number of sensors
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700630 sdrCount = ipmi::sensor::sensors.size();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700631 }
632 else
633 {
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000634 return ipmi::responseInvalidCommandOnLun();
Emily Shafferd06e0e72017-04-05 09:08:57 -0700635 }
636
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000637 return ipmi::responseSuccess(sdrCount, lunsAndDynamicPopulation);
Emily Shafferd06e0e72017-04-05 09:08:57 -0700638}
639
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000640/** @brief implements the reserve SDR command
641 * @returns IPMI completion code plus response data
642 * - reservationID - reservation ID
643 */
644ipmi::RspType<uint16_t> ipmiSensorReserveSdr()
Emily Shaffera344afc2017-04-13 15:09:39 -0700645{
646 // A constant reservation ID is okay until we implement add/remove SDR.
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000647 constexpr uint16_t reservationID = 1;
Emily Shaffera344afc2017-04-13 15:09:39 -0700648
jayaprakash Mutyalad9578232019-05-13 20:22:50 +0000649 return ipmi::responseSuccess(reservationID);
Emily Shaffera344afc2017-04-13 15:09:39 -0700650}
Chris Austenac4604a2015-10-13 12:43:27 -0500651
Patrick Venture0b02be92018-08-31 11:55:55 -0700652void setUnitFieldsForObject(const ipmi::sensor::Info* info,
653 get_sdr::SensorDataFullRecordBody* body)
Emily Shaffercc941e12017-06-14 13:06:26 -0700654{
Tom Josephdc212b22018-02-16 09:59:57 +0530655 namespace server = sdbusplus::xyz::openbmc_project::Sensor::server;
656 try
Emily Shaffercc941e12017-06-14 13:06:26 -0700657 {
Tom Josephdc212b22018-02-16 09:59:57 +0530658 auto unit = server::Value::convertUnitFromString(info->unit);
659 // Unit strings defined in
660 // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml
661 switch (unit)
Emily Shaffercc941e12017-06-14 13:06:26 -0700662 {
Tom Josephdc212b22018-02-16 09:59:57 +0530663 case server::Value::Unit::DegreesC:
664 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C;
665 break;
666 case server::Value::Unit::RPMS:
Kirill Pakhomov812e44c2018-10-22 16:25:35 +0300667 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_RPM;
Tom Josephdc212b22018-02-16 09:59:57 +0530668 break;
669 case server::Value::Unit::Volts:
670 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS;
671 break;
672 case server::Value::Unit::Meters:
673 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS;
674 break;
675 case server::Value::Unit::Amperes:
676 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES;
677 break;
678 case server::Value::Unit::Joules:
679 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES;
680 break;
681 case server::Value::Unit::Watts:
682 body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS;
683 break;
684 default:
685 // Cannot be hit.
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700686 std::fprintf(stderr, "Unknown value unit type: = %s\n",
687 info->unit.c_str());
Emily Shaffercc941e12017-06-14 13:06:26 -0700688 }
689 }
Patrick Venture64678b82018-10-13 13:11:32 -0700690 catch (const sdbusplus::exception::InvalidEnumString& e)
Emily Shaffercc941e12017-06-14 13:06:26 -0700691 {
Tom Josephdc212b22018-02-16 09:59:57 +0530692 log<level::WARNING>("Warning: no unit provided for sensor!");
Emily Shaffercc941e12017-06-14 13:06:26 -0700693 }
Emily Shaffercc941e12017-06-14 13:06:26 -0700694}
695
Patrick Venture0b02be92018-08-31 11:55:55 -0700696ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body,
697 const ipmi::sensor::Info* info,
Emily Shafferbbef71c2017-05-08 16:36:17 -0700698 ipmi_data_len_t data_len)
699{
700 /* Functional sensor case */
Emily Shaffercc941e12017-06-14 13:06:26 -0700701 if (isAnalogSensor(info->propertyInterfaces.begin()->first))
Emily Shafferbbef71c2017-05-08 16:36:17 -0700702 {
Emily Shafferbbef71c2017-05-08 16:36:17 -0700703
704 body->sensor_units_1 = 0; // unsigned, no rate, no modifier, not a %
705
706 /* Unit info */
Tom Josephdc212b22018-02-16 09:59:57 +0530707 setUnitFieldsForObject(info, body);
Emily Shaffer10f49592017-05-10 12:01:10 -0700708
709 get_sdr::body::set_b(info->coefficientB, body);
710 get_sdr::body::set_m(info->coefficientM, body);
711 get_sdr::body::set_b_exp(info->exponentB, body);
Tom Josephdc212b22018-02-16 09:59:57 +0530712 get_sdr::body::set_r_exp(info->exponentR, body);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700713
Emily Shafferbbef71c2017-05-08 16:36:17 -0700714 get_sdr::body::set_id_type(0b00, body); // 00 = unicode
Emily Shafferbbef71c2017-05-08 16:36:17 -0700715 }
716
Tom Joseph96423912018-01-25 00:14:34 +0530717 /* ID string */
718 auto id_string = info->sensorNameFunc(*info);
719
720 if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH)
721 {
722 get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body);
723 }
724 else
725 {
726 get_sdr::body::set_id_strlen(id_string.length(), body);
727 }
728 strncpy(body->id_string, id_string.c_str(),
729 get_sdr::body::get_id_strlen(body));
730
Emily Shafferbbef71c2017-05-08 16:36:17 -0700731 return IPMI_CC_OK;
732};
733
Ratan Guptae0cc8552018-01-22 14:23:04 +0530734ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response,
735 ipmi_data_len_t data_len)
736{
737 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
738 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
Patrick Venture0b02be92018-08-31 11:55:55 -0700739 get_sdr::SensorDataFruRecord record{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530740 auto dataLength = 0;
741
742 auto fru = frus.begin();
Patrick Venture0b02be92018-08-31 11:55:55 -0700743 uint8_t fruID{};
Ratan Guptae0cc8552018-01-22 14:23:04 +0530744 auto recordID = get_sdr::request::get_record_id(req);
745
746 fruID = recordID - FRU_RECORD_ID_START;
747 fru = frus.find(fruID);
748 if (fru == frus.end())
749 {
750 return IPMI_CC_SENSOR_INVALID;
751 }
752
753 /* Header */
754 get_sdr::header::set_record_id(recordID, &(record.header));
755 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
756 record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD;
757 record.header.record_length = sizeof(record.key) + sizeof(record.body);
758
759 /* Key */
760 record.key.fruID = fruID;
761 record.key.accessLun |= IPMI_LOGICAL_FRU;
762 record.key.deviceAddress = BMCSlaveAddress;
763
764 /* Body */
765 record.body.entityID = fru->second[0].entityID;
766 record.body.entityInstance = fru->second[0].entityInstance;
767 record.body.deviceType = fruInventoryDevice;
768 record.body.deviceTypeModifier = IPMIFruInventory;
769
770 /* Device ID string */
Patrick Venture0b02be92018-08-31 11:55:55 -0700771 auto deviceID =
772 fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1,
773 fru->second[0].path.length());
Ratan Guptae0cc8552018-01-22 14:23:04 +0530774
775 if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH)
776 {
777 get_sdr::body::set_device_id_strlen(
Patrick Venture0b02be92018-08-31 11:55:55 -0700778 get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530779 }
780 else
781 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700782 get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body));
Ratan Guptae0cc8552018-01-22 14:23:04 +0530783 }
784
785 strncpy(record.body.deviceID, deviceID.c_str(),
786 get_sdr::body::get_device_id_strlen(&(record.body)));
787
788 if (++fru == frus.end())
789 {
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800790 // we have reached till end of fru, so assign the next record id to
791 // 512(Max fru ID = 511) + Entity Record ID(may start with 0).
Patrick Venture87fd2cd2019-08-19 12:07:18 -0700792 const auto& entityRecords =
793 ipmi::sensor::EntityInfoMapContainer::getContainer()
794 ->getIpmiEntityRecords();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800795 auto next_record_id =
Patrick Venture83a0b842019-07-19 18:37:15 -0700796 (entityRecords.size())
797 ? entityRecords.begin()->first + ENTITY_RECORD_ID_START
798 : END_OF_RECORD;
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800799 get_sdr::response::set_next_record_id(next_record_id, resp);
800 }
801 else
802 {
803 get_sdr::response::set_next_record_id(
804 (FRU_RECORD_ID_START + fru->first), resp);
805 }
806
807 // Check for invalid offset size
808 if (req->offset > sizeof(record))
809 {
810 return IPMI_CC_PARM_OUT_OF_RANGE;
811 }
812
813 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
814 sizeof(record) - req->offset);
815
816 std::memcpy(resp->record_data,
817 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
818
819 *data_len = dataLength;
820 *data_len += 2; // additional 2 bytes for next record ID
821
822 return IPMI_CC_OK;
823}
824
825ipmi_ret_t ipmi_entity_get_sdr(ipmi_request_t request, ipmi_response_t response,
826 ipmi_data_len_t data_len)
827{
828 auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request);
829 auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response);
830 get_sdr::SensorDataEntityRecord record{};
831 auto dataLength = 0;
832
Patrick Venture87fd2cd2019-08-19 12:07:18 -0700833 const auto& entityRecords =
834 ipmi::sensor::EntityInfoMapContainer::getContainer()
835 ->getIpmiEntityRecords();
Patrick Venture83a0b842019-07-19 18:37:15 -0700836 auto entity = entityRecords.begin();
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800837 uint8_t entityRecordID;
838 auto recordID = get_sdr::request::get_record_id(req);
839
840 entityRecordID = recordID - ENTITY_RECORD_ID_START;
Patrick Venture83a0b842019-07-19 18:37:15 -0700841 entity = entityRecords.find(entityRecordID);
842 if (entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800843 {
844 return IPMI_CC_SENSOR_INVALID;
845 }
846
847 /* Header */
848 get_sdr::header::set_record_id(recordID, &(record.header));
849 record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1
850 record.header.record_type = get_sdr::SENSOR_DATA_ENTITY_RECORD;
851 record.header.record_length = sizeof(record.key) + sizeof(record.body);
852
853 /* Key */
854 record.key.containerEntityId = entity->second.containerEntityId;
855 record.key.containerEntityInstance = entity->second.containerEntityInstance;
856 get_sdr::key::set_flags(entity->second.isList, entity->second.isLinked,
857 &(record.key));
858 record.key.entityId1 = entity->second.containedEntities[0].first;
859 record.key.entityInstance1 = entity->second.containedEntities[0].second;
860
861 /* Body */
862 record.body.entityId2 = entity->second.containedEntities[1].first;
863 record.body.entityInstance2 = entity->second.containedEntities[1].second;
864 record.body.entityId3 = entity->second.containedEntities[2].first;
865 record.body.entityInstance3 = entity->second.containedEntities[2].second;
866 record.body.entityId4 = entity->second.containedEntities[3].first;
867 record.body.entityInstance4 = entity->second.containedEntities[3].second;
868
Patrick Venture83a0b842019-07-19 18:37:15 -0700869 if (++entity == entityRecords.end())
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800870 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700871 get_sdr::response::set_next_record_id(END_OF_RECORD,
872 resp); // last record
Ratan Guptae0cc8552018-01-22 14:23:04 +0530873 }
874 else
875 {
876 get_sdr::response::set_next_record_id(
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800877 (ENTITY_RECORD_ID_START + entity->first), resp);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530878 }
879
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700880 // Check for invalid offset size
881 if (req->offset > sizeof(record))
Ratan Guptae0cc8552018-01-22 14:23:04 +0530882 {
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700883 return IPMI_CC_PARM_OUT_OF_RANGE;
Ratan Guptae0cc8552018-01-22 14:23:04 +0530884 }
885
Emily Shaffer0fbdbce2018-09-27 09:30:41 -0700886 dataLength = std::min(static_cast<size_t>(req->bytes_to_read),
887 sizeof(record) - req->offset);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530888
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700889 std::memcpy(resp->record_data,
Jason M. Bills1cd85962018-10-05 12:04:01 -0700890 reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength);
Ratan Guptae0cc8552018-01-22 14:23:04 +0530891
892 *data_len = dataLength;
893 *data_len += 2; // additional 2 bytes for next record ID
894
895 return IPMI_CC_OK;
896}
897
Emily Shafferbbef71c2017-05-08 16:36:17 -0700898ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
899 ipmi_request_t request, ipmi_response_t response,
900 ipmi_data_len_t data_len, ipmi_context_t context)
901{
902 ipmi_ret_t ret = IPMI_CC_OK;
Patrick Venture0b02be92018-08-31 11:55:55 -0700903 get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request;
904 get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response;
Emily Shafferbbef71c2017-05-08 16:36:17 -0700905 get_sdr::SensorDataFullRecord record = {0};
Patrick Venture38426dd2019-07-30 15:22:29 -0700906
907 // Note: we use an iterator so we can provide the next ID at the end of
908 // the call.
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700909 auto sensor = ipmi::sensor::sensors.begin();
Patrick Venture38426dd2019-07-30 15:22:29 -0700910 auto recordID = get_sdr::request::get_record_id(req);
911
912 // At the beginning of a scan, the host side will send us id=0.
913 if (recordID != 0)
Emily Shafferbbef71c2017-05-08 16:36:17 -0700914 {
Patrick Venture38426dd2019-07-30 15:22:29 -0700915 // recordID 0 to 255 means it is a FULL record.
916 // recordID 256 to 511 means it is a FRU record.
917 // recordID greater then 511 means it is a Entity Association
918 // record. Currently we are supporting three record types: FULL
919 // record, FRU record and Enttiy Association record.
920 if (recordID >= ENTITY_RECORD_ID_START)
Emily Shafferbbef71c2017-05-08 16:36:17 -0700921 {
Patrick Venture38426dd2019-07-30 15:22:29 -0700922 return ipmi_entity_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700923 }
Patrick Venture38426dd2019-07-30 15:22:29 -0700924 else if (recordID >= FRU_RECORD_ID_START &&
925 recordID < ENTITY_RECORD_ID_START)
Jaghathiswari Rankappagounder Natarajan0780df12019-02-06 15:29:24 -0800926 {
Patrick Venture38426dd2019-07-30 15:22:29 -0700927 return ipmi_fru_get_sdr(request, response, data_len);
Emily Shafferbbef71c2017-05-08 16:36:17 -0700928 }
929 else
930 {
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700931 sensor = ipmi::sensor::sensors.find(recordID);
932 if (sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -0700933 {
934 return IPMI_CC_SENSOR_INVALID;
935 }
Emily Shafferbbef71c2017-05-08 16:36:17 -0700936 }
Emily Shafferbbef71c2017-05-08 16:36:17 -0700937 }
938
Patrick Venture38426dd2019-07-30 15:22:29 -0700939 uint8_t sensor_id = sensor->first;
940
941 /* Header */
942 get_sdr::header::set_record_id(sensor_id, &(record.header));
943 record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1
944 record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD;
945 record.header.record_length = sizeof(get_sdr::SensorDataFullRecord);
946
947 /* Key */
948 get_sdr::key::set_owner_id_bmc(&(record.key));
949 record.key.sensor_number = sensor_id;
950
951 /* Body */
952 record.body.entity_id = sensor->second.entityType;
953 record.body.sensor_type = sensor->second.sensorType;
954 record.body.event_reading_type = sensor->second.sensorReadingType;
955 record.body.entity_instance = sensor->second.instance;
956 if (ipmi::sensor::Mutability::Write ==
957 (sensor->second.mutability & ipmi::sensor::Mutability::Write))
958 {
959 get_sdr::body::init_settable_state(true, &(record.body));
960 }
961
962 // Set the type-specific details given the DBus interface
963 ret =
964 populate_record_from_dbus(&(record.body), &(sensor->second), data_len);
965
Patrick Venturedb0cbe62019-09-09 14:47:22 -0700966 if (++sensor == ipmi::sensor::sensors.end())
Patrick Venture38426dd2019-07-30 15:22:29 -0700967 {
968 // we have reached till end of sensor, so assign the next record id
969 // to 256(Max Sensor ID = 255) + FRU ID(may start with 0).
970 auto next_record_id = (frus.size())
971 ? frus.begin()->first + FRU_RECORD_ID_START
972 : END_OF_RECORD;
973
974 get_sdr::response::set_next_record_id(next_record_id, resp);
975 }
976 else
977 {
978 get_sdr::response::set_next_record_id(sensor->first, resp);
979 }
980
981 if (req->offset > sizeof(record))
982 {
983 return IPMI_CC_PARM_OUT_OF_RANGE;
984 }
985
986 // data_len will ultimately be the size of the record, plus
987 // the size of the next record ID:
988 *data_len = std::min(static_cast<size_t>(req->bytes_to_read),
989 sizeof(record) - req->offset);
990
991 std::memcpy(resp->record_data,
992 reinterpret_cast<uint8_t*>(&record) + req->offset, *data_len);
993
994 // data_len should include the LSB and MSB:
995 *data_len +=
996 sizeof(resp->next_record_id_lsb) + sizeof(resp->next_record_id_msb);
997
Emily Shafferbbef71c2017-05-08 16:36:17 -0700998 return ret;
999}
1000
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001001static bool isFromSystemChannel()
1002{
1003 // TODO we could not figure out where the request is from based on IPMI
1004 // command handler parameters. because of it, we can not differentiate
1005 // request from SMS/SMM or IPMB channel
1006 return true;
1007}
1008
1009ipmi_ret_t ipmicmdPlatformEvent(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
1010 ipmi_request_t request,
1011 ipmi_response_t response,
1012 ipmi_data_len_t dataLen, ipmi_context_t context)
1013{
1014 uint16_t generatorID;
1015 size_t count;
1016 bool assert = true;
1017 std::string sensorPath;
1018 size_t paraLen = *dataLen;
1019 PlatformEventRequest* req;
1020 *dataLen = 0;
1021
1022 if ((paraLen < selSystemEventSizeWith1Bytes) ||
1023 (paraLen > selSystemEventSizeWith3Bytes))
1024 {
1025 return IPMI_CC_REQ_DATA_LEN_INVALID;
1026 }
1027
1028 if (isFromSystemChannel())
1029 { // first byte for SYSTEM Interface is Generator ID
1030 // +1 to get common struct
1031 req = reinterpret_cast<PlatformEventRequest*>((uint8_t*)request + 1);
1032 // Capture the generator ID
1033 generatorID = *reinterpret_cast<uint8_t*>(request);
1034 // Platform Event usually comes from other firmware, like BIOS.
1035 // Unlike BMC sensor, it does not have BMC DBUS sensor path.
1036 sensorPath = "System";
1037 }
1038 else
1039 {
1040 req = reinterpret_cast<PlatformEventRequest*>(request);
1041 // TODO GenratorID for IPMB is combination of RqSA and RqLUN
1042 generatorID = 0xff;
1043 sensorPath = "IPMB";
1044 }
1045 // Content of event data field depends on sensor class.
1046 // When data0 bit[5:4] is non-zero, valid data counts is 3.
1047 // When data0 bit[7:6] is non-zero, valid data counts is 2.
1048 if (((req->data[0] & byte3EnableMask) != 0 &&
1049 paraLen < selSystemEventSizeWith3Bytes) ||
1050 ((req->data[0] & byte2EnableMask) != 0 &&
1051 paraLen < selSystemEventSizeWith2Bytes))
1052 {
1053 return IPMI_CC_REQ_DATA_LEN_INVALID;
1054 }
1055
1056 // Count bytes of Event Data
1057 if ((req->data[0] & byte3EnableMask) != 0)
1058 {
1059 count = 3;
1060 }
1061 else if ((req->data[0] & byte2EnableMask) != 0)
1062 {
1063 count = 2;
1064 }
1065 else
1066 {
1067 count = 1;
1068 }
1069 assert = req->eventDirectionType & directionMask ? false : true;
1070 std::vector<uint8_t> eventData(req->data, req->data + count);
1071
1072 sdbusplus::bus::bus dbus(bus);
1073 std::string service =
1074 ipmi::getService(dbus, ipmiSELAddInterface, ipmiSELPath);
1075 sdbusplus::message::message writeSEL = dbus.new_method_call(
1076 service.c_str(), ipmiSELPath, ipmiSELAddInterface, "IpmiSelAdd");
1077 writeSEL.append(ipmiSELAddMessage, sensorPath, eventData, assert,
1078 generatorID);
1079 try
1080 {
1081 dbus.call(writeSEL);
1082 }
1083 catch (sdbusplus::exception_t& e)
1084 {
1085 phosphor::logging::log<phosphor::logging::level::ERR>(e.what());
1086 return IPMI_CC_UNSPECIFIED_ERROR;
1087 }
1088 return IPMI_CC_OK;
1089}
1090
Chris Austenac4604a2015-10-13 12:43:27 -05001091void register_netfn_sen_functions()
1092{
Jia, Chunhui3342a8e2018-12-29 13:32:26 +08001093 // <Platform Event Message>
1094 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_PLATFORM_EVENT, nullptr,
1095 ipmicmdPlatformEvent, PRIVILEGE_OPERATOR);
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +00001096
Tom05732372016-09-06 17:21:23 +05301097 // <Get Sensor Type>
Deepak Kumar Sahua8be7dc2019-05-07 14:26:53 +00001098 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1099 ipmi::sensor_event::cmdGetSensorType,
1100 ipmi::Privilege::User, ipmiGetSensorType);
Chris Austenac4604a2015-10-13 12:43:27 -05001101
Tom05732372016-09-06 17:21:23 +05301102 // <Set Sensor Reading and Event Status>
Deepak Kumar Sahu9da3a752019-05-21 00:45:14 +00001103 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1104 ipmi::sensor_event::cmdSetSensorReadingAndEvtSts,
1105 ipmi::Privilege::Operator, ipmiSetSensorReading);
Tom05732372016-09-06 17:21:23 +05301106 // <Get Sensor Reading>
jayaprakash Mutyala4c3feba2019-07-16 00:14:35 +00001107 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1108 ipmi::sensor_event::cmdGetSensorReading,
1109 ipmi::Privilege::User, ipmiSensorGetSensorReading);
Emily Shaffera344afc2017-04-13 15:09:39 -07001110
Tom Joseph5ca50952018-02-22 00:33:38 +05301111 // <Reserve Device SDR Repository>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001112 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1113 ipmi::sensor_event::cmdReserveDeviceSdrRepository,
1114 ipmi::Privilege::User, ipmiSensorReserveSdr);
Chris Austen10ccc0f2015-12-10 18:27:04 -06001115
Tom Joseph5ca50952018-02-22 00:33:38 +05301116 // <Get Device SDR Info>
jayaprakash Mutyalad9578232019-05-13 20:22:50 +00001117 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1118 ipmi::sensor_event::cmdGetDeviceSdrInfo,
1119 ipmi::Privilege::User, ipmiSensorGetDeviceSdrInfo);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001120
Tom Joseph5ca50952018-02-22 00:33:38 +05301121 // <Get Device SDR>
Patrick Venture0b02be92018-08-31 11:55:55 -07001122 ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr,
1123 ipmi_sen_get_sdr, PRIVILEGE_USER);
Emily Shafferbbef71c2017-05-08 16:36:17 -07001124
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001125 // <Get Sensor Thresholds>
jayaprakash Mutyala996c9792019-05-03 15:56:48 +00001126 ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor,
1127 ipmi::sensor_event::cmdGetSensorThreshold,
1128 ipmi::Privilege::User, ipmiSensorGetSensorThresholds);
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -06001129
Chris Austenac4604a2015-10-13 12:43:27 -05001130 return;
1131}