Patrick Venture | 46470a3 | 2018-09-07 19:26:25 -0700 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
| 3 | #include "chassishandler.hpp" |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 4 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 5 | #include <arpa/inet.h> |
| 6 | #include <endian.h> |
| 7 | #include <limits.h> |
| 8 | #include <mapper.h> |
| 9 | #include <netinet/in.h> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 10 | |
Vernon Mauery | e08fbff | 2019-04-03 09:19:34 -0700 | [diff] [blame] | 11 | #include <ipmid/api.hpp> |
Vernon Mauery | 3325024 | 2019-03-12 16:49:26 -0700 | [diff] [blame] | 12 | #include <ipmid/types.hpp> |
Vernon Mauery | 6a98fe7 | 2019-03-11 15:57:48 -0700 | [diff] [blame] | 13 | #include <ipmid/utils.hpp> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 14 | #include <phosphor-logging/elog-errors.hpp> |
| 15 | #include <phosphor-logging/log.hpp> |
| 16 | #include <sdbusplus/bus.hpp> |
William A. Kennington III | 4c00802 | 2018-10-12 17:18:14 -0700 | [diff] [blame] | 17 | #include <sdbusplus/message/types.hpp> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 18 | #include <sdbusplus/server/object.hpp> |
Vernon Mauery | 1181af7 | 2018-10-08 12:05:00 -0700 | [diff] [blame] | 19 | #include <sdbusplus/timer.hpp> |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 20 | #include <settings.hpp> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 21 | #include <xyz/openbmc_project/Common/error.hpp> |
| 22 | #include <xyz/openbmc_project/Control/Boot/Mode/server.hpp> |
| 23 | #include <xyz/openbmc_project/Control/Boot/Source/server.hpp> |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 24 | #include <xyz/openbmc_project/Control/Boot/Type/server.hpp> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 25 | #include <xyz/openbmc_project/Control/Power/RestorePolicy/server.hpp> |
Jason M. Bills | ad588bf | 2020-01-30 16:18:33 -0800 | [diff] [blame] | 26 | #include <xyz/openbmc_project/State/Chassis/server.hpp> |
Patrick Venture | 3a5071a | 2018-09-12 13:27:42 -0700 | [diff] [blame] | 27 | #include <xyz/openbmc_project/State/Host/server.hpp> |
| 28 | #include <xyz/openbmc_project/State/PowerOnHours/server.hpp> |
| 29 | |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 30 | #include <array> |
| 31 | #include <chrono> |
| 32 | #include <cstring> |
| 33 | #include <filesystem> |
| 34 | #include <fstream> |
| 35 | #include <future> |
| 36 | #include <map> |
| 37 | #include <sstream> |
| 38 | #include <string> |
| 39 | |
Lei YU | 4b0ddb6 | 2019-01-25 16:43:50 +0800 | [diff] [blame] | 40 | std::unique_ptr<phosphor::Timer> identifyTimer |
| 41 | __attribute__((init_priority(101))); |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 42 | |
Yong Li | f4e3851 | 2019-05-21 14:46:55 +0800 | [diff] [blame] | 43 | static ChassisIDState chassisIDState = ChassisIDState::reserved; |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 44 | static constexpr uint8_t setParmVersion = 0x01; |
Yong Li | f4e3851 | 2019-05-21 14:46:55 +0800 | [diff] [blame] | 45 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 46 | constexpr size_t sizeVersion = 2; |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 47 | constexpr size_t DEFAULT_IDENTIFY_TIME_OUT = 15; |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 48 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 49 | // PetiBoot-Specific |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 50 | static constexpr uint8_t netConfInitialBytes[] = {0x80, 0x21, 0x70, 0x62, |
| 51 | 0x21, 0x00, 0x01, 0x06}; |
| 52 | static constexpr uint8_t oemParmStart = 96; |
| 53 | static constexpr uint8_t oemParmEnd = 127; |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 54 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 55 | static constexpr size_t cookieOffset = 1; |
| 56 | static constexpr size_t versionOffset = 5; |
| 57 | static constexpr size_t addrSizeOffset = 8; |
| 58 | static constexpr size_t macOffset = 9; |
| 59 | static constexpr size_t addrTypeOffset = 16; |
| 60 | static constexpr size_t ipAddrOffset = 17; |
ratagupt | a6f6bff | 2016-04-04 06:20:11 -0500 | [diff] [blame] | 61 | |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 62 | static constexpr size_t encIdentifyObjectsSize = 1; |
| 63 | static constexpr size_t chassisIdentifyReqLength = 2; |
| 64 | static constexpr size_t identifyIntervalPos = 0; |
| 65 | static constexpr size_t forceIdentifyPos = 1; |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 66 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 67 | namespace ipmi |
| 68 | { |
| 69 | constexpr Cc ccParmNotSupported = 0x80; |
| 70 | |
| 71 | static inline auto responseParmNotSupported() |
| 72 | { |
| 73 | return response(ccParmNotSupported); |
| 74 | } |
| 75 | } // namespace ipmi |
| 76 | |
Adriana Kobylak | 40814c6 | 2015-10-27 15:58:44 -0500 | [diff] [blame] | 77 | void register_netfn_chassis_functions() __attribute__((constructor)); |
| 78 | |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 79 | // Host settings in dbus |
| 80 | // Service name should be referenced by connection name got via object mapper |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 81 | const char* settings_object_name = "/org/openbmc/settings/host0"; |
| 82 | const char* settings_intf_name = "org.freedesktop.DBus.Properties"; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 83 | const char* identify_led_object_name = |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 84 | "/xyz/openbmc_project/led/groups/enclosure_identify"; |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 85 | |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 86 | constexpr auto SETTINGS_ROOT = "/"; |
| 87 | constexpr auto SETTINGS_MATCH = "host0"; |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 88 | |
| 89 | constexpr auto IP_INTERFACE = "xyz.openbmc_project.Network.IP"; |
| 90 | constexpr auto MAC_INTERFACE = "xyz.openbmc_project.Network.MACAddress"; |
| 91 | |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 92 | static constexpr auto chassisStateRoot = "/xyz/openbmc_project/state"; |
| 93 | static constexpr auto chassisPOHStateIntf = |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 94 | "xyz.openbmc_project.State.PowerOnHours"; |
Patrick Williams | 7345ac4 | 2021-04-30 20:57:39 -0500 | [diff] [blame] | 95 | static constexpr auto pohCounterProperty = "POHCounter"; |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 96 | static constexpr auto match = "chassis0"; |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 97 | const static constexpr char chassisCapIntf[] = |
| 98 | "xyz.openbmc_project.Control.ChassisCapabilities"; |
Karthick Sundarrajan | 86d8bd7 | 2019-11-26 12:48:50 -0800 | [diff] [blame] | 99 | const static constexpr char chassisIntrusionProp[] = "ChassisIntrusionEnabled"; |
| 100 | const static constexpr char chassisFrontPanelLockoutProp[] = |
| 101 | "ChassisFrontPanelLockoutEnabled"; |
| 102 | const static constexpr char chassisNMIProp[] = "ChassisNMIEnabled"; |
| 103 | const static constexpr char chassisPowerInterlockProp[] = |
| 104 | "ChassisPowerInterlockEnabled"; |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 105 | const static constexpr char chassisFRUDevAddrProp[] = "FRUDeviceAddress"; |
| 106 | const static constexpr char chassisSDRDevAddrProp[] = "SDRDeviceAddress"; |
| 107 | const static constexpr char chassisSELDevAddrProp[] = "SELDeviceAddress"; |
| 108 | const static constexpr char chassisSMDevAddrProp[] = "SMDeviceAddress"; |
| 109 | const static constexpr char chassisBridgeDevAddrProp[] = "BridgeDeviceAddress"; |
| 110 | static constexpr uint8_t chassisCapFlagMask = 0x0f; |
| 111 | static constexpr uint8_t chassisCapAddrMask = 0xfe; |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 112 | static constexpr const char* powerButtonIntf = |
| 113 | "xyz.openbmc_project.Chassis.Buttons.Power"; |
| 114 | static constexpr const char* powerButtonPath = |
| 115 | "/xyz/openbmc_project/Chassis/Buttons/Power0"; |
| 116 | static constexpr const char* resetButtonIntf = |
| 117 | "xyz.openbmc_project.Chassis.Buttons.Reset"; |
| 118 | static constexpr const char* resetButtonPath = |
| 119 | "/xyz/openbmc_project/Chassis/Buttons/Reset0"; |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 120 | |
Vishwanatha Subbanna | b12b0c0 | 2017-03-07 18:17:19 +0530 | [diff] [blame] | 121 | // Phosphor Host State manager |
| 122 | namespace State = sdbusplus::xyz::openbmc_project::State::server; |
| 123 | |
Vernon Mauery | 185b9f8 | 2018-07-20 10:52:36 -0700 | [diff] [blame] | 124 | namespace fs = std::filesystem; |
Andrew Geissler | a6e3a30 | 2017-05-31 19:34:00 -0500 | [diff] [blame] | 125 | |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 126 | using namespace phosphor::logging; |
| 127 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 128 | using namespace sdbusplus::xyz::openbmc_project::Control::Boot::server; |
William A. Kennington III | 4c00802 | 2018-10-12 17:18:14 -0700 | [diff] [blame] | 129 | |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 130 | namespace chassis |
| 131 | { |
| 132 | namespace internal |
| 133 | { |
| 134 | |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 135 | constexpr auto bootSettingsPath = "/xyz/openbmc_project/control/host0/boot"; |
| 136 | constexpr auto bootEnableIntf = "xyz.openbmc_project.Object.Enable"; |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 137 | constexpr auto bootModeIntf = "xyz.openbmc_project.Control.Boot.Mode"; |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 138 | constexpr auto bootTypeIntf = "xyz.openbmc_project.Control.Boot.Type"; |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 139 | constexpr auto bootSourceIntf = "xyz.openbmc_project.Control.Boot.Source"; |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 140 | constexpr auto bootSettingsOneTimePath = |
| 141 | "/xyz/openbmc_project/control/host0/boot/one_time"; |
| 142 | constexpr auto bootOneTimeIntf = "xyz.openbmc_project.Object.Enable"; |
| 143 | |
Deepak Kodihalli | 18b70d1 | 2017-07-21 13:36:33 -0500 | [diff] [blame] | 144 | constexpr auto powerRestoreIntf = |
| 145 | "xyz.openbmc_project.Control.Power.RestorePolicy"; |
Patrick Williams | 5d82f47 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 146 | sdbusplus::bus_t dbus(ipmid_get_sd_bus_connection()); |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 147 | |
| 148 | namespace cache |
| 149 | { |
| 150 | |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 151 | std::unique_ptr<settings::Objects> objectsPtr = nullptr; |
| 152 | |
| 153 | settings::Objects& getObjects() |
| 154 | { |
| 155 | if (objectsPtr == nullptr) |
| 156 | { |
| 157 | objectsPtr = std::make_unique<settings::Objects>( |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 158 | dbus, std::vector<std::string>{bootModeIntf, bootTypeIntf, |
| 159 | bootSourceIntf, powerRestoreIntf}); |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 160 | } |
| 161 | return *objectsPtr; |
| 162 | } |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 163 | |
| 164 | } // namespace cache |
| 165 | } // namespace internal |
| 166 | } // namespace chassis |
| 167 | |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 168 | namespace poh |
| 169 | { |
| 170 | |
| 171 | constexpr auto minutesPerCount = 60; |
| 172 | |
| 173 | } // namespace poh |
| 174 | |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 175 | int getHostNetworkData(ipmi::message::Payload& payload) |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 176 | { |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 177 | ipmi::PropertyMap properties; |
| 178 | int rc = 0; |
Ratan Gupta | 8c31d23 | 2017-08-13 05:49:43 +0530 | [diff] [blame] | 179 | uint8_t addrSize = ipmi::network::IPV4_ADDRESS_SIZE_BYTE; |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 180 | |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 181 | try |
| 182 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 183 | // TODO There may be cases where an interface is implemented by multiple |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 184 | // objects,to handle such cases we are interested on that object |
| 185 | // which are on interested busname. |
| 186 | // Currenlty mapper doesn't give the readable busname(gives busid) |
| 187 | // so we can't match with bus name so giving some object specific info |
| 188 | // as SETTINGS_MATCH. |
| 189 | // Later SETTINGS_MATCH will be replaced with busname. |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 190 | |
Patrick Williams | 5d82f47 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 191 | sdbusplus::bus_t bus(ipmid_get_sd_bus_connection()); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 192 | |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 193 | auto ipObjectInfo = ipmi::getDbusObject(bus, IP_INTERFACE, |
| 194 | SETTINGS_ROOT, SETTINGS_MATCH); |
| 195 | |
| 196 | auto macObjectInfo = ipmi::getDbusObject(bus, MAC_INTERFACE, |
| 197 | SETTINGS_ROOT, SETTINGS_MATCH); |
| 198 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 199 | properties = ipmi::getAllDbusProperties( |
| 200 | bus, ipObjectInfo.second, ipObjectInfo.first, IP_INTERFACE); |
| 201 | auto variant = ipmi::getDbusProperty(bus, macObjectInfo.second, |
| 202 | macObjectInfo.first, MAC_INTERFACE, |
| 203 | "MACAddress"); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 204 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 205 | auto ipAddress = std::get<std::string>(properties["Address"]); |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 206 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 207 | auto gateway = std::get<std::string>(properties["Gateway"]); |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 208 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 209 | auto prefix = std::get<uint8_t>(properties["PrefixLength"]); |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 210 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 211 | uint8_t isStatic = |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 212 | (std::get<std::string>(properties["Origin"]) == |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 213 | "xyz.openbmc_project.Network.IP.AddressOrigin.Static") |
| 214 | ? 1 |
| 215 | : 0; |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 216 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 217 | auto MACAddress = std::get<std::string>(variant); |
Ratan Gupta | cc8feb4 | 2017-07-25 21:52:10 +0530 | [diff] [blame] | 218 | |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 219 | // it is expected here that we should get the valid data |
| 220 | // but we may also get the default values. |
| 221 | // Validation of the data is done by settings. |
| 222 | // |
| 223 | // if mac address is default mac address then |
| 224 | // don't send blank override. |
Ratan Gupta | 8c31d23 | 2017-08-13 05:49:43 +0530 | [diff] [blame] | 225 | if ((MACAddress == ipmi::network::DEFAULT_MAC_ADDRESS)) |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 226 | { |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 227 | rc = -1; |
| 228 | return rc; |
| 229 | } |
| 230 | // if addr is static then ipaddress,gateway,prefix |
| 231 | // should not be default one,don't send blank override. |
| 232 | if (isStatic) |
| 233 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 234 | if ((ipAddress == ipmi::network::DEFAULT_ADDRESS) || |
| 235 | (gateway == ipmi::network::DEFAULT_ADDRESS) || (!prefix)) |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 236 | { |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 237 | rc = -1; |
| 238 | return rc; |
| 239 | } |
| 240 | } |
| 241 | |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 242 | std::string token; |
| 243 | std::stringstream ss(MACAddress); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 244 | |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 245 | // First pack macOffset no of bytes in payload. |
| 246 | // Latter this PetiBoot-Specific data will be populated. |
| 247 | std::vector<uint8_t> payloadInitialBytes(macOffset); |
| 248 | payload.pack(payloadInitialBytes); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 249 | |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 250 | while (std::getline(ss, token, ':')) |
| 251 | { |
| 252 | payload.pack(stoi(token, nullptr, 16)); |
| 253 | } |
| 254 | |
| 255 | payload.pack(0x00); |
| 256 | |
| 257 | payload.pack(isStatic); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 258 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 259 | uint8_t addressFamily = (std::get<std::string>(properties["Type"]) == |
| 260 | "xyz.openbmc_project.Network.IP.Protocol.IPv4") |
| 261 | ? AF_INET |
| 262 | : AF_INET6; |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 263 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 264 | addrSize = (addressFamily == AF_INET) |
| 265 | ? ipmi::network::IPV4_ADDRESS_SIZE_BYTE |
| 266 | : ipmi::network::IPV6_ADDRESS_SIZE_BYTE; |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 267 | |
| 268 | // ipaddress and gateway would be in IPv4 format |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 269 | std::vector<uint8_t> addrInBinary(addrSize); |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 270 | inet_pton(addressFamily, ipAddress.c_str(), |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 271 | reinterpret_cast<void*>(addrInBinary.data())); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 272 | |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 273 | payload.pack(addrInBinary); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 274 | |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 275 | payload.pack(prefix); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 276 | |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 277 | std::vector<uint8_t> gatewayDetails(addrSize); |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 278 | inet_pton(addressFamily, gateway.c_str(), |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 279 | reinterpret_cast<void*>(gatewayDetails.data())); |
| 280 | payload.pack(gatewayDetails); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 281 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 282 | catch (const InternalFailure& e) |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 283 | { |
| 284 | commit<InternalFailure>(); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 285 | rc = -1; |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 286 | return rc; |
| 287 | } |
| 288 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 289 | // PetiBoot-Specific |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 290 | // If success then copy the first 9 bytes to the payload message |
| 291 | // payload first 2 bytes contain the parameter values. Skip that 2 bytes. |
| 292 | uint8_t skipFirstTwoBytes = 2; |
| 293 | size_t payloadSize = payload.size(); |
| 294 | uint8_t* configDataStartingAddress = payload.data() + skipFirstTwoBytes; |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 295 | |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 296 | if (payloadSize < skipFirstTwoBytes + sizeof(netConfInitialBytes)) |
| 297 | { |
| 298 | log<level::ERR>("Invalid net config "); |
| 299 | rc = -1; |
| 300 | return rc; |
| 301 | } |
| 302 | std::copy(netConfInitialBytes, |
| 303 | netConfInitialBytes + sizeof(netConfInitialBytes), |
| 304 | configDataStartingAddress); |
| 305 | |
| 306 | if (payloadSize < skipFirstTwoBytes + addrSizeOffset + sizeof(addrSize)) |
| 307 | { |
| 308 | log<level::ERR>("Invalid length of address size"); |
| 309 | rc = -1; |
| 310 | return rc; |
| 311 | } |
| 312 | std::copy(&addrSize, &(addrSize) + sizeof(addrSize), |
| 313 | configDataStartingAddress + addrSizeOffset); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 314 | |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 315 | #ifdef _IPMI_DEBUG_ |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 316 | std::printf("\n===Printing the IPMI Formatted Data========\n"); |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 317 | |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 318 | for (uint8_t pos = 0; pos < index; pos++) |
| 319 | { |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 320 | std::printf("%02x ", payloadStartingAddress[pos]); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 321 | } |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 322 | #endif |
| 323 | |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 324 | return rc; |
| 325 | } |
| 326 | |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 327 | /** @brief convert IPv4 and IPv6 addresses from binary to text form. |
| 328 | * @param[in] family - IPv4/Ipv6 |
| 329 | * @param[in] data - req data pointer. |
| 330 | * @param[in] offset - offset in the data. |
| 331 | * @param[in] addrSize - size of the data which needs to be read from offset. |
| 332 | * @returns address in text form. |
| 333 | */ |
| 334 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 335 | std::string getAddrStr(uint8_t family, uint8_t* data, uint8_t offset, |
| 336 | uint8_t addrSize) |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 337 | { |
| 338 | char ipAddr[INET6_ADDRSTRLEN] = {}; |
| 339 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 340 | switch (family) |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 341 | { |
| 342 | case AF_INET: |
| 343 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 344 | struct sockaddr_in addr4 |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 345 | {}; |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 346 | std::memcpy(&addr4.sin_addr.s_addr, &data[offset], addrSize); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 347 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 348 | inet_ntop(AF_INET, &addr4.sin_addr, ipAddr, INET_ADDRSTRLEN); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 349 | |
| 350 | break; |
| 351 | } |
| 352 | case AF_INET6: |
| 353 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 354 | struct sockaddr_in6 addr6 |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 355 | {}; |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 356 | std::memcpy(&addr6.sin6_addr.s6_addr, &data[offset], addrSize); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 357 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 358 | inet_ntop(AF_INET6, &addr6.sin6_addr, ipAddr, INET6_ADDRSTRLEN); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 359 | |
| 360 | break; |
| 361 | } |
| 362 | default: |
| 363 | { |
| 364 | return {}; |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | return ipAddr; |
| 369 | } |
| 370 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 371 | ipmi::Cc setHostNetworkData(ipmi::message::Payload& data) |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 372 | { |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 373 | using namespace std::string_literals; |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 374 | std::string hostNetworkConfig; |
| 375 | std::string mac("00:00:00:00:00:00"); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 376 | std::string ipAddress, gateway; |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 377 | std::string addrOrigin{0}; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 378 | uint8_t addrSize{0}; |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 379 | std::string addressOrigin = |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 380 | "xyz.openbmc_project.Network.IP.AddressOrigin.DHCP"; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 381 | std::string addressType = "xyz.openbmc_project.Network.IP.Protocol.IPv4"; |
| 382 | uint8_t prefix{0}; |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 383 | uint8_t family = AF_INET; |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 384 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 385 | // cookie starts from second byte |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 386 | // version starts from sixth byte |
| 387 | |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 388 | try |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 389 | { |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 390 | do |
| 391 | { |
| 392 | // cookie == 0x21 0x70 0x62 0x21 |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 393 | data.trailingOk = true; |
| 394 | auto msgLen = data.size(); |
| 395 | std::vector<uint8_t> msgPayloadBytes(msgLen); |
| 396 | if (data.unpack(msgPayloadBytes) != 0 || !data.fullyUnpacked()) |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 397 | { |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 398 | log<level::ERR>( |
| 399 | "Error in unpacking message of setHostNetworkData"); |
| 400 | return ipmi::ccReqDataLenInvalid; |
| 401 | } |
| 402 | |
| 403 | uint8_t* msgPayloadStartingPos = msgPayloadBytes.data(); |
| 404 | constexpr size_t cookieSize = 4; |
| 405 | if (msgLen < cookieOffset + cookieSize) |
| 406 | { |
| 407 | log<level::ERR>( |
| 408 | "Error in cookie getting of setHostNetworkData"); |
| 409 | return ipmi::ccReqDataLenInvalid; |
| 410 | } |
| 411 | if (std::equal(msgPayloadStartingPos + cookieOffset, |
| 412 | msgPayloadStartingPos + cookieOffset + cookieSize, |
| 413 | (netConfInitialBytes + cookieOffset)) != 0) |
| 414 | { |
| 415 | // all cookie == 0 |
| 416 | if (std::all_of(msgPayloadStartingPos + cookieOffset, |
| 417 | msgPayloadStartingPos + cookieOffset + |
| 418 | cookieSize, |
| 419 | [](int i) { return i == 0; }) == true) |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 420 | { |
| 421 | // need to zero out the network settings. |
| 422 | break; |
| 423 | } |
| 424 | |
| 425 | log<level::ERR>("Invalid Cookie"); |
| 426 | elog<InternalFailure>(); |
| 427 | } |
| 428 | |
| 429 | // vesion == 0x00 0x01 |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 430 | if (msgLen < versionOffset + sizeVersion) |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 431 | { |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 432 | log<level::ERR>( |
| 433 | "Error in version getting of setHostNetworkData"); |
| 434 | return ipmi::ccReqDataLenInvalid; |
| 435 | } |
| 436 | if (std::equal(msgPayloadStartingPos + versionOffset, |
| 437 | msgPayloadStartingPos + versionOffset + sizeVersion, |
| 438 | (netConfInitialBytes + versionOffset)) != 0) |
| 439 | { |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 440 | log<level::ERR>("Invalid Version"); |
| 441 | elog<InternalFailure>(); |
| 442 | } |
| 443 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 444 | if (msgLen < macOffset + 6) |
| 445 | { |
| 446 | log<level::ERR>( |
| 447 | "Error in mac address getting of setHostNetworkData"); |
| 448 | return ipmi::ccReqDataLenInvalid; |
| 449 | } |
| 450 | std::stringstream result; |
| 451 | std::copy((msgPayloadStartingPos + macOffset), |
| 452 | (msgPayloadStartingPos + macOffset + 5), |
| 453 | std::ostream_iterator<int>(result, ":")); |
| 454 | mac = result.str(); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 455 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 456 | if (msgLen < addrTypeOffset + sizeof(decltype(addrOrigin))) |
| 457 | { |
| 458 | log<level::ERR>( |
| 459 | "Error in original address getting of setHostNetworkData"); |
| 460 | return ipmi::ccReqDataLenInvalid; |
| 461 | } |
| 462 | std::copy(msgPayloadStartingPos + addrTypeOffset, |
| 463 | msgPayloadStartingPos + addrTypeOffset + |
| 464 | sizeof(decltype(addrOrigin)), |
| 465 | std::ostream_iterator<int>(result, "")); |
| 466 | addrOrigin = result.str(); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 467 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 468 | if (!addrOrigin.empty()) |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 469 | { |
| 470 | addressOrigin = |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 471 | "xyz.openbmc_project.Network.IP.AddressOrigin.Static"; |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 472 | } |
| 473 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 474 | if (msgLen < addrSizeOffset + sizeof(decltype(addrSize))) |
| 475 | { |
| 476 | log<level::ERR>( |
| 477 | "Error in address size getting of setHostNetworkData"); |
| 478 | return ipmi::ccReqDataLenInvalid; |
| 479 | } |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 480 | // Get the address size |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 481 | std::copy(msgPayloadStartingPos + addrSizeOffset, |
| 482 | (msgPayloadStartingPos + addrSizeOffset + |
| 483 | sizeof(decltype(addrSize))), |
| 484 | &addrSize); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 485 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 486 | uint8_t prefixOffset = ipAddrOffset + addrSize; |
| 487 | if (msgLen < prefixOffset + sizeof(decltype(prefix))) |
| 488 | { |
| 489 | log<level::ERR>( |
| 490 | "Error in prefix getting of setHostNetworkData"); |
| 491 | return ipmi::ccReqDataLenInvalid; |
| 492 | } |
William A. Kennington III | 4c52102 | 2023-07-28 13:07:30 -0700 | [diff] [blame] | 493 | // std::copy(msgPayloadStartingPos + prefixOffset, |
| 494 | // msgPayloadStartingPos + prefixOffset + |
| 495 | // sizeof(decltype(prefix)), |
| 496 | // &prefix); |
| 497 | // Workaround compiler misdetecting out of bounds memcpy |
| 498 | prefix = msgPayloadStartingPos[prefixOffset]; |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 499 | |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 500 | uint8_t gatewayOffset = prefixOffset + sizeof(decltype(prefix)); |
Ratan Gupta | 8c31d23 | 2017-08-13 05:49:43 +0530 | [diff] [blame] | 501 | if (addrSize != ipmi::network::IPV4_ADDRESS_SIZE_BYTE) |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 502 | { |
| 503 | addressType = "xyz.openbmc_project.Network.IP.Protocol.IPv6"; |
| 504 | family = AF_INET6; |
| 505 | } |
| 506 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 507 | if (msgLen < ipAddrOffset + addrSize) |
| 508 | { |
| 509 | log<level::ERR>( |
| 510 | "Error in IP address getting of setHostNetworkData"); |
| 511 | return ipmi::ccReqDataLenInvalid; |
| 512 | } |
| 513 | ipAddress = getAddrStr(family, msgPayloadStartingPos, ipAddrOffset, |
| 514 | addrSize); |
Ratan Gupta | d70f453 | 2017-08-04 02:07:31 +0530 | [diff] [blame] | 515 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 516 | if (msgLen < gatewayOffset + addrSize) |
| 517 | { |
| 518 | log<level::ERR>( |
| 519 | "Error in gateway address getting of setHostNetworkData"); |
| 520 | return ipmi::ccReqDataLenInvalid; |
| 521 | } |
| 522 | gateway = getAddrStr(family, msgPayloadStartingPos, gatewayOffset, |
| 523 | addrSize); |
Ratan Gupta | 6ec7daa | 2017-07-15 14:13:01 +0530 | [diff] [blame] | 524 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 525 | } while (0); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 526 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 527 | // Cookie == 0 or it is a valid cookie |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 528 | hostNetworkConfig += "ipaddress="s + ipAddress + ",prefix="s + |
| 529 | std::to_string(prefix) + ",gateway="s + gateway + |
| 530 | ",mac="s + mac + ",addressOrigin="s + |
| 531 | addressOrigin; |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 532 | |
Patrick Williams | 5d82f47 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 533 | sdbusplus::bus_t bus(ipmid_get_sd_bus_connection()); |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 534 | |
| 535 | auto ipObjectInfo = ipmi::getDbusObject(bus, IP_INTERFACE, |
| 536 | SETTINGS_ROOT, SETTINGS_MATCH); |
| 537 | auto macObjectInfo = ipmi::getDbusObject(bus, MAC_INTERFACE, |
| 538 | SETTINGS_ROOT, SETTINGS_MATCH); |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 539 | // set the dbus property |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 540 | ipmi::setDbusProperty(bus, ipObjectInfo.second, ipObjectInfo.first, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 541 | IP_INTERFACE, "Address", std::string(ipAddress)); |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 542 | ipmi::setDbusProperty(bus, ipObjectInfo.second, ipObjectInfo.first, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 543 | IP_INTERFACE, "PrefixLength", prefix); |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 544 | ipmi::setDbusProperty(bus, ipObjectInfo.second, ipObjectInfo.first, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 545 | IP_INTERFACE, "Origin", addressOrigin); |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 546 | ipmi::setDbusProperty(bus, ipObjectInfo.second, ipObjectInfo.first, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 547 | IP_INTERFACE, "Gateway", std::string(gateway)); |
| 548 | ipmi::setDbusProperty( |
| 549 | bus, ipObjectInfo.second, ipObjectInfo.first, IP_INTERFACE, "Type", |
| 550 | std::string("xyz.openbmc_project.Network.IP.Protocol.IPv4")); |
Ratan Gupta | 01d4bd1 | 2017-08-07 15:53:25 +0530 | [diff] [blame] | 551 | ipmi::setDbusProperty(bus, macObjectInfo.second, macObjectInfo.first, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 552 | MAC_INTERFACE, "MACAddress", std::string(mac)); |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 553 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 554 | log<level::DEBUG>("Network configuration changed", |
| 555 | entry("NETWORKCONFIG=%s", hostNetworkConfig.c_str())); |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 556 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 557 | catch (const sdbusplus::exception_t& e) |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 558 | { |
| 559 | commit<InternalFailure>(); |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 560 | log<level::ERR>("Error in ipmiChassisSetSysBootOptions call"); |
| 561 | return ipmi::ccUnspecifiedError; |
Ratan Gupta | dcb1067 | 2017-07-10 10:33:50 +0530 | [diff] [blame] | 562 | } |
| 563 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 564 | return ipmi::ccSuccess; |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 565 | } |
| 566 | |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 567 | uint32_t getPOHCounter() |
| 568 | { |
Patrick Williams | 5d82f47 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 569 | sdbusplus::bus_t bus{ipmid_get_sd_bus_connection()}; |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 570 | |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 571 | auto chassisStateObj = ipmi::getDbusObject(bus, chassisPOHStateIntf, |
| 572 | chassisStateRoot, match); |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 573 | |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 574 | auto service = ipmi::getService(bus, chassisPOHStateIntf, |
| 575 | chassisStateObj.first); |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 576 | |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 577 | auto propValue = ipmi::getDbusProperty(bus, service, chassisStateObj.first, |
| 578 | chassisPOHStateIntf, |
| 579 | pohCounterProperty); |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 580 | |
Vernon Mauery | f442e11 | 2019-04-09 11:44:36 -0700 | [diff] [blame] | 581 | return std::get<uint32_t>(propValue); |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 582 | } |
| 583 | |
anil kumar appana | 43263c6 | 2019-05-27 12:45:04 +0000 | [diff] [blame] | 584 | /** @brief Implements the get chassis capabilities command |
| 585 | * |
| 586 | * @returns IPMI completion code plus response data |
| 587 | * chassisCapFlags - chassis capability flag |
| 588 | * chassisFRUInfoDevAddr - chassis FRU info Device Address |
| 589 | * chassisSDRDevAddr - chassis SDR device address |
| 590 | * chassisSELDevAddr - chassis SEL device address |
| 591 | * chassisSMDevAddr - chassis system management device address |
| 592 | * chassisBridgeDevAddr - chassis bridge device address |
| 593 | */ |
Karthick Sundarrajan | 86d8bd7 | 2019-11-26 12:48:50 -0800 | [diff] [blame] | 594 | ipmi::RspType<bool, // chassis intrusion sensor |
| 595 | bool, // chassis Front panel lockout |
| 596 | bool, // chassis NMI |
| 597 | bool, // chassis power interlock |
| 598 | uint4_t, // reserved |
anil kumar appana | 43263c6 | 2019-05-27 12:45:04 +0000 | [diff] [blame] | 599 | uint8_t, // chassis FRU info Device Address |
| 600 | uint8_t, // chassis SDR device address |
| 601 | uint8_t, // chassis SEL device address |
| 602 | uint8_t, // chassis system management device address |
| 603 | uint8_t // chassis bridge device address |
| 604 | > |
| 605 | ipmiGetChassisCap() |
Nan Li | 8d15fb4 | 2016-08-16 22:29:40 +0800 | [diff] [blame] | 606 | { |
anil kumar appana | 43263c6 | 2019-05-27 12:45:04 +0000 | [diff] [blame] | 607 | ipmi::PropertyMap properties; |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 608 | try |
| 609 | { |
Patrick Williams | 5d82f47 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 610 | sdbusplus::bus_t bus{ipmid_get_sd_bus_connection()}; |
Nan Li | 8d15fb4 | 2016-08-16 22:29:40 +0800 | [diff] [blame] | 611 | |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 612 | ipmi::DbusObjectInfo chassisCapObject = |
| 613 | ipmi::getDbusObject(bus, chassisCapIntf); |
Nan Li | 8d15fb4 | 2016-08-16 22:29:40 +0800 | [diff] [blame] | 614 | |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 615 | // capabilities flags |
| 616 | // [7..4] - reserved |
| 617 | // [3] – 1b = provides power interlock (IPM 1.5) |
| 618 | // [2] – 1b = provides Diagnostic Interrupt (FP NMI) |
| 619 | // [1] – 1b = provides “Front Panel Lockout” (indicates that the chassis |
| 620 | // has capabilities |
| 621 | // to lock out external power control and reset button or |
| 622 | // front panel interfaces and/or detect tampering with those |
| 623 | // interfaces). |
| 624 | // [0] -1b = Chassis provides intrusion (physical security) sensor. |
| 625 | // set to default value 0x0. |
Nan Li | 8d15fb4 | 2016-08-16 22:29:40 +0800 | [diff] [blame] | 626 | |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 627 | properties = ipmi::getAllDbusProperties(bus, chassisCapObject.second, |
| 628 | chassisCapObject.first, |
| 629 | chassisCapIntf); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 630 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 631 | catch (const std::exception& e) |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 632 | { |
anil kumar appana | 43263c6 | 2019-05-27 12:45:04 +0000 | [diff] [blame] | 633 | log<level::ERR>("Failed to fetch Chassis Capability properties", |
| 634 | entry("ERROR=%s", e.what())); |
| 635 | return ipmi::responseUnspecifiedError(); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 636 | } |
| 637 | |
Karthick Sundarrajan | 86d8bd7 | 2019-11-26 12:48:50 -0800 | [diff] [blame] | 638 | bool* chassisIntrusionFlag = |
| 639 | std::get_if<bool>(&properties[chassisIntrusionProp]); |
| 640 | if (chassisIntrusionFlag == nullptr) |
anil kumar appana | 43263c6 | 2019-05-27 12:45:04 +0000 | [diff] [blame] | 641 | { |
Karthick Sundarrajan | 86d8bd7 | 2019-11-26 12:48:50 -0800 | [diff] [blame] | 642 | log<level::ERR>("Error to get chassis Intrusion flags"); |
| 643 | return ipmi::responseUnspecifiedError(); |
| 644 | } |
| 645 | bool* chassisFrontPanelFlag = |
| 646 | std::get_if<bool>(&properties[chassisFrontPanelLockoutProp]); |
| 647 | if (chassisFrontPanelFlag == nullptr) |
| 648 | { |
| 649 | log<level::ERR>("Error to get chassis intrusion flags"); |
| 650 | return ipmi::responseUnspecifiedError(); |
| 651 | } |
| 652 | bool* chassisNMIFlag = std::get_if<bool>(&properties[chassisNMIProp]); |
| 653 | if (chassisNMIFlag == nullptr) |
| 654 | { |
| 655 | log<level::ERR>("Error to get chassis NMI flags"); |
| 656 | return ipmi::responseUnspecifiedError(); |
| 657 | } |
| 658 | bool* chassisPowerInterlockFlag = |
| 659 | std::get_if<bool>(&properties[chassisPowerInterlockProp]); |
| 660 | if (chassisPowerInterlockFlag == nullptr) |
| 661 | { |
| 662 | log<level::ERR>("Error to get chassis power interlock flags"); |
anil kumar appana | 43263c6 | 2019-05-27 12:45:04 +0000 | [diff] [blame] | 663 | return ipmi::responseUnspecifiedError(); |
| 664 | } |
| 665 | uint8_t* chassisFRUInfoDevAddr = |
| 666 | std::get_if<uint8_t>(&properties[chassisFRUDevAddrProp]); |
| 667 | if (chassisFRUInfoDevAddr == nullptr) |
| 668 | { |
| 669 | log<level::ERR>("Error to get chassis FRU info device address"); |
| 670 | return ipmi::responseUnspecifiedError(); |
| 671 | } |
| 672 | uint8_t* chassisSDRDevAddr = |
| 673 | std::get_if<uint8_t>(&properties[chassisSDRDevAddrProp]); |
| 674 | if (chassisSDRDevAddr == nullptr) |
| 675 | { |
| 676 | log<level::ERR>("Error to get chassis SDR device address"); |
| 677 | return ipmi::responseUnspecifiedError(); |
| 678 | } |
| 679 | uint8_t* chassisSELDevAddr = |
| 680 | std::get_if<uint8_t>(&properties[chassisSELDevAddrProp]); |
| 681 | if (chassisSELDevAddr == nullptr) |
| 682 | { |
| 683 | log<level::ERR>("Error to get chassis SEL device address"); |
| 684 | return ipmi::responseUnspecifiedError(); |
| 685 | } |
| 686 | uint8_t* chassisSMDevAddr = |
| 687 | std::get_if<uint8_t>(&properties[chassisSMDevAddrProp]); |
| 688 | if (chassisSMDevAddr == nullptr) |
| 689 | { |
| 690 | log<level::ERR>("Error to get chassis SM device address"); |
| 691 | return ipmi::responseUnspecifiedError(); |
| 692 | } |
| 693 | uint8_t* chassisBridgeDevAddr = |
| 694 | std::get_if<uint8_t>(&properties[chassisBridgeDevAddrProp]); |
| 695 | if (chassisBridgeDevAddr == nullptr) |
| 696 | { |
| 697 | log<level::ERR>("Error to get chassis bridge device address"); |
| 698 | return ipmi::responseUnspecifiedError(); |
| 699 | } |
| 700 | |
Karthick Sundarrajan | 86d8bd7 | 2019-11-26 12:48:50 -0800 | [diff] [blame] | 701 | return ipmi::responseSuccess(*chassisIntrusionFlag, *chassisFrontPanelFlag, |
| 702 | *chassisNMIFlag, *chassisPowerInterlockFlag, 0, |
| 703 | *chassisFRUInfoDevAddr, *chassisSDRDevAddr, |
| 704 | *chassisSELDevAddr, *chassisSMDevAddr, |
| 705 | *chassisBridgeDevAddr); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 706 | } |
| 707 | |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 708 | /** @brief implements set chassis capalibities command |
| 709 | * @param intrusion - chassis intrusion |
| 710 | * @param fpLockout - frontpannel lockout |
| 711 | * @param reserved1 - skip one bit |
| 712 | * @param fruDeviceAddr - chassis FRU info Device Address |
| 713 | * @param sdrDeviceAddr - chassis SDR device address |
| 714 | * @param selDeviceAddr - chassis SEL device address |
| 715 | * @param smDeviceAddr - chassis system management device address |
| 716 | * @param bridgeDeviceAddr - chassis bridge device address |
| 717 | * |
| 718 | * @returns IPMI completion code |
| 719 | */ |
| 720 | ipmi::RspType<> ipmiSetChassisCap(bool intrusion, bool fpLockout, |
| 721 | uint6_t reserved1, |
| 722 | |
| 723 | uint8_t fruDeviceAddr, |
| 724 | |
| 725 | uint8_t sdrDeviceAddr, |
| 726 | |
| 727 | uint8_t selDeviceAddr, |
| 728 | |
| 729 | uint8_t smDeviceAddr, |
| 730 | |
| 731 | uint8_t bridgeDeviceAddr) |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 732 | { |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 733 | // check input data |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 734 | if (reserved1 != 0) |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 735 | { |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 736 | log<level::ERR>("Unsupported request parameter"); |
| 737 | return ipmi::responseInvalidFieldRequest(); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 738 | } |
| 739 | |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 740 | if ((fruDeviceAddr & ~chassisCapAddrMask) != 0) |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 741 | { |
| 742 | log<level::ERR>("Unsupported request parameter(FRU Addr)", |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 743 | entry("REQ=0x%x", fruDeviceAddr)); |
| 744 | return ipmi::responseInvalidFieldRequest(); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 745 | } |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 746 | if ((sdrDeviceAddr & ~chassisCapAddrMask) != 0) |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 747 | { |
| 748 | log<level::ERR>("Unsupported request parameter(SDR Addr)", |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 749 | entry("REQ=0x%x", sdrDeviceAddr)); |
| 750 | return ipmi::responseInvalidFieldRequest(); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 751 | } |
| 752 | |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 753 | if ((selDeviceAddr & ~chassisCapAddrMask) != 0) |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 754 | { |
| 755 | log<level::ERR>("Unsupported request parameter(SEL Addr)", |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 756 | entry("REQ=0x%x", selDeviceAddr)); |
| 757 | return ipmi::responseInvalidFieldRequest(); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 758 | } |
| 759 | |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 760 | if ((smDeviceAddr & ~chassisCapAddrMask) != 0) |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 761 | { |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 762 | log<level::ERR>("Unsupported request parameter(SM Addr)", |
| 763 | entry("REQ=0x%x", smDeviceAddr)); |
| 764 | return ipmi::responseInvalidFieldRequest(); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 765 | } |
| 766 | |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 767 | if ((bridgeDeviceAddr & ~chassisCapAddrMask) != 0) |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 768 | { |
| 769 | log<level::ERR>("Unsupported request parameter(Bridge Addr)", |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 770 | entry("REQ=0x%x", bridgeDeviceAddr)); |
| 771 | return ipmi::responseInvalidFieldRequest(); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | try |
| 775 | { |
Patrick Williams | 5d82f47 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 776 | sdbusplus::bus_t bus(ipmid_get_sd_bus_connection()); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 777 | ipmi::DbusObjectInfo chassisCapObject = |
| 778 | ipmi::getDbusObject(bus, chassisCapIntf); |
| 779 | |
| 780 | ipmi::setDbusProperty(bus, chassisCapObject.second, |
| 781 | chassisCapObject.first, chassisCapIntf, |
Karthick Sundarrajan | 86d8bd7 | 2019-11-26 12:48:50 -0800 | [diff] [blame] | 782 | chassisIntrusionProp, intrusion); |
| 783 | |
| 784 | ipmi::setDbusProperty(bus, chassisCapObject.second, |
| 785 | chassisCapObject.first, chassisCapIntf, |
| 786 | chassisFrontPanelLockoutProp, fpLockout); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 787 | |
| 788 | ipmi::setDbusProperty(bus, chassisCapObject.second, |
| 789 | chassisCapObject.first, chassisCapIntf, |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 790 | chassisFRUDevAddrProp, fruDeviceAddr); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 791 | |
| 792 | ipmi::setDbusProperty(bus, chassisCapObject.second, |
| 793 | chassisCapObject.first, chassisCapIntf, |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 794 | chassisSDRDevAddrProp, sdrDeviceAddr); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 795 | |
| 796 | ipmi::setDbusProperty(bus, chassisCapObject.second, |
| 797 | chassisCapObject.first, chassisCapIntf, |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 798 | chassisSELDevAddrProp, selDeviceAddr); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 799 | |
| 800 | ipmi::setDbusProperty(bus, chassisCapObject.second, |
| 801 | chassisCapObject.first, chassisCapIntf, |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 802 | chassisSMDevAddrProp, smDeviceAddr); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 803 | |
| 804 | ipmi::setDbusProperty(bus, chassisCapObject.second, |
| 805 | chassisCapObject.first, chassisCapIntf, |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 806 | chassisBridgeDevAddrProp, bridgeDeviceAddr); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 807 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 808 | catch (const std::exception& e) |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 809 | { |
| 810 | log<level::ERR>(e.what()); |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 811 | return ipmi::responseUnspecifiedError(); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 812 | } |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 813 | return ipmi::responseSuccess(); |
Nan Li | 8d15fb4 | 2016-08-16 22:29:40 +0800 | [diff] [blame] | 814 | } |
| 815 | |
Vishwanatha Subbanna | b12b0c0 | 2017-03-07 18:17:19 +0530 | [diff] [blame] | 816 | //------------------------------------------ |
| 817 | // Calls into Host State Manager Dbus object |
| 818 | //------------------------------------------ |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 819 | int initiateHostStateTransition(ipmi::Context::ptr& ctx, |
| 820 | State::Host::Transition transition) |
vishwa | 3699327 | 2015-11-20 12:43:49 -0600 | [diff] [blame] | 821 | { |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 822 | // OpenBMC Host State Manager dbus framework |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 823 | constexpr auto hostStatePath = "/xyz/openbmc_project/state/host0"; |
| 824 | constexpr auto hostStateIntf = "xyz.openbmc_project.State.Host"; |
Vishwanatha Subbanna | b12b0c0 | 2017-03-07 18:17:19 +0530 | [diff] [blame] | 825 | |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 826 | // Convert to string equivalent of the passed in transition enum. |
| 827 | auto request = State::convertForMessage(transition); |
Vishwanatha Subbanna | b12b0c0 | 2017-03-07 18:17:19 +0530 | [diff] [blame] | 828 | |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 829 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 830 | boost::system::error_code ec = ipmi::getService(ctx, hostStateIntf, |
| 831 | hostStatePath, service); |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 832 | |
| 833 | if (!ec) |
| 834 | { |
| 835 | ec = ipmi::setDbusProperty(ctx, service, hostStatePath, hostStateIntf, |
| 836 | "RequestedHostTransition", request); |
| 837 | } |
| 838 | if (ec) |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 839 | { |
| 840 | log<level::ERR>("Failed to initiate transition", |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 841 | entry("EXCEPTION=%s, REQUEST=%s", ec.message().c_str(), |
| 842 | request.c_str())); |
| 843 | return -1; |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 844 | } |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 845 | log<level::INFO>( |
| 846 | "Transition request initiated successfully", |
| 847 | entry("USERID=%d, REQUEST=%s", ctx->userId, request.c_str())); |
| 848 | return 0; |
vishwa | 3699327 | 2015-11-20 12:43:49 -0600 | [diff] [blame] | 849 | } |
| 850 | |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 851 | //------------------------------------------ |
Jason M. Bills | ad588bf | 2020-01-30 16:18:33 -0800 | [diff] [blame] | 852 | // Calls into Chassis State Manager Dbus object |
| 853 | //------------------------------------------ |
| 854 | int initiateChassisStateTransition(ipmi::Context::ptr& ctx, |
| 855 | State::Chassis::Transition transition) |
| 856 | { |
| 857 | // OpenBMC Chassis State Manager dbus framework |
| 858 | constexpr auto chassisStatePath = "/xyz/openbmc_project/state/chassis0"; |
| 859 | constexpr auto chassisStateIntf = "xyz.openbmc_project.State.Chassis"; |
| 860 | |
| 861 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 862 | boost::system::error_code ec = ipmi::getService(ctx, chassisStateIntf, |
| 863 | chassisStatePath, service); |
Jason M. Bills | ad588bf | 2020-01-30 16:18:33 -0800 | [diff] [blame] | 864 | |
| 865 | // Convert to string equivalent of the passed in transition enum. |
| 866 | auto request = State::convertForMessage(transition); |
| 867 | |
| 868 | if (!ec) |
| 869 | { |
| 870 | ec = ipmi::setDbusProperty(ctx, service, chassisStatePath, |
| 871 | chassisStateIntf, "RequestedPowerTransition", |
| 872 | request); |
| 873 | } |
| 874 | if (ec) |
| 875 | { |
| 876 | log<level::ERR>("Failed to initiate transition", |
| 877 | entry("EXCEPTION=%s, REQUEST=%s", ec.message().c_str(), |
| 878 | request.c_str())); |
| 879 | return -1; |
| 880 | } |
| 881 | |
| 882 | return 0; |
| 883 | } |
| 884 | |
| 885 | //------------------------------------------ |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 886 | // Set Enabled property to inform NMI source |
| 887 | // handling to trigger a NMI_OUT BSOD. |
| 888 | //------------------------------------------ |
Vernon Mauery | 9bb4a38 | 2021-11-05 12:46:19 -0700 | [diff] [blame] | 889 | int setNmiProperty(ipmi::Context::ptr& ctx, const bool value) |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 890 | { |
| 891 | constexpr const char* nmiSourceObjPath = |
| 892 | "/xyz/openbmc_project/Chassis/Control/NMISource"; |
| 893 | constexpr const char* nmiSourceIntf = |
| 894 | "xyz.openbmc_project.Chassis.Control.NMISource"; |
| 895 | std::string bmcSourceSignal = "xyz.openbmc_project.Chassis.Control." |
| 896 | "NMISource.BMCSourceSignal.ChassisCmd"; |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 897 | |
Vernon Mauery | 9bb4a38 | 2021-11-05 12:46:19 -0700 | [diff] [blame] | 898 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 899 | boost::system::error_code ec = ipmi::getService(ctx, nmiSourceIntf, |
| 900 | nmiSourceObjPath, service); |
Vernon Mauery | 9bb4a38 | 2021-11-05 12:46:19 -0700 | [diff] [blame] | 901 | if (!ec) |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 902 | { |
Vernon Mauery | 9bb4a38 | 2021-11-05 12:46:19 -0700 | [diff] [blame] | 903 | ec = ipmi::setDbusProperty(ctx, service, nmiSourceObjPath, |
| 904 | nmiSourceIntf, "BMCSource", bmcSourceSignal); |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 905 | } |
Vernon Mauery | 9bb4a38 | 2021-11-05 12:46:19 -0700 | [diff] [blame] | 906 | if (!ec) |
| 907 | { |
| 908 | ec = ipmi::setDbusProperty(ctx, service, nmiSourceObjPath, |
| 909 | nmiSourceIntf, "Enabled", value); |
| 910 | } |
| 911 | if (ec) |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 912 | { |
| 913 | log<level::ERR>("Failed to trigger NMI_OUT", |
Vernon Mauery | 9bb4a38 | 2021-11-05 12:46:19 -0700 | [diff] [blame] | 914 | entry("EXCEPTION=%s", ec.message().c_str())); |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 915 | return -1; |
| 916 | } |
| 917 | |
| 918 | return 0; |
| 919 | } |
| 920 | |
Deepak Kodihalli | 18b70d1 | 2017-07-21 13:36:33 -0500 | [diff] [blame] | 921 | namespace power_policy |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 922 | { |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 923 | |
Deepak Kodihalli | 18b70d1 | 2017-07-21 13:36:33 -0500 | [diff] [blame] | 924 | using namespace sdbusplus::xyz::openbmc_project::Control::Power::server; |
| 925 | using IpmiValue = uint8_t; |
| 926 | using DbusValue = RestorePolicy::Policy; |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 927 | |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 928 | const std::map<DbusValue, IpmiValue> dbusToIpmi = { |
Deepak Kodihalli | 18b70d1 | 2017-07-21 13:36:33 -0500 | [diff] [blame] | 929 | {RestorePolicy::Policy::AlwaysOff, 0x00}, |
| 930 | {RestorePolicy::Policy::Restore, 0x01}, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 931 | {RestorePolicy::Policy::AlwaysOn, 0x02}}; |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 932 | |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 933 | static constexpr uint8_t noChange = 0x03; |
| 934 | static constexpr uint8_t allSupport = 0x01 | 0x02 | 0x04; |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 935 | |
| 936 | /* helper function for Get Chassis Status Command |
| 937 | */ |
| 938 | std::optional<uint2_t> getPowerRestorePolicy() |
| 939 | { |
| 940 | uint2_t restorePolicy = 0; |
| 941 | using namespace chassis::internal; |
| 942 | |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 943 | settings::Objects& objects = cache::getObjects(); |
| 944 | |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 945 | try |
| 946 | { |
| 947 | const auto& powerRestoreSetting = |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 948 | objects.map.at(powerRestoreIntf).front(); |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 949 | ipmi::Value result = ipmi::getDbusProperty( |
| 950 | *getSdBus(), |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 951 | objects.service(powerRestoreSetting, powerRestoreIntf).c_str(), |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 952 | powerRestoreSetting.c_str(), powerRestoreIntf, |
| 953 | "PowerRestorePolicy"); |
| 954 | auto powerRestore = RestorePolicy::convertPolicyFromString( |
| 955 | std::get<std::string>(result)); |
| 956 | restorePolicy = dbusToIpmi.at(powerRestore); |
| 957 | } |
| 958 | catch (const std::exception& e) |
| 959 | { |
| 960 | log<level::ERR>( |
| 961 | "Failed to fetch pgood property", entry("ERROR=%s", e.what()), |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 962 | entry("PATH=%s", objects.map.at(powerRestoreIntf).front().c_str()), |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 963 | entry("INTERFACE=%s", powerRestoreIntf)); |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 964 | cache::objectsPtr.reset(); |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 965 | return std::nullopt; |
| 966 | } |
| 967 | return std::make_optional(restorePolicy); |
| 968 | } |
| 969 | |
| 970 | /* |
| 971 | * getPowerStatus |
| 972 | * helper function for Get Chassis Status Command |
| 973 | * return - optional value for pgood (no value on error) |
| 974 | */ |
| 975 | std::optional<bool> getPowerStatus() |
| 976 | { |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 977 | bool powerGood = false; |
| 978 | std::shared_ptr<sdbusplus::asio::connection> busp = getSdBus(); |
| 979 | try |
| 980 | { |
Jason M. Bills | 3de424c | 2019-05-21 09:57:16 -0700 | [diff] [blame] | 981 | constexpr const char* chassisStatePath = |
| 982 | "/xyz/openbmc_project/state/chassis0"; |
| 983 | constexpr const char* chassisStateIntf = |
| 984 | "xyz.openbmc_project.State.Chassis"; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 985 | auto service = ipmi::getService(*busp, chassisStateIntf, |
| 986 | chassisStatePath); |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 987 | |
Jason M. Bills | 3de424c | 2019-05-21 09:57:16 -0700 | [diff] [blame] | 988 | ipmi::Value powerState = |
| 989 | ipmi::getDbusProperty(*busp, service, chassisStatePath, |
| 990 | chassisStateIntf, "CurrentPowerState"); |
| 991 | powerGood = std::get<std::string>(powerState) == |
| 992 | "xyz.openbmc_project.State.Chassis.PowerState.On"; |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 993 | } |
| 994 | catch (const std::exception& e) |
| 995 | { |
| 996 | try |
| 997 | { |
| 998 | // FIXME: some legacy modules use the older path; try that next |
| 999 | constexpr const char* legacyPwrCtrlObj = |
| 1000 | "/org/openbmc/control/power0"; |
| 1001 | constexpr const char* legacyPwrCtrlIntf = |
| 1002 | "org.openbmc.control.Power"; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1003 | auto service = ipmi::getService(*busp, legacyPwrCtrlIntf, |
| 1004 | legacyPwrCtrlObj); |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1005 | |
| 1006 | ipmi::Value variant = ipmi::getDbusProperty( |
| 1007 | *busp, service, legacyPwrCtrlObj, legacyPwrCtrlIntf, "pgood"); |
| 1008 | powerGood = static_cast<bool>(std::get<int>(variant)); |
| 1009 | } |
| 1010 | catch (const std::exception& e) |
| 1011 | { |
| 1012 | log<level::ERR>("Failed to fetch pgood property", |
Jason M. Bills | 3de424c | 2019-05-21 09:57:16 -0700 | [diff] [blame] | 1013 | entry("ERROR=%s", e.what())); |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1014 | return std::nullopt; |
| 1015 | } |
| 1016 | } |
| 1017 | return std::make_optional(powerGood); |
| 1018 | } |
| 1019 | |
Yong Li | 70ce735 | 2019-05-16 21:15:27 +0800 | [diff] [blame] | 1020 | /* |
| 1021 | * getACFailStatus |
| 1022 | * helper function for Get Chassis Status Command |
| 1023 | * return - bool value for ACFail (false on error) |
| 1024 | */ |
| 1025 | bool getACFailStatus() |
| 1026 | { |
| 1027 | constexpr const char* powerControlObj = |
| 1028 | "/xyz/openbmc_project/Chassis/Control/Power0"; |
| 1029 | constexpr const char* powerControlIntf = |
| 1030 | "xyz.openbmc_project.Chassis.Control.Power"; |
| 1031 | bool acFail = false; |
| 1032 | std::shared_ptr<sdbusplus::asio::connection> bus = getSdBus(); |
| 1033 | try |
| 1034 | { |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1035 | auto service = ipmi::getService(*bus, powerControlIntf, |
| 1036 | powerControlObj); |
Yong Li | 70ce735 | 2019-05-16 21:15:27 +0800 | [diff] [blame] | 1037 | |
| 1038 | ipmi::Value variant = ipmi::getDbusProperty( |
| 1039 | *bus, service, powerControlObj, powerControlIntf, "PFail"); |
| 1040 | acFail = std::get<bool>(variant); |
| 1041 | } |
| 1042 | catch (const std::exception& e) |
| 1043 | { |
| 1044 | log<level::ERR>("Failed to fetch PFail property", |
| 1045 | entry("ERROR=%s", e.what()), |
| 1046 | entry("PATH=%s", powerControlObj), |
| 1047 | entry("INTERFACE=%s", powerControlIntf)); |
| 1048 | } |
| 1049 | return acFail; |
| 1050 | } |
Deepak Kodihalli | 18b70d1 | 2017-07-21 13:36:33 -0500 | [diff] [blame] | 1051 | } // namespace power_policy |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 1052 | |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1053 | static std::optional<bool> getButtonEnabled(const std::string& buttonPath, |
| 1054 | const std::string& buttonIntf) |
| 1055 | { |
| 1056 | std::shared_ptr<sdbusplus::asio::connection> busp = getSdBus(); |
| 1057 | bool buttonDisabled = false; |
| 1058 | try |
| 1059 | { |
| 1060 | auto service = ipmi::getService(*busp, buttonIntf, buttonPath); |
| 1061 | ipmi::Value enabled = ipmi::getDbusProperty(*busp, service, buttonPath, |
| 1062 | buttonIntf, "Enabled"); |
| 1063 | buttonDisabled = !std::get<bool>(enabled); |
| 1064 | } |
Patrick Williams | 5d82f47 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 1065 | catch (const sdbusplus::exception_t& e) |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1066 | { |
| 1067 | log<level::ERR>("Fail to get button Enabled property", |
| 1068 | entry("PATH=%s", buttonPath.c_str()), |
| 1069 | entry("ERROR=%s", e.what())); |
| 1070 | return std::nullopt; |
| 1071 | } |
| 1072 | return std::make_optional(buttonDisabled); |
| 1073 | } |
| 1074 | |
Kuiying Wang | 21addc5 | 2019-01-04 10:50:21 +0800 | [diff] [blame] | 1075 | static bool setButtonEnabled(ipmi::Context::ptr& ctx, |
| 1076 | const std::string& buttonPath, |
| 1077 | const std::string& buttonIntf, bool enable) |
| 1078 | { |
| 1079 | std::string service; |
| 1080 | boost::system::error_code ec; |
| 1081 | ec = ipmi::getService(ctx, buttonIntf, buttonPath, service); |
| 1082 | if (!ec) |
| 1083 | { |
| 1084 | ec = ipmi::setDbusProperty(ctx, service, buttonPath, buttonIntf, |
| 1085 | "Enabled", enable); |
| 1086 | } |
| 1087 | if (ec) |
| 1088 | { |
| 1089 | log<level::ERR>("Fail to set button Enabled property", |
| 1090 | entry("SERVICE=%s", service.c_str()), |
| 1091 | entry("PATH=%s", buttonPath.c_str()), |
| 1092 | entry("ERROR=%s", ec.message().c_str())); |
| 1093 | return false; |
| 1094 | } |
| 1095 | return true; |
| 1096 | } |
| 1097 | |
Chau Ly | 9e666cd | 2023-03-06 08:46:14 +0000 | [diff] [blame] | 1098 | static std::optional<bool> getChassisIntrusionStatus(ipmi::Context::ptr& ctx) |
| 1099 | { |
| 1100 | constexpr const char* chassisIntrusionPath = |
| 1101 | "/xyz/openbmc_project/Chassis/Intrusion"; |
| 1102 | constexpr const char* chassisIntrusionInf = |
| 1103 | "xyz.openbmc_project.Chassis.Intrusion"; |
| 1104 | |
| 1105 | std::string service; |
| 1106 | boost::system::error_code ec = ipmi::getService( |
| 1107 | ctx, chassisIntrusionInf, chassisIntrusionPath, service); |
| 1108 | if (!ec) |
| 1109 | { |
| 1110 | std::string chassisIntrusionStr; |
| 1111 | ec = ipmi::getDbusProperty<std::string>( |
| 1112 | ctx, service, chassisIntrusionPath, chassisIntrusionInf, "Status", |
| 1113 | chassisIntrusionStr); |
| 1114 | if (!ec) |
| 1115 | { |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1116 | bool ret = (chassisIntrusionStr == "HardwareIntrusion") ? true |
| 1117 | : false; |
Chau Ly | 9e666cd | 2023-03-06 08:46:14 +0000 | [diff] [blame] | 1118 | return std::make_optional(ret); |
| 1119 | } |
| 1120 | } |
| 1121 | log<level::ERR>("Fail to get Chassis Intrusion Status property", |
| 1122 | entry("PATH=%s", chassisIntrusionPath), |
| 1123 | entry("INTERFACE=%s", chassisIntrusionInf), |
| 1124 | entry("ERROR=%s", ec.message().c_str())); |
| 1125 | return std::nullopt; |
| 1126 | } |
| 1127 | |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 1128 | //---------------------------------------------------------------------- |
| 1129 | // Get Chassis Status commands |
| 1130 | //---------------------------------------------------------------------- |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1131 | ipmi::RspType<bool, // Power is on |
| 1132 | bool, // Power overload |
| 1133 | bool, // Interlock |
| 1134 | bool, // power fault |
| 1135 | bool, // power control fault |
| 1136 | uint2_t, // power restore policy |
| 1137 | bool, // reserved |
| 1138 | |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1139 | bool, // AC failed |
| 1140 | bool, // last power down caused by a Power overload |
| 1141 | bool, // last power down caused by a power interlock |
| 1142 | bool, // last power down caused by power fault |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1143 | bool, // last ‘Power is on’ state was entered via IPMI command |
| 1144 | uint3_t, // reserved |
| 1145 | |
| 1146 | bool, // Chassis intrusion active |
| 1147 | bool, // Front Panel Lockout active |
| 1148 | bool, // Drive Fault |
| 1149 | bool, // Cooling/fan fault detected |
| 1150 | uint2_t, // Chassis Identify State |
| 1151 | bool, // Chassis Identify command and state info supported |
| 1152 | bool, // reserved |
| 1153 | |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1154 | bool, // Power off button disabled |
| 1155 | bool, // Reset button disabled |
| 1156 | bool, // Diagnostic Interrupt button disabled |
| 1157 | bool, // Standby (sleep) button disabled |
| 1158 | bool, // Power off button disable allowed |
| 1159 | bool, // Reset button disable allowed |
| 1160 | bool, // Diagnostic Interrupt button disable allowed |
| 1161 | bool // Standby (sleep) button disable allowed |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1162 | > |
Chau Ly | 9e666cd | 2023-03-06 08:46:14 +0000 | [diff] [blame] | 1163 | ipmiGetChassisStatus(ipmi::Context::ptr& ctx) |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 1164 | { |
Deepak Kodihalli | 18b70d1 | 2017-07-21 13:36:33 -0500 | [diff] [blame] | 1165 | using namespace chassis::internal; |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1166 | std::optional<uint2_t> restorePolicy = |
| 1167 | power_policy::getPowerRestorePolicy(); |
| 1168 | std::optional<bool> powerGood = power_policy::getPowerStatus(); |
| 1169 | if (!restorePolicy || !powerGood) |
Deepak Kodihalli | 18b70d1 | 2017-07-21 13:36:33 -0500 | [diff] [blame] | 1170 | { |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1171 | return ipmi::responseUnspecifiedError(); |
Deepak Kodihalli | 18b70d1 | 2017-07-21 13:36:33 -0500 | [diff] [blame] | 1172 | } |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 1173 | |
| 1174 | // Front Panel Button Capabilities and disable/enable status(Optional) |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1175 | std::optional<bool> powerButtonReading = getButtonEnabled(powerButtonPath, |
| 1176 | powerButtonIntf); |
Vernon Mauery | 6d5b2f7 | 2019-05-16 14:48:47 -0700 | [diff] [blame] | 1177 | // allow disable if the interface is present |
| 1178 | bool powerButtonDisableAllow = static_cast<bool>(powerButtonReading); |
| 1179 | // default return the button is enabled (not disabled) |
| 1180 | bool powerButtonDisabled = false; |
| 1181 | if (powerButtonDisableAllow) |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1182 | { |
Vernon Mauery | 6d5b2f7 | 2019-05-16 14:48:47 -0700 | [diff] [blame] | 1183 | // return the real value of the button status, if present |
| 1184 | powerButtonDisabled = *powerButtonReading; |
| 1185 | } |
| 1186 | |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1187 | std::optional<bool> resetButtonReading = getButtonEnabled(resetButtonPath, |
| 1188 | resetButtonIntf); |
Vernon Mauery | 6d5b2f7 | 2019-05-16 14:48:47 -0700 | [diff] [blame] | 1189 | // allow disable if the interface is present |
| 1190 | bool resetButtonDisableAllow = static_cast<bool>(resetButtonReading); |
| 1191 | // default return the button is enabled (not disabled) |
| 1192 | bool resetButtonDisabled = false; |
| 1193 | if (resetButtonDisableAllow) |
| 1194 | { |
| 1195 | // return the real value of the button status, if present |
| 1196 | resetButtonDisabled = *resetButtonReading; |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1197 | } |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 1198 | |
Yong Li | 70ce735 | 2019-05-16 21:15:27 +0800 | [diff] [blame] | 1199 | bool powerDownAcFailed = power_policy::getACFailStatus(); |
| 1200 | |
Chau Ly | 9e666cd | 2023-03-06 08:46:14 +0000 | [diff] [blame] | 1201 | bool chassisIntrusionActive = false; |
| 1202 | std::optional<bool> chassisIntrusionStatus = getChassisIntrusionStatus(ctx); |
| 1203 | if (chassisIntrusionStatus) |
| 1204 | { |
| 1205 | chassisIntrusionActive = chassisIntrusionStatus.value(); |
| 1206 | } |
| 1207 | |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1208 | // This response has a lot of hard-coded, unsupported fields |
| 1209 | // They are set to false or 0 |
| 1210 | constexpr bool powerOverload = false; |
| 1211 | constexpr bool chassisInterlock = false; |
| 1212 | constexpr bool powerFault = false; |
| 1213 | constexpr bool powerControlFault = false; |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1214 | constexpr bool powerDownOverload = false; |
| 1215 | constexpr bool powerDownInterlock = false; |
| 1216 | constexpr bool powerDownPowerFault = false; |
| 1217 | constexpr bool powerStatusIPMI = false; |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1218 | constexpr bool frontPanelLockoutActive = false; |
| 1219 | constexpr bool driveFault = false; |
| 1220 | constexpr bool coolingFanFault = false; |
| 1221 | // chassisIdentifySupport set because this command is implemented |
| 1222 | constexpr bool chassisIdentifySupport = true; |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 1223 | uint2_t chassisIdentifyState = types::enum_cast<uint2_t>(chassisIDState); |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1224 | constexpr bool diagButtonDisabled = false; |
| 1225 | constexpr bool sleepButtonDisabled = false; |
| 1226 | constexpr bool diagButtonDisableAllow = false; |
| 1227 | constexpr bool sleepButtonDisableAllow = false; |
| 1228 | |
| 1229 | return ipmi::responseSuccess( |
| 1230 | *powerGood, powerOverload, chassisInterlock, powerFault, |
| 1231 | powerControlFault, *restorePolicy, |
| 1232 | false, // reserved |
| 1233 | |
| 1234 | powerDownAcFailed, powerDownOverload, powerDownInterlock, |
| 1235 | powerDownPowerFault, powerStatusIPMI, |
| 1236 | uint3_t(0), // reserved |
| 1237 | |
| 1238 | chassisIntrusionActive, frontPanelLockoutActive, driveFault, |
| 1239 | coolingFanFault, chassisIdentifyState, chassisIdentifySupport, |
| 1240 | false, // reserved |
| 1241 | |
Vernon Mauery | 6d5b2f7 | 2019-05-16 14:48:47 -0700 | [diff] [blame] | 1242 | powerButtonDisabled, resetButtonDisabled, diagButtonDisabled, |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 1243 | sleepButtonDisabled, powerButtonDisableAllow, resetButtonDisableAllow, |
| 1244 | diagButtonDisableAllow, sleepButtonDisableAllow); |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 1245 | } |
Chris Austen | 7888c4d | 2015-12-03 15:26:20 -0600 | [diff] [blame] | 1246 | |
Vijay Khemka | 074f64d | 2020-03-03 15:08:43 -0800 | [diff] [blame] | 1247 | enum class IpmiRestartCause |
| 1248 | { |
| 1249 | Unknown = 0x0, |
| 1250 | RemoteCommand = 0x1, |
| 1251 | ResetButton = 0x2, |
| 1252 | PowerButton = 0x3, |
| 1253 | WatchdogTimer = 0x4, |
| 1254 | PowerPolicyAlwaysOn = 0x6, |
| 1255 | PowerPolicyPreviousState = 0x7, |
| 1256 | SoftReset = 0xa, |
| 1257 | }; |
| 1258 | |
| 1259 | static IpmiRestartCause |
| 1260 | restartCauseToIpmiRestartCause(State::Host::RestartCause cause) |
| 1261 | { |
| 1262 | switch (cause) |
| 1263 | { |
| 1264 | case State::Host::RestartCause::Unknown: |
| 1265 | { |
| 1266 | return IpmiRestartCause::Unknown; |
| 1267 | } |
| 1268 | case State::Host::RestartCause::RemoteCommand: |
| 1269 | { |
| 1270 | return IpmiRestartCause::RemoteCommand; |
| 1271 | } |
| 1272 | case State::Host::RestartCause::ResetButton: |
| 1273 | { |
| 1274 | return IpmiRestartCause::ResetButton; |
| 1275 | } |
| 1276 | case State::Host::RestartCause::PowerButton: |
| 1277 | { |
| 1278 | return IpmiRestartCause::PowerButton; |
| 1279 | } |
| 1280 | case State::Host::RestartCause::WatchdogTimer: |
| 1281 | { |
| 1282 | return IpmiRestartCause::WatchdogTimer; |
| 1283 | } |
| 1284 | case State::Host::RestartCause::PowerPolicyAlwaysOn: |
| 1285 | { |
| 1286 | return IpmiRestartCause::PowerPolicyAlwaysOn; |
| 1287 | } |
| 1288 | case State::Host::RestartCause::PowerPolicyPreviousState: |
| 1289 | { |
| 1290 | return IpmiRestartCause::PowerPolicyPreviousState; |
| 1291 | } |
| 1292 | case State::Host::RestartCause::SoftReset: |
| 1293 | { |
| 1294 | return IpmiRestartCause::SoftReset; |
| 1295 | } |
| 1296 | default: |
| 1297 | { |
| 1298 | return IpmiRestartCause::Unknown; |
| 1299 | } |
| 1300 | } |
| 1301 | } |
| 1302 | |
| 1303 | /* |
| 1304 | * getRestartCause |
| 1305 | * helper function for Get Host restart cause Command |
| 1306 | * return - optional value for RestartCause (no value on error) |
| 1307 | */ |
| 1308 | static std::optional<uint4_t> getRestartCause(ipmi::Context::ptr ctx) |
| 1309 | { |
| 1310 | constexpr const char* restartCausePath = |
| 1311 | "/xyz/openbmc_project/control/host0/restart_cause"; |
| 1312 | constexpr const char* restartCauseIntf = |
| 1313 | "xyz.openbmc_project.Control.Host.RestartCause"; |
| 1314 | |
| 1315 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1316 | boost::system::error_code ec = ipmi::getService(ctx, restartCauseIntf, |
| 1317 | restartCausePath, service); |
Vijay Khemka | 074f64d | 2020-03-03 15:08:43 -0800 | [diff] [blame] | 1318 | if (!ec) |
| 1319 | { |
| 1320 | std::string restartCauseStr; |
| 1321 | ec = ipmi::getDbusProperty<std::string>( |
| 1322 | ctx, service, restartCausePath, restartCauseIntf, "RestartCause", |
| 1323 | restartCauseStr); |
| 1324 | if (!ec) |
| 1325 | { |
| 1326 | auto cause = |
| 1327 | State::Host::convertRestartCauseFromString(restartCauseStr); |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 1328 | return types::enum_cast<uint4_t>( |
| 1329 | restartCauseToIpmiRestartCause(cause)); |
Vijay Khemka | 074f64d | 2020-03-03 15:08:43 -0800 | [diff] [blame] | 1330 | } |
| 1331 | } |
| 1332 | |
| 1333 | log<level::ERR>("Failed to fetch RestartCause property", |
| 1334 | entry("ERROR=%s", ec.message().c_str()), |
| 1335 | entry("PATH=%s", restartCausePath), |
| 1336 | entry("INTERFACE=%s", restartCauseIntf)); |
| 1337 | return std::nullopt; |
| 1338 | } |
| 1339 | |
| 1340 | ipmi::RspType<uint4_t, // Restart Cause |
| 1341 | uint4_t, // reserved |
| 1342 | uint8_t // channel number (not supported) |
| 1343 | > |
| 1344 | ipmiGetSystemRestartCause(ipmi::Context::ptr ctx) |
| 1345 | { |
| 1346 | std::optional<uint4_t> cause = getRestartCause(ctx); |
| 1347 | if (!cause) |
| 1348 | { |
| 1349 | return ipmi::responseUnspecifiedError(); |
| 1350 | } |
| 1351 | |
Vernon Mauery | 916d423 | 2021-03-29 13:42:16 -0700 | [diff] [blame] | 1352 | constexpr uint4_t reserved = 0; |
| 1353 | auto channel = static_cast<uint8_t>(ctx->channel); |
| 1354 | return ipmi::responseSuccess(cause.value(), reserved, channel); |
Vijay Khemka | 074f64d | 2020-03-03 15:08:43 -0800 | [diff] [blame] | 1355 | } |
anil kumar appana | dafff5f | 2019-04-27 18:06:00 +0000 | [diff] [blame] | 1356 | /** @brief Implementation of chassis control command |
| 1357 | * |
| 1358 | * @param - chassisControl command byte |
| 1359 | * |
| 1360 | * @return Success or InvalidFieldRequest. |
| 1361 | */ |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 1362 | ipmi::RspType<> ipmiChassisControl(ipmi::Context::ptr& ctx, |
| 1363 | uint8_t chassisControl) |
vishwa | 3699327 | 2015-11-20 12:43:49 -0600 | [diff] [blame] | 1364 | { |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 1365 | int rc = 0; |
anil kumar appana | dafff5f | 2019-04-27 18:06:00 +0000 | [diff] [blame] | 1366 | switch (chassisControl) |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 1367 | { |
| 1368 | case CMD_POWER_ON: |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 1369 | rc = initiateHostStateTransition(ctx, State::Host::Transition::On); |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 1370 | break; |
| 1371 | case CMD_POWER_OFF: |
Jason M. Bills | c2c3a40 | 2020-01-30 16:22:24 -0800 | [diff] [blame] | 1372 | rc = initiateChassisStateTransition( |
| 1373 | ctx, State::Chassis::Transition::Off); |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 1374 | break; |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 1375 | case CMD_HARD_RESET: |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 1376 | rc = initiateHostStateTransition( |
| 1377 | ctx, State::Host::Transition::ForceWarmReboot); |
Chanh Nguyen | d0a7fcd | 2021-07-16 22:59:28 +0700 | [diff] [blame] | 1378 | break; |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 1379 | case CMD_POWER_CYCLE: |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 1380 | rc = initiateHostStateTransition(ctx, |
| 1381 | State::Host::Transition::Reboot); |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 1382 | break; |
Vishwanatha Subbanna | 8b26d35 | 2017-08-04 18:35:18 +0530 | [diff] [blame] | 1383 | case CMD_SOFT_OFF_VIA_OVER_TEMP: |
Jason M. Bills | 664e1c3 | 2020-01-30 16:02:39 -0800 | [diff] [blame] | 1384 | rc = initiateHostStateTransition(ctx, State::Host::Transition::Off); |
Vishwanatha Subbanna | 8b26d35 | 2017-08-04 18:35:18 +0530 | [diff] [blame] | 1385 | break; |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 1386 | case CMD_PULSE_DIAGNOSTIC_INTR: |
Vernon Mauery | 9bb4a38 | 2021-11-05 12:46:19 -0700 | [diff] [blame] | 1387 | rc = setNmiProperty(ctx, true); |
Kuiying Wang | 6b0ceaa | 2019-11-05 15:13:40 +0800 | [diff] [blame] | 1388 | break; |
| 1389 | |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 1390 | default: |
| 1391 | { |
Aditya Saripalli | 5fb1460 | 2017-11-09 14:46:27 +0530 | [diff] [blame] | 1392 | log<level::ERR>("Invalid Chassis Control command", |
anil kumar appana | dafff5f | 2019-04-27 18:06:00 +0000 | [diff] [blame] | 1393 | entry("CMD=0x%X", chassisControl)); |
| 1394 | return ipmi::responseInvalidFieldRequest(); |
Andrew Geissler | fca6a4f | 2017-05-30 10:55:39 -0500 | [diff] [blame] | 1395 | } |
| 1396 | } |
vishwa | 3699327 | 2015-11-20 12:43:49 -0600 | [diff] [blame] | 1397 | |
anil kumar appana | dafff5f | 2019-04-27 18:06:00 +0000 | [diff] [blame] | 1398 | return ((rc < 0) ? ipmi::responseUnspecifiedError() |
| 1399 | : ipmi::responseSuccess()); |
vishwa | 3699327 | 2015-11-20 12:43:49 -0600 | [diff] [blame] | 1400 | } |
| 1401 | |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1402 | /** @brief Return D-Bus connection string to enclosure identify LED object |
| 1403 | * |
| 1404 | * @param[in, out] connection - connection to D-Bus object |
| 1405 | * @return a IPMI return code |
| 1406 | */ |
| 1407 | std::string getEnclosureIdentifyConnection() |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1408 | { |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1409 | // lookup enclosure_identify group owner(s) in mapper |
George Liu | 3e3cc35 | 2023-07-26 15:59:31 +0800 | [diff] [blame^] | 1410 | try |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1411 | { |
George Liu | 3e3cc35 | 2023-07-26 15:59:31 +0800 | [diff] [blame^] | 1412 | return ipmi::getService(*getSdBus(), "xyz.openbmc_project.Led.Group", |
| 1413 | identify_led_object_name); |
| 1414 | } |
| 1415 | catch (const std::exception& e) |
| 1416 | { |
| 1417 | log<level::ERR>("Chassis Identify: Error communicating to mapper.", |
| 1418 | entry("ERROR=%s", e.what())); |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1419 | elog<InternalFailure>(); |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1420 | } |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1421 | } |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1422 | |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1423 | /** @brief Turn On/Off enclosure identify LED |
| 1424 | * |
| 1425 | * @param[in] flag - true to turn on LED, false to turn off |
| 1426 | * @return a IPMI return code |
| 1427 | */ |
| 1428 | void enclosureIdentifyLed(bool flag) |
| 1429 | { |
| 1430 | using namespace chassis::internal; |
George Liu | 3e3cc35 | 2023-07-26 15:59:31 +0800 | [diff] [blame^] | 1431 | try |
| 1432 | { |
| 1433 | std::string connection = getEnclosureIdentifyConnection(); |
| 1434 | |
| 1435 | auto msg = std::string("enclosureIdentifyLed(") + |
| 1436 | boost::lexical_cast<std::string>(flag) + ")"; |
| 1437 | log<level::DEBUG>(msg.c_str()); |
| 1438 | |
| 1439 | ipmi::setDbusProperty(*getSdBus(), connection, identify_led_object_name, |
| 1440 | "xyz.openbmc_project.Led.Group", "Asserted", |
| 1441 | flag); |
| 1442 | } |
| 1443 | catch (const std::exception& e) |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1444 | { |
| 1445 | log<level::ERR>("Chassis Identify: Error Setting State On/Off\n", |
George Liu | 3e3cc35 | 2023-07-26 15:59:31 +0800 | [diff] [blame^] | 1446 | entry("LED_STATE=%d", flag), |
| 1447 | entry("ERROR=%s", e.what())); |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1448 | elog<InternalFailure>(); |
| 1449 | } |
| 1450 | } |
| 1451 | |
| 1452 | /** @brief Callback method to turn off LED |
| 1453 | */ |
| 1454 | void enclosureIdentifyLedOff() |
| 1455 | { |
| 1456 | try |
| 1457 | { |
Yong Li | f4e3851 | 2019-05-21 14:46:55 +0800 | [diff] [blame] | 1458 | chassisIDState = ChassisIDState::off; |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1459 | enclosureIdentifyLed(false); |
| 1460 | } |
| 1461 | catch (const InternalFailure& e) |
| 1462 | { |
| 1463 | report<InternalFailure>(); |
| 1464 | } |
| 1465 | } |
| 1466 | |
| 1467 | /** @brief Create timer to turn on and off the enclosure LED |
| 1468 | */ |
| 1469 | void createIdentifyTimer() |
| 1470 | { |
| 1471 | if (!identifyTimer) |
| 1472 | { |
Vernon Mauery | 1181af7 | 2018-10-08 12:05:00 -0700 | [diff] [blame] | 1473 | identifyTimer = |
| 1474 | std::make_unique<phosphor::Timer>(enclosureIdentifyLedOff); |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1475 | } |
| 1476 | } |
| 1477 | |
Vernon Mauery | 400cc78 | 2018-10-09 13:49:53 -0700 | [diff] [blame] | 1478 | ipmi::RspType<> ipmiChassisIdentify(std::optional<uint8_t> interval, |
| 1479 | std::optional<uint8_t> force) |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1480 | { |
Vernon Mauery | 400cc78 | 2018-10-09 13:49:53 -0700 | [diff] [blame] | 1481 | uint8_t identifyInterval = interval.value_or(DEFAULT_IDENTIFY_TIME_OUT); |
| 1482 | bool forceIdentify = force.value_or(0) & 0x01; |
Tom Joseph | bed2699 | 2018-07-31 23:00:24 +0530 | [diff] [blame] | 1483 | |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1484 | if (identifyInterval || forceIdentify) |
| 1485 | { |
Vernon Mauery | 400cc78 | 2018-10-09 13:49:53 -0700 | [diff] [blame] | 1486 | // stop the timer if already started; |
| 1487 | // for force identify we should not turn off LED |
Vernon Mauery | 1181af7 | 2018-10-08 12:05:00 -0700 | [diff] [blame] | 1488 | identifyTimer->stop(); |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1489 | try |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1490 | { |
Yong Li | f4e3851 | 2019-05-21 14:46:55 +0800 | [diff] [blame] | 1491 | chassisIDState = ChassisIDState::temporaryOn; |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1492 | enclosureIdentifyLed(true); |
| 1493 | } |
| 1494 | catch (const InternalFailure& e) |
| 1495 | { |
| 1496 | report<InternalFailure>(); |
Vernon Mauery | 400cc78 | 2018-10-09 13:49:53 -0700 | [diff] [blame] | 1497 | return ipmi::responseResponseError(); |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1498 | } |
| 1499 | |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1500 | if (forceIdentify) |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1501 | { |
Yong Li | f4e3851 | 2019-05-21 14:46:55 +0800 | [diff] [blame] | 1502 | chassisIDState = ChassisIDState::indefiniteOn; |
Vernon Mauery | 400cc78 | 2018-10-09 13:49:53 -0700 | [diff] [blame] | 1503 | return ipmi::responseSuccess(); |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 1504 | } |
| 1505 | // start the timer |
| 1506 | auto time = std::chrono::duration_cast<std::chrono::microseconds>( |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1507 | std::chrono::seconds(identifyInterval)); |
Vernon Mauery | 1181af7 | 2018-10-08 12:05:00 -0700 | [diff] [blame] | 1508 | identifyTimer->start(time); |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1509 | } |
Tom Joseph | bed2699 | 2018-07-31 23:00:24 +0530 | [diff] [blame] | 1510 | else if (!identifyInterval) |
| 1511 | { |
Vernon Mauery | 1181af7 | 2018-10-08 12:05:00 -0700 | [diff] [blame] | 1512 | identifyTimer->stop(); |
Tom Joseph | bed2699 | 2018-07-31 23:00:24 +0530 | [diff] [blame] | 1513 | enclosureIdentifyLedOff(); |
| 1514 | } |
Vernon Mauery | 400cc78 | 2018-10-09 13:49:53 -0700 | [diff] [blame] | 1515 | return ipmi::responseSuccess(); |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 1516 | } |
| 1517 | |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1518 | namespace boot_options |
| 1519 | { |
| 1520 | |
| 1521 | using namespace sdbusplus::xyz::openbmc_project::Control::Boot::server; |
| 1522 | using IpmiValue = uint8_t; |
| 1523 | constexpr auto ipmiDefault = 0; |
| 1524 | |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1525 | std::map<IpmiValue, Type::Types> typeIpmiToDbus = {{0x00, Type::Types::Legacy}, |
| 1526 | {0x01, Type::Types::EFI}}; |
| 1527 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1528 | std::map<IpmiValue, Source::Sources> sourceIpmiToDbus = { |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1529 | {0x01, Source::Sources::Network}, |
| 1530 | {0x02, Source::Sources::Disk}, |
| 1531 | {0x05, Source::Sources::ExternalMedia}, |
Jia, chunhui | 67c5e5d | 2019-05-06 11:29:54 +0800 | [diff] [blame] | 1532 | {0x0f, Source::Sources::RemovableMedia}, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1533 | {ipmiDefault, Source::Sources::Default}}; |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 1534 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1535 | std::map<IpmiValue, Mode::Modes> modeIpmiToDbus = { |
Yong Li | 5833cb6 | 2019-10-30 13:27:12 +0800 | [diff] [blame] | 1536 | #ifdef ENABLE_BOOT_FLAG_SAFE_MODE_SUPPORT |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1537 | {0x03, Mode::Modes::Safe}, |
Yong Li | 5833cb6 | 2019-10-30 13:27:12 +0800 | [diff] [blame] | 1538 | #endif // ENABLE_BOOT_SAFE_MODE_SUPPORT |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1539 | {0x06, Mode::Modes::Setup}, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1540 | {ipmiDefault, Mode::Modes::Regular}}; |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 1541 | |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1542 | std::map<Type::Types, IpmiValue> typeDbusToIpmi = {{Type::Types::Legacy, 0x00}, |
| 1543 | {Type::Types::EFI, 0x01}}; |
| 1544 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1545 | std::map<Source::Sources, IpmiValue> sourceDbusToIpmi = { |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1546 | {Source::Sources::Network, 0x01}, |
| 1547 | {Source::Sources::Disk, 0x02}, |
| 1548 | {Source::Sources::ExternalMedia, 0x05}, |
Jia, chunhui | 67c5e5d | 2019-05-06 11:29:54 +0800 | [diff] [blame] | 1549 | {Source::Sources::RemovableMedia, 0x0f}, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1550 | {Source::Sources::Default, ipmiDefault}}; |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 1551 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1552 | std::map<Mode::Modes, IpmiValue> modeDbusToIpmi = { |
Yong Li | 5833cb6 | 2019-10-30 13:27:12 +0800 | [diff] [blame] | 1553 | #ifdef ENABLE_BOOT_FLAG_SAFE_MODE_SUPPORT |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1554 | {Mode::Modes::Safe, 0x03}, |
Yong Li | 5833cb6 | 2019-10-30 13:27:12 +0800 | [diff] [blame] | 1555 | #endif // ENABLE_BOOT_SAFE_MODE_SUPPORT |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1556 | {Mode::Modes::Setup, 0x06}, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1557 | {Mode::Modes::Regular, ipmiDefault}}; |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 1558 | |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1559 | } // namespace boot_options |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 1560 | |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1561 | /** @brief Get the property value for boot source |
| 1562 | * @param[in] ctx - context pointer |
| 1563 | * @param[out] source - boot source value |
| 1564 | * @return On failure return IPMI error. |
| 1565 | */ |
| 1566 | static ipmi::Cc getBootSource(ipmi::Context::ptr& ctx, Source::Sources& source) |
| 1567 | { |
| 1568 | using namespace chassis::internal; |
| 1569 | std::string result; |
| 1570 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1571 | boost::system::error_code ec = getService(ctx, bootSourceIntf, |
| 1572 | bootSettingsPath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1573 | if (!ec) |
| 1574 | { |
| 1575 | ec = ipmi::getDbusProperty(ctx, service, bootSettingsPath, |
| 1576 | bootSourceIntf, "BootSource", result); |
| 1577 | if (!ec) |
| 1578 | { |
| 1579 | source = Source::convertSourcesFromString(result); |
| 1580 | return ipmi::ccSuccess; |
| 1581 | } |
| 1582 | } |
| 1583 | log<level::ERR>("Error in BootSource Get", |
| 1584 | entry("ERROR=%s", ec.message().c_str())); |
| 1585 | return ipmi::ccUnspecifiedError; |
| 1586 | } |
| 1587 | |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1588 | /** @brief Set the property value for boot source |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 1589 | * @param[in] ctx - context pointer |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1590 | * @param[in] source - boot source value |
| 1591 | * @return On failure return IPMI error. |
| 1592 | */ |
Jayaprakash Mutyala | 6088e9f | 2021-07-14 07:40:29 +0000 | [diff] [blame] | 1593 | static ipmi::Cc setBootSource(ipmi::Context::ptr& ctx, |
| 1594 | const Source::Sources& source) |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1595 | { |
| 1596 | using namespace chassis::internal; |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1597 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1598 | boost::system::error_code ec = getService(ctx, bootSourceIntf, |
| 1599 | bootSettingsPath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1600 | if (!ec) |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1601 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1602 | ec = ipmi::setDbusProperty(ctx, service, bootSettingsPath, |
| 1603 | bootSourceIntf, "BootSource", |
| 1604 | convertForMessage(source)); |
| 1605 | if (!ec) |
| 1606 | { |
| 1607 | return ipmi::ccSuccess; |
| 1608 | } |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1609 | } |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1610 | log<level::ERR>("Error in BootSource Set", |
| 1611 | entry("ERROR=%s", ec.message().c_str())); |
| 1612 | return ipmi::ccUnspecifiedError; |
| 1613 | } |
| 1614 | |
| 1615 | /** @brief Get the property value for boot mode |
| 1616 | * @param[in] ctx - context pointer |
| 1617 | * @param[out] mode - boot mode value |
| 1618 | * @return On failure return IPMI error. |
| 1619 | */ |
| 1620 | static ipmi::Cc getBootMode(ipmi::Context::ptr& ctx, Mode::Modes& mode) |
| 1621 | { |
| 1622 | using namespace chassis::internal; |
| 1623 | std::string result; |
| 1624 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1625 | boost::system::error_code ec = getService(ctx, bootModeIntf, |
| 1626 | bootSettingsPath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1627 | if (!ec) |
| 1628 | { |
| 1629 | ec = ipmi::getDbusProperty(ctx, service, bootSettingsPath, bootModeIntf, |
| 1630 | "BootMode", result); |
| 1631 | if (!ec) |
| 1632 | { |
| 1633 | mode = Mode::convertModesFromString(result); |
| 1634 | return ipmi::ccSuccess; |
| 1635 | } |
| 1636 | } |
| 1637 | log<level::ERR>("Error in BootMode Get", |
| 1638 | entry("ERROR=%s", ec.message().c_str())); |
| 1639 | return ipmi::ccUnspecifiedError; |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1640 | } |
| 1641 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1642 | /** @brief Set the property value for boot mode |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 1643 | * @param[in] ctx - context pointer |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1644 | * @param[in] mode - boot mode value |
| 1645 | * @return On failure return IPMI error. |
| 1646 | */ |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 1647 | static ipmi::Cc setBootMode(ipmi::Context::ptr& ctx, const Mode::Modes& mode) |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1648 | { |
| 1649 | using namespace chassis::internal; |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1650 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1651 | boost::system::error_code ec = getService(ctx, bootModeIntf, |
| 1652 | bootSettingsPath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1653 | if (!ec) |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1654 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1655 | ec = ipmi::setDbusProperty(ctx, service, bootSettingsPath, bootModeIntf, |
| 1656 | "BootMode", convertForMessage(mode)); |
| 1657 | if (!ec) |
| 1658 | { |
| 1659 | return ipmi::ccSuccess; |
| 1660 | } |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1661 | } |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1662 | log<level::ERR>("Error in BootMode Set", |
| 1663 | entry("ERROR=%s", ec.message().c_str())); |
| 1664 | return ipmi::ccUnspecifiedError; |
| 1665 | } |
| 1666 | |
| 1667 | /** @brief Get the property value for boot type |
| 1668 | * @param[in] ctx - context pointer |
| 1669 | * @param[out] type - boot type value |
| 1670 | * @return On failure return IPMI error. |
| 1671 | */ |
| 1672 | static ipmi::Cc getBootType(ipmi::Context::ptr& ctx, Type::Types& type) |
| 1673 | { |
| 1674 | using namespace chassis::internal; |
| 1675 | std::string result; |
| 1676 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1677 | boost::system::error_code ec = getService(ctx, bootTypeIntf, |
| 1678 | bootSettingsPath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1679 | |
| 1680 | // Don't throw error if BootType interface is not present. |
| 1681 | // This interface is not relevant for some Host architectures |
| 1682 | // (for example POWER). In this case we don't won't IPMI to |
| 1683 | // return an error, but simply return bootType as EFI. |
| 1684 | type = Type::Types::EFI; |
| 1685 | if (!ec) |
| 1686 | { |
| 1687 | ec = ipmi::getDbusProperty(ctx, service, bootSettingsPath, bootTypeIntf, |
| 1688 | "BootType", result); |
| 1689 | if (ec) |
| 1690 | { |
| 1691 | log<level::ERR>("Error in BootType Get", |
| 1692 | entry("ERROR=%s", ec.message().c_str())); |
| 1693 | return ipmi::ccUnspecifiedError; |
| 1694 | } |
| 1695 | type = Type::convertTypesFromString(result); |
| 1696 | } |
| 1697 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 1698 | return ipmi::ccSuccess; |
Marri Devender Rao | 8171970 | 2018-05-07 00:53:48 -0500 | [diff] [blame] | 1699 | } |
| 1700 | |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1701 | /** @brief Set the property value for boot type |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 1702 | * @param[in] ctx - context pointer |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1703 | * @param[in] type - boot type value |
| 1704 | * @return On failure return IPMI error. |
| 1705 | */ |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 1706 | static ipmi::Cc setBootType(ipmi::Context::ptr& ctx, const Type::Types& type) |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1707 | { |
| 1708 | using namespace chassis::internal; |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1709 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1710 | boost::system::error_code ec = getService(ctx, bootTypeIntf, |
| 1711 | bootSettingsPath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1712 | if (!ec) |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1713 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1714 | ec = ipmi::setDbusProperty(ctx, service, bootSettingsPath, bootTypeIntf, |
| 1715 | "BootType", convertForMessage(type)); |
| 1716 | if (ec) |
| 1717 | { |
| 1718 | log<level::ERR>("Error in BootType Set", |
| 1719 | entry("ERROR=%s", ec.message().c_str())); |
| 1720 | return ipmi::ccUnspecifiedError; |
| 1721 | } |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1722 | } |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1723 | // Don't throw error if BootType interface is not present. |
| 1724 | // This interface is not relevant for some Host architectures |
| 1725 | // (for example POWER). In this case we don't won't IPMI to |
| 1726 | // return an error, but want to just skip this function. |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1727 | return ipmi::ccSuccess; |
| 1728 | } |
| 1729 | |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1730 | /** @brief Get the property value for boot override enable |
| 1731 | * @param[in] ctx - context pointer |
| 1732 | * @param[out] enable - boot override enable |
| 1733 | * @return On failure return IPMI error. |
| 1734 | */ |
| 1735 | static ipmi::Cc getBootEnable(ipmi::Context::ptr& ctx, bool& enable) |
| 1736 | { |
| 1737 | using namespace chassis::internal; |
| 1738 | std::string result; |
| 1739 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1740 | boost::system::error_code ec = getService(ctx, bootEnableIntf, |
| 1741 | bootSettingsPath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1742 | if (!ec) |
| 1743 | { |
| 1744 | ec = ipmi::getDbusProperty(ctx, service, bootSettingsPath, |
| 1745 | bootEnableIntf, "Enabled", enable); |
| 1746 | if (!ec) |
| 1747 | { |
| 1748 | return ipmi::ccSuccess; |
| 1749 | } |
| 1750 | } |
| 1751 | log<level::ERR>("Error in Boot Override Enable Get", |
| 1752 | entry("ERROR=%s", ec.message().c_str())); |
| 1753 | return ipmi::ccUnspecifiedError; |
| 1754 | } |
| 1755 | |
| 1756 | /** @brief Set the property value for boot override enable |
| 1757 | * @param[in] ctx - context pointer |
| 1758 | * @param[in] enable - boot override enable |
| 1759 | * @return On failure return IPMI error. |
| 1760 | */ |
| 1761 | static ipmi::Cc setBootEnable(ipmi::Context::ptr& ctx, const bool& enable) |
| 1762 | { |
| 1763 | using namespace chassis::internal; |
| 1764 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1765 | boost::system::error_code ec = getService(ctx, bootEnableIntf, |
| 1766 | bootSettingsPath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1767 | if (!ec) |
| 1768 | { |
| 1769 | ec = ipmi::setDbusProperty(ctx, service, bootSettingsPath, |
| 1770 | bootEnableIntf, "Enabled", enable); |
| 1771 | if (!ec) |
| 1772 | { |
| 1773 | return ipmi::ccSuccess; |
| 1774 | } |
| 1775 | } |
| 1776 | log<level::ERR>("Error in Boot Source Override Enable Set", |
| 1777 | entry("ERROR=%s", ec.message().c_str())); |
| 1778 | return ipmi::ccUnspecifiedError; |
| 1779 | } |
| 1780 | |
| 1781 | /** @brief Get the property value for boot override one-time |
| 1782 | * @param[in] ctx - context pointer |
| 1783 | * @param[out] onetime - boot override one-time |
| 1784 | * @return On failure return IPMI error. |
| 1785 | */ |
| 1786 | static ipmi::Cc getBootOneTime(ipmi::Context::ptr& ctx, bool& onetime) |
| 1787 | { |
| 1788 | using namespace chassis::internal; |
| 1789 | std::string result; |
| 1790 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1791 | boost::system::error_code ec = getService(ctx, bootOneTimeIntf, |
| 1792 | bootSettingsOneTimePath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1793 | if (!ec) |
| 1794 | { |
| 1795 | ec = ipmi::getDbusProperty(ctx, service, bootSettingsOneTimePath, |
| 1796 | bootOneTimeIntf, "Enabled", onetime); |
| 1797 | if (!ec) |
| 1798 | { |
| 1799 | return ipmi::ccSuccess; |
| 1800 | } |
| 1801 | } |
| 1802 | log<level::ERR>("Error in Boot Override OneTime Get", |
| 1803 | entry("ERROR=%s", ec.message().c_str())); |
| 1804 | return ipmi::ccUnspecifiedError; |
| 1805 | } |
| 1806 | |
| 1807 | /** @brief Set the property value for boot override one-time |
| 1808 | * @param[in] ctx - context pointer |
| 1809 | * @param[in] onetime - boot override one-time |
| 1810 | * @return On failure return IPMI error. |
| 1811 | */ |
| 1812 | static ipmi::Cc setBootOneTime(ipmi::Context::ptr& ctx, const bool& onetime) |
| 1813 | { |
| 1814 | using namespace chassis::internal; |
| 1815 | std::string service; |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 1816 | boost::system::error_code ec = getService(ctx, bootOneTimeIntf, |
| 1817 | bootSettingsOneTimePath, service); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1818 | if (!ec) |
| 1819 | { |
| 1820 | ec = ipmi::setDbusProperty(ctx, service, bootSettingsOneTimePath, |
| 1821 | bootOneTimeIntf, "Enabled", onetime); |
| 1822 | if (!ec) |
| 1823 | { |
| 1824 | return ipmi::ccSuccess; |
| 1825 | } |
| 1826 | } |
| 1827 | log<level::ERR>("Error in Boot Source Override OneTime Set", |
| 1828 | entry("ERROR=%s", ec.message().c_str())); |
| 1829 | return ipmi::ccUnspecifiedError; |
| 1830 | } |
| 1831 | |
huanghe | ab36928 | 2020-10-10 14:40:00 +0800 | [diff] [blame] | 1832 | static constexpr uint8_t setComplete = 0x0; |
| 1833 | static constexpr uint8_t setInProgress = 0x1; |
| 1834 | static uint8_t transferStatus = setComplete; |
Chen Yugang | 86ac499 | 2021-06-25 08:14:52 +0800 | [diff] [blame] | 1835 | static uint8_t bootFlagValidBitClr = 0; |
Hieu Huynh | 38ffafc | 2021-05-14 08:40:14 +0000 | [diff] [blame] | 1836 | static uint5_t bootInitiatorAckData = 0x0; |
Hieu Huynh | 1982a3f | 2021-09-21 03:06:45 +0000 | [diff] [blame] | 1837 | static bool cmosClear = false; |
huanghe | ab36928 | 2020-10-10 14:40:00 +0800 | [diff] [blame] | 1838 | |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 1839 | /** @brief implements the Get Chassis system boot option |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 1840 | * @param ctx - context pointer |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 1841 | * @param bootOptionParameter - boot option parameter selector |
| 1842 | * @param reserved1 - reserved bit |
| 1843 | * @param setSelector - selects a particular block or set of parameters |
| 1844 | * under the given parameter selector |
| 1845 | * write as 00h if parameter doesn't use a setSelector |
| 1846 | * @param blockSelector- selects a particular block within a set of |
| 1847 | * parameters write as 00h if parameter doesn't use a |
| 1848 | * blockSelector |
| 1849 | * |
| 1850 | * @return IPMI completion code plus response data |
| 1851 | * @return Payload contains below parameters: |
| 1852 | * version - parameter version |
| 1853 | * bootOptionParameter - boot option parameter selector |
Patrick Venture | 8b1c303 | 2020-09-15 09:43:03 -0700 | [diff] [blame] | 1854 | * parmIndicator - parameter valid/invalid indicator |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 1855 | * data - configuration parameter data |
| 1856 | */ |
| 1857 | ipmi::RspType<ipmi::message::Payload> |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 1858 | ipmiChassisGetSysBootOptions(ipmi::Context::ptr ctx, |
| 1859 | uint7_t bootOptionParameter, bool reserved1, |
Willy Tu | 11d6889 | 2022-01-20 10:37:34 -0800 | [diff] [blame] | 1860 | [[maybe_unused]] uint8_t setSelector, |
| 1861 | [[maybe_unused]] uint8_t blockSelector) |
Adriana Kobylak | 40814c6 | 2015-10-27 15:58:44 -0500 | [diff] [blame] | 1862 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1863 | ipmi::Cc rc; |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 1864 | if (reserved1) |
| 1865 | { |
| 1866 | return ipmi::responseInvalidFieldRequest(); |
| 1867 | } |
| 1868 | |
| 1869 | constexpr uint4_t version = 0x01; |
| 1870 | ipmi::message::Payload response; |
| 1871 | response.pack(version, uint4_t{}); |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1872 | using namespace boot_options; |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 1873 | |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1874 | IpmiValue bootOption = ipmiDefault; |
Adriana Kobylak | 40814c6 | 2015-10-27 15:58:44 -0500 | [diff] [blame] | 1875 | |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 1876 | if (types::enum_cast<BootOptionParameter>(bootOptionParameter) == |
| 1877 | BootOptionParameter::setInProgress) |
huanghe | ab36928 | 2020-10-10 14:40:00 +0800 | [diff] [blame] | 1878 | { |
| 1879 | response.pack(bootOptionParameter, reserved1, transferStatus); |
| 1880 | return ipmi::responseSuccess(std::move(response)); |
| 1881 | } |
| 1882 | |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 1883 | if (types::enum_cast<BootOptionParameter>(bootOptionParameter) == |
| 1884 | BootOptionParameter::bootInfo) |
John Wang | 0213f90 | 2020-12-28 14:49:57 +0800 | [diff] [blame] | 1885 | { |
| 1886 | constexpr uint8_t writeMask = 0; |
Hieu Huynh | 38ffafc | 2021-05-14 08:40:14 +0000 | [diff] [blame] | 1887 | response.pack(bootOptionParameter, reserved1, writeMask, |
| 1888 | bootInitiatorAckData); |
John Wang | 0213f90 | 2020-12-28 14:49:57 +0800 | [diff] [blame] | 1889 | return ipmi::responseSuccess(std::move(response)); |
| 1890 | } |
| 1891 | |
Chen Yugang | 86ac499 | 2021-06-25 08:14:52 +0800 | [diff] [blame] | 1892 | if (types::enum_cast<BootOptionParameter>(bootOptionParameter) == |
| 1893 | BootOptionParameter::bootFlagValidClr) |
| 1894 | { |
| 1895 | response.pack(bootOptionParameter, reserved1, |
| 1896 | uint5_t{bootFlagValidBitClr}, uint3_t{}); |
| 1897 | return ipmi::responseSuccess(std::move(response)); |
| 1898 | } |
| 1899 | |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 1900 | /* |
| 1901 | * Parameter #5 means boot flags. Please refer to 28.13 of ipmi doc. |
| 1902 | * This is the only parameter used by petitboot. |
| 1903 | */ |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 1904 | if (types::enum_cast<BootOptionParameter>(bootOptionParameter) == |
| 1905 | BootOptionParameter::bootFlags) |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1906 | { |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1907 | using namespace chassis::internal; |
| 1908 | using namespace chassis::internal::cache; |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 1909 | |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 1910 | try |
ratagupt | a6f6bff | 2016-04-04 06:20:11 -0500 | [diff] [blame] | 1911 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1912 | Source::Sources bootSource; |
| 1913 | rc = getBootSource(ctx, bootSource); |
| 1914 | if (rc != ipmi::ccSuccess) |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 1915 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1916 | return ipmi::response(rc); |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 1917 | } |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1918 | |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1919 | Type::Types bootType; |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1920 | rc = getBootType(ctx, bootType); |
| 1921 | if (rc != ipmi::ccSuccess) |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1922 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1923 | return ipmi::response(rc); |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1924 | } |
| 1925 | |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1926 | Mode::Modes bootMode; |
| 1927 | rc = getBootMode(ctx, bootMode); |
| 1928 | if (rc != ipmi::ccSuccess) |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 1929 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1930 | return ipmi::response(rc); |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 1931 | } |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 1932 | |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 1933 | bootOption = sourceDbusToIpmi.at(bootSource); |
| 1934 | if ((Mode::Modes::Regular == bootMode) && |
| 1935 | (Source::Sources::Default == bootSource)) |
| 1936 | { |
| 1937 | bootOption = ipmiDefault; |
| 1938 | } |
| 1939 | else if (Source::Sources::Default == bootSource) |
| 1940 | { |
| 1941 | bootOption = modeDbusToIpmi.at(bootMode); |
| 1942 | } |
ratagupt | a6f6bff | 2016-04-04 06:20:11 -0500 | [diff] [blame] | 1943 | |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1944 | IpmiValue biosBootType = typeDbusToIpmi.at(bootType); |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1945 | |
| 1946 | bool oneTimeEnabled; |
| 1947 | rc = getBootOneTime(ctx, oneTimeEnabled); |
| 1948 | if (rc != ipmi::ccSuccess) |
| 1949 | { |
| 1950 | return ipmi::response(rc); |
| 1951 | } |
| 1952 | |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1953 | uint1_t permanent = oneTimeEnabled ? 0 : 1; |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 1954 | |
| 1955 | bool valid; |
| 1956 | rc = getBootEnable(ctx, valid); |
| 1957 | if (rc != ipmi::ccSuccess) |
| 1958 | { |
| 1959 | return ipmi::response(rc); |
| 1960 | } |
| 1961 | |
| 1962 | uint1_t validFlag = valid ? 1 : 0; |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 1963 | |
| 1964 | response.pack(bootOptionParameter, reserved1, uint5_t{}, |
| 1965 | uint1_t{biosBootType}, uint1_t{permanent}, |
| 1966 | uint1_t{validFlag}, uint2_t{}, uint4_t{bootOption}, |
Hieu Huynh | 1982a3f | 2021-09-21 03:06:45 +0000 | [diff] [blame] | 1967 | uint1_t{}, cmosClear, uint8_t{}, uint8_t{}, |
| 1968 | uint8_t{}); |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 1969 | return ipmi::responseSuccess(std::move(response)); |
ratagupt | a6f6bff | 2016-04-04 06:20:11 -0500 | [diff] [blame] | 1970 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 1971 | catch (const InternalFailure& e) |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 1972 | { |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 1973 | cache::objectsPtr.reset(); |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 1974 | report<InternalFailure>(); |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 1975 | return ipmi::responseUnspecifiedError(); |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 1976 | } |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1977 | } |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1978 | else |
| 1979 | { |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 1980 | if ((bootOptionParameter >= oemParmStart) && |
| 1981 | (bootOptionParameter <= oemParmEnd)) |
| 1982 | { |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 1983 | if (types::enum_cast<BootOptionParameter>(bootOptionParameter) == |
| 1984 | BootOptionParameter::opalNetworkSettings) |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 1985 | { |
| 1986 | response.pack(bootOptionParameter, reserved1); |
| 1987 | int ret = getHostNetworkData(response); |
| 1988 | if (ret < 0) |
| 1989 | { |
| 1990 | response.trailingOk = true; |
| 1991 | log<level::ERR>( |
| 1992 | "getHostNetworkData failed for GetSysBootOptions."); |
| 1993 | return ipmi::responseUnspecifiedError(); |
| 1994 | } |
| 1995 | else |
| 1996 | { |
| 1997 | return ipmi::responseSuccess(std::move(response)); |
| 1998 | } |
| 1999 | } |
Jayaprakash Mutyala | 43a8810 | 2021-08-04 16:41:58 +0000 | [diff] [blame] | 2000 | else |
| 2001 | { |
| 2002 | log<level::ERR>( |
| 2003 | "ipmiChassisGetSysBootOptions: Unsupported parameter", |
| 2004 | entry("PARAM=0x%x", |
| 2005 | static_cast<uint8_t>(bootOptionParameter))); |
| 2006 | return ipmi::responseParmNotSupported(); |
| 2007 | } |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 2008 | } |
| 2009 | else |
| 2010 | { |
| 2011 | log<level::ERR>( |
| 2012 | "ipmiChassisGetSysBootOptions: Unsupported parameter", |
| 2013 | entry("PARAM=0x%x", static_cast<uint8_t>(bootOptionParameter))); |
Jayaprakash Mutyala | 6088e9f | 2021-07-14 07:40:29 +0000 | [diff] [blame] | 2014 | return ipmi::responseParmNotSupported(); |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 2015 | } |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 2016 | } |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 2017 | return ipmi::responseUnspecifiedError(); |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 2018 | } |
| 2019 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2020 | ipmi::RspType<> ipmiChassisSetSysBootOptions(ipmi::Context::ptr ctx, |
Willy Tu | 11d6889 | 2022-01-20 10:37:34 -0800 | [diff] [blame] | 2021 | uint7_t parameterSelector, bool, |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2022 | ipmi::message::Payload& data) |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 2023 | { |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 2024 | using namespace boot_options; |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2025 | ipmi::Cc rc; |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 2026 | |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 2027 | if (types::enum_cast<BootOptionParameter>(parameterSelector) == |
| 2028 | BootOptionParameter::setInProgress) |
huanghe | ab36928 | 2020-10-10 14:40:00 +0800 | [diff] [blame] | 2029 | { |
| 2030 | uint2_t setInProgressFlag; |
| 2031 | uint6_t rsvd; |
| 2032 | if (data.unpack(setInProgressFlag, rsvd) != 0 || !data.fullyUnpacked()) |
| 2033 | { |
| 2034 | return ipmi::responseReqDataLenInvalid(); |
| 2035 | } |
| 2036 | if (rsvd) |
| 2037 | { |
| 2038 | return ipmi::responseInvalidFieldRequest(); |
| 2039 | } |
| 2040 | if ((transferStatus == setInProgress) && |
| 2041 | (static_cast<uint8_t>(setInProgressFlag) != setComplete)) |
| 2042 | { |
| 2043 | return ipmi::response(IPMI_CC_FAIL_SET_IN_PROGRESS); |
| 2044 | } |
| 2045 | transferStatus = static_cast<uint8_t>(setInProgressFlag); |
| 2046 | return ipmi::responseSuccess(); |
| 2047 | } |
| 2048 | |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 2049 | /* 000101 |
| 2050 | * Parameter #5 means boot flags. Please refer to 28.13 of ipmi doc. |
| 2051 | * This is the only parameter used by petitboot. |
| 2052 | */ |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 2053 | |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 2054 | if (types::enum_cast<BootOptionParameter>(parameterSelector) == |
| 2055 | BootOptionParameter::bootFlags) |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 2056 | { |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2057 | uint5_t rsvd; |
| 2058 | bool validFlag; |
| 2059 | bool permanent; |
| 2060 | bool biosBootType; |
| 2061 | bool lockOutResetButton; |
| 2062 | bool screenBlank; |
| 2063 | uint4_t bootDeviceSelector; |
| 2064 | bool lockKeyboard; |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2065 | uint8_t data3; |
| 2066 | uint4_t biosInfo; |
| 2067 | uint4_t rsvd1; |
| 2068 | uint5_t deviceInstance; |
| 2069 | uint3_t rsvd2; |
| 2070 | |
| 2071 | if (data.unpack(rsvd, biosBootType, permanent, validFlag, |
| 2072 | lockOutResetButton, screenBlank, bootDeviceSelector, |
| 2073 | lockKeyboard, cmosClear, data3, biosInfo, rsvd1, |
| 2074 | deviceInstance, rsvd2) != 0 || |
| 2075 | !data.fullyUnpacked()) |
| 2076 | { |
| 2077 | return ipmi::responseReqDataLenInvalid(); |
| 2078 | } |
| 2079 | if (rsvd || rsvd1 || rsvd2) |
| 2080 | { |
| 2081 | return ipmi::responseInvalidFieldRequest(); |
| 2082 | } |
| 2083 | |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 2084 | using namespace chassis::internal; |
| 2085 | using namespace chassis::internal::cache; |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 2086 | |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 2087 | try |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 2088 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 2089 | rc = setBootOneTime(ctx, !permanent); |
| 2090 | if (rc != ipmi::ccSuccess) |
Konstantin Aladyshev | 69e8e84 | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 2091 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 2092 | return ipmi::response(rc); |
| 2093 | } |
Vernon Mauery | afd45db | 2021-07-29 16:27:25 +0000 | [diff] [blame] | 2094 | |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 2095 | rc = setBootEnable(ctx, validFlag); |
| 2096 | if (rc != ipmi::ccSuccess) |
| 2097 | { |
| 2098 | return ipmi::response(rc); |
Tom Joseph | 57e8eb7 | 2017-09-25 18:05:02 +0530 | [diff] [blame] | 2099 | } |
| 2100 | |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2101 | auto modeItr = |
| 2102 | modeIpmiToDbus.find(static_cast<uint8_t>(bootDeviceSelector)); |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 2103 | auto typeItr = |
| 2104 | typeIpmiToDbus.find(static_cast<uint8_t>(biosBootType)); |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2105 | auto sourceItr = |
| 2106 | sourceIpmiToDbus.find(static_cast<uint8_t>(bootDeviceSelector)); |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 2107 | if (sourceIpmiToDbus.end() != sourceItr) |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 2108 | { |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 2109 | rc = setBootSource(ctx, sourceItr->second); |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2110 | if (rc != ipmi::ccSuccess) |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 2111 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 2112 | return ipmi::response(rc); |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 2113 | } |
Marri Devender Rao | 54fa130 | 2018-05-07 01:06:23 -0500 | [diff] [blame] | 2114 | // If a set boot device is mapping to a boot source, then reset |
| 2115 | // the boot mode D-Bus property to default. |
| 2116 | // This way the ipmid code can determine which property is not |
| 2117 | // at the default value |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 2118 | if (sourceItr->second != Source::Sources::Default) |
Marri Devender Rao | 54fa130 | 2018-05-07 01:06:23 -0500 | [diff] [blame] | 2119 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 2120 | rc = setBootMode(ctx, Mode::Modes::Regular); |
| 2121 | if (rc != ipmi::ccSuccess) |
| 2122 | { |
| 2123 | return ipmi::response(rc); |
| 2124 | } |
Marri Devender Rao | 54fa130 | 2018-05-07 01:06:23 -0500 | [diff] [blame] | 2125 | } |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 2126 | } |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 2127 | |
| 2128 | if (typeIpmiToDbus.end() != typeItr) |
| 2129 | { |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 2130 | rc = setBootType(ctx, typeItr->second); |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 2131 | if (rc != ipmi::ccSuccess) |
| 2132 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 2133 | return ipmi::response(rc); |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 2134 | } |
| 2135 | } |
| 2136 | |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 2137 | if (modeIpmiToDbus.end() != modeItr) |
| 2138 | { |
Konstantin Aladyshev | e76a61a | 2021-03-18 22:19:13 +0300 | [diff] [blame] | 2139 | rc = setBootMode(ctx, modeItr->second); |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2140 | if (rc != ipmi::ccSuccess) |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 2141 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 2142 | return ipmi::response(rc); |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 2143 | } |
Marri Devender Rao | 54fa130 | 2018-05-07 01:06:23 -0500 | [diff] [blame] | 2144 | // If a set boot device is mapping to a boot mode, then reset |
| 2145 | // the boot source D-Bus property to default. |
| 2146 | // This way the ipmid code can determine which property is not |
| 2147 | // at the default value |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 2148 | if (modeItr->second != Mode::Modes::Regular) |
Marri Devender Rao | 54fa130 | 2018-05-07 01:06:23 -0500 | [diff] [blame] | 2149 | { |
Konstantin Aladyshev | 08a080a | 2021-06-18 17:01:18 +0300 | [diff] [blame] | 2150 | rc = setBootSource(ctx, Source::Sources::Default); |
| 2151 | if (rc != ipmi::ccSuccess) |
| 2152 | { |
| 2153 | return ipmi::response(rc); |
| 2154 | } |
Marri Devender Rao | 54fa130 | 2018-05-07 01:06:23 -0500 | [diff] [blame] | 2155 | } |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 2156 | } |
Jia, chunhui | 67c5e5d | 2019-05-06 11:29:54 +0800 | [diff] [blame] | 2157 | if ((modeIpmiToDbus.end() == modeItr) && |
Konstantin Aladyshev | 96ef028 | 2021-02-09 13:57:10 +0300 | [diff] [blame] | 2158 | (typeIpmiToDbus.end() == typeItr) && |
Jia, chunhui | 67c5e5d | 2019-05-06 11:29:54 +0800 | [diff] [blame] | 2159 | (sourceIpmiToDbus.end() == sourceItr)) |
| 2160 | { |
| 2161 | // return error if boot option is not supported |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2162 | log<level::ERR>( |
| 2163 | "ipmiChassisSetSysBootOptions: Boot option not supported"); |
| 2164 | return ipmi::responseInvalidFieldRequest(); |
Jia, chunhui | 67c5e5d | 2019-05-06 11:29:54 +0800 | [diff] [blame] | 2165 | } |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 2166 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 2167 | catch (const sdbusplus::exception_t& e) |
Deepak Kodihalli | 8cc1936 | 2017-07-21 11:18:38 -0500 | [diff] [blame] | 2168 | { |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 2169 | objectsPtr.reset(); |
Deepak Kodihalli | 13791bd | 2017-08-28 06:50:51 -0500 | [diff] [blame] | 2170 | report<InternalFailure>(); |
Aditya Saripalli | 5fb1460 | 2017-11-09 14:46:27 +0530 | [diff] [blame] | 2171 | log<level::ERR>( |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2172 | "ipmiChassisSetSysBootOptions: Error in setting Boot " |
| 2173 | "flag parameters"); |
| 2174 | return ipmi::responseUnspecifiedError(); |
Ratan Gupta | fd28dd7 | 2016-08-01 04:58:01 -0500 | [diff] [blame] | 2175 | } |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 2176 | } |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 2177 | else if (types::enum_cast<BootOptionParameter>(parameterSelector) == |
| 2178 | BootOptionParameter::bootInfo) |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 2179 | { |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2180 | uint8_t writeMak; |
Hieu Huynh | 38ffafc | 2021-05-14 08:40:14 +0000 | [diff] [blame] | 2181 | uint5_t bootInfoAck; |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2182 | uint3_t rsvd; |
| 2183 | |
Hieu Huynh | 38ffafc | 2021-05-14 08:40:14 +0000 | [diff] [blame] | 2184 | if (data.unpack(writeMak, bootInfoAck, rsvd) != 0 || |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2185 | !data.fullyUnpacked()) |
| 2186 | { |
| 2187 | return ipmi::responseReqDataLenInvalid(); |
| 2188 | } |
| 2189 | if (rsvd) |
| 2190 | { |
| 2191 | return ipmi::responseInvalidFieldRequest(); |
| 2192 | } |
Hieu Huynh | 38ffafc | 2021-05-14 08:40:14 +0000 | [diff] [blame] | 2193 | bootInitiatorAckData &= ~writeMak; |
| 2194 | bootInitiatorAckData |= (writeMak & bootInfoAck); |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2195 | log<level::INFO>("ipmiChassisSetSysBootOptions: bootInfo parameter set " |
| 2196 | "successfully"); |
| 2197 | data.trailingOk = true; |
| 2198 | return ipmi::responseSuccess(); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 2199 | } |
Chen Yugang | 86ac499 | 2021-06-25 08:14:52 +0800 | [diff] [blame] | 2200 | else if (types::enum_cast<BootOptionParameter>(parameterSelector) == |
| 2201 | BootOptionParameter::bootFlagValidClr) |
| 2202 | { |
| 2203 | uint5_t bootFlagValidClr; |
| 2204 | uint3_t rsvd; |
| 2205 | |
| 2206 | if (data.unpack(bootFlagValidClr, rsvd) != 0 || !data.fullyUnpacked()) |
| 2207 | { |
| 2208 | return ipmi::responseReqDataLenInvalid(); |
| 2209 | } |
| 2210 | if (rsvd) |
| 2211 | { |
| 2212 | return ipmi::responseInvalidFieldRequest(); |
| 2213 | } |
| 2214 | // store boot flag valid bits clear value |
| 2215 | bootFlagValidBitClr = static_cast<uint8_t>(bootFlagValidClr); |
| 2216 | log<level::INFO>( |
| 2217 | "ipmiChassisSetSysBootOptions: bootFlagValidBits parameter set " |
| 2218 | "successfully", |
| 2219 | entry("value=0x%x", bootFlagValidBitClr)); |
| 2220 | return ipmi::responseSuccess(); |
| 2221 | } |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 2222 | else |
| 2223 | { |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2224 | if ((parameterSelector >= static_cast<uint7_t>(oemParmStart)) && |
| 2225 | (parameterSelector <= static_cast<uint7_t>(oemParmEnd))) |
| 2226 | { |
William A. Kennington III | 7a0e5df | 2021-05-19 13:31:29 -0700 | [diff] [blame] | 2227 | if (types::enum_cast<BootOptionParameter>(parameterSelector) == |
| 2228 | BootOptionParameter::opalNetworkSettings) |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2229 | { |
| 2230 | ipmi::Cc ret = setHostNetworkData(data); |
| 2231 | if (ret != ipmi::ccSuccess) |
| 2232 | { |
| 2233 | log<level::ERR>("ipmiChassisSetSysBootOptions: Error in " |
| 2234 | "setHostNetworkData"); |
| 2235 | data.trailingOk = true; |
| 2236 | return ipmi::response(ret); |
| 2237 | } |
| 2238 | data.trailingOk = true; |
| 2239 | return ipmi::responseSuccess(); |
| 2240 | } |
| 2241 | else |
| 2242 | { |
| 2243 | log<level::ERR>( |
| 2244 | "ipmiChassisSetSysBootOptions: Unsupported parameters", |
| 2245 | entry("PARAM=0x%x", |
| 2246 | static_cast<uint8_t>(parameterSelector))); |
| 2247 | data.trailingOk = true; |
| 2248 | return ipmi::responseParmNotSupported(); |
| 2249 | } |
| 2250 | } |
| 2251 | data.trailingOk = true; |
| 2252 | return ipmi::responseParmNotSupported(); |
Adriana Kobylak | 40814c6 | 2015-10-27 15:58:44 -0500 | [diff] [blame] | 2253 | } |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2254 | return ipmi::responseSuccess(); |
Adriana Kobylak | 40814c6 | 2015-10-27 15:58:44 -0500 | [diff] [blame] | 2255 | } |
| 2256 | |
anil kumar appana | a5a76eb | 2019-04-30 14:57:24 +0000 | [diff] [blame] | 2257 | /** @brief implements Get POH counter command |
| 2258 | * @parameter |
| 2259 | * - none |
| 2260 | * @returns IPMI completion code plus response data |
| 2261 | * - minPerCount - Minutes per count |
| 2262 | * - counterReading - counter reading |
| 2263 | */ |
| 2264 | ipmi::RspType<uint8_t, // Minutes per count |
| 2265 | uint32_t // Counter reading |
| 2266 | > |
| 2267 | ipmiGetPOHCounter() |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 2268 | { |
| 2269 | // sd_bus error |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 2270 | try |
| 2271 | { |
anil kumar appana | a5a76eb | 2019-04-30 14:57:24 +0000 | [diff] [blame] | 2272 | return ipmi::responseSuccess(static_cast<uint8_t>(poh::minutesPerCount), |
| 2273 | getPOHCounter()); |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 2274 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 2275 | catch (const std::exception& e) |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 2276 | { |
| 2277 | log<level::ERR>(e.what()); |
anil kumar appana | a5a76eb | 2019-04-30 14:57:24 +0000 | [diff] [blame] | 2278 | return ipmi::responseUnspecifiedError(); |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 2279 | } |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 2280 | } |
| 2281 | |
Jason M. Bills | bc996a3 | 2019-06-17 15:46:37 -0700 | [diff] [blame] | 2282 | ipmi::RspType<uint3_t, // policy support |
| 2283 | uint5_t // reserved |
| 2284 | > |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 2285 | ipmiChassisSetPowerRestorePolicy(boost::asio::yield_context yield, |
Jason M. Bills | bc996a3 | 2019-06-17 15:46:37 -0700 | [diff] [blame] | 2286 | uint3_t policy, uint5_t reserved) |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2287 | { |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2288 | power_policy::DbusValue value = |
| 2289 | power_policy::RestorePolicy::Policy::AlwaysOff; |
| 2290 | |
Jason M. Bills | bc996a3 | 2019-06-17 15:46:37 -0700 | [diff] [blame] | 2291 | if (reserved || (policy > power_policy::noChange)) |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2292 | { |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 2293 | phosphor::logging::log<level::ERR>( |
| 2294 | "Reserved request parameter", |
| 2295 | entry("REQ=0x%x", static_cast<int>(policy))); |
Jason M. Bills | bc996a3 | 2019-06-17 15:46:37 -0700 | [diff] [blame] | 2296 | return ipmi::responseInvalidFieldRequest(); |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2297 | } |
| 2298 | |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 2299 | if (policy == power_policy::noChange) |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2300 | { |
| 2301 | // just return the supported policy |
Jason M. Bills | bc996a3 | 2019-06-17 15:46:37 -0700 | [diff] [blame] | 2302 | return ipmi::responseSuccess(power_policy::allSupport, reserved); |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2303 | } |
| 2304 | |
Patrick Williams | fbc6c9d | 2023-05-10 07:50:16 -0500 | [diff] [blame] | 2305 | for (const auto& it : power_policy::dbusToIpmi) |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2306 | { |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 2307 | if (it.second == policy) |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2308 | { |
| 2309 | value = it.first; |
| 2310 | break; |
| 2311 | } |
| 2312 | } |
| 2313 | |
| 2314 | try |
| 2315 | { |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 2316 | settings::Objects& objects = chassis::internal::cache::getObjects(); |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2317 | const settings::Path& powerRestoreSetting = |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 2318 | objects.map.at(chassis::internal::powerRestoreIntf).front(); |
Vernon Mauery | 16b8693 | 2019-05-01 08:36:11 -0700 | [diff] [blame] | 2319 | std::variant<std::string> property = convertForMessage(value); |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2320 | |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 2321 | auto sdbusp = getSdBus(); |
| 2322 | boost::system::error_code ec; |
| 2323 | sdbusp->yield_method_call<void>( |
| 2324 | yield, ec, |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 2325 | objects |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2326 | .service(powerRestoreSetting, |
| 2327 | chassis::internal::powerRestoreIntf) |
| 2328 | .c_str(), |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 2329 | powerRestoreSetting, ipmi::PROP_INTF, "Set", |
| 2330 | chassis::internal::powerRestoreIntf, "PowerRestorePolicy", |
| 2331 | property); |
| 2332 | if (ec) |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2333 | { |
| 2334 | phosphor::logging::log<level::ERR>("Unspecified Error"); |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 2335 | return ipmi::responseUnspecifiedError(); |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2336 | } |
| 2337 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 2338 | catch (const InternalFailure& e) |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2339 | { |
James Feist | 225dec8 | 2019-11-26 16:25:06 -0800 | [diff] [blame] | 2340 | chassis::internal::cache::objectsPtr.reset(); |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2341 | report<InternalFailure>(); |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 2342 | return ipmi::responseUnspecifiedError(); |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2343 | } |
| 2344 | |
Jason M. Bills | bc996a3 | 2019-06-17 15:46:37 -0700 | [diff] [blame] | 2345 | return ipmi::responseSuccess(power_policy::allSupport, reserved); |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2346 | } |
| 2347 | |
Willy Tu | 11d6889 | 2022-01-20 10:37:34 -0800 | [diff] [blame] | 2348 | ipmi::RspType<> ipmiSetFrontPanelButtonEnables(ipmi::Context::ptr ctx, |
| 2349 | bool disablePowerButton, |
| 2350 | bool disableResetButton, bool, |
| 2351 | bool, uint4_t) |
Kuiying Wang | 21addc5 | 2019-01-04 10:50:21 +0800 | [diff] [blame] | 2352 | { |
| 2353 | using namespace chassis::internal; |
| 2354 | |
| 2355 | // set power button Enabled property |
| 2356 | bool success = setButtonEnabled(ctx, powerButtonPath, powerButtonIntf, |
| 2357 | !disablePowerButton); |
| 2358 | |
| 2359 | // set reset button Enabled property |
| 2360 | success &= setButtonEnabled(ctx, resetButtonPath, resetButtonIntf, |
| 2361 | !disableResetButton); |
| 2362 | |
| 2363 | if (!success) |
| 2364 | { |
| 2365 | // not all buttons were successfully set |
| 2366 | return ipmi::responseUnspecifiedError(); |
| 2367 | } |
| 2368 | return ipmi::responseSuccess(); |
| 2369 | } |
| 2370 | |
Adriana Kobylak | 40814c6 | 2015-10-27 15:58:44 -0500 | [diff] [blame] | 2371 | void register_netfn_chassis_functions() |
| 2372 | { |
Marri Devender Rao | 6706c1c | 2018-05-14 00:29:38 -0500 | [diff] [blame] | 2373 | createIdentifyTimer(); |
| 2374 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 2375 | // Get Chassis Capabilities |
anil kumar appana | 43263c6 | 2019-05-27 12:45:04 +0000 | [diff] [blame] | 2376 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2377 | ipmi::chassis::cmdGetChassisCapabilities, |
| 2378 | ipmi::Privilege::User, ipmiGetChassisCap); |
Nan Li | 8d15fb4 | 2016-08-16 22:29:40 +0800 | [diff] [blame] | 2379 | |
Kuiying Wang | 21addc5 | 2019-01-04 10:50:21 +0800 | [diff] [blame] | 2380 | // Set Front Panel Button Enables |
| 2381 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2382 | ipmi::chassis::cmdSetFrontPanelButtonEnables, |
| 2383 | ipmi::Privilege::Admin, |
| 2384 | ipmiSetFrontPanelButtonEnables); |
| 2385 | |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 2386 | // Set Chassis Capabilities |
anil kumar appana | 894d022 | 2019-05-27 16:32:14 +0000 | [diff] [blame] | 2387 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2388 | ipmi::chassis::cmdSetChassisCapabilities, |
| 2389 | ipmi::Privilege::User, ipmiSetChassisCap); |
Yong Li | ae4b040 | 2018-11-02 11:12:14 +0800 | [diff] [blame] | 2390 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 2391 | // <Get System Boot Options> |
Jayaprakash Mutyala | d1ef877 | 2020-08-25 10:32:58 +0000 | [diff] [blame] | 2392 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2393 | ipmi::chassis::cmdGetSystemBootOptions, |
| 2394 | ipmi::Privilege::Operator, |
| 2395 | ipmiChassisGetSysBootOptions); |
Adriana Kobylak | 40814c6 | 2015-10-27 15:58:44 -0500 | [diff] [blame] | 2396 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 2397 | // <Get Chassis Status> |
Vernon Mauery | 4a8a4eb | 2019-04-04 15:09:37 -0700 | [diff] [blame] | 2398 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2399 | ipmi::chassis::cmdGetChassisStatus, |
| 2400 | ipmi::Privilege::User, ipmiGetChassisStatus); |
Nan Li | fdd8ec5 | 2016-08-28 03:57:40 +0800 | [diff] [blame] | 2401 | |
Vijay Khemka | 074f64d | 2020-03-03 15:08:43 -0800 | [diff] [blame] | 2402 | // <Chassis Get System Restart Cause> |
| 2403 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2404 | ipmi::chassis::cmdGetSystemRestartCause, |
| 2405 | ipmi::Privilege::User, ipmiGetSystemRestartCause); |
| 2406 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 2407 | // <Chassis Control> |
anil kumar appana | dafff5f | 2019-04-27 18:06:00 +0000 | [diff] [blame] | 2408 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2409 | ipmi::chassis::cmdChassisControl, |
| 2410 | ipmi::Privilege::Operator, ipmiChassisControl); |
shgoupf | d84fbbf | 2015-12-17 10:05:51 +0800 | [diff] [blame] | 2411 | |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 2412 | // <Chassis Identify> |
Vernon Mauery | 400cc78 | 2018-10-09 13:49:53 -0700 | [diff] [blame] | 2413 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2414 | ipmi::chassis::cmdChassisIdentify, |
| 2415 | ipmi::Privilege::Operator, ipmiChassisIdentify); |
Tom Joseph | 5110c12 | 2018-03-23 17:55:40 +0530 | [diff] [blame] | 2416 | |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 2417 | // <Set System Boot Options> |
jayaprakash Mutyala | bfd8fc4 | 2020-05-05 22:38:03 +0000 | [diff] [blame] | 2418 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2419 | ipmi::chassis::cmdSetSystemBootOptions, |
| 2420 | ipmi::Privilege::Operator, |
| 2421 | ipmiChassisSetSysBootOptions); |
| 2422 | |
Nagaraju Goruganti | a59d83f | 2018-04-06 05:55:42 -0500 | [diff] [blame] | 2423 | // <Get POH Counter> |
anil kumar appana | a5a76eb | 2019-04-30 14:57:24 +0000 | [diff] [blame] | 2424 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2425 | ipmi::chassis::cmdGetPohCounter, |
| 2426 | ipmi::Privilege::User, ipmiGetPOHCounter); |
Yong Li | c6713cf | 2018-09-12 12:35:13 +0800 | [diff] [blame] | 2427 | |
| 2428 | // <Set Power Restore Policy> |
Vernon Mauery | e278ead | 2018-10-09 09:23:43 -0700 | [diff] [blame] | 2429 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnChassis, |
| 2430 | ipmi::chassis::cmdSetPowerRestorePolicy, |
| 2431 | ipmi::Privilege::Operator, |
| 2432 | ipmiChassisSetPowerRestorePolicy); |
vishwa | 3699327 | 2015-11-20 12:43:49 -0600 | [diff] [blame] | 2433 | } |