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 | |
James Feist | b49ac87 | 2019-05-21 15:12:01 -0700 | [diff] [blame] | 18 | #include "health.hpp" |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 19 | #include "led.hpp" |
Jason M. Bills | f5c9f8b | 2018-12-18 16:51:18 -0800 | [diff] [blame] | 20 | #include "pcie.hpp" |
Jennifer Lee | c5d03ff | 2019-03-08 15:42:58 -0800 | [diff] [blame] | 21 | #include "redfish_util.hpp" |
| 22 | |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 23 | #include <boost/container/flat_map.hpp> |
| 24 | #include <node.hpp> |
Andrew Geissler | cb7e1e7 | 2019-02-19 13:05:38 -0600 | [diff] [blame] | 25 | #include <utils/fw_utils.hpp> |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 26 | #include <utils/json_utils.hpp> |
Ed Tanous | abf2add | 2019-01-22 16:40:12 -0800 | [diff] [blame] | 27 | #include <variant> |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 28 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 29 | namespace redfish |
| 30 | { |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 31 | |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 32 | /** |
| 33 | * @brief Updates the Functional State of DIMMs |
| 34 | * |
| 35 | * @param[in] aResp Shared pointer for completing asynchronous calls |
| 36 | * @param[in] dimmState Dimm's Functional state, true/false |
| 37 | * |
| 38 | * @return None. |
| 39 | */ |
| 40 | void updateDimmProperties(std::shared_ptr<AsyncResp> aResp, |
| 41 | const std::variant<bool> &dimmState) |
| 42 | { |
| 43 | const bool *isDimmFunctional = std::get_if<bool>(&dimmState); |
| 44 | if (isDimmFunctional == nullptr) |
| 45 | { |
| 46 | messages::internalError(aResp->res); |
| 47 | return; |
| 48 | } |
Gunnar Mills | 698654b | 2019-10-16 13:17:37 -0500 | [diff] [blame] | 49 | BMCWEB_LOG_DEBUG << "Dimm Functional: " << *isDimmFunctional; |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 50 | |
| 51 | // Set it as Enabled if atleast one DIMM is functional |
| 52 | // Update STATE only if previous State was DISABLED and current Dimm is |
| 53 | // ENABLED. |
| 54 | nlohmann::json &prevMemSummary = |
| 55 | aResp->res.jsonValue["MemorySummary"]["Status"]["State"]; |
| 56 | if (prevMemSummary == "Disabled") |
| 57 | { |
| 58 | if (*isDimmFunctional == true) |
| 59 | { |
| 60 | aResp->res.jsonValue["MemorySummary"]["Status"]["State"] = |
| 61 | "Enabled"; |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 66 | /* |
| 67 | * @brief Update "ProcessorSummary" "Count" based on Cpu PresenceState |
| 68 | * |
| 69 | * @param[in] aResp Shared pointer for completing asynchronous calls |
| 70 | * @param[in] cpuPresenceState CPU present or not |
| 71 | * |
| 72 | * @return None. |
| 73 | */ |
| 74 | void modifyCpuPresenceState(std::shared_ptr<AsyncResp> aResp, |
| 75 | const std::variant<bool> &cpuPresenceState) |
| 76 | { |
| 77 | const bool *isCpuPresent = std::get_if<bool>(&cpuPresenceState); |
| 78 | |
| 79 | if (isCpuPresent == nullptr) |
| 80 | { |
| 81 | messages::internalError(aResp->res); |
| 82 | return; |
| 83 | } |
Gunnar Mills | 698654b | 2019-10-16 13:17:37 -0500 | [diff] [blame] | 84 | BMCWEB_LOG_DEBUG << "Cpu Present: " << *isCpuPresent; |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 85 | |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 86 | if (*isCpuPresent == true) |
| 87 | { |
James Feist | b4b9595 | 2019-12-05 15:01:55 -0800 | [diff] [blame] | 88 | nlohmann::json &procCount = |
| 89 | aResp->res.jsonValue["ProcessorSummary"]["Count"]; |
| 90 | auto procCountPtr = |
| 91 | procCount.get_ptr<nlohmann::json::number_integer_t *>(); |
| 92 | if (procCountPtr != nullptr) |
| 93 | { |
| 94 | // shouldn't be possible to be nullptr |
| 95 | *procCountPtr += 1; |
| 96 | } |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 97 | } |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* |
| 101 | * @brief Update "ProcessorSummary" "Status" "State" based on |
| 102 | * CPU Functional State |
| 103 | * |
| 104 | * @param[in] aResp Shared pointer for completing asynchronous calls |
| 105 | * @param[in] cpuFunctionalState is CPU functional true/false |
| 106 | * |
| 107 | * @return None. |
| 108 | */ |
| 109 | void modifyCpuFunctionalState(std::shared_ptr<AsyncResp> aResp, |
| 110 | const std::variant<bool> &cpuFunctionalState) |
| 111 | { |
| 112 | const bool *isCpuFunctional = std::get_if<bool>(&cpuFunctionalState); |
| 113 | |
| 114 | if (isCpuFunctional == nullptr) |
| 115 | { |
| 116 | messages::internalError(aResp->res); |
| 117 | return; |
| 118 | } |
Gunnar Mills | 698654b | 2019-10-16 13:17:37 -0500 | [diff] [blame] | 119 | BMCWEB_LOG_DEBUG << "Cpu Functional: " << *isCpuFunctional; |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 120 | |
| 121 | nlohmann::json &prevProcState = |
| 122 | aResp->res.jsonValue["ProcessorSummary"]["Status"]["State"]; |
| 123 | |
| 124 | // Set it as Enabled if atleast one CPU is functional |
| 125 | // Update STATE only if previous State was Non_Functional and current CPU is |
| 126 | // Functional. |
| 127 | if (prevProcState == "Disabled") |
| 128 | { |
| 129 | if (*isCpuFunctional == true) |
| 130 | { |
| 131 | aResp->res.jsonValue["ProcessorSummary"]["Status"]["State"] = |
| 132 | "Enabled"; |
| 133 | } |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | /* |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 138 | * @brief Retrieves computer system properties over dbus |
| 139 | * |
| 140 | * @param[in] aResp Shared pointer for completing asynchronous calls |
| 141 | * @param[in] name Computer system name from request |
| 142 | * |
| 143 | * @return None. |
| 144 | */ |
James Feist | 5bc2dc8 | 2019-10-22 14:33:16 -0700 | [diff] [blame] | 145 | void getComputerSystem(std::shared_ptr<AsyncResp> aResp, |
| 146 | std::shared_ptr<HealthPopulate> systemHealth) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 147 | { |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 148 | BMCWEB_LOG_DEBUG << "Get available system components."; |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 149 | |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 150 | crow::connections::systemBus->async_method_call( |
James Feist | 5bc2dc8 | 2019-10-22 14:33:16 -0700 | [diff] [blame] | 151 | [aResp, systemHealth]( |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 152 | const boost::system::error_code ec, |
| 153 | const std::vector<std::pair< |
| 154 | std::string, |
| 155 | std::vector<std::pair<std::string, std::vector<std::string>>>>> |
| 156 | &subtree) { |
| 157 | if (ec) |
| 158 | { |
| 159 | BMCWEB_LOG_DEBUG << "DBUS response error"; |
Jason M. Bills | f12894f | 2018-10-09 12:45:45 -0700 | [diff] [blame] | 160 | messages::internalError(aResp->res); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 161 | return; |
| 162 | } |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 163 | // Iterate over all retrieved ObjectPaths. |
| 164 | for (const std::pair<std::string, |
| 165 | std::vector<std::pair< |
| 166 | std::string, std::vector<std::string>>>> |
| 167 | &object : subtree) |
| 168 | { |
| 169 | const std::string &path = object.first; |
| 170 | BMCWEB_LOG_DEBUG << "Got path: " << path; |
| 171 | const std::vector< |
| 172 | std::pair<std::string, std::vector<std::string>>> |
| 173 | &connectionNames = object.second; |
| 174 | if (connectionNames.size() < 1) |
| 175 | { |
| 176 | continue; |
| 177 | } |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 178 | |
James Feist | 5bc2dc8 | 2019-10-22 14:33:16 -0700 | [diff] [blame] | 179 | auto memoryHealth = std::make_shared<HealthPopulate>( |
| 180 | aResp, aResp->res.jsonValue["MemorySummary"]["Status"]); |
| 181 | |
| 182 | auto cpuHealth = std::make_shared<HealthPopulate>( |
| 183 | aResp, aResp->res.jsonValue["ProcessorSummary"]["Status"]); |
| 184 | |
| 185 | systemHealth->children.emplace_back(memoryHealth); |
| 186 | systemHealth->children.emplace_back(cpuHealth); |
| 187 | |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 188 | // This is not system, so check if it's cpu, dimm, UUID or |
| 189 | // BiosVer |
| 190 | for (const auto &connection : connectionNames) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 191 | { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 192 | for (const auto &interfaceName : connection.second) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 193 | { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 194 | if (interfaceName == |
| 195 | "xyz.openbmc_project.Inventory.Item.Dimm") |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 196 | { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 197 | BMCWEB_LOG_DEBUG |
| 198 | << "Found Dimm, now get its properties."; |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 199 | |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 200 | crow::connections::systemBus->async_method_call( |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 201 | [aResp, service{connection.first}, |
| 202 | path(std::move(path))]( |
| 203 | const boost::system::error_code ec, |
| 204 | const std::vector< |
| 205 | std::pair<std::string, VariantType>> |
| 206 | &properties) { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 207 | if (ec) |
| 208 | { |
| 209 | BMCWEB_LOG_ERROR |
| 210 | << "DBUS response error " << ec; |
| 211 | messages::internalError(aResp->res); |
| 212 | return; |
| 213 | } |
| 214 | BMCWEB_LOG_DEBUG << "Got " |
| 215 | << properties.size() |
Gunnar Mills | 698654b | 2019-10-16 13:17:37 -0500 | [diff] [blame] | 216 | << " Dimm properties."; |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 217 | |
| 218 | if (properties.size() > 0) |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 219 | { |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 220 | for (const std::pair<std::string, |
| 221 | VariantType> |
| 222 | &property : properties) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 223 | { |
Cheng C Yang | 5fd7ba6 | 2019-11-28 15:58:08 +0800 | [diff] [blame] | 224 | if (property.first != |
| 225 | "MemorySizeInKB") |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 226 | { |
Cheng C Yang | 5fd7ba6 | 2019-11-28 15:58:08 +0800 | [diff] [blame] | 227 | continue; |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 228 | } |
Cheng C Yang | 5fd7ba6 | 2019-11-28 15:58:08 +0800 | [diff] [blame] | 229 | const uint32_t *value = |
| 230 | sdbusplus::message::variant_ns:: |
| 231 | get_if<uint32_t>( |
| 232 | &property.second); |
| 233 | if (value == nullptr) |
| 234 | { |
| 235 | BMCWEB_LOG_DEBUG |
| 236 | << "Find incorrect type of " |
| 237 | "MemorySize"; |
| 238 | continue; |
| 239 | } |
| 240 | nlohmann::json &totalMemory = |
| 241 | aResp->res |
| 242 | .jsonValue["MemorySummar" |
| 243 | "y"] |
| 244 | ["TotalSystemMe" |
| 245 | "moryGiB"]; |
| 246 | uint64_t *preValue = |
| 247 | totalMemory |
| 248 | .get_ptr<uint64_t *>(); |
| 249 | if (preValue == nullptr) |
| 250 | { |
| 251 | continue; |
| 252 | } |
| 253 | aResp->res |
| 254 | .jsonValue["MemorySummary"] |
| 255 | ["TotalSystemMemoryGi" |
| 256 | "B"] = |
| 257 | *value / (1024 * 1024) + |
| 258 | *preValue; |
| 259 | aResp->res |
| 260 | .jsonValue["MemorySummary"] |
| 261 | ["Status"]["State"] = |
| 262 | "Enabled"; |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 263 | } |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 264 | } |
Alpana Kumari | 9d3ae10 | 2019-04-12 06:49:32 -0500 | [diff] [blame] | 265 | else |
| 266 | { |
| 267 | auto getDimmProperties = |
| 268 | [aResp]( |
| 269 | const boost::system::error_code |
| 270 | ec, |
| 271 | const std::variant<bool> |
| 272 | &dimmState) { |
| 273 | if (ec) |
| 274 | { |
| 275 | BMCWEB_LOG_ERROR |
| 276 | << "DBUS response " |
| 277 | "error " |
| 278 | << ec; |
| 279 | return; |
| 280 | } |
| 281 | updateDimmProperties(aResp, |
| 282 | dimmState); |
| 283 | }; |
| 284 | crow::connections::systemBus |
| 285 | ->async_method_call( |
| 286 | std::move(getDimmProperties), |
| 287 | service, path, |
| 288 | "org.freedesktop.DBus." |
| 289 | "Properties", |
| 290 | "Get", |
| 291 | "xyz.openbmc_project.State." |
| 292 | "Decorator.OperationalStatus", |
| 293 | "Functional"); |
| 294 | } |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 295 | }, |
| 296 | connection.first, path, |
| 297 | "org.freedesktop.DBus.Properties", "GetAll", |
| 298 | "xyz.openbmc_project.Inventory.Item.Dimm"); |
James Feist | 5bc2dc8 | 2019-10-22 14:33:16 -0700 | [diff] [blame] | 299 | |
| 300 | memoryHealth->inventory.emplace_back(path); |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 301 | } |
| 302 | else if (interfaceName == |
| 303 | "xyz.openbmc_project.Inventory.Item.Cpu") |
| 304 | { |
| 305 | BMCWEB_LOG_DEBUG |
| 306 | << "Found Cpu, now get its properties."; |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 307 | |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 308 | crow::connections::systemBus->async_method_call( |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 309 | [aResp, service{connection.first}, |
| 310 | path(std::move(path))]( |
| 311 | const boost::system::error_code ec, |
| 312 | const std::vector< |
| 313 | std::pair<std::string, VariantType>> |
| 314 | &properties) { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 315 | if (ec) |
| 316 | { |
| 317 | BMCWEB_LOG_ERROR |
| 318 | << "DBUS response error " << ec; |
| 319 | messages::internalError(aResp->res); |
| 320 | return; |
| 321 | } |
| 322 | BMCWEB_LOG_DEBUG << "Got " |
| 323 | << properties.size() |
Gunnar Mills | 698654b | 2019-10-16 13:17:37 -0500 | [diff] [blame] | 324 | << " Cpu properties."; |
Ed Tanous | 04a258f | 2018-10-15 08:00:41 -0700 | [diff] [blame] | 325 | |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 326 | if (properties.size() > 0) |
| 327 | { |
| 328 | for (const auto &property : properties) |
| 329 | { |
| 330 | if (property.first == |
| 331 | "ProcessorFamily") |
| 332 | { |
| 333 | const std::string *value = |
| 334 | sdbusplus::message:: |
| 335 | variant_ns::get_if< |
| 336 | std::string>( |
| 337 | &property.second); |
| 338 | if (value != nullptr) |
| 339 | { |
| 340 | nlohmann::json |
| 341 | &procSummary = |
| 342 | aResp->res.jsonValue |
| 343 | ["ProcessorSumm" |
| 344 | "ary"]; |
| 345 | nlohmann::json &procCount = |
| 346 | procSummary["Count"]; |
James Feist | b4b9595 | 2019-12-05 15:01:55 -0800 | [diff] [blame] | 347 | |
| 348 | auto procCountPtr = |
| 349 | procCount.get_ptr< |
| 350 | nlohmann::json:: |
| 351 | number_integer_t |
| 352 | *>(); |
| 353 | if (procCountPtr != nullptr) |
| 354 | { |
| 355 | // shouldn't be possible |
| 356 | // to be nullptr |
| 357 | *procCountPtr += 1; |
| 358 | } |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 359 | procSummary["Status"] |
| 360 | ["State"] = |
| 361 | "Enabled"; |
| 362 | procSummary["Model"] = |
| 363 | *value; |
| 364 | } |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 365 | } |
| 366 | } |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 367 | } |
Alpana Kumari | 57e8c9b | 2019-04-15 01:09:36 -0500 | [diff] [blame] | 368 | else |
| 369 | { |
| 370 | auto getCpuPresenceState = |
| 371 | [aResp]( |
| 372 | const boost::system::error_code |
| 373 | ec, |
| 374 | const std::variant<bool> |
| 375 | &cpuPresenceCheck) { |
| 376 | if (ec) |
| 377 | { |
| 378 | BMCWEB_LOG_ERROR |
| 379 | << "DBUS response " |
| 380 | "error " |
| 381 | << ec; |
| 382 | return; |
| 383 | } |
| 384 | modifyCpuPresenceState( |
| 385 | aResp, cpuPresenceCheck); |
| 386 | }; |
| 387 | |
| 388 | auto getCpuFunctionalState = |
| 389 | [aResp]( |
| 390 | const boost::system::error_code |
| 391 | ec, |
| 392 | const std::variant<bool> |
| 393 | &cpuFunctionalCheck) { |
| 394 | if (ec) |
| 395 | { |
| 396 | BMCWEB_LOG_ERROR |
| 397 | << "DBUS response " |
| 398 | "error " |
| 399 | << ec; |
| 400 | return; |
| 401 | } |
| 402 | modifyCpuFunctionalState( |
| 403 | aResp, cpuFunctionalCheck); |
| 404 | }; |
| 405 | // Get the Presence of CPU |
| 406 | crow::connections::systemBus |
| 407 | ->async_method_call( |
| 408 | std::move(getCpuPresenceState), |
| 409 | service, path, |
| 410 | "org.freedesktop.DBus." |
| 411 | "Properties", |
| 412 | "Get", |
| 413 | "xyz.openbmc_project.Inventory." |
| 414 | "Item", |
| 415 | "Present"); |
| 416 | |
| 417 | // Get the Functional State |
| 418 | crow::connections::systemBus |
| 419 | ->async_method_call( |
| 420 | std::move( |
| 421 | getCpuFunctionalState), |
| 422 | service, path, |
| 423 | "org.freedesktop.DBus." |
| 424 | "Properties", |
| 425 | "Get", |
| 426 | "xyz.openbmc_project.State." |
| 427 | "Decorator." |
| 428 | "OperationalStatus", |
| 429 | "Functional"); |
| 430 | |
| 431 | // Get the MODEL from |
| 432 | // xyz.openbmc_project.Inventory.Decorator.Asset |
| 433 | // support it later as Model is Empty |
| 434 | // currently. |
| 435 | } |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 436 | }, |
| 437 | connection.first, path, |
| 438 | "org.freedesktop.DBus.Properties", "GetAll", |
| 439 | "xyz.openbmc_project.Inventory.Item.Cpu"); |
James Feist | 5bc2dc8 | 2019-10-22 14:33:16 -0700 | [diff] [blame] | 440 | |
| 441 | cpuHealth->inventory.emplace_back(path); |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 442 | } |
| 443 | else if (interfaceName == |
| 444 | "xyz.openbmc_project.Common.UUID") |
| 445 | { |
| 446 | BMCWEB_LOG_DEBUG |
| 447 | << "Found UUID, now get its properties."; |
| 448 | crow::connections::systemBus->async_method_call( |
| 449 | [aResp](const boost::system::error_code ec, |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 450 | const std::vector< |
| 451 | std::pair<std::string, VariantType>> |
| 452 | &properties) { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 453 | if (ec) |
| 454 | { |
| 455 | BMCWEB_LOG_DEBUG |
| 456 | << "DBUS response error " << ec; |
| 457 | messages::internalError(aResp->res); |
| 458 | return; |
| 459 | } |
| 460 | BMCWEB_LOG_DEBUG << "Got " |
| 461 | << properties.size() |
Gunnar Mills | 698654b | 2019-10-16 13:17:37 -0500 | [diff] [blame] | 462 | << " UUID properties."; |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 463 | for (const std::pair<std::string, |
| 464 | VariantType> |
| 465 | &property : properties) |
| 466 | { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 467 | if (property.first == "UUID") |
| 468 | { |
| 469 | const std::string *value = |
| 470 | sdbusplus::message::variant_ns:: |
| 471 | get_if<std::string>( |
| 472 | &property.second); |
Ed Tanous | 04a258f | 2018-10-15 08:00:41 -0700 | [diff] [blame] | 473 | |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 474 | if (value != nullptr) |
| 475 | { |
| 476 | std::string valueStr = *value; |
| 477 | if (valueStr.size() == 32) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 478 | { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 479 | valueStr.insert(8, 1, '-'); |
| 480 | valueStr.insert(13, 1, '-'); |
| 481 | valueStr.insert(18, 1, '-'); |
| 482 | valueStr.insert(23, 1, '-'); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 483 | } |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 484 | BMCWEB_LOG_DEBUG << "UUID = " |
| 485 | << valueStr; |
| 486 | aResp->res.jsonValue["UUID"] = |
| 487 | valueStr; |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 488 | } |
| 489 | } |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 490 | } |
| 491 | }, |
| 492 | connection.first, path, |
| 493 | "org.freedesktop.DBus.Properties", "GetAll", |
| 494 | "xyz.openbmc_project.Common.UUID"); |
| 495 | } |
| 496 | else if (interfaceName == |
| 497 | "xyz.openbmc_project.Inventory.Item.System") |
| 498 | { |
| 499 | crow::connections::systemBus->async_method_call( |
| 500 | [aResp](const boost::system::error_code ec, |
| 501 | const std::vector< |
| 502 | std::pair<std::string, VariantType>> |
| 503 | &propertiesList) { |
| 504 | if (ec) |
| 505 | { |
James Feist | e4a4b9a | 2019-06-20 14:08:07 -0700 | [diff] [blame] | 506 | // doesn't have to include this |
| 507 | // interface |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 508 | return; |
| 509 | } |
Gunnar Mills | 698654b | 2019-10-16 13:17:37 -0500 | [diff] [blame] | 510 | BMCWEB_LOG_DEBUG |
| 511 | << "Got " << propertiesList.size() |
| 512 | << " properties for system"; |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 513 | for (const std::pair<std::string, |
| 514 | VariantType> |
| 515 | &property : propertiesList) |
| 516 | { |
beccabroek | fc5afcf | 2019-03-05 14:35:15 -0600 | [diff] [blame] | 517 | const std::string &propertyName = |
| 518 | property.first; |
| 519 | if ((propertyName == "PartNumber") || |
| 520 | (propertyName == "SerialNumber") || |
| 521 | (propertyName == "Manufacturer") || |
| 522 | (propertyName == "Model")) |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 523 | { |
beccabroek | fc5afcf | 2019-03-05 14:35:15 -0600 | [diff] [blame] | 524 | const std::string *value = |
| 525 | std::get_if<std::string>( |
| 526 | &property.second); |
| 527 | if (value != nullptr) |
| 528 | { |
| 529 | aResp->res |
| 530 | .jsonValue[propertyName] = |
| 531 | *value; |
| 532 | } |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 533 | } |
| 534 | } |
| 535 | aResp->res.jsonValue["Name"] = "system"; |
| 536 | aResp->res.jsonValue["Id"] = |
| 537 | aResp->res.jsonValue["SerialNumber"]; |
Andrew Geissler | cb7e1e7 | 2019-02-19 13:05:38 -0600 | [diff] [blame] | 538 | // Grab the bios version |
| 539 | fw_util::getActiveFwVersion( |
| 540 | aResp, fw_util::biosPurpose, |
| 541 | "BiosVersion"); |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 542 | }, |
| 543 | connection.first, path, |
| 544 | "org.freedesktop.DBus.Properties", "GetAll", |
| 545 | "xyz.openbmc_project.Inventory.Decorator." |
| 546 | "Asset"); |
James Feist | e4a4b9a | 2019-06-20 14:08:07 -0700 | [diff] [blame] | 547 | |
| 548 | crow::connections::systemBus->async_method_call( |
| 549 | [aResp]( |
| 550 | const boost::system::error_code ec, |
| 551 | const std::variant<std::string> &property) { |
| 552 | if (ec) |
| 553 | { |
| 554 | // doesn't have to include this |
| 555 | // interface |
| 556 | return; |
| 557 | } |
| 558 | |
| 559 | const std::string *value = |
| 560 | std::get_if<std::string>(&property); |
| 561 | if (value != nullptr) |
| 562 | { |
| 563 | aResp->res.jsonValue["AssetTag"] = |
| 564 | *value; |
| 565 | } |
| 566 | }, |
| 567 | connection.first, path, |
| 568 | "org.freedesktop.DBus.Properties", "Get", |
| 569 | "xyz.openbmc_project.Inventory.Decorator." |
| 570 | "AssetTag", |
| 571 | "AssetTag"); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 572 | } |
| 573 | } |
| 574 | } |
| 575 | } |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 576 | }, |
| 577 | "xyz.openbmc_project.ObjectMapper", |
| 578 | "/xyz/openbmc_project/object_mapper", |
| 579 | "xyz.openbmc_project.ObjectMapper", "GetSubTree", |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 580 | "/xyz/openbmc_project/inventory", int32_t(0), |
| 581 | std::array<const char *, 5>{ |
| 582 | "xyz.openbmc_project.Inventory.Decorator.Asset", |
| 583 | "xyz.openbmc_project.Inventory.Item.Cpu", |
| 584 | "xyz.openbmc_project.Inventory.Item.Dimm", |
| 585 | "xyz.openbmc_project.Inventory.Item.System", |
| 586 | "xyz.openbmc_project.Common.UUID", |
| 587 | }); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | /** |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 591 | * @brief Retrieves host state properties over dbus |
| 592 | * |
| 593 | * @param[in] aResp Shared pointer for completing asynchronous calls. |
| 594 | * |
| 595 | * @return None. |
| 596 | */ |
| 597 | void getHostState(std::shared_ptr<AsyncResp> aResp) |
| 598 | { |
| 599 | BMCWEB_LOG_DEBUG << "Get host information."; |
| 600 | crow::connections::systemBus->async_method_call( |
Jennifer Lee | c5d03ff | 2019-03-08 15:42:58 -0800 | [diff] [blame] | 601 | [aResp](const boost::system::error_code ec, |
| 602 | const std::variant<std::string> &hostState) { |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 603 | if (ec) |
| 604 | { |
| 605 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
Jason M. Bills | f12894f | 2018-10-09 12:45:45 -0700 | [diff] [blame] | 606 | messages::internalError(aResp->res); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 607 | return; |
| 608 | } |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 609 | |
Ed Tanous | abf2add | 2019-01-22 16:40:12 -0800 | [diff] [blame] | 610 | const std::string *s = std::get_if<std::string>(&hostState); |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 611 | BMCWEB_LOG_DEBUG << "Host state: " << *s; |
| 612 | if (s != nullptr) |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 613 | { |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 614 | // Verify Host State |
Andrew Geissler | 9473266 | 2019-01-08 19:32:16 -0800 | [diff] [blame] | 615 | if (*s == "xyz.openbmc_project.State.Host.HostState.Running") |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 616 | { |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 617 | aResp->res.jsonValue["PowerState"] = "On"; |
| 618 | aResp->res.jsonValue["Status"]["State"] = "Enabled"; |
| 619 | } |
Andrew Geissler | 83935af | 2020-02-13 10:24:53 -0600 | [diff] [blame] | 620 | else if (*s == "xyz.openbmc_project.State.Host.HostState." |
| 621 | "DiagnosticMode") |
| 622 | { |
| 623 | aResp->res.jsonValue["PowerState"] = "On"; |
| 624 | aResp->res.jsonValue["Status"]["State"] = "InTest"; |
| 625 | } |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 626 | else |
| 627 | { |
| 628 | aResp->res.jsonValue["PowerState"] = "Off"; |
| 629 | aResp->res.jsonValue["Status"]["State"] = "Disabled"; |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 630 | } |
| 631 | } |
| 632 | }, |
| 633 | "xyz.openbmc_project.State.Host", "/xyz/openbmc_project/state/host0", |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 634 | "org.freedesktop.DBus.Properties", "Get", |
| 635 | "xyz.openbmc_project.State.Host", "CurrentHostState"); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 636 | } |
| 637 | |
| 638 | /** |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 639 | * @brief Traslates boot source DBUS property value to redfish. |
| 640 | * |
| 641 | * @param[in] dbusSource The boot source in DBUS speak. |
| 642 | * |
| 643 | * @return Returns as a string, the boot source in Redfish terms. If translation |
| 644 | * cannot be done, returns an empty string. |
| 645 | */ |
| 646 | static std::string dbusToRfBootSource(const std::string &dbusSource) |
| 647 | { |
| 648 | if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Default") |
| 649 | { |
| 650 | return "None"; |
| 651 | } |
| 652 | else if (dbusSource == |
| 653 | "xyz.openbmc_project.Control.Boot.Source.Sources.Disk") |
| 654 | { |
| 655 | return "Hdd"; |
| 656 | } |
| 657 | else if (dbusSource == |
Santosh Puranik | a71dc0b | 2019-05-23 20:10:49 +0530 | [diff] [blame] | 658 | "xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia") |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 659 | { |
| 660 | return "Cd"; |
| 661 | } |
| 662 | else if (dbusSource == |
| 663 | "xyz.openbmc_project.Control.Boot.Source.Sources.Network") |
| 664 | { |
| 665 | return "Pxe"; |
| 666 | } |
Jennifer Lee | 9f16b2c | 2019-04-19 15:33:48 -0700 | [diff] [blame] | 667 | else if (dbusSource == |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 668 | "xyz.openbmc_project.Control.Boot.Source.Sources.RemovableMedia") |
Jennifer Lee | 9f16b2c | 2019-04-19 15:33:48 -0700 | [diff] [blame] | 669 | { |
| 670 | return "Usb"; |
| 671 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 672 | else |
| 673 | { |
| 674 | return ""; |
| 675 | } |
| 676 | } |
| 677 | |
| 678 | /** |
| 679 | * @brief Traslates boot mode DBUS property value to redfish. |
| 680 | * |
| 681 | * @param[in] dbusMode The boot mode in DBUS speak. |
| 682 | * |
| 683 | * @return Returns as a string, the boot mode in Redfish terms. If translation |
| 684 | * cannot be done, returns an empty string. |
| 685 | */ |
| 686 | static std::string dbusToRfBootMode(const std::string &dbusMode) |
| 687 | { |
| 688 | if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular") |
| 689 | { |
| 690 | return "None"; |
| 691 | } |
| 692 | else if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe") |
| 693 | { |
| 694 | return "Diags"; |
| 695 | } |
| 696 | else if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup") |
| 697 | { |
| 698 | return "BiosSetup"; |
| 699 | } |
| 700 | else |
| 701 | { |
| 702 | return ""; |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | /** |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 707 | * @brief Traslates boot source from Redfish to the DBus boot paths. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 708 | * |
| 709 | * @param[in] rfSource The boot source in Redfish. |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 710 | * @param[out] bootSource The DBus source |
| 711 | * @param[out] bootMode the DBus boot mode |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 712 | * |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 713 | * @return Integer error code. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 714 | */ |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 715 | static int assignBootParameters(std::shared_ptr<AsyncResp> aResp, |
| 716 | const std::string &rfSource, |
| 717 | std::string &bootSource, std::string &bootMode) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 718 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 719 | // The caller has initialized the bootSource and bootMode to: |
| 720 | // bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular"; |
| 721 | // bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Default"; |
| 722 | // Only modify the bootSource/bootMode variable needed to achieve the |
| 723 | // desired boot action. |
| 724 | |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 725 | if (rfSource == "None") |
| 726 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 727 | return 0; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 728 | } |
| 729 | else if (rfSource == "Pxe") |
| 730 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 731 | bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Network"; |
| 732 | } |
| 733 | else if (rfSource == "Hdd") |
| 734 | { |
| 735 | bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Disk"; |
| 736 | } |
| 737 | else if (rfSource == "Diags") |
| 738 | { |
| 739 | bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe"; |
| 740 | } |
| 741 | else if (rfSource == "Cd") |
| 742 | { |
| 743 | bootSource = |
| 744 | "xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia"; |
| 745 | } |
| 746 | else if (rfSource == "BiosSetup") |
| 747 | { |
| 748 | bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup"; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 749 | } |
Jennifer Lee | 9f16b2c | 2019-04-19 15:33:48 -0700 | [diff] [blame] | 750 | else if (rfSource == "Usb") |
| 751 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 752 | bootSource = |
| 753 | "xyz.openbmc_project.Control.Boot.Source.Sources.RemovableMedia"; |
Jennifer Lee | 9f16b2c | 2019-04-19 15:33:48 -0700 | [diff] [blame] | 754 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 755 | else |
| 756 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 757 | BMCWEB_LOG_DEBUG << "Invalid property value for " |
| 758 | "BootSourceOverrideTarget: " |
| 759 | << bootSource; |
| 760 | messages::propertyValueNotInList(aResp->res, rfSource, |
| 761 | "BootSourceTargetOverride"); |
| 762 | return -1; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 763 | } |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 764 | return 0; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | /** |
| 768 | * @brief Retrieves boot mode over DBUS and fills out the response |
| 769 | * |
| 770 | * @param[in] aResp Shared pointer for generating response message. |
| 771 | * @param[in] bootDbusObj The dbus object to query for boot properties. |
| 772 | * |
| 773 | * @return None. |
| 774 | */ |
| 775 | static void getBootMode(std::shared_ptr<AsyncResp> aResp, |
| 776 | std::string bootDbusObj) |
| 777 | { |
| 778 | crow::connections::systemBus->async_method_call( |
| 779 | [aResp](const boost::system::error_code ec, |
| 780 | const std::variant<std::string> &bootMode) { |
| 781 | if (ec) |
| 782 | { |
| 783 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 784 | messages::internalError(aResp->res); |
| 785 | return; |
| 786 | } |
| 787 | |
| 788 | const std::string *bootModeStr = |
| 789 | std::get_if<std::string>(&bootMode); |
| 790 | |
| 791 | if (!bootModeStr) |
| 792 | { |
| 793 | messages::internalError(aResp->res); |
| 794 | return; |
| 795 | } |
| 796 | |
| 797 | BMCWEB_LOG_DEBUG << "Boot mode: " << *bootModeStr; |
| 798 | |
| 799 | // TODO (Santosh): Do we need to support override mode? |
| 800 | aResp->res.jsonValue["Boot"]["BootSourceOverrideMode"] = "Legacy"; |
| 801 | aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget@Redfish." |
| 802 | "AllowableValues"] = { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 803 | "None", "Pxe", "Hdd", "Cd", "Diags", "BiosSetup", "Usb"}; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 804 | |
| 805 | if (*bootModeStr != |
| 806 | "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular") |
| 807 | { |
| 808 | auto rfMode = dbusToRfBootMode(*bootModeStr); |
| 809 | if (!rfMode.empty()) |
| 810 | { |
| 811 | aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] = |
| 812 | rfMode; |
| 813 | } |
| 814 | } |
| 815 | |
| 816 | // If the BootSourceOverrideTarget is still "None" at the end, |
| 817 | // reset the BootSourceOverrideEnabled to indicate that |
| 818 | // overrides are disabled |
| 819 | if (aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] == |
| 820 | "None") |
| 821 | { |
| 822 | aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] = |
| 823 | "Disabled"; |
| 824 | } |
| 825 | }, |
| 826 | "xyz.openbmc_project.Settings", bootDbusObj, |
| 827 | "org.freedesktop.DBus.Properties", "Get", |
| 828 | "xyz.openbmc_project.Control.Boot.Mode", "BootMode"); |
| 829 | } |
| 830 | |
| 831 | /** |
| 832 | * @brief Retrieves boot source over DBUS |
| 833 | * |
| 834 | * @param[in] aResp Shared pointer for generating response message. |
| 835 | * @param[in] oneTimeEnable Boolean to indicate boot properties are one-time. |
| 836 | * |
| 837 | * @return None. |
| 838 | */ |
| 839 | static void getBootSource(std::shared_ptr<AsyncResp> aResp, bool oneTimeEnabled) |
| 840 | { |
| 841 | std::string bootDbusObj = |
| 842 | oneTimeEnabled ? "/xyz/openbmc_project/control/host0/boot/one_time" |
| 843 | : "/xyz/openbmc_project/control/host0/boot"; |
| 844 | |
| 845 | BMCWEB_LOG_DEBUG << "Is one time: " << oneTimeEnabled; |
| 846 | aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] = |
| 847 | (oneTimeEnabled) ? "Once" : "Continuous"; |
| 848 | |
| 849 | crow::connections::systemBus->async_method_call( |
| 850 | [aResp, bootDbusObj](const boost::system::error_code ec, |
| 851 | const std::variant<std::string> &bootSource) { |
| 852 | if (ec) |
| 853 | { |
| 854 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 855 | messages::internalError(aResp->res); |
| 856 | return; |
| 857 | } |
| 858 | |
| 859 | const std::string *bootSourceStr = |
| 860 | std::get_if<std::string>(&bootSource); |
| 861 | |
| 862 | if (!bootSourceStr) |
| 863 | { |
| 864 | messages::internalError(aResp->res); |
| 865 | return; |
| 866 | } |
| 867 | BMCWEB_LOG_DEBUG << "Boot source: " << *bootSourceStr; |
| 868 | |
| 869 | auto rfSource = dbusToRfBootSource(*bootSourceStr); |
| 870 | if (!rfSource.empty()) |
| 871 | { |
| 872 | aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] = |
| 873 | rfSource; |
| 874 | } |
| 875 | }, |
| 876 | "xyz.openbmc_project.Settings", bootDbusObj, |
| 877 | "org.freedesktop.DBus.Properties", "Get", |
| 878 | "xyz.openbmc_project.Control.Boot.Source", "BootSource"); |
| 879 | getBootMode(std::move(aResp), std::move(bootDbusObj)); |
| 880 | } |
| 881 | |
| 882 | /** |
| 883 | * @brief Retrieves "One time" enabled setting over DBUS and calls function to |
| 884 | * get boot source and boot mode. |
| 885 | * |
| 886 | * @param[in] aResp Shared pointer for generating response message. |
| 887 | * |
| 888 | * @return None. |
| 889 | */ |
| 890 | static void getBootProperties(std::shared_ptr<AsyncResp> aResp) |
| 891 | { |
| 892 | BMCWEB_LOG_DEBUG << "Get boot information."; |
| 893 | |
| 894 | crow::connections::systemBus->async_method_call( |
Jennifer Lee | c5d03ff | 2019-03-08 15:42:58 -0800 | [diff] [blame] | 895 | [aResp](const boost::system::error_code ec, |
| 896 | const sdbusplus::message::variant<bool> &oneTime) { |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 897 | if (ec) |
| 898 | { |
| 899 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
James Feist | 2a833c7 | 2019-07-19 10:17:13 -0700 | [diff] [blame] | 900 | // not an error, don't have to have the interface |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 901 | return; |
| 902 | } |
| 903 | |
| 904 | const bool *oneTimePtr = std::get_if<bool>(&oneTime); |
| 905 | |
| 906 | if (!oneTimePtr) |
| 907 | { |
| 908 | messages::internalError(aResp->res); |
| 909 | return; |
| 910 | } |
| 911 | getBootSource(aResp, *oneTimePtr); |
| 912 | }, |
| 913 | "xyz.openbmc_project.Settings", |
| 914 | "/xyz/openbmc_project/control/host0/boot/one_time", |
| 915 | "org.freedesktop.DBus.Properties", "Get", |
| 916 | "xyz.openbmc_project.Object.Enable", "Enabled"); |
| 917 | } |
| 918 | |
| 919 | /** |
| 920 | * @brief Sets boot properties into DBUS object(s). |
| 921 | * |
| 922 | * @param[in] aResp Shared pointer for generating response message. |
| 923 | * @param[in] oneTimeEnabled Is "one-time" setting already enabled. |
| 924 | * @param[in] bootSource The boot source to set. |
| 925 | * @param[in] bootEnable The source override "enable" to set. |
| 926 | * |
Johnathan Mantey | 265c160 | 2019-08-08 11:02:51 -0700 | [diff] [blame] | 927 | * @return Integer error code. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 928 | */ |
| 929 | static void setBootModeOrSource(std::shared_ptr<AsyncResp> aResp, |
| 930 | bool oneTimeEnabled, |
| 931 | std::optional<std::string> bootSource, |
| 932 | std::optional<std::string> bootEnable) |
| 933 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 934 | std::string bootSourceStr = |
| 935 | "xyz.openbmc_project.Control.Boot.Source.Sources.Default"; |
| 936 | std::string bootModeStr = |
| 937 | "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular"; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 938 | bool oneTimeSetting = oneTimeEnabled; |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 939 | bool useBootSource = true; |
| 940 | |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 941 | // Validate incoming parameters |
| 942 | if (bootEnable) |
| 943 | { |
| 944 | if (*bootEnable == "Once") |
| 945 | { |
| 946 | oneTimeSetting = true; |
| 947 | } |
| 948 | else if (*bootEnable == "Continuous") |
| 949 | { |
| 950 | oneTimeSetting = false; |
| 951 | } |
| 952 | else if (*bootEnable == "Disabled") |
| 953 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 954 | BMCWEB_LOG_DEBUG << "Boot source override will be disabled"; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 955 | oneTimeSetting = false; |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 956 | useBootSource = false; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 957 | } |
| 958 | else |
| 959 | { |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 960 | BMCWEB_LOG_DEBUG << "Unsupported value for " |
| 961 | "BootSourceOverrideEnabled: " |
| 962 | << *bootEnable; |
| 963 | messages::propertyValueNotInList(aResp->res, *bootEnable, |
| 964 | "BootSourceOverrideEnabled"); |
| 965 | return; |
| 966 | } |
| 967 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 968 | |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 969 | if (bootSource && useBootSource) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 970 | { |
| 971 | // Source target specified |
| 972 | BMCWEB_LOG_DEBUG << "Boot source: " << *bootSource; |
| 973 | // Figure out which DBUS interface and property to use |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 974 | if (assignBootParameters(aResp, *bootSource, bootSourceStr, |
| 975 | bootModeStr)) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 976 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 977 | BMCWEB_LOG_DEBUG |
| 978 | << "Invalid property value for BootSourceOverrideTarget: " |
| 979 | << *bootSource; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 980 | messages::propertyValueNotInList(aResp->res, *bootSource, |
| 981 | "BootSourceTargetOverride"); |
| 982 | return; |
| 983 | } |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 984 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 985 | |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 986 | // Act on validated parameters |
| 987 | BMCWEB_LOG_DEBUG << "DBUS boot source: " << bootSourceStr; |
| 988 | BMCWEB_LOG_DEBUG << "DBUS boot mode: " << bootModeStr; |
| 989 | const char *bootObj = |
| 990 | oneTimeSetting ? "/xyz/openbmc_project/control/host0/boot/one_time" |
| 991 | : "/xyz/openbmc_project/control/host0/boot"; |
| 992 | |
| 993 | crow::connections::systemBus->async_method_call( |
| 994 | [aResp](const boost::system::error_code ec) { |
| 995 | if (ec) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 996 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 997 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 998 | messages::internalError(aResp->res); |
| 999 | return; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1000 | } |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1001 | BMCWEB_LOG_DEBUG << "Boot source update done."; |
| 1002 | }, |
| 1003 | "xyz.openbmc_project.Settings", bootObj, |
| 1004 | "org.freedesktop.DBus.Properties", "Set", |
| 1005 | "xyz.openbmc_project.Control.Boot.Source", "BootSource", |
| 1006 | std::variant<std::string>(bootSourceStr)); |
| 1007 | |
| 1008 | crow::connections::systemBus->async_method_call( |
| 1009 | [aResp](const boost::system::error_code ec) { |
| 1010 | if (ec) |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1011 | { |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1012 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1013 | messages::internalError(aResp->res); |
| 1014 | return; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1015 | } |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1016 | BMCWEB_LOG_DEBUG << "Boot mode update done."; |
| 1017 | }, |
| 1018 | "xyz.openbmc_project.Settings", bootObj, |
| 1019 | "org.freedesktop.DBus.Properties", "Set", |
| 1020 | "xyz.openbmc_project.Control.Boot.Mode", "BootMode", |
| 1021 | std::variant<std::string>(bootModeStr)); |
| 1022 | |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1023 | crow::connections::systemBus->async_method_call( |
| 1024 | [aResp{std::move(aResp)}](const boost::system::error_code ec) { |
| 1025 | if (ec) |
| 1026 | { |
| 1027 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1028 | messages::internalError(aResp->res); |
| 1029 | return; |
| 1030 | } |
| 1031 | BMCWEB_LOG_DEBUG << "Boot enable update done."; |
| 1032 | }, |
| 1033 | "xyz.openbmc_project.Settings", |
| 1034 | "/xyz/openbmc_project/control/host0/boot/one_time", |
| 1035 | "org.freedesktop.DBus.Properties", "Set", |
| 1036 | "xyz.openbmc_project.Object.Enable", "Enabled", |
| 1037 | std::variant<bool>(oneTimeSetting)); |
| 1038 | } |
| 1039 | |
| 1040 | /** |
| 1041 | * @brief Retrieves "One time" enabled setting over DBUS and calls function to |
| 1042 | * set boot source/boot mode properties. |
| 1043 | * |
| 1044 | * @param[in] aResp Shared pointer for generating response message. |
| 1045 | * @param[in] bootSource The boot source from incoming RF request. |
| 1046 | * @param[in] bootEnable The boot override enable from incoming RF request. |
| 1047 | * |
Johnathan Mantey | 265c160 | 2019-08-08 11:02:51 -0700 | [diff] [blame] | 1048 | * @return Integer error code. |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1049 | */ |
| 1050 | static void setBootProperties(std::shared_ptr<AsyncResp> aResp, |
| 1051 | std::optional<std::string> bootSource, |
| 1052 | std::optional<std::string> bootEnable) |
| 1053 | { |
| 1054 | BMCWEB_LOG_DEBUG << "Set boot information."; |
| 1055 | |
| 1056 | crow::connections::systemBus->async_method_call( |
Johnathan Mantey | 265c160 | 2019-08-08 11:02:51 -0700 | [diff] [blame] | 1057 | [aResp, bootSource{std::move(bootSource)}, |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1058 | bootEnable{std::move(bootEnable)}]( |
| 1059 | const boost::system::error_code ec, |
| 1060 | const sdbusplus::message::variant<bool> &oneTime) { |
| 1061 | if (ec) |
| 1062 | { |
| 1063 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1064 | messages::internalError(aResp->res); |
| 1065 | return; |
| 1066 | } |
| 1067 | |
| 1068 | const bool *oneTimePtr = std::get_if<bool>(&oneTime); |
| 1069 | |
| 1070 | if (!oneTimePtr) |
| 1071 | { |
| 1072 | messages::internalError(aResp->res); |
| 1073 | return; |
| 1074 | } |
| 1075 | |
| 1076 | BMCWEB_LOG_DEBUG << "Got one time: " << *oneTimePtr; |
| 1077 | |
| 1078 | setBootModeOrSource(aResp, *oneTimePtr, std::move(bootSource), |
| 1079 | std::move(bootEnable)); |
| 1080 | }, |
| 1081 | "xyz.openbmc_project.Settings", |
| 1082 | "/xyz/openbmc_project/control/host0/boot/one_time", |
| 1083 | "org.freedesktop.DBus.Properties", "Get", |
| 1084 | "xyz.openbmc_project.Object.Enable", "Enabled"); |
| 1085 | } |
| 1086 | |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1087 | #ifdef BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE |
| 1088 | /** |
| 1089 | * @brief Retrieves provisioning status |
| 1090 | * |
| 1091 | * @param[in] aResp Shared pointer for completing asynchronous calls. |
| 1092 | * |
| 1093 | * @return None. |
| 1094 | */ |
| 1095 | void getProvisioningStatus(std::shared_ptr<AsyncResp> aResp) |
| 1096 | { |
| 1097 | BMCWEB_LOG_DEBUG << "Get OEM information."; |
| 1098 | crow::connections::systemBus->async_method_call( |
| 1099 | [aResp](const boost::system::error_code ec, |
| 1100 | const std::vector<std::pair<std::string, VariantType>> |
| 1101 | &propertiesList) { |
| 1102 | if (ec) |
| 1103 | { |
| 1104 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1105 | messages::internalError(aResp->res); |
| 1106 | return; |
| 1107 | } |
| 1108 | |
| 1109 | const bool *provState = nullptr; |
| 1110 | const bool *lockState = nullptr; |
| 1111 | for (const std::pair<std::string, VariantType> &property : |
| 1112 | propertiesList) |
| 1113 | { |
| 1114 | if (property.first == "UfmProvisioned") |
| 1115 | { |
| 1116 | provState = std::get_if<bool>(&property.second); |
| 1117 | } |
| 1118 | else if (property.first == "UfmLocked") |
| 1119 | { |
| 1120 | lockState = std::get_if<bool>(&property.second); |
| 1121 | } |
| 1122 | } |
| 1123 | |
| 1124 | if ((provState == nullptr) || (lockState == nullptr)) |
| 1125 | { |
| 1126 | BMCWEB_LOG_DEBUG << "Unable to get PFR attributes."; |
| 1127 | messages::internalError(aResp->res); |
| 1128 | return; |
| 1129 | } |
| 1130 | |
| 1131 | nlohmann::json &oemPFR = |
| 1132 | aResp->res.jsonValue["Oem"]["OpenBmc"]["FirmwareProvisioning"]; |
| 1133 | if (*provState == true) |
| 1134 | { |
| 1135 | if (*lockState == true) |
| 1136 | { |
| 1137 | oemPFR["ProvisioningStatus"] = "ProvisionedAndLocked"; |
| 1138 | } |
| 1139 | else |
| 1140 | { |
| 1141 | oemPFR["ProvisioningStatus"] = "ProvisionedButNotLocked"; |
| 1142 | } |
| 1143 | } |
| 1144 | else |
| 1145 | { |
| 1146 | oemPFR["ProvisioningStatus"] = "NotProvisioned"; |
| 1147 | } |
| 1148 | }, |
| 1149 | "xyz.openbmc_project.PFR.Manager", "/xyz/openbmc_project/pfr", |
| 1150 | "org.freedesktop.DBus.Properties", "GetAll", |
| 1151 | "xyz.openbmc_project.PFR.Attributes"); |
| 1152 | } |
| 1153 | #endif |
| 1154 | |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1155 | /** |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 1156 | * @brief Translates watchdog timeout action DBUS property value to redfish. |
| 1157 | * |
| 1158 | * @param[in] dbusAction The watchdog timeout action in D-BUS. |
| 1159 | * |
| 1160 | * @return Returns as a string, the timeout action in Redfish terms. If |
| 1161 | * translation cannot be done, returns an empty string. |
| 1162 | */ |
| 1163 | static std::string dbusToRfWatchdogAction(const std::string &dbusAction) |
| 1164 | { |
| 1165 | if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.None") |
| 1166 | { |
| 1167 | return "None"; |
| 1168 | } |
| 1169 | else if (dbusAction == |
| 1170 | "xyz.openbmc_project.State.Watchdog.Action.HardReset") |
| 1171 | { |
| 1172 | return "ResetSystem"; |
| 1173 | } |
| 1174 | else if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.PowerOff") |
| 1175 | { |
| 1176 | return "PowerDown"; |
| 1177 | } |
| 1178 | else if (dbusAction == |
| 1179 | "xyz.openbmc_project.State.Watchdog.Action.PowerCycle") |
| 1180 | { |
| 1181 | return "PowerCycle"; |
| 1182 | } |
| 1183 | |
| 1184 | return ""; |
| 1185 | } |
| 1186 | |
| 1187 | /** |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 1188 | *@brief Translates timeout action from Redfish to DBUS property value. |
| 1189 | * |
| 1190 | *@param[in] rfAction The timeout action in Redfish. |
| 1191 | * |
| 1192 | *@return Returns as a string, the time_out action as expected by DBUS. |
| 1193 | *If translation cannot be done, returns an empty string. |
| 1194 | */ |
| 1195 | |
| 1196 | static std::string rfToDbusWDTTimeOutAct(const std::string &rfAction) |
| 1197 | { |
| 1198 | if (rfAction == "None") |
| 1199 | { |
| 1200 | return "xyz.openbmc_project.State.Watchdog.Action.None"; |
| 1201 | } |
| 1202 | else if (rfAction == "PowerCycle") |
| 1203 | { |
| 1204 | return "xyz.openbmc_project.State.Watchdog.Action.PowerCycle"; |
| 1205 | } |
| 1206 | else if (rfAction == "PowerDown") |
| 1207 | { |
| 1208 | return "xyz.openbmc_project.State.Watchdog.Action.PowerOff"; |
| 1209 | } |
| 1210 | else if (rfAction == "ResetSystem") |
| 1211 | { |
| 1212 | return "xyz.openbmc_project.State.Watchdog.Action.HardReset"; |
| 1213 | } |
| 1214 | |
| 1215 | return ""; |
| 1216 | } |
| 1217 | |
| 1218 | /** |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 1219 | * @brief Retrieves host watchdog timer properties over DBUS |
| 1220 | * |
| 1221 | * @param[in] aResp Shared pointer for completing asynchronous calls. |
| 1222 | * |
| 1223 | * @return None. |
| 1224 | */ |
| 1225 | void getHostWatchdogTimer(std::shared_ptr<AsyncResp> aResp) |
| 1226 | { |
| 1227 | BMCWEB_LOG_DEBUG << "Get host watchodg"; |
| 1228 | crow::connections::systemBus->async_method_call( |
| 1229 | [aResp](const boost::system::error_code ec, |
| 1230 | PropertiesType &properties) { |
| 1231 | if (ec) |
| 1232 | { |
| 1233 | // watchdog service is stopped |
| 1234 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1235 | return; |
| 1236 | } |
| 1237 | |
| 1238 | BMCWEB_LOG_DEBUG << "Got " << properties.size() << " wdt prop."; |
| 1239 | |
| 1240 | nlohmann::json &hostWatchdogTimer = |
| 1241 | aResp->res.jsonValue["HostWatchdogTimer"]; |
| 1242 | |
| 1243 | // watchdog service is running/enabled |
| 1244 | hostWatchdogTimer["Status"]["State"] = "Enabled"; |
| 1245 | |
| 1246 | for (const auto &property : properties) |
| 1247 | { |
| 1248 | BMCWEB_LOG_DEBUG << "prop=" << property.first; |
| 1249 | if (property.first == "Enabled") |
| 1250 | { |
| 1251 | const bool *state = std::get_if<bool>(&property.second); |
| 1252 | |
| 1253 | if (!state) |
| 1254 | { |
| 1255 | messages::internalError(aResp->res); |
| 1256 | continue; |
| 1257 | } |
| 1258 | |
| 1259 | hostWatchdogTimer["FunctionEnabled"] = *state; |
| 1260 | } |
| 1261 | else if (property.first == "ExpireAction") |
| 1262 | { |
| 1263 | const std::string *s = |
| 1264 | std::get_if<std::string>(&property.second); |
| 1265 | if (!s) |
| 1266 | { |
| 1267 | messages::internalError(aResp->res); |
| 1268 | continue; |
| 1269 | } |
| 1270 | |
| 1271 | std::string action = dbusToRfWatchdogAction(*s); |
| 1272 | if (action.empty()) |
| 1273 | { |
| 1274 | messages::internalError(aResp->res); |
| 1275 | continue; |
| 1276 | } |
| 1277 | hostWatchdogTimer["TimeoutAction"] = action; |
| 1278 | } |
| 1279 | } |
| 1280 | }, |
| 1281 | "xyz.openbmc_project.Watchdog", "/xyz/openbmc_project/watchdog/host0", |
| 1282 | "org.freedesktop.DBus.Properties", "GetAll", |
| 1283 | "xyz.openbmc_project.State.Watchdog"); |
| 1284 | } |
| 1285 | |
| 1286 | /** |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 1287 | * @brief Sets Host WatchDog Timer properties. |
| 1288 | * |
| 1289 | * @param[in] aResp Shared pointer for generating response message. |
| 1290 | * @param[in] wdtEnable The WDTimer Enable value (true/false) from incoming |
| 1291 | * RF request. |
| 1292 | * @param[in] wdtTimeOutAction The WDT Timeout action, from incoming RF request. |
| 1293 | * |
| 1294 | * @return None. |
| 1295 | */ |
| 1296 | static void setWDTProperties(std::shared_ptr<AsyncResp> aResp, |
| 1297 | const std::optional<bool> wdtEnable, |
| 1298 | const std::optional<std::string> &wdtTimeOutAction) |
| 1299 | { |
| 1300 | BMCWEB_LOG_DEBUG << "Set host watchdog"; |
| 1301 | |
| 1302 | if (wdtTimeOutAction) |
| 1303 | { |
| 1304 | std::string wdtTimeOutActStr = rfToDbusWDTTimeOutAct(*wdtTimeOutAction); |
| 1305 | // check if TimeOut Action is Valid |
| 1306 | if (wdtTimeOutActStr.empty()) |
| 1307 | { |
| 1308 | BMCWEB_LOG_DEBUG << "Unsupported value for TimeoutAction: " |
| 1309 | << *wdtTimeOutAction; |
| 1310 | messages::propertyValueNotInList(aResp->res, *wdtTimeOutAction, |
| 1311 | "TimeoutAction"); |
| 1312 | return; |
| 1313 | } |
| 1314 | |
| 1315 | crow::connections::systemBus->async_method_call( |
| 1316 | [aResp](const boost::system::error_code ec) { |
| 1317 | if (ec) |
| 1318 | { |
| 1319 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1320 | messages::internalError(aResp->res); |
| 1321 | return; |
| 1322 | } |
| 1323 | }, |
| 1324 | "xyz.openbmc_project.Watchdog", |
| 1325 | "/xyz/openbmc_project/watchdog/host0", |
| 1326 | "org.freedesktop.DBus.Properties", "Set", |
| 1327 | "xyz.openbmc_project.State.Watchdog", "ExpireAction", |
| 1328 | std::variant<std::string>(wdtTimeOutActStr)); |
| 1329 | } |
| 1330 | |
| 1331 | if (wdtEnable) |
| 1332 | { |
| 1333 | crow::connections::systemBus->async_method_call( |
| 1334 | [aResp](const boost::system::error_code ec) { |
| 1335 | if (ec) |
| 1336 | { |
| 1337 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec; |
| 1338 | messages::internalError(aResp->res); |
| 1339 | return; |
| 1340 | } |
| 1341 | }, |
| 1342 | "xyz.openbmc_project.Watchdog", |
| 1343 | "/xyz/openbmc_project/watchdog/host0", |
| 1344 | "org.freedesktop.DBus.Properties", "Set", |
| 1345 | "xyz.openbmc_project.State.Watchdog", "Enabled", |
| 1346 | std::variant<bool>(*wdtEnable)); |
| 1347 | } |
| 1348 | } |
| 1349 | |
| 1350 | /** |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1351 | * SystemsCollection derived class for delivering ComputerSystems Collection |
| 1352 | * Schema |
| 1353 | */ |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1354 | class SystemsCollection : public Node |
| 1355 | { |
| 1356 | public: |
| 1357 | SystemsCollection(CrowApp &app) : Node(app, "/redfish/v1/Systems/") |
| 1358 | { |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1359 | entityPrivileges = { |
| 1360 | {boost::beast::http::verb::get, {{"Login"}}}, |
| 1361 | {boost::beast::http::verb::head, {{"Login"}}}, |
| 1362 | {boost::beast::http::verb::patch, {{"ConfigureComponents"}}}, |
| 1363 | {boost::beast::http::verb::put, {{"ConfigureComponents"}}}, |
| 1364 | {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}}, |
| 1365 | {boost::beast::http::verb::post, {{"ConfigureComponents"}}}}; |
| 1366 | } |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1367 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1368 | private: |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1369 | void doGet(crow::Response &res, const crow::Request &req, |
| 1370 | const std::vector<std::string> ¶ms) override |
| 1371 | { |
Ed Tanous | 0f74e64 | 2018-11-12 15:17:05 -0800 | [diff] [blame] | 1372 | res.jsonValue["@odata.type"] = |
| 1373 | "#ComputerSystemCollection.ComputerSystemCollection"; |
| 1374 | res.jsonValue["@odata.id"] = "/redfish/v1/Systems"; |
Ed Tanous | 0f74e64 | 2018-11-12 15:17:05 -0800 | [diff] [blame] | 1375 | res.jsonValue["Name"] = "Computer System Collection"; |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1376 | res.jsonValue["Members"] = { |
| 1377 | {{"@odata.id", "/redfish/v1/Systems/system"}}}; |
| 1378 | res.jsonValue["Members@odata.count"] = 1; |
| 1379 | res.end(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1380 | } |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1381 | }; |
| 1382 | |
| 1383 | /** |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 1384 | * SystemActionsReset class supports handle POST method for Reset action. |
| 1385 | * The class retrieves and sends data directly to D-Bus. |
| 1386 | */ |
| 1387 | class SystemActionsReset : public Node |
| 1388 | { |
| 1389 | public: |
| 1390 | SystemActionsReset(CrowApp &app) : |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1391 | Node(app, "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset/") |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 1392 | { |
| 1393 | entityPrivileges = { |
| 1394 | {boost::beast::http::verb::post, {{"ConfigureComponents"}}}}; |
| 1395 | } |
| 1396 | |
| 1397 | private: |
| 1398 | /** |
| 1399 | * Function handles POST method request. |
| 1400 | * Analyzes POST body message before sends Reset request data to D-Bus. |
| 1401 | */ |
| 1402 | void doPost(crow::Response &res, const crow::Request &req, |
| 1403 | const std::vector<std::string> ¶ms) override |
| 1404 | { |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1405 | auto asyncResp = std::make_shared<AsyncResp>(res); |
| 1406 | |
| 1407 | std::string resetType; |
| 1408 | if (!json_util::readJson(req, res, "ResetType", resetType)) |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 1409 | { |
| 1410 | return; |
| 1411 | } |
| 1412 | |
Jason M. Bills | d22c839 | 2019-06-03 13:59:03 -0700 | [diff] [blame] | 1413 | // Get the command and host vs. chassis |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1414 | std::string command; |
Jason M. Bills | d22c839 | 2019-06-03 13:59:03 -0700 | [diff] [blame] | 1415 | bool hostCommand; |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1416 | if (resetType == "On") |
| 1417 | { |
| 1418 | command = "xyz.openbmc_project.State.Host.Transition.On"; |
Jason M. Bills | d22c839 | 2019-06-03 13:59:03 -0700 | [diff] [blame] | 1419 | hostCommand = true; |
| 1420 | } |
| 1421 | else if (resetType == "ForceOff") |
| 1422 | { |
| 1423 | command = "xyz.openbmc_project.State.Chassis.Transition.Off"; |
| 1424 | hostCommand = false; |
| 1425 | } |
| 1426 | else if (resetType == "ForceOn") |
| 1427 | { |
| 1428 | command = "xyz.openbmc_project.State.Host.Transition.On"; |
| 1429 | hostCommand = true; |
| 1430 | } |
| 1431 | else if (resetType == "ForceRestart") |
| 1432 | { |
Jason M. Bills | 86a0851 | 2020-02-04 13:15:49 -0800 | [diff] [blame] | 1433 | command = |
| 1434 | "xyz.openbmc_project.State.Host.Transition.ForceWarmReboot"; |
| 1435 | hostCommand = true; |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1436 | } |
| 1437 | else if (resetType == "GracefulShutdown") |
| 1438 | { |
| 1439 | command = "xyz.openbmc_project.State.Host.Transition.Off"; |
Jason M. Bills | d22c839 | 2019-06-03 13:59:03 -0700 | [diff] [blame] | 1440 | hostCommand = true; |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1441 | } |
| 1442 | else if (resetType == "GracefulRestart") |
| 1443 | { |
Jason M. Bills | 86a0851 | 2020-02-04 13:15:49 -0800 | [diff] [blame] | 1444 | command = |
| 1445 | "xyz.openbmc_project.State.Host.Transition.GracefulWarmReboot"; |
Jason M. Bills | d22c839 | 2019-06-03 13:59:03 -0700 | [diff] [blame] | 1446 | hostCommand = true; |
| 1447 | } |
| 1448 | else if (resetType == "PowerCycle") |
| 1449 | { |
Jason M. Bills | 86a0851 | 2020-02-04 13:15:49 -0800 | [diff] [blame] | 1450 | command = "xyz.openbmc_project.State.Host.Transition.Reboot"; |
| 1451 | hostCommand = true; |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1452 | } |
Lakshminarayana R. Kammath | bfd5b82 | 2019-06-17 12:11:01 -0500 | [diff] [blame] | 1453 | else if (resetType == "Nmi") |
| 1454 | { |
| 1455 | doNMI(asyncResp); |
| 1456 | return; |
| 1457 | } |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1458 | else |
| 1459 | { |
Jason M. Bills | f12894f | 2018-10-09 12:45:45 -0700 | [diff] [blame] | 1460 | messages::actionParameterUnknown(res, "Reset", resetType); |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1461 | return; |
| 1462 | } |
| 1463 | |
Jason M. Bills | d22c839 | 2019-06-03 13:59:03 -0700 | [diff] [blame] | 1464 | if (hostCommand) |
| 1465 | { |
| 1466 | crow::connections::systemBus->async_method_call( |
| 1467 | [asyncResp, resetType](const boost::system::error_code ec) { |
| 1468 | if (ec) |
| 1469 | { |
| 1470 | BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec; |
| 1471 | if (ec.value() == boost::asio::error::invalid_argument) |
| 1472 | { |
| 1473 | messages::actionParameterNotSupported( |
| 1474 | asyncResp->res, resetType, "Reset"); |
| 1475 | } |
| 1476 | else |
| 1477 | { |
| 1478 | messages::internalError(asyncResp->res); |
| 1479 | } |
| 1480 | return; |
| 1481 | } |
| 1482 | messages::success(asyncResp->res); |
| 1483 | }, |
| 1484 | "xyz.openbmc_project.State.Host", |
| 1485 | "/xyz/openbmc_project/state/host0", |
| 1486 | "org.freedesktop.DBus.Properties", "Set", |
| 1487 | "xyz.openbmc_project.State.Host", "RequestedHostTransition", |
| 1488 | std::variant<std::string>{command}); |
| 1489 | } |
| 1490 | else |
| 1491 | { |
| 1492 | crow::connections::systemBus->async_method_call( |
| 1493 | [asyncResp, resetType](const boost::system::error_code ec) { |
| 1494 | if (ec) |
| 1495 | { |
| 1496 | BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec; |
| 1497 | if (ec.value() == boost::asio::error::invalid_argument) |
| 1498 | { |
| 1499 | messages::actionParameterNotSupported( |
| 1500 | asyncResp->res, resetType, "Reset"); |
| 1501 | } |
| 1502 | else |
| 1503 | { |
| 1504 | messages::internalError(asyncResp->res); |
| 1505 | } |
| 1506 | return; |
| 1507 | } |
| 1508 | messages::success(asyncResp->res); |
| 1509 | }, |
| 1510 | "xyz.openbmc_project.State.Chassis", |
| 1511 | "/xyz/openbmc_project/state/chassis0", |
| 1512 | "org.freedesktop.DBus.Properties", "Set", |
| 1513 | "xyz.openbmc_project.State.Chassis", "RequestedPowerTransition", |
| 1514 | std::variant<std::string>{command}); |
| 1515 | } |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 1516 | } |
Lakshminarayana R. Kammath | bfd5b82 | 2019-06-17 12:11:01 -0500 | [diff] [blame] | 1517 | /** |
| 1518 | * Function transceives data with dbus directly. |
| 1519 | */ |
| 1520 | void doNMI(const std::shared_ptr<AsyncResp> &asyncResp) |
| 1521 | { |
| 1522 | constexpr char const *serviceName = |
| 1523 | "xyz.openbmc_project.Control.Host.NMI"; |
| 1524 | constexpr char const *objectPath = |
| 1525 | "/xyz/openbmc_project/control/host0/nmi"; |
| 1526 | constexpr char const *interfaceName = |
| 1527 | "xyz.openbmc_project.Control.Host.NMI"; |
| 1528 | constexpr char const *method = "NMI"; |
| 1529 | |
| 1530 | crow::connections::systemBus->async_method_call( |
| 1531 | [asyncResp](const boost::system::error_code ec) { |
| 1532 | if (ec) |
| 1533 | { |
| 1534 | BMCWEB_LOG_ERROR << " Bad D-Bus request error: " << ec; |
| 1535 | messages::internalError(asyncResp->res); |
| 1536 | return; |
| 1537 | } |
| 1538 | messages::success(asyncResp->res); |
| 1539 | }, |
| 1540 | serviceName, objectPath, interfaceName, method); |
| 1541 | } |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 1542 | }; |
| 1543 | |
| 1544 | /** |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 1545 | * Systems derived class for delivering Computer Systems Schema. |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1546 | */ |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1547 | class Systems : public Node |
| 1548 | { |
| 1549 | public: |
| 1550 | /* |
| 1551 | * Default Constructor |
| 1552 | */ |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1553 | Systems(CrowApp &app) : Node(app, "/redfish/v1/Systems/system/") |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1554 | { |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1555 | entityPrivileges = { |
| 1556 | {boost::beast::http::verb::get, {{"Login"}}}, |
| 1557 | {boost::beast::http::verb::head, {{"Login"}}}, |
| 1558 | {boost::beast::http::verb::patch, {{"ConfigureComponents"}}}, |
| 1559 | {boost::beast::http::verb::put, {{"ConfigureComponents"}}}, |
| 1560 | {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}}, |
| 1561 | {boost::beast::http::verb::post, {{"ConfigureComponents"}}}}; |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1562 | } |
| 1563 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1564 | private: |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1565 | /** |
| 1566 | * Functions triggers appropriate requests on DBus |
| 1567 | */ |
| 1568 | void doGet(crow::Response &res, const crow::Request &req, |
| 1569 | const std::vector<std::string> ¶ms) override |
| 1570 | { |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1571 | res.jsonValue["@odata.type"] = "#ComputerSystem.v1_6_0.ComputerSystem"; |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1572 | res.jsonValue["Name"] = "Computer System"; |
| 1573 | res.jsonValue["Id"] = "system"; |
Ed Tanous | 0f74e64 | 2018-11-12 15:17:05 -0800 | [diff] [blame] | 1574 | res.jsonValue["SystemType"] = "Physical"; |
| 1575 | res.jsonValue["Description"] = "Computer System"; |
Ed Tanous | 0f74e64 | 2018-11-12 15:17:05 -0800 | [diff] [blame] | 1576 | res.jsonValue["ProcessorSummary"]["Count"] = 0; |
| 1577 | res.jsonValue["ProcessorSummary"]["Status"]["State"] = "Disabled"; |
Cheng C Yang | 5fd7ba6 | 2019-11-28 15:58:08 +0800 | [diff] [blame] | 1578 | res.jsonValue["MemorySummary"]["TotalSystemMemoryGiB"] = uint64_t(0); |
Ed Tanous | 0f74e64 | 2018-11-12 15:17:05 -0800 | [diff] [blame] | 1579 | res.jsonValue["MemorySummary"]["Status"]["State"] = "Disabled"; |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1580 | res.jsonValue["@odata.id"] = "/redfish/v1/Systems/system"; |
Ed Tanous | 04a258f | 2018-10-15 08:00:41 -0700 | [diff] [blame] | 1581 | |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 1582 | res.jsonValue["Processors"] = { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1583 | {"@odata.id", "/redfish/v1/Systems/system/Processors"}}; |
Rapkiewicz, Pawel | 443c293 | 2018-10-22 15:08:49 +0200 | [diff] [blame] | 1584 | res.jsonValue["Memory"] = { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1585 | {"@odata.id", "/redfish/v1/Systems/system/Memory"}}; |
Nikhil Potade | a25aecc | 2019-08-23 16:35:26 -0700 | [diff] [blame] | 1586 | res.jsonValue["Storage"] = { |
| 1587 | {"@odata.id", "/redfish/v1/Systems/system/Storage"}}; |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1588 | |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 1589 | // TODO Need to support ForceRestart. |
| 1590 | res.jsonValue["Actions"]["#ComputerSystem.Reset"] = { |
| 1591 | {"target", |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1592 | "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset"}, |
Ed Tanous | cc340dd | 2018-08-29 13:43:38 -0700 | [diff] [blame] | 1593 | {"ResetType@Redfish.AllowableValues", |
Jason M. Bills | d22c839 | 2019-06-03 13:59:03 -0700 | [diff] [blame] | 1594 | {"On", "ForceOff", "ForceOn", "ForceRestart", "GracefulRestart", |
Lakshminarayana R. Kammath | bfd5b82 | 2019-06-17 12:11:01 -0500 | [diff] [blame] | 1595 | "GracefulShutdown", "PowerCycle", "Nmi"}}}; |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1596 | |
Jason M. Bills | c4bf637 | 2018-11-05 13:48:27 -0800 | [diff] [blame] | 1597 | res.jsonValue["LogServices"] = { |
Ed Tanous | 029573d | 2019-02-01 10:57:49 -0800 | [diff] [blame] | 1598 | {"@odata.id", "/redfish/v1/Systems/system/LogServices"}}; |
Jason M. Bills | c4bf637 | 2018-11-05 13:48:27 -0800 | [diff] [blame] | 1599 | |
Carol Wang | d82a3ac | 2019-11-21 13:56:38 +0800 | [diff] [blame] | 1600 | res.jsonValue["Bios"] = { |
| 1601 | {"@odata.id", "/redfish/v1/Systems/system/Bios"}}; |
| 1602 | |
Jennifer Lee | c5d03ff | 2019-03-08 15:42:58 -0800 | [diff] [blame] | 1603 | res.jsonValue["Links"]["ManagedBy"] = { |
| 1604 | {{"@odata.id", "/redfish/v1/Managers/bmc"}}}; |
| 1605 | |
| 1606 | res.jsonValue["Status"] = { |
| 1607 | {"Health", "OK"}, |
| 1608 | {"State", "Enabled"}, |
| 1609 | }; |
Ed Tanous | a0803ef | 2018-08-29 13:29:23 -0700 | [diff] [blame] | 1610 | auto asyncResp = std::make_shared<AsyncResp>(res); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1611 | |
James Feist | e284a7c | 2019-11-20 16:20:23 -0800 | [diff] [blame] | 1612 | constexpr const std::array<const char *, 4> inventoryForSystems = { |
James Feist | b49ac87 | 2019-05-21 15:12:01 -0700 | [diff] [blame] | 1613 | "xyz.openbmc_project.Inventory.Item.Dimm", |
James Feist | 2ad9c2f | 2019-10-29 16:26:48 -0700 | [diff] [blame] | 1614 | "xyz.openbmc_project.Inventory.Item.Cpu", |
James Feist | e284a7c | 2019-11-20 16:20:23 -0800 | [diff] [blame] | 1615 | "xyz.openbmc_project.Inventory.Item.Drive", |
| 1616 | "xyz.openbmc_project.Inventory.Item.StorageController"}; |
James Feist | b49ac87 | 2019-05-21 15:12:01 -0700 | [diff] [blame] | 1617 | |
| 1618 | auto health = std::make_shared<HealthPopulate>(asyncResp); |
| 1619 | crow::connections::systemBus->async_method_call( |
| 1620 | [health](const boost::system::error_code ec, |
| 1621 | std::vector<std::string> &resp) { |
| 1622 | if (ec) |
| 1623 | { |
| 1624 | // no inventory |
| 1625 | return; |
| 1626 | } |
| 1627 | |
| 1628 | health->inventory = std::move(resp); |
| 1629 | }, |
| 1630 | "xyz.openbmc_project.ObjectMapper", |
| 1631 | "/xyz/openbmc_project/object_mapper", |
| 1632 | "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths", "/", |
| 1633 | int32_t(0), inventoryForSystems); |
| 1634 | |
| 1635 | health->populate(); |
| 1636 | |
Jennifer Lee | c5d03ff | 2019-03-08 15:42:58 -0800 | [diff] [blame] | 1637 | getMainChassisId(asyncResp, [](const std::string &chassisId, |
| 1638 | std::shared_ptr<AsyncResp> aRsp) { |
| 1639 | aRsp->res.jsonValue["Links"]["Chassis"] = { |
| 1640 | {{"@odata.id", "/redfish/v1/Chassis/" + chassisId}}}; |
| 1641 | }); |
AppaRao Puli | a300222 | 2019-11-12 21:32:59 +0530 | [diff] [blame] | 1642 | |
| 1643 | getIndicatorLedState(asyncResp); |
James Feist | 5bc2dc8 | 2019-10-22 14:33:16 -0700 | [diff] [blame] | 1644 | getComputerSystem(asyncResp, health); |
Ed Tanous | 6c34de4 | 2018-08-29 13:37:36 -0700 | [diff] [blame] | 1645 | getHostState(asyncResp); |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1646 | getBootProperties(asyncResp); |
Jason M. Bills | adbe192 | 2019-10-14 15:44:35 -0700 | [diff] [blame] | 1647 | getPCIeDeviceList(asyncResp, "PCIeDevices"); |
Yong Li | 51709ff | 2019-09-30 14:13:04 +0800 | [diff] [blame] | 1648 | getHostWatchdogTimer(asyncResp); |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame] | 1649 | #ifdef BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE |
| 1650 | getProvisioningStatus(asyncResp); |
| 1651 | #endif |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1652 | } |
| 1653 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1654 | void doPatch(crow::Response &res, const crow::Request &req, |
| 1655 | const std::vector<std::string> ¶ms) override |
| 1656 | { |
Santosh Puranik | cde19e5 | 2019-02-20 00:10:56 +0530 | [diff] [blame] | 1657 | std::optional<std::string> indicatorLed; |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1658 | std::optional<nlohmann::json> bootProps; |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 1659 | std::optional<nlohmann::json> wdtTimerProps; |
Santosh Puranik | 41352c2 | 2019-07-03 05:35:49 -0500 | [diff] [blame] | 1660 | auto asyncResp = std::make_shared<AsyncResp>(res); |
| 1661 | |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1662 | if (!json_util::readJson(req, res, "IndicatorLED", indicatorLed, "Boot", |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 1663 | bootProps, "WatchdogTimer", wdtTimerProps)) |
Ed Tanous | 6617338 | 2018-08-15 18:20:59 -0700 | [diff] [blame] | 1664 | { |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1665 | return; |
| 1666 | } |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1667 | |
Johnathan Mantey | 944ffaf | 2019-08-12 16:16:14 -0700 | [diff] [blame] | 1668 | res.result(boost::beast::http::status::no_content); |
Yong Li | c45f008 | 2019-10-10 14:19:01 +0800 | [diff] [blame] | 1669 | |
| 1670 | if (wdtTimerProps) |
| 1671 | { |
| 1672 | std::optional<bool> wdtEnable; |
| 1673 | std::optional<std::string> wdtTimeOutAction; |
| 1674 | |
| 1675 | if (!json_util::readJson(*wdtTimerProps, asyncResp->res, |
| 1676 | "FunctionEnabled", wdtEnable, |
| 1677 | "TimeoutAction", wdtTimeOutAction)) |
| 1678 | { |
| 1679 | return; |
| 1680 | } |
| 1681 | setWDTProperties(asyncResp, std::move(wdtEnable), |
| 1682 | std::move(wdtTimeOutAction)); |
| 1683 | } |
| 1684 | |
Santosh Puranik | 491d8ee | 2019-02-06 19:46:56 +0530 | [diff] [blame] | 1685 | if (bootProps) |
| 1686 | { |
| 1687 | std::optional<std::string> bootSource; |
| 1688 | std::optional<std::string> bootEnable; |
| 1689 | |
| 1690 | if (!json_util::readJson(*bootProps, asyncResp->res, |
| 1691 | "BootSourceOverrideTarget", bootSource, |
| 1692 | "BootSourceOverrideEnabled", bootEnable)) |
| 1693 | { |
| 1694 | return; |
| 1695 | } |
| 1696 | setBootProperties(asyncResp, std::move(bootSource), |
| 1697 | std::move(bootEnable)); |
| 1698 | } |
Johnathan Mantey | 265c160 | 2019-08-08 11:02:51 -0700 | [diff] [blame] | 1699 | |
Ed Tanous | 9712f8a | 2018-09-21 13:38:49 -0700 | [diff] [blame] | 1700 | if (indicatorLed) |
| 1701 | { |
AppaRao Puli | a300222 | 2019-11-12 21:32:59 +0530 | [diff] [blame] | 1702 | setIndicatorLedState(asyncResp, std::move(*indicatorLed)); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1703 | } |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1704 | } |
Lewanczyk, Dawid | c5b2abe | 2018-05-30 16:59:42 +0200 | [diff] [blame] | 1705 | }; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 1706 | } // namespace redfish |