summaryrefslogtreecommitdiffstats
path: root/chassishandler.cpp
diff options
context:
space:
mode:
authorVernon Mauery <vernon.mauery@linux.intel.com>2019-04-04 15:09:37 -0700
committerVernon Mauery <vernon.mauery@linux.intel.com>2019-05-14 15:52:43 +0000
commit4a8a4eb94df302fdf5cd9854922469185d9e0806 (patch)
treeb0c86542cf952a0ea2893efba84d992ed2063076 /chassishandler.cpp
parente278ead033bde74696fc0ffd65265a4d6a36ff38 (diff)
downloadphosphor-host-ipmid-4a8a4eb94df302fdf5cd9854922469185d9e0806.tar.gz
phosphor-host-ipmid-4a8a4eb94df302fdf5cd9854922469185d9e0806.zip
rewrite Get Chassis Status command
The Set Front Panel Enables command touches one of the same interfaces that this command does, so rewrite this command to reflect the changes that set front panel enables causes. Tested-by: manually run get chassis status command via ipmitool: # ipmitool raw 0 1 01 00 40 30 # ipmitool chassis status Change-Id: Ifbb13a6f344c58b2140933447995d3854cca0c0d Signed-off-by: Vernon Mauery <vernon.mauery@linux.intel.com>
Diffstat (limited to 'chassishandler.cpp')
-rw-r--r--chassishandler.cpp340
1 files changed, 198 insertions, 142 deletions
diff --git a/chassishandler.cpp b/chassishandler.cpp
index 0681527..dafc055 100644
--- a/chassishandler.cpp
+++ b/chassishandler.cpp
@@ -99,6 +99,14 @@ const static constexpr char chassisSMDevAddrProp[] = "SMDeviceAddress";
const static constexpr char chassisBridgeDevAddrProp[] = "BridgeDeviceAddress";
static constexpr uint8_t chassisCapFlagMask = 0x0f;
static constexpr uint8_t chassisCapAddrMask = 0xfe;
+static constexpr const char* powerButtonIntf =
+ "xyz.openbmc_project.Chassis.Buttons.Power";
+static constexpr const char* powerButtonPath =
+ "/xyz/openbmc_project/Chassis/Buttons/Power0";
+static constexpr const char* resetButtonIntf =
+ "xyz.openbmc_project.Chassis.Buttons.Reset";
+static constexpr const char* resetButtonPath =
+ "/xyz/openbmc_project/Chassis/Buttons/Reset0";
typedef struct
{
@@ -764,7 +772,7 @@ using namespace sdbusplus::xyz::openbmc_project::Control::Power::server;
using IpmiValue = uint8_t;
using DbusValue = RestorePolicy::Policy;
-std::map<DbusValue, IpmiValue> dbusToIpmi = {
+const std::map<DbusValue, IpmiValue> dbusToIpmi = {
{RestorePolicy::Policy::AlwaysOff, 0x00},
{RestorePolicy::Policy::Restore, 0x01},
{RestorePolicy::Policy::AlwaysOn, 0x02}};
@@ -773,166 +781,213 @@ static constexpr uint8_t noChange = 0x03;
static constexpr uint8_t allSupport = 0x01 | 0x02 | 0x04;
static constexpr uint8_t policyBitMask = 0x07;
static constexpr uint8_t setPolicyReqLen = 1;
-} // namespace power_policy
-//----------------------------------------------------------------------
-// Get Chassis Status commands
-//----------------------------------------------------------------------
-ipmi_ret_t ipmi_get_chassis_status(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
- ipmi_request_t request,
- ipmi_response_t response,
- ipmi_data_len_t data_len,
- ipmi_context_t context)
+/* helper function for Get Chassis Status Command
+ */
+std::optional<uint2_t> getPowerRestorePolicy()
{
- const char* objname = "/org/openbmc/control/power0";
- const char* intf = "org.openbmc.control.Power";
-
- sd_bus* bus = NULL;
- sd_bus_message* reply = NULL;
- int r = 0;
- int pgood = 0;
- char* busname = NULL;
- ipmi_ret_t rc = IPMI_CC_OK;
- ipmi_get_chassis_status_t chassis_status{};
-
- uint8_t s = 0;
-
+ uint2_t restorePolicy = 0;
using namespace chassis::internal;
- using namespace chassis::internal::cache;
- using namespace power_policy;
- const auto& powerRestoreSetting = objects.map.at(powerRestoreIntf).front();
- auto method = dbus.new_method_call(
- objects.service(powerRestoreSetting, powerRestoreIntf).c_str(),
- powerRestoreSetting.c_str(), ipmi::PROP_INTF, "Get");
- method.append(powerRestoreIntf, "PowerRestorePolicy");
- auto resp = dbus.call(method);
- if (resp.is_method_error())
+ try
{
- log<level::ERR>("Error in PowerRestorePolicy Get");
- report<InternalFailure>();
- *data_len = 0;
- return IPMI_CC_UNSPECIFIED_ERROR;
+ const auto& powerRestoreSetting =
+ cache::objects.map.at(powerRestoreIntf).front();
+ ipmi::Value result = ipmi::getDbusProperty(
+ *getSdBus(),
+ cache::objects.service(powerRestoreSetting, powerRestoreIntf)
+ .c_str(),
+ powerRestoreSetting.c_str(), powerRestoreIntf,
+ "PowerRestorePolicy");
+ auto powerRestore = RestorePolicy::convertPolicyFromString(
+ std::get<std::string>(result));
+ restorePolicy = dbusToIpmi.at(powerRestore);
}
- sdbusplus::message::variant<std::string> result;
- resp.read(result);
- auto powerRestore =
- RestorePolicy::convertPolicyFromString(std::get<std::string>(result));
-
- *data_len = 4;
+ catch (const std::exception& e)
+ {
+ log<level::ERR>(
+ "Failed to fetch pgood property", entry("ERROR=%s", e.what()),
+ entry("PATH=%s",
+ cache::objects.map.at(powerRestoreIntf).front().c_str()),
+ entry("INTERFACE=%s", powerRestoreIntf));
+ return std::nullopt;
+ }
+ return std::make_optional(restorePolicy);
+}
- bus = ipmid_get_sd_bus_connection();
+/*
+ * getPowerStatus
+ * helper function for Get Chassis Status Command
+ * return - optional value for pgood (no value on error)
+ */
+std::optional<bool> getPowerStatus()
+{
+ constexpr const char* powerControlObj =
+ "/xyz/openbmc_project/Chassis/Control/Power0";
+ constexpr const char* powerControlIntf =
+ "xyz.openbmc_project.Chassis.Control.Power";
+ bool powerGood = false;
+ std::shared_ptr<sdbusplus::asio::connection> busp = getSdBus();
+ try
+ {
+ auto service =
+ ipmi::getService(*busp, powerControlIntf, powerControlObj);
- r = mapper_get_service(bus, objname, &busname);
- if (r < 0)
+ ipmi::Value variant = ipmi::getDbusProperty(
+ *busp, service, powerControlObj, powerControlIntf, "pgood");
+ powerGood = static_cast<bool>(std::get<int>(variant));
+ }
+ catch (const std::exception& e)
{
- log<level::ERR>("Failed to get bus name", entry("ERRNO=0x%X", -r));
- rc = IPMI_CC_UNSPECIFIED_ERROR;
- goto finish;
+ try
+ {
+ // FIXME: some legacy modules use the older path; try that next
+ constexpr const char* legacyPwrCtrlObj =
+ "/org/openbmc/control/power0";
+ constexpr const char* legacyPwrCtrlIntf =
+ "org.openbmc.control.Power";
+ auto service =
+ ipmi::getService(*busp, legacyPwrCtrlIntf, legacyPwrCtrlObj);
+
+ ipmi::Value variant = ipmi::getDbusProperty(
+ *busp, service, legacyPwrCtrlObj, legacyPwrCtrlIntf, "pgood");
+ powerGood = static_cast<bool>(std::get<int>(variant));
+ }
+ catch (const std::exception& e)
+ {
+ log<level::ERR>("Failed to fetch pgood property",
+ entry("ERROR=%s", e.what()),
+ entry("PATH=%s", powerControlObj),
+ entry("INTERFACE=%s", powerControlIntf));
+ return std::nullopt;
+ }
}
+ return std::make_optional(powerGood);
+}
+
+} // namespace power_policy
- r = sd_bus_get_property(bus, busname, objname, intf, "pgood", NULL, &reply,
- "i");
- if (r < 0)
+static std::optional<bool> getButtonEnabled(const std::string& buttonPath,
+ const std::string& buttonIntf)
+{
+ std::shared_ptr<sdbusplus::asio::connection> busp = getSdBus();
+ bool buttonDisabled = false;
+ try
{
- log<level::ERR>("Failed to call sd_bus_get_property",
- entry("PROPERTY=%s", "pgood"), entry("ERRNO=0x%X", -r),
- entry("BUS=%s", busname), entry("PATH=%s", objname),
- entry("INTERFACE=%s", intf));
- rc = IPMI_CC_UNSPECIFIED_ERROR;
- goto finish;
+ auto service = ipmi::getService(*busp, buttonIntf, buttonPath);
+ ipmi::Value enabled = ipmi::getDbusProperty(*busp, service, buttonPath,
+ buttonIntf, "Enabled");
+ buttonDisabled = !std::get<bool>(enabled);
}
-
- r = sd_bus_message_read(reply, "i", &pgood);
- if (r < 0)
+ catch (sdbusplus::exception::SdBusError& e)
{
- log<level::ERR>("Failed to read sensor:", entry("ERRNO=0x%X", -r));
- rc = IPMI_CC_UNSPECIFIED_ERROR;
- goto finish;
+ log<level::ERR>("Fail to get button Enabled property",
+ entry("PATH=%s", buttonPath.c_str()),
+ entry("ERROR=%s", e.what()));
+ return std::nullopt;
}
+ return std::make_optional(buttonDisabled);
+}
- s = dbusToIpmi.at(powerRestore);
-
- // Current Power State
- // [7] reserved
- // [6..5] power restore policy
- // 00b = chassis stays powered off after AC/mains returns
- // 01b = after AC returns, power is restored to the state that was
- // in effect when AC/mains was lost.
- // 10b = chassis always powers up after AC/mains returns
- // 11b = unknow
- // Set to 00b, by observing the hardware behavior.
- // Do we need to define a dbus property to identify the restore
- // policy?
-
- // [4] power control fault
- // 1b = controller attempted to turn system power on or off, but
- // system did not enter desired state.
- // Set to 0b, since We don't support it..
-
- // [3] power fault
- // 1b = fault detected in main power subsystem.
- // set to 0b. for we don't support it.
-
- // [2] 1b = interlock (chassis is presently shut down because a chassis
- // panel interlock switch is active). (IPMI 1.5)
- // set to 0b, for we don't support it.
-
- // [1] power overload
- // 1b = system shutdown because of power overload condition.
- // set to 0b, for we don't support it.
-
- // [0] power is on
- // 1b = system power is on
- // 0b = system power is off(soft-off S4/S5, or mechanical off)
-
- chassis_status.cur_power_state = ((s & 0x3) << 5) | (pgood & 0x1);
-
- // Last Power Event
- // [7..5] – reserved
- // [4] – 1b = last ‘Power is on’ state was entered via IPMI command
- // [3] – 1b = last power down caused by power fault
- // [2] – 1b = last power down caused by a power interlock being activated
- // [1] – 1b = last power down caused by a Power overload
- // [0] – 1b = AC failed
- // set to 0x0, for we don't support these fields.
-
- chassis_status.last_power_event = 0;
-
- // Misc. Chassis State
- // [7] – reserved
- // [6] – 1b = Chassis Identify command and state info supported (Optional)
- // 0b = Chassis Identify command support unspecified via this command.
- // (The Get Command Support command , if implemented, would still
- // indicate support for the Chassis Identify command)
- // [5..4] – Chassis Identify State. Mandatory when bit[6] =1b, reserved
- // (return
- // as 00b) otherwise. Returns the present chassis identify state.
- // Refer to the Chassis Identify command for more info.
- // 00b = chassis identify state = Off
- // 01b = chassis identify state = Temporary(timed) On
- // 10b = chassis identify state = Indefinite On
- // 11b = reserved
- // [3] – 1b = Cooling/fan fault detected
- // [2] – 1b = Drive Fault
- // [1] – 1b = Front Panel Lockout active (power off and reset via chassis
- // push-buttons disabled.)
- // [0] – 1b = Chassis Intrusion active
- // set to 0, for we don't support them.
- chassis_status.misc_power_state = 0;
+//----------------------------------------------------------------------
+// Get Chassis Status commands
+//----------------------------------------------------------------------
+ipmi::RspType<bool, // Power is on
+ bool, // Power overload
+ bool, // Interlock
+ bool, // power fault
+ bool, // power control fault
+ uint2_t, // power restore policy
+ bool, // reserved
+
+ bool, // AC failed
+ bool, // last power down caused by a Power overload
+ bool, // last power down caused by a power interlock
+ bool, // last power down caused by power fault
+ bool, // last ‘Power is on’ state was entered via IPMI command
+ uint3_t, // reserved
+
+ bool, // Chassis intrusion active
+ bool, // Front Panel Lockout active
+ bool, // Drive Fault
+ bool, // Cooling/fan fault detected
+ uint2_t, // Chassis Identify State
+ bool, // Chassis Identify command and state info supported
+ bool, // reserved
+
+ bool, // Power off button disabled
+ bool, // Reset button disabled
+ bool, // Diagnostic Interrupt button disabled
+ bool, // Standby (sleep) button disabled
+ bool, // Power off button disable allowed
+ bool, // Reset button disable allowed
+ bool, // Diagnostic Interrupt button disable allowed
+ bool // Standby (sleep) button disable allowed
+ >
+ ipmiGetChassisStatus()
+{
+ using namespace chassis::internal;
+ std::optional<uint2_t> restorePolicy =
+ power_policy::getPowerRestorePolicy();
+ std::optional<bool> powerGood = power_policy::getPowerStatus();
+ if (!restorePolicy || !powerGood)
+ {
+ return ipmi::responseUnspecifiedError();
+ }
// Front Panel Button Capabilities and disable/enable status(Optional)
- // set to 0, for we don't support them.
- chassis_status.front_panel_button_cap_status = 0;
+ std::optional<bool> powerButtonDisabled =
+ getButtonEnabled(powerButtonPath, powerButtonIntf);
+ constexpr bool powerButtonDisableAllow = true;
- // Pack the actual response
- std::memcpy(response, &chassis_status, *data_len);
+ std::optional<bool> resetButtonDisabled =
+ getButtonEnabled(resetButtonPath, resetButtonIntf);
+ constexpr bool resetButtonDisableAllow = true;
-finish:
- free(busname);
- reply = sd_bus_message_unref(reply);
+ if (!powerButtonDisabled || !resetButtonDisabled)
+ {
+ return ipmi::responseUnspecifiedError();
+ }
- return rc;
+ // This response has a lot of hard-coded, unsupported fields
+ // They are set to false or 0
+ constexpr bool powerOverload = false;
+ constexpr bool chassisInterlock = false;
+ constexpr bool powerFault = false;
+ constexpr bool powerControlFault = false;
+ constexpr bool powerDownAcFailed = false;
+ constexpr bool powerDownOverload = false;
+ constexpr bool powerDownInterlock = false;
+ constexpr bool powerDownPowerFault = false;
+ constexpr bool powerStatusIPMI = false;
+ constexpr bool chassisIntrusionActive = false;
+ constexpr bool frontPanelLockoutActive = false;
+ constexpr bool driveFault = false;
+ constexpr bool coolingFanFault = false;
+ // chassisIdentifySupport set because this command is implemented
+ constexpr bool chassisIdentifySupport = true;
+ constexpr uint2_t chassisIdentifyState(0);
+ constexpr bool diagButtonDisabled = false;
+ constexpr bool sleepButtonDisabled = false;
+ constexpr bool diagButtonDisableAllow = false;
+ constexpr bool sleepButtonDisableAllow = false;
+
+ return ipmi::responseSuccess(
+ *powerGood, powerOverload, chassisInterlock, powerFault,
+ powerControlFault, *restorePolicy,
+ false, // reserved
+
+ powerDownAcFailed, powerDownOverload, powerDownInterlock,
+ powerDownPowerFault, powerStatusIPMI,
+ uint3_t(0), // reserved
+
+ chassisIntrusionActive, frontPanelLockoutActive, driveFault,
+ coolingFanFault, chassisIdentifyState, chassisIdentifySupport,
+ false, // reserved
+
+ *powerButtonDisabled, *resetButtonDisabled, diagButtonDisabled,
+ sleepButtonDisabled, powerButtonDisableAllow, resetButtonDisableAllow,
+ diagButtonDisableAllow, sleepButtonDisableAllow);
}
//-------------------------------------------------------------
@@ -1678,8 +1733,9 @@ void register_netfn_chassis_functions()
PRIVILEGE_OPERATOR);
// <Get Chassis Status>
- ipmi_register_callback(NETFUN_CHASSIS, IPMI_CMD_CHASSIS_STATUS, NULL,
- ipmi_get_chassis_status, PRIVILEGE_USER);
+ ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis,
+ ipmi::chassis::cmdGetChassisStatus,
+ ipmi::Privilege::User, ipmiGetChassisStatus);
// <Chassis Control>
ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis,
OpenPOWER on IntegriCloud