Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2017 2018 Intel Corporation |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | */ |
| 16 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 17 | #include <boost/algorithm/string.hpp> |
| 18 | #include <boost/container/flat_map.hpp> |
| 19 | #include <chrono> |
| 20 | #include <cmath> |
| 21 | #include <commandutils.hpp> |
| 22 | #include <iostream> |
Jason M. Bills | 99b78ec | 2019-01-18 10:42:18 -0800 | [diff] [blame] | 23 | #include <ipmi_to_redfish_hooks.hpp> |
James Feist | 2a265d5 | 2019-04-08 11:16:27 -0700 | [diff] [blame] | 24 | #include <ipmid/api.hpp> |
Vernon Mauery | 5480ef6 | 2019-03-20 13:43:11 -0700 | [diff] [blame] | 25 | #include <ipmid/utils.hpp> |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 26 | #include <phosphor-logging/log.hpp> |
| 27 | #include <sdbusplus/bus.hpp> |
| 28 | #include <sdrutils.hpp> |
| 29 | #include <sensorcommands.hpp> |
| 30 | #include <sensorutils.hpp> |
| 31 | #include <storagecommands.hpp> |
| 32 | #include <string> |
| 33 | |
| 34 | namespace ipmi |
| 35 | { |
| 36 | using ManagedObjectType = |
| 37 | std::map<sdbusplus::message::object_path, |
| 38 | std::map<std::string, std::map<std::string, DbusVariant>>>; |
| 39 | |
| 40 | using SensorMap = std::map<std::string, std::map<std::string, DbusVariant>>; |
| 41 | |
| 42 | static constexpr int sensorListUpdatePeriod = 10; |
| 43 | static constexpr int sensorMapUpdatePeriod = 2; |
| 44 | |
| 45 | constexpr size_t maxSDRTotalSize = |
| 46 | 76; // Largest SDR Record Size (type 01) + SDR Overheader Size |
| 47 | constexpr static const uint32_t noTimestamp = 0xFFFFFFFF; |
| 48 | |
| 49 | static uint16_t sdrReservationID; |
| 50 | static uint32_t sdrLastAdd = noTimestamp; |
| 51 | static uint32_t sdrLastRemove = noTimestamp; |
| 52 | |
Richard Marian Thomaiyar | 01fbcb5 | 2018-11-19 22:04:34 +0530 | [diff] [blame] | 53 | SensorSubTree sensorTree; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 54 | static boost::container::flat_map<std::string, ManagedObjectType> SensorCache; |
| 55 | |
Jason M. Bills | 17add59 | 2018-11-12 14:30:12 -0800 | [diff] [blame] | 56 | // Specify the comparison required to sort and find char* map objects |
| 57 | struct CmpStr |
| 58 | { |
| 59 | bool operator()(const char *a, const char *b) const |
| 60 | { |
| 61 | return std::strcmp(a, b) < 0; |
| 62 | } |
| 63 | }; |
| 64 | const static boost::container::flat_map<const char *, SensorUnits, CmpStr> |
| 65 | sensorUnits{{{"temperature", SensorUnits::degreesC}, |
| 66 | {"voltage", SensorUnits::volts}, |
| 67 | {"current", SensorUnits::amps}, |
| 68 | {"fan_tach", SensorUnits::rpm}, |
| 69 | {"power", SensorUnits::watts}}}; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 70 | |
| 71 | void registerSensorFunctions() __attribute__((constructor)); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 72 | |
| 73 | static sdbusplus::bus::match::match sensorAdded( |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 74 | *getSdBus(), |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 75 | "type='signal',member='InterfacesAdded',arg0path='/xyz/openbmc_project/" |
| 76 | "sensors/'", |
| 77 | [](sdbusplus::message::message &m) { |
| 78 | sensorTree.clear(); |
| 79 | sdrLastAdd = std::chrono::duration_cast<std::chrono::seconds>( |
| 80 | std::chrono::system_clock::now().time_since_epoch()) |
| 81 | .count(); |
| 82 | }); |
| 83 | |
| 84 | static sdbusplus::bus::match::match sensorRemoved( |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 85 | *getSdBus(), |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 86 | "type='signal',member='InterfacesRemoved',arg0path='/xyz/openbmc_project/" |
| 87 | "sensors/'", |
| 88 | [](sdbusplus::message::message &m) { |
| 89 | sensorTree.clear(); |
| 90 | sdrLastRemove = std::chrono::duration_cast<std::chrono::seconds>( |
| 91 | std::chrono::system_clock::now().time_since_epoch()) |
| 92 | .count(); |
| 93 | }); |
| 94 | |
James Feist | 392786a | 2019-03-19 13:36:10 -0700 | [diff] [blame] | 95 | // this keeps track of deassertions for sensor event status command. A |
| 96 | // deasertion can only happen if an assertion was seen first. |
| 97 | static boost::container::flat_map< |
| 98 | std::string, boost::container::flat_map<std::string, std::optional<bool>>> |
| 99 | thresholdDeassertMap; |
| 100 | |
| 101 | static sdbusplus::bus::match::match thresholdChanged( |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 102 | *getSdBus(), |
James Feist | 392786a | 2019-03-19 13:36:10 -0700 | [diff] [blame] | 103 | "type='signal',member='PropertiesChanged',interface='org.freedesktop.DBus." |
| 104 | "Properties',arg0namespace='xyz.openbmc_project.Sensor.Threshold'", |
| 105 | [](sdbusplus::message::message &m) { |
| 106 | boost::container::flat_map<std::string, std::variant<bool, double>> |
| 107 | values; |
| 108 | m.read(std::string(), values); |
| 109 | |
| 110 | auto findAssert = |
| 111 | std::find_if(values.begin(), values.end(), [](const auto &pair) { |
| 112 | return pair.first.find("Alarm") != std::string::npos; |
| 113 | }); |
| 114 | if (findAssert != values.end()) |
| 115 | { |
| 116 | auto ptr = std::get_if<bool>(&(findAssert->second)); |
| 117 | if (ptr == nullptr) |
| 118 | { |
| 119 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 120 | "thresholdChanged: Assert non bool"); |
| 121 | return; |
| 122 | } |
| 123 | if (*ptr) |
| 124 | { |
| 125 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 126 | "thresholdChanged: Assert", |
| 127 | phosphor::logging::entry("SENSOR=%s", m.get_path())); |
| 128 | thresholdDeassertMap[m.get_path()][findAssert->first] = *ptr; |
| 129 | } |
| 130 | else |
| 131 | { |
| 132 | auto &value = |
| 133 | thresholdDeassertMap[m.get_path()][findAssert->first]; |
| 134 | if (value) |
| 135 | { |
| 136 | phosphor::logging::log<phosphor::logging::level::INFO>( |
| 137 | "thresholdChanged: deassert", |
| 138 | phosphor::logging::entry("SENSOR=%s", m.get_path())); |
| 139 | value = *ptr; |
| 140 | } |
| 141 | } |
| 142 | } |
| 143 | }); |
| 144 | |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 145 | static void getSensorMaxMin(const SensorMap &sensorMap, double &max, |
| 146 | double &min) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 147 | { |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 148 | max = 127; |
| 149 | min = -128; |
| 150 | |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 151 | auto sensorObject = sensorMap.find("xyz.openbmc_project.Sensor.Value"); |
| 152 | auto critical = |
| 153 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical"); |
| 154 | auto warning = |
| 155 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning"); |
| 156 | |
| 157 | if (sensorObject != sensorMap.end()) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 158 | { |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 159 | auto maxMap = sensorObject->second.find("MaxValue"); |
| 160 | auto minMap = sensorObject->second.find("MinValue"); |
| 161 | |
| 162 | if (maxMap != sensorObject->second.end()) |
| 163 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 164 | max = std::visit(VariantToDoubleVisitor(), maxMap->second); |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 165 | } |
| 166 | if (minMap != sensorObject->second.end()) |
| 167 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 168 | min = std::visit(VariantToDoubleVisitor(), minMap->second); |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 169 | } |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 170 | } |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 171 | if (critical != sensorMap.end()) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 172 | { |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 173 | auto lower = critical->second.find("CriticalLow"); |
| 174 | auto upper = critical->second.find("CriticalHigh"); |
| 175 | if (lower != critical->second.end()) |
| 176 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 177 | double value = std::visit(VariantToDoubleVisitor(), lower->second); |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 178 | min = std::min(value, min); |
| 179 | } |
| 180 | if (upper != critical->second.end()) |
| 181 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 182 | double value = std::visit(VariantToDoubleVisitor(), upper->second); |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 183 | max = std::max(value, max); |
| 184 | } |
| 185 | } |
| 186 | if (warning != sensorMap.end()) |
| 187 | { |
| 188 | |
| 189 | auto lower = warning->second.find("WarningLow"); |
| 190 | auto upper = warning->second.find("WarningHigh"); |
| 191 | if (lower != warning->second.end()) |
| 192 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 193 | double value = std::visit(VariantToDoubleVisitor(), lower->second); |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 194 | min = std::min(value, min); |
| 195 | } |
| 196 | if (upper != warning->second.end()) |
| 197 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 198 | double value = std::visit(VariantToDoubleVisitor(), upper->second); |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 199 | max = std::max(value, max); |
| 200 | } |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 201 | } |
| 202 | } |
| 203 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 204 | static bool getSensorMap(std::string sensorConnection, std::string sensorPath, |
| 205 | SensorMap &sensorMap) |
| 206 | { |
| 207 | static boost::container::flat_map< |
| 208 | std::string, std::chrono::time_point<std::chrono::steady_clock>> |
| 209 | updateTimeMap; |
| 210 | |
| 211 | auto updateFind = updateTimeMap.find(sensorConnection); |
| 212 | auto lastUpdate = std::chrono::time_point<std::chrono::steady_clock>(); |
| 213 | if (updateFind != updateTimeMap.end()) |
| 214 | { |
| 215 | lastUpdate = updateFind->second; |
| 216 | } |
| 217 | |
| 218 | auto now = std::chrono::steady_clock::now(); |
| 219 | |
| 220 | if (std::chrono::duration_cast<std::chrono::seconds>(now - lastUpdate) |
| 221 | .count() > sensorMapUpdatePeriod) |
| 222 | { |
| 223 | updateTimeMap[sensorConnection] = now; |
| 224 | |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 225 | std::shared_ptr<sdbusplus::asio::connection> dbus = getSdBus(); |
| 226 | auto managedObj = dbus->new_method_call( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 227 | sensorConnection.c_str(), "/", "org.freedesktop.DBus.ObjectManager", |
| 228 | "GetManagedObjects"); |
| 229 | |
| 230 | ManagedObjectType managedObjects; |
| 231 | try |
| 232 | { |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 233 | auto reply = dbus->call(managedObj); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 234 | reply.read(managedObjects); |
| 235 | } |
| 236 | catch (sdbusplus::exception_t &) |
| 237 | { |
| 238 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 239 | "Error getting managed objects from connection", |
| 240 | phosphor::logging::entry("CONNECTION=%s", |
| 241 | sensorConnection.c_str())); |
| 242 | return false; |
| 243 | } |
| 244 | |
| 245 | SensorCache[sensorConnection] = managedObjects; |
| 246 | } |
| 247 | auto connection = SensorCache.find(sensorConnection); |
| 248 | if (connection == SensorCache.end()) |
| 249 | { |
| 250 | return false; |
| 251 | } |
| 252 | auto path = connection->second.find(sensorPath); |
| 253 | if (path == connection->second.end()) |
| 254 | { |
| 255 | return false; |
| 256 | } |
| 257 | sensorMap = path->second; |
| 258 | |
| 259 | return true; |
| 260 | } |
| 261 | |
| 262 | /* sensor commands */ |
| 263 | ipmi_ret_t ipmiSensorWildcardHandler(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 264 | ipmi_request_t request, |
| 265 | ipmi_response_t response, |
| 266 | ipmi_data_len_t dataLen, |
| 267 | ipmi_context_t context) |
| 268 | { |
| 269 | *dataLen = 0; |
| 270 | printCommand(+netfn, +cmd); |
| 271 | return IPMI_CC_INVALID; |
| 272 | } |
| 273 | |
James Feist | 7aaf3fe | 2019-06-25 11:52:11 -0700 | [diff] [blame] | 274 | namespace meHealth |
| 275 | { |
| 276 | constexpr const char *busname = "xyz.openbmc_project.NodeManagerProxy"; |
| 277 | constexpr const char *path = "/xyz/openbmc_project/status/me"; |
| 278 | constexpr const char *interface = "xyz.openbmc_project.SetHealth"; |
| 279 | constexpr const char *method = "SetHealth"; |
| 280 | constexpr const char *critical = "critical"; |
| 281 | constexpr const char *warning = "warning"; |
| 282 | constexpr const char *ok = "ok"; |
| 283 | } // namespace meHealth |
| 284 | |
| 285 | static void setMeStatus(uint8_t eventData2, uint8_t eventData3, bool disable) |
| 286 | { |
| 287 | constexpr const std::array<uint8_t, 10> critical = { |
| 288 | 0x1, 0x2, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xD, 0xE}; |
| 289 | constexpr const std::array<uint8_t, 5> warning = {0x3, 0xA, 0x13, 0x19, |
| 290 | 0x1A}; |
| 291 | |
| 292 | std::string state; |
| 293 | if (std::find(critical.begin(), critical.end(), eventData2) != |
| 294 | critical.end()) |
| 295 | { |
| 296 | state = meHealth::critical; |
| 297 | } |
| 298 | // special case 0x3 as we only care about a few states |
| 299 | else if (eventData2 == 0x3) |
| 300 | { |
| 301 | if (eventData3 <= 0x2) |
| 302 | { |
| 303 | state = meHealth::warning; |
| 304 | } |
| 305 | else |
| 306 | { |
| 307 | return; |
| 308 | } |
| 309 | } |
| 310 | else if (std::find(warning.begin(), warning.end(), eventData2) != |
| 311 | warning.end()) |
| 312 | { |
| 313 | state = meHealth::warning; |
| 314 | } |
| 315 | else |
| 316 | { |
| 317 | return; |
| 318 | } |
| 319 | if (disable) |
| 320 | { |
| 321 | state = meHealth::ok; |
| 322 | } |
| 323 | |
| 324 | std::shared_ptr<sdbusplus::asio::connection> dbus = getSdBus(); |
| 325 | auto setHealth = |
| 326 | dbus->new_method_call(meHealth::busname, meHealth::path, |
| 327 | meHealth::interface, meHealth::method); |
| 328 | setHealth.append(std::to_string(static_cast<size_t>(eventData2)), state); |
| 329 | try |
| 330 | { |
| 331 | dbus->call(setHealth); |
| 332 | } |
| 333 | catch (sdbusplus::exception_t &) |
| 334 | { |
| 335 | phosphor::logging::log<phosphor::logging::level::ERR>( |
| 336 | "Failed to set ME Health"); |
| 337 | } |
| 338 | } |
| 339 | |
Jason M. Bills | ae6bdb1 | 2019-04-02 12:00:04 -0700 | [diff] [blame] | 340 | ipmi::RspType<> ipmiSenPlatformEvent(ipmi::message::Payload &p) |
| 341 | { |
James Feist | 7aaf3fe | 2019-06-25 11:52:11 -0700 | [diff] [blame] | 342 | constexpr const uint8_t meId = 0x2C; |
| 343 | constexpr const uint8_t meSensorNum = 0x17; |
| 344 | constexpr const uint8_t disabled = 0x80; |
| 345 | |
Jason M. Bills | ae6bdb1 | 2019-04-02 12:00:04 -0700 | [diff] [blame] | 346 | uint8_t generatorID = 0; |
| 347 | uint8_t evmRev = 0; |
| 348 | uint8_t sensorType = 0; |
| 349 | uint8_t sensorNum = 0; |
| 350 | uint8_t eventType = 0; |
| 351 | uint8_t eventData1 = 0; |
| 352 | std::optional<uint8_t> eventData2 = 0; |
| 353 | std::optional<uint8_t> eventData3 = 0; |
| 354 | |
| 355 | // todo: This check is supposed to be based on the incoming channel. |
| 356 | // e.g. system channel will provide upto 8 bytes including generator |
| 357 | // ID, but ipmb channel will provide only up to 7 bytes without the |
| 358 | // generator ID. |
| 359 | // Support for this check is coming in future patches, so for now just base |
| 360 | // it on if the first byte is the EvMRev (0x04). |
| 361 | if (p.size() && p.data()[0] == 0x04) |
| 362 | { |
| 363 | p.unpack(evmRev, sensorType, sensorNum, eventType, eventData1, |
| 364 | eventData2, eventData3); |
| 365 | // todo: the generator ID for this channel is supposed to come from the |
| 366 | // IPMB requesters slave address. Support for this is coming in future |
| 367 | // patches, so for now just assume it is coming from the ME (0x2C). |
| 368 | generatorID = 0x2C; |
| 369 | } |
| 370 | else |
| 371 | { |
| 372 | p.unpack(generatorID, evmRev, sensorType, sensorNum, eventType, |
| 373 | eventData1, eventData2, eventData3); |
| 374 | } |
| 375 | if (!p.fullyUnpacked()) |
| 376 | { |
| 377 | return ipmi::responseReqDataLenInvalid(); |
| 378 | } |
| 379 | |
Jason M. Bills | 6dd8f04 | 2019-04-11 10:39:02 -0700 | [diff] [blame] | 380 | // Send this request to the Redfish hooks to log it as a Redfish message |
| 381 | // instead. There is no need to add it to the SEL, so just return success. |
| 382 | intel_oem::ipmi::sel::checkRedfishHooks( |
| 383 | generatorID, evmRev, sensorType, sensorNum, eventType, eventData1, |
| 384 | eventData2.value_or(0xFF), eventData3.value_or(0xFF)); |
Jason M. Bills | ae6bdb1 | 2019-04-02 12:00:04 -0700 | [diff] [blame] | 385 | |
James Feist | 7aaf3fe | 2019-06-25 11:52:11 -0700 | [diff] [blame] | 386 | if (generatorID == meId && sensorNum == meSensorNum && eventData2 && |
| 387 | eventData3) |
| 388 | { |
| 389 | setMeStatus(*eventData2, *eventData3, (eventType & disabled)); |
| 390 | } |
| 391 | |
Jason M. Bills | ae6bdb1 | 2019-04-02 12:00:04 -0700 | [diff] [blame] | 392 | return ipmi::responseSuccess(); |
| 393 | } |
| 394 | |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 395 | ipmi::RspType<uint8_t, uint8_t, uint8_t, std::optional<uint8_t>> |
| 396 | ipmiSenGetSensorReading(uint8_t sensnum) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 397 | { |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 398 | std::string connection; |
| 399 | std::string path; |
| 400 | |
| 401 | auto status = getSensorConnection(sensnum, connection, path); |
| 402 | if (status) |
| 403 | { |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 404 | return ipmi::response(status); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | SensorMap sensorMap; |
| 408 | if (!getSensorMap(connection, path, sensorMap)) |
| 409 | { |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 410 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 411 | } |
| 412 | auto sensorObject = sensorMap.find("xyz.openbmc_project.Sensor.Value"); |
| 413 | |
| 414 | if (sensorObject == sensorMap.end() || |
| 415 | sensorObject->second.find("Value") == sensorObject->second.end()) |
| 416 | { |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 417 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 418 | } |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 419 | auto &valueVariant = sensorObject->second["Value"]; |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 420 | double reading = std::visit(VariantToDoubleVisitor(), valueVariant); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 421 | |
Yong Li | 1f2eb5e | 2019-05-23 14:07:17 +0800 | [diff] [blame] | 422 | double max = 0; |
| 423 | double min = 0; |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 424 | getSensorMaxMin(sensorMap, max, min); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 425 | |
| 426 | int16_t mValue = 0; |
| 427 | int16_t bValue = 0; |
| 428 | int8_t rExp = 0; |
| 429 | int8_t bExp = 0; |
| 430 | bool bSigned = false; |
| 431 | |
| 432 | if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) |
| 433 | { |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 434 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 435 | } |
| 436 | |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 437 | uint8_t value = |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 438 | scaleIPMIValueFromDouble(reading, mValue, rExp, bValue, bExp, bSigned); |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 439 | uint8_t operation = |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 440 | static_cast<uint8_t>(IPMISensorReadingByte2::sensorScanningEnable); |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 441 | operation |= |
James Feist | 81a95c1 | 2019-03-01 15:08:28 -0800 | [diff] [blame] | 442 | static_cast<uint8_t>(IPMISensorReadingByte2::eventMessagesEnable); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 443 | |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 444 | uint8_t thresholds = 0; |
| 445 | |
| 446 | auto warningObject = |
| 447 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning"); |
| 448 | if (warningObject != sensorMap.end()) |
| 449 | { |
| 450 | auto alarmHigh = warningObject->second.find("WarningAlarmHigh"); |
| 451 | auto alarmLow = warningObject->second.find("WarningAlarmLow"); |
| 452 | if (alarmHigh != warningObject->second.end()) |
| 453 | { |
| 454 | if (std::get<bool>(alarmHigh->second)) |
| 455 | { |
| 456 | thresholds |= static_cast<uint8_t>( |
| 457 | IPMISensorReadingByte3::upperNonCritical); |
| 458 | } |
| 459 | } |
| 460 | if (alarmLow != warningObject->second.end()) |
| 461 | { |
| 462 | if (std::get<bool>(alarmLow->second)) |
| 463 | { |
| 464 | thresholds |= static_cast<uint8_t>( |
| 465 | IPMISensorReadingByte3::lowerNonCritical); |
| 466 | } |
| 467 | } |
| 468 | } |
| 469 | |
| 470 | auto criticalObject = |
| 471 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical"); |
| 472 | if (criticalObject != sensorMap.end()) |
| 473 | { |
| 474 | auto alarmHigh = criticalObject->second.find("CriticalAlarmHigh"); |
| 475 | auto alarmLow = criticalObject->second.find("CriticalAlarmLow"); |
| 476 | if (alarmHigh != criticalObject->second.end()) |
| 477 | { |
| 478 | if (std::get<bool>(alarmHigh->second)) |
| 479 | { |
| 480 | thresholds |= |
| 481 | static_cast<uint8_t>(IPMISensorReadingByte3::upperCritical); |
| 482 | } |
| 483 | } |
| 484 | if (alarmLow != criticalObject->second.end()) |
| 485 | { |
| 486 | if (std::get<bool>(alarmLow->second)) |
| 487 | { |
| 488 | thresholds |= |
| 489 | static_cast<uint8_t>(IPMISensorReadingByte3::lowerCritical); |
| 490 | } |
| 491 | } |
| 492 | } |
| 493 | |
| 494 | // no discrete as of today so optional byte is never returned |
| 495 | return ipmi::responseSuccess(value, operation, thresholds, std::nullopt); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 496 | } |
| 497 | |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 498 | /** @brief implements the Set Sensor threshold command |
| 499 | * @param sensorNumber - sensor number |
| 500 | * @param lowerNonCriticalThreshMask |
| 501 | * @param lowerCriticalThreshMask |
| 502 | * @param lowerNonRecovThreshMask |
| 503 | * @param upperNonCriticalThreshMask |
| 504 | * @param upperCriticalThreshMask |
| 505 | * @param upperNonRecovThreshMask |
| 506 | * @param reserved |
| 507 | * @param lowerNonCritical - lower non-critical threshold |
| 508 | * @param lowerCritical - Lower critical threshold |
| 509 | * @param lowerNonRecoverable - Lower non recovarable threshold |
| 510 | * @param upperNonCritical - Upper non-critical threshold |
| 511 | * @param upperCritical - Upper critical |
| 512 | * @param upperNonRecoverable - Upper Non-recoverable |
| 513 | * |
| 514 | * @returns IPMI completion code |
| 515 | */ |
| 516 | ipmi::RspType<> ipmiSenSetSensorThresholds( |
| 517 | uint8_t sensorNum, bool lowerNonCriticalThreshMask, |
| 518 | bool lowerCriticalThreshMask, bool lowerNonRecovThreshMask, |
| 519 | bool upperNonCriticalThreshMask, bool upperCriticalThreshMask, |
| 520 | bool upperNonRecovThreshMask, uint2_t reserved, uint8_t lowerNonCritical, |
| 521 | uint8_t lowerCritical, uint8_t lowerNonRecoverable, |
| 522 | uint8_t upperNonCritical, uint8_t upperCritical, |
| 523 | uint8_t upperNonRecoverable) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 524 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 525 | constexpr uint8_t thresholdMask = 0xFF; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 526 | |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 527 | if (reserved) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 528 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 529 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | // lower nc and upper nc not suppported on any sensor |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 533 | if (lowerNonRecovThreshMask || upperNonRecovThreshMask) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 534 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 535 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 536 | } |
| 537 | |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 538 | // if none of the threshold mask are set, nothing to do |
| 539 | if (!(lowerNonCriticalThreshMask | lowerCriticalThreshMask | |
| 540 | lowerNonRecovThreshMask | upperNonCriticalThreshMask | |
| 541 | upperCriticalThreshMask | upperNonRecovThreshMask)) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 542 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 543 | return ipmi::responseSuccess(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | std::string connection; |
| 547 | std::string path; |
| 548 | |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 549 | ipmi::Cc status = getSensorConnection(sensorNum, connection, path); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 550 | if (status) |
| 551 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 552 | return ipmi::response(status); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 553 | } |
| 554 | SensorMap sensorMap; |
| 555 | if (!getSensorMap(connection, path, sensorMap)) |
| 556 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 557 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 558 | } |
| 559 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 560 | double max = 0; |
| 561 | double min = 0; |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 562 | getSensorMaxMin(sensorMap, max, min); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 563 | |
| 564 | int16_t mValue = 0; |
| 565 | int16_t bValue = 0; |
| 566 | int8_t rExp = 0; |
| 567 | int8_t bExp = 0; |
| 568 | bool bSigned = false; |
| 569 | |
| 570 | if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) |
| 571 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 572 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 573 | } |
| 574 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 575 | // store a vector of property name, value to set, and interface |
| 576 | std::vector<std::tuple<std::string, uint8_t, std::string>> thresholdsToSet; |
| 577 | |
| 578 | // define the indexes of the tuple |
| 579 | constexpr uint8_t propertyName = 0; |
| 580 | constexpr uint8_t thresholdValue = 1; |
| 581 | constexpr uint8_t interface = 2; |
| 582 | // verifiy all needed fields are present |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 583 | if (lowerCriticalThreshMask || upperCriticalThreshMask) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 584 | { |
| 585 | auto findThreshold = |
| 586 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical"); |
| 587 | if (findThreshold == sensorMap.end()) |
| 588 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 589 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 590 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 591 | if (lowerCriticalThreshMask) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 592 | { |
| 593 | auto findLower = findThreshold->second.find("CriticalLow"); |
| 594 | if (findLower == findThreshold->second.end()) |
| 595 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 596 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 597 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 598 | thresholdsToSet.emplace_back("CriticalLow", lowerCritical, |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 599 | findThreshold->first); |
| 600 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 601 | if (upperCriticalThreshMask) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 602 | { |
| 603 | auto findUpper = findThreshold->second.find("CriticalHigh"); |
| 604 | if (findUpper == findThreshold->second.end()) |
| 605 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 606 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 607 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 608 | thresholdsToSet.emplace_back("CriticalHigh", upperCritical, |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 609 | findThreshold->first); |
| 610 | } |
| 611 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 612 | if (lowerNonCriticalThreshMask || upperNonCriticalThreshMask) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 613 | { |
| 614 | auto findThreshold = |
| 615 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning"); |
| 616 | if (findThreshold == sensorMap.end()) |
| 617 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 618 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 619 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 620 | if (lowerNonCriticalThreshMask) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 621 | { |
| 622 | auto findLower = findThreshold->second.find("WarningLow"); |
| 623 | if (findLower == findThreshold->second.end()) |
| 624 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 625 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 626 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 627 | thresholdsToSet.emplace_back("WarningLow", lowerNonCritical, |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 628 | findThreshold->first); |
| 629 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 630 | if (upperNonCriticalThreshMask) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 631 | { |
| 632 | auto findUpper = findThreshold->second.find("WarningHigh"); |
| 633 | if (findUpper == findThreshold->second.end()) |
| 634 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 635 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 636 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 637 | thresholdsToSet.emplace_back("WarningHigh", upperNonCritical, |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 638 | findThreshold->first); |
| 639 | } |
| 640 | } |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 641 | for (const auto &property : thresholdsToSet) |
| 642 | { |
| 643 | // from section 36.3 in the IPMI Spec, assume all linear |
| 644 | double valueToSet = ((mValue * std::get<thresholdValue>(property)) + |
| 645 | (bValue * std::pow(10, bExp))) * |
| 646 | std::pow(10, rExp); |
Vernon Mauery | 15419dd | 2019-05-24 09:40:30 -0700 | [diff] [blame] | 647 | setDbusProperty( |
| 648 | *getSdBus(), connection, path, std::get<interface>(property), |
| 649 | std::get<propertyName>(property), ipmi::Value(valueToSet)); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 650 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 651 | return ipmi::responseSuccess(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 652 | } |
| 653 | |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 654 | IPMIThresholds getIPMIThresholds(const SensorMap &sensorMap) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 655 | { |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 656 | IPMIThresholds resp; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 657 | auto warningInterface = |
| 658 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning"); |
| 659 | auto criticalInterface = |
| 660 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical"); |
| 661 | |
| 662 | if ((warningInterface != sensorMap.end()) || |
| 663 | (criticalInterface != sensorMap.end())) |
| 664 | { |
| 665 | auto sensorPair = sensorMap.find("xyz.openbmc_project.Sensor.Value"); |
| 666 | |
| 667 | if (sensorPair == sensorMap.end()) |
| 668 | { |
| 669 | // should not have been able to find a sensor not implementing |
| 670 | // the sensor object |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 671 | throw std::runtime_error("Invalid sensor map"); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 672 | } |
| 673 | |
Chen,Yugang | 606dd9f | 2019-07-01 10:37:30 +0800 | [diff] [blame] | 674 | double max = 0; |
| 675 | double min = 0; |
James Feist | aecaef7 | 2019-04-26 10:30:32 -0700 | [diff] [blame] | 676 | getSensorMaxMin(sensorMap, max, min); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 677 | |
| 678 | int16_t mValue = 0; |
| 679 | int16_t bValue = 0; |
| 680 | int8_t rExp = 0; |
| 681 | int8_t bExp = 0; |
| 682 | bool bSigned = false; |
| 683 | |
| 684 | if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) |
| 685 | { |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 686 | throw std::runtime_error("Invalid sensor atrributes"); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 687 | } |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 688 | if (warningInterface != sensorMap.end()) |
| 689 | { |
| 690 | auto &warningMap = warningInterface->second; |
| 691 | |
| 692 | auto warningHigh = warningMap.find("WarningHigh"); |
| 693 | auto warningLow = warningMap.find("WarningLow"); |
| 694 | |
| 695 | if (warningHigh != warningMap.end()) |
| 696 | { |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 697 | |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 698 | double value = |
| 699 | std::visit(VariantToDoubleVisitor(), warningHigh->second); |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 700 | resp.warningHigh = scaleIPMIValueFromDouble( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 701 | value, mValue, rExp, bValue, bExp, bSigned); |
| 702 | } |
| 703 | if (warningLow != warningMap.end()) |
| 704 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 705 | double value = |
| 706 | std::visit(VariantToDoubleVisitor(), warningLow->second); |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 707 | resp.warningLow = scaleIPMIValueFromDouble( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 708 | value, mValue, rExp, bValue, bExp, bSigned); |
| 709 | } |
| 710 | } |
| 711 | if (criticalInterface != sensorMap.end()) |
| 712 | { |
| 713 | auto &criticalMap = criticalInterface->second; |
| 714 | |
| 715 | auto criticalHigh = criticalMap.find("CriticalHigh"); |
| 716 | auto criticalLow = criticalMap.find("CriticalLow"); |
| 717 | |
| 718 | if (criticalHigh != criticalMap.end()) |
| 719 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 720 | double value = |
| 721 | std::visit(VariantToDoubleVisitor(), criticalHigh->second); |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 722 | resp.criticalHigh = scaleIPMIValueFromDouble( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 723 | value, mValue, rExp, bValue, bExp, bSigned); |
| 724 | } |
| 725 | if (criticalLow != criticalMap.end()) |
| 726 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 727 | double value = |
| 728 | std::visit(VariantToDoubleVisitor(), criticalLow->second); |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 729 | resp.criticalLow = scaleIPMIValueFromDouble( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 730 | value, mValue, rExp, bValue, bExp, bSigned); |
| 731 | } |
| 732 | } |
| 733 | } |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 734 | return resp; |
| 735 | } |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 736 | |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 737 | ipmi::RspType<uint8_t, // readable |
| 738 | uint8_t, // lowerNCrit |
| 739 | uint8_t, // lowerCrit |
| 740 | uint8_t, // lowerNrecoverable |
| 741 | uint8_t, // upperNC |
| 742 | uint8_t, // upperCrit |
| 743 | uint8_t> // upperNRecoverable |
| 744 | ipmiSenGetSensorThresholds(uint8_t sensorNumber) |
| 745 | { |
| 746 | std::string connection; |
| 747 | std::string path; |
| 748 | |
| 749 | auto status = getSensorConnection(sensorNumber, connection, path); |
| 750 | if (status) |
| 751 | { |
| 752 | return ipmi::response(status); |
| 753 | } |
| 754 | |
| 755 | SensorMap sensorMap; |
| 756 | if (!getSensorMap(connection, path, sensorMap)) |
| 757 | { |
| 758 | return ipmi::responseResponseError(); |
| 759 | } |
| 760 | |
| 761 | IPMIThresholds thresholdData; |
| 762 | try |
| 763 | { |
| 764 | thresholdData = getIPMIThresholds(sensorMap); |
| 765 | } |
| 766 | catch (std::exception &) |
| 767 | { |
| 768 | return ipmi::responseResponseError(); |
| 769 | } |
| 770 | |
| 771 | uint8_t readable = 0; |
| 772 | uint8_t lowerNC = 0; |
| 773 | uint8_t lowerCritical = 0; |
| 774 | uint8_t lowerNonRecoverable = 0; |
| 775 | uint8_t upperNC = 0; |
| 776 | uint8_t upperCritical = 0; |
| 777 | uint8_t upperNonRecoverable = 0; |
| 778 | |
| 779 | if (thresholdData.warningHigh) |
| 780 | { |
| 781 | readable |= |
| 782 | 1 << static_cast<uint8_t>(IPMIThresholdRespBits::upperNonCritical); |
| 783 | upperNC = *thresholdData.warningHigh; |
| 784 | } |
| 785 | if (thresholdData.warningLow) |
| 786 | { |
| 787 | readable |= |
| 788 | 1 << static_cast<uint8_t>(IPMIThresholdRespBits::lowerNonCritical); |
| 789 | lowerNC = *thresholdData.warningLow; |
| 790 | } |
| 791 | |
| 792 | if (thresholdData.criticalHigh) |
| 793 | { |
| 794 | readable |= |
| 795 | 1 << static_cast<uint8_t>(IPMIThresholdRespBits::upperCritical); |
| 796 | upperCritical = *thresholdData.criticalHigh; |
| 797 | } |
| 798 | if (thresholdData.criticalLow) |
| 799 | { |
| 800 | readable |= |
| 801 | 1 << static_cast<uint8_t>(IPMIThresholdRespBits::lowerCritical); |
| 802 | lowerCritical = *thresholdData.criticalLow; |
| 803 | } |
| 804 | |
| 805 | return ipmi::responseSuccess(readable, lowerNC, lowerCritical, |
| 806 | lowerNonRecoverable, upperNC, upperCritical, |
| 807 | upperNonRecoverable); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 808 | } |
| 809 | |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 810 | /** @brief implements the get Sensor event enable command |
| 811 | * @param sensorNumber - sensor number |
| 812 | * |
| 813 | * @returns IPMI completion code plus response data |
| 814 | * - enabled - Sensor Event messages |
| 815 | * - assertionEnabledLsb - Assertion event messages |
| 816 | * - assertionEnabledMsb - Assertion event messages |
| 817 | * - deassertionEnabledLsb - Deassertion event messages |
| 818 | * - deassertionEnabledMsb - Deassertion event messages |
| 819 | */ |
| 820 | |
| 821 | ipmi::RspType<uint8_t, // enabled |
| 822 | uint8_t, // assertionEnabledLsb |
| 823 | uint8_t, // assertionEnabledMsb |
| 824 | uint8_t, // deassertionEnabledLsb |
| 825 | uint8_t> // deassertionEnabledMsb |
| 826 | ipmiSenGetSensorEventEnable(uint8_t sensorNum) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 827 | { |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 828 | std::string connection; |
| 829 | std::string path; |
| 830 | |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 831 | uint8_t enabled; |
| 832 | uint8_t assertionEnabledLsb; |
| 833 | uint8_t assertionEnabledMsb; |
| 834 | uint8_t deassertionEnabledLsb; |
| 835 | uint8_t deassertionEnabledMsb; |
| 836 | |
| 837 | auto status = getSensorConnection(sensorNum, connection, path); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 838 | if (status) |
| 839 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 840 | return ipmi::response(status); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | SensorMap sensorMap; |
| 844 | if (!getSensorMap(connection, path, sensorMap)) |
| 845 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 846 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 847 | } |
| 848 | |
| 849 | auto warningInterface = |
| 850 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning"); |
| 851 | auto criticalInterface = |
| 852 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical"); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 853 | if ((warningInterface != sensorMap.end()) || |
| 854 | (criticalInterface != sensorMap.end())) |
| 855 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 856 | enabled = static_cast<uint8_t>( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 857 | IPMISensorEventEnableByte2::sensorScanningEnable); |
| 858 | if (warningInterface != sensorMap.end()) |
| 859 | { |
| 860 | auto &warningMap = warningInterface->second; |
| 861 | |
| 862 | auto warningHigh = warningMap.find("WarningHigh"); |
| 863 | auto warningLow = warningMap.find("WarningLow"); |
| 864 | if (warningHigh != warningMap.end()) |
| 865 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 866 | assertionEnabledLsb |= static_cast<uint8_t>( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 867 | IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh); |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 868 | deassertionEnabledLsb |= static_cast<uint8_t>( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 869 | IPMISensorEventEnableThresholds::upperNonCriticalGoingLow); |
| 870 | } |
| 871 | if (warningLow != warningMap.end()) |
| 872 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 873 | assertionEnabledLsb |= static_cast<uint8_t>( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 874 | IPMISensorEventEnableThresholds::lowerNonCriticalGoingLow); |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 875 | deassertionEnabledLsb |= static_cast<uint8_t>( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 876 | IPMISensorEventEnableThresholds::lowerNonCriticalGoingHigh); |
| 877 | } |
| 878 | } |
| 879 | if (criticalInterface != sensorMap.end()) |
| 880 | { |
| 881 | auto &criticalMap = criticalInterface->second; |
| 882 | |
| 883 | auto criticalHigh = criticalMap.find("CriticalHigh"); |
| 884 | auto criticalLow = criticalMap.find("CriticalLow"); |
| 885 | |
| 886 | if (criticalHigh != criticalMap.end()) |
| 887 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 888 | assertionEnabledMsb |= static_cast<uint8_t>( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 889 | IPMISensorEventEnableThresholds::upperCriticalGoingHigh); |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 890 | deassertionEnabledMsb |= static_cast<uint8_t>( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 891 | IPMISensorEventEnableThresholds::upperCriticalGoingLow); |
| 892 | } |
| 893 | if (criticalLow != criticalMap.end()) |
| 894 | { |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 895 | assertionEnabledLsb |= static_cast<uint8_t>( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 896 | IPMISensorEventEnableThresholds::lowerCriticalGoingLow); |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 897 | deassertionEnabledLsb |= static_cast<uint8_t>( |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 898 | IPMISensorEventEnableThresholds::lowerCriticalGoingHigh); |
| 899 | } |
| 900 | } |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 901 | } |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 902 | |
| 903 | return ipmi::responseSuccess(enabled, assertionEnabledLsb, |
| 904 | assertionEnabledMsb, deassertionEnabledLsb, |
| 905 | deassertionEnabledMsb); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 906 | } |
| 907 | |
| 908 | ipmi_ret_t ipmiSenGetSensorEventStatus(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 909 | ipmi_request_t request, |
| 910 | ipmi_response_t response, |
| 911 | ipmi_data_len_t dataLen, |
| 912 | ipmi_context_t context) |
| 913 | { |
| 914 | if (*dataLen != 1) |
| 915 | { |
| 916 | *dataLen = 0; |
| 917 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 918 | } |
| 919 | *dataLen = 0; // default to 0 in case of an error |
| 920 | |
| 921 | uint8_t sensnum = *(static_cast<uint8_t *>(request)); |
| 922 | |
| 923 | std::string connection; |
| 924 | std::string path; |
| 925 | |
| 926 | auto status = getSensorConnection(sensnum, connection, path); |
| 927 | if (status) |
| 928 | { |
| 929 | return status; |
| 930 | } |
| 931 | |
| 932 | SensorMap sensorMap; |
| 933 | if (!getSensorMap(connection, path, sensorMap)) |
| 934 | { |
| 935 | return IPMI_CC_RESPONSE_ERROR; |
| 936 | } |
| 937 | |
| 938 | auto warningInterface = |
| 939 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Warning"); |
| 940 | auto criticalInterface = |
| 941 | sensorMap.find("xyz.openbmc_project.Sensor.Threshold.Critical"); |
| 942 | |
| 943 | // zero out response buff |
| 944 | auto responseClear = static_cast<uint8_t *>(response); |
| 945 | std::fill(responseClear, responseClear + sizeof(SensorEventStatusResp), 0); |
| 946 | auto resp = static_cast<SensorEventStatusResp *>(response); |
| 947 | resp->enabled = |
| 948 | static_cast<uint8_t>(IPMISensorEventEnableByte2::sensorScanningEnable); |
| 949 | |
James Feist | 392786a | 2019-03-19 13:36:10 -0700 | [diff] [blame] | 950 | std::optional<bool> criticalDeassertHigh = |
| 951 | thresholdDeassertMap[path]["CriticalAlarmHigh"]; |
| 952 | std::optional<bool> criticalDeassertLow = |
| 953 | thresholdDeassertMap[path]["CriticalAlarmLow"]; |
| 954 | std::optional<bool> warningDeassertHigh = |
| 955 | thresholdDeassertMap[path]["WarningAlarmHigh"]; |
| 956 | std::optional<bool> warningDeassertLow = |
| 957 | thresholdDeassertMap[path]["WarningAlarmLow"]; |
| 958 | |
| 959 | if (criticalDeassertHigh && !*criticalDeassertHigh) |
| 960 | { |
| 961 | resp->deassertionsMSB |= static_cast<uint8_t>( |
| 962 | IPMISensorEventEnableThresholds::upperCriticalGoingHigh); |
| 963 | } |
| 964 | if (criticalDeassertLow && !*criticalDeassertLow) |
| 965 | { |
| 966 | resp->deassertionsMSB |= static_cast<uint8_t>( |
| 967 | IPMISensorEventEnableThresholds::upperCriticalGoingLow); |
| 968 | } |
| 969 | if (warningDeassertHigh && !*warningDeassertHigh) |
| 970 | { |
| 971 | resp->deassertionsLSB |= static_cast<uint8_t>( |
| 972 | IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh); |
| 973 | } |
| 974 | if (warningDeassertLow && !*warningDeassertLow) |
| 975 | { |
| 976 | resp->deassertionsLSB |= static_cast<uint8_t>( |
| 977 | IPMISensorEventEnableThresholds::lowerNonCriticalGoingHigh); |
| 978 | } |
| 979 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 980 | if ((warningInterface != sensorMap.end()) || |
| 981 | (criticalInterface != sensorMap.end())) |
| 982 | { |
| 983 | resp->enabled = static_cast<uint8_t>( |
| 984 | IPMISensorEventEnableByte2::eventMessagesEnable); |
| 985 | if (warningInterface != sensorMap.end()) |
| 986 | { |
| 987 | auto &warningMap = warningInterface->second; |
| 988 | |
| 989 | auto warningHigh = warningMap.find("WarningAlarmHigh"); |
| 990 | auto warningLow = warningMap.find("WarningAlarmLow"); |
| 991 | auto warningHighAlarm = false; |
| 992 | auto warningLowAlarm = false; |
| 993 | |
| 994 | if (warningHigh != warningMap.end()) |
| 995 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 996 | warningHighAlarm = std::get<bool>(warningHigh->second); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 997 | } |
| 998 | if (warningLow != warningMap.end()) |
| 999 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 1000 | warningLowAlarm = std::get<bool>(warningLow->second); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1001 | } |
| 1002 | if (warningHighAlarm) |
| 1003 | { |
| 1004 | resp->assertionsLSB |= static_cast<uint8_t>( |
| 1005 | IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh); |
| 1006 | } |
| 1007 | if (warningLowAlarm) |
| 1008 | { |
| 1009 | resp->assertionsLSB |= 1; // lower nc going low |
| 1010 | } |
| 1011 | } |
| 1012 | if (criticalInterface != sensorMap.end()) |
| 1013 | { |
| 1014 | auto &criticalMap = criticalInterface->second; |
| 1015 | |
| 1016 | auto criticalHigh = criticalMap.find("CriticalAlarmHigh"); |
| 1017 | auto criticalLow = criticalMap.find("CriticalAlarmLow"); |
| 1018 | auto criticalHighAlarm = false; |
| 1019 | auto criticalLowAlarm = false; |
| 1020 | |
| 1021 | if (criticalHigh != criticalMap.end()) |
| 1022 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 1023 | criticalHighAlarm = std::get<bool>(criticalHigh->second); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1024 | } |
| 1025 | if (criticalLow != criticalMap.end()) |
| 1026 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 1027 | criticalLowAlarm = std::get<bool>(criticalLow->second); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1028 | } |
| 1029 | if (criticalHighAlarm) |
| 1030 | { |
| 1031 | resp->assertionsMSB |= static_cast<uint8_t>( |
| 1032 | IPMISensorEventEnableThresholds::upperCriticalGoingHigh); |
| 1033 | } |
| 1034 | if (criticalLowAlarm) |
| 1035 | { |
| 1036 | resp->assertionsLSB |= static_cast<uint8_t>( |
| 1037 | IPMISensorEventEnableThresholds::lowerCriticalGoingLow); |
| 1038 | } |
| 1039 | } |
| 1040 | *dataLen = sizeof(SensorEventStatusResp); |
| 1041 | } |
| 1042 | |
| 1043 | // no thresholds enabled, don't need assertionMSB |
| 1044 | else |
| 1045 | { |
| 1046 | *dataLen = sizeof(SensorEventStatusResp) - 1; |
| 1047 | } |
| 1048 | |
| 1049 | return IPMI_CC_OK; |
| 1050 | } |
| 1051 | |
| 1052 | /* end sensor commands */ |
| 1053 | |
| 1054 | /* storage commands */ |
| 1055 | |
| 1056 | ipmi_ret_t ipmiStorageGetSDRRepositoryInfo(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 1057 | ipmi_request_t request, |
| 1058 | ipmi_response_t response, |
| 1059 | ipmi_data_len_t dataLen, |
| 1060 | ipmi_context_t context) |
| 1061 | { |
| 1062 | printCommand(+netfn, +cmd); |
| 1063 | |
| 1064 | if (*dataLen) |
| 1065 | { |
| 1066 | *dataLen = 0; |
| 1067 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 1068 | } |
| 1069 | *dataLen = 0; // default to 0 in case of an error |
| 1070 | |
| 1071 | if (sensorTree.empty() && !getSensorSubtree(sensorTree)) |
| 1072 | { |
| 1073 | return IPMI_CC_RESPONSE_ERROR; |
| 1074 | } |
| 1075 | |
| 1076 | // zero out response buff |
| 1077 | auto responseClear = static_cast<uint8_t *>(response); |
| 1078 | std::fill(responseClear, responseClear + sizeof(GetSDRInfoResp), 0); |
| 1079 | |
| 1080 | auto resp = static_cast<GetSDRInfoResp *>(response); |
| 1081 | resp->sdrVersion = ipmiSdrVersion; |
| 1082 | uint16_t recordCount = sensorTree.size(); |
| 1083 | |
| 1084 | // todo: for now, sdr count is number of sensors |
| 1085 | resp->recordCountLS = recordCount & 0xFF; |
| 1086 | resp->recordCountMS = recordCount >> 8; |
| 1087 | |
| 1088 | // free space unspcified |
| 1089 | resp->freeSpace[0] = 0xFF; |
| 1090 | resp->freeSpace[1] = 0xFF; |
| 1091 | |
| 1092 | resp->mostRecentAddition = sdrLastAdd; |
| 1093 | resp->mostRecentErase = sdrLastRemove; |
| 1094 | resp->operationSupport = static_cast<uint8_t>( |
| 1095 | SdrRepositoryInfoOps::overflow); // write not supported |
| 1096 | resp->operationSupport |= |
| 1097 | static_cast<uint8_t>(SdrRepositoryInfoOps::allocCommandSupported); |
| 1098 | resp->operationSupport |= static_cast<uint8_t>( |
| 1099 | SdrRepositoryInfoOps::reserveSDRRepositoryCommandSupported); |
| 1100 | *dataLen = sizeof(GetSDRInfoResp); |
| 1101 | return IPMI_CC_OK; |
| 1102 | } |
| 1103 | |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1104 | /** @brief implements the get SDR allocation info command |
| 1105 | * |
| 1106 | * @returns IPMI completion code plus response data |
| 1107 | * - allocUnits - Number of possible allocation units |
| 1108 | * - allocUnitSize - Allocation unit size in bytes. |
| 1109 | * - allocUnitFree - Number of free allocation units |
| 1110 | * - allocUnitLargestFree - Largest free block in allocation units |
| 1111 | * - maxRecordSize - Maximum record size in allocation units. |
| 1112 | */ |
| 1113 | ipmi::RspType<uint16_t, // allocUnits |
| 1114 | uint16_t, // allocUnitSize |
| 1115 | uint16_t, // allocUnitFree |
| 1116 | uint16_t, // allocUnitLargestFree |
| 1117 | uint8_t // maxRecordSize |
| 1118 | > |
| 1119 | ipmiStorageGetSDRAllocationInfo() |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1120 | { |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1121 | // 0000h unspecified number of alloc units |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1122 | constexpr uint16_t allocUnits = 0; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1123 | |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1124 | constexpr uint16_t allocUnitFree = 0; |
| 1125 | constexpr uint16_t allocUnitLargestFree = 0; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1126 | // only allow one block at a time |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1127 | constexpr uint8_t maxRecordSize = 1; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1128 | |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1129 | return ipmi::responseSuccess(allocUnits, maxSDRTotalSize, allocUnitFree, |
| 1130 | allocUnitLargestFree, maxRecordSize); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1131 | } |
| 1132 | |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1133 | /** @brief implements the reserve SDR command |
| 1134 | * @returns IPMI completion code plus response data |
| 1135 | * - sdrReservationID |
| 1136 | */ |
| 1137 | ipmi::RspType<uint16_t> ipmiStorageReserveSDR() |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1138 | { |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1139 | sdrReservationID++; |
James Feist | a80cb90 | 2019-02-14 13:05:25 -0800 | [diff] [blame] | 1140 | if (sdrReservationID == 0) |
| 1141 | { |
| 1142 | sdrReservationID++; |
| 1143 | } |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1144 | |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1145 | return ipmi::responseSuccess(sdrReservationID); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1146 | } |
| 1147 | |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1148 | ipmi::RspType<uint16_t, // next record ID |
| 1149 | std::vector<uint8_t> // payload |
| 1150 | > |
| 1151 | ipmiStorageGetSDR(uint16_t reservationID, uint16_t recordID, uint8_t offset, |
| 1152 | uint8_t bytesToRead) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1153 | { |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1154 | constexpr uint16_t lastRecordIndex = 0xFFFF; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1155 | |
| 1156 | // reservation required for partial reads with non zero offset into |
| 1157 | // record |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1158 | if ((sdrReservationID == 0 || reservationID != sdrReservationID) && offset) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1159 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1160 | return ipmi::responseInvalidReservationId(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1161 | } |
| 1162 | |
| 1163 | if (sensorTree.empty() && !getSensorSubtree(sensorTree)) |
| 1164 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1165 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1166 | } |
| 1167 | |
| 1168 | size_t fruCount = 0; |
| 1169 | ipmi_ret_t ret = ipmi::storage::getFruSdrCount(fruCount); |
| 1170 | if (ret != IPMI_CC_OK) |
| 1171 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1172 | return ipmi::response(ret); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1173 | } |
| 1174 | |
| 1175 | size_t lastRecord = sensorTree.size() + fruCount - 1; |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1176 | if (recordID == lastRecordIndex) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1177 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1178 | recordID = lastRecord; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1179 | } |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1180 | if (recordID > lastRecord) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1181 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1182 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1183 | } |
| 1184 | |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1185 | uint16_t nextRecordId = lastRecord > recordID ? recordID + 1 : 0XFFFF; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1186 | |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1187 | if (recordID >= sensorTree.size()) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1188 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1189 | size_t fruIndex = recordID - sensorTree.size(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1190 | if (fruIndex >= fruCount) |
| 1191 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1192 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1193 | } |
| 1194 | get_sdr::SensorDataFruRecord data; |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1195 | if (offset > sizeof(data)) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1196 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1197 | return ipmi::responseInvalidFieldRequest(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1198 | } |
| 1199 | ret = ipmi::storage::getFruSdrs(fruIndex, data); |
| 1200 | if (ret != IPMI_CC_OK) |
| 1201 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1202 | return ipmi::response(ret); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1203 | } |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1204 | data.header.record_id_msb = recordID << 8; |
| 1205 | data.header.record_id_lsb = recordID & 0xFF; |
| 1206 | if (sizeof(data) < (offset + bytesToRead)) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1207 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1208 | bytesToRead = sizeof(data) - offset; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1209 | } |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1210 | |
| 1211 | uint8_t *respStart = reinterpret_cast<uint8_t *>(&data) + offset; |
| 1212 | std::vector<uint8_t> recordData(respStart, respStart + bytesToRead); |
| 1213 | |
| 1214 | return ipmi::responseSuccess(nextRecordId, recordData); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1215 | } |
| 1216 | |
| 1217 | std::string connection; |
| 1218 | std::string path; |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1219 | uint16_t sensorIndex = recordID; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1220 | for (const auto &sensor : sensorTree) |
| 1221 | { |
| 1222 | if (sensorIndex-- == 0) |
| 1223 | { |
| 1224 | if (!sensor.second.size()) |
| 1225 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1226 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1227 | } |
| 1228 | connection = sensor.second.begin()->first; |
| 1229 | path = sensor.first; |
| 1230 | break; |
| 1231 | } |
| 1232 | } |
| 1233 | |
| 1234 | SensorMap sensorMap; |
| 1235 | if (!getSensorMap(connection, path, sensorMap)) |
| 1236 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1237 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1238 | } |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1239 | uint8_t sensornumber = (recordID & 0xFF); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1240 | get_sdr::SensorDataFullRecord record = {0}; |
| 1241 | |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1242 | record.header.record_id_msb = recordID << 8; |
| 1243 | record.header.record_id_lsb = recordID & 0xFF; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1244 | record.header.sdr_version = ipmiSdrVersion; |
| 1245 | record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD; |
| 1246 | record.header.record_length = sizeof(get_sdr::SensorDataFullRecord) - |
| 1247 | sizeof(get_sdr::SensorDataRecordHeader); |
| 1248 | record.key.owner_id = 0x20; |
| 1249 | record.key.owner_lun = 0x0; |
| 1250 | record.key.sensor_number = sensornumber; |
| 1251 | |
| 1252 | record.body.entity_id = 0x0; |
| 1253 | record.body.entity_instance = 0x01; |
James Feist | 7086a88 | 2019-03-13 10:46:00 -0700 | [diff] [blame] | 1254 | record.body.sensor_capabilities = 0x68; // auto rearm - todo hysteresis |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1255 | record.body.sensor_type = getSensorTypeFromPath(path); |
| 1256 | std::string type = getSensorTypeStringFromPath(path); |
| 1257 | auto typeCstr = type.c_str(); |
| 1258 | auto findUnits = sensorUnits.find(typeCstr); |
| 1259 | if (findUnits != sensorUnits.end()) |
| 1260 | { |
| 1261 | record.body.sensor_units_2_base = |
| 1262 | static_cast<uint8_t>(findUnits->second); |
| 1263 | } // else default 0x0 unspecified |
| 1264 | |
| 1265 | record.body.event_reading_type = getSensorEventTypeFromPath(path); |
| 1266 | |
| 1267 | auto sensorObject = sensorMap.find("xyz.openbmc_project.Sensor.Value"); |
| 1268 | if (sensorObject == sensorMap.end()) |
| 1269 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1270 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1271 | } |
| 1272 | |
| 1273 | auto maxObject = sensorObject->second.find("MaxValue"); |
| 1274 | auto minObject = sensorObject->second.find("MinValue"); |
| 1275 | double max = 128; |
| 1276 | double min = -127; |
| 1277 | if (maxObject != sensorObject->second.end()) |
| 1278 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 1279 | max = std::visit(VariantToDoubleVisitor(), maxObject->second); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1280 | } |
| 1281 | |
| 1282 | if (minObject != sensorObject->second.end()) |
| 1283 | { |
Vernon Mauery | 8166c8d | 2019-05-23 11:22:30 -0700 | [diff] [blame] | 1284 | min = std::visit(VariantToDoubleVisitor(), minObject->second); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1285 | } |
| 1286 | |
Yong Li | 1f2eb5e | 2019-05-23 14:07:17 +0800 | [diff] [blame] | 1287 | int16_t mValue = 0; |
| 1288 | int8_t rExp = 0; |
| 1289 | int16_t bValue = 0; |
| 1290 | int8_t bExp = 0; |
| 1291 | bool bSigned = false; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1292 | |
| 1293 | if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) |
| 1294 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1295 | return ipmi::responseResponseError(); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1296 | } |
| 1297 | |
| 1298 | // apply M, B, and exponents, M and B are 10 bit values, exponents are 4 |
| 1299 | record.body.m_lsb = mValue & 0xFF; |
| 1300 | |
| 1301 | // move the smallest bit of the MSB into place (bit 9) |
| 1302 | // the MSbs are bits 7:8 in m_msb_and_tolerance |
| 1303 | uint8_t mMsb = (mValue & (1 << 8)) > 0 ? (1 << 6) : 0; |
| 1304 | |
| 1305 | // assign the negative |
| 1306 | if (mValue < 0) |
| 1307 | { |
| 1308 | mMsb |= (1 << 7); |
| 1309 | } |
| 1310 | record.body.m_msb_and_tolerance = mMsb; |
| 1311 | |
| 1312 | record.body.b_lsb = bValue & 0xFF; |
| 1313 | |
| 1314 | // move the smallest bit of the MSB into place |
| 1315 | // the MSbs are bits 7:8 in b_msb_and_accuracy_lsb |
| 1316 | uint8_t bMsb = (bValue & (1 << 8)) > 0 ? (1 << 6) : 0; |
| 1317 | |
| 1318 | // assign the negative |
| 1319 | if (bValue < 0) |
| 1320 | { |
| 1321 | bMsb |= (1 << 7); |
| 1322 | } |
| 1323 | record.body.b_msb_and_accuracy_lsb = bMsb; |
| 1324 | |
| 1325 | record.body.r_b_exponents = bExp & 0x7; |
| 1326 | if (bExp < 0) |
| 1327 | { |
| 1328 | record.body.r_b_exponents |= 1 << 3; |
| 1329 | } |
| 1330 | record.body.r_b_exponents = (rExp & 0x7) << 4; |
| 1331 | if (rExp < 0) |
| 1332 | { |
| 1333 | record.body.r_b_exponents |= 1 << 7; |
| 1334 | } |
| 1335 | |
| 1336 | // todo fill out rest of units |
| 1337 | if (bSigned) |
| 1338 | { |
| 1339 | record.body.sensor_units_1 = 1 << 7; |
| 1340 | } |
| 1341 | |
| 1342 | // populate sensor name from path |
| 1343 | std::string name; |
| 1344 | size_t nameStart = path.rfind("/"); |
| 1345 | if (nameStart != std::string::npos) |
| 1346 | { |
| 1347 | name = path.substr(nameStart + 1, std::string::npos - nameStart); |
| 1348 | } |
| 1349 | |
| 1350 | std::replace(name.begin(), name.end(), '_', ' '); |
| 1351 | if (name.size() > FULL_RECORD_ID_STR_MAX_LENGTH) |
| 1352 | { |
James Feist | 979a232 | 2019-05-15 09:06:54 -0700 | [diff] [blame] | 1353 | // try to not truncate by replacing common words |
| 1354 | constexpr std::array<std::pair<const char *, const char *>, 2> |
| 1355 | replaceWords = {std::make_pair("Output", "Out"), |
| 1356 | std::make_pair("Input", "In")}; |
| 1357 | for (const auto &[find, replace] : replaceWords) |
| 1358 | { |
| 1359 | boost::replace_all(name, find, replace); |
| 1360 | } |
| 1361 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1362 | name.resize(FULL_RECORD_ID_STR_MAX_LENGTH); |
| 1363 | } |
| 1364 | record.body.id_string_info = name.size(); |
| 1365 | std::strncpy(record.body.id_string, name.c_str(), |
| 1366 | sizeof(record.body.id_string)); |
| 1367 | |
James Feist | c4b15bc | 2019-04-16 15:41:39 -0700 | [diff] [blame] | 1368 | IPMIThresholds thresholdData; |
| 1369 | try |
| 1370 | { |
| 1371 | thresholdData = getIPMIThresholds(sensorMap); |
| 1372 | } |
| 1373 | catch (std::exception &) |
| 1374 | { |
| 1375 | return ipmi::responseResponseError(); |
| 1376 | } |
| 1377 | |
| 1378 | if (thresholdData.criticalHigh) |
| 1379 | { |
| 1380 | record.body.upper_critical_threshold = *thresholdData.criticalHigh; |
| 1381 | record.body.supported_deassertions[1] |= static_cast<uint8_t>( |
| 1382 | IPMISensorEventEnableThresholds::upperCriticalGoingHigh); |
| 1383 | record.body.supported_assertions[1] |= static_cast<uint8_t>( |
| 1384 | IPMISensorEventEnableThresholds::upperCriticalGoingHigh); |
| 1385 | record.body.discrete_reading_setting_mask[0] |= |
| 1386 | static_cast<uint8_t>(IPMISensorReadingByte3::upperCritical); |
| 1387 | } |
| 1388 | if (thresholdData.warningHigh) |
| 1389 | { |
| 1390 | record.body.upper_noncritical_threshold = *thresholdData.warningHigh; |
| 1391 | record.body.supported_deassertions[0] |= static_cast<uint8_t>( |
| 1392 | IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh); |
| 1393 | record.body.supported_assertions[0] |= static_cast<uint8_t>( |
| 1394 | IPMISensorEventEnableThresholds::upperNonCriticalGoingHigh); |
| 1395 | record.body.discrete_reading_setting_mask[0] |= |
| 1396 | static_cast<uint8_t>(IPMISensorReadingByte3::upperNonCritical); |
| 1397 | } |
| 1398 | if (thresholdData.criticalLow) |
| 1399 | { |
| 1400 | record.body.lower_critical_threshold = *thresholdData.criticalLow; |
| 1401 | record.body.supported_deassertions[0] |= static_cast<uint8_t>( |
| 1402 | IPMISensorEventEnableThresholds::lowerCriticalGoingLow); |
| 1403 | record.body.supported_assertions[0] |= static_cast<uint8_t>( |
| 1404 | IPMISensorEventEnableThresholds::lowerCriticalGoingLow); |
| 1405 | record.body.discrete_reading_setting_mask[0] |= |
| 1406 | static_cast<uint8_t>(IPMISensorReadingByte3::lowerCritical); |
| 1407 | } |
| 1408 | if (thresholdData.warningLow) |
| 1409 | { |
| 1410 | record.body.lower_noncritical_threshold = *thresholdData.warningLow; |
| 1411 | record.body.supported_deassertions[0] |= static_cast<uint8_t>( |
| 1412 | IPMISensorEventEnableThresholds::lowerNonCriticalGoingLow); |
| 1413 | record.body.supported_assertions[0] |= static_cast<uint8_t>( |
| 1414 | IPMISensorEventEnableThresholds::lowerNonCriticalGoingLow); |
| 1415 | record.body.discrete_reading_setting_mask[0] |= |
| 1416 | static_cast<uint8_t>(IPMISensorReadingByte3::lowerNonCritical); |
| 1417 | } |
| 1418 | |
| 1419 | // everything that is readable is setable |
| 1420 | record.body.discrete_reading_setting_mask[1] = |
| 1421 | record.body.discrete_reading_setting_mask[0]; |
| 1422 | |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1423 | if (sizeof(get_sdr::SensorDataFullRecord) < (offset + bytesToRead)) |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1424 | { |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1425 | bytesToRead = sizeof(get_sdr::SensorDataFullRecord) - offset; |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1426 | } |
| 1427 | |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1428 | uint8_t *respStart = reinterpret_cast<uint8_t *>(&record) + offset; |
| 1429 | std::vector<uint8_t> recordData(respStart, respStart + bytesToRead); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1430 | |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1431 | return ipmi::responseSuccess(nextRecordId, recordData); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1432 | } |
| 1433 | /* end storage commands */ |
| 1434 | |
| 1435 | void registerSensorFunctions() |
| 1436 | { |
| 1437 | // get firmware version information |
| 1438 | ipmiPrintAndRegister(NETFUN_SENSOR, IPMI_CMD_WILDCARD, nullptr, |
| 1439 | ipmiSensorWildcardHandler, PRIVILEGE_USER); |
| 1440 | |
| 1441 | // <Get Sensor Type> |
| 1442 | ipmiPrintAndRegister( |
| 1443 | NETFUN_SENSOR, |
| 1444 | static_cast<ipmi_cmd_t>(IPMINetfnSensorCmds::ipmiCmdGetSensorType), |
| 1445 | nullptr, ipmiSensorWildcardHandler, PRIVILEGE_USER); |
| 1446 | |
| 1447 | // <Set Sensor Reading and Event Status> |
| 1448 | ipmiPrintAndRegister( |
| 1449 | NETFUN_SENSOR, |
| 1450 | static_cast<ipmi_cmd_t>( |
| 1451 | IPMINetfnSensorCmds::ipmiCmdSetSensorReadingAndEventStatus), |
| 1452 | nullptr, ipmiSensorWildcardHandler, PRIVILEGE_OPERATOR); |
| 1453 | |
Jason M. Bills | ae6bdb1 | 2019-04-02 12:00:04 -0700 | [diff] [blame] | 1454 | // <Platform Event> |
| 1455 | ipmi::registerHandler( |
| 1456 | ipmi::prioOemBase, ipmi::netFnSensor, |
| 1457 | static_cast<ipmi::Cmd>(ipmi::sensor_event::cmdPlatformEvent), |
| 1458 | ipmi::Privilege::Operator, ipmiSenPlatformEvent); |
| 1459 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1460 | // <Get Sensor Reading> |
James Feist | 0cd014a | 2019-04-08 15:04:33 -0700 | [diff] [blame] | 1461 | ipmi::registerHandler( |
| 1462 | ipmi::prioOemBase, NETFUN_SENSOR, |
| 1463 | static_cast<ipmi::Cmd>(IPMINetfnSensorCmds::ipmiCmdGetSensorReading), |
| 1464 | ipmi::Privilege::User, ipmiSenGetSensorReading); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1465 | |
| 1466 | // <Get Sensor Threshold> |
James Feist | 902c4c5 | 2019-04-16 14:51:31 -0700 | [diff] [blame] | 1467 | ipmi::registerHandler( |
| 1468 | ipmi::prioOemBase, NETFUN_SENSOR, |
| 1469 | static_cast<ipmi::Cmd>(IPMINetfnSensorCmds::ipmiCmdGetSensorThreshold), |
| 1470 | ipmi::Privilege::User, ipmiSenGetSensorThresholds); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1471 | |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 1472 | // <Set Sensor Threshold> |
| 1473 | ipmi::registerHandler( |
| 1474 | ipmi::prioOemBase, NETFUN_SENSOR, |
| 1475 | static_cast<ipmi::Cmd>(IPMINetfnSensorCmds::ipmiCmdSetSensorThreshold), |
| 1476 | ipmi::Privilege::Operator, ipmiSenSetSensorThresholds); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1477 | |
| 1478 | // <Get Sensor Event Enable> |
jayaprakash Mutyala | 39fa93f | 2019-05-13 12:16:30 +0000 | [diff] [blame] | 1479 | ipmi::registerHandler(ipmi::prioOemBase, NETFUN_SENSOR, |
| 1480 | static_cast<ipmi::Cmd>( |
| 1481 | IPMINetfnSensorCmds::ipmiCmdGetSensorEventEnable), |
| 1482 | ipmi::Privilege::User, ipmiSenGetSensorEventEnable); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1483 | |
| 1484 | // <Get Sensor Event Status> |
| 1485 | ipmiPrintAndRegister(NETFUN_SENSOR, |
| 1486 | static_cast<ipmi_cmd_t>( |
| 1487 | IPMINetfnSensorCmds::ipmiCmdGetSensorEventStatus), |
| 1488 | nullptr, ipmiSenGetSensorEventStatus, PRIVILEGE_USER); |
| 1489 | |
| 1490 | // register all storage commands for both Sensor and Storage command |
| 1491 | // versions |
| 1492 | |
| 1493 | // <Get SDR Repository Info> |
| 1494 | ipmiPrintAndRegister( |
| 1495 | NETFUN_STORAGE, |
| 1496 | static_cast<ipmi_cmd_t>(IPMINetfnStorageCmds::ipmiCmdGetRepositoryInfo), |
| 1497 | nullptr, ipmiStorageGetSDRRepositoryInfo, PRIVILEGE_USER); |
| 1498 | |
| 1499 | // <Get SDR Allocation Info> |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1500 | ipmi::registerHandler( |
| 1501 | ipmi::prioOemBase, NETFUN_STORAGE, |
| 1502 | static_cast<ipmi::Cmd>( |
| 1503 | IPMINetfnStorageCmds::ipmiCmdGetSDRAllocationInfo), |
| 1504 | ipmi::Privilege::User, ipmiStorageGetSDRAllocationInfo); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1505 | |
| 1506 | // <Reserve SDR Repo> |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1507 | ipmi::registerHandler(ipmi::prioOemBase, NETFUN_SENSOR, |
| 1508 | static_cast<ipmi::Cmd>( |
| 1509 | IPMINetfnSensorCmds::ipmiCmdReserveDeviceSDRRepo), |
| 1510 | ipmi::Privilege::User, ipmiStorageReserveSDR); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1511 | |
jayaprakash Mutyala | 6ae0818 | 2019-05-13 18:56:11 +0000 | [diff] [blame] | 1512 | ipmi::registerHandler( |
| 1513 | ipmi::prioOemBase, NETFUN_STORAGE, |
| 1514 | static_cast<ipmi::Cmd>(IPMINetfnStorageCmds::ipmiCmdReserveSDR), |
| 1515 | ipmi::Privilege::User, ipmiStorageReserveSDR); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1516 | |
| 1517 | // <Get Sdr> |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1518 | ipmi::registerHandler( |
| 1519 | ipmi::prioOemBase, NETFUN_SENSOR, |
| 1520 | static_cast<ipmi::Cmd>(IPMINetfnSensorCmds::ipmiCmdGetDeviceSDR), |
| 1521 | ipmi::Privilege::User, ipmiStorageGetSDR); |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1522 | |
James Feist | b49a98a | 2019-04-16 13:48:09 -0700 | [diff] [blame] | 1523 | ipmi::registerHandler( |
| 1524 | ipmi::prioOemBase, NETFUN_STORAGE, |
| 1525 | static_cast<ipmi::Cmd>(IPMINetfnStorageCmds::ipmiCmdGetSDR), |
| 1526 | ipmi::Privilege::User, ipmiStorageGetSDR); |
| 1527 | |
Jason M. Bills | 3f7c5e4 | 2018-10-03 14:00:41 -0700 | [diff] [blame] | 1528 | return; |
| 1529 | } |
| 1530 | } // namespace ipmi |