Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2018 Intel Corporation |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | */ |
| 16 | #pragma once |
| 17 | |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 18 | #include "app.hpp" |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 19 | #include "dbus_singleton.hpp" |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 20 | #include "dbus_utility.hpp" |
James Feist | b49ac87 | 2019-05-21 15:12:01 -0700 | [diff] [blame] | 21 | #include "health.hpp" |
Asmitha Karunanithi | 746b56f | 2023-02-27 23:29:49 -0600 | [diff] [blame] | 22 | #include "hypervisor_system.hpp" |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 23 | #include "led.hpp" |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 24 | #include "pcie.hpp" |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 25 | #include "query.hpp" |
Jennifer Lee | c5d03ff | 2019-03-08 15:42:58 -0800 | [diff] [blame] | 26 | #include "redfish_util.hpp" |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 27 | #include "registries/privilege_registry.hpp" |
| 28 | #include "utils/dbus_utils.hpp" |
| 29 | #include "utils/json_utils.hpp" |
| 30 | #include "utils/sw_utils.hpp" |
Ed Tanous | 2b82937 | 2022-08-03 14:22:34 -0700 | [diff] [blame] | 31 | #include "utils/time_utils.hpp" |
Jennifer Lee | c5d03ff | 2019-03-08 15:42:58 -0800 | [diff] [blame] | 32 | |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 33 | #include <boost/container/flat_map.hpp> |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 34 | #include <boost/system/error_code.hpp> |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 35 | #include <sdbusplus/asio/property.hpp> |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 36 | #include <sdbusplus/unpack_properties.hpp> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 37 | |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 38 | #include <array> |
| 39 | #include <string_view> |
Ed Tanous | abf2add | 2019-01-22 16:40:12 -0800 | [diff] [blame] | 40 | #include <variant> |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 41 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 42 | namespace redfish |
| 43 | { |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 44 | |
Abhishek Patel | 5c3e927 | 2021-06-24 10:11:33 -0500 | [diff] [blame] | 45 | const static std::array<std::pair<std::string_view, std::string_view>, 2> |
| 46 | protocolToDBusForSystems{ |
| 47 | {{"SSH", "obmc-console-ssh"}, {"IPMI", "phosphor-ipmi-net"}}}; |
| 48 | |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 49 | /** |
| 50 | * @brief Updates the Functional State of DIMMs |
| 51 | * |
| 52 | * @param[in] aResp Shared pointer for completing asynchronous calls |
| 53 | * @param[in] dimmState Dimm's Functional state, true/false |
| 54 | * |
| 55 | * @return None. |
| 56 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 57 | inline void |
| 58 | updateDimmProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 59 | bool isDimmFunctional) |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 60 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 61 | BMCWEB_LOG_DEBUG << "Dimm Functional: " << isDimmFunctional; |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 62 | |
Gunnar Mills | 4e0453b | 2020-07-08 14:00:30 -0500 | [diff] [blame] | 63 | // Set it as Enabled if at least one DIMM is functional |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 64 | // Update STATE only if previous State was DISABLED and current Dimm is |
| 65 | // ENABLED. |
Ed Tanous | 02cad96 | 2022-06-30 16:50:15 -0700 | [diff] [blame] | 66 | const nlohmann::json& prevMemSummary = |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 67 | aResp->res.jsonValue["MemorySummary"]["Status"]["State"]; |
| 68 | if (prevMemSummary == "Disabled") |
| 69 | { |
Ed Tanous | e05aec5 | 2022-01-25 10:28:56 -0800 | [diff] [blame] | 70 | if (isDimmFunctional) |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 71 | { |
| 72 | aResp->res.jsonValue["MemorySummary"]["Status"]["State"] = |
| 73 | "Enabled"; |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 78 | /* |
| 79 | * @brief Update "ProcessorSummary" "Count" based on Cpu PresenceState |
| 80 | * |
| 81 | * @param[in] aResp Shared pointer for completing asynchronous calls |
| 82 | * @param[in] cpuPresenceState CPU present or not |
| 83 | * |
| 84 | * @return None. |
| 85 | */ |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 86 | inline void |
| 87 | modifyCpuPresenceState(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 88 | bool isCpuPresent) |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 89 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 90 | BMCWEB_LOG_DEBUG << "Cpu Present: " << isCpuPresent; |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 91 | |
Ed Tanous | 55f79e6 | 2022-01-25 11:26:16 -0800 | [diff] [blame] | 92 | if (isCpuPresent) |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 93 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 94 | nlohmann::json& procCount = |
James Feist | b4b9595 | 2019-12-05 15:01:55 -0800 | [diff] [blame] | 95 | aResp->res.jsonValue["ProcessorSummary"]["Count"]; |
Ed Tanous | 55f79e6 | 2022-01-25 11:26:16 -0800 | [diff] [blame] | 96 | auto* procCountPtr = |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 97 | procCount.get_ptr<nlohmann::json::number_integer_t*>(); |
James Feist | b4b9595 | 2019-12-05 15:01:55 -0800 | [diff] [blame] | 98 | if (procCountPtr != nullptr) |
| 99 | { |
| 100 | // shouldn't be possible to be nullptr |
| 101 | *procCountPtr += 1; |
| 102 | } |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 103 | } |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | /* |
| 107 | * @brief Update "ProcessorSummary" "Status" "State" based on |
| 108 | * CPU Functional State |
| 109 | * |
| 110 | * @param[in] aResp Shared pointer for completing asynchronous calls |
| 111 | * @param[in] cpuFunctionalState is CPU functional true/false |
| 112 | * |
| 113 | * @return None. |
| 114 | */ |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 115 | inline void |
| 116 | modifyCpuFunctionalState(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 117 | bool isCpuFunctional) |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 118 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 119 | BMCWEB_LOG_DEBUG << "Cpu Functional: " << isCpuFunctional; |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 120 | |
Ed Tanous | 02cad96 | 2022-06-30 16:50:15 -0700 | [diff] [blame] | 121 | const nlohmann::json& prevProcState = |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 122 | aResp->res.jsonValue["ProcessorSummary"]["Status"]["State"]; |
| 123 | |
Gunnar Mills | 4e0453b | 2020-07-08 14:00:30 -0500 | [diff] [blame] | 124 | // Set it as Enabled if at least one CPU is functional |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 125 | // Update STATE only if previous State was Non_Functional and current CPU is |
| 126 | // Functional. |
| 127 | if (prevProcState == "Disabled") |
| 128 | { |
Ed Tanous | e05aec5 | 2022-01-25 10:28:56 -0800 | [diff] [blame] | 129 | if (isCpuFunctional) |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 130 | { |
| 131 | aResp->res.jsonValue["ProcessorSummary"]["Status"]["State"] = |
| 132 | "Enabled"; |
| 133 | } |
| 134 | } |
| 135 | } |
| 136 | |
Ali Ahmed | 382d647 | 2021-09-03 16:53:53 -0500 | [diff] [blame] | 137 | inline void getProcessorProperties( |
| 138 | const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 139 | const std::vector<std::pair<std::string, dbus::utility::DbusVariantType>>& |
| 140 | properties) |
Ali Ahmed | 03fbed9 | 2021-09-03 02:33:43 -0500 | [diff] [blame] | 141 | { |
Ali Ahmed | 03fbed9 | 2021-09-03 02:33:43 -0500 | [diff] [blame] | 142 | BMCWEB_LOG_DEBUG << "Got " << properties.size() << " Cpu properties."; |
| 143 | |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 144 | // TODO: Get Model |
| 145 | |
| 146 | const uint16_t* coreCount = nullptr; |
| 147 | |
| 148 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 149 | dbus_utils::UnpackErrorPrinter(), properties, "CoreCount", coreCount); |
| 150 | |
| 151 | if (!success) |
Ali Ahmed | 03fbed9 | 2021-09-03 02:33:43 -0500 | [diff] [blame] | 152 | { |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 153 | messages::internalError(aResp->res); |
| 154 | return; |
| 155 | } |
Ali Ahmed | 03fbed9 | 2021-09-03 02:33:43 -0500 | [diff] [blame] | 156 | |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 157 | if (coreCount != nullptr) |
| 158 | { |
| 159 | nlohmann::json& coreCountJson = |
| 160 | aResp->res.jsonValue["ProcessorSummary"]["CoreCount"]; |
| 161 | uint64_t* coreCountJsonPtr = coreCountJson.get_ptr<uint64_t*>(); |
Ali Ahmed | 03fbed9 | 2021-09-03 02:33:43 -0500 | [diff] [blame] | 162 | |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 163 | if (coreCountJsonPtr == nullptr) |
Ali Ahmed | 03fbed9 | 2021-09-03 02:33:43 -0500 | [diff] [blame] | 164 | { |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 165 | coreCountJson = *coreCount; |
| 166 | } |
| 167 | else |
| 168 | { |
| 169 | *coreCountJsonPtr += *coreCount; |
Ali Ahmed | 03fbed9 | 2021-09-03 02:33:43 -0500 | [diff] [blame] | 170 | } |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /* |
| 175 | * @brief Get ProcessorSummary fields |
| 176 | * |
| 177 | * @param[in] aResp Shared pointer for completing asynchronous calls |
| 178 | * @param[in] service dbus service for Cpu Information |
| 179 | * @param[in] path dbus path for Cpu |
| 180 | * |
| 181 | * @return None. |
| 182 | */ |
| 183 | inline void getProcessorSummary(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 184 | const std::string& service, |
| 185 | const std::string& path) |
| 186 | { |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 187 | auto getCpuPresenceState = [aResp](const boost::system::error_code& ec3, |
Ali Ahmed | 382d647 | 2021-09-03 16:53:53 -0500 | [diff] [blame] | 188 | const bool cpuPresenceCheck) { |
| 189 | if (ec3) |
| 190 | { |
| 191 | BMCWEB_LOG_ERROR << "DBUS response error " << ec3; |
| 192 | return; |
| 193 | } |
| 194 | modifyCpuPresenceState(aResp, cpuPresenceCheck); |
| 195 | }; |
| 196 | |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 197 | auto getCpuFunctionalState = [aResp](const boost::system::error_code& ec3, |
Ali Ahmed | 382d647 | 2021-09-03 16:53:53 -0500 | [diff] [blame] | 198 | const bool cpuFunctionalCheck) { |
| 199 | if (ec3) |
| 200 | { |
| 201 | BMCWEB_LOG_ERROR << "DBUS response error " << ec3; |
| 202 | return; |
| 203 | } |
| 204 | modifyCpuFunctionalState(aResp, cpuFunctionalCheck); |
| 205 | }; |
| 206 | |
| 207 | // Get the Presence of CPU |
| 208 | sdbusplus::asio::getProperty<bool>( |
| 209 | *crow::connections::systemBus, service, path, |
| 210 | "xyz.openbmc_project.Inventory.Item", "Present", |
| 211 | std::move(getCpuPresenceState)); |
| 212 | |
| 213 | // Get the Functional State |
| 214 | sdbusplus::asio::getProperty<bool>( |
| 215 | *crow::connections::systemBus, service, path, |
| 216 | "xyz.openbmc_project.State.Decorator.OperationalStatus", "Functional", |
| 217 | std::move(getCpuFunctionalState)); |
| 218 | |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 219 | sdbusplus::asio::getAllProperties( |
| 220 | *crow::connections::systemBus, service, path, |
| 221 | "xyz.openbmc_project.Inventory.Item.Cpu", |
Ali Ahmed | 03fbed9 | 2021-09-03 02:33:43 -0500 | [diff] [blame] | 222 | [aResp, service, |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 223 | path](const boost::system::error_code& ec2, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 224 | const dbus::utility::DBusPropertiesMap& properties) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 225 | if (ec2) |
| 226 | { |
| 227 | BMCWEB_LOG_ERROR << "DBUS response error " << ec2; |
| 228 | messages::internalError(aResp->res); |
| 229 | return; |
| 230 | } |
Ali Ahmed | 382d647 | 2021-09-03 16:53:53 -0500 | [diff] [blame] | 231 | getProcessorProperties(aResp, properties); |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 232 | }); |
Ali Ahmed | 03fbed9 | 2021-09-03 02:33:43 -0500 | [diff] [blame] | 233 | } |
| 234 | |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 235 | /* |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 236 | * @brief Retrieves computer system properties over dbus |
| 237 | * |
| 238 | * @param[in] aResp Shared pointer for completing asynchronous calls |
Gunnar Mills | 8f9ee3c | 2020-10-30 16:15:13 -0500 | [diff] [blame] | 239 | * @param[in] systemHealth Shared HealthPopulate pointer |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 240 | * |
| 241 | * @return None. |
| 242 | */ |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 243 | inline void |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 244 | getComputerSystem(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
Ed Tanous | b5a7693 | 2020-09-29 16:16:58 -0700 | [diff] [blame] | 245 | const std::shared_ptr<HealthPopulate>& systemHealth) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 246 | { |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 247 | BMCWEB_LOG_DEBUG << "Get available system components."; |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 248 | constexpr std::array<std::string_view, 5> interfaces = { |
| 249 | "xyz.openbmc_project.Inventory.Decorator.Asset", |
| 250 | "xyz.openbmc_project.Inventory.Item.Cpu", |
| 251 | "xyz.openbmc_project.Inventory.Item.Dimm", |
| 252 | "xyz.openbmc_project.Inventory.Item.System", |
| 253 | "xyz.openbmc_project.Common.UUID", |
| 254 | }; |
| 255 | dbus::utility::getSubTree( |
| 256 | "/xyz/openbmc_project/inventory", 0, interfaces, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 257 | [aResp, |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 258 | systemHealth](const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 259 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 260 | if (ec) |
| 261 | { |
| 262 | BMCWEB_LOG_DEBUG << "DBUS response error"; |
| 263 | messages::internalError(aResp->res); |
| 264 | return; |
| 265 | } |
| 266 | // Iterate over all retrieved ObjectPaths. |
| 267 | for (const std::pair< |
| 268 | std::string, |
| 269 | std::vector<std::pair<std::string, std::vector<std::string>>>>& |
| 270 | object : subtree) |
| 271 | { |
| 272 | const std::string& path = object.first; |
| 273 | BMCWEB_LOG_DEBUG << "Got path: " << path; |
| 274 | const std::vector<std::pair<std::string, std::vector<std::string>>>& |
| 275 | connectionNames = object.second; |
| 276 | if (connectionNames.empty()) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 277 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 278 | continue; |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 279 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 280 | |
| 281 | auto memoryHealth = std::make_shared<HealthPopulate>( |
| 282 | aResp, "/MemorySummary/Status"_json_pointer); |
| 283 | |
| 284 | auto cpuHealth = std::make_shared<HealthPopulate>( |
| 285 | aResp, "/ProcessorSummary/Status"_json_pointer); |
| 286 | |
| 287 | systemHealth->children.emplace_back(memoryHealth); |
| 288 | systemHealth->children.emplace_back(cpuHealth); |
| 289 | |
| 290 | // This is not system, so check if it's cpu, dimm, UUID or |
| 291 | // BiosVer |
| 292 | for (const auto& connection : connectionNames) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 293 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 294 | for (const auto& interfaceName : connection.second) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 295 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 296 | if (interfaceName == |
| 297 | "xyz.openbmc_project.Inventory.Item.Dimm") |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 298 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 299 | BMCWEB_LOG_DEBUG |
| 300 | << "Found Dimm, now get its properties."; |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 301 | |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 302 | sdbusplus::asio::getAllProperties( |
| 303 | *crow::connections::systemBus, connection.first, |
| 304 | path, "xyz.openbmc_project.Inventory.Item.Dimm", |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 305 | [aResp, service{connection.first}, |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 306 | path](const boost::system::error_code& ec2, |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 307 | const dbus::utility::DBusPropertiesMap& |
| 308 | properties) { |
| 309 | if (ec2) |
| 310 | { |
| 311 | BMCWEB_LOG_ERROR << "DBUS response error " |
| 312 | << ec2; |
| 313 | messages::internalError(aResp->res); |
| 314 | return; |
| 315 | } |
| 316 | BMCWEB_LOG_DEBUG << "Got " << properties.size() |
| 317 | << " Dimm properties."; |
| 318 | |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 319 | if (properties.empty()) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 320 | { |
| 321 | sdbusplus::asio::getProperty<bool>( |
| 322 | *crow::connections::systemBus, service, |
| 323 | path, |
| 324 | "xyz.openbmc_project.State." |
| 325 | "Decorator.OperationalStatus", |
| 326 | "Functional", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 327 | [aResp]( |
| 328 | const boost::system::error_code& ec3, |
| 329 | bool dimmState) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 330 | if (ec3) |
| 331 | { |
| 332 | BMCWEB_LOG_ERROR |
Ed Tanous | cb13a39 | 2020-07-25 19:02:03 +0000 | [diff] [blame] | 333 | << "DBUS response error " << ec3; |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 334 | return; |
| 335 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 336 | updateDimmProperties(aResp, dimmState); |
| 337 | }); |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 338 | return; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 339 | } |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 340 | |
| 341 | const uint32_t* memorySizeInKB = nullptr; |
| 342 | |
| 343 | const bool success = |
| 344 | sdbusplus::unpackPropertiesNoThrow( |
| 345 | dbus_utils::UnpackErrorPrinter(), |
| 346 | properties, "MemorySizeInKB", |
| 347 | memorySizeInKB); |
| 348 | |
| 349 | if (!success) |
| 350 | { |
| 351 | messages::internalError(aResp->res); |
| 352 | return; |
| 353 | } |
| 354 | |
| 355 | if (memorySizeInKB != nullptr) |
| 356 | { |
| 357 | nlohmann::json& totalMemory = |
| 358 | aResp->res |
| 359 | .jsonValue["MemorySummary"] |
| 360 | ["TotalSystemMemoryGiB"]; |
| 361 | const uint64_t* preValue = |
| 362 | totalMemory.get_ptr<const uint64_t*>(); |
| 363 | if (preValue == nullptr) |
| 364 | { |
| 365 | aResp->res |
| 366 | .jsonValue["MemorySummary"] |
| 367 | ["TotalSystemMemoryGiB"] = |
| 368 | *memorySizeInKB / (1024 * 1024); |
| 369 | } |
| 370 | else |
| 371 | { |
| 372 | aResp->res |
| 373 | .jsonValue["MemorySummary"] |
| 374 | ["TotalSystemMemoryGiB"] = |
| 375 | *memorySizeInKB / (1024 * 1024) + |
| 376 | *preValue; |
| 377 | } |
| 378 | aResp->res.jsonValue["MemorySummary"]["Status"] |
| 379 | ["State"] = "Enabled"; |
| 380 | } |
| 381 | }); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 382 | |
| 383 | memoryHealth->inventory.emplace_back(path); |
| 384 | } |
| 385 | else if (interfaceName == |
| 386 | "xyz.openbmc_project.Inventory.Item.Cpu") |
| 387 | { |
| 388 | BMCWEB_LOG_DEBUG |
| 389 | << "Found Cpu, now get its properties."; |
| 390 | |
| 391 | getProcessorSummary(aResp, connection.first, path); |
| 392 | |
| 393 | cpuHealth->inventory.emplace_back(path); |
| 394 | } |
| 395 | else if (interfaceName == "xyz.openbmc_project.Common.UUID") |
| 396 | { |
| 397 | BMCWEB_LOG_DEBUG |
| 398 | << "Found UUID, now get its properties."; |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 399 | |
| 400 | sdbusplus::asio::getAllProperties( |
| 401 | *crow::connections::systemBus, connection.first, |
| 402 | path, "xyz.openbmc_project.Common.UUID", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 403 | [aResp](const boost::system::error_code& ec3, |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 404 | const dbus::utility::DBusPropertiesMap& |
| 405 | properties) { |
| 406 | if (ec3) |
| 407 | { |
| 408 | BMCWEB_LOG_DEBUG << "DBUS response error " |
| 409 | << ec3; |
| 410 | messages::internalError(aResp->res); |
| 411 | return; |
| 412 | } |
| 413 | BMCWEB_LOG_DEBUG << "Got " << properties.size() |
| 414 | << " UUID properties."; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 415 | |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 416 | const std::string* uUID = nullptr; |
| 417 | |
| 418 | const bool success = |
| 419 | sdbusplus::unpackPropertiesNoThrow( |
| 420 | dbus_utils::UnpackErrorPrinter(), |
| 421 | properties, "UUID", uUID); |
| 422 | |
| 423 | if (!success) |
| 424 | { |
| 425 | messages::internalError(aResp->res); |
| 426 | return; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 427 | } |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 428 | |
| 429 | if (uUID != nullptr) |
| 430 | { |
| 431 | std::string valueStr = *uUID; |
| 432 | if (valueStr.size() == 32) |
| 433 | { |
| 434 | valueStr.insert(8, 1, '-'); |
| 435 | valueStr.insert(13, 1, '-'); |
| 436 | valueStr.insert(18, 1, '-'); |
| 437 | valueStr.insert(23, 1, '-'); |
| 438 | } |
| 439 | BMCWEB_LOG_DEBUG << "UUID = " << valueStr; |
| 440 | aResp->res.jsonValue["UUID"] = valueStr; |
| 441 | } |
| 442 | }); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 443 | } |
| 444 | else if (interfaceName == |
| 445 | "xyz.openbmc_project.Inventory.Item.System") |
| 446 | { |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 447 | sdbusplus::asio::getAllProperties( |
| 448 | *crow::connections::systemBus, connection.first, |
| 449 | path, |
| 450 | "xyz.openbmc_project.Inventory.Decorator.Asset", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 451 | [aResp](const boost::system::error_code& ec2, |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 452 | const dbus::utility::DBusPropertiesMap& |
| 453 | propertiesList) { |
| 454 | if (ec2) |
| 455 | { |
| 456 | // doesn't have to include this |
| 457 | // interface |
| 458 | return; |
| 459 | } |
| 460 | BMCWEB_LOG_DEBUG << "Got " << propertiesList.size() |
| 461 | << " properties for system"; |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 462 | |
| 463 | const std::string* partNumber = nullptr; |
| 464 | const std::string* serialNumber = nullptr; |
| 465 | const std::string* manufacturer = nullptr; |
| 466 | const std::string* model = nullptr; |
| 467 | const std::string* subModel = nullptr; |
| 468 | |
| 469 | const bool success = |
| 470 | sdbusplus::unpackPropertiesNoThrow( |
| 471 | dbus_utils::UnpackErrorPrinter(), |
| 472 | propertiesList, "PartNumber", partNumber, |
| 473 | "SerialNumber", serialNumber, |
| 474 | "Manufacturer", manufacturer, "Model", |
| 475 | model, "SubModel", subModel); |
| 476 | |
| 477 | if (!success) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 478 | { |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 479 | messages::internalError(aResp->res); |
| 480 | return; |
| 481 | } |
| 482 | |
| 483 | if (partNumber != nullptr) |
| 484 | { |
| 485 | aResp->res.jsonValue["PartNumber"] = |
| 486 | *partNumber; |
| 487 | } |
| 488 | |
| 489 | if (serialNumber != nullptr) |
| 490 | { |
| 491 | aResp->res.jsonValue["SerialNumber"] = |
| 492 | *serialNumber; |
| 493 | } |
| 494 | |
| 495 | if (manufacturer != nullptr) |
| 496 | { |
| 497 | aResp->res.jsonValue["Manufacturer"] = |
| 498 | *manufacturer; |
| 499 | } |
| 500 | |
| 501 | if (model != nullptr) |
| 502 | { |
| 503 | aResp->res.jsonValue["Model"] = *model; |
| 504 | } |
| 505 | |
| 506 | if (subModel != nullptr) |
| 507 | { |
| 508 | aResp->res.jsonValue["SubModel"] = *subModel; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 509 | } |
Gunnar Mills | c1e236a | 2020-04-14 21:36:33 -0500 | [diff] [blame] | 510 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 511 | // Grab the bios version |
Willy Tu | eee0013 | 2022-06-14 14:53:17 -0700 | [diff] [blame] | 512 | sw_util::populateSoftwareInformation( |
| 513 | aResp, sw_util::biosPurpose, "BiosVersion", |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 514 | false); |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 515 | }); |
James Feist | e4a4b9a | 2019-06-20 14:08:07 -0700 | [diff] [blame] | 516 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 517 | sdbusplus::asio::getProperty<std::string>( |
| 518 | *crow::connections::systemBus, connection.first, |
| 519 | path, |
| 520 | "xyz.openbmc_project.Inventory.Decorator." |
| 521 | "AssetTag", |
| 522 | "AssetTag", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 523 | [aResp](const boost::system::error_code& ec2, |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 524 | const std::string& value) { |
| 525 | if (ec2) |
| 526 | { |
| 527 | // doesn't have to include this |
| 528 | // interface |
| 529 | return; |
| 530 | } |
James Feist | e4a4b9a | 2019-06-20 14:08:07 -0700 | [diff] [blame] | 531 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 532 | aResp->res.jsonValue["AssetTag"] = value; |
| 533 | }); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 534 | } |
| 535 | } |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 536 | break; |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 537 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 538 | } |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 539 | }); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | /** |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 543 | * @brief Retrieves host state properties over dbus |
| 544 | * |
| 545 | * @param[in] aResp Shared pointer for completing asynchronous calls. |
| 546 | * |
| 547 | * @return None. |
| 548 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 549 | inline void getHostState(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 550 | { |
| 551 | BMCWEB_LOG_DEBUG << "Get host information."; |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 552 | sdbusplus::asio::getProperty<std::string>( |
| 553 | *crow::connections::systemBus, "xyz.openbmc_project.State.Host", |
| 554 | "/xyz/openbmc_project/state/host0", "xyz.openbmc_project.State.Host", |
| 555 | "CurrentHostState", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 556 | [aResp](const boost::system::error_code& ec, |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 557 | const std::string& hostState) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 558 | if (ec) |
| 559 | { |
| 560 | if (ec == boost::system::errc::host_unreachable) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 561 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 562 | // Service not available, no error, just don't return |
| 563 | // host state info |
| 564 | BMCWEB_LOG_DEBUG << "Service not available " << ec; |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 565 | return; |
| 566 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 567 | BMCWEB_LOG_ERROR << "DBUS response error " << ec; |
| 568 | messages::internalError(aResp->res); |
| 569 | return; |
| 570 | } |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 571 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 572 | BMCWEB_LOG_DEBUG << "Host state: " << hostState; |
| 573 | // Verify Host State |
| 574 | if (hostState == "xyz.openbmc_project.State.Host.HostState.Running") |
| 575 | { |
| 576 | aResp->res.jsonValue["PowerState"] = "On"; |
| 577 | aResp->res.jsonValue["Status"]["State"] = "Enabled"; |
| 578 | } |
| 579 | else if (hostState == |
| 580 | "xyz.openbmc_project.State.Host.HostState.Quiesced") |
| 581 | { |
| 582 | aResp->res.jsonValue["PowerState"] = "On"; |
| 583 | aResp->res.jsonValue["Status"]["State"] = "Quiesced"; |
| 584 | } |
| 585 | else if (hostState == |
| 586 | "xyz.openbmc_project.State.Host.HostState.DiagnosticMode") |
| 587 | { |
| 588 | aResp->res.jsonValue["PowerState"] = "On"; |
| 589 | aResp->res.jsonValue["Status"]["State"] = "InTest"; |
| 590 | } |
| 591 | else if ( |
| 592 | hostState == |
| 593 | "xyz.openbmc_project.State.Host.HostState.TransitioningToRunning") |
| 594 | { |
| 595 | aResp->res.jsonValue["PowerState"] = "PoweringOn"; |
| 596 | aResp->res.jsonValue["Status"]["State"] = "Starting"; |
| 597 | } |
| 598 | else if (hostState == |
| 599 | "xyz.openbmc_project.State.Host.HostState.TransitioningToOff") |
| 600 | { |
| 601 | aResp->res.jsonValue["PowerState"] = "PoweringOff"; |
| 602 | aResp->res.jsonValue["Status"]["State"] = "Disabled"; |
| 603 | } |
| 604 | else |
| 605 | { |
| 606 | aResp->res.jsonValue["PowerState"] = "Off"; |
| 607 | aResp->res.jsonValue["Status"]["State"] = "Disabled"; |
| 608 | } |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 609 | }); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | /** |
Gunnar Mills | 786d0f6 | 2020-07-08 13:43:15 -0500 | [diff] [blame] | 613 | * @brief Translates boot source DBUS property value to redfish. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 614 | * |
| 615 | * @param[in] dbusSource The boot source in DBUS speak. |
| 616 | * |
| 617 | * @return Returns as a string, the boot source in Redfish terms. If translation |
| 618 | * cannot be done, returns an empty string. |
| 619 | */ |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 620 | inline std::string dbusToRfBootSource(const std::string& dbusSource) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 621 | { |
| 622 | if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Default") |
| 623 | { |
| 624 | return "None"; |
| 625 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 626 | if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Disk") |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 627 | { |
| 628 | return "Hdd"; |
| 629 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 630 | if (dbusSource == |
| 631 | "xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia") |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 632 | { |
| 633 | return "Cd"; |
| 634 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 635 | if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Network") |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 636 | { |
| 637 | return "Pxe"; |
| 638 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 639 | if (dbusSource == |
| 640 | "xyz.openbmc_project.Control.Boot.Source.Sources.RemovableMedia") |
Jennifer Lee | 9f16b2c | 2019-04-19 15:33:48 -0700 | [diff] [blame] | 641 | { |
| 642 | return "Usb"; |
| 643 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 644 | return ""; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 645 | } |
| 646 | |
| 647 | /** |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 648 | * @brief Translates boot type DBUS property value to redfish. |
| 649 | * |
| 650 | * @param[in] dbusType The boot type in DBUS speak. |
| 651 | * |
| 652 | * @return Returns as a string, the boot type in Redfish terms. If translation |
| 653 | * cannot be done, returns an empty string. |
| 654 | */ |
| 655 | inline std::string dbusToRfBootType(const std::string& dbusType) |
| 656 | { |
| 657 | if (dbusType == "xyz.openbmc_project.Control.Boot.Type.Types.Legacy") |
| 658 | { |
| 659 | return "Legacy"; |
| 660 | } |
| 661 | if (dbusType == "xyz.openbmc_project.Control.Boot.Type.Types.EFI") |
| 662 | { |
| 663 | return "UEFI"; |
| 664 | } |
| 665 | return ""; |
| 666 | } |
| 667 | |
| 668 | /** |
Gunnar Mills | 786d0f6 | 2020-07-08 13:43:15 -0500 | [diff] [blame] | 669 | * @brief Translates boot mode DBUS property value to redfish. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 670 | * |
| 671 | * @param[in] dbusMode The boot mode in DBUS speak. |
| 672 | * |
| 673 | * @return Returns as a string, the boot mode in Redfish terms. If translation |
| 674 | * cannot be done, returns an empty string. |
| 675 | */ |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 676 | inline std::string dbusToRfBootMode(const std::string& dbusMode) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 677 | { |
| 678 | if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular") |
| 679 | { |
| 680 | return "None"; |
| 681 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 682 | if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe") |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 683 | { |
| 684 | return "Diags"; |
| 685 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 686 | if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup") |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 687 | { |
| 688 | return "BiosSetup"; |
| 689 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 690 | return ""; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 691 | } |
| 692 | |
| 693 | /** |
Andrew Geissler | e43914b | 2022-01-06 13:59:39 -0600 | [diff] [blame] | 694 | * @brief Translates boot progress DBUS property value to redfish. |
| 695 | * |
| 696 | * @param[in] dbusBootProgress The boot progress in DBUS speak. |
| 697 | * |
| 698 | * @return Returns as a string, the boot progress in Redfish terms. If |
| 699 | * translation cannot be done, returns "None". |
| 700 | */ |
| 701 | inline std::string dbusToRfBootProgress(const std::string& dbusBootProgress) |
| 702 | { |
| 703 | // Now convert the D-Bus BootProgress to the appropriate Redfish |
| 704 | // enum |
| 705 | std::string rfBpLastState = "None"; |
| 706 | if (dbusBootProgress == "xyz.openbmc_project.State.Boot.Progress." |
| 707 | "ProgressStages.Unspecified") |
| 708 | { |
| 709 | rfBpLastState = "None"; |
| 710 | } |
| 711 | else if (dbusBootProgress == |
| 712 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages." |
| 713 | "PrimaryProcInit") |
| 714 | { |
| 715 | rfBpLastState = "PrimaryProcessorInitializationStarted"; |
| 716 | } |
| 717 | else if (dbusBootProgress == |
| 718 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages." |
| 719 | "BusInit") |
| 720 | { |
| 721 | rfBpLastState = "BusInitializationStarted"; |
| 722 | } |
| 723 | else if (dbusBootProgress == |
| 724 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages." |
| 725 | "MemoryInit") |
| 726 | { |
| 727 | rfBpLastState = "MemoryInitializationStarted"; |
| 728 | } |
| 729 | else if (dbusBootProgress == |
| 730 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages." |
| 731 | "SecondaryProcInit") |
| 732 | { |
| 733 | rfBpLastState = "SecondaryProcessorInitializationStarted"; |
| 734 | } |
| 735 | else if (dbusBootProgress == |
| 736 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages." |
| 737 | "PCIInit") |
| 738 | { |
| 739 | rfBpLastState = "PCIResourceConfigStarted"; |
| 740 | } |
| 741 | else if (dbusBootProgress == |
| 742 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages." |
| 743 | "SystemSetup") |
| 744 | { |
| 745 | rfBpLastState = "SetupEntered"; |
| 746 | } |
| 747 | else if (dbusBootProgress == |
| 748 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages." |
| 749 | "SystemInitComplete") |
| 750 | { |
| 751 | rfBpLastState = "SystemHardwareInitializationComplete"; |
| 752 | } |
| 753 | else if (dbusBootProgress == |
| 754 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages." |
| 755 | "OSStart") |
| 756 | { |
| 757 | rfBpLastState = "OSBootStarted"; |
| 758 | } |
| 759 | else if (dbusBootProgress == |
| 760 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages." |
| 761 | "OSRunning") |
| 762 | { |
| 763 | rfBpLastState = "OSRunning"; |
| 764 | } |
| 765 | else |
| 766 | { |
| 767 | BMCWEB_LOG_DEBUG << "Unsupported D-Bus BootProgress " |
| 768 | << dbusBootProgress; |
| 769 | // Just return the default |
| 770 | } |
| 771 | return rfBpLastState; |
| 772 | } |
| 773 | |
| 774 | /** |
Gunnar Mills | 786d0f6 | 2020-07-08 13:43:15 -0500 | [diff] [blame] | 775 | * @brief Translates boot source from Redfish to the DBus boot paths. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 776 | * |
| 777 | * @param[in] rfSource The boot source in Redfish. |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 778 | * @param[out] bootSource The DBus source |
| 779 | * @param[out] bootMode the DBus boot mode |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 780 | * |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 781 | * @return Integer error code. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 782 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 783 | inline int assignBootParameters(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 784 | const std::string& rfSource, |
| 785 | std::string& bootSource, std::string& bootMode) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 786 | { |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 787 | bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Default"; |
| 788 | bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular"; |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 789 | |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 790 | if (rfSource == "None") |
| 791 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 792 | return 0; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 793 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 794 | if (rfSource == "Pxe") |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 795 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 796 | bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Network"; |
| 797 | } |
| 798 | else if (rfSource == "Hdd") |
| 799 | { |
| 800 | bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Disk"; |
| 801 | } |
| 802 | else if (rfSource == "Diags") |
| 803 | { |
| 804 | bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe"; |
| 805 | } |
| 806 | else if (rfSource == "Cd") |
| 807 | { |
| 808 | bootSource = |
| 809 | "xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia"; |
| 810 | } |
| 811 | else if (rfSource == "BiosSetup") |
| 812 | { |
| 813 | bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup"; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 814 | } |
Jennifer Lee | 9f16b2c | 2019-04-19 15:33:48 -0700 | [diff] [blame] | 815 | else if (rfSource == "Usb") |
| 816 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 817 | bootSource = |
| 818 | "xyz.openbmc_project.Control.Boot.Source.Sources.RemovableMedia"; |
Jennifer Lee | 9f16b2c | 2019-04-19 15:33:48 -0700 | [diff] [blame] | 819 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 820 | else |
| 821 | { |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 822 | BMCWEB_LOG_DEBUG |
| 823 | << "Invalid property value for BootSourceOverrideTarget: " |
| 824 | << bootSource; |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 825 | messages::propertyValueNotInList(aResp->res, rfSource, |
| 826 | "BootSourceTargetOverride"); |
| 827 | return -1; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 828 | } |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 829 | return 0; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 830 | } |
Ali Ahmed | 1981771 | 2021-06-29 17:01:52 -0500 | [diff] [blame] | 831 | |
Andrew Geissler | 978b880 | 2020-11-19 13:36:40 -0600 | [diff] [blame] | 832 | /** |
| 833 | * @brief Retrieves boot progress of the system |
| 834 | * |
| 835 | * @param[in] aResp Shared pointer for generating response message. |
| 836 | * |
| 837 | * @return None. |
| 838 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 839 | inline void getBootProgress(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
Andrew Geissler | 978b880 | 2020-11-19 13:36:40 -0600 | [diff] [blame] | 840 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 841 | sdbusplus::asio::getProperty<std::string>( |
| 842 | *crow::connections::systemBus, "xyz.openbmc_project.State.Host", |
| 843 | "/xyz/openbmc_project/state/host0", |
| 844 | "xyz.openbmc_project.State.Boot.Progress", "BootProgress", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 845 | [aResp](const boost::system::error_code& ec, |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 846 | const std::string& bootProgressStr) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 847 | if (ec) |
| 848 | { |
| 849 | // BootProgress is an optional object so just do nothing if |
| 850 | // not found |
| 851 | return; |
| 852 | } |
Andrew Geissler | 978b880 | 2020-11-19 13:36:40 -0600 | [diff] [blame] | 853 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 854 | BMCWEB_LOG_DEBUG << "Boot Progress: " << bootProgressStr; |
Andrew Geissler | 978b880 | 2020-11-19 13:36:40 -0600 | [diff] [blame] | 855 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 856 | aResp->res.jsonValue["BootProgress"]["LastState"] = |
| 857 | dbusToRfBootProgress(bootProgressStr); |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 858 | }); |
Andrew Geissler | 978b880 | 2020-11-19 13:36:40 -0600 | [diff] [blame] | 859 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 860 | |
| 861 | /** |
Hieu Huynh | b6d5d45 | 2022-10-07 09:41:46 +0000 | [diff] [blame] | 862 | * @brief Retrieves boot progress Last Update of the system |
| 863 | * |
| 864 | * @param[in] aResp Shared pointer for generating response message. |
| 865 | * |
| 866 | * @return None. |
| 867 | */ |
| 868 | inline void getBootProgressLastStateTime( |
| 869 | const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
| 870 | { |
| 871 | sdbusplus::asio::getProperty<uint64_t>( |
| 872 | *crow::connections::systemBus, "xyz.openbmc_project.State.Host", |
| 873 | "/xyz/openbmc_project/state/host0", |
| 874 | "xyz.openbmc_project.State.Boot.Progress", "BootProgressLastUpdate", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 875 | [aResp](const boost::system::error_code& ec, |
Hieu Huynh | b6d5d45 | 2022-10-07 09:41:46 +0000 | [diff] [blame] | 876 | const uint64_t lastStateTime) { |
| 877 | if (ec) |
| 878 | { |
| 879 | BMCWEB_LOG_DEBUG << "D-BUS response error " << ec; |
| 880 | return; |
| 881 | } |
| 882 | |
| 883 | // BootProgressLastUpdate is the last time the BootProgress property |
| 884 | // was updated. The time is the Epoch time, number of microseconds |
| 885 | // since 1 Jan 1970 00::00::00 UTC." |
| 886 | // https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/ |
| 887 | // yaml/xyz/openbmc_project/State/Boot/Progress.interface.yaml#L11 |
| 888 | |
| 889 | // Convert to ISO 8601 standard |
| 890 | aResp->res.jsonValue["BootProgress"]["LastStateTime"] = |
| 891 | redfish::time_utils::getDateTimeUintUs(lastStateTime); |
| 892 | }); |
| 893 | } |
| 894 | |
| 895 | /** |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 896 | * @brief Retrieves boot override type over DBUS and fills out the response |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 897 | * |
| 898 | * @param[in] aResp Shared pointer for generating response message. |
| 899 | * |
| 900 | * @return None. |
| 901 | */ |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 902 | |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 903 | inline void getBootOverrideType(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 904 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 905 | sdbusplus::asio::getProperty<std::string>( |
| 906 | *crow::connections::systemBus, "xyz.openbmc_project.Settings", |
| 907 | "/xyz/openbmc_project/control/host0/boot", |
| 908 | "xyz.openbmc_project.Control.Boot.Type", "BootType", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 909 | [aResp](const boost::system::error_code& ec, |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 910 | const std::string& bootType) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 911 | if (ec) |
| 912 | { |
| 913 | // not an error, don't have to have the interface |
| 914 | return; |
| 915 | } |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 916 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 917 | BMCWEB_LOG_DEBUG << "Boot type: " << bootType; |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 918 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 919 | aResp->res.jsonValue["Boot"] |
| 920 | ["BootSourceOverrideMode@Redfish.AllowableValues"] = |
Ed Tanous | 613dabe | 2022-07-09 11:17:36 -0700 | [diff] [blame] | 921 | nlohmann::json::array_t({"Legacy", "UEFI"}); |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 922 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 923 | auto rfType = dbusToRfBootType(bootType); |
| 924 | if (rfType.empty()) |
| 925 | { |
| 926 | messages::internalError(aResp->res); |
| 927 | return; |
| 928 | } |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 929 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 930 | aResp->res.jsonValue["Boot"]["BootSourceOverrideMode"] = rfType; |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 931 | }); |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | /** |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 935 | * @brief Retrieves boot override mode over DBUS and fills out the response |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 936 | * |
| 937 | * @param[in] aResp Shared pointer for generating response message. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 938 | * |
| 939 | * @return None. |
| 940 | */ |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 941 | |
| 942 | inline void getBootOverrideMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 943 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 944 | sdbusplus::asio::getProperty<std::string>( |
| 945 | *crow::connections::systemBus, "xyz.openbmc_project.Settings", |
| 946 | "/xyz/openbmc_project/control/host0/boot", |
| 947 | "xyz.openbmc_project.Control.Boot.Mode", "BootMode", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 948 | [aResp](const boost::system::error_code& ec, |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 949 | const std::string& bootModeStr) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 950 | if (ec) |
| 951 | { |
| 952 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 953 | messages::internalError(aResp->res); |
| 954 | return; |
| 955 | } |
| 956 | |
| 957 | BMCWEB_LOG_DEBUG << "Boot mode: " << bootModeStr; |
| 958 | |
| 959 | aResp->res |
| 960 | .jsonValue["Boot"] |
| 961 | ["BootSourceOverrideTarget@Redfish.AllowableValues"] = { |
| 962 | "None", "Pxe", "Hdd", "Cd", "Diags", "BiosSetup", "Usb"}; |
| 963 | |
| 964 | if (bootModeStr != |
| 965 | "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular") |
| 966 | { |
| 967 | auto rfMode = dbusToRfBootMode(bootModeStr); |
| 968 | if (!rfMode.empty()) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 969 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 970 | aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] = |
| 971 | rfMode; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 972 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 973 | } |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 974 | }); |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 975 | } |
| 976 | |
| 977 | /** |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 978 | * @brief Retrieves boot override source over DBUS |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 979 | * |
| 980 | * @param[in] aResp Shared pointer for generating response message. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 981 | * |
| 982 | * @return None. |
| 983 | */ |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 984 | |
| 985 | inline void |
| 986 | getBootOverrideSource(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 987 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 988 | sdbusplus::asio::getProperty<std::string>( |
| 989 | *crow::connections::systemBus, "xyz.openbmc_project.Settings", |
| 990 | "/xyz/openbmc_project/control/host0/boot", |
| 991 | "xyz.openbmc_project.Control.Boot.Source", "BootSource", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 992 | [aResp](const boost::system::error_code& ec, |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 993 | const std::string& bootSourceStr) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 994 | if (ec) |
| 995 | { |
| 996 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
Nan Zhou | 5ef735c | 2022-06-22 05:24:21 +0000 | [diff] [blame] | 997 | if (ec.value() == boost::asio::error::host_unreachable) |
| 998 | { |
| 999 | return; |
| 1000 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1001 | messages::internalError(aResp->res); |
| 1002 | return; |
| 1003 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1004 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1005 | BMCWEB_LOG_DEBUG << "Boot source: " << bootSourceStr; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1006 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1007 | auto rfSource = dbusToRfBootSource(bootSourceStr); |
| 1008 | if (!rfSource.empty()) |
| 1009 | { |
| 1010 | aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] = rfSource; |
| 1011 | } |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1012 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1013 | // Get BootMode as BootSourceOverrideTarget is constructed |
| 1014 | // from both BootSource and BootMode |
| 1015 | getBootOverrideMode(aResp); |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1016 | }); |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1017 | } |
| 1018 | |
| 1019 | /** |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1020 | * @brief This functions abstracts all the logic behind getting a |
| 1021 | * "BootSourceOverrideEnabled" property from an overall boot override enable |
| 1022 | * state |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1023 | * |
| 1024 | * @param[in] aResp Shared pointer for generating response message. |
| 1025 | * |
| 1026 | * @return None. |
| 1027 | */ |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1028 | |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1029 | inline void |
| 1030 | processBootOverrideEnable(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 1031 | const bool bootOverrideEnableSetting) |
| 1032 | { |
| 1033 | if (!bootOverrideEnableSetting) |
| 1034 | { |
| 1035 | aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] = "Disabled"; |
| 1036 | return; |
| 1037 | } |
| 1038 | |
| 1039 | // If boot source override is enabled, we need to check 'one_time' |
| 1040 | // property to set a correct value for the "BootSourceOverrideEnabled" |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1041 | sdbusplus::asio::getProperty<bool>( |
| 1042 | *crow::connections::systemBus, "xyz.openbmc_project.Settings", |
| 1043 | "/xyz/openbmc_project/control/host0/boot/one_time", |
| 1044 | "xyz.openbmc_project.Object.Enable", "Enabled", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1045 | [aResp](const boost::system::error_code& ec, bool oneTimeSetting) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1046 | if (ec) |
| 1047 | { |
| 1048 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1049 | messages::internalError(aResp->res); |
| 1050 | return; |
| 1051 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1052 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1053 | if (oneTimeSetting) |
| 1054 | { |
| 1055 | aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] = "Once"; |
| 1056 | } |
| 1057 | else |
| 1058 | { |
| 1059 | aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] = |
| 1060 | "Continuous"; |
| 1061 | } |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1062 | }); |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1063 | } |
| 1064 | |
| 1065 | /** |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1066 | * @brief Retrieves boot override enable over DBUS |
| 1067 | * |
| 1068 | * @param[in] aResp Shared pointer for generating response message. |
| 1069 | * |
| 1070 | * @return None. |
| 1071 | */ |
| 1072 | |
| 1073 | inline void |
| 1074 | getBootOverrideEnable(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
| 1075 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1076 | sdbusplus::asio::getProperty<bool>( |
| 1077 | *crow::connections::systemBus, "xyz.openbmc_project.Settings", |
| 1078 | "/xyz/openbmc_project/control/host0/boot", |
| 1079 | "xyz.openbmc_project.Object.Enable", "Enabled", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1080 | [aResp](const boost::system::error_code& ec, |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1081 | const bool bootOverrideEnable) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1082 | if (ec) |
| 1083 | { |
| 1084 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
Nan Zhou | 5ef735c | 2022-06-22 05:24:21 +0000 | [diff] [blame] | 1085 | if (ec.value() == boost::asio::error::host_unreachable) |
| 1086 | { |
| 1087 | return; |
| 1088 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1089 | messages::internalError(aResp->res); |
| 1090 | return; |
| 1091 | } |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1092 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1093 | processBootOverrideEnable(aResp, bootOverrideEnable); |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1094 | }); |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1095 | } |
| 1096 | |
| 1097 | /** |
| 1098 | * @brief Retrieves boot source override properties |
| 1099 | * |
| 1100 | * @param[in] aResp Shared pointer for generating response message. |
| 1101 | * |
| 1102 | * @return None. |
| 1103 | */ |
| 1104 | inline void getBootProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
| 1105 | { |
| 1106 | BMCWEB_LOG_DEBUG << "Get boot information."; |
| 1107 | |
| 1108 | getBootOverrideSource(aResp); |
| 1109 | getBootOverrideType(aResp); |
| 1110 | getBootOverrideEnable(aResp); |
| 1111 | } |
| 1112 | |
| 1113 | /** |
Gunnar Mills | c0557e1 | 2020-06-30 11:26:20 -0500 | [diff] [blame] | 1114 | * @brief Retrieves the Last Reset Time |
| 1115 | * |
| 1116 | * "Reset" is an overloaded term in Redfish, "Reset" includes power on |
| 1117 | * and power off. Even though this is the "system" Redfish object look at the |
| 1118 | * chassis D-Bus interface for the LastStateChangeTime since this has the |
| 1119 | * last power operation time. |
| 1120 | * |
| 1121 | * @param[in] aResp Shared pointer for generating response message. |
| 1122 | * |
| 1123 | * @return None. |
| 1124 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 1125 | inline void getLastResetTime(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
Gunnar Mills | c0557e1 | 2020-06-30 11:26:20 -0500 | [diff] [blame] | 1126 | { |
| 1127 | BMCWEB_LOG_DEBUG << "Getting System Last Reset Time"; |
| 1128 | |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1129 | sdbusplus::asio::getProperty<uint64_t>( |
| 1130 | *crow::connections::systemBus, "xyz.openbmc_project.State.Chassis", |
| 1131 | "/xyz/openbmc_project/state/chassis0", |
| 1132 | "xyz.openbmc_project.State.Chassis", "LastStateChangeTime", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1133 | [aResp](const boost::system::error_code& ec, uint64_t lastResetTime) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1134 | if (ec) |
| 1135 | { |
| 1136 | BMCWEB_LOG_DEBUG << "D-BUS response error " << ec; |
| 1137 | return; |
| 1138 | } |
Gunnar Mills | c0557e1 | 2020-06-30 11:26:20 -0500 | [diff] [blame] | 1139 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1140 | // LastStateChangeTime is epoch time, in milliseconds |
| 1141 | // https://github.com/openbmc/phosphor-dbus-interfaces/blob/33e8e1dd64da53a66e888d33dc82001305cd0bf9/xyz/openbmc_project/State/Chassis.interface.yaml#L19 |
| 1142 | uint64_t lastResetTimeStamp = lastResetTime / 1000; |
Gunnar Mills | c0557e1 | 2020-06-30 11:26:20 -0500 | [diff] [blame] | 1143 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1144 | // Convert to ISO 8601 standard |
| 1145 | aResp->res.jsonValue["LastResetTime"] = |
Ed Tanous | 2b82937 | 2022-08-03 14:22:34 -0700 | [diff] [blame] | 1146 | redfish::time_utils::getDateTimeUint(lastResetTimeStamp); |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1147 | }); |
Gunnar Mills | c0557e1 | 2020-06-30 11:26:20 -0500 | [diff] [blame] | 1148 | } |
| 1149 | |
| 1150 | /** |
Corey Hardesty | 797d5da | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 1151 | * @brief Retrieves the number of automatic boot Retry attempts allowed/left. |
| 1152 | * |
| 1153 | * The total number of automatic reboot retries allowed "RetryAttempts" and its |
| 1154 | * corresponding property "AttemptsLeft" that keeps track of the amount of |
| 1155 | * automatic retry attempts left are hosted in phosphor-state-manager through |
| 1156 | * dbus. |
| 1157 | * |
| 1158 | * @param[in] aResp Shared pointer for generating response message. |
| 1159 | * |
| 1160 | * @return None. |
| 1161 | */ |
| 1162 | inline void |
| 1163 | getAutomaticRebootAttempts(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
| 1164 | { |
| 1165 | BMCWEB_LOG_DEBUG << "Get Automatic Retry policy"; |
| 1166 | |
| 1167 | sdbusplus::asio::getAllProperties( |
| 1168 | *crow::connections::systemBus, "xyz.openbmc_project.State.Host", |
| 1169 | "/xyz/openbmc_project/state/host0", |
| 1170 | "xyz.openbmc_project.Control.Boot.RebootAttempts", |
| 1171 | [aResp{aResp}](const boost::system::error_code& ec, |
| 1172 | const dbus::utility::DBusPropertiesMap& propertiesList) { |
| 1173 | if (ec) |
| 1174 | { |
| 1175 | if (ec.value() != EBADR) |
| 1176 | { |
| 1177 | BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec; |
| 1178 | messages::internalError(aResp->res); |
| 1179 | } |
| 1180 | return; |
| 1181 | } |
| 1182 | |
| 1183 | const uint32_t* attemptsLeft = nullptr; |
| 1184 | const uint32_t* retryAttempts = nullptr; |
| 1185 | |
| 1186 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 1187 | dbus_utils::UnpackErrorPrinter(), propertiesList, "AttemptsLeft", |
| 1188 | attemptsLeft, "RetryAttempts", retryAttempts); |
| 1189 | |
| 1190 | if (!success) |
| 1191 | { |
| 1192 | messages::internalError(aResp->res); |
| 1193 | return; |
| 1194 | } |
| 1195 | |
| 1196 | if (attemptsLeft != nullptr) |
| 1197 | { |
| 1198 | aResp->res.jsonValue["Boot"]["RemainingAutomaticRetryAttempts"] = |
| 1199 | *attemptsLeft; |
| 1200 | } |
| 1201 | |
| 1202 | if (retryAttempts != nullptr) |
| 1203 | { |
| 1204 | aResp->res.jsonValue["Boot"]["AutomaticRetryAttempts"] = |
| 1205 | *retryAttempts; |
| 1206 | } |
| 1207 | }); |
| 1208 | } |
| 1209 | |
| 1210 | /** |
Gunnar Mills | 6bd5a8d | 2020-05-16 18:49:33 -0500 | [diff] [blame] | 1211 | * @brief Retrieves Automatic Retry properties. Known on D-Bus as AutoReboot. |
| 1212 | * |
| 1213 | * @param[in] aResp Shared pointer for generating response message. |
| 1214 | * |
| 1215 | * @return None. |
| 1216 | */ |
Corey Hardesty | 797d5da | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 1217 | inline void |
| 1218 | getAutomaticRetryPolicy(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
Gunnar Mills | 6bd5a8d | 2020-05-16 18:49:33 -0500 | [diff] [blame] | 1219 | { |
| 1220 | BMCWEB_LOG_DEBUG << "Get Automatic Retry policy"; |
| 1221 | |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1222 | sdbusplus::asio::getProperty<bool>( |
| 1223 | *crow::connections::systemBus, "xyz.openbmc_project.Settings", |
| 1224 | "/xyz/openbmc_project/control/host0/auto_reboot", |
| 1225 | "xyz.openbmc_project.Control.Boot.RebootPolicy", "AutoReboot", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1226 | [aResp](const boost::system::error_code& ec, bool autoRebootEnabled) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1227 | if (ec) |
| 1228 | { |
Corey Hardesty | 797d5da | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 1229 | if (ec.value() != EBADR) |
| 1230 | { |
| 1231 | BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec; |
| 1232 | messages::internalError(aResp->res); |
| 1233 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1234 | return; |
| 1235 | } |
Gunnar Mills | 6bd5a8d | 2020-05-16 18:49:33 -0500 | [diff] [blame] | 1236 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1237 | BMCWEB_LOG_DEBUG << "Auto Reboot: " << autoRebootEnabled; |
| 1238 | if (autoRebootEnabled) |
| 1239 | { |
| 1240 | aResp->res.jsonValue["Boot"]["AutomaticRetryConfig"] = |
| 1241 | "RetryAttempts"; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1242 | } |
| 1243 | else |
| 1244 | { |
| 1245 | aResp->res.jsonValue["Boot"]["AutomaticRetryConfig"] = "Disabled"; |
| 1246 | } |
Corey Hardesty | 797d5da | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 1247 | getAutomaticRebootAttempts(aResp); |
Gunnar Mills | 69f3530 | 2020-05-17 16:06:31 -0500 | [diff] [blame] | 1248 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1249 | // "AutomaticRetryConfig" can be 3 values, Disabled, RetryAlways, |
| 1250 | // and RetryAttempts. OpenBMC only supports Disabled and |
| 1251 | // RetryAttempts. |
| 1252 | aResp->res.jsonValue["Boot"] |
| 1253 | ["AutomaticRetryConfig@Redfish.AllowableValues"] = { |
| 1254 | "Disabled", "RetryAttempts"}; |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1255 | }); |
Gunnar Mills | 6bd5a8d | 2020-05-16 18:49:33 -0500 | [diff] [blame] | 1256 | } |
| 1257 | |
| 1258 | /** |
Corey Hardesty | 797d5da | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 1259 | * @brief Sets RetryAttempts |
| 1260 | * |
| 1261 | * @param[in] aResp Shared pointer for generating response message. |
| 1262 | * @param[in] retryAttempts "AutomaticRetryAttempts" from request. |
| 1263 | * |
| 1264 | *@return None. |
| 1265 | */ |
| 1266 | |
| 1267 | inline void |
| 1268 | setAutomaticRetryAttempts(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 1269 | const uint32_t retryAttempts) |
| 1270 | { |
| 1271 | BMCWEB_LOG_DEBUG << "Set Automatic Retry Attempts."; |
| 1272 | crow::connections::systemBus->async_method_call( |
| 1273 | [aResp](const boost::system::error_code& ec) { |
| 1274 | if (ec) |
| 1275 | { |
| 1276 | BMCWEB_LOG_ERROR |
| 1277 | << "DBUS response error: Set setAutomaticRetryAttempts" << ec; |
| 1278 | messages::internalError(aResp->res); |
| 1279 | return; |
| 1280 | } |
| 1281 | }, |
| 1282 | "xyz.openbmc_project.State.Host", "/xyz/openbmc_project/state/host0", |
| 1283 | "org.freedesktop.DBus.Properties", "Set", |
| 1284 | "xyz.openbmc_project.Control.Boot.RebootAttempts", "RetryAttempts", |
| 1285 | std::variant<uint32_t>(retryAttempts)); |
| 1286 | } |
| 1287 | |
| 1288 | /** |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1289 | * @brief Retrieves power restore policy over DBUS. |
| 1290 | * |
| 1291 | * @param[in] aResp Shared pointer for generating response message. |
| 1292 | * |
| 1293 | * @return None. |
| 1294 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 1295 | inline void |
| 1296 | getPowerRestorePolicy(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1297 | { |
| 1298 | BMCWEB_LOG_DEBUG << "Get power restore policy"; |
| 1299 | |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1300 | sdbusplus::asio::getProperty<std::string>( |
| 1301 | *crow::connections::systemBus, "xyz.openbmc_project.Settings", |
| 1302 | "/xyz/openbmc_project/control/host0/power_restore_policy", |
| 1303 | "xyz.openbmc_project.Control.Power.RestorePolicy", "PowerRestorePolicy", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1304 | [aResp](const boost::system::error_code& ec, |
| 1305 | const std::string& policy) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1306 | if (ec) |
| 1307 | { |
| 1308 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1309 | return; |
| 1310 | } |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1311 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1312 | const boost::container::flat_map<std::string, std::string> policyMaps = { |
| 1313 | {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOn", |
| 1314 | "AlwaysOn"}, |
| 1315 | {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOff", |
| 1316 | "AlwaysOff"}, |
| 1317 | {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy.Restore", |
| 1318 | "LastState"}, |
| 1319 | // Return `AlwaysOff` when power restore policy set to "None" |
| 1320 | {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy.None", |
| 1321 | "AlwaysOff"}}; |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1322 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1323 | auto policyMapsIt = policyMaps.find(policy); |
| 1324 | if (policyMapsIt == policyMaps.end()) |
| 1325 | { |
| 1326 | messages::internalError(aResp->res); |
| 1327 | return; |
| 1328 | } |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1329 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1330 | aResp->res.jsonValue["PowerRestorePolicy"] = policyMapsIt->second; |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 1331 | }); |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1332 | } |
| 1333 | |
| 1334 | /** |
Ali Ahmed | 1981771 | 2021-06-29 17:01:52 -0500 | [diff] [blame] | 1335 | * @brief Get TrustedModuleRequiredToBoot property. Determines whether or not |
| 1336 | * TPM is required for booting the host. |
| 1337 | * |
| 1338 | * @param[in] aResp Shared pointer for generating response message. |
| 1339 | * |
| 1340 | * @return None. |
| 1341 | */ |
| 1342 | inline void getTrustedModuleRequiredToBoot( |
| 1343 | const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
| 1344 | { |
| 1345 | BMCWEB_LOG_DEBUG << "Get TPM required to boot."; |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 1346 | constexpr std::array<std::string_view, 1> interfaces = { |
| 1347 | "xyz.openbmc_project.Control.TPM.Policy"}; |
| 1348 | dbus::utility::getSubTree( |
| 1349 | "/", 0, interfaces, |
| 1350 | [aResp](const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 1351 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1352 | if (ec) |
| 1353 | { |
| 1354 | BMCWEB_LOG_DEBUG << "DBUS response error on TPM.Policy GetSubTree" |
| 1355 | << ec; |
| 1356 | // This is an optional D-Bus object so just return if |
| 1357 | // error occurs |
| 1358 | return; |
| 1359 | } |
| 1360 | if (subtree.empty()) |
| 1361 | { |
| 1362 | // As noted above, this is an optional interface so just return |
| 1363 | // if there is no instance found |
| 1364 | return; |
| 1365 | } |
| 1366 | |
| 1367 | /* When there is more than one TPMEnable object... */ |
| 1368 | if (subtree.size() > 1) |
| 1369 | { |
| 1370 | BMCWEB_LOG_DEBUG |
| 1371 | << "DBUS response has more than 1 TPM Enable object:" |
| 1372 | << subtree.size(); |
| 1373 | // Throw an internal Error and return |
| 1374 | messages::internalError(aResp->res); |
| 1375 | return; |
| 1376 | } |
| 1377 | |
| 1378 | // Make sure the Dbus response map has a service and objectPath |
| 1379 | // field |
| 1380 | if (subtree[0].first.empty() || subtree[0].second.size() != 1) |
| 1381 | { |
| 1382 | BMCWEB_LOG_DEBUG << "TPM.Policy mapper error!"; |
| 1383 | messages::internalError(aResp->res); |
| 1384 | return; |
| 1385 | } |
| 1386 | |
| 1387 | const std::string& path = subtree[0].first; |
| 1388 | const std::string& serv = subtree[0].second.begin()->first; |
| 1389 | |
| 1390 | // Valid TPM Enable object found, now reading the current value |
| 1391 | sdbusplus::asio::getProperty<bool>( |
| 1392 | *crow::connections::systemBus, serv, path, |
| 1393 | "xyz.openbmc_project.Control.TPM.Policy", "TPMEnable", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1394 | [aResp](const boost::system::error_code& ec2, bool tpmRequired) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 1395 | if (ec2) |
Ali Ahmed | 1981771 | 2021-06-29 17:01:52 -0500 | [diff] [blame] | 1396 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1397 | BMCWEB_LOG_DEBUG << "D-BUS response error on TPM.Policy Get" |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 1398 | << ec2; |
Ali Ahmed | 1981771 | 2021-06-29 17:01:52 -0500 | [diff] [blame] | 1399 | messages::internalError(aResp->res); |
| 1400 | return; |
| 1401 | } |
| 1402 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1403 | if (tpmRequired) |
Ali Ahmed | 1981771 | 2021-06-29 17:01:52 -0500 | [diff] [blame] | 1404 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1405 | aResp->res.jsonValue["Boot"]["TrustedModuleRequiredToBoot"] = |
| 1406 | "Required"; |
Ali Ahmed | 1981771 | 2021-06-29 17:01:52 -0500 | [diff] [blame] | 1407 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1408 | else |
| 1409 | { |
| 1410 | aResp->res.jsonValue["Boot"]["TrustedModuleRequiredToBoot"] = |
| 1411 | "Disabled"; |
| 1412 | } |
| 1413 | }); |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 1414 | }); |
Ali Ahmed | 1981771 | 2021-06-29 17:01:52 -0500 | [diff] [blame] | 1415 | } |
| 1416 | |
| 1417 | /** |
Ali Ahmed | 1c05dae | 2021-06-29 17:49:22 -0500 | [diff] [blame] | 1418 | * @brief Set TrustedModuleRequiredToBoot property. Determines whether or not |
| 1419 | * TPM is required for booting the host. |
| 1420 | * |
| 1421 | * @param[in] aResp Shared pointer for generating response message. |
| 1422 | * @param[in] tpmRequired Value to set TPM Required To Boot property to. |
| 1423 | * |
| 1424 | * @return None. |
| 1425 | */ |
| 1426 | inline void setTrustedModuleRequiredToBoot( |
| 1427 | const std::shared_ptr<bmcweb::AsyncResp>& aResp, const bool tpmRequired) |
| 1428 | { |
| 1429 | BMCWEB_LOG_DEBUG << "Set TrustedModuleRequiredToBoot."; |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 1430 | constexpr std::array<std::string_view, 1> interfaces = { |
| 1431 | "xyz.openbmc_project.Control.TPM.Policy"}; |
| 1432 | dbus::utility::getSubTree( |
| 1433 | "/", 0, interfaces, |
| 1434 | [aResp, |
| 1435 | tpmRequired](const boost::system::error_code& ec, |
| 1436 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1437 | if (ec) |
| 1438 | { |
| 1439 | BMCWEB_LOG_DEBUG << "DBUS response error on TPM.Policy GetSubTree" |
| 1440 | << ec; |
| 1441 | messages::internalError(aResp->res); |
| 1442 | return; |
| 1443 | } |
| 1444 | if (subtree.empty()) |
| 1445 | { |
| 1446 | messages::propertyValueNotInList(aResp->res, "ComputerSystem", |
| 1447 | "TrustedModuleRequiredToBoot"); |
| 1448 | return; |
| 1449 | } |
| 1450 | |
| 1451 | /* When there is more than one TPMEnable object... */ |
| 1452 | if (subtree.size() > 1) |
| 1453 | { |
| 1454 | BMCWEB_LOG_DEBUG |
| 1455 | << "DBUS response has more than 1 TPM Enable object:" |
| 1456 | << subtree.size(); |
| 1457 | // Throw an internal Error and return |
| 1458 | messages::internalError(aResp->res); |
| 1459 | return; |
| 1460 | } |
| 1461 | |
| 1462 | // Make sure the Dbus response map has a service and objectPath |
| 1463 | // field |
| 1464 | if (subtree[0].first.empty() || subtree[0].second.size() != 1) |
| 1465 | { |
| 1466 | BMCWEB_LOG_DEBUG << "TPM.Policy mapper error!"; |
| 1467 | messages::internalError(aResp->res); |
| 1468 | return; |
| 1469 | } |
| 1470 | |
| 1471 | const std::string& path = subtree[0].first; |
| 1472 | const std::string& serv = subtree[0].second.begin()->first; |
| 1473 | |
| 1474 | if (serv.empty()) |
| 1475 | { |
| 1476 | BMCWEB_LOG_DEBUG << "TPM.Policy service mapper error!"; |
| 1477 | messages::internalError(aResp->res); |
| 1478 | return; |
| 1479 | } |
| 1480 | |
| 1481 | // Valid TPM Enable object found, now setting the value |
| 1482 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1483 | [aResp](const boost::system::error_code& ec2) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 1484 | if (ec2) |
Ali Ahmed | 1c05dae | 2021-06-29 17:49:22 -0500 | [diff] [blame] | 1485 | { |
| 1486 | BMCWEB_LOG_DEBUG |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1487 | << "DBUS response error: Set TrustedModuleRequiredToBoot" |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 1488 | << ec2; |
Ali Ahmed | 1c05dae | 2021-06-29 17:49:22 -0500 | [diff] [blame] | 1489 | messages::internalError(aResp->res); |
| 1490 | return; |
| 1491 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1492 | BMCWEB_LOG_DEBUG << "Set TrustedModuleRequiredToBoot done."; |
| 1493 | }, |
| 1494 | serv, path, "org.freedesktop.DBus.Properties", "Set", |
| 1495 | "xyz.openbmc_project.Control.TPM.Policy", "TPMEnable", |
| 1496 | dbus::utility::DbusVariantType(tpmRequired)); |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 1497 | }); |
Ali Ahmed | 1c05dae | 2021-06-29 17:49:22 -0500 | [diff] [blame] | 1498 | } |
| 1499 | |
| 1500 | /** |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1501 | * @brief Sets boot properties into DBUS object(s). |
| 1502 | * |
| 1503 | * @param[in] aResp Shared pointer for generating response message. |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1504 | * @param[in] bootType The boot type to set. |
| 1505 | * @return Integer error code. |
| 1506 | */ |
| 1507 | inline void setBootType(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1508 | const std::optional<std::string>& bootType) |
| 1509 | { |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1510 | std::string bootTypeStr; |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1511 | |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1512 | if (!bootType) |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1513 | { |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1514 | return; |
| 1515 | } |
| 1516 | |
| 1517 | // Source target specified |
| 1518 | BMCWEB_LOG_DEBUG << "Boot type: " << *bootType; |
| 1519 | // Figure out which DBUS interface and property to use |
| 1520 | if (*bootType == "Legacy") |
| 1521 | { |
| 1522 | bootTypeStr = "xyz.openbmc_project.Control.Boot.Type.Types.Legacy"; |
| 1523 | } |
| 1524 | else if (*bootType == "UEFI") |
| 1525 | { |
| 1526 | bootTypeStr = "xyz.openbmc_project.Control.Boot.Type.Types.EFI"; |
| 1527 | } |
| 1528 | else |
| 1529 | { |
| 1530 | BMCWEB_LOG_DEBUG << "Invalid property value for " |
| 1531 | "BootSourceOverrideMode: " |
| 1532 | << *bootType; |
| 1533 | messages::propertyValueNotInList(aResp->res, *bootType, |
| 1534 | "BootSourceOverrideMode"); |
| 1535 | return; |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | // Act on validated parameters |
| 1539 | BMCWEB_LOG_DEBUG << "DBUS boot type: " << bootTypeStr; |
| 1540 | |
| 1541 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1542 | [aResp](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1543 | if (ec) |
| 1544 | { |
| 1545 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1546 | if (ec.value() == boost::asio::error::host_unreachable) |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1547 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1548 | messages::resourceNotFound(aResp->res, "Set", "BootType"); |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1549 | return; |
| 1550 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1551 | messages::internalError(aResp->res); |
| 1552 | return; |
| 1553 | } |
| 1554 | BMCWEB_LOG_DEBUG << "Boot type update done."; |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1555 | }, |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1556 | "xyz.openbmc_project.Settings", |
| 1557 | "/xyz/openbmc_project/control/host0/boot", |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1558 | "org.freedesktop.DBus.Properties", "Set", |
| 1559 | "xyz.openbmc_project.Control.Boot.Type", "BootType", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 1560 | dbus::utility::DbusVariantType(bootTypeStr)); |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1561 | } |
| 1562 | |
| 1563 | /** |
| 1564 | * @brief Sets boot properties into DBUS object(s). |
| 1565 | * |
| 1566 | * @param[in] aResp Shared pointer for generating response message. |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1567 | * @param[in] bootType The boot type to set. |
| 1568 | * @return Integer error code. |
| 1569 | */ |
| 1570 | inline void setBootEnable(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 1571 | const std::optional<std::string>& bootEnable) |
| 1572 | { |
| 1573 | if (!bootEnable) |
| 1574 | { |
| 1575 | return; |
| 1576 | } |
| 1577 | // Source target specified |
| 1578 | BMCWEB_LOG_DEBUG << "Boot enable: " << *bootEnable; |
| 1579 | |
| 1580 | bool bootOverrideEnable = false; |
| 1581 | bool bootOverridePersistent = false; |
| 1582 | // Figure out which DBUS interface and property to use |
| 1583 | if (*bootEnable == "Disabled") |
| 1584 | { |
| 1585 | bootOverrideEnable = false; |
| 1586 | } |
| 1587 | else if (*bootEnable == "Once") |
| 1588 | { |
| 1589 | bootOverrideEnable = true; |
| 1590 | bootOverridePersistent = false; |
| 1591 | } |
| 1592 | else if (*bootEnable == "Continuous") |
| 1593 | { |
| 1594 | bootOverrideEnable = true; |
| 1595 | bootOverridePersistent = true; |
| 1596 | } |
| 1597 | else |
| 1598 | { |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 1599 | BMCWEB_LOG_DEBUG |
| 1600 | << "Invalid property value for BootSourceOverrideEnabled: " |
| 1601 | << *bootEnable; |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1602 | messages::propertyValueNotInList(aResp->res, *bootEnable, |
| 1603 | "BootSourceOverrideEnabled"); |
| 1604 | return; |
| 1605 | } |
| 1606 | |
| 1607 | // Act on validated parameters |
| 1608 | BMCWEB_LOG_DEBUG << "DBUS boot override enable: " << bootOverrideEnable; |
| 1609 | |
| 1610 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1611 | [aResp](const boost::system::error_code& ec2) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 1612 | if (ec2) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1613 | { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 1614 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec2; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1615 | messages::internalError(aResp->res); |
| 1616 | return; |
| 1617 | } |
| 1618 | BMCWEB_LOG_DEBUG << "Boot override enable update done."; |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1619 | }, |
| 1620 | "xyz.openbmc_project.Settings", |
| 1621 | "/xyz/openbmc_project/control/host0/boot", |
| 1622 | "org.freedesktop.DBus.Properties", "Set", |
| 1623 | "xyz.openbmc_project.Object.Enable", "Enabled", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 1624 | dbus::utility::DbusVariantType(bootOverrideEnable)); |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1625 | |
| 1626 | if (!bootOverrideEnable) |
| 1627 | { |
| 1628 | return; |
| 1629 | } |
| 1630 | |
| 1631 | // In case boot override is enabled we need to set correct value for the |
| 1632 | // 'one_time' enable DBus interface |
| 1633 | BMCWEB_LOG_DEBUG << "DBUS boot override persistent: " |
| 1634 | << bootOverridePersistent; |
| 1635 | |
| 1636 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1637 | [aResp](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1638 | if (ec) |
| 1639 | { |
| 1640 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1641 | messages::internalError(aResp->res); |
| 1642 | return; |
| 1643 | } |
| 1644 | BMCWEB_LOG_DEBUG << "Boot one_time update done."; |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1645 | }, |
| 1646 | "xyz.openbmc_project.Settings", |
| 1647 | "/xyz/openbmc_project/control/host0/boot/one_time", |
| 1648 | "org.freedesktop.DBus.Properties", "Set", |
| 1649 | "xyz.openbmc_project.Object.Enable", "Enabled", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 1650 | dbus::utility::DbusVariantType(!bootOverridePersistent)); |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1651 | } |
| 1652 | |
| 1653 | /** |
| 1654 | * @brief Sets boot properties into DBUS object(s). |
| 1655 | * |
| 1656 | * @param[in] aResp Shared pointer for generating response message. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1657 | * @param[in] bootSource The boot source to set. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1658 | * |
Johnathan Mantey | 265c160 | 2019-08-08 11:02:51 -0700 | [diff] [blame] | 1659 | * @return Integer error code. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1660 | */ |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1661 | inline void setBootModeOrSource(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1662 | const std::optional<std::string>& bootSource) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1663 | { |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1664 | std::string bootSourceStr; |
| 1665 | std::string bootModeStr; |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1666 | |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1667 | if (!bootSource) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1668 | { |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1669 | return; |
| 1670 | } |
| 1671 | |
| 1672 | // Source target specified |
| 1673 | BMCWEB_LOG_DEBUG << "Boot source: " << *bootSource; |
| 1674 | // Figure out which DBUS interface and property to use |
Ed Tanous | e662eae | 2022-01-25 10:39:19 -0800 | [diff] [blame] | 1675 | if (assignBootParameters(aResp, *bootSource, bootSourceStr, bootModeStr) != |
| 1676 | 0) |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1677 | { |
| 1678 | BMCWEB_LOG_DEBUG |
| 1679 | << "Invalid property value for BootSourceOverrideTarget: " |
| 1680 | << *bootSource; |
| 1681 | messages::propertyValueNotInList(aResp->res, *bootSource, |
| 1682 | "BootSourceTargetOverride"); |
| 1683 | return; |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1684 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1685 | |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1686 | // Act on validated parameters |
| 1687 | BMCWEB_LOG_DEBUG << "DBUS boot source: " << bootSourceStr; |
| 1688 | BMCWEB_LOG_DEBUG << "DBUS boot mode: " << bootModeStr; |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1689 | |
| 1690 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1691 | [aResp](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1692 | if (ec) |
| 1693 | { |
| 1694 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1695 | messages::internalError(aResp->res); |
| 1696 | return; |
| 1697 | } |
| 1698 | BMCWEB_LOG_DEBUG << "Boot source update done."; |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1699 | }, |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1700 | "xyz.openbmc_project.Settings", |
| 1701 | "/xyz/openbmc_project/control/host0/boot", |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1702 | "org.freedesktop.DBus.Properties", "Set", |
| 1703 | "xyz.openbmc_project.Control.Boot.Source", "BootSource", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 1704 | dbus::utility::DbusVariantType(bootSourceStr)); |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1705 | |
| 1706 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1707 | [aResp](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1708 | if (ec) |
| 1709 | { |
| 1710 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1711 | messages::internalError(aResp->res); |
| 1712 | return; |
| 1713 | } |
| 1714 | BMCWEB_LOG_DEBUG << "Boot mode update done."; |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1715 | }, |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1716 | "xyz.openbmc_project.Settings", |
| 1717 | "/xyz/openbmc_project/control/host0/boot", |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1718 | "org.freedesktop.DBus.Properties", "Set", |
| 1719 | "xyz.openbmc_project.Control.Boot.Mode", "BootMode", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 1720 | dbus::utility::DbusVariantType(bootModeStr)); |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1721 | } |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1722 | |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1723 | /** |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1724 | * @brief Sets Boot source override properties. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1725 | * |
| 1726 | * @param[in] aResp Shared pointer for generating response message. |
| 1727 | * @param[in] bootSource The boot source from incoming RF request. |
Konstantin Aladyshev | cd9a466 | 2021-02-26 12:37:07 +0300 | [diff] [blame] | 1728 | * @param[in] bootType The boot type from incoming RF request. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1729 | * @param[in] bootEnable The boot override enable from incoming RF request. |
| 1730 | * |
Johnathan Mantey | 265c160 | 2019-08-08 11:02:51 -0700 | [diff] [blame] | 1731 | * @return Integer error code. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1732 | */ |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1733 | |
| 1734 | inline void setBootProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 1735 | const std::optional<std::string>& bootSource, |
| 1736 | const std::optional<std::string>& bootType, |
| 1737 | const std::optional<std::string>& bootEnable) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1738 | { |
| 1739 | BMCWEB_LOG_DEBUG << "Set boot information."; |
| 1740 | |
Konstantin Aladyshev | c21865c | 2021-06-21 14:49:16 +0300 | [diff] [blame] | 1741 | setBootModeOrSource(aResp, bootSource); |
| 1742 | setBootType(aResp, bootType); |
| 1743 | setBootEnable(aResp, bootEnable); |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1744 | } |
| 1745 | |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1746 | /** |
Gunnar Mills | 98e386e | 2020-10-30 14:58:09 -0500 | [diff] [blame] | 1747 | * @brief Sets AssetTag |
| 1748 | * |
| 1749 | * @param[in] aResp Shared pointer for generating response message. |
| 1750 | * @param[in] assetTag "AssetTag" from request. |
| 1751 | * |
| 1752 | * @return None. |
| 1753 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 1754 | inline void setAssetTag(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
Gunnar Mills | 98e386e | 2020-10-30 14:58:09 -0500 | [diff] [blame] | 1755 | const std::string& assetTag) |
| 1756 | { |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 1757 | constexpr std::array<std::string_view, 1> interfaces = { |
| 1758 | "xyz.openbmc_project.Inventory.Item.System"}; |
| 1759 | dbus::utility::getSubTree( |
| 1760 | "/xyz/openbmc_project/inventory", 0, interfaces, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 1761 | [aResp, |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 1762 | assetTag](const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 1763 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1764 | if (ec) |
| 1765 | { |
| 1766 | BMCWEB_LOG_DEBUG << "D-Bus response error on GetSubTree " << ec; |
| 1767 | messages::internalError(aResp->res); |
| 1768 | return; |
| 1769 | } |
| 1770 | if (subtree.empty()) |
| 1771 | { |
| 1772 | BMCWEB_LOG_DEBUG << "Can't find system D-Bus object!"; |
| 1773 | messages::internalError(aResp->res); |
| 1774 | return; |
| 1775 | } |
| 1776 | // Assume only 1 system D-Bus object |
| 1777 | // Throw an error if there is more than 1 |
| 1778 | if (subtree.size() > 1) |
| 1779 | { |
| 1780 | BMCWEB_LOG_DEBUG << "Found more than 1 system D-Bus object!"; |
| 1781 | messages::internalError(aResp->res); |
| 1782 | return; |
| 1783 | } |
| 1784 | if (subtree[0].first.empty() || subtree[0].second.size() != 1) |
| 1785 | { |
| 1786 | BMCWEB_LOG_DEBUG << "Asset Tag Set mapper error!"; |
| 1787 | messages::internalError(aResp->res); |
| 1788 | return; |
| 1789 | } |
Gunnar Mills | 98e386e | 2020-10-30 14:58:09 -0500 | [diff] [blame] | 1790 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1791 | const std::string& path = subtree[0].first; |
| 1792 | const std::string& service = subtree[0].second.begin()->first; |
Gunnar Mills | 98e386e | 2020-10-30 14:58:09 -0500 | [diff] [blame] | 1793 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1794 | if (service.empty()) |
| 1795 | { |
| 1796 | BMCWEB_LOG_DEBUG << "Asset Tag Set service mapper error!"; |
| 1797 | messages::internalError(aResp->res); |
| 1798 | return; |
| 1799 | } |
| 1800 | |
| 1801 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1802 | [aResp](const boost::system::error_code& ec2) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1803 | if (ec2) |
Gunnar Mills | 98e386e | 2020-10-30 14:58:09 -0500 | [diff] [blame] | 1804 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1805 | BMCWEB_LOG_DEBUG << "D-Bus response error on AssetTag Set " |
| 1806 | << ec2; |
Gunnar Mills | 98e386e | 2020-10-30 14:58:09 -0500 | [diff] [blame] | 1807 | messages::internalError(aResp->res); |
| 1808 | return; |
| 1809 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1810 | }, |
| 1811 | service, path, "org.freedesktop.DBus.Properties", "Set", |
| 1812 | "xyz.openbmc_project.Inventory.Decorator.AssetTag", "AssetTag", |
| 1813 | dbus::utility::DbusVariantType(assetTag)); |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 1814 | }); |
Gunnar Mills | 98e386e | 2020-10-30 14:58:09 -0500 | [diff] [blame] | 1815 | } |
| 1816 | |
| 1817 | /** |
Gunnar Mills | 69f3530 | 2020-05-17 16:06:31 -0500 | [diff] [blame] | 1818 | * @brief Sets automaticRetry (Auto Reboot) |
| 1819 | * |
| 1820 | * @param[in] aResp Shared pointer for generating response message. |
| 1821 | * @param[in] automaticRetryConfig "AutomaticRetryConfig" from request. |
| 1822 | * |
| 1823 | * @return None. |
| 1824 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 1825 | inline void setAutomaticRetry(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
Ed Tanous | f23b729 | 2020-10-15 09:41:17 -0700 | [diff] [blame] | 1826 | const std::string& automaticRetryConfig) |
Gunnar Mills | 69f3530 | 2020-05-17 16:06:31 -0500 | [diff] [blame] | 1827 | { |
| 1828 | BMCWEB_LOG_DEBUG << "Set Automatic Retry."; |
| 1829 | |
| 1830 | // OpenBMC only supports "Disabled" and "RetryAttempts". |
Ed Tanous | 543f440 | 2022-01-06 13:12:53 -0800 | [diff] [blame] | 1831 | bool autoRebootEnabled = false; |
Gunnar Mills | 69f3530 | 2020-05-17 16:06:31 -0500 | [diff] [blame] | 1832 | |
| 1833 | if (automaticRetryConfig == "Disabled") |
| 1834 | { |
| 1835 | autoRebootEnabled = false; |
| 1836 | } |
| 1837 | else if (automaticRetryConfig == "RetryAttempts") |
| 1838 | { |
| 1839 | autoRebootEnabled = true; |
| 1840 | } |
| 1841 | else |
| 1842 | { |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 1843 | BMCWEB_LOG_DEBUG << "Invalid property value for AutomaticRetryConfig: " |
Gunnar Mills | 69f3530 | 2020-05-17 16:06:31 -0500 | [diff] [blame] | 1844 | << automaticRetryConfig; |
| 1845 | messages::propertyValueNotInList(aResp->res, automaticRetryConfig, |
| 1846 | "AutomaticRetryConfig"); |
| 1847 | return; |
| 1848 | } |
| 1849 | |
| 1850 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1851 | [aResp](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1852 | if (ec) |
| 1853 | { |
| 1854 | messages::internalError(aResp->res); |
| 1855 | return; |
| 1856 | } |
Gunnar Mills | 69f3530 | 2020-05-17 16:06:31 -0500 | [diff] [blame] | 1857 | }, |
| 1858 | "xyz.openbmc_project.Settings", |
| 1859 | "/xyz/openbmc_project/control/host0/auto_reboot", |
| 1860 | "org.freedesktop.DBus.Properties", "Set", |
| 1861 | "xyz.openbmc_project.Control.Boot.RebootPolicy", "AutoReboot", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 1862 | dbus::utility::DbusVariantType(autoRebootEnabled)); |
Gunnar Mills | 69f3530 | 2020-05-17 16:06:31 -0500 | [diff] [blame] | 1863 | } |
| 1864 | |
| 1865 | /** |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1866 | * @brief Sets power restore policy properties. |
| 1867 | * |
| 1868 | * @param[in] aResp Shared pointer for generating response message. |
| 1869 | * @param[in] policy power restore policy properties from request. |
| 1870 | * |
| 1871 | * @return None. |
| 1872 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 1873 | inline void |
| 1874 | setPowerRestorePolicy(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 1875 | const std::string& policy) |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1876 | { |
| 1877 | BMCWEB_LOG_DEBUG << "Set power restore policy."; |
| 1878 | |
| 1879 | const boost::container::flat_map<std::string, std::string> policyMaps = { |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 1880 | {"AlwaysOn", |
| 1881 | "xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOn"}, |
| 1882 | {"AlwaysOff", |
| 1883 | "xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOff"}, |
| 1884 | {"LastState", |
| 1885 | "xyz.openbmc_project.Control.Power.RestorePolicy.Policy.Restore"}}; |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1886 | |
| 1887 | std::string powerRestorPolicy; |
| 1888 | |
Gunnar Mills | 4e69c90 | 2021-01-05 19:50:11 -0600 | [diff] [blame] | 1889 | auto policyMapsIt = policyMaps.find(policy); |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1890 | if (policyMapsIt == policyMaps.end()) |
| 1891 | { |
Gunnar Mills | 4e69c90 | 2021-01-05 19:50:11 -0600 | [diff] [blame] | 1892 | messages::propertyValueNotInList(aResp->res, policy, |
| 1893 | "PowerRestorePolicy"); |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1894 | return; |
| 1895 | } |
| 1896 | |
| 1897 | powerRestorPolicy = policyMapsIt->second; |
| 1898 | |
| 1899 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1900 | [aResp](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1901 | if (ec) |
| 1902 | { |
| 1903 | messages::internalError(aResp->res); |
| 1904 | return; |
| 1905 | } |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1906 | }, |
| 1907 | "xyz.openbmc_project.Settings", |
| 1908 | "/xyz/openbmc_project/control/host0/power_restore_policy", |
| 1909 | "org.freedesktop.DBus.Properties", "Set", |
| 1910 | "xyz.openbmc_project.Control.Power.RestorePolicy", "PowerRestorePolicy", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 1911 | dbus::utility::DbusVariantType(powerRestorPolicy)); |
George Liu | c6a620f | 2020-04-10 17:18:11 +0800 | [diff] [blame] | 1912 | } |
| 1913 | |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1914 | #ifdef BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE |
| 1915 | /** |
| 1916 | * @brief Retrieves provisioning status |
| 1917 | * |
| 1918 | * @param[in] aResp Shared pointer for completing asynchronous calls. |
| 1919 | * |
| 1920 | * @return None. |
| 1921 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 1922 | inline void getProvisioningStatus(std::shared_ptr<bmcweb::AsyncResp> aResp) |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1923 | { |
| 1924 | BMCWEB_LOG_DEBUG << "Get OEM information."; |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 1925 | sdbusplus::asio::getAllProperties( |
| 1926 | *crow::connections::systemBus, "xyz.openbmc_project.PFR.Manager", |
| 1927 | "/xyz/openbmc_project/pfr", "xyz.openbmc_project.PFR.Attributes", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 1928 | [aResp](const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 1929 | const dbus::utility::DBusPropertiesMap& propertiesList) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1930 | nlohmann::json& oemPFR = |
| 1931 | aResp->res.jsonValue["Oem"]["OpenBmc"]["FirmwareProvisioning"]; |
| 1932 | aResp->res.jsonValue["Oem"]["OpenBmc"]["@odata.type"] = |
| 1933 | "#OemComputerSystem.OpenBmc"; |
| 1934 | oemPFR["@odata.type"] = "#OemComputerSystem.FirmwareProvisioning"; |
James Feist | 50626f4 | 2020-09-23 14:40:47 -0700 | [diff] [blame] | 1935 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1936 | if (ec) |
| 1937 | { |
| 1938 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1939 | // not an error, don't have to have the interface |
| 1940 | oemPFR["ProvisioningStatus"] = "NotProvisioned"; |
| 1941 | return; |
| 1942 | } |
| 1943 | |
| 1944 | const bool* provState = nullptr; |
| 1945 | const bool* lockState = nullptr; |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 1946 | |
| 1947 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
Jiaqing Zhao | 0d4befa | 2022-08-19 15:14:32 +0800 | [diff] [blame] | 1948 | dbus_utils::UnpackErrorPrinter(), propertiesList, "UfmProvisioned", |
| 1949 | provState, "UfmLocked", lockState); |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 1950 | |
| 1951 | if (!success) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1952 | { |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 1953 | messages::internalError(aResp->res); |
| 1954 | return; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1955 | } |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1956 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1957 | if ((provState == nullptr) || (lockState == nullptr)) |
| 1958 | { |
| 1959 | BMCWEB_LOG_DEBUG << "Unable to get PFR attributes."; |
| 1960 | messages::internalError(aResp->res); |
| 1961 | return; |
| 1962 | } |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1963 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1964 | if (*provState == true) |
| 1965 | { |
| 1966 | if (*lockState == true) |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1967 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1968 | oemPFR["ProvisioningStatus"] = "ProvisionedAndLocked"; |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1969 | } |
| 1970 | else |
| 1971 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1972 | oemPFR["ProvisioningStatus"] = "ProvisionedButNotLocked"; |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1973 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 1974 | } |
| 1975 | else |
| 1976 | { |
| 1977 | oemPFR["ProvisioningStatus"] = "NotProvisioned"; |
| 1978 | } |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 1979 | }); |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1980 | } |
| 1981 | #endif |
| 1982 | |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1983 | /** |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 1984 | * @brief Translate the PowerMode to a response message. |
| 1985 | * |
| 1986 | * @param[in] aResp Shared pointer for generating response message. |
| 1987 | * @param[in] modeValue PowerMode value to be translated |
| 1988 | * |
| 1989 | * @return None. |
| 1990 | */ |
| 1991 | inline void translatePowerMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 1992 | const std::string& modeValue) |
| 1993 | { |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 1994 | if (modeValue == "xyz.openbmc_project.Control.Power.Mode.PowerMode.Static") |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 1995 | { |
| 1996 | aResp->res.jsonValue["PowerMode"] = "Static"; |
| 1997 | } |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 1998 | else if ( |
| 1999 | modeValue == |
| 2000 | "xyz.openbmc_project.Control.Power.Mode.PowerMode.MaximumPerformance") |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2001 | { |
| 2002 | aResp->res.jsonValue["PowerMode"] = "MaximumPerformance"; |
| 2003 | } |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 2004 | else if (modeValue == |
| 2005 | "xyz.openbmc_project.Control.Power.Mode.PowerMode.PowerSaving") |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2006 | { |
| 2007 | aResp->res.jsonValue["PowerMode"] = "PowerSaving"; |
| 2008 | } |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 2009 | else if (modeValue == |
| 2010 | "xyz.openbmc_project.Control.Power.Mode.PowerMode.OEM") |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2011 | { |
| 2012 | aResp->res.jsonValue["PowerMode"] = "OEM"; |
| 2013 | } |
| 2014 | else |
| 2015 | { |
| 2016 | // Any other values would be invalid |
| 2017 | BMCWEB_LOG_DEBUG << "PowerMode value was not valid: " << modeValue; |
| 2018 | messages::internalError(aResp->res); |
| 2019 | } |
| 2020 | } |
| 2021 | |
| 2022 | /** |
| 2023 | * @brief Retrieves system power mode |
| 2024 | * |
| 2025 | * @param[in] aResp Shared pointer for generating response message. |
| 2026 | * |
| 2027 | * @return None. |
| 2028 | */ |
| 2029 | inline void getPowerMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
| 2030 | { |
| 2031 | BMCWEB_LOG_DEBUG << "Get power mode."; |
| 2032 | |
| 2033 | // Get Power Mode object path: |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2034 | constexpr std::array<std::string_view, 1> interfaces = { |
| 2035 | "xyz.openbmc_project.Control.Power.Mode"}; |
| 2036 | dbus::utility::getSubTree( |
| 2037 | "/", 0, interfaces, |
| 2038 | [aResp](const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 2039 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2040 | if (ec) |
| 2041 | { |
| 2042 | BMCWEB_LOG_DEBUG << "DBUS response error on Power.Mode GetSubTree " |
| 2043 | << ec; |
| 2044 | // This is an optional D-Bus object so just return if |
| 2045 | // error occurs |
| 2046 | return; |
| 2047 | } |
| 2048 | if (subtree.empty()) |
| 2049 | { |
| 2050 | // As noted above, this is an optional interface so just return |
| 2051 | // if there is no instance found |
| 2052 | return; |
| 2053 | } |
| 2054 | if (subtree.size() > 1) |
| 2055 | { |
| 2056 | // More then one PowerMode object is not supported and is an |
| 2057 | // error |
| 2058 | BMCWEB_LOG_DEBUG |
| 2059 | << "Found more than 1 system D-Bus Power.Mode objects: " |
| 2060 | << subtree.size(); |
| 2061 | messages::internalError(aResp->res); |
| 2062 | return; |
| 2063 | } |
| 2064 | if ((subtree[0].first.empty()) || (subtree[0].second.size() != 1)) |
| 2065 | { |
| 2066 | BMCWEB_LOG_DEBUG << "Power.Mode mapper error!"; |
| 2067 | messages::internalError(aResp->res); |
| 2068 | return; |
| 2069 | } |
| 2070 | const std::string& path = subtree[0].first; |
| 2071 | const std::string& service = subtree[0].second.begin()->first; |
| 2072 | if (service.empty()) |
| 2073 | { |
| 2074 | BMCWEB_LOG_DEBUG << "Power.Mode service mapper error!"; |
| 2075 | messages::internalError(aResp->res); |
| 2076 | return; |
| 2077 | } |
| 2078 | // Valid Power Mode object found, now read the current value |
| 2079 | sdbusplus::asio::getProperty<std::string>( |
| 2080 | *crow::connections::systemBus, service, path, |
| 2081 | "xyz.openbmc_project.Control.Power.Mode", "PowerMode", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2082 | [aResp](const boost::system::error_code& ec2, |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2083 | const std::string& pmode) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2084 | if (ec2) |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2085 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2086 | BMCWEB_LOG_DEBUG << "DBUS response error on PowerMode Get: " |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2087 | << ec2; |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2088 | messages::internalError(aResp->res); |
| 2089 | return; |
| 2090 | } |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2091 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2092 | aResp->res.jsonValue["PowerMode@Redfish.AllowableValues"] = { |
| 2093 | "Static", "MaximumPerformance", "PowerSaving"}; |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2094 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2095 | BMCWEB_LOG_DEBUG << "Current power mode: " << pmode; |
| 2096 | translatePowerMode(aResp, pmode); |
| 2097 | }); |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2098 | }); |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2099 | } |
| 2100 | |
| 2101 | /** |
| 2102 | * @brief Validate the specified mode is valid and return the PowerMode |
| 2103 | * name associated with that string |
| 2104 | * |
| 2105 | * @param[in] aResp Shared pointer for generating response message. |
| 2106 | * @param[in] modeString String representing the desired PowerMode |
| 2107 | * |
| 2108 | * @return PowerMode value or empty string if mode is not valid |
| 2109 | */ |
| 2110 | inline std::string |
| 2111 | validatePowerMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 2112 | const std::string& modeString) |
| 2113 | { |
| 2114 | std::string mode; |
| 2115 | |
| 2116 | if (modeString == "Static") |
| 2117 | { |
| 2118 | mode = "xyz.openbmc_project.Control.Power.Mode.PowerMode.Static"; |
| 2119 | } |
| 2120 | else if (modeString == "MaximumPerformance") |
| 2121 | { |
George Liu | 0fda0f1 | 2021-11-16 10:06:17 +0800 | [diff] [blame] | 2122 | mode = |
| 2123 | "xyz.openbmc_project.Control.Power.Mode.PowerMode.MaximumPerformance"; |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2124 | } |
| 2125 | else if (modeString == "PowerSaving") |
| 2126 | { |
| 2127 | mode = "xyz.openbmc_project.Control.Power.Mode.PowerMode.PowerSaving"; |
| 2128 | } |
| 2129 | else |
| 2130 | { |
| 2131 | messages::propertyValueNotInList(aResp->res, modeString, "PowerMode"); |
| 2132 | } |
| 2133 | return mode; |
| 2134 | } |
| 2135 | |
| 2136 | /** |
| 2137 | * @brief Sets system power mode. |
| 2138 | * |
| 2139 | * @param[in] aResp Shared pointer for generating response message. |
| 2140 | * @param[in] pmode System power mode from request. |
| 2141 | * |
| 2142 | * @return None. |
| 2143 | */ |
| 2144 | inline void setPowerMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 2145 | const std::string& pmode) |
| 2146 | { |
| 2147 | BMCWEB_LOG_DEBUG << "Set power mode."; |
| 2148 | |
| 2149 | std::string powerMode = validatePowerMode(aResp, pmode); |
| 2150 | if (powerMode.empty()) |
| 2151 | { |
| 2152 | return; |
| 2153 | } |
| 2154 | |
| 2155 | // Get Power Mode object path: |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2156 | constexpr std::array<std::string_view, 1> interfaces = { |
| 2157 | "xyz.openbmc_project.Control.Power.Mode"}; |
| 2158 | dbus::utility::getSubTree( |
| 2159 | "/", 0, interfaces, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 2160 | [aResp, |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2161 | powerMode](const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 2162 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2163 | if (ec) |
| 2164 | { |
| 2165 | BMCWEB_LOG_DEBUG << "DBUS response error on Power.Mode GetSubTree " |
| 2166 | << ec; |
| 2167 | // This is an optional D-Bus object, but user attempted to patch |
| 2168 | messages::internalError(aResp->res); |
| 2169 | return; |
| 2170 | } |
| 2171 | if (subtree.empty()) |
| 2172 | { |
| 2173 | // This is an optional D-Bus object, but user attempted to patch |
| 2174 | messages::resourceNotFound(aResp->res, "ComputerSystem", |
| 2175 | "PowerMode"); |
| 2176 | return; |
| 2177 | } |
| 2178 | if (subtree.size() > 1) |
| 2179 | { |
| 2180 | // More then one PowerMode object is not supported and is an |
| 2181 | // error |
| 2182 | BMCWEB_LOG_DEBUG |
| 2183 | << "Found more than 1 system D-Bus Power.Mode objects: " |
| 2184 | << subtree.size(); |
| 2185 | messages::internalError(aResp->res); |
| 2186 | return; |
| 2187 | } |
| 2188 | if ((subtree[0].first.empty()) || (subtree[0].second.size() != 1)) |
| 2189 | { |
| 2190 | BMCWEB_LOG_DEBUG << "Power.Mode mapper error!"; |
| 2191 | messages::internalError(aResp->res); |
| 2192 | return; |
| 2193 | } |
| 2194 | const std::string& path = subtree[0].first; |
| 2195 | const std::string& service = subtree[0].second.begin()->first; |
| 2196 | if (service.empty()) |
| 2197 | { |
| 2198 | BMCWEB_LOG_DEBUG << "Power.Mode service mapper error!"; |
| 2199 | messages::internalError(aResp->res); |
| 2200 | return; |
| 2201 | } |
| 2202 | |
| 2203 | BMCWEB_LOG_DEBUG << "Setting power mode(" << powerMode << ") -> " |
| 2204 | << path; |
| 2205 | |
| 2206 | // Set the Power Mode property |
| 2207 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2208 | [aResp](const boost::system::error_code& ec2) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2209 | if (ec2) |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2210 | { |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2211 | messages::internalError(aResp->res); |
| 2212 | return; |
| 2213 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2214 | }, |
| 2215 | service, path, "org.freedesktop.DBus.Properties", "Set", |
| 2216 | "xyz.openbmc_project.Control.Power.Mode", "PowerMode", |
| 2217 | dbus::utility::DbusVariantType(powerMode)); |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2218 | }); |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 2219 | } |
| 2220 | |
| 2221 | /** |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 2222 | * @brief Translates watchdog timeout action DBUS property value to redfish. |
| 2223 | * |
| 2224 | * @param[in] dbusAction The watchdog timeout action in D-BUS. |
| 2225 | * |
| 2226 | * @return Returns as a string, the timeout action in Redfish terms. If |
| 2227 | * translation cannot be done, returns an empty string. |
| 2228 | */ |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 2229 | inline std::string dbusToRfWatchdogAction(const std::string& dbusAction) |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 2230 | { |
| 2231 | if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.None") |
| 2232 | { |
| 2233 | return "None"; |
| 2234 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 2235 | if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.HardReset") |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 2236 | { |
| 2237 | return "ResetSystem"; |
| 2238 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 2239 | if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.PowerOff") |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 2240 | { |
| 2241 | return "PowerDown"; |
| 2242 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 2243 | if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.PowerCycle") |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 2244 | { |
| 2245 | return "PowerCycle"; |
| 2246 | } |
| 2247 | |
| 2248 | return ""; |
| 2249 | } |
| 2250 | |
| 2251 | /** |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2252 | *@brief Translates timeout action from Redfish to DBUS property value. |
| 2253 | * |
| 2254 | *@param[in] rfAction The timeout action in Redfish. |
| 2255 | * |
| 2256 | *@return Returns as a string, the time_out action as expected by DBUS. |
| 2257 | *If translation cannot be done, returns an empty string. |
| 2258 | */ |
| 2259 | |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 2260 | inline std::string rfToDbusWDTTimeOutAct(const std::string& rfAction) |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2261 | { |
| 2262 | if (rfAction == "None") |
| 2263 | { |
| 2264 | return "xyz.openbmc_project.State.Watchdog.Action.None"; |
| 2265 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 2266 | if (rfAction == "PowerCycle") |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2267 | { |
| 2268 | return "xyz.openbmc_project.State.Watchdog.Action.PowerCycle"; |
| 2269 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 2270 | if (rfAction == "PowerDown") |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2271 | { |
| 2272 | return "xyz.openbmc_project.State.Watchdog.Action.PowerOff"; |
| 2273 | } |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 2274 | if (rfAction == "ResetSystem") |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2275 | { |
| 2276 | return "xyz.openbmc_project.State.Watchdog.Action.HardReset"; |
| 2277 | } |
| 2278 | |
| 2279 | return ""; |
| 2280 | } |
| 2281 | |
| 2282 | /** |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 2283 | * @brief Retrieves host watchdog timer properties over DBUS |
| 2284 | * |
| 2285 | * @param[in] aResp Shared pointer for completing asynchronous calls. |
| 2286 | * |
| 2287 | * @return None. |
| 2288 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 2289 | inline void |
| 2290 | getHostWatchdogTimer(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 2291 | { |
| 2292 | BMCWEB_LOG_DEBUG << "Get host watchodg"; |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 2293 | sdbusplus::asio::getAllProperties( |
| 2294 | *crow::connections::systemBus, "xyz.openbmc_project.Watchdog", |
| 2295 | "/xyz/openbmc_project/watchdog/host0", |
| 2296 | "xyz.openbmc_project.State.Watchdog", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2297 | [aResp](const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 2298 | const dbus::utility::DBusPropertiesMap& properties) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2299 | if (ec) |
| 2300 | { |
| 2301 | // watchdog service is stopped |
| 2302 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 2303 | return; |
| 2304 | } |
| 2305 | |
| 2306 | BMCWEB_LOG_DEBUG << "Got " << properties.size() << " wdt prop."; |
| 2307 | |
| 2308 | nlohmann::json& hostWatchdogTimer = |
| 2309 | aResp->res.jsonValue["HostWatchdogTimer"]; |
| 2310 | |
| 2311 | // watchdog service is running/enabled |
| 2312 | hostWatchdogTimer["Status"]["State"] = "Enabled"; |
| 2313 | |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 2314 | const bool* enabled = nullptr; |
| 2315 | const std::string* expireAction = nullptr; |
| 2316 | |
| 2317 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 2318 | dbus_utils::UnpackErrorPrinter(), properties, "Enabled", enabled, |
| 2319 | "ExpireAction", expireAction); |
| 2320 | |
| 2321 | if (!success) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2322 | { |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 2323 | messages::internalError(aResp->res); |
| 2324 | return; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2325 | } |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 2326 | |
| 2327 | if (enabled != nullptr) |
| 2328 | { |
| 2329 | hostWatchdogTimer["FunctionEnabled"] = *enabled; |
| 2330 | } |
| 2331 | |
| 2332 | if (expireAction != nullptr) |
| 2333 | { |
| 2334 | std::string action = dbusToRfWatchdogAction(*expireAction); |
| 2335 | if (action.empty()) |
| 2336 | { |
| 2337 | messages::internalError(aResp->res); |
| 2338 | return; |
| 2339 | } |
| 2340 | hostWatchdogTimer["TimeoutAction"] = action; |
| 2341 | } |
| 2342 | }); |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 2343 | } |
| 2344 | |
| 2345 | /** |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2346 | * @brief Sets Host WatchDog Timer properties. |
| 2347 | * |
| 2348 | * @param[in] aResp Shared pointer for generating response message. |
| 2349 | * @param[in] wdtEnable The WDTimer Enable value (true/false) from incoming |
| 2350 | * RF request. |
| 2351 | * @param[in] wdtTimeOutAction The WDT Timeout action, from incoming RF request. |
| 2352 | * |
| 2353 | * @return None. |
| 2354 | */ |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 2355 | inline void setWDTProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2356 | const std::optional<bool> wdtEnable, |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 2357 | const std::optional<std::string>& wdtTimeOutAction) |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2358 | { |
| 2359 | BMCWEB_LOG_DEBUG << "Set host watchdog"; |
| 2360 | |
| 2361 | if (wdtTimeOutAction) |
| 2362 | { |
| 2363 | std::string wdtTimeOutActStr = rfToDbusWDTTimeOutAct(*wdtTimeOutAction); |
| 2364 | // check if TimeOut Action is Valid |
| 2365 | if (wdtTimeOutActStr.empty()) |
| 2366 | { |
| 2367 | BMCWEB_LOG_DEBUG << "Unsupported value for TimeoutAction: " |
| 2368 | << *wdtTimeOutAction; |
| 2369 | messages::propertyValueNotInList(aResp->res, *wdtTimeOutAction, |
| 2370 | "TimeoutAction"); |
| 2371 | return; |
| 2372 | } |
| 2373 | |
| 2374 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2375 | [aResp](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2376 | if (ec) |
| 2377 | { |
| 2378 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 2379 | messages::internalError(aResp->res); |
| 2380 | return; |
| 2381 | } |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2382 | }, |
| 2383 | "xyz.openbmc_project.Watchdog", |
| 2384 | "/xyz/openbmc_project/watchdog/host0", |
| 2385 | "org.freedesktop.DBus.Properties", "Set", |
| 2386 | "xyz.openbmc_project.State.Watchdog", "ExpireAction", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 2387 | dbus::utility::DbusVariantType(wdtTimeOutActStr)); |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2388 | } |
| 2389 | |
| 2390 | if (wdtEnable) |
| 2391 | { |
| 2392 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2393 | [aResp](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2394 | if (ec) |
| 2395 | { |
| 2396 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 2397 | messages::internalError(aResp->res); |
| 2398 | return; |
| 2399 | } |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2400 | }, |
| 2401 | "xyz.openbmc_project.Watchdog", |
| 2402 | "/xyz/openbmc_project/watchdog/host0", |
| 2403 | "org.freedesktop.DBus.Properties", "Set", |
| 2404 | "xyz.openbmc_project.State.Watchdog", "Enabled", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 2405 | dbus::utility::DbusVariantType(*wdtEnable)); |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2406 | } |
| 2407 | } |
| 2408 | |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2409 | /** |
| 2410 | * @brief Parse the Idle Power Saver properties into json |
| 2411 | * |
| 2412 | * @param[in] aResp Shared pointer for completing asynchronous calls. |
| 2413 | * @param[in] properties IPS property data from DBus. |
| 2414 | * |
| 2415 | * @return true if successful |
| 2416 | */ |
Jiaqing Zhao | 1e5b7c8 | 2022-08-15 16:15:52 +0800 | [diff] [blame] | 2417 | inline bool |
| 2418 | parseIpsProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 2419 | const dbus::utility::DBusPropertiesMap& properties) |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2420 | { |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 2421 | const bool* enabled = nullptr; |
| 2422 | const uint8_t* enterUtilizationPercent = nullptr; |
| 2423 | const uint64_t* enterDwellTime = nullptr; |
| 2424 | const uint8_t* exitUtilizationPercent = nullptr; |
| 2425 | const uint64_t* exitDwellTime = nullptr; |
| 2426 | |
| 2427 | const bool success = sdbusplus::unpackPropertiesNoThrow( |
| 2428 | dbus_utils::UnpackErrorPrinter(), properties, "Enabled", enabled, |
Chris Cain | 2661b72 | 2023-03-22 08:53:21 -0500 | [diff] [blame] | 2429 | "EnterUtilizationPercent", enterUtilizationPercent, "EnterDwellTime", |
| 2430 | enterDwellTime, "ExitUtilizationPercent", exitUtilizationPercent, |
| 2431 | "ExitDwellTime", exitDwellTime); |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 2432 | |
| 2433 | if (!success) |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2434 | { |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 2435 | return false; |
| 2436 | } |
| 2437 | |
| 2438 | if (enabled != nullptr) |
| 2439 | { |
| 2440 | aResp->res.jsonValue["IdlePowerSaver"]["Enabled"] = *enabled; |
| 2441 | } |
| 2442 | |
| 2443 | if (enterUtilizationPercent != nullptr) |
| 2444 | { |
| 2445 | aResp->res.jsonValue["IdlePowerSaver"]["EnterUtilizationPercent"] = |
| 2446 | *enterUtilizationPercent; |
| 2447 | } |
| 2448 | |
| 2449 | if (enterDwellTime != nullptr) |
| 2450 | { |
| 2451 | const std::chrono::duration<uint64_t, std::milli> ms(*enterDwellTime); |
| 2452 | aResp->res.jsonValue["IdlePowerSaver"]["EnterDwellTimeSeconds"] = |
| 2453 | std::chrono::duration_cast<std::chrono::duration<uint64_t>>(ms) |
| 2454 | .count(); |
| 2455 | } |
| 2456 | |
| 2457 | if (exitUtilizationPercent != nullptr) |
| 2458 | { |
| 2459 | aResp->res.jsonValue["IdlePowerSaver"]["ExitUtilizationPercent"] = |
| 2460 | *exitUtilizationPercent; |
| 2461 | } |
| 2462 | |
| 2463 | if (exitDwellTime != nullptr) |
| 2464 | { |
| 2465 | const std::chrono::duration<uint64_t, std::milli> ms(*exitDwellTime); |
| 2466 | aResp->res.jsonValue["IdlePowerSaver"]["ExitDwellTimeSeconds"] = |
| 2467 | std::chrono::duration_cast<std::chrono::duration<uint64_t>>(ms) |
| 2468 | .count(); |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2469 | } |
| 2470 | |
| 2471 | return true; |
| 2472 | } |
| 2473 | |
| 2474 | /** |
| 2475 | * @brief Retrieves host watchdog timer properties over DBUS |
| 2476 | * |
| 2477 | * @param[in] aResp Shared pointer for completing asynchronous calls. |
| 2478 | * |
| 2479 | * @return None. |
| 2480 | */ |
| 2481 | inline void getIdlePowerSaver(const std::shared_ptr<bmcweb::AsyncResp>& aResp) |
| 2482 | { |
| 2483 | BMCWEB_LOG_DEBUG << "Get idle power saver parameters"; |
| 2484 | |
| 2485 | // Get IdlePowerSaver object path: |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2486 | constexpr std::array<std::string_view, 1> interfaces = { |
| 2487 | "xyz.openbmc_project.Control.Power.IdlePowerSaver"}; |
| 2488 | dbus::utility::getSubTree( |
| 2489 | "/", 0, interfaces, |
| 2490 | [aResp](const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 2491 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2492 | if (ec) |
| 2493 | { |
| 2494 | BMCWEB_LOG_DEBUG |
| 2495 | << "DBUS response error on Power.IdlePowerSaver GetSubTree " |
| 2496 | << ec; |
| 2497 | messages::internalError(aResp->res); |
| 2498 | return; |
| 2499 | } |
| 2500 | if (subtree.empty()) |
| 2501 | { |
| 2502 | // This is an optional interface so just return |
| 2503 | // if there is no instance found |
| 2504 | BMCWEB_LOG_DEBUG << "No instances found"; |
| 2505 | return; |
| 2506 | } |
| 2507 | if (subtree.size() > 1) |
| 2508 | { |
| 2509 | // More then one PowerIdlePowerSaver object is not supported and |
| 2510 | // is an error |
| 2511 | BMCWEB_LOG_DEBUG << "Found more than 1 system D-Bus " |
| 2512 | "Power.IdlePowerSaver objects: " |
| 2513 | << subtree.size(); |
| 2514 | messages::internalError(aResp->res); |
| 2515 | return; |
| 2516 | } |
| 2517 | if ((subtree[0].first.empty()) || (subtree[0].second.size() != 1)) |
| 2518 | { |
| 2519 | BMCWEB_LOG_DEBUG << "Power.IdlePowerSaver mapper error!"; |
| 2520 | messages::internalError(aResp->res); |
| 2521 | return; |
| 2522 | } |
| 2523 | const std::string& path = subtree[0].first; |
| 2524 | const std::string& service = subtree[0].second.begin()->first; |
| 2525 | if (service.empty()) |
| 2526 | { |
| 2527 | BMCWEB_LOG_DEBUG << "Power.IdlePowerSaver service mapper error!"; |
| 2528 | messages::internalError(aResp->res); |
| 2529 | return; |
| 2530 | } |
| 2531 | |
| 2532 | // Valid IdlePowerSaver object found, now read the current values |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 2533 | sdbusplus::asio::getAllProperties( |
| 2534 | *crow::connections::systemBus, service, path, |
| 2535 | "xyz.openbmc_project.Control.Power.IdlePowerSaver", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2536 | [aResp](const boost::system::error_code& ec2, |
Jiaqing Zhao | 1e5b7c8 | 2022-08-15 16:15:52 +0800 | [diff] [blame] | 2537 | const dbus::utility::DBusPropertiesMap& properties) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2538 | if (ec2) |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2539 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2540 | BMCWEB_LOG_ERROR |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2541 | << "DBUS response error on IdlePowerSaver GetAll: " << ec2; |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2542 | messages::internalError(aResp->res); |
| 2543 | return; |
| 2544 | } |
| 2545 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2546 | if (!parseIpsProperties(aResp, properties)) |
| 2547 | { |
| 2548 | messages::internalError(aResp->res); |
| 2549 | return; |
| 2550 | } |
Krzysztof Grobelny | bc1d29d | 2022-08-09 14:17:34 +0200 | [diff] [blame] | 2551 | }); |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2552 | }); |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2553 | |
| 2554 | BMCWEB_LOG_DEBUG << "EXIT: Get idle power saver parameters"; |
| 2555 | } |
| 2556 | |
| 2557 | /** |
| 2558 | * @brief Sets Idle Power Saver properties. |
| 2559 | * |
| 2560 | * @param[in] aResp Shared pointer for generating response message. |
| 2561 | * @param[in] ipsEnable The IPS Enable value (true/false) from incoming |
| 2562 | * RF request. |
| 2563 | * @param[in] ipsEnterUtil The utilization limit to enter idle state. |
| 2564 | * @param[in] ipsEnterTime The time the utilization must be below ipsEnterUtil |
| 2565 | * before entering idle state. |
| 2566 | * @param[in] ipsExitUtil The utilization limit when exiting idle state. |
| 2567 | * @param[in] ipsExitTime The time the utilization must be above ipsExutUtil |
| 2568 | * before exiting idle state |
| 2569 | * |
| 2570 | * @return None. |
| 2571 | */ |
| 2572 | inline void setIdlePowerSaver(const std::shared_ptr<bmcweb::AsyncResp>& aResp, |
| 2573 | const std::optional<bool> ipsEnable, |
| 2574 | const std::optional<uint8_t> ipsEnterUtil, |
| 2575 | const std::optional<uint64_t> ipsEnterTime, |
| 2576 | const std::optional<uint8_t> ipsExitUtil, |
| 2577 | const std::optional<uint64_t> ipsExitTime) |
| 2578 | { |
| 2579 | BMCWEB_LOG_DEBUG << "Set idle power saver properties"; |
| 2580 | |
| 2581 | // Get IdlePowerSaver object path: |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2582 | constexpr std::array<std::string_view, 1> interfaces = { |
| 2583 | "xyz.openbmc_project.Control.Power.IdlePowerSaver"}; |
| 2584 | dbus::utility::getSubTree( |
| 2585 | "/", 0, interfaces, |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2586 | [aResp, ipsEnable, ipsEnterUtil, ipsEnterTime, ipsExitUtil, |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2587 | ipsExitTime](const boost::system::error_code& ec, |
Ed Tanous | b9d36b4 | 2022-02-26 21:42:46 -0800 | [diff] [blame] | 2588 | const dbus::utility::MapperGetSubTreeResponse& subtree) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2589 | if (ec) |
| 2590 | { |
| 2591 | BMCWEB_LOG_DEBUG |
| 2592 | << "DBUS response error on Power.IdlePowerSaver GetSubTree " |
| 2593 | << ec; |
| 2594 | messages::internalError(aResp->res); |
| 2595 | return; |
| 2596 | } |
| 2597 | if (subtree.empty()) |
| 2598 | { |
| 2599 | // This is an optional D-Bus object, but user attempted to patch |
| 2600 | messages::resourceNotFound(aResp->res, "ComputerSystem", |
| 2601 | "IdlePowerSaver"); |
| 2602 | return; |
| 2603 | } |
| 2604 | if (subtree.size() > 1) |
| 2605 | { |
| 2606 | // More then one PowerIdlePowerSaver object is not supported and |
| 2607 | // is an error |
| 2608 | BMCWEB_LOG_DEBUG |
| 2609 | << "Found more than 1 system D-Bus Power.IdlePowerSaver objects: " |
| 2610 | << subtree.size(); |
| 2611 | messages::internalError(aResp->res); |
| 2612 | return; |
| 2613 | } |
| 2614 | if ((subtree[0].first.empty()) || (subtree[0].second.size() != 1)) |
| 2615 | { |
| 2616 | BMCWEB_LOG_DEBUG << "Power.IdlePowerSaver mapper error!"; |
| 2617 | messages::internalError(aResp->res); |
| 2618 | return; |
| 2619 | } |
| 2620 | const std::string& path = subtree[0].first; |
| 2621 | const std::string& service = subtree[0].second.begin()->first; |
| 2622 | if (service.empty()) |
| 2623 | { |
| 2624 | BMCWEB_LOG_DEBUG << "Power.IdlePowerSaver service mapper error!"; |
| 2625 | messages::internalError(aResp->res); |
| 2626 | return; |
| 2627 | } |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2628 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2629 | // Valid Power IdlePowerSaver object found, now set any values that |
| 2630 | // need to be updated |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2631 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2632 | if (ipsEnable) |
| 2633 | { |
| 2634 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2635 | [aResp](const boost::system::error_code& ec2) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2636 | if (ec2) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2637 | { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2638 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec2; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2639 | messages::internalError(aResp->res); |
| 2640 | return; |
| 2641 | } |
| 2642 | }, |
| 2643 | service, path, "org.freedesktop.DBus.Properties", "Set", |
| 2644 | "xyz.openbmc_project.Control.Power.IdlePowerSaver", "Enabled", |
| 2645 | dbus::utility::DbusVariantType(*ipsEnable)); |
| 2646 | } |
| 2647 | if (ipsEnterUtil) |
| 2648 | { |
| 2649 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2650 | [aResp](const boost::system::error_code& ec2) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2651 | if (ec2) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2652 | { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2653 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec2; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2654 | messages::internalError(aResp->res); |
| 2655 | return; |
| 2656 | } |
| 2657 | }, |
| 2658 | service, path, "org.freedesktop.DBus.Properties", "Set", |
| 2659 | "xyz.openbmc_project.Control.Power.IdlePowerSaver", |
| 2660 | "EnterUtilizationPercent", |
| 2661 | dbus::utility::DbusVariantType(*ipsEnterUtil)); |
| 2662 | } |
| 2663 | if (ipsEnterTime) |
| 2664 | { |
| 2665 | // Convert from seconds into milliseconds for DBus |
| 2666 | const uint64_t timeMilliseconds = *ipsEnterTime * 1000; |
| 2667 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2668 | [aResp](const boost::system::error_code& ec2) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2669 | if (ec2) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2670 | { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2671 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec2; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2672 | messages::internalError(aResp->res); |
| 2673 | return; |
| 2674 | } |
| 2675 | }, |
| 2676 | service, path, "org.freedesktop.DBus.Properties", "Set", |
| 2677 | "xyz.openbmc_project.Control.Power.IdlePowerSaver", |
| 2678 | "EnterDwellTime", |
| 2679 | dbus::utility::DbusVariantType(timeMilliseconds)); |
| 2680 | } |
| 2681 | if (ipsExitUtil) |
| 2682 | { |
| 2683 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2684 | [aResp](const boost::system::error_code& ec2) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2685 | if (ec2) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2686 | { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2687 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec2; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2688 | messages::internalError(aResp->res); |
| 2689 | return; |
| 2690 | } |
| 2691 | }, |
| 2692 | service, path, "org.freedesktop.DBus.Properties", "Set", |
| 2693 | "xyz.openbmc_project.Control.Power.IdlePowerSaver", |
| 2694 | "ExitUtilizationPercent", |
| 2695 | dbus::utility::DbusVariantType(*ipsExitUtil)); |
| 2696 | } |
| 2697 | if (ipsExitTime) |
| 2698 | { |
| 2699 | // Convert from seconds into milliseconds for DBus |
| 2700 | const uint64_t timeMilliseconds = *ipsExitTime * 1000; |
| 2701 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2702 | [aResp](const boost::system::error_code& ec2) { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2703 | if (ec2) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2704 | { |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2705 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec2; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2706 | messages::internalError(aResp->res); |
| 2707 | return; |
| 2708 | } |
| 2709 | }, |
| 2710 | service, path, "org.freedesktop.DBus.Properties", "Set", |
| 2711 | "xyz.openbmc_project.Control.Power.IdlePowerSaver", |
| 2712 | "ExitDwellTime", |
| 2713 | dbus::utility::DbusVariantType(timeMilliseconds)); |
| 2714 | } |
George Liu | e99073f | 2022-12-09 11:06:16 +0800 | [diff] [blame] | 2715 | }); |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 2716 | |
| 2717 | BMCWEB_LOG_DEBUG << "EXIT: Set idle power saver parameters"; |
| 2718 | } |
| 2719 | |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 2720 | inline void handleComputerSystemHead( |
| 2721 | crow::App& app, const crow::Request& req, |
| 2722 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
| 2723 | { |
| 2724 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
| 2725 | { |
| 2726 | return; |
| 2727 | } |
| 2728 | asyncResp->res.addHeader( |
| 2729 | boost::beast::http::field::link, |
| 2730 | "</redfish/v1/JsonSchemas/ComputerSystemCollection/ComputerSystemCollection.json>; rel=describedby"); |
| 2731 | } |
| 2732 | |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 2733 | /** |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 2734 | * SystemsCollection derived class for delivering ComputerSystems Collection |
| 2735 | * Schema |
| 2736 | */ |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2737 | inline void requestRoutesSystemsCollection(App& app) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 2738 | { |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2739 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/") |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 2740 | .privileges(redfish::privileges::headComputerSystemCollection) |
| 2741 | .methods(boost::beast::http::verb::head)( |
| 2742 | std::bind_front(handleComputerSystemHead, std::ref(app))); |
| 2743 | |
| 2744 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 2745 | .privileges(redfish::privileges::getComputerSystemCollection) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2746 | .methods(boost::beast::http::verb::get)( |
Ed Tanous | f4c99e7 | 2021-10-04 17:02:43 -0700 | [diff] [blame] | 2747 | [&app](const crow::Request& req, |
| 2748 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 2749 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2750 | { |
| 2751 | return; |
| 2752 | } |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 2753 | |
| 2754 | asyncResp->res.addHeader( |
| 2755 | boost::beast::http::field::link, |
| 2756 | "</redfish/v1/JsonSchemas/ComputerSystemCollection.json>; rel=describedby"); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2757 | asyncResp->res.jsonValue["@odata.type"] = |
| 2758 | "#ComputerSystemCollection.ComputerSystemCollection"; |
| 2759 | asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Systems"; |
| 2760 | asyncResp->res.jsonValue["Name"] = "Computer System Collection"; |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 2761 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2762 | sdbusplus::asio::getProperty<std::string>( |
| 2763 | *crow::connections::systemBus, "xyz.openbmc_project.Settings", |
| 2764 | "/xyz/openbmc_project/network/hypervisor", |
| 2765 | "xyz.openbmc_project.Network.SystemConfiguration", "HostName", |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2766 | [asyncResp](const boost::system::error_code& ec2, |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2767 | const std::string& /*hostName*/) { |
| 2768 | nlohmann::json& ifaceArray = asyncResp->res.jsonValue["Members"]; |
| 2769 | ifaceArray = nlohmann::json::array(); |
| 2770 | auto& count = asyncResp->res.jsonValue["Members@odata.count"]; |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 2771 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2772 | nlohmann::json::object_t system; |
| 2773 | system["@odata.id"] = "/redfish/v1/Systems/system"; |
| 2774 | ifaceArray.push_back(std::move(system)); |
| 2775 | count = ifaceArray.size(); |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 2776 | if (!ec2) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2777 | { |
| 2778 | BMCWEB_LOG_DEBUG << "Hypervisor is available"; |
| 2779 | nlohmann::json::object_t hypervisor; |
| 2780 | hypervisor["@odata.id"] = "/redfish/v1/Systems/hypervisor"; |
| 2781 | ifaceArray.push_back(std::move(hypervisor)); |
| 2782 | count = ifaceArray.size(); |
| 2783 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2784 | }); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2785 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2786 | } |
Sunitha Harish | 462023a | 2020-02-19 08:34:59 -0600 | [diff] [blame] | 2787 | |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2788 | /** |
| 2789 | * Function transceives data with dbus directly. |
| 2790 | */ |
Ed Tanous | 4f48d5f | 2021-06-21 08:27:45 -0700 | [diff] [blame] | 2791 | inline void doNMI(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2792 | { |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 2793 | constexpr const char* serviceName = "xyz.openbmc_project.Control.Host.NMI"; |
| 2794 | constexpr const char* objectPath = "/xyz/openbmc_project/control/host0/nmi"; |
| 2795 | constexpr const char* interfaceName = |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2796 | "xyz.openbmc_project.Control.Host.NMI"; |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 2797 | constexpr const char* method = "NMI"; |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2798 | |
| 2799 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2800 | [asyncResp](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2801 | if (ec) |
| 2802 | { |
| 2803 | BMCWEB_LOG_ERROR << " Bad D-Bus request error: " << ec; |
| 2804 | messages::internalError(asyncResp->res); |
| 2805 | return; |
| 2806 | } |
| 2807 | messages::success(asyncResp->res); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2808 | }, |
| 2809 | serviceName, objectPath, interfaceName, method); |
| 2810 | } |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 2811 | |
| 2812 | /** |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 2813 | * SystemActionsReset class supports handle POST method for Reset action. |
| 2814 | * The class retrieves and sends data directly to D-Bus. |
| 2815 | */ |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2816 | inline void requestRoutesSystemActionsReset(App& app) |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 2817 | { |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 2818 | /** |
| 2819 | * Function handles POST method request. |
| 2820 | * Analyzes POST body message before sends Reset request data to D-Bus. |
| 2821 | */ |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2822 | BMCWEB_ROUTE(app, |
| 2823 | "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 2824 | .privileges(redfish::privileges::postComputerSystem) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2825 | .methods(boost::beast::http::verb::post)( |
| 2826 | [&app](const crow::Request& req, |
| 2827 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 2828 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2829 | { |
| 2830 | return; |
| 2831 | } |
| 2832 | std::string resetType; |
| 2833 | if (!json_util::readJsonAction(req, asyncResp->res, "ResetType", |
| 2834 | resetType)) |
| 2835 | { |
| 2836 | return; |
| 2837 | } |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 2838 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2839 | // Get the command and host vs. chassis |
| 2840 | std::string command; |
| 2841 | bool hostCommand = true; |
| 2842 | if ((resetType == "On") || (resetType == "ForceOn")) |
| 2843 | { |
| 2844 | command = "xyz.openbmc_project.State.Host.Transition.On"; |
| 2845 | hostCommand = true; |
| 2846 | } |
| 2847 | else if (resetType == "ForceOff") |
| 2848 | { |
| 2849 | command = "xyz.openbmc_project.State.Chassis.Transition.Off"; |
| 2850 | hostCommand = false; |
| 2851 | } |
| 2852 | else if (resetType == "ForceRestart") |
| 2853 | { |
| 2854 | command = |
| 2855 | "xyz.openbmc_project.State.Host.Transition.ForceWarmReboot"; |
| 2856 | hostCommand = true; |
| 2857 | } |
| 2858 | else if (resetType == "GracefulShutdown") |
| 2859 | { |
| 2860 | command = "xyz.openbmc_project.State.Host.Transition.Off"; |
| 2861 | hostCommand = true; |
| 2862 | } |
| 2863 | else if (resetType == "GracefulRestart") |
| 2864 | { |
| 2865 | command = |
| 2866 | "xyz.openbmc_project.State.Host.Transition.GracefulWarmReboot"; |
| 2867 | hostCommand = true; |
| 2868 | } |
| 2869 | else if (resetType == "PowerCycle") |
| 2870 | { |
| 2871 | command = "xyz.openbmc_project.State.Host.Transition.Reboot"; |
| 2872 | hostCommand = true; |
| 2873 | } |
| 2874 | else if (resetType == "Nmi") |
| 2875 | { |
| 2876 | doNMI(asyncResp); |
| 2877 | return; |
| 2878 | } |
| 2879 | else |
| 2880 | { |
| 2881 | messages::actionParameterUnknown(asyncResp->res, "Reset", |
| 2882 | resetType); |
| 2883 | return; |
| 2884 | } |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 2885 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2886 | if (hostCommand) |
| 2887 | { |
| 2888 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2889 | [asyncResp, resetType](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2890 | if (ec) |
| 2891 | { |
| 2892 | BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec; |
| 2893 | if (ec.value() == boost::asio::error::invalid_argument) |
| 2894 | { |
| 2895 | messages::actionParameterNotSupported( |
| 2896 | asyncResp->res, resetType, "Reset"); |
| 2897 | } |
| 2898 | else |
| 2899 | { |
| 2900 | messages::internalError(asyncResp->res); |
| 2901 | } |
| 2902 | return; |
| 2903 | } |
| 2904 | messages::success(asyncResp->res); |
| 2905 | }, |
| 2906 | "xyz.openbmc_project.State.Host", |
| 2907 | "/xyz/openbmc_project/state/host0", |
| 2908 | "org.freedesktop.DBus.Properties", "Set", |
| 2909 | "xyz.openbmc_project.State.Host", "RequestedHostTransition", |
| 2910 | dbus::utility::DbusVariantType{command}); |
| 2911 | } |
| 2912 | else |
| 2913 | { |
| 2914 | crow::connections::systemBus->async_method_call( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 2915 | [asyncResp, resetType](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 2916 | if (ec) |
| 2917 | { |
| 2918 | BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec; |
| 2919 | if (ec.value() == boost::asio::error::invalid_argument) |
| 2920 | { |
| 2921 | messages::actionParameterNotSupported( |
| 2922 | asyncResp->res, resetType, "Reset"); |
| 2923 | } |
| 2924 | else |
| 2925 | { |
| 2926 | messages::internalError(asyncResp->res); |
| 2927 | } |
| 2928 | return; |
| 2929 | } |
| 2930 | messages::success(asyncResp->res); |
| 2931 | }, |
| 2932 | "xyz.openbmc_project.State.Chassis", |
| 2933 | "/xyz/openbmc_project/state/chassis0", |
| 2934 | "org.freedesktop.DBus.Properties", "Set", |
| 2935 | "xyz.openbmc_project.State.Chassis", "RequestedPowerTransition", |
| 2936 | dbus::utility::DbusVariantType{command}); |
| 2937 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2938 | }); |
| 2939 | } |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 2940 | |
Ed Tanous | 38c8a6f | 2022-09-01 16:37:27 -0700 | [diff] [blame] | 2941 | inline void handleComputerSystemCollectionHead( |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 2942 | App& app, const crow::Request& req, |
| 2943 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
| 2944 | { |
| 2945 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
| 2946 | { |
| 2947 | return; |
| 2948 | } |
| 2949 | |
| 2950 | asyncResp->res.addHeader( |
| 2951 | boost::beast::http::field::link, |
| 2952 | "</redfish/v1/JsonSchemas/ComputerSystem/ComputerSystem.json>; rel=describedby"); |
| 2953 | } |
| 2954 | |
Abhishek Patel | 5c3e927 | 2021-06-24 10:11:33 -0500 | [diff] [blame] | 2955 | inline void afterPortRequest( |
| 2956 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 2957 | const boost::system::error_code& ec, |
| 2958 | const std::vector<std::tuple<std::string, std::string, bool>>& socketData) |
| 2959 | { |
| 2960 | if (ec) |
| 2961 | { |
| 2962 | messages::internalError(asyncResp->res); |
| 2963 | return; |
| 2964 | } |
| 2965 | for (const auto& data : socketData) |
| 2966 | { |
| 2967 | const std::string& socketPath = get<0>(data); |
| 2968 | const std::string& protocolName = get<1>(data); |
| 2969 | bool isProtocolEnabled = get<2>(data); |
| 2970 | nlohmann::json& dataJson = asyncResp->res.jsonValue["SerialConsole"]; |
| 2971 | dataJson[protocolName]["ServiceEnabled"] = isProtocolEnabled; |
| 2972 | // need to retrieve port number for |
| 2973 | // obmc-console-ssh service |
| 2974 | if (protocolName == "SSH") |
| 2975 | { |
| 2976 | getPortNumber(socketPath, [asyncResp, protocolName]( |
| 2977 | const boost::system::error_code ec1, |
| 2978 | int portNumber) { |
| 2979 | if (ec1) |
| 2980 | { |
| 2981 | messages::internalError(asyncResp->res); |
| 2982 | return; |
| 2983 | } |
| 2984 | nlohmann::json& dataJson1 = |
| 2985 | asyncResp->res.jsonValue["SerialConsole"]; |
| 2986 | dataJson1[protocolName]["Port"] = portNumber; |
| 2987 | }); |
| 2988 | } |
| 2989 | } |
| 2990 | } |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 2991 | /** |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 2992 | * Systems derived class for delivering Computer Systems Schema. |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 2993 | */ |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 2994 | inline void requestRoutesSystems(App& app) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 2995 | { |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 2996 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/system/") |
| 2997 | .privileges(redfish::privileges::headComputerSystem) |
| 2998 | .methods(boost::beast::http::verb::head)( |
| 2999 | std::bind_front(handleComputerSystemCollectionHead, std::ref(app))); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 3000 | /** |
| 3001 | * Functions triggers appropriate requests on DBus |
| 3002 | */ |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3003 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 3004 | .privileges(redfish::privileges::getComputerSystem) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3005 | .methods(boost::beast::http::verb::get)( |
| 3006 | [&app](const crow::Request& req, |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3007 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 3008 | const std::string& systemName) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 3009 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3010 | { |
| 3011 | return; |
| 3012 | } |
Asmitha Karunanithi | 746b56f | 2023-02-27 23:29:49 -0600 | [diff] [blame] | 3013 | |
| 3014 | if (systemName == "hypervisor") |
| 3015 | { |
| 3016 | handleHypervisorSystemGet(asyncResp); |
| 3017 | return; |
| 3018 | } |
| 3019 | |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3020 | if (systemName != "system") |
| 3021 | { |
| 3022 | messages::resourceNotFound(asyncResp->res, "ComputerSystem", |
| 3023 | systemName); |
| 3024 | return; |
| 3025 | } |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 3026 | asyncResp->res.addHeader( |
| 3027 | boost::beast::http::field::link, |
| 3028 | "</redfish/v1/JsonSchemas/ComputerSystem/ComputerSystem.json>; rel=describedby"); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3029 | asyncResp->res.jsonValue["@odata.type"] = |
| 3030 | "#ComputerSystem.v1_16_0.ComputerSystem"; |
| 3031 | asyncResp->res.jsonValue["Name"] = "system"; |
| 3032 | asyncResp->res.jsonValue["Id"] = "system"; |
| 3033 | asyncResp->res.jsonValue["SystemType"] = "Physical"; |
| 3034 | asyncResp->res.jsonValue["Description"] = "Computer System"; |
| 3035 | asyncResp->res.jsonValue["ProcessorSummary"]["Count"] = 0; |
| 3036 | asyncResp->res.jsonValue["ProcessorSummary"]["Status"]["State"] = |
| 3037 | "Disabled"; |
| 3038 | asyncResp->res.jsonValue["MemorySummary"]["TotalSystemMemoryGiB"] = |
| 3039 | uint64_t(0); |
| 3040 | asyncResp->res.jsonValue["MemorySummary"]["Status"]["State"] = |
| 3041 | "Disabled"; |
| 3042 | asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Systems/system"; |
Ed Tanous | 04a258f | 2018-10-15 08:00:41 -0700 | [diff] [blame] | 3043 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3044 | asyncResp->res.jsonValue["Processors"]["@odata.id"] = |
| 3045 | "/redfish/v1/Systems/system/Processors"; |
| 3046 | asyncResp->res.jsonValue["Memory"]["@odata.id"] = |
| 3047 | "/redfish/v1/Systems/system/Memory"; |
| 3048 | asyncResp->res.jsonValue["Storage"]["@odata.id"] = |
| 3049 | "/redfish/v1/Systems/system/Storage"; |
Sunny Srivastava | 3179105 | 2021-03-12 10:39:16 -0600 | [diff] [blame] | 3050 | asyncResp->res.jsonValue["FabricAdapters"]["@odata.id"] = |
| 3051 | "/redfish/v1/Systems/system/FabricAdapters"; |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 3052 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3053 | asyncResp->res.jsonValue["Actions"]["#ComputerSystem.Reset"]["target"] = |
| 3054 | "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset"; |
| 3055 | asyncResp->res.jsonValue["Actions"]["#ComputerSystem.Reset"] |
| 3056 | ["@Redfish.ActionInfo"] = |
| 3057 | "/redfish/v1/Systems/system/ResetActionInfo"; |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 3058 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3059 | asyncResp->res.jsonValue["LogServices"]["@odata.id"] = |
| 3060 | "/redfish/v1/Systems/system/LogServices"; |
| 3061 | asyncResp->res.jsonValue["Bios"]["@odata.id"] = |
| 3062 | "/redfish/v1/Systems/system/Bios"; |
Jason M. Bills | c4bf637 | 2018-11-05 13:48:27 -0800 | [diff] [blame] | 3063 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3064 | nlohmann::json::array_t managedBy; |
| 3065 | nlohmann::json& manager = managedBy.emplace_back(); |
| 3066 | manager["@odata.id"] = "/redfish/v1/Managers/bmc"; |
| 3067 | asyncResp->res.jsonValue["Links"]["ManagedBy"] = std::move(managedBy); |
| 3068 | asyncResp->res.jsonValue["Status"]["Health"] = "OK"; |
| 3069 | asyncResp->res.jsonValue["Status"]["State"] = "Enabled"; |
Gunnar Mills | 0e8ac5e | 2020-11-06 15:33:24 -0600 | [diff] [blame] | 3070 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3071 | // Fill in SerialConsole info |
| 3072 | asyncResp->res.jsonValue["SerialConsole"]["MaxConcurrentSessions"] = 15; |
| 3073 | asyncResp->res.jsonValue["SerialConsole"]["IPMI"]["ServiceEnabled"] = |
| 3074 | true; |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 3075 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3076 | // TODO (Gunnar): Should look for obmc-console-ssh@2200.service |
| 3077 | asyncResp->res.jsonValue["SerialConsole"]["SSH"]["ServiceEnabled"] = |
| 3078 | true; |
| 3079 | asyncResp->res.jsonValue["SerialConsole"]["SSH"]["Port"] = 2200; |
| 3080 | asyncResp->res |
| 3081 | .jsonValue["SerialConsole"]["SSH"]["HotKeySequenceDisplay"] = |
| 3082 | "Press ~. to exit console"; |
Abhishek Patel | 5c3e927 | 2021-06-24 10:11:33 -0500 | [diff] [blame] | 3083 | getPortStatusAndPath(std::span{protocolToDBusForSystems}, |
| 3084 | std::bind_front(afterPortRequest, asyncResp)); |
Gunnar Mills | 0e8ac5e | 2020-11-06 15:33:24 -0600 | [diff] [blame] | 3085 | |
| 3086 | #ifdef BMCWEB_ENABLE_KVM |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3087 | // Fill in GraphicalConsole info |
| 3088 | asyncResp->res.jsonValue["GraphicalConsole"]["ServiceEnabled"] = true; |
| 3089 | asyncResp->res.jsonValue["GraphicalConsole"]["MaxConcurrentSessions"] = |
| 3090 | 4; |
Ed Tanous | 613dabe | 2022-07-09 11:17:36 -0700 | [diff] [blame] | 3091 | asyncResp->res.jsonValue["GraphicalConsole"]["ConnectTypesSupported"] = |
| 3092 | nlohmann::json::array_t({"KVMIP"}); |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 3093 | |
Gunnar Mills | 0e8ac5e | 2020-11-06 15:33:24 -0600 | [diff] [blame] | 3094 | #endif // BMCWEB_ENABLE_KVM |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 3095 | constexpr std::array<std::string_view, 4> inventoryForSystems{ |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3096 | "xyz.openbmc_project.Inventory.Item.Dimm", |
| 3097 | "xyz.openbmc_project.Inventory.Item.Cpu", |
| 3098 | "xyz.openbmc_project.Inventory.Item.Drive", |
| 3099 | "xyz.openbmc_project.Inventory.Item.StorageController"}; |
James Feist | b49ac87 | 2019-05-21 15:12:01 -0700 | [diff] [blame] | 3100 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3101 | auto health = std::make_shared<HealthPopulate>(asyncResp); |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 3102 | dbus::utility::getSubTreePaths( |
| 3103 | "/", 0, inventoryForSystems, |
| 3104 | [health](const boost::system::error_code& ec, |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3105 | const std::vector<std::string>& resp) { |
| 3106 | if (ec) |
| 3107 | { |
| 3108 | // no inventory |
| 3109 | return; |
| 3110 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3111 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3112 | health->inventory = resp; |
George Liu | 7a1dbc4 | 2022-12-07 16:03:22 +0800 | [diff] [blame] | 3113 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3114 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3115 | health->populate(); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3116 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3117 | getMainChassisId(asyncResp, |
| 3118 | [](const std::string& chassisId, |
| 3119 | const std::shared_ptr<bmcweb::AsyncResp>& aRsp) { |
| 3120 | nlohmann::json::array_t chassisArray; |
| 3121 | nlohmann::json& chassis = chassisArray.emplace_back(); |
Willy Tu | eddfc43 | 2022-09-26 16:46:38 +0000 | [diff] [blame] | 3122 | chassis["@odata.id"] = crow::utility::urlFromPieces( |
| 3123 | "redfish", "v1", "Chassis", chassisId); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3124 | aRsp->res.jsonValue["Links"]["Chassis"] = std::move(chassisArray); |
| 3125 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3126 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3127 | getLocationIndicatorActive(asyncResp); |
| 3128 | // TODO (Gunnar): Remove IndicatorLED after enough time has passed |
| 3129 | getIndicatorLedState(asyncResp); |
| 3130 | getComputerSystem(asyncResp, health); |
| 3131 | getHostState(asyncResp); |
| 3132 | getBootProperties(asyncResp); |
| 3133 | getBootProgress(asyncResp); |
Hieu Huynh | b6d5d45 | 2022-10-07 09:41:46 +0000 | [diff] [blame] | 3134 | getBootProgressLastStateTime(asyncResp); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3135 | getPCIeDeviceList(asyncResp, "PCIeDevices"); |
| 3136 | getHostWatchdogTimer(asyncResp); |
| 3137 | getPowerRestorePolicy(asyncResp); |
Corey Hardesty | 797d5da | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 3138 | getAutomaticRetryPolicy(asyncResp); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3139 | getLastResetTime(asyncResp); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3140 | #ifdef BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3141 | getProvisioningStatus(asyncResp); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3142 | #endif |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3143 | getTrustedModuleRequiredToBoot(asyncResp); |
| 3144 | getPowerMode(asyncResp); |
| 3145 | getIdlePowerSaver(asyncResp); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3146 | }); |
Jiaqing Zhao | 550a6bf | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 3147 | |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3148 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 3149 | .privileges(redfish::privileges::patchComputerSystem) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3150 | .methods(boost::beast::http::verb::patch)( |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 3151 | [&app](const crow::Request& req, |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3152 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 3153 | const std::string& systemName) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 3154 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3155 | { |
| 3156 | return; |
| 3157 | } |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3158 | if (systemName != "system") |
| 3159 | { |
| 3160 | messages::resourceNotFound(asyncResp->res, "ComputerSystem", |
| 3161 | systemName); |
| 3162 | return; |
| 3163 | } |
| 3164 | |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 3165 | asyncResp->res.addHeader( |
| 3166 | boost::beast::http::field::link, |
| 3167 | "</redfish/v1/JsonSchemas/ComputerSystem/ComputerSystem.json>; rel=describedby"); |
| 3168 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3169 | std::optional<bool> locationIndicatorActive; |
| 3170 | std::optional<std::string> indicatorLed; |
| 3171 | std::optional<std::string> assetTag; |
| 3172 | std::optional<std::string> powerRestorePolicy; |
| 3173 | std::optional<std::string> powerMode; |
| 3174 | std::optional<bool> wdtEnable; |
| 3175 | std::optional<std::string> wdtTimeOutAction; |
| 3176 | std::optional<std::string> bootSource; |
| 3177 | std::optional<std::string> bootType; |
| 3178 | std::optional<std::string> bootEnable; |
| 3179 | std::optional<std::string> bootAutomaticRetry; |
Corey Hardesty | 797d5da | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 3180 | std::optional<uint32_t> bootAutomaticRetryAttempts; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3181 | std::optional<bool> bootTrustedModuleRequired; |
| 3182 | std::optional<bool> ipsEnable; |
| 3183 | std::optional<uint8_t> ipsEnterUtil; |
| 3184 | std::optional<uint64_t> ipsEnterTime; |
| 3185 | std::optional<uint8_t> ipsExitUtil; |
| 3186 | std::optional<uint64_t> ipsExitTime; |
Jiaqing Zhao | 550a6bf | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 3187 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3188 | // clang-format off |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3189 | if (!json_util::readJsonPatch( |
| 3190 | req, asyncResp->res, |
| 3191 | "IndicatorLED", indicatorLed, |
| 3192 | "LocationIndicatorActive", locationIndicatorActive, |
| 3193 | "AssetTag", assetTag, |
| 3194 | "PowerRestorePolicy", powerRestorePolicy, |
| 3195 | "PowerMode", powerMode, |
| 3196 | "HostWatchdogTimer/FunctionEnabled", wdtEnable, |
| 3197 | "HostWatchdogTimer/TimeoutAction", wdtTimeOutAction, |
| 3198 | "Boot/BootSourceOverrideTarget", bootSource, |
| 3199 | "Boot/BootSourceOverrideMode", bootType, |
| 3200 | "Boot/BootSourceOverrideEnabled", bootEnable, |
| 3201 | "Boot/AutomaticRetryConfig", bootAutomaticRetry, |
Corey Hardesty | 797d5da | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 3202 | "Boot/AutomaticRetryAttempts", bootAutomaticRetryAttempts, |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3203 | "Boot/TrustedModuleRequiredToBoot", bootTrustedModuleRequired, |
| 3204 | "IdlePowerSaver/Enabled", ipsEnable, |
| 3205 | "IdlePowerSaver/EnterUtilizationPercent", ipsEnterUtil, |
| 3206 | "IdlePowerSaver/EnterDwellTimeSeconds", ipsEnterTime, |
| 3207 | "IdlePowerSaver/ExitUtilizationPercent", ipsExitUtil, |
| 3208 | "IdlePowerSaver/ExitDwellTimeSeconds", ipsExitTime)) |
| 3209 | { |
| 3210 | return; |
| 3211 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3212 | // clang-format on |
James Feist | b49ac87 | 2019-05-21 15:12:01 -0700 | [diff] [blame] | 3213 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3214 | asyncResp->res.result(boost::beast::http::status::no_content); |
James Feist | b49ac87 | 2019-05-21 15:12:01 -0700 | [diff] [blame] | 3215 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3216 | if (assetTag) |
| 3217 | { |
| 3218 | setAssetTag(asyncResp, *assetTag); |
| 3219 | } |
James Feist | b49ac87 | 2019-05-21 15:12:01 -0700 | [diff] [blame] | 3220 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3221 | if (wdtEnable || wdtTimeOutAction) |
| 3222 | { |
| 3223 | setWDTProperties(asyncResp, wdtEnable, wdtTimeOutAction); |
| 3224 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3225 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3226 | if (bootSource || bootType || bootEnable) |
| 3227 | { |
| 3228 | setBootProperties(asyncResp, bootSource, bootType, bootEnable); |
| 3229 | } |
| 3230 | if (bootAutomaticRetry) |
| 3231 | { |
| 3232 | setAutomaticRetry(asyncResp, *bootAutomaticRetry); |
| 3233 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3234 | |
Corey Hardesty | 797d5da | 2022-04-26 17:54:52 +0800 | [diff] [blame] | 3235 | if (bootAutomaticRetryAttempts) |
| 3236 | { |
| 3237 | setAutomaticRetryAttempts(asyncResp, |
| 3238 | bootAutomaticRetryAttempts.value()); |
| 3239 | } |
| 3240 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3241 | if (bootTrustedModuleRequired) |
| 3242 | { |
| 3243 | setTrustedModuleRequiredToBoot(asyncResp, |
| 3244 | *bootTrustedModuleRequired); |
| 3245 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3246 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3247 | if (locationIndicatorActive) |
| 3248 | { |
| 3249 | setLocationIndicatorActive(asyncResp, *locationIndicatorActive); |
| 3250 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3251 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3252 | // TODO (Gunnar): Remove IndicatorLED after enough time has |
| 3253 | // passed |
| 3254 | if (indicatorLed) |
| 3255 | { |
| 3256 | setIndicatorLedState(asyncResp, *indicatorLed); |
| 3257 | asyncResp->res.addHeader(boost::beast::http::field::warning, |
| 3258 | "299 - \"IndicatorLED is deprecated. Use " |
| 3259 | "LocationIndicatorActive instead.\""); |
| 3260 | } |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3261 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3262 | if (powerRestorePolicy) |
| 3263 | { |
| 3264 | setPowerRestorePolicy(asyncResp, *powerRestorePolicy); |
| 3265 | } |
Chris Cain | 3a2d0424 | 2021-05-28 16:57:10 -0500 | [diff] [blame] | 3266 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3267 | if (powerMode) |
| 3268 | { |
| 3269 | setPowerMode(asyncResp, *powerMode); |
| 3270 | } |
Chris Cain | 37bbf98 | 2021-09-20 10:53:09 -0500 | [diff] [blame] | 3271 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3272 | if (ipsEnable || ipsEnterUtil || ipsEnterTime || ipsExitUtil || |
| 3273 | ipsExitTime) |
| 3274 | { |
| 3275 | setIdlePowerSaver(asyncResp, ipsEnable, ipsEnterUtil, ipsEnterTime, |
| 3276 | ipsExitUtil, ipsExitTime); |
| 3277 | } |
| 3278 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3279 | } |
AppaRao Puli | 1cb1a9e | 2020-07-17 23:38:57 +0530 | [diff] [blame] | 3280 | |
Ed Tanous | 38c8a6f | 2022-09-01 16:37:27 -0700 | [diff] [blame] | 3281 | inline void handleSystemCollectionResetActionHead( |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 3282 | crow::App& app, const crow::Request& req, |
| 3283 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
| 3284 | { |
| 3285 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
| 3286 | { |
| 3287 | return; |
| 3288 | } |
| 3289 | asyncResp->res.addHeader( |
| 3290 | boost::beast::http::field::link, |
| 3291 | "</redfish/v1/JsonSchemas/ActionInfo/ActionInfo.json>; rel=describedby"); |
| 3292 | } |
| 3293 | |
AppaRao Puli | 1cb1a9e | 2020-07-17 23:38:57 +0530 | [diff] [blame] | 3294 | /** |
| 3295 | * SystemResetActionInfo derived class for delivering Computer Systems |
| 3296 | * ResetType AllowableValues using ResetInfo schema. |
| 3297 | */ |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3298 | inline void requestRoutesSystemResetActionInfo(App& app) |
AppaRao Puli | 1cb1a9e | 2020-07-17 23:38:57 +0530 | [diff] [blame] | 3299 | { |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 3300 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/system/ResetActionInfo/") |
| 3301 | .privileges(redfish::privileges::headActionInfo) |
| 3302 | .methods(boost::beast::http::verb::head)(std::bind_front( |
| 3303 | handleSystemCollectionResetActionHead, std::ref(app))); |
AppaRao Puli | 1cb1a9e | 2020-07-17 23:38:57 +0530 | [diff] [blame] | 3304 | /** |
| 3305 | * Functions triggers appropriate requests on DBus |
| 3306 | */ |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3307 | BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/ResetActionInfo/") |
Ed Tanous | ed39821 | 2021-06-09 17:05:54 -0700 | [diff] [blame] | 3308 | .privileges(redfish::privileges::getActionInfo) |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3309 | .methods(boost::beast::http::verb::get)( |
Ed Tanous | 45ca1b8 | 2022-03-25 13:07:27 -0700 | [diff] [blame] | 3310 | [&app](const crow::Request& req, |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3311 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
| 3312 | const std::string& systemName) { |
Carson Labrado | 3ba0007 | 2022-06-06 19:40:56 +0000 | [diff] [blame] | 3313 | if (!redfish::setUpRedfishRoute(app, req, asyncResp)) |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3314 | { |
| 3315 | return; |
| 3316 | } |
Asmitha Karunanithi | 746b56f | 2023-02-27 23:29:49 -0600 | [diff] [blame] | 3317 | |
| 3318 | if (systemName == "hypervisor") |
| 3319 | { |
| 3320 | handleHypervisorResetActionGet(asyncResp); |
| 3321 | return; |
| 3322 | } |
| 3323 | |
Ed Tanous | 22d268c | 2022-05-19 09:39:07 -0700 | [diff] [blame] | 3324 | if (systemName != "system") |
| 3325 | { |
| 3326 | messages::resourceNotFound(asyncResp->res, "ComputerSystem", |
| 3327 | systemName); |
| 3328 | return; |
| 3329 | } |
| 3330 | |
Ed Tanous | dd60b9e | 2022-07-07 17:03:54 -0700 | [diff] [blame] | 3331 | asyncResp->res.addHeader( |
| 3332 | boost::beast::http::field::link, |
| 3333 | "</redfish/v1/JsonSchemas/ActionInfo/ActionInfo.json>; rel=describedby"); |
Ed Tanous | 1476687 | 2022-03-15 10:44:42 -0700 | [diff] [blame] | 3334 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3335 | asyncResp->res.jsonValue["@odata.id"] = |
| 3336 | "/redfish/v1/Systems/system/ResetActionInfo"; |
| 3337 | asyncResp->res.jsonValue["@odata.type"] = |
| 3338 | "#ActionInfo.v1_1_2.ActionInfo"; |
| 3339 | asyncResp->res.jsonValue["Name"] = "Reset Action Info"; |
| 3340 | asyncResp->res.jsonValue["Id"] = "ResetActionInfo"; |
Nan Zhou | 3215e70 | 2022-06-01 16:55:13 +0000 | [diff] [blame] | 3341 | |
| 3342 | nlohmann::json::array_t parameters; |
| 3343 | nlohmann::json::object_t parameter; |
| 3344 | |
| 3345 | parameter["Name"] = "ResetType"; |
| 3346 | parameter["Required"] = true; |
| 3347 | parameter["DataType"] = "String"; |
| 3348 | nlohmann::json::array_t allowableValues; |
| 3349 | allowableValues.emplace_back("On"); |
| 3350 | allowableValues.emplace_back("ForceOff"); |
| 3351 | allowableValues.emplace_back("ForceOn"); |
| 3352 | allowableValues.emplace_back("ForceRestart"); |
| 3353 | allowableValues.emplace_back("GracefulRestart"); |
| 3354 | allowableValues.emplace_back("GracefulShutdown"); |
| 3355 | allowableValues.emplace_back("PowerCycle"); |
| 3356 | allowableValues.emplace_back("Nmi"); |
| 3357 | parameter["AllowableValues"] = std::move(allowableValues); |
| 3358 | parameters.emplace_back(std::move(parameter)); |
| 3359 | |
| 3360 | asyncResp->res.jsonValue["Parameters"] = std::move(parameters); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 3361 | }); |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 3362 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 3363 | } // namespace redfish |