Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2019 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 | #include "xyz/openbmc_project/Common/error.hpp" |
| 17 | |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 18 | #include <ipmid/api.hpp> |
| 19 | #include <ipmid/utils.hpp> |
| 20 | #include <nlohmann/json.hpp> |
| 21 | #include <phosphor-logging/elog-errors.hpp> |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 22 | #include <phosphor-logging/log.hpp> |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 23 | #include <sdbusplus/timer.hpp> |
James Feist | fcd2d3a | 2020-05-28 10:38:15 -0700 | [diff] [blame] | 24 | #include <xyz/openbmc_project/Control/Power/RestorePolicy/server.hpp> |
| 25 | |
| 26 | #include <fstream> |
| 27 | #include <iostream> |
| 28 | #include <regex> |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 29 | #include <stdexcept> |
| 30 | #include <string_view> |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 31 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 32 | using namespace phosphor::logging; |
| 33 | |
| 34 | namespace ipmi::chassis |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 35 | { |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 36 | static constexpr const char* buttonIntf = "xyz.openbmc_project.Chassis.Buttons"; |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 37 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 38 | const static constexpr char* idButtonPath = |
| 39 | "/xyz/openbmc_project/chassis/buttons/id"; |
| 40 | static constexpr const char* powerButtonPath = |
| 41 | "/xyz/openbmc_project/chassis/buttons/power"; |
| 42 | static constexpr const char* resetButtonPath = |
| 43 | "/xyz/openbmc_project/chassis/buttons/reset"; |
| 44 | static constexpr const char* interruptButtonPath = |
| 45 | "/xyz/openbmc_project/chassis/buttons/nmi"; |
| 46 | |
| 47 | const static constexpr char* idButtonProp = "ButtonPressed"; |
| 48 | |
| 49 | const static constexpr char* ledService = |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 50 | "xyz.openbmc_project.LED.GroupManager"; |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 51 | const static constexpr char* ledIDOnObj = |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 52 | "/xyz/openbmc_project/led/groups/enclosure_identify"; |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 53 | const static constexpr char* ledIDBlinkObj = |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 54 | "/xyz/openbmc_project/led/groups/enclosure_identify_blink"; |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 55 | const static constexpr char* ledInterface = "xyz.openbmc_project.Led.Group"; |
| 56 | const static constexpr char* ledProp = "Asserted"; |
Jason M. Bills | 09221d7 | 2019-07-26 13:38:28 -0700 | [diff] [blame] | 57 | enum class ChassisIDState |
| 58 | { |
| 59 | off = 0, |
| 60 | temporary = 1, |
| 61 | indefinite = 2, |
| 62 | }; |
| 63 | static ChassisIDState chassisIDState = ChassisIDState::off; |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 64 | |
| 65 | constexpr size_t defaultIdentifyTimeOut = 15; |
| 66 | |
| 67 | std::unique_ptr<phosphor::Timer> identifyTimer |
| 68 | __attribute__((init_priority(101))); |
| 69 | std::unique_ptr<sdbusplus::bus::match_t> matchPtr |
| 70 | __attribute__((init_priority(101))); |
| 71 | |
| 72 | static void registerChassisFunctions() __attribute__((constructor)); |
| 73 | |
| 74 | static ipmi::ServiceCache LEDService(ledInterface, ledIDBlinkObj); |
| 75 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 76 | void enclosureIdentifyLed(const char* objName, bool isIdLedOn) |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 77 | { |
| 78 | auto bus = getSdBus(); |
| 79 | |
| 80 | try |
| 81 | { |
| 82 | std::string service = LEDService.getService(*bus); |
| 83 | setDbusProperty(*bus, service, objName, ledInterface, ledProp, |
| 84 | isIdLedOn); |
| 85 | } |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 86 | catch (const std::exception& e) |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 87 | { |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 88 | log<level::ERR>("enclosureIdentifyLed: can't set property", |
| 89 | entry("ERR=%s", e.what())); |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 90 | } |
| 91 | } |
| 92 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 93 | bool getIDState(const char* objName, bool& state) |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 94 | { |
| 95 | auto bus = getSdBus(); |
| 96 | |
| 97 | try |
| 98 | { |
| 99 | std::string service = LEDService.getService(*bus); |
| 100 | ipmi::Value enabled = |
| 101 | getDbusProperty(*bus, service, objName, ledInterface, ledProp); |
| 102 | state = std::get<bool>(enabled); |
| 103 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 104 | catch (const sdbusplus::exception::exception& e) |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 105 | { |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 106 | log<level::ERR>("Fail to get property", entry("PATH=%s", objName), |
| 107 | entry("ERROR=%s", e.what())); |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 108 | return false; |
| 109 | } |
| 110 | return true; |
| 111 | } |
| 112 | |
| 113 | void enclosureIdentifyLedBlinkOff() |
| 114 | { |
Jason M. Bills | 09221d7 | 2019-07-26 13:38:28 -0700 | [diff] [blame] | 115 | chassisIDState = ChassisIDState::off; |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 116 | enclosureIdentifyLed(ledIDBlinkObj, false); |
| 117 | } |
| 118 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 119 | void idButtonPropChanged(sdbusplus::message::message& msg) |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 120 | { |
| 121 | bool asserted = false; |
| 122 | bool buttonPressed = false; |
| 123 | |
| 124 | std::map<std::string, ipmi::Value> props; |
| 125 | std::vector<std::string> inval; |
| 126 | std::string iface; |
| 127 | msg.read(iface, props, inval); |
| 128 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 129 | for (const auto& t : props) |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 130 | { |
| 131 | auto key = t.first; |
| 132 | auto value = t.second; |
| 133 | |
| 134 | if (key == idButtonProp) |
| 135 | { |
| 136 | buttonPressed = std::get<bool>(value); |
| 137 | } |
| 138 | break; |
| 139 | } |
| 140 | |
| 141 | if (buttonPressed) |
| 142 | { |
| 143 | if (identifyTimer->isRunning()) |
| 144 | { |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 145 | log<level::INFO>("ID timer is running"); |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | // make sure timer is stopped |
| 149 | identifyTimer->stop(); |
| 150 | |
| 151 | if (!getIDState(ledIDBlinkObj, asserted)) |
| 152 | { |
| 153 | return; |
| 154 | } |
| 155 | |
| 156 | if (asserted) |
| 157 | { |
| 158 | // LED is blinking, turn off the LED |
Jason M. Bills | 09221d7 | 2019-07-26 13:38:28 -0700 | [diff] [blame] | 159 | chassisIDState = ChassisIDState::off; |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 160 | enclosureIdentifyLed(ledIDBlinkObj, false); |
| 161 | enclosureIdentifyLed(ledIDOnObj, false); |
| 162 | } |
| 163 | else |
| 164 | { |
| 165 | // toggle the IED on/off |
| 166 | if (!getIDState(ledIDOnObj, asserted)) |
| 167 | { |
| 168 | return; |
| 169 | } |
| 170 | enclosureIdentifyLed(ledIDOnObj, !asserted); |
| 171 | } |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | void createIdentifyTimer() |
| 176 | { |
| 177 | if (!identifyTimer) |
| 178 | { |
| 179 | identifyTimer = |
| 180 | std::make_unique<phosphor::Timer>(enclosureIdentifyLedBlinkOff); |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | ipmi::RspType<> ipmiChassisIdentify(std::optional<uint8_t> interval, |
| 185 | std::optional<uint8_t> force) |
| 186 | { |
| 187 | uint8_t identifyInterval = interval.value_or(defaultIdentifyTimeOut); |
| 188 | bool forceIdentify = force.value_or(0) & 0x01; |
| 189 | |
| 190 | enclosureIdentifyLed(ledIDOnObj, false); |
| 191 | identifyTimer->stop(); |
| 192 | |
| 193 | if (identifyInterval || forceIdentify) |
| 194 | { |
| 195 | enclosureIdentifyLed(ledIDBlinkObj, true); |
| 196 | if (forceIdentify) |
| 197 | { |
Jason M. Bills | 09221d7 | 2019-07-26 13:38:28 -0700 | [diff] [blame] | 198 | chassisIDState = ChassisIDState::indefinite; |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 199 | return ipmi::responseSuccess(); |
| 200 | } |
Jason M. Bills | 09221d7 | 2019-07-26 13:38:28 -0700 | [diff] [blame] | 201 | chassisIDState = ChassisIDState::temporary; |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 202 | // start the timer |
| 203 | auto time = std::chrono::duration_cast<std::chrono::microseconds>( |
| 204 | std::chrono::seconds(identifyInterval)); |
| 205 | identifyTimer->start(time); |
| 206 | } |
| 207 | else |
| 208 | { |
Jason M. Bills | 09221d7 | 2019-07-26 13:38:28 -0700 | [diff] [blame] | 209 | chassisIDState = ChassisIDState::off; |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 210 | enclosureIdentifyLed(ledIDBlinkObj, false); |
| 211 | } |
| 212 | return ipmi::responseSuccess(); |
| 213 | } |
| 214 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 215 | namespace power_policy |
| 216 | { |
| 217 | /* helper function for Get Chassis Status Command |
| 218 | */ |
| 219 | std::optional<uint2_t> getPowerRestorePolicy() |
| 220 | { |
| 221 | constexpr const char* powerRestorePath = |
| 222 | "/xyz/openbmc_project/control/host0/power_restore_policy"; |
| 223 | constexpr const char* powerRestoreIntf = |
| 224 | "xyz.openbmc_project.Control.Power.RestorePolicy"; |
| 225 | uint2_t restorePolicy = 0; |
| 226 | std::shared_ptr<sdbusplus::asio::connection> busp = getSdBus(); |
| 227 | |
| 228 | try |
| 229 | { |
| 230 | auto service = |
| 231 | ipmi::getService(*busp, powerRestoreIntf, powerRestorePath); |
| 232 | |
| 233 | ipmi::Value result = |
| 234 | ipmi::getDbusProperty(*busp, service, powerRestorePath, |
| 235 | powerRestoreIntf, "PowerRestorePolicy"); |
| 236 | auto powerRestore = sdbusplus::xyz::openbmc_project::Control::Power:: |
| 237 | server::RestorePolicy::convertPolicyFromString( |
| 238 | std::get<std::string>(result)); |
| 239 | |
| 240 | using namespace sdbusplus::xyz::openbmc_project::Control::Power::server; |
| 241 | switch (powerRestore) |
| 242 | { |
| 243 | case RestorePolicy::Policy::AlwaysOff: |
| 244 | restorePolicy = 0x00; |
| 245 | break; |
| 246 | case RestorePolicy::Policy::Restore: |
| 247 | restorePolicy = 0x01; |
| 248 | break; |
| 249 | case RestorePolicy::Policy::AlwaysOn: |
| 250 | restorePolicy = 0x02; |
| 251 | break; |
| 252 | } |
| 253 | } |
| 254 | catch (const std::exception& e) |
| 255 | { |
| 256 | log<level::ERR>("Failed to fetch PowerRestorePolicy property", |
| 257 | entry("ERROR=%s", e.what()), |
| 258 | entry("PATH=%s", powerRestorePath), |
| 259 | entry("INTERFACE=%s", powerRestoreIntf)); |
| 260 | return std::nullopt; |
| 261 | } |
| 262 | return std::make_optional(restorePolicy); |
| 263 | } |
| 264 | |
| 265 | /* |
| 266 | * getPowerStatus |
| 267 | * helper function for Get Chassis Status Command |
| 268 | * return - optional value for pgood (no value on error) |
| 269 | */ |
| 270 | std::optional<bool> getPowerStatus() |
| 271 | { |
| 272 | bool powerGood = false; |
| 273 | std::shared_ptr<sdbusplus::asio::connection> busp = getSdBus(); |
| 274 | try |
| 275 | { |
| 276 | constexpr const char* chassisStatePath = |
| 277 | "/xyz/openbmc_project/state/chassis0"; |
| 278 | constexpr const char* chassisStateIntf = |
| 279 | "xyz.openbmc_project.State.Chassis"; |
| 280 | auto service = |
| 281 | ipmi::getService(*busp, chassisStateIntf, chassisStatePath); |
| 282 | |
| 283 | ipmi::Value variant = |
| 284 | ipmi::getDbusProperty(*busp, service, chassisStatePath, |
| 285 | chassisStateIntf, "CurrentPowerState"); |
| 286 | std::string powerState = std::get<std::string>(variant); |
| 287 | if (powerState == "xyz.openbmc_project.State.Chassis.PowerState.On") |
| 288 | { |
| 289 | powerGood = true; |
| 290 | } |
| 291 | } |
| 292 | catch (const std::exception& e) |
| 293 | { |
| 294 | log<level::ERR>("Failed to fetch power state property", |
| 295 | entry("ERROR=%s", e.what())); |
| 296 | return std::nullopt; |
| 297 | } |
| 298 | return std::make_optional(powerGood); |
| 299 | } |
| 300 | |
| 301 | /* |
| 302 | * getACFailStatus |
| 303 | * helper function for Get Chassis Status Command |
| 304 | * return - bool value for ACFail (false on error) |
| 305 | */ |
| 306 | bool getACFailStatus() |
| 307 | { |
Jason M. Bills | a2b4c7a | 2019-06-24 16:55:21 -0700 | [diff] [blame] | 308 | constexpr const char* acBootObj = |
| 309 | "/xyz/openbmc_project/control/host0/ac_boot"; |
| 310 | constexpr const char* acBootIntf = "xyz.openbmc_project.Common.ACBoot"; |
| 311 | std::string acFail; |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 312 | std::shared_ptr<sdbusplus::asio::connection> bus = getSdBus(); |
| 313 | try |
| 314 | { |
Jason M. Bills | a2b4c7a | 2019-06-24 16:55:21 -0700 | [diff] [blame] | 315 | auto service = ipmi::getService(*bus, acBootIntf, acBootObj); |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 316 | |
Jason M. Bills | a2b4c7a | 2019-06-24 16:55:21 -0700 | [diff] [blame] | 317 | ipmi::Value variant = ipmi::getDbusProperty(*bus, service, acBootObj, |
| 318 | acBootIntf, "ACBoot"); |
| 319 | acFail = std::get<std::string>(variant); |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 320 | } |
| 321 | catch (const std::exception& e) |
| 322 | { |
Jason M. Bills | a2b4c7a | 2019-06-24 16:55:21 -0700 | [diff] [blame] | 323 | log<level::ERR>( |
| 324 | "Failed to fetch ACBoot property", entry("ERROR=%s", e.what()), |
| 325 | entry("PATH=%s", acBootObj), entry("INTERFACE=%s", acBootIntf)); |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 326 | } |
Jason M. Bills | a2b4c7a | 2019-06-24 16:55:21 -0700 | [diff] [blame] | 327 | return acFail == "True"; |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 328 | } |
| 329 | } // namespace power_policy |
| 330 | |
| 331 | static std::optional<bool> getButtonEnabled(const std::string& buttonPath) |
| 332 | { |
| 333 | bool buttonDisabled = false; |
| 334 | std::shared_ptr<sdbusplus::asio::connection> busp = getSdBus(); |
| 335 | try |
| 336 | { |
| 337 | auto service = ipmi::getService(*getSdBus(), buttonIntf, buttonPath); |
| 338 | ipmi::Value disabled = ipmi::getDbusProperty( |
| 339 | *busp, service, buttonPath, buttonIntf, "ButtonMasked"); |
| 340 | buttonDisabled = std::get<bool>(disabled); |
| 341 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 342 | catch (const sdbusplus::exception::exception& e) |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 343 | { |
| 344 | log<level::ERR>("Fail to get button disabled property", |
| 345 | entry("PATH=%s", buttonPath.c_str()), |
| 346 | entry("ERROR=%s", e.what())); |
| 347 | return std::nullopt; |
| 348 | } |
| 349 | return std::make_optional(buttonDisabled); |
| 350 | } |
| 351 | |
| 352 | static bool setButtonEnabled(const std::string& buttonPath, const bool disabled) |
| 353 | { |
| 354 | try |
| 355 | { |
| 356 | auto service = ipmi::getService(*getSdBus(), buttonIntf, buttonPath); |
| 357 | ipmi::setDbusProperty(*getSdBus(), service, buttonPath, buttonIntf, |
| 358 | "ButtonMasked", disabled); |
| 359 | } |
Patrick Williams | bd51e6a | 2021-10-06 13:09:44 -0500 | [diff] [blame] | 360 | catch (const std::exception& e) |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 361 | { |
| 362 | log<level::ERR>("Failed to set button disabled", |
| 363 | entry("EXCEPTION=%s, REQUEST=%x", e.what(), disabled)); |
| 364 | return -1; |
| 365 | } |
| 366 | |
| 367 | return 0; |
| 368 | } |
| 369 | |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 370 | static bool getRestartCause(ipmi::Context::ptr& ctx, std::string& restartCause) |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 371 | { |
| 372 | constexpr const char* restartCausePath = |
| 373 | "/xyz/openbmc_project/control/host0/restart_cause"; |
| 374 | constexpr const char* restartCauseIntf = |
Jason M. Bills | bf124d4 | 2019-10-04 10:50:43 -0700 | [diff] [blame] | 375 | "xyz.openbmc_project.Control.Host.RestartCause"; |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 376 | |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 377 | std::string service; |
| 378 | boost::system::error_code ec = |
| 379 | ipmi::getService(ctx, restartCauseIntf, restartCausePath, service); |
| 380 | |
| 381 | if (!ec) |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 382 | { |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 383 | ec = ipmi::getDbusProperty(ctx, service, restartCausePath, |
| 384 | restartCauseIntf, "RestartCause", |
| 385 | restartCause); |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 386 | } |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 387 | if (ec) |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 388 | { |
| 389 | log<level::ERR>("Failed to fetch RestartCause property", |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 390 | entry("ERROR=%s", ec.message().c_str()), |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 391 | entry("PATH=%s", restartCausePath), |
| 392 | entry("INTERFACE=%s", restartCauseIntf)); |
| 393 | return false; |
| 394 | } |
| 395 | return true; |
| 396 | } |
| 397 | |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 398 | static bool checkIPMIRestartCause(ipmi::Context::ptr& ctx, |
| 399 | bool& ipmiRestartCause) |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 400 | { |
| 401 | std::string restartCause; |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 402 | if (!getRestartCause(ctx, restartCause)) |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 403 | { |
| 404 | return false; |
| 405 | } |
| 406 | ipmiRestartCause = |
| 407 | (restartCause == |
| 408 | "xyz.openbmc_project.State.Host.RestartCause.IpmiCommand"); |
| 409 | return true; |
| 410 | } |
| 411 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 412 | //---------------------------------------------------------------------- |
| 413 | // Get Chassis Status commands |
| 414 | //---------------------------------------------------------------------- |
| 415 | ipmi::RspType<bool, // Power is on |
| 416 | bool, // Power overload |
| 417 | bool, // Interlock |
| 418 | bool, // power fault |
| 419 | bool, // power control fault |
| 420 | uint2_t, // power restore policy |
| 421 | bool, // reserved |
| 422 | |
| 423 | bool, // AC failed |
| 424 | bool, // last power down caused by a Power overload |
| 425 | bool, // last power down caused by a power interlock |
| 426 | bool, // last power down caused by power fault |
| 427 | bool, // last ‘Power is on’ state was entered via IPMI command |
| 428 | uint3_t, // reserved |
| 429 | |
| 430 | bool, // Chassis intrusion active |
| 431 | bool, // Front Panel Lockout active |
| 432 | bool, // Drive Fault |
| 433 | bool, // Cooling/fan fault detected |
| 434 | uint2_t, // Chassis Identify State |
| 435 | bool, // Chassis Identify command and state info supported |
| 436 | bool, // reserved |
| 437 | |
| 438 | bool, // Power off button disabled |
| 439 | bool, // Reset button disabled |
| 440 | bool, // Diagnostic Interrupt button disabled |
| 441 | bool, // Standby (sleep) button disabled |
| 442 | bool, // Power off button disable allowed |
| 443 | bool, // Reset button disable allowed |
| 444 | bool, // Diagnostic Interrupt button disable allowed |
| 445 | bool // Standby (sleep) button disable allowed |
| 446 | > |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 447 | ipmiGetChassisStatus(ipmi::Context::ptr ctx) |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 448 | { |
| 449 | std::optional<uint2_t> restorePolicy = |
| 450 | power_policy::getPowerRestorePolicy(); |
| 451 | std::optional<bool> powerGood = power_policy::getPowerStatus(); |
| 452 | if (!restorePolicy || !powerGood) |
| 453 | { |
| 454 | return ipmi::responseUnspecifiedError(); |
| 455 | } |
| 456 | |
| 457 | // Front Panel Button Capabilities and disable/enable status(Optional) |
| 458 | std::optional<bool> powerButtonReading = getButtonEnabled(powerButtonPath); |
| 459 | // allow disable if the interface is present |
| 460 | bool powerButtonDisableAllow = static_cast<bool>(powerButtonReading); |
| 461 | // default return the button is enabled (not disabled) |
| 462 | bool powerButtonDisabled = false; |
| 463 | if (powerButtonDisableAllow) |
| 464 | { |
| 465 | // return the real value of the button status, if present |
| 466 | powerButtonDisabled = *powerButtonReading; |
| 467 | } |
| 468 | |
| 469 | std::optional<bool> resetButtonReading = getButtonEnabled(resetButtonPath); |
| 470 | // allow disable if the interface is present |
| 471 | bool resetButtonDisableAllow = static_cast<bool>(resetButtonReading); |
| 472 | // default return the button is enabled (not disabled) |
| 473 | bool resetButtonDisabled = false; |
| 474 | if (resetButtonDisableAllow) |
| 475 | { |
| 476 | // return the real value of the button status, if present |
| 477 | resetButtonDisabled = *resetButtonReading; |
| 478 | } |
| 479 | |
| 480 | std::optional<bool> interruptButtonReading = |
| 481 | getButtonEnabled(interruptButtonPath); |
| 482 | // allow disable if the interface is present |
| 483 | bool interruptButtonDisableAllow = |
| 484 | static_cast<bool>(interruptButtonReading); |
| 485 | // default return the button is enabled (not disabled) |
| 486 | bool interruptButtonDisabled = false; |
| 487 | if (interruptButtonDisableAllow) |
| 488 | { |
| 489 | // return the real value of the button status, if present |
| 490 | interruptButtonDisabled = *interruptButtonReading; |
| 491 | } |
| 492 | |
| 493 | bool powerDownAcFailed = power_policy::getACFailStatus(); |
| 494 | |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 495 | bool powerStatusIPMI = false; |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 496 | if (!checkIPMIRestartCause(ctx, powerStatusIPMI)) |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 497 | { |
| 498 | return ipmi::responseUnspecifiedError(); |
| 499 | } |
| 500 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 501 | // This response has a lot of hard-coded, unsupported fields |
| 502 | // They are set to false or 0 |
| 503 | constexpr bool powerOverload = false; |
| 504 | constexpr bool chassisInterlock = false; |
| 505 | constexpr bool powerFault = false; |
| 506 | constexpr bool powerControlFault = false; |
| 507 | constexpr bool powerDownOverload = false; |
| 508 | constexpr bool powerDownInterlock = false; |
| 509 | constexpr bool powerDownPowerFault = false; |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 510 | constexpr bool chassisIntrusionActive = false; |
| 511 | constexpr bool frontPanelLockoutActive = false; |
| 512 | constexpr bool driveFault = false; |
| 513 | constexpr bool coolingFanFault = false; |
| 514 | // chassisIdentifySupport set because this command is implemented |
| 515 | constexpr bool chassisIdentifySupport = true; |
Jason M. Bills | 24df90f | 2021-06-15 12:46:13 -0700 | [diff] [blame] | 516 | uint2_t chassisIdentifyState = types::enum_cast<uint2_t>(chassisIDState); |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 517 | constexpr bool sleepButtonDisabled = false; |
| 518 | constexpr bool sleepButtonDisableAllow = false; |
| 519 | |
| 520 | return ipmi::responseSuccess( |
| 521 | *powerGood, powerOverload, chassisInterlock, powerFault, |
| 522 | powerControlFault, *restorePolicy, |
| 523 | false, // reserved |
| 524 | |
| 525 | powerDownAcFailed, powerDownOverload, powerDownInterlock, |
| 526 | powerDownPowerFault, powerStatusIPMI, |
| 527 | uint3_t(0), // reserved |
| 528 | |
| 529 | chassisIntrusionActive, frontPanelLockoutActive, driveFault, |
| 530 | coolingFanFault, chassisIdentifyState, chassisIdentifySupport, |
| 531 | false, // reserved |
| 532 | |
| 533 | powerButtonDisabled, resetButtonDisabled, interruptButtonDisabled, |
| 534 | sleepButtonDisabled, powerButtonDisableAllow, resetButtonDisableAllow, |
| 535 | interruptButtonDisableAllow, sleepButtonDisableAllow); |
| 536 | } |
| 537 | |
Jason M. Bills | 8c61539 | 2019-07-26 13:45:41 -0700 | [diff] [blame] | 538 | static uint4_t getRestartCauseValue(const std::string& cause) |
Jason M. Bills | 3efc645 | 2019-06-20 15:51:47 -0700 | [diff] [blame] | 539 | { |
| 540 | uint4_t restartCauseValue = 0; |
| 541 | if (cause == "xyz.openbmc_project.State.Host.RestartCause.Unknown") |
| 542 | { |
| 543 | restartCauseValue = 0x0; |
| 544 | } |
| 545 | else if (cause == "xyz.openbmc_project.State.Host.RestartCause.IpmiCommand") |
| 546 | { |
| 547 | restartCauseValue = 0x1; |
| 548 | } |
| 549 | else if (cause == "xyz.openbmc_project.State.Host.RestartCause.ResetButton") |
| 550 | { |
| 551 | restartCauseValue = 0x2; |
| 552 | } |
| 553 | else if (cause == "xyz.openbmc_project.State.Host.RestartCause.PowerButton") |
| 554 | { |
| 555 | restartCauseValue = 0x3; |
| 556 | } |
| 557 | else if (cause == |
| 558 | "xyz.openbmc_project.State.Host.RestartCause.WatchdogTimer") |
| 559 | { |
| 560 | restartCauseValue = 0x4; |
| 561 | } |
| 562 | else if (cause == "xyz.openbmc_project.State.Host.RestartCause.OEM") |
| 563 | { |
| 564 | restartCauseValue = 0x5; |
| 565 | } |
| 566 | else if (cause == |
| 567 | "xyz.openbmc_project.State.Host.RestartCause.PowerPolicyAlwaysOn") |
| 568 | { |
| 569 | restartCauseValue = 0x6; |
| 570 | } |
| 571 | else if (cause == "xyz.openbmc_project.State.Host.RestartCause." |
| 572 | "PowerPolicyPreviousState") |
| 573 | { |
| 574 | restartCauseValue = 0x7; |
| 575 | } |
| 576 | else if (cause == "xyz.openbmc_project.State.Host.RestartCause.PEFReset") |
| 577 | { |
| 578 | restartCauseValue = 0x8; |
| 579 | } |
| 580 | else if (cause == |
| 581 | "xyz.openbmc_project.State.Host.RestartCause.PEFPowerCycle") |
| 582 | { |
| 583 | restartCauseValue = 0x9; |
| 584 | } |
| 585 | else if (cause == "xyz.openbmc_project.State.Host.RestartCause.SoftReset") |
| 586 | { |
| 587 | restartCauseValue = 0xa; |
| 588 | } |
| 589 | else if (cause == "xyz.openbmc_project.State.Host.RestartCause.RTCWakeup") |
| 590 | { |
| 591 | restartCauseValue = 0xb; |
| 592 | } |
| 593 | return restartCauseValue; |
| 594 | } |
| 595 | |
| 596 | ipmi::RspType<uint4_t, // Restart Cause |
| 597 | uint4_t, // reserved |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 598 | uint8_t // channel number |
Jason M. Bills | 3efc645 | 2019-06-20 15:51:47 -0700 | [diff] [blame] | 599 | > |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 600 | ipmiGetSystemRestartCause(ipmi::Context::ptr ctx) |
Jason M. Bills | 3efc645 | 2019-06-20 15:51:47 -0700 | [diff] [blame] | 601 | { |
Jason M. Bills | 3efc645 | 2019-06-20 15:51:47 -0700 | [diff] [blame] | 602 | std::string restartCauseStr; |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 603 | if (!getRestartCause(ctx, restartCauseStr)) |
Jason M. Bills | 3efc645 | 2019-06-20 15:51:47 -0700 | [diff] [blame] | 604 | { |
Jason M. Bills | 3efc645 | 2019-06-20 15:51:47 -0700 | [diff] [blame] | 605 | return ipmi::responseUnspecifiedError(); |
| 606 | } |
Vernon Mauery | 1b751dc | 2021-06-16 11:21:05 -0700 | [diff] [blame] | 607 | constexpr uint4_t reserved = 0; |
| 608 | auto channel = static_cast<uint8_t>(ctx->channel); |
| 609 | return ipmi::responseSuccess(getRestartCauseValue(restartCauseStr), |
| 610 | reserved, channel); |
Jason M. Bills | 3efc645 | 2019-06-20 15:51:47 -0700 | [diff] [blame] | 611 | } |
| 612 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 613 | ipmi::RspType<> ipmiSetFrontPanelButtonEnables(bool disablePowerButton, |
| 614 | bool disableResetButton, |
| 615 | bool disableInterruptButton, |
| 616 | bool disableSleepButton, |
| 617 | uint4_t reserved) |
| 618 | { |
sunitakx | 3ff6371 | 2021-06-09 15:47:32 +0000 | [diff] [blame] | 619 | if (reserved) |
| 620 | { |
| 621 | return ipmi::responseInvalidFieldRequest(); |
| 622 | } |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 623 | bool error = false; |
| 624 | |
| 625 | error |= setButtonEnabled(powerButtonPath, disablePowerButton); |
| 626 | error |= setButtonEnabled(resetButtonPath, disableResetButton); |
| 627 | error |= setButtonEnabled(interruptButtonPath, disableInterruptButton); |
| 628 | |
| 629 | if (error) |
| 630 | { |
| 631 | return ipmi::responseUnspecifiedError(); |
| 632 | } |
sunitakx | 3ff6371 | 2021-06-09 15:47:32 +0000 | [diff] [blame] | 633 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 634 | return ipmi::responseSuccess(); |
| 635 | } |
| 636 | |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 637 | static void registerChassisFunctions(void) |
| 638 | { |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 639 | log<level::INFO>("Registering Chassis commands"); |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 640 | |
| 641 | createIdentifyTimer(); |
| 642 | |
| 643 | if (matchPtr == nullptr) |
| 644 | { |
| 645 | using namespace sdbusplus::bus::match::rules; |
| 646 | auto bus = getSdBus(); |
| 647 | |
| 648 | matchPtr = std::make_unique<sdbusplus::bus::match_t>( |
| 649 | *bus, |
| 650 | sdbusplus::bus::match::rules::propertiesChanged(idButtonPath, |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 651 | buttonIntf), |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 652 | std::bind(idButtonPropChanged, std::placeholders::_1)); |
| 653 | } |
| 654 | |
| 655 | // <Chassis Identify> |
| 656 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnChassis, |
| 657 | ipmi::chassis::cmdChassisIdentify, |
| 658 | ipmi::Privilege::Operator, ipmiChassisIdentify); |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 659 | // <Get Chassis Status> |
| 660 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnChassis, |
| 661 | ipmi::chassis::cmdGetChassisStatus, |
| 662 | ipmi::Privilege::User, ipmiGetChassisStatus); |
Jason M. Bills | 3efc645 | 2019-06-20 15:51:47 -0700 | [diff] [blame] | 663 | // <Get System Restart Cause> |
| 664 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnChassis, |
| 665 | ipmi::chassis::cmdGetSystemRestartCause, |
| 666 | ipmi::Privilege::User, ipmiGetSystemRestartCause); |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 667 | // <Set Front Panel Enables> |
| 668 | ipmi::registerHandler(ipmi::prioOemBase, ipmi::netFnChassis, |
| 669 | ipmi::chassis::cmdSetFrontPanelButtonEnables, |
AppaRao Puli | 51acbdf | 2019-11-10 21:05:34 +0530 | [diff] [blame] | 670 | ipmi::Privilege::Admin, |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 671 | ipmiSetFrontPanelButtonEnables); |
Yuan Li | 60e7aaf | 2019-05-28 14:22:40 +0800 | [diff] [blame] | 672 | } |
| 673 | |
Jason M. Bills | b08f84e | 2019-06-10 12:59:42 -0700 | [diff] [blame] | 674 | } // namespace ipmi::chassis |