blob: 137ab7e8c7f790dca183e0da4818b3abb039033a [file] [log] [blame]
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02001/*
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 Feistb49ac872019-05-21 15:12:01 -070018#include "health.hpp"
James Feist1c8fba92019-12-20 15:12:07 -080019#include "led.hpp"
Jason M. Billsf5c9f8b2018-12-18 16:51:18 -080020#include "pcie.hpp"
Jennifer Leec5d03ff2019-03-08 15:42:58 -080021#include "redfish_util.hpp"
22
Ed Tanous9712f8a2018-09-21 13:38:49 -070023#include <boost/container/flat_map.hpp>
24#include <node.hpp>
Andrew Geisslercb7e1e72019-02-19 13:05:38 -060025#include <utils/fw_utils.hpp>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020026#include <utils/json_utils.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050027
Ed Tanousabf2add2019-01-22 16:40:12 -080028#include <variant>
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020029
Ed Tanous1abe55e2018-09-05 08:30:59 -070030namespace redfish
31{
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +020032
Alpana Kumari9d3ae102019-04-12 06:49:32 -050033/**
34 * @brief Updates the Functional State of DIMMs
35 *
36 * @param[in] aResp Shared pointer for completing asynchronous calls
37 * @param[in] dimmState Dimm's Functional state, true/false
38 *
39 * @return None.
40 */
Ed Tanousb5a76932020-09-29 16:16:58 -070041inline void updateDimmProperties(const std::shared_ptr<AsyncResp>& aResp,
Ed Tanous23a21a12020-07-25 04:45:05 +000042 const std::variant<bool>& dimmState)
Alpana Kumari9d3ae102019-04-12 06:49:32 -050043{
Gunnar Mills1214b7e2020-06-04 10:11:30 -050044 const bool* isDimmFunctional = std::get_if<bool>(&dimmState);
Alpana Kumari9d3ae102019-04-12 06:49:32 -050045 if (isDimmFunctional == nullptr)
46 {
47 messages::internalError(aResp->res);
48 return;
49 }
Gunnar Mills698654b2019-10-16 13:17:37 -050050 BMCWEB_LOG_DEBUG << "Dimm Functional: " << *isDimmFunctional;
Alpana Kumari9d3ae102019-04-12 06:49:32 -050051
Gunnar Mills4e0453b2020-07-08 14:00:30 -050052 // Set it as Enabled if at least one DIMM is functional
Alpana Kumari9d3ae102019-04-12 06:49:32 -050053 // Update STATE only if previous State was DISABLED and current Dimm is
54 // ENABLED.
Gunnar Mills1214b7e2020-06-04 10:11:30 -050055 nlohmann::json& prevMemSummary =
Alpana Kumari9d3ae102019-04-12 06:49:32 -050056 aResp->res.jsonValue["MemorySummary"]["Status"]["State"];
57 if (prevMemSummary == "Disabled")
58 {
59 if (*isDimmFunctional == true)
60 {
61 aResp->res.jsonValue["MemorySummary"]["Status"]["State"] =
62 "Enabled";
63 }
64 }
65}
66
Alpana Kumari57e8c9b2019-04-15 01:09:36 -050067/*
68 * @brief Update "ProcessorSummary" "Count" based on Cpu PresenceState
69 *
70 * @param[in] aResp Shared pointer for completing asynchronous calls
71 * @param[in] cpuPresenceState CPU present or not
72 *
73 * @return None.
74 */
Ed Tanousb5a76932020-09-29 16:16:58 -070075inline void modifyCpuPresenceState(const std::shared_ptr<AsyncResp>& aResp,
Ed Tanous23a21a12020-07-25 04:45:05 +000076 const std::variant<bool>& cpuPresenceState)
Alpana Kumari57e8c9b2019-04-15 01:09:36 -050077{
Gunnar Mills1214b7e2020-06-04 10:11:30 -050078 const bool* isCpuPresent = std::get_if<bool>(&cpuPresenceState);
Alpana Kumari57e8c9b2019-04-15 01:09:36 -050079
80 if (isCpuPresent == nullptr)
81 {
82 messages::internalError(aResp->res);
83 return;
84 }
Gunnar Mills698654b2019-10-16 13:17:37 -050085 BMCWEB_LOG_DEBUG << "Cpu Present: " << *isCpuPresent;
Alpana Kumari57e8c9b2019-04-15 01:09:36 -050086
Alpana Kumari57e8c9b2019-04-15 01:09:36 -050087 if (*isCpuPresent == true)
88 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -050089 nlohmann::json& procCount =
James Feistb4b95952019-12-05 15:01:55 -080090 aResp->res.jsonValue["ProcessorSummary"]["Count"];
91 auto procCountPtr =
Gunnar Mills1214b7e2020-06-04 10:11:30 -050092 procCount.get_ptr<nlohmann::json::number_integer_t*>();
James Feistb4b95952019-12-05 15:01:55 -080093 if (procCountPtr != nullptr)
94 {
95 // shouldn't be possible to be nullptr
96 *procCountPtr += 1;
97 }
Alpana Kumari57e8c9b2019-04-15 01:09:36 -050098 }
Alpana Kumari57e8c9b2019-04-15 01:09:36 -050099}
100
101/*
102 * @brief Update "ProcessorSummary" "Status" "State" based on
103 * CPU Functional State
104 *
105 * @param[in] aResp Shared pointer for completing asynchronous calls
106 * @param[in] cpuFunctionalState is CPU functional true/false
107 *
108 * @return None.
109 */
Ed Tanous23a21a12020-07-25 04:45:05 +0000110inline void
Ed Tanousb5a76932020-09-29 16:16:58 -0700111 modifyCpuFunctionalState(const std::shared_ptr<AsyncResp>& aResp,
Ed Tanous23a21a12020-07-25 04:45:05 +0000112 const std::variant<bool>& cpuFunctionalState)
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500113{
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500114 const bool* isCpuFunctional = std::get_if<bool>(&cpuFunctionalState);
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500115
116 if (isCpuFunctional == nullptr)
117 {
118 messages::internalError(aResp->res);
119 return;
120 }
Gunnar Mills698654b2019-10-16 13:17:37 -0500121 BMCWEB_LOG_DEBUG << "Cpu Functional: " << *isCpuFunctional;
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500122
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500123 nlohmann::json& prevProcState =
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500124 aResp->res.jsonValue["ProcessorSummary"]["Status"]["State"];
125
Gunnar Mills4e0453b2020-07-08 14:00:30 -0500126 // Set it as Enabled if at least one CPU is functional
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500127 // Update STATE only if previous State was Non_Functional and current CPU is
128 // Functional.
129 if (prevProcState == "Disabled")
130 {
131 if (*isCpuFunctional == true)
132 {
133 aResp->res.jsonValue["ProcessorSummary"]["Status"]["State"] =
134 "Enabled";
135 }
136 }
137}
138
139/*
Ed Tanous6c34de42018-08-29 13:37:36 -0700140 * @brief Retrieves computer system properties over dbus
141 *
142 * @param[in] aResp Shared pointer for completing asynchronous calls
Gunnar Mills8f9ee3c2020-10-30 16:15:13 -0500143 * @param[in] systemHealth Shared HealthPopulate pointer
Ed Tanous6c34de42018-08-29 13:37:36 -0700144 *
145 * @return None.
146 */
Ed Tanousb5a76932020-09-29 16:16:58 -0700147inline void
148 getComputerSystem(const std::shared_ptr<AsyncResp>& aResp,
149 const std::shared_ptr<HealthPopulate>& systemHealth)
Ed Tanous6c34de42018-08-29 13:37:36 -0700150{
Ed Tanous6c34de42018-08-29 13:37:36 -0700151 BMCWEB_LOG_DEBUG << "Get available system components.";
Alpana Kumari9d3ae102019-04-12 06:49:32 -0500152
Ed Tanous6c34de42018-08-29 13:37:36 -0700153 crow::connections::systemBus->async_method_call(
James Feist5bc2dc82019-10-22 14:33:16 -0700154 [aResp, systemHealth](
Ed Tanous6c34de42018-08-29 13:37:36 -0700155 const boost::system::error_code ec,
156 const std::vector<std::pair<
157 std::string,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500158 std::vector<std::pair<std::string, std::vector<std::string>>>>>&
159 subtree) {
Ed Tanous6c34de42018-08-29 13:37:36 -0700160 if (ec)
161 {
162 BMCWEB_LOG_DEBUG << "DBUS response error";
Jason M. Billsf12894f2018-10-09 12:45:45 -0700163 messages::internalError(aResp->res);
Ed Tanous6c34de42018-08-29 13:37:36 -0700164 return;
165 }
Ed Tanous6c34de42018-08-29 13:37:36 -0700166 // Iterate over all retrieved ObjectPaths.
167 for (const std::pair<std::string,
168 std::vector<std::pair<
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500169 std::string, std::vector<std::string>>>>&
170 object : subtree)
Ed Tanous6c34de42018-08-29 13:37:36 -0700171 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500172 const std::string& path = object.first;
Ed Tanous6c34de42018-08-29 13:37:36 -0700173 BMCWEB_LOG_DEBUG << "Got path: " << path;
174 const std::vector<
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500175 std::pair<std::string, std::vector<std::string>>>&
176 connectionNames = object.second;
Ed Tanous6c34de42018-08-29 13:37:36 -0700177 if (connectionNames.size() < 1)
178 {
179 continue;
180 }
Ed Tanous029573d2019-02-01 10:57:49 -0800181
James Feist5bc2dc82019-10-22 14:33:16 -0700182 auto memoryHealth = std::make_shared<HealthPopulate>(
183 aResp, aResp->res.jsonValue["MemorySummary"]["Status"]);
184
185 auto cpuHealth = std::make_shared<HealthPopulate>(
186 aResp, aResp->res.jsonValue["ProcessorSummary"]["Status"]);
187
188 systemHealth->children.emplace_back(memoryHealth);
189 systemHealth->children.emplace_back(cpuHealth);
190
Ed Tanous029573d2019-02-01 10:57:49 -0800191 // This is not system, so check if it's cpu, dimm, UUID or
192 // BiosVer
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500193 for (const auto& connection : connectionNames)
Ed Tanous6c34de42018-08-29 13:37:36 -0700194 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500195 for (const auto& interfaceName : connection.second)
Ed Tanous6c34de42018-08-29 13:37:36 -0700196 {
Ed Tanous029573d2019-02-01 10:57:49 -0800197 if (interfaceName ==
198 "xyz.openbmc_project.Inventory.Item.Dimm")
Ed Tanous6c34de42018-08-29 13:37:36 -0700199 {
Ed Tanous029573d2019-02-01 10:57:49 -0800200 BMCWEB_LOG_DEBUG
201 << "Found Dimm, now get its properties.";
Alpana Kumari9d3ae102019-04-12 06:49:32 -0500202
Ed Tanous029573d2019-02-01 10:57:49 -0800203 crow::connections::systemBus->async_method_call(
Alpana Kumari9d3ae102019-04-12 06:49:32 -0500204 [aResp, service{connection.first},
Ed Tanousf23b7292020-10-15 09:41:17 -0700205 path](const boost::system::error_code ec2,
206 const std::vector<
207 std::pair<std::string, VariantType>>&
208 properties) {
Ed Tanouscb13a392020-07-25 19:02:03 +0000209 if (ec2)
Ed Tanous029573d2019-02-01 10:57:49 -0800210 {
211 BMCWEB_LOG_ERROR
Ed Tanouscb13a392020-07-25 19:02:03 +0000212 << "DBUS response error " << ec2;
Ed Tanous029573d2019-02-01 10:57:49 -0800213 messages::internalError(aResp->res);
214 return;
215 }
216 BMCWEB_LOG_DEBUG << "Got "
217 << properties.size()
Gunnar Mills698654b2019-10-16 13:17:37 -0500218 << " Dimm properties.";
Alpana Kumari9d3ae102019-04-12 06:49:32 -0500219
220 if (properties.size() > 0)
Ed Tanous029573d2019-02-01 10:57:49 -0800221 {
Alpana Kumari9d3ae102019-04-12 06:49:32 -0500222 for (const std::pair<std::string,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500223 VariantType>&
224 property : properties)
Ed Tanous6c34de42018-08-29 13:37:36 -0700225 {
Cheng C Yang5fd7ba62019-11-28 15:58:08 +0800226 if (property.first !=
227 "MemorySizeInKB")
Ed Tanous6c34de42018-08-29 13:37:36 -0700228 {
Cheng C Yang5fd7ba62019-11-28 15:58:08 +0800229 continue;
Ed Tanous6c34de42018-08-29 13:37:36 -0700230 }
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500231 const uint32_t* value =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500232 std::get_if<uint32_t>(
233 &property.second);
Cheng C Yang5fd7ba62019-11-28 15:58:08 +0800234 if (value == nullptr)
235 {
236 BMCWEB_LOG_DEBUG
237 << "Find incorrect type of "
238 "MemorySize";
239 continue;
240 }
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500241 nlohmann::json& totalMemory =
Cheng C Yang5fd7ba62019-11-28 15:58:08 +0800242 aResp->res
243 .jsonValue["MemorySummar"
244 "y"]
245 ["TotalSystemMe"
246 "moryGiB"];
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500247 uint64_t* preValue =
Cheng C Yang5fd7ba62019-11-28 15:58:08 +0800248 totalMemory
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500249 .get_ptr<uint64_t*>();
Cheng C Yang5fd7ba62019-11-28 15:58:08 +0800250 if (preValue == nullptr)
251 {
252 continue;
253 }
254 aResp->res
255 .jsonValue["MemorySummary"]
256 ["TotalSystemMemoryGi"
257 "B"] =
258 *value / (1024 * 1024) +
259 *preValue;
260 aResp->res
261 .jsonValue["MemorySummary"]
262 ["Status"]["State"] =
263 "Enabled";
Ed Tanous6c34de42018-08-29 13:37:36 -0700264 }
Ed Tanous029573d2019-02-01 10:57:49 -0800265 }
Alpana Kumari9d3ae102019-04-12 06:49:32 -0500266 else
267 {
268 auto getDimmProperties =
269 [aResp](
270 const boost::system::error_code
Ed Tanouscb13a392020-07-25 19:02:03 +0000271 ec3,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500272 const std::variant<bool>&
273 dimmState) {
Ed Tanouscb13a392020-07-25 19:02:03 +0000274 if (ec3)
Alpana Kumari9d3ae102019-04-12 06:49:32 -0500275 {
276 BMCWEB_LOG_ERROR
277 << "DBUS response "
278 "error "
Ed Tanouscb13a392020-07-25 19:02:03 +0000279 << ec3;
Alpana Kumari9d3ae102019-04-12 06:49:32 -0500280 return;
281 }
282 updateDimmProperties(aResp,
283 dimmState);
284 };
285 crow::connections::systemBus
286 ->async_method_call(
287 std::move(getDimmProperties),
288 service, path,
289 "org.freedesktop.DBus."
290 "Properties",
291 "Get",
292 "xyz.openbmc_project.State."
293 "Decorator.OperationalStatus",
294 "Functional");
295 }
Ed Tanous029573d2019-02-01 10:57:49 -0800296 },
297 connection.first, path,
298 "org.freedesktop.DBus.Properties", "GetAll",
299 "xyz.openbmc_project.Inventory.Item.Dimm");
James Feist5bc2dc82019-10-22 14:33:16 -0700300
301 memoryHealth->inventory.emplace_back(path);
Ed Tanous029573d2019-02-01 10:57:49 -0800302 }
303 else if (interfaceName ==
304 "xyz.openbmc_project.Inventory.Item.Cpu")
305 {
306 BMCWEB_LOG_DEBUG
307 << "Found Cpu, now get its properties.";
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500308
Ed Tanous029573d2019-02-01 10:57:49 -0800309 crow::connections::systemBus->async_method_call(
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500310 [aResp, service{connection.first},
Ed Tanousf23b7292020-10-15 09:41:17 -0700311 path](const boost::system::error_code ec2,
312 const std::vector<
313 std::pair<std::string, VariantType>>&
314 properties) {
Ed Tanouscb13a392020-07-25 19:02:03 +0000315 if (ec2)
Ed Tanous029573d2019-02-01 10:57:49 -0800316 {
317 BMCWEB_LOG_ERROR
Ed Tanouscb13a392020-07-25 19:02:03 +0000318 << "DBUS response error " << ec2;
Ed Tanous029573d2019-02-01 10:57:49 -0800319 messages::internalError(aResp->res);
320 return;
321 }
322 BMCWEB_LOG_DEBUG << "Got "
323 << properties.size()
Gunnar Mills698654b2019-10-16 13:17:37 -0500324 << " Cpu properties.";
Ed Tanous04a258f2018-10-15 08:00:41 -0700325
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500326 if (properties.size() > 0)
327 {
Zhikui Ren9cf21522020-09-10 11:13:14 -0700328 const uint64_t* processorId = nullptr;
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700329 const std::string* procFamily = nullptr;
330 nlohmann::json& procSummary =
331 aResp->res.jsonValue["ProcessorSumm"
332 "ary"];
333 nlohmann::json& procCount =
334 procSummary["Count"];
335
336 auto procCountPtr = procCount.get_ptr<
337 nlohmann::json::
338 number_integer_t*>();
339 if (procCountPtr == nullptr)
340 {
341 messages::internalError(aResp->res);
342 return;
343 }
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500344 for (const auto& property : properties)
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500345 {
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700346
Zhikui Ren9cf21522020-09-10 11:13:14 -0700347 if (property.first == "Id")
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700348 {
349 processorId =
Zhikui Ren9cf21522020-09-10 11:13:14 -0700350 std::get_if<uint64_t>(
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700351 &property.second);
352 if (nullptr != procFamily)
Ed Tanous3174e4d2020-10-07 11:41:22 -0700353 {
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700354 break;
Ed Tanous3174e4d2020-10-07 11:41:22 -0700355 }
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700356 continue;
357 }
358
Zhikui Ren9cf21522020-09-10 11:13:14 -0700359 if (property.first == "Family")
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500360 {
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700361 procFamily =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500362 std::get_if<std::string>(
363 &property.second);
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700364 if (nullptr != processorId)
Ed Tanous3174e4d2020-10-07 11:41:22 -0700365 {
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700366 break;
Ed Tanous3174e4d2020-10-07 11:41:22 -0700367 }
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700368 continue;
369 }
370 }
James Feistb4b95952019-12-05 15:01:55 -0800371
Zhikui Ren029cc1f2020-08-25 15:21:41 -0700372 if (procFamily != nullptr &&
373 processorId != nullptr)
374 {
375 if (procCountPtr != nullptr &&
376 *processorId != 0)
377 {
378 *procCountPtr += 1;
379 procSummary["Status"]["State"] =
380 "Enabled";
381
382 procSummary["Model"] =
383 *procFamily;
Ed Tanous6c34de42018-08-29 13:37:36 -0700384 }
385 }
Ed Tanous029573d2019-02-01 10:57:49 -0800386 }
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500387 else
388 {
389 auto getCpuPresenceState =
390 [aResp](
391 const boost::system::error_code
Ed Tanouscb13a392020-07-25 19:02:03 +0000392 ec3,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500393 const std::variant<bool>&
394 cpuPresenceCheck) {
Ed Tanouscb13a392020-07-25 19:02:03 +0000395 if (ec3)
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500396 {
397 BMCWEB_LOG_ERROR
398 << "DBUS response "
399 "error "
Ed Tanouscb13a392020-07-25 19:02:03 +0000400 << ec3;
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500401 return;
402 }
403 modifyCpuPresenceState(
404 aResp, cpuPresenceCheck);
405 };
406
407 auto getCpuFunctionalState =
408 [aResp](
409 const boost::system::error_code
Ed Tanouscb13a392020-07-25 19:02:03 +0000410 ec3,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500411 const std::variant<bool>&
412 cpuFunctionalCheck) {
Ed Tanouscb13a392020-07-25 19:02:03 +0000413 if (ec3)
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500414 {
415 BMCWEB_LOG_ERROR
416 << "DBUS response "
417 "error "
Ed Tanouscb13a392020-07-25 19:02:03 +0000418 << ec3;
Alpana Kumari57e8c9b2019-04-15 01:09:36 -0500419 return;
420 }
421 modifyCpuFunctionalState(
422 aResp, cpuFunctionalCheck);
423 };
424 // Get the Presence of CPU
425 crow::connections::systemBus
426 ->async_method_call(
427 std::move(getCpuPresenceState),
428 service, path,
429 "org.freedesktop.DBus."
430 "Properties",
431 "Get",
432 "xyz.openbmc_project.Inventory."
433 "Item",
434 "Present");
435
436 // Get the Functional State
437 crow::connections::systemBus
438 ->async_method_call(
439 std::move(
440 getCpuFunctionalState),
441 service, path,
442 "org.freedesktop.DBus."
443 "Properties",
444 "Get",
445 "xyz.openbmc_project.State."
446 "Decorator."
447 "OperationalStatus",
448 "Functional");
449
450 // Get the MODEL from
451 // xyz.openbmc_project.Inventory.Decorator.Asset
452 // support it later as Model is Empty
453 // currently.
454 }
Ed Tanous029573d2019-02-01 10:57:49 -0800455 },
456 connection.first, path,
457 "org.freedesktop.DBus.Properties", "GetAll",
458 "xyz.openbmc_project.Inventory.Item.Cpu");
James Feist5bc2dc82019-10-22 14:33:16 -0700459
460 cpuHealth->inventory.emplace_back(path);
Ed Tanous029573d2019-02-01 10:57:49 -0800461 }
462 else if (interfaceName ==
463 "xyz.openbmc_project.Common.UUID")
464 {
465 BMCWEB_LOG_DEBUG
466 << "Found UUID, now get its properties.";
467 crow::connections::systemBus->async_method_call(
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500468 [aResp](
Ed Tanouscb13a392020-07-25 19:02:03 +0000469 const boost::system::error_code ec3,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500470 const std::vector<
471 std::pair<std::string, VariantType>>&
472 properties) {
Ed Tanouscb13a392020-07-25 19:02:03 +0000473 if (ec3)
Ed Tanous029573d2019-02-01 10:57:49 -0800474 {
475 BMCWEB_LOG_DEBUG
Ed Tanouscb13a392020-07-25 19:02:03 +0000476 << "DBUS response error " << ec3;
Ed Tanous029573d2019-02-01 10:57:49 -0800477 messages::internalError(aResp->res);
478 return;
479 }
480 BMCWEB_LOG_DEBUG << "Got "
481 << properties.size()
Gunnar Mills698654b2019-10-16 13:17:37 -0500482 << " UUID properties.";
Ed Tanous029573d2019-02-01 10:57:49 -0800483 for (const std::pair<std::string,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500484 VariantType>&
485 property : properties)
Ed Tanous029573d2019-02-01 10:57:49 -0800486 {
Ed Tanous029573d2019-02-01 10:57:49 -0800487 if (property.first == "UUID")
488 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500489 const std::string* value =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500490 std::get_if<std::string>(
491 &property.second);
Ed Tanous04a258f2018-10-15 08:00:41 -0700492
Ed Tanous029573d2019-02-01 10:57:49 -0800493 if (value != nullptr)
494 {
495 std::string valueStr = *value;
496 if (valueStr.size() == 32)
Ed Tanous6c34de42018-08-29 13:37:36 -0700497 {
Ed Tanous029573d2019-02-01 10:57:49 -0800498 valueStr.insert(8, 1, '-');
499 valueStr.insert(13, 1, '-');
500 valueStr.insert(18, 1, '-');
501 valueStr.insert(23, 1, '-');
Ed Tanous6c34de42018-08-29 13:37:36 -0700502 }
Ed Tanous029573d2019-02-01 10:57:49 -0800503 BMCWEB_LOG_DEBUG << "UUID = "
504 << valueStr;
505 aResp->res.jsonValue["UUID"] =
506 valueStr;
Ed Tanous6c34de42018-08-29 13:37:36 -0700507 }
508 }
Ed Tanous029573d2019-02-01 10:57:49 -0800509 }
510 },
511 connection.first, path,
512 "org.freedesktop.DBus.Properties", "GetAll",
513 "xyz.openbmc_project.Common.UUID");
514 }
515 else if (interfaceName ==
516 "xyz.openbmc_project.Inventory.Item.System")
517 {
518 crow::connections::systemBus->async_method_call(
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500519 [aResp](
Ed Tanouscb13a392020-07-25 19:02:03 +0000520 const boost::system::error_code ec2,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500521 const std::vector<
522 std::pair<std::string, VariantType>>&
523 propertiesList) {
Ed Tanouscb13a392020-07-25 19:02:03 +0000524 if (ec2)
Ed Tanous029573d2019-02-01 10:57:49 -0800525 {
James Feiste4a4b9a2019-06-20 14:08:07 -0700526 // doesn't have to include this
527 // interface
Ed Tanous029573d2019-02-01 10:57:49 -0800528 return;
529 }
Gunnar Mills698654b2019-10-16 13:17:37 -0500530 BMCWEB_LOG_DEBUG
531 << "Got " << propertiesList.size()
532 << " properties for system";
Ed Tanous029573d2019-02-01 10:57:49 -0800533 for (const std::pair<std::string,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500534 VariantType>&
535 property : propertiesList)
Ed Tanous029573d2019-02-01 10:57:49 -0800536 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500537 const std::string& propertyName =
beccabroekfc5afcf2019-03-05 14:35:15 -0600538 property.first;
539 if ((propertyName == "PartNumber") ||
540 (propertyName == "SerialNumber") ||
541 (propertyName == "Manufacturer") ||
SunnySrivastava19845235d962020-06-30 03:09:00 -0500542 (propertyName == "Model") ||
543 (propertyName == "SubModel"))
Ed Tanous029573d2019-02-01 10:57:49 -0800544 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500545 const std::string* value =
beccabroekfc5afcf2019-03-05 14:35:15 -0600546 std::get_if<std::string>(
547 &property.second);
548 if (value != nullptr)
549 {
550 aResp->res
551 .jsonValue[propertyName] =
552 *value;
553 }
Ed Tanous029573d2019-02-01 10:57:49 -0800554 }
555 }
Gunnar Millsc1e236a2020-04-14 21:36:33 -0500556
Andrew Geisslercb7e1e72019-02-19 13:05:38 -0600557 // Grab the bios version
Gunnar Millsf97ddba2020-08-20 15:57:40 -0500558 fw_util::populateFirmwareInformation(
Andrew Geisslercb7e1e72019-02-19 13:05:38 -0600559 aResp, fw_util::biosPurpose,
Gunnar Mills72d566d2020-07-21 12:44:00 -0500560 "BiosVersion", false);
Ed Tanous029573d2019-02-01 10:57:49 -0800561 },
562 connection.first, path,
563 "org.freedesktop.DBus.Properties", "GetAll",
564 "xyz.openbmc_project.Inventory.Decorator."
565 "Asset");
James Feiste4a4b9a2019-06-20 14:08:07 -0700566
567 crow::connections::systemBus->async_method_call(
568 [aResp](
Ed Tanouscb13a392020-07-25 19:02:03 +0000569 const boost::system::error_code ec2,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500570 const std::variant<std::string>& property) {
Ed Tanouscb13a392020-07-25 19:02:03 +0000571 if (ec2)
James Feiste4a4b9a2019-06-20 14:08:07 -0700572 {
573 // doesn't have to include this
574 // interface
575 return;
576 }
577
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500578 const std::string* value =
James Feiste4a4b9a2019-06-20 14:08:07 -0700579 std::get_if<std::string>(&property);
580 if (value != nullptr)
581 {
582 aResp->res.jsonValue["AssetTag"] =
583 *value;
584 }
585 },
586 connection.first, path,
587 "org.freedesktop.DBus.Properties", "Get",
588 "xyz.openbmc_project.Inventory.Decorator."
589 "AssetTag",
590 "AssetTag");
Ed Tanous6c34de42018-08-29 13:37:36 -0700591 }
592 }
593 }
594 }
Ed Tanous6c34de42018-08-29 13:37:36 -0700595 },
596 "xyz.openbmc_project.ObjectMapper",
597 "/xyz/openbmc_project/object_mapper",
598 "xyz.openbmc_project.ObjectMapper", "GetSubTree",
Ed Tanous66173382018-08-15 18:20:59 -0700599 "/xyz/openbmc_project/inventory", int32_t(0),
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500600 std::array<const char*, 5>{
Ed Tanous66173382018-08-15 18:20:59 -0700601 "xyz.openbmc_project.Inventory.Decorator.Asset",
602 "xyz.openbmc_project.Inventory.Item.Cpu",
603 "xyz.openbmc_project.Inventory.Item.Dimm",
604 "xyz.openbmc_project.Inventory.Item.System",
605 "xyz.openbmc_project.Common.UUID",
606 });
Ed Tanous6c34de42018-08-29 13:37:36 -0700607}
608
609/**
Ed Tanous6c34de42018-08-29 13:37:36 -0700610 * @brief Retrieves host state properties over dbus
611 *
612 * @param[in] aResp Shared pointer for completing asynchronous calls.
613 *
614 * @return None.
615 */
Ed Tanousb5a76932020-09-29 16:16:58 -0700616inline void getHostState(const std::shared_ptr<AsyncResp>& aResp)
Ed Tanous6c34de42018-08-29 13:37:36 -0700617{
618 BMCWEB_LOG_DEBUG << "Get host information.";
619 crow::connections::systemBus->async_method_call(
Jennifer Leec5d03ff2019-03-08 15:42:58 -0800620 [aResp](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500621 const std::variant<std::string>& hostState) {
Ed Tanous6c34de42018-08-29 13:37:36 -0700622 if (ec)
623 {
624 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
Jason M. Billsf12894f2018-10-09 12:45:45 -0700625 messages::internalError(aResp->res);
Ed Tanous6c34de42018-08-29 13:37:36 -0700626 return;
627 }
Ed Tanous66173382018-08-15 18:20:59 -0700628
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500629 const std::string* s = std::get_if<std::string>(&hostState);
Ed Tanous66173382018-08-15 18:20:59 -0700630 BMCWEB_LOG_DEBUG << "Host state: " << *s;
631 if (s != nullptr)
Ed Tanous6c34de42018-08-29 13:37:36 -0700632 {
Ed Tanous66173382018-08-15 18:20:59 -0700633 // Verify Host State
Andrew Geissler94732662019-01-08 19:32:16 -0800634 if (*s == "xyz.openbmc_project.State.Host.HostState.Running")
Ed Tanous6c34de42018-08-29 13:37:36 -0700635 {
Ed Tanous66173382018-08-15 18:20:59 -0700636 aResp->res.jsonValue["PowerState"] = "On";
637 aResp->res.jsonValue["Status"]["State"] = "Enabled";
638 }
Andrew Geissler83935af2020-02-13 10:24:53 -0600639 else if (*s == "xyz.openbmc_project.State.Host.HostState."
Gunnar Mills8c888602020-05-01 14:25:09 -0500640 "Quiesced")
641 {
642 aResp->res.jsonValue["PowerState"] = "On";
643 aResp->res.jsonValue["Status"]["State"] = "Quiesced";
644 }
645 else if (*s == "xyz.openbmc_project.State.Host.HostState."
Andrew Geissler83935af2020-02-13 10:24:53 -0600646 "DiagnosticMode")
647 {
648 aResp->res.jsonValue["PowerState"] = "On";
649 aResp->res.jsonValue["Status"]["State"] = "InTest";
650 }
Ed Tanous66173382018-08-15 18:20:59 -0700651 else
652 {
653 aResp->res.jsonValue["PowerState"] = "Off";
654 aResp->res.jsonValue["Status"]["State"] = "Disabled";
Ed Tanous6c34de42018-08-29 13:37:36 -0700655 }
656 }
657 },
658 "xyz.openbmc_project.State.Host", "/xyz/openbmc_project/state/host0",
Ed Tanous66173382018-08-15 18:20:59 -0700659 "org.freedesktop.DBus.Properties", "Get",
660 "xyz.openbmc_project.State.Host", "CurrentHostState");
Ed Tanous6c34de42018-08-29 13:37:36 -0700661}
662
663/**
Gunnar Mills786d0f62020-07-08 13:43:15 -0500664 * @brief Translates boot source DBUS property value to redfish.
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530665 *
666 * @param[in] dbusSource The boot source in DBUS speak.
667 *
668 * @return Returns as a string, the boot source in Redfish terms. If translation
669 * cannot be done, returns an empty string.
670 */
Ed Tanous23a21a12020-07-25 04:45:05 +0000671inline std::string dbusToRfBootSource(const std::string& dbusSource)
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530672{
673 if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Default")
674 {
675 return "None";
676 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700677 if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Disk")
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530678 {
679 return "Hdd";
680 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700681 if (dbusSource ==
682 "xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia")
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530683 {
684 return "Cd";
685 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700686 if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Network")
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530687 {
688 return "Pxe";
689 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700690 if (dbusSource ==
691 "xyz.openbmc_project.Control.Boot.Source.Sources.RemovableMedia")
Jennifer Lee9f16b2c2019-04-19 15:33:48 -0700692 {
693 return "Usb";
694 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700695 return "";
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530696}
697
698/**
Gunnar Mills786d0f62020-07-08 13:43:15 -0500699 * @brief Translates boot mode DBUS property value to redfish.
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530700 *
701 * @param[in] dbusMode The boot mode in DBUS speak.
702 *
703 * @return Returns as a string, the boot mode in Redfish terms. If translation
704 * cannot be done, returns an empty string.
705 */
Ed Tanous23a21a12020-07-25 04:45:05 +0000706inline std::string dbusToRfBootMode(const std::string& dbusMode)
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530707{
708 if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular")
709 {
710 return "None";
711 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700712 if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe")
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530713 {
714 return "Diags";
715 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700716 if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup")
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530717 {
718 return "BiosSetup";
719 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700720 return "";
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530721}
722
723/**
Gunnar Mills786d0f62020-07-08 13:43:15 -0500724 * @brief Translates boot source from Redfish to the DBus boot paths.
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530725 *
726 * @param[in] rfSource The boot source in Redfish.
Johnathan Mantey944ffaf2019-08-12 16:16:14 -0700727 * @param[out] bootSource The DBus source
728 * @param[out] bootMode the DBus boot mode
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530729 *
Johnathan Mantey944ffaf2019-08-12 16:16:14 -0700730 * @return Integer error code.
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530731 */
Ed Tanousb5a76932020-09-29 16:16:58 -0700732inline int assignBootParameters(const std::shared_ptr<AsyncResp>& aResp,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500733 const std::string& rfSource,
734 std::string& bootSource, std::string& bootMode)
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530735{
Johnathan Mantey944ffaf2019-08-12 16:16:14 -0700736 // The caller has initialized the bootSource and bootMode to:
737 // bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular";
738 // bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Default";
739 // Only modify the bootSource/bootMode variable needed to achieve the
740 // desired boot action.
741
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530742 if (rfSource == "None")
743 {
Johnathan Mantey944ffaf2019-08-12 16:16:14 -0700744 return 0;
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530745 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700746 if (rfSource == "Pxe")
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530747 {
Johnathan Mantey944ffaf2019-08-12 16:16:14 -0700748 bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Network";
749 }
750 else if (rfSource == "Hdd")
751 {
752 bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Disk";
753 }
754 else if (rfSource == "Diags")
755 {
756 bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe";
757 }
758 else if (rfSource == "Cd")
759 {
760 bootSource =
761 "xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia";
762 }
763 else if (rfSource == "BiosSetup")
764 {
765 bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup";
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530766 }
Jennifer Lee9f16b2c2019-04-19 15:33:48 -0700767 else if (rfSource == "Usb")
768 {
Johnathan Mantey944ffaf2019-08-12 16:16:14 -0700769 bootSource =
770 "xyz.openbmc_project.Control.Boot.Source.Sources.RemovableMedia";
Jennifer Lee9f16b2c2019-04-19 15:33:48 -0700771 }
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530772 else
773 {
Johnathan Mantey944ffaf2019-08-12 16:16:14 -0700774 BMCWEB_LOG_DEBUG << "Invalid property value for "
775 "BootSourceOverrideTarget: "
776 << bootSource;
777 messages::propertyValueNotInList(aResp->res, rfSource,
778 "BootSourceTargetOverride");
779 return -1;
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530780 }
Johnathan Mantey944ffaf2019-08-12 16:16:14 -0700781 return 0;
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530782}
Andrew Geissler978b8802020-11-19 13:36:40 -0600783/**
784 * @brief Retrieves boot progress of the system
785 *
786 * @param[in] aResp Shared pointer for generating response message.
787 *
788 * @return None.
789 */
790inline void getBootProgress(const std::shared_ptr<AsyncResp>& aResp)
791{
792 crow::connections::systemBus->async_method_call(
793 [aResp](const boost::system::error_code ec,
794 const std::variant<std::string>& bootProgress) {
795 if (ec)
796 {
797 // BootProgress is an optional object so just do nothing if
798 // not found
799 return;
800 }
801
802 const std::string* bootProgressStr =
803 std::get_if<std::string>(&bootProgress);
804
805 if (!bootProgressStr)
806 {
807 // Interface implemented but property not found, return error
808 // for that
809 messages::internalError(aResp->res);
810 return;
811 }
812
813 BMCWEB_LOG_DEBUG << "Boot Progress: " << *bootProgressStr;
814
815 // Now convert the D-Bus BootProgress to the appropriate Redfish
816 // enum
817 std::string rfBpLastState = "None";
818 if (*bootProgressStr == "xyz.openbmc_project.State.Boot.Progress."
819 "ProgressStages.Unspecified")
820 {
821 rfBpLastState = "None";
822 }
823 else if (*bootProgressStr ==
824 "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
825 "PrimaryProcInit")
826 {
827 rfBpLastState = "PrimaryProcessorInitializationStarted";
828 }
829 else if (*bootProgressStr ==
830 "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
831 "BusInit")
832 {
833 rfBpLastState = "BusInitializationStarted";
834 }
835 else if (*bootProgressStr ==
836 "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
837 "MemoryInit")
838 {
839 rfBpLastState = "MemoryInitializationStarted";
840 }
841 else if (*bootProgressStr ==
842 "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
843 "SecondaryProcInit")
844 {
845 rfBpLastState = "SecondaryProcessorInitializationStarted";
846 }
847 else if (*bootProgressStr ==
848 "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
849 "PCIInit")
850 {
851 rfBpLastState = "PCIResourceConfigStarted";
852 }
853 else if (*bootProgressStr ==
854 "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
855 "SystemInitComplete")
856 {
857 rfBpLastState = "SystemHardwareInitializationComplete";
858 }
859 else if (*bootProgressStr ==
860 "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
861 "OSStart")
862 {
863 rfBpLastState = "OSBootStarted";
864 }
865 else if (*bootProgressStr ==
866 "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
867 "OSRunning")
868 {
869 rfBpLastState = "OSRunning";
870 }
871 else
872 {
873 BMCWEB_LOG_DEBUG << "Unsupported D-Bus BootProgress "
874 << *bootProgressStr;
875 // Just return the default
876 }
877
878 aResp->res.jsonValue["BootProgress"]["LastState"] = rfBpLastState;
879 },
880 "xyz.openbmc_project.State.Host", "/xyz/openbmc_project/state/host0",
881 "org.freedesktop.DBus.Properties", "Get",
882 "xyz.openbmc_project.State.Boot.Progress", "BootProgress");
883}
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530884
885/**
886 * @brief Retrieves boot mode over DBUS and fills out the response
887 *
888 * @param[in] aResp Shared pointer for generating response message.
889 * @param[in] bootDbusObj The dbus object to query for boot properties.
890 *
891 * @return None.
892 */
Ed Tanousb5a76932020-09-29 16:16:58 -0700893inline void getBootMode(const std::shared_ptr<AsyncResp>& aResp,
894 const std::string& bootDbusObj)
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530895{
896 crow::connections::systemBus->async_method_call(
897 [aResp](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500898 const std::variant<std::string>& bootMode) {
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530899 if (ec)
900 {
901 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
902 messages::internalError(aResp->res);
903 return;
904 }
905
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500906 const std::string* bootModeStr =
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530907 std::get_if<std::string>(&bootMode);
908
909 if (!bootModeStr)
910 {
911 messages::internalError(aResp->res);
912 return;
913 }
914
915 BMCWEB_LOG_DEBUG << "Boot mode: " << *bootModeStr;
916
917 // TODO (Santosh): Do we need to support override mode?
918 aResp->res.jsonValue["Boot"]["BootSourceOverrideMode"] = "Legacy";
919 aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget@Redfish."
920 "AllowableValues"] = {
Johnathan Mantey944ffaf2019-08-12 16:16:14 -0700921 "None", "Pxe", "Hdd", "Cd", "Diags", "BiosSetup", "Usb"};
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530922
923 if (*bootModeStr !=
924 "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular")
925 {
926 auto rfMode = dbusToRfBootMode(*bootModeStr);
927 if (!rfMode.empty())
928 {
929 aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] =
930 rfMode;
931 }
932 }
933
934 // If the BootSourceOverrideTarget is still "None" at the end,
935 // reset the BootSourceOverrideEnabled to indicate that
936 // overrides are disabled
937 if (aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] ==
938 "None")
939 {
940 aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] =
941 "Disabled";
942 }
943 },
944 "xyz.openbmc_project.Settings", bootDbusObj,
945 "org.freedesktop.DBus.Properties", "Get",
946 "xyz.openbmc_project.Control.Boot.Mode", "BootMode");
947}
948
949/**
950 * @brief Retrieves boot source over DBUS
951 *
952 * @param[in] aResp Shared pointer for generating response message.
953 * @param[in] oneTimeEnable Boolean to indicate boot properties are one-time.
954 *
955 * @return None.
956 */
Ed Tanousf23b7292020-10-15 09:41:17 -0700957inline void getBootSource(const std::shared_ptr<AsyncResp>& aResp,
958 bool oneTimeEnabled)
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530959{
960 std::string bootDbusObj =
961 oneTimeEnabled ? "/xyz/openbmc_project/control/host0/boot/one_time"
962 : "/xyz/openbmc_project/control/host0/boot";
963
964 BMCWEB_LOG_DEBUG << "Is one time: " << oneTimeEnabled;
965 aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] =
966 (oneTimeEnabled) ? "Once" : "Continuous";
967
968 crow::connections::systemBus->async_method_call(
969 [aResp, bootDbusObj](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500970 const std::variant<std::string>& bootSource) {
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530971 if (ec)
972 {
973 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
974 messages::internalError(aResp->res);
975 return;
976 }
977
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500978 const std::string* bootSourceStr =
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530979 std::get_if<std::string>(&bootSource);
980
981 if (!bootSourceStr)
982 {
983 messages::internalError(aResp->res);
984 return;
985 }
986 BMCWEB_LOG_DEBUG << "Boot source: " << *bootSourceStr;
987
988 auto rfSource = dbusToRfBootSource(*bootSourceStr);
989 if (!rfSource.empty())
990 {
991 aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] =
992 rfSource;
993 }
994 },
995 "xyz.openbmc_project.Settings", bootDbusObj,
996 "org.freedesktop.DBus.Properties", "Get",
997 "xyz.openbmc_project.Control.Boot.Source", "BootSource");
Ed Tanousf23b7292020-10-15 09:41:17 -0700998 getBootMode(aResp, bootDbusObj);
Santosh Puranik491d8ee2019-02-06 19:46:56 +0530999}
1000
1001/**
1002 * @brief Retrieves "One time" enabled setting over DBUS and calls function to
1003 * get boot source and boot mode.
1004 *
1005 * @param[in] aResp Shared pointer for generating response message.
1006 *
1007 * @return None.
1008 */
Ed Tanousb5a76932020-09-29 16:16:58 -07001009inline void getBootProperties(const std::shared_ptr<AsyncResp>& aResp)
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301010{
1011 BMCWEB_LOG_DEBUG << "Get boot information.";
1012
1013 crow::connections::systemBus->async_method_call(
Jennifer Leec5d03ff2019-03-08 15:42:58 -08001014 [aResp](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001015 const std::variant<bool>& oneTime) {
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301016 if (ec)
1017 {
1018 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
James Feist2a833c72019-07-19 10:17:13 -07001019 // not an error, don't have to have the interface
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301020 return;
1021 }
1022
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001023 const bool* oneTimePtr = std::get_if<bool>(&oneTime);
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301024
1025 if (!oneTimePtr)
1026 {
1027 messages::internalError(aResp->res);
1028 return;
1029 }
1030 getBootSource(aResp, *oneTimePtr);
1031 },
1032 "xyz.openbmc_project.Settings",
1033 "/xyz/openbmc_project/control/host0/boot/one_time",
1034 "org.freedesktop.DBus.Properties", "Get",
1035 "xyz.openbmc_project.Object.Enable", "Enabled");
1036}
1037
1038/**
Gunnar Millsc0557e12020-06-30 11:26:20 -05001039 * @brief Retrieves the Last Reset Time
1040 *
1041 * "Reset" is an overloaded term in Redfish, "Reset" includes power on
1042 * and power off. Even though this is the "system" Redfish object look at the
1043 * chassis D-Bus interface for the LastStateChangeTime since this has the
1044 * last power operation time.
1045 *
1046 * @param[in] aResp Shared pointer for generating response message.
1047 *
1048 * @return None.
1049 */
Ed Tanousb5a76932020-09-29 16:16:58 -07001050inline void getLastResetTime(const std::shared_ptr<AsyncResp>& aResp)
Gunnar Millsc0557e12020-06-30 11:26:20 -05001051{
1052 BMCWEB_LOG_DEBUG << "Getting System Last Reset Time";
1053
1054 crow::connections::systemBus->async_method_call(
1055 [aResp](const boost::system::error_code ec,
1056 std::variant<uint64_t>& lastResetTime) {
1057 if (ec)
1058 {
1059 BMCWEB_LOG_DEBUG << "D-BUS response error " << ec;
1060 return;
1061 }
1062
1063 const uint64_t* lastResetTimePtr =
1064 std::get_if<uint64_t>(&lastResetTime);
1065
1066 if (!lastResetTimePtr)
1067 {
1068 messages::internalError(aResp->res);
1069 return;
1070 }
1071 // LastStateChangeTime is epoch time, in milliseconds
1072 // https://github.com/openbmc/phosphor-dbus-interfaces/blob/33e8e1dd64da53a66e888d33dc82001305cd0bf9/xyz/openbmc_project/State/Chassis.interface.yaml#L19
1073 time_t lastResetTimeStamp =
1074 static_cast<time_t>(*lastResetTimePtr / 1000);
1075
1076 // Convert to ISO 8601 standard
1077 aResp->res.jsonValue["LastResetTime"] =
1078 crow::utility::getDateTime(lastResetTimeStamp);
1079 },
1080 "xyz.openbmc_project.State.Chassis",
1081 "/xyz/openbmc_project/state/chassis0",
1082 "org.freedesktop.DBus.Properties", "Get",
1083 "xyz.openbmc_project.State.Chassis", "LastStateChangeTime");
1084}
1085
1086/**
Gunnar Mills6bd5a8d2020-05-16 18:49:33 -05001087 * @brief Retrieves Automatic Retry properties. Known on D-Bus as AutoReboot.
1088 *
1089 * @param[in] aResp Shared pointer for generating response message.
1090 *
1091 * @return None.
1092 */
Ed Tanousb5a76932020-09-29 16:16:58 -07001093inline void getAutomaticRetry(const std::shared_ptr<AsyncResp>& aResp)
Gunnar Mills6bd5a8d2020-05-16 18:49:33 -05001094{
1095 BMCWEB_LOG_DEBUG << "Get Automatic Retry policy";
1096
1097 crow::connections::systemBus->async_method_call(
1098 [aResp](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001099 std::variant<bool>& autoRebootEnabled) {
Gunnar Mills6bd5a8d2020-05-16 18:49:33 -05001100 if (ec)
1101 {
1102 BMCWEB_LOG_DEBUG << "D-BUS response error " << ec;
1103 return;
1104 }
1105
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001106 const bool* autoRebootEnabledPtr =
Gunnar Mills6bd5a8d2020-05-16 18:49:33 -05001107 std::get_if<bool>(&autoRebootEnabled);
1108
1109 if (!autoRebootEnabledPtr)
1110 {
1111 messages::internalError(aResp->res);
1112 return;
1113 }
1114
1115 BMCWEB_LOG_DEBUG << "Auto Reboot: " << *autoRebootEnabledPtr;
1116 if (*autoRebootEnabledPtr == true)
1117 {
1118 aResp->res.jsonValue["Boot"]["AutomaticRetryConfig"] =
1119 "RetryAttempts";
1120 // If AutomaticRetry (AutoReboot) is enabled see how many
1121 // attempts are left
1122 crow::connections::systemBus->async_method_call(
Ed Tanouscb13a392020-07-25 19:02:03 +00001123 [aResp](const boost::system::error_code ec2,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001124 std::variant<uint32_t>& autoRebootAttemptsLeft) {
Ed Tanouscb13a392020-07-25 19:02:03 +00001125 if (ec2)
Gunnar Mills6bd5a8d2020-05-16 18:49:33 -05001126 {
Ed Tanouscb13a392020-07-25 19:02:03 +00001127 BMCWEB_LOG_DEBUG << "D-BUS response error " << ec2;
Gunnar Mills6bd5a8d2020-05-16 18:49:33 -05001128 return;
1129 }
1130
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001131 const uint32_t* autoRebootAttemptsLeftPtr =
Gunnar Mills6bd5a8d2020-05-16 18:49:33 -05001132 std::get_if<uint32_t>(&autoRebootAttemptsLeft);
1133
1134 if (!autoRebootAttemptsLeftPtr)
1135 {
1136 messages::internalError(aResp->res);
1137 return;
1138 }
1139
1140 BMCWEB_LOG_DEBUG << "Auto Reboot Attempts Left: "
1141 << *autoRebootAttemptsLeftPtr;
1142
1143 aResp->res
1144 .jsonValue["Boot"]
1145 ["RemainingAutomaticRetryAttempts"] =
1146 *autoRebootAttemptsLeftPtr;
1147 },
1148 "xyz.openbmc_project.State.Host",
1149 "/xyz/openbmc_project/state/host0",
1150 "org.freedesktop.DBus.Properties", "Get",
1151 "xyz.openbmc_project.Control.Boot.RebootAttempts",
1152 "AttemptsLeft");
1153 }
1154 else
1155 {
1156 aResp->res.jsonValue["Boot"]["AutomaticRetryConfig"] =
1157 "Disabled";
1158 }
1159
1160 // Not on D-Bus. Hardcoded here:
1161 // https://github.com/openbmc/phosphor-state-manager/blob/1dbbef42675e94fb1f78edb87d6b11380260535a/meson_options.txt#L71
1162 aResp->res.jsonValue["Boot"]["AutomaticRetryAttempts"] = 3;
Gunnar Mills69f35302020-05-17 16:06:31 -05001163
1164 // "AutomaticRetryConfig" can be 3 values, Disabled, RetryAlways,
1165 // and RetryAttempts. OpenBMC only supports Disabled and
1166 // RetryAttempts.
1167 aResp->res.jsonValue["Boot"]["AutomaticRetryConfig@Redfish."
1168 "AllowableValues"] = {"Disabled",
1169 "RetryAttempts"};
Gunnar Mills6bd5a8d2020-05-16 18:49:33 -05001170 },
1171 "xyz.openbmc_project.Settings",
1172 "/xyz/openbmc_project/control/host0/auto_reboot",
1173 "org.freedesktop.DBus.Properties", "Get",
1174 "xyz.openbmc_project.Control.Boot.RebootPolicy", "AutoReboot");
1175}
1176
1177/**
George Liuc6a620f2020-04-10 17:18:11 +08001178 * @brief Retrieves power restore policy over DBUS.
1179 *
1180 * @param[in] aResp Shared pointer for generating response message.
1181 *
1182 * @return None.
1183 */
Ed Tanousb5a76932020-09-29 16:16:58 -07001184inline void getPowerRestorePolicy(const std::shared_ptr<AsyncResp>& aResp)
George Liuc6a620f2020-04-10 17:18:11 +08001185{
1186 BMCWEB_LOG_DEBUG << "Get power restore policy";
1187
1188 crow::connections::systemBus->async_method_call(
1189 [aResp](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001190 std::variant<std::string>& policy) {
George Liuc6a620f2020-04-10 17:18:11 +08001191 if (ec)
1192 {
1193 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1194 return;
1195 }
1196
1197 const boost::container::flat_map<std::string, std::string>
1198 policyMaps = {
1199 {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy."
1200 "AlwaysOn",
1201 "AlwaysOn"},
1202 {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy."
1203 "AlwaysOff",
1204 "AlwaysOff"},
1205 {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy."
Gunnar Mills37ec9072021-01-05 19:43:44 -06001206 "Restore",
George Liuc6a620f2020-04-10 17:18:11 +08001207 "LastState"}};
1208
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001209 const std::string* policyPtr = std::get_if<std::string>(&policy);
George Liuc6a620f2020-04-10 17:18:11 +08001210
1211 if (!policyPtr)
1212 {
1213 messages::internalError(aResp->res);
1214 return;
1215 }
1216
1217 auto policyMapsIt = policyMaps.find(*policyPtr);
1218 if (policyMapsIt == policyMaps.end())
1219 {
1220 messages::internalError(aResp->res);
1221 return;
1222 }
1223
1224 aResp->res.jsonValue["PowerRestorePolicy"] = policyMapsIt->second;
1225 },
1226 "xyz.openbmc_project.Settings",
1227 "/xyz/openbmc_project/control/host0/power_restore_policy",
1228 "org.freedesktop.DBus.Properties", "Get",
1229 "xyz.openbmc_project.Control.Power.RestorePolicy",
1230 "PowerRestorePolicy");
1231}
1232
1233/**
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301234 * @brief Sets boot properties into DBUS object(s).
1235 *
1236 * @param[in] aResp Shared pointer for generating response message.
1237 * @param[in] oneTimeEnabled Is "one-time" setting already enabled.
1238 * @param[in] bootSource The boot source to set.
1239 * @param[in] bootEnable The source override "enable" to set.
1240 *
Johnathan Mantey265c1602019-08-08 11:02:51 -07001241 * @return Integer error code.
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301242 */
Ed Tanous23a21a12020-07-25 04:45:05 +00001243inline void setBootModeOrSource(std::shared_ptr<AsyncResp> aResp,
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301244 bool oneTimeEnabled,
Ed Tanousf23b7292020-10-15 09:41:17 -07001245 const std::optional<std::string>& bootSource,
1246 const std::optional<std::string>& bootEnable)
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301247{
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001248 std::string bootSourceStr =
1249 "xyz.openbmc_project.Control.Boot.Source.Sources.Default";
1250 std::string bootModeStr =
1251 "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular";
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301252 bool oneTimeSetting = oneTimeEnabled;
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001253 bool useBootSource = true;
1254
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301255 // Validate incoming parameters
1256 if (bootEnable)
1257 {
1258 if (*bootEnable == "Once")
1259 {
1260 oneTimeSetting = true;
1261 }
1262 else if (*bootEnable == "Continuous")
1263 {
1264 oneTimeSetting = false;
1265 }
1266 else if (*bootEnable == "Disabled")
1267 {
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001268 BMCWEB_LOG_DEBUG << "Boot source override will be disabled";
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301269 oneTimeSetting = false;
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001270 useBootSource = false;
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301271 }
1272 else
1273 {
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301274 BMCWEB_LOG_DEBUG << "Unsupported value for "
1275 "BootSourceOverrideEnabled: "
1276 << *bootEnable;
1277 messages::propertyValueNotInList(aResp->res, *bootEnable,
1278 "BootSourceOverrideEnabled");
1279 return;
1280 }
1281 }
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301282
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001283 if (bootSource && useBootSource)
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301284 {
1285 // Source target specified
1286 BMCWEB_LOG_DEBUG << "Boot source: " << *bootSource;
1287 // Figure out which DBUS interface and property to use
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001288 if (assignBootParameters(aResp, *bootSource, bootSourceStr,
1289 bootModeStr))
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301290 {
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001291 BMCWEB_LOG_DEBUG
1292 << "Invalid property value for BootSourceOverrideTarget: "
1293 << *bootSource;
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301294 messages::propertyValueNotInList(aResp->res, *bootSource,
1295 "BootSourceTargetOverride");
1296 return;
1297 }
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001298 }
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301299
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001300 // Act on validated parameters
1301 BMCWEB_LOG_DEBUG << "DBUS boot source: " << bootSourceStr;
1302 BMCWEB_LOG_DEBUG << "DBUS boot mode: " << bootModeStr;
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001303 const char* bootObj =
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001304 oneTimeSetting ? "/xyz/openbmc_project/control/host0/boot/one_time"
1305 : "/xyz/openbmc_project/control/host0/boot";
1306
1307 crow::connections::systemBus->async_method_call(
1308 [aResp](const boost::system::error_code ec) {
1309 if (ec)
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301310 {
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001311 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1312 messages::internalError(aResp->res);
1313 return;
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301314 }
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001315 BMCWEB_LOG_DEBUG << "Boot source update done.";
1316 },
1317 "xyz.openbmc_project.Settings", bootObj,
1318 "org.freedesktop.DBus.Properties", "Set",
1319 "xyz.openbmc_project.Control.Boot.Source", "BootSource",
1320 std::variant<std::string>(bootSourceStr));
1321
1322 crow::connections::systemBus->async_method_call(
1323 [aResp](const boost::system::error_code ec) {
1324 if (ec)
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301325 {
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001326 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1327 messages::internalError(aResp->res);
1328 return;
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301329 }
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07001330 BMCWEB_LOG_DEBUG << "Boot mode update done.";
1331 },
1332 "xyz.openbmc_project.Settings", bootObj,
1333 "org.freedesktop.DBus.Properties", "Set",
1334 "xyz.openbmc_project.Control.Boot.Mode", "BootMode",
1335 std::variant<std::string>(bootModeStr));
1336
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301337 crow::connections::systemBus->async_method_call(
1338 [aResp{std::move(aResp)}](const boost::system::error_code ec) {
1339 if (ec)
1340 {
1341 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1342 messages::internalError(aResp->res);
1343 return;
1344 }
1345 BMCWEB_LOG_DEBUG << "Boot enable update done.";
1346 },
1347 "xyz.openbmc_project.Settings",
1348 "/xyz/openbmc_project/control/host0/boot/one_time",
1349 "org.freedesktop.DBus.Properties", "Set",
1350 "xyz.openbmc_project.Object.Enable", "Enabled",
1351 std::variant<bool>(oneTimeSetting));
1352}
1353
1354/**
1355 * @brief Retrieves "One time" enabled setting over DBUS and calls function to
1356 * set boot source/boot mode properties.
1357 *
1358 * @param[in] aResp Shared pointer for generating response message.
1359 * @param[in] bootSource The boot source from incoming RF request.
1360 * @param[in] bootEnable The boot override enable from incoming RF request.
1361 *
Johnathan Mantey265c1602019-08-08 11:02:51 -07001362 * @return Integer error code.
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301363 */
Ed Tanousb5a76932020-09-29 16:16:58 -07001364inline void setBootSourceProperties(const std::shared_ptr<AsyncResp>& aResp,
Gunnar Mills69f35302020-05-17 16:06:31 -05001365 std::optional<std::string> bootSource,
1366 std::optional<std::string> bootEnable)
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301367{
1368 BMCWEB_LOG_DEBUG << "Set boot information.";
1369
1370 crow::connections::systemBus->async_method_call(
Johnathan Mantey265c1602019-08-08 11:02:51 -07001371 [aResp, bootSource{std::move(bootSource)},
Patrick Williams19bd78d2020-05-13 17:38:24 -05001372 bootEnable{std::move(bootEnable)}](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001373 const std::variant<bool>& oneTime) {
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301374 if (ec)
1375 {
1376 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1377 messages::internalError(aResp->res);
1378 return;
1379 }
1380
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001381 const bool* oneTimePtr = std::get_if<bool>(&oneTime);
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301382
1383 if (!oneTimePtr)
1384 {
1385 messages::internalError(aResp->res);
1386 return;
1387 }
1388
1389 BMCWEB_LOG_DEBUG << "Got one time: " << *oneTimePtr;
1390
Ed Tanousf23b7292020-10-15 09:41:17 -07001391 setBootModeOrSource(aResp, *oneTimePtr, bootSource, bootEnable);
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301392 },
1393 "xyz.openbmc_project.Settings",
1394 "/xyz/openbmc_project/control/host0/boot/one_time",
1395 "org.freedesktop.DBus.Properties", "Get",
1396 "xyz.openbmc_project.Object.Enable", "Enabled");
1397}
1398
George Liuc6a620f2020-04-10 17:18:11 +08001399/**
Gunnar Mills98e386e2020-10-30 14:58:09 -05001400 * @brief Sets AssetTag
1401 *
1402 * @param[in] aResp Shared pointer for generating response message.
1403 * @param[in] assetTag "AssetTag" from request.
1404 *
1405 * @return None.
1406 */
1407inline void setAssetTag(const std::shared_ptr<AsyncResp>& aResp,
1408 const std::string& assetTag)
1409{
1410 crow::connections::systemBus->async_method_call(
1411 [aResp, assetTag](
1412 const boost::system::error_code ec,
1413 const std::vector<std::pair<
1414 std::string,
1415 std::vector<std::pair<std::string, std::vector<std::string>>>>>&
1416 subtree) {
1417 if (ec)
1418 {
1419 BMCWEB_LOG_DEBUG << "D-Bus response error on GetSubTree " << ec;
1420 messages::internalError(aResp->res);
1421 return;
1422 }
1423 if (subtree.size() == 0)
1424 {
1425 BMCWEB_LOG_DEBUG << "Can't find system D-Bus object!";
1426 messages::internalError(aResp->res);
1427 return;
1428 }
1429 // Assume only 1 system D-Bus object
1430 // Throw an error if there is more than 1
1431 if (subtree.size() > 1)
1432 {
1433 BMCWEB_LOG_DEBUG << "Found more than 1 system D-Bus object!";
1434 messages::internalError(aResp->res);
1435 return;
1436 }
1437 if (subtree[0].first.empty() || subtree[0].second.size() != 1)
1438 {
1439 BMCWEB_LOG_DEBUG << "Asset Tag Set mapper error!";
1440 messages::internalError(aResp->res);
1441 return;
1442 }
1443
1444 const std::string& path = subtree[0].first;
1445 const std::string& service = subtree[0].second.begin()->first;
1446
1447 if (service.empty())
1448 {
1449 BMCWEB_LOG_DEBUG << "Asset Tag Set service mapper error!";
1450 messages::internalError(aResp->res);
1451 return;
1452 }
1453
1454 crow::connections::systemBus->async_method_call(
1455 [aResp](const boost::system::error_code ec2) {
1456 if (ec2)
1457 {
1458 BMCWEB_LOG_DEBUG
1459 << "D-Bus response error on AssetTag Set " << ec2;
1460 messages::internalError(aResp->res);
1461 return;
1462 }
1463 },
1464 service, path, "org.freedesktop.DBus.Properties", "Set",
1465 "xyz.openbmc_project.Inventory.Decorator.AssetTag", "AssetTag",
1466 std::variant<std::string>(assetTag));
1467 },
1468 "xyz.openbmc_project.ObjectMapper",
1469 "/xyz/openbmc_project/object_mapper",
1470 "xyz.openbmc_project.ObjectMapper", "GetSubTree",
1471 "/xyz/openbmc_project/inventory", int32_t(0),
1472 std::array<const char*, 1>{
1473 "xyz.openbmc_project.Inventory.Item.System"});
1474}
1475
1476/**
Gunnar Mills69f35302020-05-17 16:06:31 -05001477 * @brief Sets automaticRetry (Auto Reboot)
1478 *
1479 * @param[in] aResp Shared pointer for generating response message.
1480 * @param[in] automaticRetryConfig "AutomaticRetryConfig" from request.
1481 *
1482 * @return None.
1483 */
Ed Tanousb5a76932020-09-29 16:16:58 -07001484inline void setAutomaticRetry(const std::shared_ptr<AsyncResp>& aResp,
Ed Tanousf23b7292020-10-15 09:41:17 -07001485 const std::string& automaticRetryConfig)
Gunnar Mills69f35302020-05-17 16:06:31 -05001486{
1487 BMCWEB_LOG_DEBUG << "Set Automatic Retry.";
1488
1489 // OpenBMC only supports "Disabled" and "RetryAttempts".
1490 bool autoRebootEnabled;
1491
1492 if (automaticRetryConfig == "Disabled")
1493 {
1494 autoRebootEnabled = false;
1495 }
1496 else if (automaticRetryConfig == "RetryAttempts")
1497 {
1498 autoRebootEnabled = true;
1499 }
1500 else
1501 {
1502 BMCWEB_LOG_DEBUG << "Invalid property value for "
1503 "AutomaticRetryConfig: "
1504 << automaticRetryConfig;
1505 messages::propertyValueNotInList(aResp->res, automaticRetryConfig,
1506 "AutomaticRetryConfig");
1507 return;
1508 }
1509
1510 crow::connections::systemBus->async_method_call(
1511 [aResp](const boost::system::error_code ec) {
1512 if (ec)
1513 {
1514 messages::internalError(aResp->res);
1515 return;
1516 }
1517 },
1518 "xyz.openbmc_project.Settings",
1519 "/xyz/openbmc_project/control/host0/auto_reboot",
1520 "org.freedesktop.DBus.Properties", "Set",
1521 "xyz.openbmc_project.Control.Boot.RebootPolicy", "AutoReboot",
1522 std::variant<bool>(autoRebootEnabled));
1523}
1524
1525/**
George Liuc6a620f2020-04-10 17:18:11 +08001526 * @brief Sets power restore policy properties.
1527 *
1528 * @param[in] aResp Shared pointer for generating response message.
1529 * @param[in] policy power restore policy properties from request.
1530 *
1531 * @return None.
1532 */
Ed Tanousb5a76932020-09-29 16:16:58 -07001533inline void setPowerRestorePolicy(const std::shared_ptr<AsyncResp>& aResp,
George Liuc6a620f2020-04-10 17:18:11 +08001534 std::optional<std::string> policy)
1535{
1536 BMCWEB_LOG_DEBUG << "Set power restore policy.";
1537
1538 const boost::container::flat_map<std::string, std::string> policyMaps = {
1539 {"AlwaysOn", "xyz.openbmc_project.Control.Power.RestorePolicy.Policy."
1540 "AlwaysOn"},
1541 {"AlwaysOff", "xyz.openbmc_project.Control.Power.RestorePolicy.Policy."
1542 "AlwaysOff"},
1543 {"LastState", "xyz.openbmc_project.Control.Power.RestorePolicy.Policy."
Gunnar Mills37ec9072021-01-05 19:43:44 -06001544 "Restore"}};
George Liuc6a620f2020-04-10 17:18:11 +08001545
1546 std::string powerRestorPolicy;
1547
1548 auto policyMapsIt = policyMaps.find(*policy);
1549 if (policyMapsIt == policyMaps.end())
1550 {
1551 messages::internalError(aResp->res);
1552 return;
1553 }
1554
1555 powerRestorPolicy = policyMapsIt->second;
1556
1557 crow::connections::systemBus->async_method_call(
1558 [aResp](const boost::system::error_code ec) {
1559 if (ec)
1560 {
1561 messages::internalError(aResp->res);
1562 return;
1563 }
1564 },
1565 "xyz.openbmc_project.Settings",
1566 "/xyz/openbmc_project/control/host0/power_restore_policy",
1567 "org.freedesktop.DBus.Properties", "Set",
1568 "xyz.openbmc_project.Control.Power.RestorePolicy", "PowerRestorePolicy",
1569 std::variant<std::string>(powerRestorPolicy));
1570}
1571
AppaRao Pulia6349912019-10-18 17:16:08 +05301572#ifdef BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE
1573/**
1574 * @brief Retrieves provisioning status
1575 *
1576 * @param[in] aResp Shared pointer for completing asynchronous calls.
1577 *
1578 * @return None.
1579 */
Ed Tanous23a21a12020-07-25 04:45:05 +00001580inline void getProvisioningStatus(std::shared_ptr<AsyncResp> aResp)
AppaRao Pulia6349912019-10-18 17:16:08 +05301581{
1582 BMCWEB_LOG_DEBUG << "Get OEM information.";
1583 crow::connections::systemBus->async_method_call(
1584 [aResp](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001585 const std::vector<std::pair<std::string, VariantType>>&
1586 propertiesList) {
AppaRao Pulib99fb1a2020-07-08 16:42:48 +05301587 nlohmann::json& oemPFR =
1588 aResp->res.jsonValue["Oem"]["OpenBmc"]["FirmwareProvisioning"];
James Feist50626f42020-09-23 14:40:47 -07001589 aResp->res.jsonValue["Oem"]["OpenBmc"]["@odata.type"] =
1590 "#OemComputerSystem.OpenBmc";
1591 oemPFR["@odata.type"] = "#OemComputerSystem.FirmwareProvisioning";
1592
AppaRao Pulia6349912019-10-18 17:16:08 +05301593 if (ec)
1594 {
1595 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
AppaRao Pulib99fb1a2020-07-08 16:42:48 +05301596 // not an error, don't have to have the interface
1597 oemPFR["ProvisioningStatus"] = "NotProvisioned";
AppaRao Pulia6349912019-10-18 17:16:08 +05301598 return;
1599 }
1600
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001601 const bool* provState = nullptr;
1602 const bool* lockState = nullptr;
1603 for (const std::pair<std::string, VariantType>& property :
AppaRao Pulia6349912019-10-18 17:16:08 +05301604 propertiesList)
1605 {
1606 if (property.first == "UfmProvisioned")
1607 {
1608 provState = std::get_if<bool>(&property.second);
1609 }
1610 else if (property.first == "UfmLocked")
1611 {
1612 lockState = std::get_if<bool>(&property.second);
1613 }
1614 }
1615
1616 if ((provState == nullptr) || (lockState == nullptr))
1617 {
1618 BMCWEB_LOG_DEBUG << "Unable to get PFR attributes.";
1619 messages::internalError(aResp->res);
1620 return;
1621 }
1622
AppaRao Pulia6349912019-10-18 17:16:08 +05301623 if (*provState == true)
1624 {
1625 if (*lockState == true)
1626 {
1627 oemPFR["ProvisioningStatus"] = "ProvisionedAndLocked";
1628 }
1629 else
1630 {
1631 oemPFR["ProvisioningStatus"] = "ProvisionedButNotLocked";
1632 }
1633 }
1634 else
1635 {
1636 oemPFR["ProvisioningStatus"] = "NotProvisioned";
1637 }
1638 },
1639 "xyz.openbmc_project.PFR.Manager", "/xyz/openbmc_project/pfr",
1640 "org.freedesktop.DBus.Properties", "GetAll",
1641 "xyz.openbmc_project.PFR.Attributes");
1642}
1643#endif
1644
Santosh Puranik491d8ee2019-02-06 19:46:56 +05301645/**
Yong Li51709ff2019-09-30 14:13:04 +08001646 * @brief Translates watchdog timeout action DBUS property value to redfish.
1647 *
1648 * @param[in] dbusAction The watchdog timeout action in D-BUS.
1649 *
1650 * @return Returns as a string, the timeout action in Redfish terms. If
1651 * translation cannot be done, returns an empty string.
1652 */
Ed Tanous23a21a12020-07-25 04:45:05 +00001653inline std::string dbusToRfWatchdogAction(const std::string& dbusAction)
Yong Li51709ff2019-09-30 14:13:04 +08001654{
1655 if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.None")
1656 {
1657 return "None";
1658 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07001659 if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.HardReset")
Yong Li51709ff2019-09-30 14:13:04 +08001660 {
1661 return "ResetSystem";
1662 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07001663 if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.PowerOff")
Yong Li51709ff2019-09-30 14:13:04 +08001664 {
1665 return "PowerDown";
1666 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07001667 if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.PowerCycle")
Yong Li51709ff2019-09-30 14:13:04 +08001668 {
1669 return "PowerCycle";
1670 }
1671
1672 return "";
1673}
1674
1675/**
Yong Lic45f0082019-10-10 14:19:01 +08001676 *@brief Translates timeout action from Redfish to DBUS property value.
1677 *
1678 *@param[in] rfAction The timeout action in Redfish.
1679 *
1680 *@return Returns as a string, the time_out action as expected by DBUS.
1681 *If translation cannot be done, returns an empty string.
1682 */
1683
Ed Tanous23a21a12020-07-25 04:45:05 +00001684inline std::string rfToDbusWDTTimeOutAct(const std::string& rfAction)
Yong Lic45f0082019-10-10 14:19:01 +08001685{
1686 if (rfAction == "None")
1687 {
1688 return "xyz.openbmc_project.State.Watchdog.Action.None";
1689 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07001690 if (rfAction == "PowerCycle")
Yong Lic45f0082019-10-10 14:19:01 +08001691 {
1692 return "xyz.openbmc_project.State.Watchdog.Action.PowerCycle";
1693 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07001694 if (rfAction == "PowerDown")
Yong Lic45f0082019-10-10 14:19:01 +08001695 {
1696 return "xyz.openbmc_project.State.Watchdog.Action.PowerOff";
1697 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07001698 if (rfAction == "ResetSystem")
Yong Lic45f0082019-10-10 14:19:01 +08001699 {
1700 return "xyz.openbmc_project.State.Watchdog.Action.HardReset";
1701 }
1702
1703 return "";
1704}
1705
1706/**
Yong Li51709ff2019-09-30 14:13:04 +08001707 * @brief Retrieves host watchdog timer properties over DBUS
1708 *
1709 * @param[in] aResp Shared pointer for completing asynchronous calls.
1710 *
1711 * @return None.
1712 */
Ed Tanousb5a76932020-09-29 16:16:58 -07001713inline void getHostWatchdogTimer(const std::shared_ptr<AsyncResp>& aResp)
Yong Li51709ff2019-09-30 14:13:04 +08001714{
1715 BMCWEB_LOG_DEBUG << "Get host watchodg";
1716 crow::connections::systemBus->async_method_call(
1717 [aResp](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001718 PropertiesType& properties) {
Yong Li51709ff2019-09-30 14:13:04 +08001719 if (ec)
1720 {
1721 // watchdog service is stopped
1722 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1723 return;
1724 }
1725
1726 BMCWEB_LOG_DEBUG << "Got " << properties.size() << " wdt prop.";
1727
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001728 nlohmann::json& hostWatchdogTimer =
Yong Li51709ff2019-09-30 14:13:04 +08001729 aResp->res.jsonValue["HostWatchdogTimer"];
1730
1731 // watchdog service is running/enabled
1732 hostWatchdogTimer["Status"]["State"] = "Enabled";
1733
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001734 for (const auto& property : properties)
Yong Li51709ff2019-09-30 14:13:04 +08001735 {
1736 BMCWEB_LOG_DEBUG << "prop=" << property.first;
1737 if (property.first == "Enabled")
1738 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001739 const bool* state = std::get_if<bool>(&property.second);
Yong Li51709ff2019-09-30 14:13:04 +08001740
1741 if (!state)
1742 {
1743 messages::internalError(aResp->res);
1744 continue;
1745 }
1746
1747 hostWatchdogTimer["FunctionEnabled"] = *state;
1748 }
1749 else if (property.first == "ExpireAction")
1750 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001751 const std::string* s =
Yong Li51709ff2019-09-30 14:13:04 +08001752 std::get_if<std::string>(&property.second);
1753 if (!s)
1754 {
1755 messages::internalError(aResp->res);
1756 continue;
1757 }
1758
1759 std::string action = dbusToRfWatchdogAction(*s);
1760 if (action.empty())
1761 {
1762 messages::internalError(aResp->res);
1763 continue;
1764 }
1765 hostWatchdogTimer["TimeoutAction"] = action;
1766 }
1767 }
1768 },
1769 "xyz.openbmc_project.Watchdog", "/xyz/openbmc_project/watchdog/host0",
1770 "org.freedesktop.DBus.Properties", "GetAll",
1771 "xyz.openbmc_project.State.Watchdog");
1772}
1773
1774/**
Yong Lic45f0082019-10-10 14:19:01 +08001775 * @brief Sets Host WatchDog Timer properties.
1776 *
1777 * @param[in] aResp Shared pointer for generating response message.
1778 * @param[in] wdtEnable The WDTimer Enable value (true/false) from incoming
1779 * RF request.
1780 * @param[in] wdtTimeOutAction The WDT Timeout action, from incoming RF request.
1781 *
1782 * @return None.
1783 */
Ed Tanousb5a76932020-09-29 16:16:58 -07001784inline void setWDTProperties(const std::shared_ptr<AsyncResp>& aResp,
Yong Lic45f0082019-10-10 14:19:01 +08001785 const std::optional<bool> wdtEnable,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001786 const std::optional<std::string>& wdtTimeOutAction)
Yong Lic45f0082019-10-10 14:19:01 +08001787{
1788 BMCWEB_LOG_DEBUG << "Set host watchdog";
1789
1790 if (wdtTimeOutAction)
1791 {
1792 std::string wdtTimeOutActStr = rfToDbusWDTTimeOutAct(*wdtTimeOutAction);
1793 // check if TimeOut Action is Valid
1794 if (wdtTimeOutActStr.empty())
1795 {
1796 BMCWEB_LOG_DEBUG << "Unsupported value for TimeoutAction: "
1797 << *wdtTimeOutAction;
1798 messages::propertyValueNotInList(aResp->res, *wdtTimeOutAction,
1799 "TimeoutAction");
1800 return;
1801 }
1802
1803 crow::connections::systemBus->async_method_call(
1804 [aResp](const boost::system::error_code ec) {
1805 if (ec)
1806 {
1807 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1808 messages::internalError(aResp->res);
1809 return;
1810 }
1811 },
1812 "xyz.openbmc_project.Watchdog",
1813 "/xyz/openbmc_project/watchdog/host0",
1814 "org.freedesktop.DBus.Properties", "Set",
1815 "xyz.openbmc_project.State.Watchdog", "ExpireAction",
1816 std::variant<std::string>(wdtTimeOutActStr));
1817 }
1818
1819 if (wdtEnable)
1820 {
1821 crow::connections::systemBus->async_method_call(
1822 [aResp](const boost::system::error_code ec) {
1823 if (ec)
1824 {
1825 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1826 messages::internalError(aResp->res);
1827 return;
1828 }
1829 },
1830 "xyz.openbmc_project.Watchdog",
1831 "/xyz/openbmc_project/watchdog/host0",
1832 "org.freedesktop.DBus.Properties", "Set",
1833 "xyz.openbmc_project.State.Watchdog", "Enabled",
1834 std::variant<bool>(*wdtEnable));
1835 }
1836}
1837
1838/**
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02001839 * SystemsCollection derived class for delivering ComputerSystems Collection
1840 * Schema
1841 */
Ed Tanous1abe55e2018-09-05 08:30:59 -07001842class SystemsCollection : public Node
1843{
1844 public:
Ed Tanous52cc1122020-07-18 13:51:21 -07001845 SystemsCollection(App& app) : Node(app, "/redfish/v1/Systems/")
Ed Tanous1abe55e2018-09-05 08:30:59 -07001846 {
Ed Tanous1abe55e2018-09-05 08:30:59 -07001847 entityPrivileges = {
1848 {boost::beast::http::verb::get, {{"Login"}}},
1849 {boost::beast::http::verb::head, {{"Login"}}},
1850 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
1851 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
1852 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
1853 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
1854 }
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02001855
Ed Tanous1abe55e2018-09-05 08:30:59 -07001856 private:
Ed Tanouscb13a392020-07-25 19:02:03 +00001857 void doGet(crow::Response& res, const crow::Request&,
1858 const std::vector<std::string>&) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07001859 {
Sunitha Harish462023a2020-02-19 08:34:59 -06001860 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous0f74e642018-11-12 15:17:05 -08001861 res.jsonValue["@odata.type"] =
1862 "#ComputerSystemCollection.ComputerSystemCollection";
1863 res.jsonValue["@odata.id"] = "/redfish/v1/Systems";
Ed Tanous0f74e642018-11-12 15:17:05 -08001864 res.jsonValue["Name"] = "Computer System Collection";
Sunitha Harish462023a2020-02-19 08:34:59 -06001865
1866 crow::connections::systemBus->async_method_call(
1867 [asyncResp](const boost::system::error_code ec,
Ed Tanouscb13a392020-07-25 19:02:03 +00001868 const std::variant<std::string>& /*hostName*/) {
Ed Tanous2c70f802020-09-28 14:29:23 -07001869 nlohmann::json& ifaceArray =
Sunitha Harish462023a2020-02-19 08:34:59 -06001870 asyncResp->res.jsonValue["Members"];
Ed Tanous2c70f802020-09-28 14:29:23 -07001871 ifaceArray = nlohmann::json::array();
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001872 auto& count = asyncResp->res.jsonValue["Members@odata.count"];
Ed Tanous2c70f802020-09-28 14:29:23 -07001873 ifaceArray.push_back(
Ed Tanouscb13a392020-07-25 19:02:03 +00001874 {{"@odata.id", "/redfish/v1/Systems/system"}});
Tim Lee94bda602020-11-19 14:14:27 +08001875 count = ifaceArray.size();
Ed Tanouscb13a392020-07-25 19:02:03 +00001876 if (!ec)
Sunitha Harish462023a2020-02-19 08:34:59 -06001877 {
Ed Tanouscb13a392020-07-25 19:02:03 +00001878 BMCWEB_LOG_DEBUG << "Hypervisor is available";
Ed Tanous2c70f802020-09-28 14:29:23 -07001879 ifaceArray.push_back(
Ed Tanouscb13a392020-07-25 19:02:03 +00001880 {{"@odata.id", "/redfish/v1/Systems/hypervisor"}});
Ed Tanous2c70f802020-09-28 14:29:23 -07001881 count = ifaceArray.size();
Sunitha Harish462023a2020-02-19 08:34:59 -06001882 return;
1883 }
Sunitha Harish462023a2020-02-19 08:34:59 -06001884 },
Sunitha Harish8e651fb2020-06-17 06:06:25 -05001885 "xyz.openbmc_project.Settings",
1886 "/xyz/openbmc_project/network/hypervisor",
Sunitha Harish462023a2020-02-19 08:34:59 -06001887 "org.freedesktop.DBus.Properties", "Get",
1888 "xyz.openbmc_project.Network.SystemConfiguration", "HostName");
Ed Tanous1abe55e2018-09-05 08:30:59 -07001889 }
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02001890};
1891
1892/**
Ed Tanouscc340dd2018-08-29 13:43:38 -07001893 * SystemActionsReset class supports handle POST method for Reset action.
1894 * The class retrieves and sends data directly to D-Bus.
1895 */
1896class SystemActionsReset : public Node
1897{
1898 public:
Ed Tanous52cc1122020-07-18 13:51:21 -07001899 SystemActionsReset(App& app) :
Ed Tanous029573d2019-02-01 10:57:49 -08001900 Node(app, "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset/")
Ed Tanouscc340dd2018-08-29 13:43:38 -07001901 {
1902 entityPrivileges = {
1903 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
1904 }
1905
1906 private:
1907 /**
1908 * Function handles POST method request.
1909 * Analyzes POST body message before sends Reset request data to D-Bus.
1910 */
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001911 void doPost(crow::Response& res, const crow::Request& req,
Ed Tanouscb13a392020-07-25 19:02:03 +00001912 const std::vector<std::string>&) override
Ed Tanouscc340dd2018-08-29 13:43:38 -07001913 {
Ed Tanous9712f8a2018-09-21 13:38:49 -07001914 auto asyncResp = std::make_shared<AsyncResp>(res);
1915
1916 std::string resetType;
1917 if (!json_util::readJson(req, res, "ResetType", resetType))
Ed Tanouscc340dd2018-08-29 13:43:38 -07001918 {
1919 return;
1920 }
1921
Jason M. Billsd22c8392019-06-03 13:59:03 -07001922 // Get the command and host vs. chassis
Ed Tanous9712f8a2018-09-21 13:38:49 -07001923 std::string command;
Jason M. Billsd22c8392019-06-03 13:59:03 -07001924 bool hostCommand;
Ed Tanousd4d25792020-09-29 15:15:03 -07001925 if ((resetType == "On") || (resetType == "ForceOn"))
Ed Tanous9712f8a2018-09-21 13:38:49 -07001926 {
1927 command = "xyz.openbmc_project.State.Host.Transition.On";
Jason M. Billsd22c8392019-06-03 13:59:03 -07001928 hostCommand = true;
1929 }
1930 else if (resetType == "ForceOff")
1931 {
1932 command = "xyz.openbmc_project.State.Chassis.Transition.Off";
1933 hostCommand = false;
1934 }
Jason M. Billsd22c8392019-06-03 13:59:03 -07001935 else if (resetType == "ForceRestart")
1936 {
Jason M. Bills86a08512020-02-04 13:15:49 -08001937 command =
1938 "xyz.openbmc_project.State.Host.Transition.ForceWarmReboot";
1939 hostCommand = true;
Ed Tanous9712f8a2018-09-21 13:38:49 -07001940 }
1941 else if (resetType == "GracefulShutdown")
1942 {
1943 command = "xyz.openbmc_project.State.Host.Transition.Off";
Jason M. Billsd22c8392019-06-03 13:59:03 -07001944 hostCommand = true;
Ed Tanous9712f8a2018-09-21 13:38:49 -07001945 }
1946 else if (resetType == "GracefulRestart")
1947 {
Jason M. Bills86a08512020-02-04 13:15:49 -08001948 command =
1949 "xyz.openbmc_project.State.Host.Transition.GracefulWarmReboot";
Jason M. Billsd22c8392019-06-03 13:59:03 -07001950 hostCommand = true;
1951 }
1952 else if (resetType == "PowerCycle")
1953 {
Jason M. Bills86a08512020-02-04 13:15:49 -08001954 command = "xyz.openbmc_project.State.Host.Transition.Reboot";
1955 hostCommand = true;
Ed Tanous9712f8a2018-09-21 13:38:49 -07001956 }
Lakshminarayana R. Kammathbfd5b822019-06-17 12:11:01 -05001957 else if (resetType == "Nmi")
1958 {
1959 doNMI(asyncResp);
1960 return;
1961 }
Ed Tanous9712f8a2018-09-21 13:38:49 -07001962 else
1963 {
Jason M. Billsf12894f2018-10-09 12:45:45 -07001964 messages::actionParameterUnknown(res, "Reset", resetType);
Ed Tanous9712f8a2018-09-21 13:38:49 -07001965 return;
1966 }
1967
Jason M. Billsd22c8392019-06-03 13:59:03 -07001968 if (hostCommand)
1969 {
1970 crow::connections::systemBus->async_method_call(
1971 [asyncResp, resetType](const boost::system::error_code ec) {
1972 if (ec)
1973 {
1974 BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec;
1975 if (ec.value() == boost::asio::error::invalid_argument)
1976 {
1977 messages::actionParameterNotSupported(
1978 asyncResp->res, resetType, "Reset");
1979 }
1980 else
1981 {
1982 messages::internalError(asyncResp->res);
1983 }
1984 return;
1985 }
1986 messages::success(asyncResp->res);
1987 },
1988 "xyz.openbmc_project.State.Host",
1989 "/xyz/openbmc_project/state/host0",
1990 "org.freedesktop.DBus.Properties", "Set",
1991 "xyz.openbmc_project.State.Host", "RequestedHostTransition",
1992 std::variant<std::string>{command});
1993 }
1994 else
1995 {
1996 crow::connections::systemBus->async_method_call(
1997 [asyncResp, resetType](const boost::system::error_code ec) {
1998 if (ec)
1999 {
2000 BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec;
2001 if (ec.value() == boost::asio::error::invalid_argument)
2002 {
2003 messages::actionParameterNotSupported(
2004 asyncResp->res, resetType, "Reset");
2005 }
2006 else
2007 {
2008 messages::internalError(asyncResp->res);
2009 }
2010 return;
2011 }
2012 messages::success(asyncResp->res);
2013 },
2014 "xyz.openbmc_project.State.Chassis",
2015 "/xyz/openbmc_project/state/chassis0",
2016 "org.freedesktop.DBus.Properties", "Set",
2017 "xyz.openbmc_project.State.Chassis", "RequestedPowerTransition",
2018 std::variant<std::string>{command});
2019 }
Ed Tanouscc340dd2018-08-29 13:43:38 -07002020 }
Lakshminarayana R. Kammathbfd5b822019-06-17 12:11:01 -05002021 /**
2022 * Function transceives data with dbus directly.
2023 */
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002024 void doNMI(const std::shared_ptr<AsyncResp>& asyncResp)
Lakshminarayana R. Kammathbfd5b822019-06-17 12:11:01 -05002025 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002026 constexpr char const* serviceName =
Lakshminarayana R. Kammathbfd5b822019-06-17 12:11:01 -05002027 "xyz.openbmc_project.Control.Host.NMI";
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002028 constexpr char const* objectPath =
Lakshminarayana R. Kammathbfd5b822019-06-17 12:11:01 -05002029 "/xyz/openbmc_project/control/host0/nmi";
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002030 constexpr char const* interfaceName =
Lakshminarayana R. Kammathbfd5b822019-06-17 12:11:01 -05002031 "xyz.openbmc_project.Control.Host.NMI";
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002032 constexpr char const* method = "NMI";
Lakshminarayana R. Kammathbfd5b822019-06-17 12:11:01 -05002033
2034 crow::connections::systemBus->async_method_call(
2035 [asyncResp](const boost::system::error_code ec) {
2036 if (ec)
2037 {
2038 BMCWEB_LOG_ERROR << " Bad D-Bus request error: " << ec;
2039 messages::internalError(asyncResp->res);
2040 return;
2041 }
2042 messages::success(asyncResp->res);
2043 },
2044 serviceName, objectPath, interfaceName, method);
2045 }
Ed Tanouscc340dd2018-08-29 13:43:38 -07002046};
2047
2048/**
Ed Tanous66173382018-08-15 18:20:59 -07002049 * Systems derived class for delivering Computer Systems Schema.
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02002050 */
Ed Tanous1abe55e2018-09-05 08:30:59 -07002051class Systems : public Node
2052{
2053 public:
2054 /*
2055 * Default Constructor
2056 */
Ed Tanous52cc1122020-07-18 13:51:21 -07002057 Systems(App& app) : Node(app, "/redfish/v1/Systems/system/")
Ed Tanous1abe55e2018-09-05 08:30:59 -07002058 {
Ed Tanous1abe55e2018-09-05 08:30:59 -07002059 entityPrivileges = {
2060 {boost::beast::http::verb::get, {{"Login"}}},
2061 {boost::beast::http::verb::head, {{"Login"}}},
2062 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
2063 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
2064 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
2065 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02002066 }
2067
Ed Tanous1abe55e2018-09-05 08:30:59 -07002068 private:
Ed Tanous1abe55e2018-09-05 08:30:59 -07002069 /**
2070 * Functions triggers appropriate requests on DBus
2071 */
Ed Tanouscb13a392020-07-25 19:02:03 +00002072 void doGet(crow::Response& res, const crow::Request&,
2073 const std::vector<std::string>&) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07002074 {
Gunnar Mills9f8bfa72020-09-28 13:45:19 -05002075 res.jsonValue["@odata.type"] = "#ComputerSystem.v1_13_0.ComputerSystem";
Gunnar Mills450a25c2020-04-14 21:34:07 -05002076 res.jsonValue["Name"] = "system";
Ed Tanous029573d2019-02-01 10:57:49 -08002077 res.jsonValue["Id"] = "system";
Ed Tanous0f74e642018-11-12 15:17:05 -08002078 res.jsonValue["SystemType"] = "Physical";
2079 res.jsonValue["Description"] = "Computer System";
Ed Tanous0f74e642018-11-12 15:17:05 -08002080 res.jsonValue["ProcessorSummary"]["Count"] = 0;
2081 res.jsonValue["ProcessorSummary"]["Status"]["State"] = "Disabled";
Cheng C Yang5fd7ba62019-11-28 15:58:08 +08002082 res.jsonValue["MemorySummary"]["TotalSystemMemoryGiB"] = uint64_t(0);
Ed Tanous0f74e642018-11-12 15:17:05 -08002083 res.jsonValue["MemorySummary"]["Status"]["State"] = "Disabled";
Ed Tanous029573d2019-02-01 10:57:49 -08002084 res.jsonValue["@odata.id"] = "/redfish/v1/Systems/system";
Ed Tanous04a258f2018-10-15 08:00:41 -07002085
Rapkiewicz, Pawel443c2932018-10-22 15:08:49 +02002086 res.jsonValue["Processors"] = {
Ed Tanous029573d2019-02-01 10:57:49 -08002087 {"@odata.id", "/redfish/v1/Systems/system/Processors"}};
Rapkiewicz, Pawel443c2932018-10-22 15:08:49 +02002088 res.jsonValue["Memory"] = {
Ed Tanous029573d2019-02-01 10:57:49 -08002089 {"@odata.id", "/redfish/v1/Systems/system/Memory"}};
Nikhil Potadea25aecc2019-08-23 16:35:26 -07002090 res.jsonValue["Storage"] = {
2091 {"@odata.id", "/redfish/v1/Systems/system/Storage"}};
Ed Tanous029573d2019-02-01 10:57:49 -08002092
Ed Tanouscc340dd2018-08-29 13:43:38 -07002093 res.jsonValue["Actions"]["#ComputerSystem.Reset"] = {
2094 {"target",
Ed Tanous029573d2019-02-01 10:57:49 -08002095 "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset"},
AppaRao Puli1cb1a9e2020-07-17 23:38:57 +05302096 {"@Redfish.ActionInfo",
2097 "/redfish/v1/Systems/system/ResetActionInfo"}};
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02002098
Jason M. Billsc4bf6372018-11-05 13:48:27 -08002099 res.jsonValue["LogServices"] = {
Ed Tanous029573d2019-02-01 10:57:49 -08002100 {"@odata.id", "/redfish/v1/Systems/system/LogServices"}};
Jason M. Billsc4bf6372018-11-05 13:48:27 -08002101
Carol Wangd82a3ac2019-11-21 13:56:38 +08002102 res.jsonValue["Bios"] = {
2103 {"@odata.id", "/redfish/v1/Systems/system/Bios"}};
2104
Jennifer Leec5d03ff2019-03-08 15:42:58 -08002105 res.jsonValue["Links"]["ManagedBy"] = {
2106 {{"@odata.id", "/redfish/v1/Managers/bmc"}}};
2107
2108 res.jsonValue["Status"] = {
2109 {"Health", "OK"},
2110 {"State", "Enabled"},
2111 };
Ed Tanousa0803ef2018-08-29 13:29:23 -07002112 auto asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002113
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002114 constexpr const std::array<const char*, 4> inventoryForSystems = {
James Feistb49ac872019-05-21 15:12:01 -07002115 "xyz.openbmc_project.Inventory.Item.Dimm",
James Feist2ad9c2f2019-10-29 16:26:48 -07002116 "xyz.openbmc_project.Inventory.Item.Cpu",
James Feiste284a7c2019-11-20 16:20:23 -08002117 "xyz.openbmc_project.Inventory.Item.Drive",
2118 "xyz.openbmc_project.Inventory.Item.StorageController"};
James Feistb49ac872019-05-21 15:12:01 -07002119
2120 auto health = std::make_shared<HealthPopulate>(asyncResp);
2121 crow::connections::systemBus->async_method_call(
2122 [health](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002123 std::vector<std::string>& resp) {
James Feistb49ac872019-05-21 15:12:01 -07002124 if (ec)
2125 {
2126 // no inventory
2127 return;
2128 }
2129
2130 health->inventory = std::move(resp);
2131 },
2132 "xyz.openbmc_project.ObjectMapper",
2133 "/xyz/openbmc_project/object_mapper",
2134 "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths", "/",
2135 int32_t(0), inventoryForSystems);
2136
2137 health->populate();
2138
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002139 getMainChassisId(asyncResp, [](const std::string& chassisId,
Ed Tanousb5a76932020-09-29 16:16:58 -07002140 const std::shared_ptr<AsyncResp>& aRsp) {
Jennifer Leec5d03ff2019-03-08 15:42:58 -08002141 aRsp->res.jsonValue["Links"]["Chassis"] = {
2142 {{"@odata.id", "/redfish/v1/Chassis/" + chassisId}}};
2143 });
AppaRao Pulia3002222019-11-12 21:32:59 +05302144
Gunnar Mills9f8bfa72020-09-28 13:45:19 -05002145 getLocationIndicatorActive(asyncResp);
2146 // TODO (Gunnar): Remove IndicatorLED after enough time has passed
AppaRao Pulia3002222019-11-12 21:32:59 +05302147 getIndicatorLedState(asyncResp);
James Feist5bc2dc82019-10-22 14:33:16 -07002148 getComputerSystem(asyncResp, health);
Ed Tanous6c34de42018-08-29 13:37:36 -07002149 getHostState(asyncResp);
Santosh Puranik491d8ee2019-02-06 19:46:56 +05302150 getBootProperties(asyncResp);
Andrew Geissler978b8802020-11-19 13:36:40 -06002151 getBootProgress(asyncResp);
Jason M. Billsadbe1922019-10-14 15:44:35 -07002152 getPCIeDeviceList(asyncResp, "PCIeDevices");
Yong Li51709ff2019-09-30 14:13:04 +08002153 getHostWatchdogTimer(asyncResp);
George Liuc6a620f2020-04-10 17:18:11 +08002154 getPowerRestorePolicy(asyncResp);
Gunnar Mills6bd5a8d2020-05-16 18:49:33 -05002155 getAutomaticRetry(asyncResp);
Gunnar Millsc0557e12020-06-30 11:26:20 -05002156 getLastResetTime(asyncResp);
AppaRao Pulia6349912019-10-18 17:16:08 +05302157#ifdef BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE
2158 getProvisioningStatus(asyncResp);
2159#endif
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02002160 }
2161
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002162 void doPatch(crow::Response& res, const crow::Request& req,
Ed Tanouscb13a392020-07-25 19:02:03 +00002163 const std::vector<std::string>&) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07002164 {
Gunnar Mills9f8bfa72020-09-28 13:45:19 -05002165 std::optional<bool> locationIndicatorActive;
Santosh Puranikcde19e52019-02-20 00:10:56 +05302166 std::optional<std::string> indicatorLed;
Santosh Puranik491d8ee2019-02-06 19:46:56 +05302167 std::optional<nlohmann::json> bootProps;
Yong Lic45f0082019-10-10 14:19:01 +08002168 std::optional<nlohmann::json> wdtTimerProps;
Gunnar Mills98e386e2020-10-30 14:58:09 -05002169 std::optional<std::string> assetTag;
George Liuc6a620f2020-04-10 17:18:11 +08002170 std::optional<std::string> powerRestorePolicy;
Santosh Puranik41352c22019-07-03 05:35:49 -05002171 auto asyncResp = std::make_shared<AsyncResp>(res);
2172
Gunnar Mills9f8bfa72020-09-28 13:45:19 -05002173 if (!json_util::readJson(
2174 req, res, "IndicatorLED", indicatorLed,
2175 "LocationIndicatorActive", locationIndicatorActive, "Boot",
2176 bootProps, "WatchdogTimer", wdtTimerProps, "PowerRestorePolicy",
2177 powerRestorePolicy, "AssetTag", assetTag))
Ed Tanous66173382018-08-15 18:20:59 -07002178 {
Ed Tanous9712f8a2018-09-21 13:38:49 -07002179 return;
2180 }
Santosh Puranik491d8ee2019-02-06 19:46:56 +05302181
Johnathan Mantey944ffaf2019-08-12 16:16:14 -07002182 res.result(boost::beast::http::status::no_content);
Yong Lic45f0082019-10-10 14:19:01 +08002183
Gunnar Mills98e386e2020-10-30 14:58:09 -05002184 if (assetTag)
2185 {
2186 setAssetTag(asyncResp, *assetTag);
2187 }
2188
Yong Lic45f0082019-10-10 14:19:01 +08002189 if (wdtTimerProps)
2190 {
2191 std::optional<bool> wdtEnable;
2192 std::optional<std::string> wdtTimeOutAction;
2193
2194 if (!json_util::readJson(*wdtTimerProps, asyncResp->res,
2195 "FunctionEnabled", wdtEnable,
2196 "TimeoutAction", wdtTimeOutAction))
2197 {
2198 return;
2199 }
Ed Tanousf23b7292020-10-15 09:41:17 -07002200 setWDTProperties(asyncResp, wdtEnable, wdtTimeOutAction);
Yong Lic45f0082019-10-10 14:19:01 +08002201 }
2202
Santosh Puranik491d8ee2019-02-06 19:46:56 +05302203 if (bootProps)
2204 {
2205 std::optional<std::string> bootSource;
2206 std::optional<std::string> bootEnable;
Gunnar Mills69f35302020-05-17 16:06:31 -05002207 std::optional<std::string> automaticRetryConfig;
Santosh Puranik491d8ee2019-02-06 19:46:56 +05302208
Gunnar Mills69f35302020-05-17 16:06:31 -05002209 if (!json_util::readJson(
2210 *bootProps, asyncResp->res, "BootSourceOverrideTarget",
2211 bootSource, "BootSourceOverrideEnabled", bootEnable,
2212 "AutomaticRetryConfig", automaticRetryConfig))
Santosh Puranik491d8ee2019-02-06 19:46:56 +05302213 {
2214 return;
2215 }
Gunnar Mills69f35302020-05-17 16:06:31 -05002216 if (bootSource || bootEnable)
2217 {
2218 setBootSourceProperties(asyncResp, std::move(bootSource),
2219 std::move(bootEnable));
2220 }
2221 if (automaticRetryConfig)
2222 {
Ed Tanousf23b7292020-10-15 09:41:17 -07002223 setAutomaticRetry(asyncResp, *automaticRetryConfig);
Gunnar Mills69f35302020-05-17 16:06:31 -05002224 }
Santosh Puranik491d8ee2019-02-06 19:46:56 +05302225 }
Johnathan Mantey265c1602019-08-08 11:02:51 -07002226
Gunnar Mills9f8bfa72020-09-28 13:45:19 -05002227 if (locationIndicatorActive)
2228 {
2229 setLocationIndicatorActive(asyncResp, *locationIndicatorActive);
2230 }
2231
2232 // TODO (Gunnar): Remove IndicatorLED after enough time has passed
Ed Tanous9712f8a2018-09-21 13:38:49 -07002233 if (indicatorLed)
2234 {
Ed Tanousf23b7292020-10-15 09:41:17 -07002235 setIndicatorLedState(asyncResp, *indicatorLed);
Gunnar Millsd6aa0092020-11-25 14:17:37 -06002236 res.addHeader(boost::beast::http::field::warning,
2237 "299 - \"IndicatorLED is deprecated. Use "
2238 "LocationIndicatorActive instead.\"");
Ed Tanous1abe55e2018-09-05 08:30:59 -07002239 }
George Liuc6a620f2020-04-10 17:18:11 +08002240
2241 if (powerRestorePolicy)
2242 {
2243 setPowerRestorePolicy(asyncResp, std::move(*powerRestorePolicy));
2244 }
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02002245 }
Lewanczyk, Dawidc5b2abe2018-05-30 16:59:42 +02002246};
AppaRao Puli1cb1a9e2020-07-17 23:38:57 +05302247
2248/**
2249 * SystemResetActionInfo derived class for delivering Computer Systems
2250 * ResetType AllowableValues using ResetInfo schema.
2251 */
2252class SystemResetActionInfo : public Node
2253{
2254 public:
2255 /*
2256 * Default Constructor
2257 */
Ed Tanous52cc1122020-07-18 13:51:21 -07002258 SystemResetActionInfo(App& app) :
AppaRao Puli1cb1a9e2020-07-17 23:38:57 +05302259 Node(app, "/redfish/v1/Systems/system/ResetActionInfo/")
2260 {
2261 entityPrivileges = {
2262 {boost::beast::http::verb::get, {{"Login"}}},
2263 {boost::beast::http::verb::head, {{"Login"}}},
2264 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
2265 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
2266 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
2267 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
2268 }
2269
2270 private:
2271 /**
2272 * Functions triggers appropriate requests on DBus
2273 */
Ed Tanouscb13a392020-07-25 19:02:03 +00002274 void doGet(crow::Response& res, const crow::Request&,
2275 const std::vector<std::string>&) override
AppaRao Puli1cb1a9e2020-07-17 23:38:57 +05302276 {
2277 res.jsonValue = {
2278 {"@odata.type", "#ActionInfo.v1_1_2.ActionInfo"},
2279 {"@odata.id", "/redfish/v1/Systems/system/ResetActionInfo"},
2280 {"Name", "Reset Action Info"},
2281 {"Id", "ResetActionInfo"},
2282 {"Parameters",
2283 {{{"Name", "ResetType"},
2284 {"Required", true},
2285 {"DataType", "String"},
2286 {"AllowableValues",
2287 {"On", "ForceOff", "ForceOn", "ForceRestart", "GracefulRestart",
2288 "GracefulShutdown", "PowerCycle", "Nmi"}}}}}};
2289 res.end();
2290 }
2291};
Ed Tanous1abe55e2018-09-05 08:30:59 -07002292} // namespace redfish