xref: /openbmc/bmcweb/features/redfish/lib/systems.hpp (revision 5c3e927283e32e1633ccd409f34ee17fab626ca1)
1c5b2abe0SLewanczyk, Dawid /*
2c5b2abe0SLewanczyk, Dawid // Copyright (c) 2018 Intel Corporation
3c5b2abe0SLewanczyk, Dawid //
4c5b2abe0SLewanczyk, Dawid // Licensed under the Apache License, Version 2.0 (the "License");
5c5b2abe0SLewanczyk, Dawid // you may not use this file except in compliance with the License.
6c5b2abe0SLewanczyk, Dawid // You may obtain a copy of the License at
7c5b2abe0SLewanczyk, Dawid //
8c5b2abe0SLewanczyk, Dawid //      http://www.apache.org/licenses/LICENSE-2.0
9c5b2abe0SLewanczyk, Dawid //
10c5b2abe0SLewanczyk, Dawid // Unless required by applicable law or agreed to in writing, software
11c5b2abe0SLewanczyk, Dawid // distributed under the License is distributed on an "AS IS" BASIS,
12c5b2abe0SLewanczyk, Dawid // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13c5b2abe0SLewanczyk, Dawid // See the License for the specific language governing permissions and
14c5b2abe0SLewanczyk, Dawid // limitations under the License.
15c5b2abe0SLewanczyk, Dawid */
16c5b2abe0SLewanczyk, Dawid #pragma once
17c5b2abe0SLewanczyk, Dawid 
183ccb3adbSEd Tanous #include "app.hpp"
191e1e598dSJonathan Doman #include "dbus_singleton.hpp"
207a1dbc48SGeorge Liu #include "dbus_utility.hpp"
21b49ac873SJames Feist #include "health.hpp"
221c8fba97SJames Feist #include "led.hpp"
23f5c9f8bdSJason M. Bills #include "pcie.hpp"
24f4c99e70SEd Tanous #include "query.hpp"
25c5d03ff4SJennifer Lee #include "redfish_util.hpp"
263ccb3adbSEd Tanous #include "registries/privilege_registry.hpp"
273ccb3adbSEd Tanous #include "utils/dbus_utils.hpp"
283ccb3adbSEd Tanous #include "utils/json_utils.hpp"
293ccb3adbSEd Tanous #include "utils/sw_utils.hpp"
302b82937eSEd Tanous #include "utils/time_utils.hpp"
31c5d03ff4SJennifer Lee 
329712f8acSEd Tanous #include <boost/container/flat_map.hpp>
33e99073f5SGeorge Liu #include <boost/system/error_code.hpp>
341e1e598dSJonathan Doman #include <sdbusplus/asio/property.hpp>
35bc1d29deSKrzysztof Grobelny #include <sdbusplus/unpack_properties.hpp>
361214b7e7SGunnar Mills 
377a1dbc48SGeorge Liu #include <array>
387a1dbc48SGeorge Liu #include <string_view>
39abf2add6SEd Tanous #include <variant>
40c5b2abe0SLewanczyk, Dawid 
411abe55efSEd Tanous namespace redfish
421abe55efSEd Tanous {
43c5b2abe0SLewanczyk, Dawid 
44*5c3e9272SAbhishek Patel const static std::array<std::pair<std::string_view, std::string_view>, 2>
45*5c3e9272SAbhishek Patel     protocolToDBusForSystems{
46*5c3e9272SAbhishek Patel         {{"SSH", "obmc-console-ssh"}, {"IPMI", "phosphor-ipmi-net"}}};
47*5c3e9272SAbhishek Patel 
489d3ae10eSAlpana Kumari /**
499d3ae10eSAlpana Kumari  * @brief Updates the Functional State of DIMMs
509d3ae10eSAlpana Kumari  *
519d3ae10eSAlpana Kumari  * @param[in] aResp Shared pointer for completing asynchronous calls
529d3ae10eSAlpana Kumari  * @param[in] dimmState Dimm's Functional state, true/false
539d3ae10eSAlpana Kumari  *
549d3ae10eSAlpana Kumari  * @return None.
559d3ae10eSAlpana Kumari  */
568d1b46d7Szhanghch05 inline void
578d1b46d7Szhanghch05     updateDimmProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
581e1e598dSJonathan Doman                          bool isDimmFunctional)
599d3ae10eSAlpana Kumari {
601e1e598dSJonathan Doman     BMCWEB_LOG_DEBUG << "Dimm Functional: " << isDimmFunctional;
619d3ae10eSAlpana Kumari 
629d3ae10eSAlpana Kumari     // Set it as Enabled if at least one DIMM is functional
639d3ae10eSAlpana Kumari     // Update STATE only if previous State was DISABLED and current Dimm is
649d3ae10eSAlpana Kumari     // ENABLED.
6502cad96eSEd Tanous     const nlohmann::json& prevMemSummary =
669d3ae10eSAlpana Kumari         aResp->res.jsonValue["MemorySummary"]["Status"]["State"];
679d3ae10eSAlpana Kumari     if (prevMemSummary == "Disabled")
689d3ae10eSAlpana Kumari     {
69e05aec50SEd Tanous         if (isDimmFunctional)
709d3ae10eSAlpana Kumari         {
719d3ae10eSAlpana Kumari             aResp->res.jsonValue["MemorySummary"]["Status"]["State"] =
729d3ae10eSAlpana Kumari                 "Enabled";
739d3ae10eSAlpana Kumari         }
749d3ae10eSAlpana Kumari     }
759d3ae10eSAlpana Kumari }
769d3ae10eSAlpana Kumari 
7757e8c9beSAlpana Kumari /*
7857e8c9beSAlpana Kumari  * @brief Update "ProcessorSummary" "Count" based on Cpu PresenceState
7957e8c9beSAlpana Kumari  *
8057e8c9beSAlpana Kumari  * @param[in] aResp Shared pointer for completing asynchronous calls
8157e8c9beSAlpana Kumari  * @param[in] cpuPresenceState CPU present or not
8257e8c9beSAlpana Kumari  *
8357e8c9beSAlpana Kumari  * @return None.
8457e8c9beSAlpana Kumari  */
851e1e598dSJonathan Doman inline void
861e1e598dSJonathan Doman     modifyCpuPresenceState(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
871e1e598dSJonathan Doman                            bool isCpuPresent)
8857e8c9beSAlpana Kumari {
891e1e598dSJonathan Doman     BMCWEB_LOG_DEBUG << "Cpu Present: " << isCpuPresent;
9057e8c9beSAlpana Kumari 
9155f79e6fSEd Tanous     if (isCpuPresent)
9257e8c9beSAlpana Kumari     {
93b4b9595aSJames Feist         nlohmann::json& procCount =
94b4b9595aSJames Feist             aResp->res.jsonValue["ProcessorSummary"]["Count"];
9555f79e6fSEd Tanous         auto* procCountPtr =
96b4b9595aSJames Feist             procCount.get_ptr<nlohmann::json::number_integer_t*>();
97b4b9595aSJames Feist         if (procCountPtr != nullptr)
98b4b9595aSJames Feist         {
99b4b9595aSJames Feist             // shouldn't be possible to be nullptr
100b4b9595aSJames Feist             *procCountPtr += 1;
10157e8c9beSAlpana Kumari         }
102b4b9595aSJames Feist     }
10357e8c9beSAlpana Kumari }
10457e8c9beSAlpana Kumari 
10557e8c9beSAlpana Kumari /*
10657e8c9beSAlpana Kumari  * @brief Update "ProcessorSummary" "Status" "State" based on
10757e8c9beSAlpana Kumari  *        CPU Functional State
10857e8c9beSAlpana Kumari  *
10957e8c9beSAlpana Kumari  * @param[in] aResp Shared pointer for completing asynchronous calls
11057e8c9beSAlpana Kumari  * @param[in] cpuFunctionalState is CPU functional true/false
11157e8c9beSAlpana Kumari  *
11257e8c9beSAlpana Kumari  * @return None.
11357e8c9beSAlpana Kumari  */
1141e1e598dSJonathan Doman inline void
1151e1e598dSJonathan Doman     modifyCpuFunctionalState(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
1161e1e598dSJonathan Doman                              bool isCpuFunctional)
11757e8c9beSAlpana Kumari {
1181e1e598dSJonathan Doman     BMCWEB_LOG_DEBUG << "Cpu Functional: " << isCpuFunctional;
11957e8c9beSAlpana Kumari 
12002cad96eSEd Tanous     const nlohmann::json& prevProcState =
12157e8c9beSAlpana Kumari         aResp->res.jsonValue["ProcessorSummary"]["Status"]["State"];
12257e8c9beSAlpana Kumari 
12357e8c9beSAlpana Kumari     // Set it as Enabled if at least one CPU is functional
12457e8c9beSAlpana Kumari     // Update STATE only if previous State was Non_Functional and current CPU is
12557e8c9beSAlpana Kumari     // Functional.
12657e8c9beSAlpana Kumari     if (prevProcState == "Disabled")
12757e8c9beSAlpana Kumari     {
128e05aec50SEd Tanous         if (isCpuFunctional)
12957e8c9beSAlpana Kumari         {
13057e8c9beSAlpana Kumari             aResp->res.jsonValue["ProcessorSummary"]["Status"]["State"] =
13157e8c9beSAlpana Kumari                 "Enabled";
13257e8c9beSAlpana Kumari         }
13357e8c9beSAlpana Kumari     }
13457e8c9beSAlpana Kumari }
13557e8c9beSAlpana Kumari 
136382d6475SAli Ahmed inline void getProcessorProperties(
137382d6475SAli Ahmed     const std::shared_ptr<bmcweb::AsyncResp>& aResp,
138382d6475SAli Ahmed     const std::vector<std::pair<std::string, dbus::utility::DbusVariantType>>&
139382d6475SAli Ahmed         properties)
14003fbed92SAli Ahmed {
14103fbed92SAli Ahmed 
14203fbed92SAli Ahmed     BMCWEB_LOG_DEBUG << "Got " << properties.size() << " Cpu properties.";
14303fbed92SAli Ahmed 
14403fbed92SAli Ahmed     // TODO: Get Model
14503fbed92SAli Ahmed 
146bc1d29deSKrzysztof Grobelny     const uint16_t* coreCount = nullptr;
14703fbed92SAli Ahmed 
148bc1d29deSKrzysztof Grobelny     const bool success = sdbusplus::unpackPropertiesNoThrow(
149bc1d29deSKrzysztof Grobelny         dbus_utils::UnpackErrorPrinter(), properties, "CoreCount", coreCount);
15003fbed92SAli Ahmed 
151bc1d29deSKrzysztof Grobelny     if (!success)
15203fbed92SAli Ahmed     {
15303fbed92SAli Ahmed         messages::internalError(aResp->res);
15403fbed92SAli Ahmed         return;
15503fbed92SAli Ahmed     }
15603fbed92SAli Ahmed 
157bc1d29deSKrzysztof Grobelny     if (coreCount != nullptr)
15803fbed92SAli Ahmed     {
159bc1d29deSKrzysztof Grobelny         nlohmann::json& coreCountJson =
160bc1d29deSKrzysztof Grobelny             aResp->res.jsonValue["ProcessorSummary"]["CoreCount"];
161bc1d29deSKrzysztof Grobelny         uint64_t* coreCountJsonPtr = coreCountJson.get_ptr<uint64_t*>();
162bc1d29deSKrzysztof Grobelny 
163bc1d29deSKrzysztof Grobelny         if (coreCountJsonPtr == nullptr)
164bc1d29deSKrzysztof Grobelny         {
165bc1d29deSKrzysztof Grobelny             coreCountJson = *coreCount;
16603fbed92SAli Ahmed         }
16703fbed92SAli Ahmed         else
16803fbed92SAli Ahmed         {
169bc1d29deSKrzysztof Grobelny             *coreCountJsonPtr += *coreCount;
17003fbed92SAli Ahmed         }
17103fbed92SAli Ahmed     }
17203fbed92SAli Ahmed }
17303fbed92SAli Ahmed 
17403fbed92SAli Ahmed /*
17503fbed92SAli Ahmed  * @brief Get ProcessorSummary fields
17603fbed92SAli Ahmed  *
17703fbed92SAli Ahmed  * @param[in] aResp Shared pointer for completing asynchronous calls
17803fbed92SAli Ahmed  * @param[in] service dbus service for Cpu Information
17903fbed92SAli Ahmed  * @param[in] path dbus path for Cpu
18003fbed92SAli Ahmed  *
18103fbed92SAli Ahmed  * @return None.
18203fbed92SAli Ahmed  */
18303fbed92SAli Ahmed inline void getProcessorSummary(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
18403fbed92SAli Ahmed                                 const std::string& service,
18503fbed92SAli Ahmed                                 const std::string& path)
18603fbed92SAli Ahmed {
18703fbed92SAli Ahmed 
1885e7e2dc5SEd Tanous     auto getCpuPresenceState = [aResp](const boost::system::error_code& ec3,
189382d6475SAli Ahmed                                        const bool cpuPresenceCheck) {
190382d6475SAli Ahmed         if (ec3)
191382d6475SAli Ahmed         {
192382d6475SAli Ahmed             BMCWEB_LOG_ERROR << "DBUS response error " << ec3;
193382d6475SAli Ahmed             return;
194382d6475SAli Ahmed         }
195382d6475SAli Ahmed         modifyCpuPresenceState(aResp, cpuPresenceCheck);
196382d6475SAli Ahmed     };
197382d6475SAli Ahmed 
1985e7e2dc5SEd Tanous     auto getCpuFunctionalState = [aResp](const boost::system::error_code& ec3,
199382d6475SAli Ahmed                                          const bool cpuFunctionalCheck) {
200382d6475SAli Ahmed         if (ec3)
201382d6475SAli Ahmed         {
202382d6475SAli Ahmed             BMCWEB_LOG_ERROR << "DBUS response error " << ec3;
203382d6475SAli Ahmed             return;
204382d6475SAli Ahmed         }
205382d6475SAli Ahmed         modifyCpuFunctionalState(aResp, cpuFunctionalCheck);
206382d6475SAli Ahmed     };
207382d6475SAli Ahmed 
208382d6475SAli Ahmed     // Get the Presence of CPU
209382d6475SAli Ahmed     sdbusplus::asio::getProperty<bool>(
210382d6475SAli Ahmed         *crow::connections::systemBus, service, path,
211382d6475SAli Ahmed         "xyz.openbmc_project.Inventory.Item", "Present",
212382d6475SAli Ahmed         std::move(getCpuPresenceState));
213382d6475SAli Ahmed 
214382d6475SAli Ahmed     // Get the Functional State
215382d6475SAli Ahmed     sdbusplus::asio::getProperty<bool>(
216382d6475SAli Ahmed         *crow::connections::systemBus, service, path,
217382d6475SAli Ahmed         "xyz.openbmc_project.State.Decorator.OperationalStatus", "Functional",
218382d6475SAli Ahmed         std::move(getCpuFunctionalState));
219382d6475SAli Ahmed 
220bc1d29deSKrzysztof Grobelny     sdbusplus::asio::getAllProperties(
221bc1d29deSKrzysztof Grobelny         *crow::connections::systemBus, service, path,
222bc1d29deSKrzysztof Grobelny         "xyz.openbmc_project.Inventory.Item.Cpu",
22303fbed92SAli Ahmed         [aResp, service,
2245e7e2dc5SEd Tanous          path](const boost::system::error_code& ec2,
225b9d36b47SEd Tanous                const dbus::utility::DBusPropertiesMap& properties) {
22603fbed92SAli Ahmed         if (ec2)
22703fbed92SAli Ahmed         {
22803fbed92SAli Ahmed             BMCWEB_LOG_ERROR << "DBUS response error " << ec2;
22903fbed92SAli Ahmed             messages::internalError(aResp->res);
23003fbed92SAli Ahmed             return;
23103fbed92SAli Ahmed         }
232382d6475SAli Ahmed         getProcessorProperties(aResp, properties);
233bc1d29deSKrzysztof Grobelny         });
23403fbed92SAli Ahmed }
23503fbed92SAli Ahmed 
23657e8c9beSAlpana Kumari /*
237c5b2abe0SLewanczyk, Dawid  * @brief Retrieves computer system properties over dbus
238c5b2abe0SLewanczyk, Dawid  *
239c5b2abe0SLewanczyk, Dawid  * @param[in] aResp Shared pointer for completing asynchronous calls
2408f9ee3cdSGunnar Mills  * @param[in] systemHealth  Shared HealthPopulate pointer
241c5b2abe0SLewanczyk, Dawid  *
242c5b2abe0SLewanczyk, Dawid  * @return None.
243c5b2abe0SLewanczyk, Dawid  */
244b5a76932SEd Tanous inline void
2458d1b46d7Szhanghch05     getComputerSystem(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
246b5a76932SEd Tanous                       const std::shared_ptr<HealthPopulate>& systemHealth)
2471abe55efSEd Tanous {
24855c7b7a2SEd Tanous     BMCWEB_LOG_DEBUG << "Get available system components.";
249e99073f5SGeorge Liu     constexpr std::array<std::string_view, 5> interfaces = {
250e99073f5SGeorge Liu         "xyz.openbmc_project.Inventory.Decorator.Asset",
251e99073f5SGeorge Liu         "xyz.openbmc_project.Inventory.Item.Cpu",
252e99073f5SGeorge Liu         "xyz.openbmc_project.Inventory.Item.Dimm",
253e99073f5SGeorge Liu         "xyz.openbmc_project.Inventory.Item.System",
254e99073f5SGeorge Liu         "xyz.openbmc_project.Common.UUID",
255e99073f5SGeorge Liu     };
256e99073f5SGeorge Liu     dbus::utility::getSubTree(
257e99073f5SGeorge Liu         "/xyz/openbmc_project/inventory", 0, interfaces,
258b9d36b47SEd Tanous         [aResp,
259e99073f5SGeorge Liu          systemHealth](const boost::system::error_code& ec,
260b9d36b47SEd Tanous                        const dbus::utility::MapperGetSubTreeResponse& subtree) {
2611abe55efSEd Tanous         if (ec)
2621abe55efSEd Tanous         {
26355c7b7a2SEd Tanous             BMCWEB_LOG_DEBUG << "DBUS response error";
264f12894f8SJason M. Bills             messages::internalError(aResp->res);
265c5b2abe0SLewanczyk, Dawid             return;
266c5b2abe0SLewanczyk, Dawid         }
267c5b2abe0SLewanczyk, Dawid         // Iterate over all retrieved ObjectPaths.
268002d39b4SEd Tanous         for (const std::pair<
269002d39b4SEd Tanous                  std::string,
270002d39b4SEd Tanous                  std::vector<std::pair<std::string, std::vector<std::string>>>>&
2711214b7e7SGunnar Mills                  object : subtree)
2721abe55efSEd Tanous         {
273c5b2abe0SLewanczyk, Dawid             const std::string& path = object.first;
27455c7b7a2SEd Tanous             BMCWEB_LOG_DEBUG << "Got path: " << path;
275002d39b4SEd Tanous             const std::vector<std::pair<std::string, std::vector<std::string>>>&
2761214b7e7SGunnar Mills                 connectionNames = object.second;
27726f6976fSEd Tanous             if (connectionNames.empty())
2781abe55efSEd Tanous             {
279c5b2abe0SLewanczyk, Dawid                 continue;
280c5b2abe0SLewanczyk, Dawid             }
281029573d4SEd Tanous 
2825bc2dc8eSJames Feist             auto memoryHealth = std::make_shared<HealthPopulate>(
283dfababfcSNan Zhou                 aResp, "/MemorySummary/Status"_json_pointer);
2845bc2dc8eSJames Feist 
2855bc2dc8eSJames Feist             auto cpuHealth = std::make_shared<HealthPopulate>(
286dfababfcSNan Zhou                 aResp, "/ProcessorSummary/Status"_json_pointer);
2875bc2dc8eSJames Feist 
2885bc2dc8eSJames Feist             systemHealth->children.emplace_back(memoryHealth);
2895bc2dc8eSJames Feist             systemHealth->children.emplace_back(cpuHealth);
2905bc2dc8eSJames Feist 
2916c34de48SEd Tanous             // This is not system, so check if it's cpu, dimm, UUID or
2926c34de48SEd Tanous             // BiosVer
29304a258f4SEd Tanous             for (const auto& connection : connectionNames)
2941abe55efSEd Tanous             {
29504a258f4SEd Tanous                 for (const auto& interfaceName : connection.second)
2961abe55efSEd Tanous                 {
29704a258f4SEd Tanous                     if (interfaceName ==
29804a258f4SEd Tanous                         "xyz.openbmc_project.Inventory.Item.Dimm")
2991abe55efSEd Tanous                     {
3001abe55efSEd Tanous                         BMCWEB_LOG_DEBUG
30104a258f4SEd Tanous                             << "Found Dimm, now get its properties.";
3029d3ae10eSAlpana Kumari 
303bc1d29deSKrzysztof Grobelny                         sdbusplus::asio::getAllProperties(
304bc1d29deSKrzysztof Grobelny                             *crow::connections::systemBus, connection.first,
305bc1d29deSKrzysztof Grobelny                             path, "xyz.openbmc_project.Inventory.Item.Dimm",
3069d3ae10eSAlpana Kumari                             [aResp, service{connection.first},
3075e7e2dc5SEd Tanous                              path](const boost::system::error_code& ec2,
308b9d36b47SEd Tanous                                    const dbus::utility::DBusPropertiesMap&
3091214b7e7SGunnar Mills                                        properties) {
310cb13a392SEd Tanous                             if (ec2)
3111abe55efSEd Tanous                             {
312002d39b4SEd Tanous                                 BMCWEB_LOG_ERROR << "DBUS response error "
313002d39b4SEd Tanous                                                  << ec2;
314f12894f8SJason M. Bills                                 messages::internalError(aResp->res);
315c5b2abe0SLewanczyk, Dawid                                 return;
316c5b2abe0SLewanczyk, Dawid                             }
317002d39b4SEd Tanous                             BMCWEB_LOG_DEBUG << "Got " << properties.size()
318c5b2abe0SLewanczyk, Dawid                                              << " Dimm properties.";
3199d3ae10eSAlpana Kumari 
320bc1d29deSKrzysztof Grobelny                             if (properties.empty())
3219d3ae10eSAlpana Kumari                             {
3221e1e598dSJonathan Doman                                 sdbusplus::asio::getProperty<bool>(
323002d39b4SEd Tanous                                     *crow::connections::systemBus, service,
324002d39b4SEd Tanous                                     path,
3251e1e598dSJonathan Doman                                     "xyz.openbmc_project.State."
3261e1e598dSJonathan Doman                                     "Decorator.OperationalStatus",
3271e1e598dSJonathan Doman                                     "Functional",
3285e7e2dc5SEd Tanous                                     [aResp](
3295e7e2dc5SEd Tanous                                         const boost::system::error_code& ec3,
3301e1e598dSJonathan Doman                                         bool dimmState) {
331cb13a392SEd Tanous                                     if (ec3)
3329d3ae10eSAlpana Kumari                                     {
3339d3ae10eSAlpana Kumari                                         BMCWEB_LOG_ERROR
334002d39b4SEd Tanous                                             << "DBUS response error " << ec3;
3359d3ae10eSAlpana Kumari                                         return;
3369d3ae10eSAlpana Kumari                                     }
337002d39b4SEd Tanous                                     updateDimmProperties(aResp, dimmState);
3381e1e598dSJonathan Doman                                     });
339bc1d29deSKrzysztof Grobelny                                 return;
3409d3ae10eSAlpana Kumari                             }
341bc1d29deSKrzysztof Grobelny 
342bc1d29deSKrzysztof Grobelny                             const uint32_t* memorySizeInKB = nullptr;
343bc1d29deSKrzysztof Grobelny 
344bc1d29deSKrzysztof Grobelny                             const bool success =
345bc1d29deSKrzysztof Grobelny                                 sdbusplus::unpackPropertiesNoThrow(
346bc1d29deSKrzysztof Grobelny                                     dbus_utils::UnpackErrorPrinter(),
347bc1d29deSKrzysztof Grobelny                                     properties, "MemorySizeInKB",
348bc1d29deSKrzysztof Grobelny                                     memorySizeInKB);
349bc1d29deSKrzysztof Grobelny 
350bc1d29deSKrzysztof Grobelny                             if (!success)
351bc1d29deSKrzysztof Grobelny                             {
352bc1d29deSKrzysztof Grobelny                                 messages::internalError(aResp->res);
353bc1d29deSKrzysztof Grobelny                                 return;
354bc1d29deSKrzysztof Grobelny                             }
355bc1d29deSKrzysztof Grobelny 
356bc1d29deSKrzysztof Grobelny                             if (memorySizeInKB != nullptr)
357bc1d29deSKrzysztof Grobelny                             {
358bc1d29deSKrzysztof Grobelny                                 nlohmann::json& totalMemory =
359bc1d29deSKrzysztof Grobelny                                     aResp->res
360bc1d29deSKrzysztof Grobelny                                         .jsonValue["MemorySummary"]
361bc1d29deSKrzysztof Grobelny                                                   ["TotalSystemMemoryGiB"];
362bc1d29deSKrzysztof Grobelny                                 const uint64_t* preValue =
363bc1d29deSKrzysztof Grobelny                                     totalMemory.get_ptr<const uint64_t*>();
364bc1d29deSKrzysztof Grobelny                                 if (preValue == nullptr)
365bc1d29deSKrzysztof Grobelny                                 {
366bc1d29deSKrzysztof Grobelny                                     aResp->res
367bc1d29deSKrzysztof Grobelny                                         .jsonValue["MemorySummary"]
368bc1d29deSKrzysztof Grobelny                                                   ["TotalSystemMemoryGiB"] =
369bc1d29deSKrzysztof Grobelny                                         *memorySizeInKB / (1024 * 1024);
370bc1d29deSKrzysztof Grobelny                                 }
371bc1d29deSKrzysztof Grobelny                                 else
372bc1d29deSKrzysztof Grobelny                                 {
373bc1d29deSKrzysztof Grobelny                                     aResp->res
374bc1d29deSKrzysztof Grobelny                                         .jsonValue["MemorySummary"]
375bc1d29deSKrzysztof Grobelny                                                   ["TotalSystemMemoryGiB"] =
376bc1d29deSKrzysztof Grobelny                                         *memorySizeInKB / (1024 * 1024) +
377bc1d29deSKrzysztof Grobelny                                         *preValue;
378bc1d29deSKrzysztof Grobelny                                 }
379bc1d29deSKrzysztof Grobelny                                 aResp->res.jsonValue["MemorySummary"]["Status"]
380bc1d29deSKrzysztof Grobelny                                                     ["State"] = "Enabled";
381bc1d29deSKrzysztof Grobelny                             }
382bc1d29deSKrzysztof Grobelny                             });
3835bc2dc8eSJames Feist 
3845bc2dc8eSJames Feist                         memoryHealth->inventory.emplace_back(path);
3851abe55efSEd Tanous                     }
38604a258f4SEd Tanous                     else if (interfaceName ==
38704a258f4SEd Tanous                              "xyz.openbmc_project.Inventory.Item.Cpu")
3881abe55efSEd Tanous                     {
3891abe55efSEd Tanous                         BMCWEB_LOG_DEBUG
39004a258f4SEd Tanous                             << "Found Cpu, now get its properties.";
39157e8c9beSAlpana Kumari 
39203fbed92SAli Ahmed                         getProcessorSummary(aResp, connection.first, path);
3935bc2dc8eSJames Feist 
3945bc2dc8eSJames Feist                         cpuHealth->inventory.emplace_back(path);
3951abe55efSEd Tanous                     }
396002d39b4SEd Tanous                     else if (interfaceName == "xyz.openbmc_project.Common.UUID")
3971abe55efSEd Tanous                     {
3981abe55efSEd Tanous                         BMCWEB_LOG_DEBUG
39904a258f4SEd Tanous                             << "Found UUID, now get its properties.";
400bc1d29deSKrzysztof Grobelny 
401bc1d29deSKrzysztof Grobelny                         sdbusplus::asio::getAllProperties(
402bc1d29deSKrzysztof Grobelny                             *crow::connections::systemBus, connection.first,
403bc1d29deSKrzysztof Grobelny                             path, "xyz.openbmc_project.Common.UUID",
4045e7e2dc5SEd Tanous                             [aResp](const boost::system::error_code& ec3,
405b9d36b47SEd Tanous                                     const dbus::utility::DBusPropertiesMap&
4061214b7e7SGunnar Mills                                         properties) {
407cb13a392SEd Tanous                             if (ec3)
4081abe55efSEd Tanous                             {
409002d39b4SEd Tanous                                 BMCWEB_LOG_DEBUG << "DBUS response error "
410002d39b4SEd Tanous                                                  << ec3;
411f12894f8SJason M. Bills                                 messages::internalError(aResp->res);
412c5b2abe0SLewanczyk, Dawid                                 return;
413c5b2abe0SLewanczyk, Dawid                             }
414002d39b4SEd Tanous                             BMCWEB_LOG_DEBUG << "Got " << properties.size()
415c5b2abe0SLewanczyk, Dawid                                              << " UUID properties.";
41604a258f4SEd Tanous 
417bc1d29deSKrzysztof Grobelny                             const std::string* uUID = nullptr;
418bc1d29deSKrzysztof Grobelny 
419bc1d29deSKrzysztof Grobelny                             const bool success =
420bc1d29deSKrzysztof Grobelny                                 sdbusplus::unpackPropertiesNoThrow(
421bc1d29deSKrzysztof Grobelny                                     dbus_utils::UnpackErrorPrinter(),
422bc1d29deSKrzysztof Grobelny                                     properties, "UUID", uUID);
423bc1d29deSKrzysztof Grobelny 
424bc1d29deSKrzysztof Grobelny                             if (!success)
4251abe55efSEd Tanous                             {
426bc1d29deSKrzysztof Grobelny                                 messages::internalError(aResp->res);
427bc1d29deSKrzysztof Grobelny                                 return;
428bc1d29deSKrzysztof Grobelny                             }
429bc1d29deSKrzysztof Grobelny 
430bc1d29deSKrzysztof Grobelny                             if (uUID != nullptr)
431bc1d29deSKrzysztof Grobelny                             {
432bc1d29deSKrzysztof Grobelny                                 std::string valueStr = *uUID;
43304a258f4SEd Tanous                                 if (valueStr.size() == 32)
4341abe55efSEd Tanous                                 {
435029573d4SEd Tanous                                     valueStr.insert(8, 1, '-');
436029573d4SEd Tanous                                     valueStr.insert(13, 1, '-');
437029573d4SEd Tanous                                     valueStr.insert(18, 1, '-');
438029573d4SEd Tanous                                     valueStr.insert(23, 1, '-');
43904a258f4SEd Tanous                                 }
440bc1d29deSKrzysztof Grobelny                                 BMCWEB_LOG_DEBUG << "UUID = " << valueStr;
441002d39b4SEd Tanous                                 aResp->res.jsonValue["UUID"] = valueStr;
442c5b2abe0SLewanczyk, Dawid                             }
443bc1d29deSKrzysztof Grobelny                             });
444c5b2abe0SLewanczyk, Dawid                     }
445029573d4SEd Tanous                     else if (interfaceName ==
446029573d4SEd Tanous                              "xyz.openbmc_project.Inventory.Item.System")
4471abe55efSEd Tanous                     {
448bc1d29deSKrzysztof Grobelny                         sdbusplus::asio::getAllProperties(
449bc1d29deSKrzysztof Grobelny                             *crow::connections::systemBus, connection.first,
450bc1d29deSKrzysztof Grobelny                             path,
451bc1d29deSKrzysztof Grobelny                             "xyz.openbmc_project.Inventory.Decorator.Asset",
4525e7e2dc5SEd Tanous                             [aResp](const boost::system::error_code& ec2,
453b9d36b47SEd Tanous                                     const dbus::utility::DBusPropertiesMap&
4541214b7e7SGunnar Mills                                         propertiesList) {
455cb13a392SEd Tanous                             if (ec2)
456029573d4SEd Tanous                             {
457e4a4b9a9SJames Feist                                 // doesn't have to include this
458e4a4b9a9SJames Feist                                 // interface
459029573d4SEd Tanous                                 return;
460029573d4SEd Tanous                             }
461002d39b4SEd Tanous                             BMCWEB_LOG_DEBUG << "Got " << propertiesList.size()
462029573d4SEd Tanous                                              << " properties for system";
463bc1d29deSKrzysztof Grobelny 
464bc1d29deSKrzysztof Grobelny                             const std::string* partNumber = nullptr;
465bc1d29deSKrzysztof Grobelny                             const std::string* serialNumber = nullptr;
466bc1d29deSKrzysztof Grobelny                             const std::string* manufacturer = nullptr;
467bc1d29deSKrzysztof Grobelny                             const std::string* model = nullptr;
468bc1d29deSKrzysztof Grobelny                             const std::string* subModel = nullptr;
469bc1d29deSKrzysztof Grobelny 
470bc1d29deSKrzysztof Grobelny                             const bool success =
471bc1d29deSKrzysztof Grobelny                                 sdbusplus::unpackPropertiesNoThrow(
472bc1d29deSKrzysztof Grobelny                                     dbus_utils::UnpackErrorPrinter(),
473bc1d29deSKrzysztof Grobelny                                     propertiesList, "PartNumber", partNumber,
474bc1d29deSKrzysztof Grobelny                                     "SerialNumber", serialNumber,
475bc1d29deSKrzysztof Grobelny                                     "Manufacturer", manufacturer, "Model",
476bc1d29deSKrzysztof Grobelny                                     model, "SubModel", subModel);
477bc1d29deSKrzysztof Grobelny 
478bc1d29deSKrzysztof Grobelny                             if (!success)
479029573d4SEd Tanous                             {
480bc1d29deSKrzysztof Grobelny                                 messages::internalError(aResp->res);
481bc1d29deSKrzysztof Grobelny                                 return;
482029573d4SEd Tanous                             }
483bc1d29deSKrzysztof Grobelny 
484bc1d29deSKrzysztof Grobelny                             if (partNumber != nullptr)
485bc1d29deSKrzysztof Grobelny                             {
486bc1d29deSKrzysztof Grobelny                                 aResp->res.jsonValue["PartNumber"] =
487bc1d29deSKrzysztof Grobelny                                     *partNumber;
488029573d4SEd Tanous                             }
489bc1d29deSKrzysztof Grobelny 
490bc1d29deSKrzysztof Grobelny                             if (serialNumber != nullptr)
491bc1d29deSKrzysztof Grobelny                             {
492bc1d29deSKrzysztof Grobelny                                 aResp->res.jsonValue["SerialNumber"] =
493bc1d29deSKrzysztof Grobelny                                     *serialNumber;
494bc1d29deSKrzysztof Grobelny                             }
495bc1d29deSKrzysztof Grobelny 
496bc1d29deSKrzysztof Grobelny                             if (manufacturer != nullptr)
497bc1d29deSKrzysztof Grobelny                             {
498bc1d29deSKrzysztof Grobelny                                 aResp->res.jsonValue["Manufacturer"] =
499bc1d29deSKrzysztof Grobelny                                     *manufacturer;
500bc1d29deSKrzysztof Grobelny                             }
501bc1d29deSKrzysztof Grobelny 
502bc1d29deSKrzysztof Grobelny                             if (model != nullptr)
503bc1d29deSKrzysztof Grobelny                             {
504bc1d29deSKrzysztof Grobelny                                 aResp->res.jsonValue["Model"] = *model;
505bc1d29deSKrzysztof Grobelny                             }
506bc1d29deSKrzysztof Grobelny 
507bc1d29deSKrzysztof Grobelny                             if (subModel != nullptr)
508bc1d29deSKrzysztof Grobelny                             {
509bc1d29deSKrzysztof Grobelny                                 aResp->res.jsonValue["SubModel"] = *subModel;
510fc5afcf9Sbeccabroek                             }
511c1e236a6SGunnar Mills 
512cb7e1e7bSAndrew Geissler                             // Grab the bios version
513eee0013eSWilly Tu                             sw_util::populateSoftwareInformation(
514eee0013eSWilly Tu                                 aResp, sw_util::biosPurpose, "BiosVersion",
515002d39b4SEd Tanous                                 false);
516bc1d29deSKrzysztof Grobelny                             });
517e4a4b9a9SJames Feist 
5181e1e598dSJonathan Doman                         sdbusplus::asio::getProperty<std::string>(
5191e1e598dSJonathan Doman                             *crow::connections::systemBus, connection.first,
5201e1e598dSJonathan Doman                             path,
5211e1e598dSJonathan Doman                             "xyz.openbmc_project.Inventory.Decorator."
5221e1e598dSJonathan Doman                             "AssetTag",
5231e1e598dSJonathan Doman                             "AssetTag",
5245e7e2dc5SEd Tanous                             [aResp](const boost::system::error_code& ec2,
5251e1e598dSJonathan Doman                                     const std::string& value) {
526cb13a392SEd Tanous                             if (ec2)
527e4a4b9a9SJames Feist                             {
528e4a4b9a9SJames Feist                                 // doesn't have to include this
529e4a4b9a9SJames Feist                                 // interface
530e4a4b9a9SJames Feist                                 return;
531e4a4b9a9SJames Feist                             }
532e4a4b9a9SJames Feist 
5331e1e598dSJonathan Doman                             aResp->res.jsonValue["AssetTag"] = value;
5341e1e598dSJonathan Doman                             });
535029573d4SEd Tanous                     }
536029573d4SEd Tanous                 }
537bc1d29deSKrzysztof Grobelny                 break;
538029573d4SEd Tanous             }
539c5b2abe0SLewanczyk, Dawid         }
5406617338dSEd Tanous         });
541c5b2abe0SLewanczyk, Dawid }
542c5b2abe0SLewanczyk, Dawid 
543c5b2abe0SLewanczyk, Dawid /**
544c5b2abe0SLewanczyk, Dawid  * @brief Retrieves host state properties over dbus
545c5b2abe0SLewanczyk, Dawid  *
546c5b2abe0SLewanczyk, Dawid  * @param[in] aResp     Shared pointer for completing asynchronous calls.
547c5b2abe0SLewanczyk, Dawid  *
548c5b2abe0SLewanczyk, Dawid  * @return None.
549c5b2abe0SLewanczyk, Dawid  */
5508d1b46d7Szhanghch05 inline void getHostState(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
5511abe55efSEd Tanous {
55255c7b7a2SEd Tanous     BMCWEB_LOG_DEBUG << "Get host information.";
5531e1e598dSJonathan Doman     sdbusplus::asio::getProperty<std::string>(
5541e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.State.Host",
5551e1e598dSJonathan Doman         "/xyz/openbmc_project/state/host0", "xyz.openbmc_project.State.Host",
5561e1e598dSJonathan Doman         "CurrentHostState",
5575e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
5581e1e598dSJonathan Doman                 const std::string& hostState) {
5591abe55efSEd Tanous         if (ec)
5601abe55efSEd Tanous         {
56122228c28SAndrew Geissler             if (ec == boost::system::errc::host_unreachable)
56222228c28SAndrew Geissler             {
56322228c28SAndrew Geissler                 // Service not available, no error, just don't return
56422228c28SAndrew Geissler                 // host state info
56522228c28SAndrew Geissler                 BMCWEB_LOG_DEBUG << "Service not available " << ec;
56622228c28SAndrew Geissler                 return;
56722228c28SAndrew Geissler             }
56822228c28SAndrew Geissler             BMCWEB_LOG_ERROR << "DBUS response error " << ec;
569f12894f8SJason M. Bills             messages::internalError(aResp->res);
570c5b2abe0SLewanczyk, Dawid             return;
571c5b2abe0SLewanczyk, Dawid         }
5726617338dSEd Tanous 
5731e1e598dSJonathan Doman         BMCWEB_LOG_DEBUG << "Host state: " << hostState;
574c5b2abe0SLewanczyk, Dawid         // Verify Host State
5751e1e598dSJonathan Doman         if (hostState == "xyz.openbmc_project.State.Host.HostState.Running")
5761abe55efSEd Tanous         {
57755c7b7a2SEd Tanous             aResp->res.jsonValue["PowerState"] = "On";
5786617338dSEd Tanous             aResp->res.jsonValue["Status"]["State"] = "Enabled";
5791abe55efSEd Tanous         }
5801e1e598dSJonathan Doman         else if (hostState ==
5810fda0f12SGeorge Liu                  "xyz.openbmc_project.State.Host.HostState.Quiesced")
5828c888608SGunnar Mills         {
5838c888608SGunnar Mills             aResp->res.jsonValue["PowerState"] = "On";
5848c888608SGunnar Mills             aResp->res.jsonValue["Status"]["State"] = "Quiesced";
5858c888608SGunnar Mills         }
5861e1e598dSJonathan Doman         else if (hostState ==
5870fda0f12SGeorge Liu                  "xyz.openbmc_project.State.Host.HostState.DiagnosticMode")
58883935af9SAndrew Geissler         {
58983935af9SAndrew Geissler             aResp->res.jsonValue["PowerState"] = "On";
59083935af9SAndrew Geissler             aResp->res.jsonValue["Status"]["State"] = "InTest";
59183935af9SAndrew Geissler         }
5920fda0f12SGeorge Liu         else if (
5931e1e598dSJonathan Doman             hostState ==
5940fda0f12SGeorge Liu             "xyz.openbmc_project.State.Host.HostState.TransitioningToRunning")
5951a2a1437SAndrew Geissler         {
5961a2a1437SAndrew Geissler             aResp->res.jsonValue["PowerState"] = "PoweringOn";
59715c27bf8SNoah Brewer             aResp->res.jsonValue["Status"]["State"] = "Starting";
5981a2a1437SAndrew Geissler         }
599002d39b4SEd Tanous         else if (hostState ==
6000fda0f12SGeorge Liu                  "xyz.openbmc_project.State.Host.HostState.TransitioningToOff")
6011a2a1437SAndrew Geissler         {
6021a2a1437SAndrew Geissler             aResp->res.jsonValue["PowerState"] = "PoweringOff";
6031a2a1437SAndrew Geissler             aResp->res.jsonValue["Status"]["State"] = "Disabled";
6041a2a1437SAndrew Geissler         }
6051abe55efSEd Tanous         else
6061abe55efSEd Tanous         {
60755c7b7a2SEd Tanous             aResp->res.jsonValue["PowerState"] = "Off";
6086617338dSEd Tanous             aResp->res.jsonValue["Status"]["State"] = "Disabled";
609c5b2abe0SLewanczyk, Dawid         }
6101e1e598dSJonathan Doman         });
611c5b2abe0SLewanczyk, Dawid }
612c5b2abe0SLewanczyk, Dawid 
613c5b2abe0SLewanczyk, Dawid /**
614786d0f60SGunnar Mills  * @brief Translates boot source DBUS property value to redfish.
615491d8ee7SSantosh Puranik  *
616491d8ee7SSantosh Puranik  * @param[in] dbusSource    The boot source in DBUS speak.
617491d8ee7SSantosh Puranik  *
618491d8ee7SSantosh Puranik  * @return Returns as a string, the boot source in Redfish terms. If translation
619491d8ee7SSantosh Puranik  * cannot be done, returns an empty string.
620491d8ee7SSantosh Puranik  */
62123a21a1cSEd Tanous inline std::string dbusToRfBootSource(const std::string& dbusSource)
622491d8ee7SSantosh Puranik {
623491d8ee7SSantosh Puranik     if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Default")
624491d8ee7SSantosh Puranik     {
625491d8ee7SSantosh Puranik         return "None";
626491d8ee7SSantosh Puranik     }
6273174e4dfSEd Tanous     if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Disk")
628491d8ee7SSantosh Puranik     {
629491d8ee7SSantosh Puranik         return "Hdd";
630491d8ee7SSantosh Puranik     }
6313174e4dfSEd Tanous     if (dbusSource ==
632a71dc0b7SSantosh Puranik         "xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia")
633491d8ee7SSantosh Puranik     {
634491d8ee7SSantosh Puranik         return "Cd";
635491d8ee7SSantosh Puranik     }
6363174e4dfSEd Tanous     if (dbusSource == "xyz.openbmc_project.Control.Boot.Source.Sources.Network")
637491d8ee7SSantosh Puranik     {
638491d8ee7SSantosh Puranik         return "Pxe";
639491d8ee7SSantosh Puranik     }
6403174e4dfSEd Tanous     if (dbusSource ==
641944ffaf9SJohnathan Mantey         "xyz.openbmc_project.Control.Boot.Source.Sources.RemovableMedia")
6429f16b2c1SJennifer Lee     {
6439f16b2c1SJennifer Lee         return "Usb";
6449f16b2c1SJennifer Lee     }
645491d8ee7SSantosh Puranik     return "";
646491d8ee7SSantosh Puranik }
647491d8ee7SSantosh Puranik 
648491d8ee7SSantosh Puranik /**
649cd9a4666SKonstantin Aladyshev  * @brief Translates boot type DBUS property value to redfish.
650cd9a4666SKonstantin Aladyshev  *
651cd9a4666SKonstantin Aladyshev  * @param[in] dbusType    The boot type in DBUS speak.
652cd9a4666SKonstantin Aladyshev  *
653cd9a4666SKonstantin Aladyshev  * @return Returns as a string, the boot type in Redfish terms. If translation
654cd9a4666SKonstantin Aladyshev  * cannot be done, returns an empty string.
655cd9a4666SKonstantin Aladyshev  */
656cd9a4666SKonstantin Aladyshev inline std::string dbusToRfBootType(const std::string& dbusType)
657cd9a4666SKonstantin Aladyshev {
658cd9a4666SKonstantin Aladyshev     if (dbusType == "xyz.openbmc_project.Control.Boot.Type.Types.Legacy")
659cd9a4666SKonstantin Aladyshev     {
660cd9a4666SKonstantin Aladyshev         return "Legacy";
661cd9a4666SKonstantin Aladyshev     }
662cd9a4666SKonstantin Aladyshev     if (dbusType == "xyz.openbmc_project.Control.Boot.Type.Types.EFI")
663cd9a4666SKonstantin Aladyshev     {
664cd9a4666SKonstantin Aladyshev         return "UEFI";
665cd9a4666SKonstantin Aladyshev     }
666cd9a4666SKonstantin Aladyshev     return "";
667cd9a4666SKonstantin Aladyshev }
668cd9a4666SKonstantin Aladyshev 
669cd9a4666SKonstantin Aladyshev /**
670786d0f60SGunnar Mills  * @brief Translates boot mode DBUS property value to redfish.
671491d8ee7SSantosh Puranik  *
672491d8ee7SSantosh Puranik  * @param[in] dbusMode    The boot mode in DBUS speak.
673491d8ee7SSantosh Puranik  *
674491d8ee7SSantosh Puranik  * @return Returns as a string, the boot mode in Redfish terms. If translation
675491d8ee7SSantosh Puranik  * cannot be done, returns an empty string.
676491d8ee7SSantosh Puranik  */
67723a21a1cSEd Tanous inline std::string dbusToRfBootMode(const std::string& dbusMode)
678491d8ee7SSantosh Puranik {
679491d8ee7SSantosh Puranik     if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular")
680491d8ee7SSantosh Puranik     {
681491d8ee7SSantosh Puranik         return "None";
682491d8ee7SSantosh Puranik     }
6833174e4dfSEd Tanous     if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe")
684491d8ee7SSantosh Puranik     {
685491d8ee7SSantosh Puranik         return "Diags";
686491d8ee7SSantosh Puranik     }
6873174e4dfSEd Tanous     if (dbusMode == "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup")
688491d8ee7SSantosh Puranik     {
689491d8ee7SSantosh Puranik         return "BiosSetup";
690491d8ee7SSantosh Puranik     }
691491d8ee7SSantosh Puranik     return "";
692491d8ee7SSantosh Puranik }
693491d8ee7SSantosh Puranik 
694491d8ee7SSantosh Puranik /**
695e43914b3SAndrew Geissler  * @brief Translates boot progress DBUS property value to redfish.
696e43914b3SAndrew Geissler  *
697e43914b3SAndrew Geissler  * @param[in] dbusBootProgress    The boot progress in DBUS speak.
698e43914b3SAndrew Geissler  *
699e43914b3SAndrew Geissler  * @return Returns as a string, the boot progress in Redfish terms. If
700e43914b3SAndrew Geissler  *         translation cannot be done, returns "None".
701e43914b3SAndrew Geissler  */
702e43914b3SAndrew Geissler inline std::string dbusToRfBootProgress(const std::string& dbusBootProgress)
703e43914b3SAndrew Geissler {
704e43914b3SAndrew Geissler     // Now convert the D-Bus BootProgress to the appropriate Redfish
705e43914b3SAndrew Geissler     // enum
706e43914b3SAndrew Geissler     std::string rfBpLastState = "None";
707e43914b3SAndrew Geissler     if (dbusBootProgress == "xyz.openbmc_project.State.Boot.Progress."
708e43914b3SAndrew Geissler                             "ProgressStages.Unspecified")
709e43914b3SAndrew Geissler     {
710e43914b3SAndrew Geissler         rfBpLastState = "None";
711e43914b3SAndrew Geissler     }
712e43914b3SAndrew Geissler     else if (dbusBootProgress ==
713e43914b3SAndrew Geissler              "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
714e43914b3SAndrew Geissler              "PrimaryProcInit")
715e43914b3SAndrew Geissler     {
716e43914b3SAndrew Geissler         rfBpLastState = "PrimaryProcessorInitializationStarted";
717e43914b3SAndrew Geissler     }
718e43914b3SAndrew Geissler     else if (dbusBootProgress ==
719e43914b3SAndrew Geissler              "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
720e43914b3SAndrew Geissler              "BusInit")
721e43914b3SAndrew Geissler     {
722e43914b3SAndrew Geissler         rfBpLastState = "BusInitializationStarted";
723e43914b3SAndrew Geissler     }
724e43914b3SAndrew Geissler     else if (dbusBootProgress ==
725e43914b3SAndrew Geissler              "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
726e43914b3SAndrew Geissler              "MemoryInit")
727e43914b3SAndrew Geissler     {
728e43914b3SAndrew Geissler         rfBpLastState = "MemoryInitializationStarted";
729e43914b3SAndrew Geissler     }
730e43914b3SAndrew Geissler     else if (dbusBootProgress ==
731e43914b3SAndrew Geissler              "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
732e43914b3SAndrew Geissler              "SecondaryProcInit")
733e43914b3SAndrew Geissler     {
734e43914b3SAndrew Geissler         rfBpLastState = "SecondaryProcessorInitializationStarted";
735e43914b3SAndrew Geissler     }
736e43914b3SAndrew Geissler     else if (dbusBootProgress ==
737e43914b3SAndrew Geissler              "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
738e43914b3SAndrew Geissler              "PCIInit")
739e43914b3SAndrew Geissler     {
740e43914b3SAndrew Geissler         rfBpLastState = "PCIResourceConfigStarted";
741e43914b3SAndrew Geissler     }
742e43914b3SAndrew Geissler     else if (dbusBootProgress ==
743e43914b3SAndrew Geissler              "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
744e43914b3SAndrew Geissler              "SystemSetup")
745e43914b3SAndrew Geissler     {
746e43914b3SAndrew Geissler         rfBpLastState = "SetupEntered";
747e43914b3SAndrew Geissler     }
748e43914b3SAndrew Geissler     else if (dbusBootProgress ==
749e43914b3SAndrew Geissler              "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
750e43914b3SAndrew Geissler              "SystemInitComplete")
751e43914b3SAndrew Geissler     {
752e43914b3SAndrew Geissler         rfBpLastState = "SystemHardwareInitializationComplete";
753e43914b3SAndrew Geissler     }
754e43914b3SAndrew Geissler     else if (dbusBootProgress ==
755e43914b3SAndrew Geissler              "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
756e43914b3SAndrew Geissler              "OSStart")
757e43914b3SAndrew Geissler     {
758e43914b3SAndrew Geissler         rfBpLastState = "OSBootStarted";
759e43914b3SAndrew Geissler     }
760e43914b3SAndrew Geissler     else if (dbusBootProgress ==
761e43914b3SAndrew Geissler              "xyz.openbmc_project.State.Boot.Progress.ProgressStages."
762e43914b3SAndrew Geissler              "OSRunning")
763e43914b3SAndrew Geissler     {
764e43914b3SAndrew Geissler         rfBpLastState = "OSRunning";
765e43914b3SAndrew Geissler     }
766e43914b3SAndrew Geissler     else
767e43914b3SAndrew Geissler     {
768e43914b3SAndrew Geissler         BMCWEB_LOG_DEBUG << "Unsupported D-Bus BootProgress "
769e43914b3SAndrew Geissler                          << dbusBootProgress;
770e43914b3SAndrew Geissler         // Just return the default
771e43914b3SAndrew Geissler     }
772e43914b3SAndrew Geissler     return rfBpLastState;
773e43914b3SAndrew Geissler }
774e43914b3SAndrew Geissler 
775e43914b3SAndrew Geissler /**
776786d0f60SGunnar Mills  * @brief Translates boot source from Redfish to the DBus boot paths.
777491d8ee7SSantosh Puranik  *
778491d8ee7SSantosh Puranik  * @param[in] rfSource    The boot source in Redfish.
779944ffaf9SJohnathan Mantey  * @param[out] bootSource The DBus source
780944ffaf9SJohnathan Mantey  * @param[out] bootMode   the DBus boot mode
781491d8ee7SSantosh Puranik  *
782944ffaf9SJohnathan Mantey  * @return Integer error code.
783491d8ee7SSantosh Puranik  */
7848d1b46d7Szhanghch05 inline int assignBootParameters(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
785944ffaf9SJohnathan Mantey                                 const std::string& rfSource,
786944ffaf9SJohnathan Mantey                                 std::string& bootSource, std::string& bootMode)
787491d8ee7SSantosh Puranik {
788c21865c4SKonstantin Aladyshev     bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Default";
789c21865c4SKonstantin Aladyshev     bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular";
790944ffaf9SJohnathan Mantey 
791491d8ee7SSantosh Puranik     if (rfSource == "None")
792491d8ee7SSantosh Puranik     {
793944ffaf9SJohnathan Mantey         return 0;
794491d8ee7SSantosh Puranik     }
7953174e4dfSEd Tanous     if (rfSource == "Pxe")
796491d8ee7SSantosh Puranik     {
797944ffaf9SJohnathan Mantey         bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Network";
798944ffaf9SJohnathan Mantey     }
799944ffaf9SJohnathan Mantey     else if (rfSource == "Hdd")
800944ffaf9SJohnathan Mantey     {
801944ffaf9SJohnathan Mantey         bootSource = "xyz.openbmc_project.Control.Boot.Source.Sources.Disk";
802944ffaf9SJohnathan Mantey     }
803944ffaf9SJohnathan Mantey     else if (rfSource == "Diags")
804944ffaf9SJohnathan Mantey     {
805944ffaf9SJohnathan Mantey         bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Safe";
806944ffaf9SJohnathan Mantey     }
807944ffaf9SJohnathan Mantey     else if (rfSource == "Cd")
808944ffaf9SJohnathan Mantey     {
809944ffaf9SJohnathan Mantey         bootSource =
810944ffaf9SJohnathan Mantey             "xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia";
811944ffaf9SJohnathan Mantey     }
812944ffaf9SJohnathan Mantey     else if (rfSource == "BiosSetup")
813944ffaf9SJohnathan Mantey     {
814944ffaf9SJohnathan Mantey         bootMode = "xyz.openbmc_project.Control.Boot.Mode.Modes.Setup";
815491d8ee7SSantosh Puranik     }
8169f16b2c1SJennifer Lee     else if (rfSource == "Usb")
8179f16b2c1SJennifer Lee     {
818944ffaf9SJohnathan Mantey         bootSource =
819944ffaf9SJohnathan Mantey             "xyz.openbmc_project.Control.Boot.Source.Sources.RemovableMedia";
8209f16b2c1SJennifer Lee     }
821491d8ee7SSantosh Puranik     else
822491d8ee7SSantosh Puranik     {
8230fda0f12SGeorge Liu         BMCWEB_LOG_DEBUG
8240fda0f12SGeorge Liu             << "Invalid property value for BootSourceOverrideTarget: "
825944ffaf9SJohnathan Mantey             << bootSource;
826944ffaf9SJohnathan Mantey         messages::propertyValueNotInList(aResp->res, rfSource,
827944ffaf9SJohnathan Mantey                                          "BootSourceTargetOverride");
828944ffaf9SJohnathan Mantey         return -1;
829491d8ee7SSantosh Puranik     }
830944ffaf9SJohnathan Mantey     return 0;
831491d8ee7SSantosh Puranik }
8321981771bSAli Ahmed 
833978b8803SAndrew Geissler /**
834978b8803SAndrew Geissler  * @brief Retrieves boot progress of the system
835978b8803SAndrew Geissler  *
836978b8803SAndrew Geissler  * @param[in] aResp  Shared pointer for generating response message.
837978b8803SAndrew Geissler  *
838978b8803SAndrew Geissler  * @return None.
839978b8803SAndrew Geissler  */
8408d1b46d7Szhanghch05 inline void getBootProgress(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
841978b8803SAndrew Geissler {
8421e1e598dSJonathan Doman     sdbusplus::asio::getProperty<std::string>(
8431e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.State.Host",
8441e1e598dSJonathan Doman         "/xyz/openbmc_project/state/host0",
8451e1e598dSJonathan Doman         "xyz.openbmc_project.State.Boot.Progress", "BootProgress",
8465e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
8471e1e598dSJonathan Doman                 const std::string& bootProgressStr) {
848978b8803SAndrew Geissler         if (ec)
849978b8803SAndrew Geissler         {
850978b8803SAndrew Geissler             // BootProgress is an optional object so just do nothing if
851978b8803SAndrew Geissler             // not found
852978b8803SAndrew Geissler             return;
853978b8803SAndrew Geissler         }
854978b8803SAndrew Geissler 
8551e1e598dSJonathan Doman         BMCWEB_LOG_DEBUG << "Boot Progress: " << bootProgressStr;
856978b8803SAndrew Geissler 
857e43914b3SAndrew Geissler         aResp->res.jsonValue["BootProgress"]["LastState"] =
858e43914b3SAndrew Geissler             dbusToRfBootProgress(bootProgressStr);
8591e1e598dSJonathan Doman         });
860978b8803SAndrew Geissler }
861491d8ee7SSantosh Puranik 
862491d8ee7SSantosh Puranik /**
863b6d5d45cSHieu Huynh  * @brief Retrieves boot progress Last Update of the system
864b6d5d45cSHieu Huynh  *
865b6d5d45cSHieu Huynh  * @param[in] aResp  Shared pointer for generating response message.
866b6d5d45cSHieu Huynh  *
867b6d5d45cSHieu Huynh  * @return None.
868b6d5d45cSHieu Huynh  */
869b6d5d45cSHieu Huynh inline void getBootProgressLastStateTime(
870b6d5d45cSHieu Huynh     const std::shared_ptr<bmcweb::AsyncResp>& aResp)
871b6d5d45cSHieu Huynh {
872b6d5d45cSHieu Huynh     sdbusplus::asio::getProperty<uint64_t>(
873b6d5d45cSHieu Huynh         *crow::connections::systemBus, "xyz.openbmc_project.State.Host",
874b6d5d45cSHieu Huynh         "/xyz/openbmc_project/state/host0",
875b6d5d45cSHieu Huynh         "xyz.openbmc_project.State.Boot.Progress", "BootProgressLastUpdate",
8765e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
877b6d5d45cSHieu Huynh                 const uint64_t lastStateTime) {
878b6d5d45cSHieu Huynh         if (ec)
879b6d5d45cSHieu Huynh         {
880b6d5d45cSHieu Huynh             BMCWEB_LOG_DEBUG << "D-BUS response error " << ec;
881b6d5d45cSHieu Huynh             return;
882b6d5d45cSHieu Huynh         }
883b6d5d45cSHieu Huynh 
884b6d5d45cSHieu Huynh         // BootProgressLastUpdate is the last time the BootProgress property
885b6d5d45cSHieu Huynh         // was updated. The time is the Epoch time, number of microseconds
886b6d5d45cSHieu Huynh         // since 1 Jan 1970 00::00::00 UTC."
887b6d5d45cSHieu Huynh         // https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/
888b6d5d45cSHieu Huynh         // yaml/xyz/openbmc_project/State/Boot/Progress.interface.yaml#L11
889b6d5d45cSHieu Huynh 
890b6d5d45cSHieu Huynh         // Convert to ISO 8601 standard
891b6d5d45cSHieu Huynh         aResp->res.jsonValue["BootProgress"]["LastStateTime"] =
892b6d5d45cSHieu Huynh             redfish::time_utils::getDateTimeUintUs(lastStateTime);
893b6d5d45cSHieu Huynh         });
894b6d5d45cSHieu Huynh }
895b6d5d45cSHieu Huynh 
896b6d5d45cSHieu Huynh /**
897c21865c4SKonstantin Aladyshev  * @brief Retrieves boot override type over DBUS and fills out the response
898cd9a4666SKonstantin Aladyshev  *
899cd9a4666SKonstantin Aladyshev  * @param[in] aResp         Shared pointer for generating response message.
900cd9a4666SKonstantin Aladyshev  *
901cd9a4666SKonstantin Aladyshev  * @return None.
902cd9a4666SKonstantin Aladyshev  */
903cd9a4666SKonstantin Aladyshev 
904c21865c4SKonstantin Aladyshev inline void getBootOverrideType(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
905cd9a4666SKonstantin Aladyshev {
9061e1e598dSJonathan Doman     sdbusplus::asio::getProperty<std::string>(
9071e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.Settings",
9081e1e598dSJonathan Doman         "/xyz/openbmc_project/control/host0/boot",
9091e1e598dSJonathan Doman         "xyz.openbmc_project.Control.Boot.Type", "BootType",
9105e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
9111e1e598dSJonathan Doman                 const std::string& bootType) {
912cd9a4666SKonstantin Aladyshev         if (ec)
913cd9a4666SKonstantin Aladyshev         {
914cd9a4666SKonstantin Aladyshev             // not an error, don't have to have the interface
915cd9a4666SKonstantin Aladyshev             return;
916cd9a4666SKonstantin Aladyshev         }
917cd9a4666SKonstantin Aladyshev 
9181e1e598dSJonathan Doman         BMCWEB_LOG_DEBUG << "Boot type: " << bootType;
919cd9a4666SKonstantin Aladyshev 
920002d39b4SEd Tanous         aResp->res.jsonValue["Boot"]
921002d39b4SEd Tanous                             ["BootSourceOverrideMode@Redfish.AllowableValues"] =
922613dabeaSEd Tanous             nlohmann::json::array_t({"Legacy", "UEFI"});
923cd9a4666SKonstantin Aladyshev 
9241e1e598dSJonathan Doman         auto rfType = dbusToRfBootType(bootType);
925cd9a4666SKonstantin Aladyshev         if (rfType.empty())
926cd9a4666SKonstantin Aladyshev         {
927cd9a4666SKonstantin Aladyshev             messages::internalError(aResp->res);
928cd9a4666SKonstantin Aladyshev             return;
929cd9a4666SKonstantin Aladyshev         }
930cd9a4666SKonstantin Aladyshev 
931cd9a4666SKonstantin Aladyshev         aResp->res.jsonValue["Boot"]["BootSourceOverrideMode"] = rfType;
9321e1e598dSJonathan Doman         });
933cd9a4666SKonstantin Aladyshev }
934cd9a4666SKonstantin Aladyshev 
935cd9a4666SKonstantin Aladyshev /**
936c21865c4SKonstantin Aladyshev  * @brief Retrieves boot override mode over DBUS and fills out the response
937491d8ee7SSantosh Puranik  *
938491d8ee7SSantosh Puranik  * @param[in] aResp         Shared pointer for generating response message.
939491d8ee7SSantosh Puranik  *
940491d8ee7SSantosh Puranik  * @return None.
941491d8ee7SSantosh Puranik  */
942c21865c4SKonstantin Aladyshev 
943c21865c4SKonstantin Aladyshev inline void getBootOverrideMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
944491d8ee7SSantosh Puranik {
9451e1e598dSJonathan Doman     sdbusplus::asio::getProperty<std::string>(
9461e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.Settings",
9471e1e598dSJonathan Doman         "/xyz/openbmc_project/control/host0/boot",
9481e1e598dSJonathan Doman         "xyz.openbmc_project.Control.Boot.Mode", "BootMode",
9495e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
9501e1e598dSJonathan Doman                 const std::string& bootModeStr) {
951491d8ee7SSantosh Puranik         if (ec)
952491d8ee7SSantosh Puranik         {
953491d8ee7SSantosh Puranik             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
954491d8ee7SSantosh Puranik             messages::internalError(aResp->res);
955491d8ee7SSantosh Puranik             return;
956491d8ee7SSantosh Puranik         }
957491d8ee7SSantosh Puranik 
9581e1e598dSJonathan Doman         BMCWEB_LOG_DEBUG << "Boot mode: " << bootModeStr;
959491d8ee7SSantosh Puranik 
9600fda0f12SGeorge Liu         aResp->res
9610fda0f12SGeorge Liu             .jsonValue["Boot"]
962002d39b4SEd Tanous                       ["BootSourceOverrideTarget@Redfish.AllowableValues"] = {
963002d39b4SEd Tanous             "None", "Pxe", "Hdd", "Cd", "Diags", "BiosSetup", "Usb"};
964491d8ee7SSantosh Puranik 
9651e1e598dSJonathan Doman         if (bootModeStr !=
966491d8ee7SSantosh Puranik             "xyz.openbmc_project.Control.Boot.Mode.Modes.Regular")
967491d8ee7SSantosh Puranik         {
9681e1e598dSJonathan Doman             auto rfMode = dbusToRfBootMode(bootModeStr);
969491d8ee7SSantosh Puranik             if (!rfMode.empty())
970491d8ee7SSantosh Puranik             {
971491d8ee7SSantosh Puranik                 aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] =
972491d8ee7SSantosh Puranik                     rfMode;
973491d8ee7SSantosh Puranik             }
974491d8ee7SSantosh Puranik         }
9751e1e598dSJonathan Doman         });
976491d8ee7SSantosh Puranik }
977491d8ee7SSantosh Puranik 
978491d8ee7SSantosh Puranik /**
979c21865c4SKonstantin Aladyshev  * @brief Retrieves boot override source over DBUS
980491d8ee7SSantosh Puranik  *
981491d8ee7SSantosh Puranik  * @param[in] aResp         Shared pointer for generating response message.
982491d8ee7SSantosh Puranik  *
983491d8ee7SSantosh Puranik  * @return None.
984491d8ee7SSantosh Puranik  */
985c21865c4SKonstantin Aladyshev 
986c21865c4SKonstantin Aladyshev inline void
987c21865c4SKonstantin Aladyshev     getBootOverrideSource(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
988491d8ee7SSantosh Puranik {
9891e1e598dSJonathan Doman     sdbusplus::asio::getProperty<std::string>(
9901e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.Settings",
9911e1e598dSJonathan Doman         "/xyz/openbmc_project/control/host0/boot",
9921e1e598dSJonathan Doman         "xyz.openbmc_project.Control.Boot.Source", "BootSource",
9935e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
9941e1e598dSJonathan Doman                 const std::string& bootSourceStr) {
995491d8ee7SSantosh Puranik         if (ec)
996491d8ee7SSantosh Puranik         {
997491d8ee7SSantosh Puranik             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
9985ef735c8SNan Zhou             if (ec.value() == boost::asio::error::host_unreachable)
9995ef735c8SNan Zhou             {
10005ef735c8SNan Zhou                 return;
10015ef735c8SNan Zhou             }
1002491d8ee7SSantosh Puranik             messages::internalError(aResp->res);
1003491d8ee7SSantosh Puranik             return;
1004491d8ee7SSantosh Puranik         }
1005491d8ee7SSantosh Puranik 
10061e1e598dSJonathan Doman         BMCWEB_LOG_DEBUG << "Boot source: " << bootSourceStr;
1007491d8ee7SSantosh Puranik 
10081e1e598dSJonathan Doman         auto rfSource = dbusToRfBootSource(bootSourceStr);
1009491d8ee7SSantosh Puranik         if (!rfSource.empty())
1010491d8ee7SSantosh Puranik         {
1011002d39b4SEd Tanous             aResp->res.jsonValue["Boot"]["BootSourceOverrideTarget"] = rfSource;
1012491d8ee7SSantosh Puranik         }
1013cd9a4666SKonstantin Aladyshev 
1014cd9a4666SKonstantin Aladyshev         // Get BootMode as BootSourceOverrideTarget is constructed
1015cd9a4666SKonstantin Aladyshev         // from both BootSource and BootMode
1016c21865c4SKonstantin Aladyshev         getBootOverrideMode(aResp);
10171e1e598dSJonathan Doman         });
1018491d8ee7SSantosh Puranik }
1019491d8ee7SSantosh Puranik 
1020491d8ee7SSantosh Puranik /**
1021c21865c4SKonstantin Aladyshev  * @brief This functions abstracts all the logic behind getting a
1022c21865c4SKonstantin Aladyshev  * "BootSourceOverrideEnabled" property from an overall boot override enable
1023c21865c4SKonstantin Aladyshev  * state
1024491d8ee7SSantosh Puranik  *
1025491d8ee7SSantosh Puranik  * @param[in] aResp     Shared pointer for generating response message.
1026491d8ee7SSantosh Puranik  *
1027491d8ee7SSantosh Puranik  * @return None.
1028491d8ee7SSantosh Puranik  */
1029491d8ee7SSantosh Puranik 
1030c21865c4SKonstantin Aladyshev inline void
1031c21865c4SKonstantin Aladyshev     processBootOverrideEnable(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
1032c21865c4SKonstantin Aladyshev                               const bool bootOverrideEnableSetting)
1033c21865c4SKonstantin Aladyshev {
1034c21865c4SKonstantin Aladyshev     if (!bootOverrideEnableSetting)
1035c21865c4SKonstantin Aladyshev     {
1036c21865c4SKonstantin Aladyshev         aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] = "Disabled";
1037c21865c4SKonstantin Aladyshev         return;
1038c21865c4SKonstantin Aladyshev     }
1039c21865c4SKonstantin Aladyshev 
1040c21865c4SKonstantin Aladyshev     // If boot source override is enabled, we need to check 'one_time'
1041c21865c4SKonstantin Aladyshev     // property to set a correct value for the "BootSourceOverrideEnabled"
10421e1e598dSJonathan Doman     sdbusplus::asio::getProperty<bool>(
10431e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.Settings",
10441e1e598dSJonathan Doman         "/xyz/openbmc_project/control/host0/boot/one_time",
10451e1e598dSJonathan Doman         "xyz.openbmc_project.Object.Enable", "Enabled",
10465e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec, bool oneTimeSetting) {
1047491d8ee7SSantosh Puranik         if (ec)
1048491d8ee7SSantosh Puranik         {
1049491d8ee7SSantosh Puranik             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1050c21865c4SKonstantin Aladyshev             messages::internalError(aResp->res);
1051491d8ee7SSantosh Puranik             return;
1052491d8ee7SSantosh Puranik         }
1053491d8ee7SSantosh Puranik 
1054c21865c4SKonstantin Aladyshev         if (oneTimeSetting)
1055c21865c4SKonstantin Aladyshev         {
1056002d39b4SEd Tanous             aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] = "Once";
1057c21865c4SKonstantin Aladyshev         }
1058c21865c4SKonstantin Aladyshev         else
1059c21865c4SKonstantin Aladyshev         {
1060c21865c4SKonstantin Aladyshev             aResp->res.jsonValue["Boot"]["BootSourceOverrideEnabled"] =
1061c21865c4SKonstantin Aladyshev                 "Continuous";
1062c21865c4SKonstantin Aladyshev         }
10631e1e598dSJonathan Doman         });
1064491d8ee7SSantosh Puranik }
1065491d8ee7SSantosh Puranik 
1066491d8ee7SSantosh Puranik /**
1067c21865c4SKonstantin Aladyshev  * @brief Retrieves boot override enable over DBUS
1068c21865c4SKonstantin Aladyshev  *
1069c21865c4SKonstantin Aladyshev  * @param[in] aResp     Shared pointer for generating response message.
1070c21865c4SKonstantin Aladyshev  *
1071c21865c4SKonstantin Aladyshev  * @return None.
1072c21865c4SKonstantin Aladyshev  */
1073c21865c4SKonstantin Aladyshev 
1074c21865c4SKonstantin Aladyshev inline void
1075c21865c4SKonstantin Aladyshev     getBootOverrideEnable(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
1076c21865c4SKonstantin Aladyshev {
10771e1e598dSJonathan Doman     sdbusplus::asio::getProperty<bool>(
10781e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.Settings",
10791e1e598dSJonathan Doman         "/xyz/openbmc_project/control/host0/boot",
10801e1e598dSJonathan Doman         "xyz.openbmc_project.Object.Enable", "Enabled",
10815e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
10821e1e598dSJonathan Doman                 const bool bootOverrideEnable) {
1083c21865c4SKonstantin Aladyshev         if (ec)
1084c21865c4SKonstantin Aladyshev         {
1085c21865c4SKonstantin Aladyshev             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
10865ef735c8SNan Zhou             if (ec.value() == boost::asio::error::host_unreachable)
10875ef735c8SNan Zhou             {
10885ef735c8SNan Zhou                 return;
10895ef735c8SNan Zhou             }
1090c21865c4SKonstantin Aladyshev             messages::internalError(aResp->res);
1091c21865c4SKonstantin Aladyshev             return;
1092c21865c4SKonstantin Aladyshev         }
1093c21865c4SKonstantin Aladyshev 
10941e1e598dSJonathan Doman         processBootOverrideEnable(aResp, bootOverrideEnable);
10951e1e598dSJonathan Doman         });
1096c21865c4SKonstantin Aladyshev }
1097c21865c4SKonstantin Aladyshev 
1098c21865c4SKonstantin Aladyshev /**
1099c21865c4SKonstantin Aladyshev  * @brief Retrieves boot source override properties
1100c21865c4SKonstantin Aladyshev  *
1101c21865c4SKonstantin Aladyshev  * @param[in] aResp     Shared pointer for generating response message.
1102c21865c4SKonstantin Aladyshev  *
1103c21865c4SKonstantin Aladyshev  * @return None.
1104c21865c4SKonstantin Aladyshev  */
1105c21865c4SKonstantin Aladyshev inline void getBootProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
1106c21865c4SKonstantin Aladyshev {
1107c21865c4SKonstantin Aladyshev     BMCWEB_LOG_DEBUG << "Get boot information.";
1108c21865c4SKonstantin Aladyshev 
1109c21865c4SKonstantin Aladyshev     getBootOverrideSource(aResp);
1110c21865c4SKonstantin Aladyshev     getBootOverrideType(aResp);
1111c21865c4SKonstantin Aladyshev     getBootOverrideEnable(aResp);
1112c21865c4SKonstantin Aladyshev }
1113c21865c4SKonstantin Aladyshev 
1114c21865c4SKonstantin Aladyshev /**
1115c0557e1aSGunnar Mills  * @brief Retrieves the Last Reset Time
1116c0557e1aSGunnar Mills  *
1117c0557e1aSGunnar Mills  * "Reset" is an overloaded term in Redfish, "Reset" includes power on
1118c0557e1aSGunnar Mills  * and power off. Even though this is the "system" Redfish object look at the
1119c0557e1aSGunnar Mills  * chassis D-Bus interface for the LastStateChangeTime since this has the
1120c0557e1aSGunnar Mills  * last power operation time.
1121c0557e1aSGunnar Mills  *
1122c0557e1aSGunnar Mills  * @param[in] aResp     Shared pointer for generating response message.
1123c0557e1aSGunnar Mills  *
1124c0557e1aSGunnar Mills  * @return None.
1125c0557e1aSGunnar Mills  */
11268d1b46d7Szhanghch05 inline void getLastResetTime(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
1127c0557e1aSGunnar Mills {
1128c0557e1aSGunnar Mills     BMCWEB_LOG_DEBUG << "Getting System Last Reset Time";
1129c0557e1aSGunnar Mills 
11301e1e598dSJonathan Doman     sdbusplus::asio::getProperty<uint64_t>(
11311e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.State.Chassis",
11321e1e598dSJonathan Doman         "/xyz/openbmc_project/state/chassis0",
11331e1e598dSJonathan Doman         "xyz.openbmc_project.State.Chassis", "LastStateChangeTime",
11345e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec, uint64_t lastResetTime) {
1135c0557e1aSGunnar Mills         if (ec)
1136c0557e1aSGunnar Mills         {
1137c0557e1aSGunnar Mills             BMCWEB_LOG_DEBUG << "D-BUS response error " << ec;
1138c0557e1aSGunnar Mills             return;
1139c0557e1aSGunnar Mills         }
1140c0557e1aSGunnar Mills 
1141c0557e1aSGunnar Mills         // LastStateChangeTime is epoch time, in milliseconds
1142c0557e1aSGunnar Mills         // https://github.com/openbmc/phosphor-dbus-interfaces/blob/33e8e1dd64da53a66e888d33dc82001305cd0bf9/xyz/openbmc_project/State/Chassis.interface.yaml#L19
11431e1e598dSJonathan Doman         uint64_t lastResetTimeStamp = lastResetTime / 1000;
1144c0557e1aSGunnar Mills 
1145c0557e1aSGunnar Mills         // Convert to ISO 8601 standard
1146c0557e1aSGunnar Mills         aResp->res.jsonValue["LastResetTime"] =
11472b82937eSEd Tanous             redfish::time_utils::getDateTimeUint(lastResetTimeStamp);
11481e1e598dSJonathan Doman         });
1149c0557e1aSGunnar Mills }
1150c0557e1aSGunnar Mills 
1151c0557e1aSGunnar Mills /**
11526bd5a8d2SGunnar Mills  * @brief Retrieves Automatic Retry properties. Known on D-Bus as AutoReboot.
11536bd5a8d2SGunnar Mills  *
11546bd5a8d2SGunnar Mills  * @param[in] aResp     Shared pointer for generating response message.
11556bd5a8d2SGunnar Mills  *
11566bd5a8d2SGunnar Mills  * @return None.
11576bd5a8d2SGunnar Mills  */
11588d1b46d7Szhanghch05 inline void getAutomaticRetry(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
11596bd5a8d2SGunnar Mills {
11606bd5a8d2SGunnar Mills     BMCWEB_LOG_DEBUG << "Get Automatic Retry policy";
11616bd5a8d2SGunnar Mills 
11621e1e598dSJonathan Doman     sdbusplus::asio::getProperty<bool>(
11631e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.Settings",
11641e1e598dSJonathan Doman         "/xyz/openbmc_project/control/host0/auto_reboot",
11651e1e598dSJonathan Doman         "xyz.openbmc_project.Control.Boot.RebootPolicy", "AutoReboot",
11665e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec, bool autoRebootEnabled) {
11676bd5a8d2SGunnar Mills         if (ec)
11686bd5a8d2SGunnar Mills         {
11696bd5a8d2SGunnar Mills             BMCWEB_LOG_DEBUG << "D-BUS response error " << ec;
11706bd5a8d2SGunnar Mills             return;
11716bd5a8d2SGunnar Mills         }
11726bd5a8d2SGunnar Mills 
11731e1e598dSJonathan Doman         BMCWEB_LOG_DEBUG << "Auto Reboot: " << autoRebootEnabled;
1174e05aec50SEd Tanous         if (autoRebootEnabled)
11756bd5a8d2SGunnar Mills         {
11766bd5a8d2SGunnar Mills             aResp->res.jsonValue["Boot"]["AutomaticRetryConfig"] =
11776bd5a8d2SGunnar Mills                 "RetryAttempts";
11786bd5a8d2SGunnar Mills             // If AutomaticRetry (AutoReboot) is enabled see how many
11796bd5a8d2SGunnar Mills             // attempts are left
11801e1e598dSJonathan Doman             sdbusplus::asio::getProperty<uint32_t>(
1181002d39b4SEd Tanous                 *crow::connections::systemBus, "xyz.openbmc_project.State.Host",
11821e1e598dSJonathan Doman                 "/xyz/openbmc_project/state/host0",
11831e1e598dSJonathan Doman                 "xyz.openbmc_project.Control.Boot.RebootAttempts",
11841e1e598dSJonathan Doman                 "AttemptsLeft",
11855e7e2dc5SEd Tanous                 [aResp](const boost::system::error_code& ec2,
1186914e2d5dSEd Tanous                         const uint32_t autoRebootAttemptsLeft) {
1187cb13a392SEd Tanous                 if (ec2)
11886bd5a8d2SGunnar Mills                 {
1189cb13a392SEd Tanous                     BMCWEB_LOG_DEBUG << "D-BUS response error " << ec2;
11906bd5a8d2SGunnar Mills                     return;
11916bd5a8d2SGunnar Mills                 }
11926bd5a8d2SGunnar Mills 
11936bd5a8d2SGunnar Mills                 BMCWEB_LOG_DEBUG << "Auto Reboot Attempts Left: "
11941e1e598dSJonathan Doman                                  << autoRebootAttemptsLeft;
11956bd5a8d2SGunnar Mills 
11966bd5a8d2SGunnar Mills                 aResp->res
1197002d39b4SEd Tanous                     .jsonValue["Boot"]["RemainingAutomaticRetryAttempts"] =
11981e1e598dSJonathan Doman                     autoRebootAttemptsLeft;
11991e1e598dSJonathan Doman                 });
12006bd5a8d2SGunnar Mills         }
12016bd5a8d2SGunnar Mills         else
12026bd5a8d2SGunnar Mills         {
1203002d39b4SEd Tanous             aResp->res.jsonValue["Boot"]["AutomaticRetryConfig"] = "Disabled";
12046bd5a8d2SGunnar Mills         }
12056bd5a8d2SGunnar Mills 
12066bd5a8d2SGunnar Mills         // Not on D-Bus. Hardcoded here:
12076bd5a8d2SGunnar Mills         // https://github.com/openbmc/phosphor-state-manager/blob/1dbbef42675e94fb1f78edb87d6b11380260535a/meson_options.txt#L71
12086bd5a8d2SGunnar Mills         aResp->res.jsonValue["Boot"]["AutomaticRetryAttempts"] = 3;
120969f35306SGunnar Mills 
121069f35306SGunnar Mills         // "AutomaticRetryConfig" can be 3 values, Disabled, RetryAlways,
121169f35306SGunnar Mills         // and RetryAttempts. OpenBMC only supports Disabled and
121269f35306SGunnar Mills         // RetryAttempts.
1213002d39b4SEd Tanous         aResp->res.jsonValue["Boot"]
12140fda0f12SGeorge Liu                             ["AutomaticRetryConfig@Redfish.AllowableValues"] = {
12150fda0f12SGeorge Liu             "Disabled", "RetryAttempts"};
12161e1e598dSJonathan Doman         });
12176bd5a8d2SGunnar Mills }
12186bd5a8d2SGunnar Mills 
12196bd5a8d2SGunnar Mills /**
1220c6a620f2SGeorge Liu  * @brief Retrieves power restore policy over DBUS.
1221c6a620f2SGeorge Liu  *
1222c6a620f2SGeorge Liu  * @param[in] aResp     Shared pointer for generating response message.
1223c6a620f2SGeorge Liu  *
1224c6a620f2SGeorge Liu  * @return None.
1225c6a620f2SGeorge Liu  */
12268d1b46d7Szhanghch05 inline void
12278d1b46d7Szhanghch05     getPowerRestorePolicy(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
1228c6a620f2SGeorge Liu {
1229c6a620f2SGeorge Liu     BMCWEB_LOG_DEBUG << "Get power restore policy";
1230c6a620f2SGeorge Liu 
12311e1e598dSJonathan Doman     sdbusplus::asio::getProperty<std::string>(
12321e1e598dSJonathan Doman         *crow::connections::systemBus, "xyz.openbmc_project.Settings",
12331e1e598dSJonathan Doman         "/xyz/openbmc_project/control/host0/power_restore_policy",
12341e1e598dSJonathan Doman         "xyz.openbmc_project.Control.Power.RestorePolicy", "PowerRestorePolicy",
12355e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
12365e7e2dc5SEd Tanous                 const std::string& policy) {
1237c6a620f2SGeorge Liu         if (ec)
1238c6a620f2SGeorge Liu         {
1239c6a620f2SGeorge Liu             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1240c6a620f2SGeorge Liu             return;
1241c6a620f2SGeorge Liu         }
1242c6a620f2SGeorge Liu 
12430fda0f12SGeorge Liu         const boost::container::flat_map<std::string, std::string> policyMaps = {
12440fda0f12SGeorge Liu             {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOn",
1245c6a620f2SGeorge Liu              "AlwaysOn"},
12460fda0f12SGeorge Liu             {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOff",
1247c6a620f2SGeorge Liu              "AlwaysOff"},
12480fda0f12SGeorge Liu             {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy.Restore",
12494ed47cb8SMatthew Barth              "LastState"},
12504ed47cb8SMatthew Barth             // Return `AlwaysOff` when power restore policy set to "None"
12514ed47cb8SMatthew Barth             {"xyz.openbmc_project.Control.Power.RestorePolicy.Policy.None",
12524ed47cb8SMatthew Barth              "AlwaysOff"}};
1253c6a620f2SGeorge Liu 
12541e1e598dSJonathan Doman         auto policyMapsIt = policyMaps.find(policy);
1255c6a620f2SGeorge Liu         if (policyMapsIt == policyMaps.end())
1256c6a620f2SGeorge Liu         {
1257c6a620f2SGeorge Liu             messages::internalError(aResp->res);
1258c6a620f2SGeorge Liu             return;
1259c6a620f2SGeorge Liu         }
1260c6a620f2SGeorge Liu 
1261c6a620f2SGeorge Liu         aResp->res.jsonValue["PowerRestorePolicy"] = policyMapsIt->second;
12621e1e598dSJonathan Doman         });
1263c6a620f2SGeorge Liu }
1264c6a620f2SGeorge Liu 
1265c6a620f2SGeorge Liu /**
12661981771bSAli Ahmed  * @brief Get TrustedModuleRequiredToBoot property. Determines whether or not
12671981771bSAli Ahmed  * TPM is required for booting the host.
12681981771bSAli Ahmed  *
12691981771bSAli Ahmed  * @param[in] aResp     Shared pointer for generating response message.
12701981771bSAli Ahmed  *
12711981771bSAli Ahmed  * @return None.
12721981771bSAli Ahmed  */
12731981771bSAli Ahmed inline void getTrustedModuleRequiredToBoot(
12741981771bSAli Ahmed     const std::shared_ptr<bmcweb::AsyncResp>& aResp)
12751981771bSAli Ahmed {
12761981771bSAli Ahmed     BMCWEB_LOG_DEBUG << "Get TPM required to boot.";
1277e99073f5SGeorge Liu     constexpr std::array<std::string_view, 1> interfaces = {
1278e99073f5SGeorge Liu         "xyz.openbmc_project.Control.TPM.Policy"};
1279e99073f5SGeorge Liu     dbus::utility::getSubTree(
1280e99073f5SGeorge Liu         "/", 0, interfaces,
1281e99073f5SGeorge Liu         [aResp](const boost::system::error_code& ec,
1282b9d36b47SEd Tanous                 const dbus::utility::MapperGetSubTreeResponse& subtree) {
12831981771bSAli Ahmed         if (ec)
12841981771bSAli Ahmed         {
1285002d39b4SEd Tanous             BMCWEB_LOG_DEBUG << "DBUS response error on TPM.Policy GetSubTree"
1286002d39b4SEd Tanous                              << ec;
12871981771bSAli Ahmed             // This is an optional D-Bus object so just return if
12881981771bSAli Ahmed             // error occurs
12891981771bSAli Ahmed             return;
12901981771bSAli Ahmed         }
129126f6976fSEd Tanous         if (subtree.empty())
12921981771bSAli Ahmed         {
12931981771bSAli Ahmed             // As noted above, this is an optional interface so just return
12941981771bSAli Ahmed             // if there is no instance found
12951981771bSAli Ahmed             return;
12961981771bSAli Ahmed         }
12971981771bSAli Ahmed 
12981981771bSAli Ahmed         /* When there is more than one TPMEnable object... */
12991981771bSAli Ahmed         if (subtree.size() > 1)
13001981771bSAli Ahmed         {
13011981771bSAli Ahmed             BMCWEB_LOG_DEBUG
13021981771bSAli Ahmed                 << "DBUS response has more than 1 TPM Enable object:"
13031981771bSAli Ahmed                 << subtree.size();
13041981771bSAli Ahmed             // Throw an internal Error and return
13051981771bSAli Ahmed             messages::internalError(aResp->res);
13061981771bSAli Ahmed             return;
13071981771bSAli Ahmed         }
13081981771bSAli Ahmed 
13091981771bSAli Ahmed         // Make sure the Dbus response map has a service and objectPath
13101981771bSAli Ahmed         // field
13111981771bSAli Ahmed         if (subtree[0].first.empty() || subtree[0].second.size() != 1)
13121981771bSAli Ahmed         {
13131981771bSAli Ahmed             BMCWEB_LOG_DEBUG << "TPM.Policy mapper error!";
13141981771bSAli Ahmed             messages::internalError(aResp->res);
13151981771bSAli Ahmed             return;
13161981771bSAli Ahmed         }
13171981771bSAli Ahmed 
13181981771bSAli Ahmed         const std::string& path = subtree[0].first;
13191981771bSAli Ahmed         const std::string& serv = subtree[0].second.begin()->first;
13201981771bSAli Ahmed 
13211981771bSAli Ahmed         // Valid TPM Enable object found, now reading the current value
13221e1e598dSJonathan Doman         sdbusplus::asio::getProperty<bool>(
13231e1e598dSJonathan Doman             *crow::connections::systemBus, serv, path,
13241e1e598dSJonathan Doman             "xyz.openbmc_project.Control.TPM.Policy", "TPMEnable",
13255e7e2dc5SEd Tanous             [aResp](const boost::system::error_code& ec2, bool tpmRequired) {
13268a592810SEd Tanous             if (ec2)
13271981771bSAli Ahmed             {
1328002d39b4SEd Tanous                 BMCWEB_LOG_DEBUG << "D-BUS response error on TPM.Policy Get"
13298a592810SEd Tanous                                  << ec2;
13301981771bSAli Ahmed                 messages::internalError(aResp->res);
13311981771bSAli Ahmed                 return;
13321981771bSAli Ahmed             }
13331981771bSAli Ahmed 
13341e1e598dSJonathan Doman             if (tpmRequired)
13351981771bSAli Ahmed             {
1336002d39b4SEd Tanous                 aResp->res.jsonValue["Boot"]["TrustedModuleRequiredToBoot"] =
13371981771bSAli Ahmed                     "Required";
13381981771bSAli Ahmed             }
13391981771bSAli Ahmed             else
13401981771bSAli Ahmed             {
1341002d39b4SEd Tanous                 aResp->res.jsonValue["Boot"]["TrustedModuleRequiredToBoot"] =
13421981771bSAli Ahmed                     "Disabled";
13431981771bSAli Ahmed             }
13441e1e598dSJonathan Doman             });
1345e99073f5SGeorge Liu         });
13461981771bSAli Ahmed }
13471981771bSAli Ahmed 
13481981771bSAli Ahmed /**
13491c05dae3SAli Ahmed  * @brief Set TrustedModuleRequiredToBoot property. Determines whether or not
13501c05dae3SAli Ahmed  * TPM is required for booting the host.
13511c05dae3SAli Ahmed  *
13521c05dae3SAli Ahmed  * @param[in] aResp         Shared pointer for generating response message.
13531c05dae3SAli Ahmed  * @param[in] tpmRequired   Value to set TPM Required To Boot property to.
13541c05dae3SAli Ahmed  *
13551c05dae3SAli Ahmed  * @return None.
13561c05dae3SAli Ahmed  */
13571c05dae3SAli Ahmed inline void setTrustedModuleRequiredToBoot(
13581c05dae3SAli Ahmed     const std::shared_ptr<bmcweb::AsyncResp>& aResp, const bool tpmRequired)
13591c05dae3SAli Ahmed {
13601c05dae3SAli Ahmed     BMCWEB_LOG_DEBUG << "Set TrustedModuleRequiredToBoot.";
1361e99073f5SGeorge Liu     constexpr std::array<std::string_view, 1> interfaces = {
1362e99073f5SGeorge Liu         "xyz.openbmc_project.Control.TPM.Policy"};
1363e99073f5SGeorge Liu     dbus::utility::getSubTree(
1364e99073f5SGeorge Liu         "/", 0, interfaces,
1365e99073f5SGeorge Liu         [aResp,
1366e99073f5SGeorge Liu          tpmRequired](const boost::system::error_code& ec,
1367e99073f5SGeorge Liu                       const dbus::utility::MapperGetSubTreeResponse& subtree) {
13681c05dae3SAli Ahmed         if (ec)
13691c05dae3SAli Ahmed         {
1370002d39b4SEd Tanous             BMCWEB_LOG_DEBUG << "DBUS response error on TPM.Policy GetSubTree"
1371002d39b4SEd Tanous                              << ec;
13721c05dae3SAli Ahmed             messages::internalError(aResp->res);
13731c05dae3SAli Ahmed             return;
13741c05dae3SAli Ahmed         }
137526f6976fSEd Tanous         if (subtree.empty())
13761c05dae3SAli Ahmed         {
13771c05dae3SAli Ahmed             messages::propertyValueNotInList(aResp->res, "ComputerSystem",
13781c05dae3SAli Ahmed                                              "TrustedModuleRequiredToBoot");
13791c05dae3SAli Ahmed             return;
13801c05dae3SAli Ahmed         }
13811c05dae3SAli Ahmed 
13821c05dae3SAli Ahmed         /* When there is more than one TPMEnable object... */
13831c05dae3SAli Ahmed         if (subtree.size() > 1)
13841c05dae3SAli Ahmed         {
13851c05dae3SAli Ahmed             BMCWEB_LOG_DEBUG
13861c05dae3SAli Ahmed                 << "DBUS response has more than 1 TPM Enable object:"
13871c05dae3SAli Ahmed                 << subtree.size();
13881c05dae3SAli Ahmed             // Throw an internal Error and return
13891c05dae3SAli Ahmed             messages::internalError(aResp->res);
13901c05dae3SAli Ahmed             return;
13911c05dae3SAli Ahmed         }
13921c05dae3SAli Ahmed 
13931c05dae3SAli Ahmed         // Make sure the Dbus response map has a service and objectPath
13941c05dae3SAli Ahmed         // field
13951c05dae3SAli Ahmed         if (subtree[0].first.empty() || subtree[0].second.size() != 1)
13961c05dae3SAli Ahmed         {
13971c05dae3SAli Ahmed             BMCWEB_LOG_DEBUG << "TPM.Policy mapper error!";
13981c05dae3SAli Ahmed             messages::internalError(aResp->res);
13991c05dae3SAli Ahmed             return;
14001c05dae3SAli Ahmed         }
14011c05dae3SAli Ahmed 
14021c05dae3SAli Ahmed         const std::string& path = subtree[0].first;
14031c05dae3SAli Ahmed         const std::string& serv = subtree[0].second.begin()->first;
14041c05dae3SAli Ahmed 
14051c05dae3SAli Ahmed         if (serv.empty())
14061c05dae3SAli Ahmed         {
14071c05dae3SAli Ahmed             BMCWEB_LOG_DEBUG << "TPM.Policy service mapper error!";
14081c05dae3SAli Ahmed             messages::internalError(aResp->res);
14091c05dae3SAli Ahmed             return;
14101c05dae3SAli Ahmed         }
14111c05dae3SAli Ahmed 
14121c05dae3SAli Ahmed         // Valid TPM Enable object found, now setting the value
14131c05dae3SAli Ahmed         crow::connections::systemBus->async_method_call(
14145e7e2dc5SEd Tanous             [aResp](const boost::system::error_code& ec2) {
14158a592810SEd Tanous             if (ec2)
14161c05dae3SAli Ahmed             {
14170fda0f12SGeorge Liu                 BMCWEB_LOG_DEBUG
14180fda0f12SGeorge Liu                     << "DBUS response error: Set TrustedModuleRequiredToBoot"
14198a592810SEd Tanous                     << ec2;
14201c05dae3SAli Ahmed                 messages::internalError(aResp->res);
14211c05dae3SAli Ahmed                 return;
14221c05dae3SAli Ahmed             }
14231c05dae3SAli Ahmed             BMCWEB_LOG_DEBUG << "Set TrustedModuleRequiredToBoot done.";
14241c05dae3SAli Ahmed             },
14251c05dae3SAli Ahmed             serv, path, "org.freedesktop.DBus.Properties", "Set",
14261c05dae3SAli Ahmed             "xyz.openbmc_project.Control.TPM.Policy", "TPMEnable",
1427168e20c1SEd Tanous             dbus::utility::DbusVariantType(tpmRequired));
1428e99073f5SGeorge Liu         });
14291c05dae3SAli Ahmed }
14301c05dae3SAli Ahmed 
14311c05dae3SAli Ahmed /**
1432491d8ee7SSantosh Puranik  * @brief Sets boot properties into DBUS object(s).
1433491d8ee7SSantosh Puranik  *
1434491d8ee7SSantosh Puranik  * @param[in] aResp           Shared pointer for generating response message.
1435cd9a4666SKonstantin Aladyshev  * @param[in] bootType        The boot type to set.
1436cd9a4666SKonstantin Aladyshev  * @return Integer error code.
1437cd9a4666SKonstantin Aladyshev  */
1438cd9a4666SKonstantin Aladyshev inline void setBootType(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
1439cd9a4666SKonstantin Aladyshev                         const std::optional<std::string>& bootType)
1440cd9a4666SKonstantin Aladyshev {
1441c21865c4SKonstantin Aladyshev     std::string bootTypeStr;
1442cd9a4666SKonstantin Aladyshev 
1443c21865c4SKonstantin Aladyshev     if (!bootType)
1444cd9a4666SKonstantin Aladyshev     {
1445c21865c4SKonstantin Aladyshev         return;
1446c21865c4SKonstantin Aladyshev     }
1447c21865c4SKonstantin Aladyshev 
1448cd9a4666SKonstantin Aladyshev     // Source target specified
1449cd9a4666SKonstantin Aladyshev     BMCWEB_LOG_DEBUG << "Boot type: " << *bootType;
1450cd9a4666SKonstantin Aladyshev     // Figure out which DBUS interface and property to use
1451cd9a4666SKonstantin Aladyshev     if (*bootType == "Legacy")
1452cd9a4666SKonstantin Aladyshev     {
1453cd9a4666SKonstantin Aladyshev         bootTypeStr = "xyz.openbmc_project.Control.Boot.Type.Types.Legacy";
1454cd9a4666SKonstantin Aladyshev     }
1455cd9a4666SKonstantin Aladyshev     else if (*bootType == "UEFI")
1456cd9a4666SKonstantin Aladyshev     {
1457cd9a4666SKonstantin Aladyshev         bootTypeStr = "xyz.openbmc_project.Control.Boot.Type.Types.EFI";
1458cd9a4666SKonstantin Aladyshev     }
1459cd9a4666SKonstantin Aladyshev     else
1460cd9a4666SKonstantin Aladyshev     {
1461cd9a4666SKonstantin Aladyshev         BMCWEB_LOG_DEBUG << "Invalid property value for "
1462cd9a4666SKonstantin Aladyshev                             "BootSourceOverrideMode: "
1463cd9a4666SKonstantin Aladyshev                          << *bootType;
1464cd9a4666SKonstantin Aladyshev         messages::propertyValueNotInList(aResp->res, *bootType,
1465cd9a4666SKonstantin Aladyshev                                          "BootSourceOverrideMode");
1466cd9a4666SKonstantin Aladyshev         return;
1467cd9a4666SKonstantin Aladyshev     }
1468cd9a4666SKonstantin Aladyshev 
1469cd9a4666SKonstantin Aladyshev     // Act on validated parameters
1470cd9a4666SKonstantin Aladyshev     BMCWEB_LOG_DEBUG << "DBUS boot type: " << bootTypeStr;
1471cd9a4666SKonstantin Aladyshev 
1472cd9a4666SKonstantin Aladyshev     crow::connections::systemBus->async_method_call(
14735e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec) {
1474cd9a4666SKonstantin Aladyshev         if (ec)
1475cd9a4666SKonstantin Aladyshev         {
1476cd9a4666SKonstantin Aladyshev             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1477cd9a4666SKonstantin Aladyshev             if (ec.value() == boost::asio::error::host_unreachable)
1478cd9a4666SKonstantin Aladyshev             {
1479cd9a4666SKonstantin Aladyshev                 messages::resourceNotFound(aResp->res, "Set", "BootType");
1480cd9a4666SKonstantin Aladyshev                 return;
1481cd9a4666SKonstantin Aladyshev             }
1482cd9a4666SKonstantin Aladyshev             messages::internalError(aResp->res);
1483cd9a4666SKonstantin Aladyshev             return;
1484cd9a4666SKonstantin Aladyshev         }
1485cd9a4666SKonstantin Aladyshev         BMCWEB_LOG_DEBUG << "Boot type update done.";
1486cd9a4666SKonstantin Aladyshev         },
1487c21865c4SKonstantin Aladyshev         "xyz.openbmc_project.Settings",
1488c21865c4SKonstantin Aladyshev         "/xyz/openbmc_project/control/host0/boot",
1489cd9a4666SKonstantin Aladyshev         "org.freedesktop.DBus.Properties", "Set",
1490cd9a4666SKonstantin Aladyshev         "xyz.openbmc_project.Control.Boot.Type", "BootType",
1491168e20c1SEd Tanous         dbus::utility::DbusVariantType(bootTypeStr));
1492cd9a4666SKonstantin Aladyshev }
1493cd9a4666SKonstantin Aladyshev 
1494cd9a4666SKonstantin Aladyshev /**
1495cd9a4666SKonstantin Aladyshev  * @brief Sets boot properties into DBUS object(s).
1496cd9a4666SKonstantin Aladyshev  *
1497cd9a4666SKonstantin Aladyshev  * @param[in] aResp           Shared pointer for generating response message.
1498c21865c4SKonstantin Aladyshev  * @param[in] bootType        The boot type to set.
1499c21865c4SKonstantin Aladyshev  * @return Integer error code.
1500c21865c4SKonstantin Aladyshev  */
1501c21865c4SKonstantin Aladyshev inline void setBootEnable(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
1502c21865c4SKonstantin Aladyshev                           const std::optional<std::string>& bootEnable)
1503c21865c4SKonstantin Aladyshev {
1504c21865c4SKonstantin Aladyshev     if (!bootEnable)
1505c21865c4SKonstantin Aladyshev     {
1506c21865c4SKonstantin Aladyshev         return;
1507c21865c4SKonstantin Aladyshev     }
1508c21865c4SKonstantin Aladyshev     // Source target specified
1509c21865c4SKonstantin Aladyshev     BMCWEB_LOG_DEBUG << "Boot enable: " << *bootEnable;
1510c21865c4SKonstantin Aladyshev 
1511c21865c4SKonstantin Aladyshev     bool bootOverrideEnable = false;
1512c21865c4SKonstantin Aladyshev     bool bootOverridePersistent = false;
1513c21865c4SKonstantin Aladyshev     // Figure out which DBUS interface and property to use
1514c21865c4SKonstantin Aladyshev     if (*bootEnable == "Disabled")
1515c21865c4SKonstantin Aladyshev     {
1516c21865c4SKonstantin Aladyshev         bootOverrideEnable = false;
1517c21865c4SKonstantin Aladyshev     }
1518c21865c4SKonstantin Aladyshev     else if (*bootEnable == "Once")
1519c21865c4SKonstantin Aladyshev     {
1520c21865c4SKonstantin Aladyshev         bootOverrideEnable = true;
1521c21865c4SKonstantin Aladyshev         bootOverridePersistent = false;
1522c21865c4SKonstantin Aladyshev     }
1523c21865c4SKonstantin Aladyshev     else if (*bootEnable == "Continuous")
1524c21865c4SKonstantin Aladyshev     {
1525c21865c4SKonstantin Aladyshev         bootOverrideEnable = true;
1526c21865c4SKonstantin Aladyshev         bootOverridePersistent = true;
1527c21865c4SKonstantin Aladyshev     }
1528c21865c4SKonstantin Aladyshev     else
1529c21865c4SKonstantin Aladyshev     {
15300fda0f12SGeorge Liu         BMCWEB_LOG_DEBUG
15310fda0f12SGeorge Liu             << "Invalid property value for BootSourceOverrideEnabled: "
1532c21865c4SKonstantin Aladyshev             << *bootEnable;
1533c21865c4SKonstantin Aladyshev         messages::propertyValueNotInList(aResp->res, *bootEnable,
1534c21865c4SKonstantin Aladyshev                                          "BootSourceOverrideEnabled");
1535c21865c4SKonstantin Aladyshev         return;
1536c21865c4SKonstantin Aladyshev     }
1537c21865c4SKonstantin Aladyshev 
1538c21865c4SKonstantin Aladyshev     // Act on validated parameters
1539c21865c4SKonstantin Aladyshev     BMCWEB_LOG_DEBUG << "DBUS boot override enable: " << bootOverrideEnable;
1540c21865c4SKonstantin Aladyshev 
1541c21865c4SKonstantin Aladyshev     crow::connections::systemBus->async_method_call(
15425e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec2) {
15438a592810SEd Tanous         if (ec2)
1544c21865c4SKonstantin Aladyshev         {
15458a592810SEd Tanous             BMCWEB_LOG_DEBUG << "DBUS response error " << ec2;
1546c21865c4SKonstantin Aladyshev             messages::internalError(aResp->res);
1547c21865c4SKonstantin Aladyshev             return;
1548c21865c4SKonstantin Aladyshev         }
1549c21865c4SKonstantin Aladyshev         BMCWEB_LOG_DEBUG << "Boot override enable update done.";
1550c21865c4SKonstantin Aladyshev         },
1551c21865c4SKonstantin Aladyshev         "xyz.openbmc_project.Settings",
1552c21865c4SKonstantin Aladyshev         "/xyz/openbmc_project/control/host0/boot",
1553c21865c4SKonstantin Aladyshev         "org.freedesktop.DBus.Properties", "Set",
1554c21865c4SKonstantin Aladyshev         "xyz.openbmc_project.Object.Enable", "Enabled",
1555168e20c1SEd Tanous         dbus::utility::DbusVariantType(bootOverrideEnable));
1556c21865c4SKonstantin Aladyshev 
1557c21865c4SKonstantin Aladyshev     if (!bootOverrideEnable)
1558c21865c4SKonstantin Aladyshev     {
1559c21865c4SKonstantin Aladyshev         return;
1560c21865c4SKonstantin Aladyshev     }
1561c21865c4SKonstantin Aladyshev 
1562c21865c4SKonstantin Aladyshev     // In case boot override is enabled we need to set correct value for the
1563c21865c4SKonstantin Aladyshev     // 'one_time' enable DBus interface
1564c21865c4SKonstantin Aladyshev     BMCWEB_LOG_DEBUG << "DBUS boot override persistent: "
1565c21865c4SKonstantin Aladyshev                      << bootOverridePersistent;
1566c21865c4SKonstantin Aladyshev 
1567c21865c4SKonstantin Aladyshev     crow::connections::systemBus->async_method_call(
15685e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec) {
1569c21865c4SKonstantin Aladyshev         if (ec)
1570c21865c4SKonstantin Aladyshev         {
1571c21865c4SKonstantin Aladyshev             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1572c21865c4SKonstantin Aladyshev             messages::internalError(aResp->res);
1573c21865c4SKonstantin Aladyshev             return;
1574c21865c4SKonstantin Aladyshev         }
1575c21865c4SKonstantin Aladyshev         BMCWEB_LOG_DEBUG << "Boot one_time update done.";
1576c21865c4SKonstantin Aladyshev         },
1577c21865c4SKonstantin Aladyshev         "xyz.openbmc_project.Settings",
1578c21865c4SKonstantin Aladyshev         "/xyz/openbmc_project/control/host0/boot/one_time",
1579c21865c4SKonstantin Aladyshev         "org.freedesktop.DBus.Properties", "Set",
1580c21865c4SKonstantin Aladyshev         "xyz.openbmc_project.Object.Enable", "Enabled",
1581168e20c1SEd Tanous         dbus::utility::DbusVariantType(!bootOverridePersistent));
1582c21865c4SKonstantin Aladyshev }
1583c21865c4SKonstantin Aladyshev 
1584c21865c4SKonstantin Aladyshev /**
1585c21865c4SKonstantin Aladyshev  * @brief Sets boot properties into DBUS object(s).
1586c21865c4SKonstantin Aladyshev  *
1587c21865c4SKonstantin Aladyshev  * @param[in] aResp           Shared pointer for generating response message.
1588491d8ee7SSantosh Puranik  * @param[in] bootSource      The boot source to set.
1589491d8ee7SSantosh Puranik  *
1590265c1602SJohnathan Mantey  * @return Integer error code.
1591491d8ee7SSantosh Puranik  */
1592cd9a4666SKonstantin Aladyshev inline void setBootModeOrSource(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
1593cd9a4666SKonstantin Aladyshev                                 const std::optional<std::string>& bootSource)
1594491d8ee7SSantosh Puranik {
1595c21865c4SKonstantin Aladyshev     std::string bootSourceStr;
1596c21865c4SKonstantin Aladyshev     std::string bootModeStr;
1597944ffaf9SJohnathan Mantey 
1598c21865c4SKonstantin Aladyshev     if (!bootSource)
1599491d8ee7SSantosh Puranik     {
1600c21865c4SKonstantin Aladyshev         return;
1601c21865c4SKonstantin Aladyshev     }
1602c21865c4SKonstantin Aladyshev 
1603491d8ee7SSantosh Puranik     // Source target specified
1604491d8ee7SSantosh Puranik     BMCWEB_LOG_DEBUG << "Boot source: " << *bootSource;
1605491d8ee7SSantosh Puranik     // Figure out which DBUS interface and property to use
1606e662eae8SEd Tanous     if (assignBootParameters(aResp, *bootSource, bootSourceStr, bootModeStr) !=
1607e662eae8SEd Tanous         0)
1608491d8ee7SSantosh Puranik     {
1609944ffaf9SJohnathan Mantey         BMCWEB_LOG_DEBUG
1610944ffaf9SJohnathan Mantey             << "Invalid property value for BootSourceOverrideTarget: "
1611491d8ee7SSantosh Puranik             << *bootSource;
1612491d8ee7SSantosh Puranik         messages::propertyValueNotInList(aResp->res, *bootSource,
1613491d8ee7SSantosh Puranik                                          "BootSourceTargetOverride");
1614491d8ee7SSantosh Puranik         return;
1615491d8ee7SSantosh Puranik     }
1616491d8ee7SSantosh Puranik 
1617944ffaf9SJohnathan Mantey     // Act on validated parameters
1618944ffaf9SJohnathan Mantey     BMCWEB_LOG_DEBUG << "DBUS boot source: " << bootSourceStr;
1619944ffaf9SJohnathan Mantey     BMCWEB_LOG_DEBUG << "DBUS boot mode: " << bootModeStr;
1620944ffaf9SJohnathan Mantey 
1621491d8ee7SSantosh Puranik     crow::connections::systemBus->async_method_call(
16225e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec) {
1623491d8ee7SSantosh Puranik         if (ec)
1624491d8ee7SSantosh Puranik         {
1625491d8ee7SSantosh Puranik             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1626491d8ee7SSantosh Puranik             messages::internalError(aResp->res);
1627491d8ee7SSantosh Puranik             return;
1628491d8ee7SSantosh Puranik         }
1629491d8ee7SSantosh Puranik         BMCWEB_LOG_DEBUG << "Boot source update done.";
1630491d8ee7SSantosh Puranik         },
1631c21865c4SKonstantin Aladyshev         "xyz.openbmc_project.Settings",
1632c21865c4SKonstantin Aladyshev         "/xyz/openbmc_project/control/host0/boot",
1633491d8ee7SSantosh Puranik         "org.freedesktop.DBus.Properties", "Set",
1634491d8ee7SSantosh Puranik         "xyz.openbmc_project.Control.Boot.Source", "BootSource",
1635168e20c1SEd Tanous         dbus::utility::DbusVariantType(bootSourceStr));
1636944ffaf9SJohnathan Mantey 
1637491d8ee7SSantosh Puranik     crow::connections::systemBus->async_method_call(
16385e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec) {
1639491d8ee7SSantosh Puranik         if (ec)
1640491d8ee7SSantosh Puranik         {
1641491d8ee7SSantosh Puranik             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1642491d8ee7SSantosh Puranik             messages::internalError(aResp->res);
1643491d8ee7SSantosh Puranik             return;
1644491d8ee7SSantosh Puranik         }
1645491d8ee7SSantosh Puranik         BMCWEB_LOG_DEBUG << "Boot mode update done.";
1646491d8ee7SSantosh Puranik         },
1647c21865c4SKonstantin Aladyshev         "xyz.openbmc_project.Settings",
1648c21865c4SKonstantin Aladyshev         "/xyz/openbmc_project/control/host0/boot",
1649491d8ee7SSantosh Puranik         "org.freedesktop.DBus.Properties", "Set",
1650491d8ee7SSantosh Puranik         "xyz.openbmc_project.Control.Boot.Mode", "BootMode",
1651168e20c1SEd Tanous         dbus::utility::DbusVariantType(bootModeStr));
1652cd9a4666SKonstantin Aladyshev }
1653944ffaf9SJohnathan Mantey 
1654cd9a4666SKonstantin Aladyshev /**
1655c21865c4SKonstantin Aladyshev  * @brief Sets Boot source override properties.
1656491d8ee7SSantosh Puranik  *
1657491d8ee7SSantosh Puranik  * @param[in] aResp      Shared pointer for generating response message.
1658491d8ee7SSantosh Puranik  * @param[in] bootSource The boot source from incoming RF request.
1659cd9a4666SKonstantin Aladyshev  * @param[in] bootType   The boot type from incoming RF request.
1660491d8ee7SSantosh Puranik  * @param[in] bootEnable The boot override enable from incoming RF request.
1661491d8ee7SSantosh Puranik  *
1662265c1602SJohnathan Mantey  * @return Integer error code.
1663491d8ee7SSantosh Puranik  */
1664c21865c4SKonstantin Aladyshev 
1665c21865c4SKonstantin Aladyshev inline void setBootProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
1666c21865c4SKonstantin Aladyshev                               const std::optional<std::string>& bootSource,
1667c21865c4SKonstantin Aladyshev                               const std::optional<std::string>& bootType,
1668c21865c4SKonstantin Aladyshev                               const std::optional<std::string>& bootEnable)
1669491d8ee7SSantosh Puranik {
1670491d8ee7SSantosh Puranik     BMCWEB_LOG_DEBUG << "Set boot information.";
1671491d8ee7SSantosh Puranik 
1672c21865c4SKonstantin Aladyshev     setBootModeOrSource(aResp, bootSource);
1673c21865c4SKonstantin Aladyshev     setBootType(aResp, bootType);
1674c21865c4SKonstantin Aladyshev     setBootEnable(aResp, bootEnable);
1675491d8ee7SSantosh Puranik }
1676491d8ee7SSantosh Puranik 
1677c6a620f2SGeorge Liu /**
167898e386ecSGunnar Mills  * @brief Sets AssetTag
167998e386ecSGunnar Mills  *
168098e386ecSGunnar Mills  * @param[in] aResp   Shared pointer for generating response message.
168198e386ecSGunnar Mills  * @param[in] assetTag  "AssetTag" from request.
168298e386ecSGunnar Mills  *
168398e386ecSGunnar Mills  * @return None.
168498e386ecSGunnar Mills  */
16858d1b46d7Szhanghch05 inline void setAssetTag(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
168698e386ecSGunnar Mills                         const std::string& assetTag)
168798e386ecSGunnar Mills {
1688e99073f5SGeorge Liu     constexpr std::array<std::string_view, 1> interfaces = {
1689e99073f5SGeorge Liu         "xyz.openbmc_project.Inventory.Item.System"};
1690e99073f5SGeorge Liu     dbus::utility::getSubTree(
1691e99073f5SGeorge Liu         "/xyz/openbmc_project/inventory", 0, interfaces,
1692b9d36b47SEd Tanous         [aResp,
1693e99073f5SGeorge Liu          assetTag](const boost::system::error_code& ec,
1694b9d36b47SEd Tanous                    const dbus::utility::MapperGetSubTreeResponse& subtree) {
169598e386ecSGunnar Mills         if (ec)
169698e386ecSGunnar Mills         {
169798e386ecSGunnar Mills             BMCWEB_LOG_DEBUG << "D-Bus response error on GetSubTree " << ec;
169898e386ecSGunnar Mills             messages::internalError(aResp->res);
169998e386ecSGunnar Mills             return;
170098e386ecSGunnar Mills         }
170126f6976fSEd Tanous         if (subtree.empty())
170298e386ecSGunnar Mills         {
170398e386ecSGunnar Mills             BMCWEB_LOG_DEBUG << "Can't find system D-Bus object!";
170498e386ecSGunnar Mills             messages::internalError(aResp->res);
170598e386ecSGunnar Mills             return;
170698e386ecSGunnar Mills         }
170798e386ecSGunnar Mills         // Assume only 1 system D-Bus object
170898e386ecSGunnar Mills         // Throw an error if there is more than 1
170998e386ecSGunnar Mills         if (subtree.size() > 1)
171098e386ecSGunnar Mills         {
171198e386ecSGunnar Mills             BMCWEB_LOG_DEBUG << "Found more than 1 system D-Bus object!";
171298e386ecSGunnar Mills             messages::internalError(aResp->res);
171398e386ecSGunnar Mills             return;
171498e386ecSGunnar Mills         }
171598e386ecSGunnar Mills         if (subtree[0].first.empty() || subtree[0].second.size() != 1)
171698e386ecSGunnar Mills         {
171798e386ecSGunnar Mills             BMCWEB_LOG_DEBUG << "Asset Tag Set mapper error!";
171898e386ecSGunnar Mills             messages::internalError(aResp->res);
171998e386ecSGunnar Mills             return;
172098e386ecSGunnar Mills         }
172198e386ecSGunnar Mills 
172298e386ecSGunnar Mills         const std::string& path = subtree[0].first;
172398e386ecSGunnar Mills         const std::string& service = subtree[0].second.begin()->first;
172498e386ecSGunnar Mills 
172598e386ecSGunnar Mills         if (service.empty())
172698e386ecSGunnar Mills         {
172798e386ecSGunnar Mills             BMCWEB_LOG_DEBUG << "Asset Tag Set service mapper error!";
172898e386ecSGunnar Mills             messages::internalError(aResp->res);
172998e386ecSGunnar Mills             return;
173098e386ecSGunnar Mills         }
173198e386ecSGunnar Mills 
173298e386ecSGunnar Mills         crow::connections::systemBus->async_method_call(
17335e7e2dc5SEd Tanous             [aResp](const boost::system::error_code& ec2) {
173498e386ecSGunnar Mills             if (ec2)
173598e386ecSGunnar Mills             {
1736002d39b4SEd Tanous                 BMCWEB_LOG_DEBUG << "D-Bus response error on AssetTag Set "
1737002d39b4SEd Tanous                                  << ec2;
173898e386ecSGunnar Mills                 messages::internalError(aResp->res);
173998e386ecSGunnar Mills                 return;
174098e386ecSGunnar Mills             }
174198e386ecSGunnar Mills             },
174298e386ecSGunnar Mills             service, path, "org.freedesktop.DBus.Properties", "Set",
174398e386ecSGunnar Mills             "xyz.openbmc_project.Inventory.Decorator.AssetTag", "AssetTag",
1744168e20c1SEd Tanous             dbus::utility::DbusVariantType(assetTag));
1745e99073f5SGeorge Liu         });
174698e386ecSGunnar Mills }
174798e386ecSGunnar Mills 
174898e386ecSGunnar Mills /**
174969f35306SGunnar Mills  * @brief Sets automaticRetry (Auto Reboot)
175069f35306SGunnar Mills  *
175169f35306SGunnar Mills  * @param[in] aResp   Shared pointer for generating response message.
175269f35306SGunnar Mills  * @param[in] automaticRetryConfig  "AutomaticRetryConfig" from request.
175369f35306SGunnar Mills  *
175469f35306SGunnar Mills  * @return None.
175569f35306SGunnar Mills  */
17568d1b46d7Szhanghch05 inline void setAutomaticRetry(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
1757f23b7296SEd Tanous                               const std::string& automaticRetryConfig)
175869f35306SGunnar Mills {
175969f35306SGunnar Mills     BMCWEB_LOG_DEBUG << "Set Automatic Retry.";
176069f35306SGunnar Mills 
176169f35306SGunnar Mills     // OpenBMC only supports "Disabled" and "RetryAttempts".
1762543f4400SEd Tanous     bool autoRebootEnabled = false;
176369f35306SGunnar Mills 
176469f35306SGunnar Mills     if (automaticRetryConfig == "Disabled")
176569f35306SGunnar Mills     {
176669f35306SGunnar Mills         autoRebootEnabled = false;
176769f35306SGunnar Mills     }
176869f35306SGunnar Mills     else if (automaticRetryConfig == "RetryAttempts")
176969f35306SGunnar Mills     {
177069f35306SGunnar Mills         autoRebootEnabled = true;
177169f35306SGunnar Mills     }
177269f35306SGunnar Mills     else
177369f35306SGunnar Mills     {
17740fda0f12SGeorge Liu         BMCWEB_LOG_DEBUG << "Invalid property value for AutomaticRetryConfig: "
177569f35306SGunnar Mills                          << automaticRetryConfig;
177669f35306SGunnar Mills         messages::propertyValueNotInList(aResp->res, automaticRetryConfig,
177769f35306SGunnar Mills                                          "AutomaticRetryConfig");
177869f35306SGunnar Mills         return;
177969f35306SGunnar Mills     }
178069f35306SGunnar Mills 
178169f35306SGunnar Mills     crow::connections::systemBus->async_method_call(
17825e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec) {
178369f35306SGunnar Mills         if (ec)
178469f35306SGunnar Mills         {
178569f35306SGunnar Mills             messages::internalError(aResp->res);
178669f35306SGunnar Mills             return;
178769f35306SGunnar Mills         }
178869f35306SGunnar Mills         },
178969f35306SGunnar Mills         "xyz.openbmc_project.Settings",
179069f35306SGunnar Mills         "/xyz/openbmc_project/control/host0/auto_reboot",
179169f35306SGunnar Mills         "org.freedesktop.DBus.Properties", "Set",
179269f35306SGunnar Mills         "xyz.openbmc_project.Control.Boot.RebootPolicy", "AutoReboot",
1793168e20c1SEd Tanous         dbus::utility::DbusVariantType(autoRebootEnabled));
179469f35306SGunnar Mills }
179569f35306SGunnar Mills 
179669f35306SGunnar Mills /**
1797c6a620f2SGeorge Liu  * @brief Sets power restore policy properties.
1798c6a620f2SGeorge Liu  *
1799c6a620f2SGeorge Liu  * @param[in] aResp   Shared pointer for generating response message.
1800c6a620f2SGeorge Liu  * @param[in] policy  power restore policy properties from request.
1801c6a620f2SGeorge Liu  *
1802c6a620f2SGeorge Liu  * @return None.
1803c6a620f2SGeorge Liu  */
18048d1b46d7Szhanghch05 inline void
18058d1b46d7Szhanghch05     setPowerRestorePolicy(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
18064e69c904SGunnar Mills                           const std::string& policy)
1807c6a620f2SGeorge Liu {
1808c6a620f2SGeorge Liu     BMCWEB_LOG_DEBUG << "Set power restore policy.";
1809c6a620f2SGeorge Liu 
1810c6a620f2SGeorge Liu     const boost::container::flat_map<std::string, std::string> policyMaps = {
18110fda0f12SGeorge Liu         {"AlwaysOn",
18120fda0f12SGeorge Liu          "xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOn"},
18130fda0f12SGeorge Liu         {"AlwaysOff",
18140fda0f12SGeorge Liu          "xyz.openbmc_project.Control.Power.RestorePolicy.Policy.AlwaysOff"},
18150fda0f12SGeorge Liu         {"LastState",
18160fda0f12SGeorge Liu          "xyz.openbmc_project.Control.Power.RestorePolicy.Policy.Restore"}};
1817c6a620f2SGeorge Liu 
1818c6a620f2SGeorge Liu     std::string powerRestorPolicy;
1819c6a620f2SGeorge Liu 
18204e69c904SGunnar Mills     auto policyMapsIt = policyMaps.find(policy);
1821c6a620f2SGeorge Liu     if (policyMapsIt == policyMaps.end())
1822c6a620f2SGeorge Liu     {
18234e69c904SGunnar Mills         messages::propertyValueNotInList(aResp->res, policy,
18244e69c904SGunnar Mills                                          "PowerRestorePolicy");
1825c6a620f2SGeorge Liu         return;
1826c6a620f2SGeorge Liu     }
1827c6a620f2SGeorge Liu 
1828c6a620f2SGeorge Liu     powerRestorPolicy = policyMapsIt->second;
1829c6a620f2SGeorge Liu 
1830c6a620f2SGeorge Liu     crow::connections::systemBus->async_method_call(
18315e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec) {
1832c6a620f2SGeorge Liu         if (ec)
1833c6a620f2SGeorge Liu         {
1834c6a620f2SGeorge Liu             messages::internalError(aResp->res);
1835c6a620f2SGeorge Liu             return;
1836c6a620f2SGeorge Liu         }
1837c6a620f2SGeorge Liu         },
1838c6a620f2SGeorge Liu         "xyz.openbmc_project.Settings",
1839c6a620f2SGeorge Liu         "/xyz/openbmc_project/control/host0/power_restore_policy",
1840c6a620f2SGeorge Liu         "org.freedesktop.DBus.Properties", "Set",
1841c6a620f2SGeorge Liu         "xyz.openbmc_project.Control.Power.RestorePolicy", "PowerRestorePolicy",
1842168e20c1SEd Tanous         dbus::utility::DbusVariantType(powerRestorPolicy));
1843c6a620f2SGeorge Liu }
1844c6a620f2SGeorge Liu 
1845a6349918SAppaRao Puli #ifdef BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE
1846a6349918SAppaRao Puli /**
1847a6349918SAppaRao Puli  * @brief Retrieves provisioning status
1848a6349918SAppaRao Puli  *
1849a6349918SAppaRao Puli  * @param[in] aResp     Shared pointer for completing asynchronous calls.
1850a6349918SAppaRao Puli  *
1851a6349918SAppaRao Puli  * @return None.
1852a6349918SAppaRao Puli  */
18538d1b46d7Szhanghch05 inline void getProvisioningStatus(std::shared_ptr<bmcweb::AsyncResp> aResp)
1854a6349918SAppaRao Puli {
1855a6349918SAppaRao Puli     BMCWEB_LOG_DEBUG << "Get OEM information.";
1856bc1d29deSKrzysztof Grobelny     sdbusplus::asio::getAllProperties(
1857bc1d29deSKrzysztof Grobelny         *crow::connections::systemBus, "xyz.openbmc_project.PFR.Manager",
1858bc1d29deSKrzysztof Grobelny         "/xyz/openbmc_project/pfr", "xyz.openbmc_project.PFR.Attributes",
18595e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
1860b9d36b47SEd Tanous                 const dbus::utility::DBusPropertiesMap& propertiesList) {
1861b99fb1a9SAppaRao Puli         nlohmann::json& oemPFR =
1862b99fb1a9SAppaRao Puli             aResp->res.jsonValue["Oem"]["OpenBmc"]["FirmwareProvisioning"];
186350626f4fSJames Feist         aResp->res.jsonValue["Oem"]["OpenBmc"]["@odata.type"] =
186450626f4fSJames Feist             "#OemComputerSystem.OpenBmc";
186550626f4fSJames Feist         oemPFR["@odata.type"] = "#OemComputerSystem.FirmwareProvisioning";
186650626f4fSJames Feist 
1867a6349918SAppaRao Puli         if (ec)
1868a6349918SAppaRao Puli         {
1869a6349918SAppaRao Puli             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
1870b99fb1a9SAppaRao Puli             // not an error, don't have to have the interface
1871b99fb1a9SAppaRao Puli             oemPFR["ProvisioningStatus"] = "NotProvisioned";
1872a6349918SAppaRao Puli             return;
1873a6349918SAppaRao Puli         }
1874a6349918SAppaRao Puli 
1875a6349918SAppaRao Puli         const bool* provState = nullptr;
1876a6349918SAppaRao Puli         const bool* lockState = nullptr;
1877bc1d29deSKrzysztof Grobelny 
1878bc1d29deSKrzysztof Grobelny         const bool success = sdbusplus::unpackPropertiesNoThrow(
18790d4befa8SJiaqing Zhao             dbus_utils::UnpackErrorPrinter(), propertiesList, "UfmProvisioned",
18800d4befa8SJiaqing Zhao             provState, "UfmLocked", lockState);
1881bc1d29deSKrzysztof Grobelny 
1882bc1d29deSKrzysztof Grobelny         if (!success)
1883a6349918SAppaRao Puli         {
1884bc1d29deSKrzysztof Grobelny             messages::internalError(aResp->res);
1885bc1d29deSKrzysztof Grobelny             return;
1886a6349918SAppaRao Puli         }
1887a6349918SAppaRao Puli 
1888a6349918SAppaRao Puli         if ((provState == nullptr) || (lockState == nullptr))
1889a6349918SAppaRao Puli         {
1890a6349918SAppaRao Puli             BMCWEB_LOG_DEBUG << "Unable to get PFR attributes.";
1891a6349918SAppaRao Puli             messages::internalError(aResp->res);
1892a6349918SAppaRao Puli             return;
1893a6349918SAppaRao Puli         }
1894a6349918SAppaRao Puli 
1895a6349918SAppaRao Puli         if (*provState == true)
1896a6349918SAppaRao Puli         {
1897a6349918SAppaRao Puli             if (*lockState == true)
1898a6349918SAppaRao Puli             {
1899a6349918SAppaRao Puli                 oemPFR["ProvisioningStatus"] = "ProvisionedAndLocked";
1900a6349918SAppaRao Puli             }
1901a6349918SAppaRao Puli             else
1902a6349918SAppaRao Puli             {
1903a6349918SAppaRao Puli                 oemPFR["ProvisioningStatus"] = "ProvisionedButNotLocked";
1904a6349918SAppaRao Puli             }
1905a6349918SAppaRao Puli         }
1906a6349918SAppaRao Puli         else
1907a6349918SAppaRao Puli         {
1908a6349918SAppaRao Puli             oemPFR["ProvisioningStatus"] = "NotProvisioned";
1909a6349918SAppaRao Puli         }
1910bc1d29deSKrzysztof Grobelny         });
1911a6349918SAppaRao Puli }
1912a6349918SAppaRao Puli #endif
1913a6349918SAppaRao Puli 
1914491d8ee7SSantosh Puranik /**
19153a2d0424SChris Cain  * @brief Translate the PowerMode to a response message.
19163a2d0424SChris Cain  *
19173a2d0424SChris Cain  * @param[in] aResp  Shared pointer for generating response message.
19183a2d0424SChris Cain  * @param[in] modeValue  PowerMode value to be translated
19193a2d0424SChris Cain  *
19203a2d0424SChris Cain  * @return None.
19213a2d0424SChris Cain  */
19223a2d0424SChris Cain inline void translatePowerMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
19233a2d0424SChris Cain                                const std::string& modeValue)
19243a2d0424SChris Cain {
19250fda0f12SGeorge Liu     if (modeValue == "xyz.openbmc_project.Control.Power.Mode.PowerMode.Static")
19263a2d0424SChris Cain     {
19273a2d0424SChris Cain         aResp->res.jsonValue["PowerMode"] = "Static";
19283a2d0424SChris Cain     }
19290fda0f12SGeorge Liu     else if (
19300fda0f12SGeorge Liu         modeValue ==
19310fda0f12SGeorge Liu         "xyz.openbmc_project.Control.Power.Mode.PowerMode.MaximumPerformance")
19323a2d0424SChris Cain     {
19333a2d0424SChris Cain         aResp->res.jsonValue["PowerMode"] = "MaximumPerformance";
19343a2d0424SChris Cain     }
19350fda0f12SGeorge Liu     else if (modeValue ==
19360fda0f12SGeorge Liu              "xyz.openbmc_project.Control.Power.Mode.PowerMode.PowerSaving")
19373a2d0424SChris Cain     {
19383a2d0424SChris Cain         aResp->res.jsonValue["PowerMode"] = "PowerSaving";
19393a2d0424SChris Cain     }
19400fda0f12SGeorge Liu     else if (modeValue ==
19410fda0f12SGeorge Liu              "xyz.openbmc_project.Control.Power.Mode.PowerMode.OEM")
19423a2d0424SChris Cain     {
19433a2d0424SChris Cain         aResp->res.jsonValue["PowerMode"] = "OEM";
19443a2d0424SChris Cain     }
19453a2d0424SChris Cain     else
19463a2d0424SChris Cain     {
19473a2d0424SChris Cain         // Any other values would be invalid
19483a2d0424SChris Cain         BMCWEB_LOG_DEBUG << "PowerMode value was not valid: " << modeValue;
19493a2d0424SChris Cain         messages::internalError(aResp->res);
19503a2d0424SChris Cain     }
19513a2d0424SChris Cain }
19523a2d0424SChris Cain 
19533a2d0424SChris Cain /**
19543a2d0424SChris Cain  * @brief Retrieves system power mode
19553a2d0424SChris Cain  *
19563a2d0424SChris Cain  * @param[in] aResp  Shared pointer for generating response message.
19573a2d0424SChris Cain  *
19583a2d0424SChris Cain  * @return None.
19593a2d0424SChris Cain  */
19603a2d0424SChris Cain inline void getPowerMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
19613a2d0424SChris Cain {
19623a2d0424SChris Cain     BMCWEB_LOG_DEBUG << "Get power mode.";
19633a2d0424SChris Cain 
19643a2d0424SChris Cain     // Get Power Mode object path:
1965e99073f5SGeorge Liu     constexpr std::array<std::string_view, 1> interfaces = {
1966e99073f5SGeorge Liu         "xyz.openbmc_project.Control.Power.Mode"};
1967e99073f5SGeorge Liu     dbus::utility::getSubTree(
1968e99073f5SGeorge Liu         "/", 0, interfaces,
1969e99073f5SGeorge Liu         [aResp](const boost::system::error_code& ec,
1970b9d36b47SEd Tanous                 const dbus::utility::MapperGetSubTreeResponse& subtree) {
19713a2d0424SChris Cain         if (ec)
19723a2d0424SChris Cain         {
1973002d39b4SEd Tanous             BMCWEB_LOG_DEBUG << "DBUS response error on Power.Mode GetSubTree "
1974002d39b4SEd Tanous                              << ec;
19753a2d0424SChris Cain             // This is an optional D-Bus object so just return if
19763a2d0424SChris Cain             // error occurs
19773a2d0424SChris Cain             return;
19783a2d0424SChris Cain         }
19793a2d0424SChris Cain         if (subtree.empty())
19803a2d0424SChris Cain         {
19813a2d0424SChris Cain             // As noted above, this is an optional interface so just return
19823a2d0424SChris Cain             // if there is no instance found
19833a2d0424SChris Cain             return;
19843a2d0424SChris Cain         }
19853a2d0424SChris Cain         if (subtree.size() > 1)
19863a2d0424SChris Cain         {
19873a2d0424SChris Cain             // More then one PowerMode object is not supported and is an
19883a2d0424SChris Cain             // error
19893a2d0424SChris Cain             BMCWEB_LOG_DEBUG
19903a2d0424SChris Cain                 << "Found more than 1 system D-Bus Power.Mode objects: "
19913a2d0424SChris Cain                 << subtree.size();
19923a2d0424SChris Cain             messages::internalError(aResp->res);
19933a2d0424SChris Cain             return;
19943a2d0424SChris Cain         }
19953a2d0424SChris Cain         if ((subtree[0].first.empty()) || (subtree[0].second.size() != 1))
19963a2d0424SChris Cain         {
19973a2d0424SChris Cain             BMCWEB_LOG_DEBUG << "Power.Mode mapper error!";
19983a2d0424SChris Cain             messages::internalError(aResp->res);
19993a2d0424SChris Cain             return;
20003a2d0424SChris Cain         }
20013a2d0424SChris Cain         const std::string& path = subtree[0].first;
20023a2d0424SChris Cain         const std::string& service = subtree[0].second.begin()->first;
20033a2d0424SChris Cain         if (service.empty())
20043a2d0424SChris Cain         {
20053a2d0424SChris Cain             BMCWEB_LOG_DEBUG << "Power.Mode service mapper error!";
20063a2d0424SChris Cain             messages::internalError(aResp->res);
20073a2d0424SChris Cain             return;
20083a2d0424SChris Cain         }
20093a2d0424SChris Cain         // Valid Power Mode object found, now read the current value
20101e1e598dSJonathan Doman         sdbusplus::asio::getProperty<std::string>(
20111e1e598dSJonathan Doman             *crow::connections::systemBus, service, path,
20121e1e598dSJonathan Doman             "xyz.openbmc_project.Control.Power.Mode", "PowerMode",
20135e7e2dc5SEd Tanous             [aResp](const boost::system::error_code& ec2,
20141e1e598dSJonathan Doman                     const std::string& pmode) {
20158a592810SEd Tanous             if (ec2)
20163a2d0424SChris Cain             {
2017002d39b4SEd Tanous                 BMCWEB_LOG_DEBUG << "DBUS response error on PowerMode Get: "
20188a592810SEd Tanous                                  << ec2;
20193a2d0424SChris Cain                 messages::internalError(aResp->res);
20203a2d0424SChris Cain                 return;
20213a2d0424SChris Cain             }
20223a2d0424SChris Cain 
2023002d39b4SEd Tanous             aResp->res.jsonValue["PowerMode@Redfish.AllowableValues"] = {
2024002d39b4SEd Tanous                 "Static", "MaximumPerformance", "PowerSaving"};
20253a2d0424SChris Cain 
20261e1e598dSJonathan Doman             BMCWEB_LOG_DEBUG << "Current power mode: " << pmode;
20271e1e598dSJonathan Doman             translatePowerMode(aResp, pmode);
20281e1e598dSJonathan Doman             });
2029e99073f5SGeorge Liu         });
20303a2d0424SChris Cain }
20313a2d0424SChris Cain 
20323a2d0424SChris Cain /**
20333a2d0424SChris Cain  * @brief Validate the specified mode is valid and return the PowerMode
20343a2d0424SChris Cain  * name associated with that string
20353a2d0424SChris Cain  *
20363a2d0424SChris Cain  * @param[in] aResp   Shared pointer for generating response message.
20373a2d0424SChris Cain  * @param[in] modeString  String representing the desired PowerMode
20383a2d0424SChris Cain  *
20393a2d0424SChris Cain  * @return PowerMode value or empty string if mode is not valid
20403a2d0424SChris Cain  */
20413a2d0424SChris Cain inline std::string
20423a2d0424SChris Cain     validatePowerMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
20433a2d0424SChris Cain                       const std::string& modeString)
20443a2d0424SChris Cain {
20453a2d0424SChris Cain     std::string mode;
20463a2d0424SChris Cain 
20473a2d0424SChris Cain     if (modeString == "Static")
20483a2d0424SChris Cain     {
20493a2d0424SChris Cain         mode = "xyz.openbmc_project.Control.Power.Mode.PowerMode.Static";
20503a2d0424SChris Cain     }
20513a2d0424SChris Cain     else if (modeString == "MaximumPerformance")
20523a2d0424SChris Cain     {
20530fda0f12SGeorge Liu         mode =
20540fda0f12SGeorge Liu             "xyz.openbmc_project.Control.Power.Mode.PowerMode.MaximumPerformance";
20553a2d0424SChris Cain     }
20563a2d0424SChris Cain     else if (modeString == "PowerSaving")
20573a2d0424SChris Cain     {
20583a2d0424SChris Cain         mode = "xyz.openbmc_project.Control.Power.Mode.PowerMode.PowerSaving";
20593a2d0424SChris Cain     }
20603a2d0424SChris Cain     else
20613a2d0424SChris Cain     {
20623a2d0424SChris Cain         messages::propertyValueNotInList(aResp->res, modeString, "PowerMode");
20633a2d0424SChris Cain     }
20643a2d0424SChris Cain     return mode;
20653a2d0424SChris Cain }
20663a2d0424SChris Cain 
20673a2d0424SChris Cain /**
20683a2d0424SChris Cain  * @brief Sets system power mode.
20693a2d0424SChris Cain  *
20703a2d0424SChris Cain  * @param[in] aResp   Shared pointer for generating response message.
20713a2d0424SChris Cain  * @param[in] pmode   System power mode from request.
20723a2d0424SChris Cain  *
20733a2d0424SChris Cain  * @return None.
20743a2d0424SChris Cain  */
20753a2d0424SChris Cain inline void setPowerMode(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
20763a2d0424SChris Cain                          const std::string& pmode)
20773a2d0424SChris Cain {
20783a2d0424SChris Cain     BMCWEB_LOG_DEBUG << "Set power mode.";
20793a2d0424SChris Cain 
20803a2d0424SChris Cain     std::string powerMode = validatePowerMode(aResp, pmode);
20813a2d0424SChris Cain     if (powerMode.empty())
20823a2d0424SChris Cain     {
20833a2d0424SChris Cain         return;
20843a2d0424SChris Cain     }
20853a2d0424SChris Cain 
20863a2d0424SChris Cain     // Get Power Mode object path:
2087e99073f5SGeorge Liu     constexpr std::array<std::string_view, 1> interfaces = {
2088e99073f5SGeorge Liu         "xyz.openbmc_project.Control.Power.Mode"};
2089e99073f5SGeorge Liu     dbus::utility::getSubTree(
2090e99073f5SGeorge Liu         "/", 0, interfaces,
2091b9d36b47SEd Tanous         [aResp,
2092e99073f5SGeorge Liu          powerMode](const boost::system::error_code& ec,
2093b9d36b47SEd Tanous                     const dbus::utility::MapperGetSubTreeResponse& subtree) {
20943a2d0424SChris Cain         if (ec)
20953a2d0424SChris Cain         {
2096002d39b4SEd Tanous             BMCWEB_LOG_DEBUG << "DBUS response error on Power.Mode GetSubTree "
2097002d39b4SEd Tanous                              << ec;
20983a2d0424SChris Cain             // This is an optional D-Bus object, but user attempted to patch
20993a2d0424SChris Cain             messages::internalError(aResp->res);
21003a2d0424SChris Cain             return;
21013a2d0424SChris Cain         }
21023a2d0424SChris Cain         if (subtree.empty())
21033a2d0424SChris Cain         {
21043a2d0424SChris Cain             // This is an optional D-Bus object, but user attempted to patch
21053a2d0424SChris Cain             messages::resourceNotFound(aResp->res, "ComputerSystem",
21063a2d0424SChris Cain                                        "PowerMode");
21073a2d0424SChris Cain             return;
21083a2d0424SChris Cain         }
21093a2d0424SChris Cain         if (subtree.size() > 1)
21103a2d0424SChris Cain         {
21113a2d0424SChris Cain             // More then one PowerMode object is not supported and is an
21123a2d0424SChris Cain             // error
21133a2d0424SChris Cain             BMCWEB_LOG_DEBUG
21143a2d0424SChris Cain                 << "Found more than 1 system D-Bus Power.Mode objects: "
21153a2d0424SChris Cain                 << subtree.size();
21163a2d0424SChris Cain             messages::internalError(aResp->res);
21173a2d0424SChris Cain             return;
21183a2d0424SChris Cain         }
21193a2d0424SChris Cain         if ((subtree[0].first.empty()) || (subtree[0].second.size() != 1))
21203a2d0424SChris Cain         {
21213a2d0424SChris Cain             BMCWEB_LOG_DEBUG << "Power.Mode mapper error!";
21223a2d0424SChris Cain             messages::internalError(aResp->res);
21233a2d0424SChris Cain             return;
21243a2d0424SChris Cain         }
21253a2d0424SChris Cain         const std::string& path = subtree[0].first;
21263a2d0424SChris Cain         const std::string& service = subtree[0].second.begin()->first;
21273a2d0424SChris Cain         if (service.empty())
21283a2d0424SChris Cain         {
21293a2d0424SChris Cain             BMCWEB_LOG_DEBUG << "Power.Mode service mapper error!";
21303a2d0424SChris Cain             messages::internalError(aResp->res);
21313a2d0424SChris Cain             return;
21323a2d0424SChris Cain         }
21333a2d0424SChris Cain 
21343a2d0424SChris Cain         BMCWEB_LOG_DEBUG << "Setting power mode(" << powerMode << ") -> "
21353a2d0424SChris Cain                          << path;
21363a2d0424SChris Cain 
21373a2d0424SChris Cain         // Set the Power Mode property
21383a2d0424SChris Cain         crow::connections::systemBus->async_method_call(
21395e7e2dc5SEd Tanous             [aResp](const boost::system::error_code& ec2) {
21408a592810SEd Tanous             if (ec2)
21413a2d0424SChris Cain             {
21423a2d0424SChris Cain                 messages::internalError(aResp->res);
21433a2d0424SChris Cain                 return;
21443a2d0424SChris Cain             }
21453a2d0424SChris Cain             },
21463a2d0424SChris Cain             service, path, "org.freedesktop.DBus.Properties", "Set",
21473a2d0424SChris Cain             "xyz.openbmc_project.Control.Power.Mode", "PowerMode",
2148168e20c1SEd Tanous             dbus::utility::DbusVariantType(powerMode));
2149e99073f5SGeorge Liu         });
21503a2d0424SChris Cain }
21513a2d0424SChris Cain 
21523a2d0424SChris Cain /**
215351709ffdSYong Li  * @brief Translates watchdog timeout action DBUS property value to redfish.
215451709ffdSYong Li  *
215551709ffdSYong Li  * @param[in] dbusAction    The watchdog timeout action in D-BUS.
215651709ffdSYong Li  *
215751709ffdSYong Li  * @return Returns as a string, the timeout action in Redfish terms. If
215851709ffdSYong Li  * translation cannot be done, returns an empty string.
215951709ffdSYong Li  */
216023a21a1cSEd Tanous inline std::string dbusToRfWatchdogAction(const std::string& dbusAction)
216151709ffdSYong Li {
216251709ffdSYong Li     if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.None")
216351709ffdSYong Li     {
216451709ffdSYong Li         return "None";
216551709ffdSYong Li     }
21663174e4dfSEd Tanous     if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.HardReset")
216751709ffdSYong Li     {
216851709ffdSYong Li         return "ResetSystem";
216951709ffdSYong Li     }
21703174e4dfSEd Tanous     if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.PowerOff")
217151709ffdSYong Li     {
217251709ffdSYong Li         return "PowerDown";
217351709ffdSYong Li     }
21743174e4dfSEd Tanous     if (dbusAction == "xyz.openbmc_project.State.Watchdog.Action.PowerCycle")
217551709ffdSYong Li     {
217651709ffdSYong Li         return "PowerCycle";
217751709ffdSYong Li     }
217851709ffdSYong Li 
217951709ffdSYong Li     return "";
218051709ffdSYong Li }
218151709ffdSYong Li 
218251709ffdSYong Li /**
2183c45f0082SYong Li  *@brief Translates timeout action from Redfish to DBUS property value.
2184c45f0082SYong Li  *
2185c45f0082SYong Li  *@param[in] rfAction The timeout action in Redfish.
2186c45f0082SYong Li  *
2187c45f0082SYong Li  *@return Returns as a string, the time_out action as expected by DBUS.
2188c45f0082SYong Li  *If translation cannot be done, returns an empty string.
2189c45f0082SYong Li  */
2190c45f0082SYong Li 
219123a21a1cSEd Tanous inline std::string rfToDbusWDTTimeOutAct(const std::string& rfAction)
2192c45f0082SYong Li {
2193c45f0082SYong Li     if (rfAction == "None")
2194c45f0082SYong Li     {
2195c45f0082SYong Li         return "xyz.openbmc_project.State.Watchdog.Action.None";
2196c45f0082SYong Li     }
21973174e4dfSEd Tanous     if (rfAction == "PowerCycle")
2198c45f0082SYong Li     {
2199c45f0082SYong Li         return "xyz.openbmc_project.State.Watchdog.Action.PowerCycle";
2200c45f0082SYong Li     }
22013174e4dfSEd Tanous     if (rfAction == "PowerDown")
2202c45f0082SYong Li     {
2203c45f0082SYong Li         return "xyz.openbmc_project.State.Watchdog.Action.PowerOff";
2204c45f0082SYong Li     }
22053174e4dfSEd Tanous     if (rfAction == "ResetSystem")
2206c45f0082SYong Li     {
2207c45f0082SYong Li         return "xyz.openbmc_project.State.Watchdog.Action.HardReset";
2208c45f0082SYong Li     }
2209c45f0082SYong Li 
2210c45f0082SYong Li     return "";
2211c45f0082SYong Li }
2212c45f0082SYong Li 
2213c45f0082SYong Li /**
221451709ffdSYong Li  * @brief Retrieves host watchdog timer properties over DBUS
221551709ffdSYong Li  *
221651709ffdSYong Li  * @param[in] aResp     Shared pointer for completing asynchronous calls.
221751709ffdSYong Li  *
221851709ffdSYong Li  * @return None.
221951709ffdSYong Li  */
22208d1b46d7Szhanghch05 inline void
22218d1b46d7Szhanghch05     getHostWatchdogTimer(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
222251709ffdSYong Li {
222351709ffdSYong Li     BMCWEB_LOG_DEBUG << "Get host watchodg";
2224bc1d29deSKrzysztof Grobelny     sdbusplus::asio::getAllProperties(
2225bc1d29deSKrzysztof Grobelny         *crow::connections::systemBus, "xyz.openbmc_project.Watchdog",
2226bc1d29deSKrzysztof Grobelny         "/xyz/openbmc_project/watchdog/host0",
2227bc1d29deSKrzysztof Grobelny         "xyz.openbmc_project.State.Watchdog",
22285e7e2dc5SEd Tanous         [aResp](const boost::system::error_code& ec,
2229b9d36b47SEd Tanous                 const dbus::utility::DBusPropertiesMap& properties) {
223051709ffdSYong Li         if (ec)
223151709ffdSYong Li         {
223251709ffdSYong Li             // watchdog service is stopped
223351709ffdSYong Li             BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
223451709ffdSYong Li             return;
223551709ffdSYong Li         }
223651709ffdSYong Li 
223751709ffdSYong Li         BMCWEB_LOG_DEBUG << "Got " << properties.size() << " wdt prop.";
223851709ffdSYong Li 
223951709ffdSYong Li         nlohmann::json& hostWatchdogTimer =
224051709ffdSYong Li             aResp->res.jsonValue["HostWatchdogTimer"];
224151709ffdSYong Li 
224251709ffdSYong Li         // watchdog service is running/enabled
224351709ffdSYong Li         hostWatchdogTimer["Status"]["State"] = "Enabled";
224451709ffdSYong Li 
2245bc1d29deSKrzysztof Grobelny         const bool* enabled = nullptr;
2246bc1d29deSKrzysztof Grobelny         const std::string* expireAction = nullptr;
224751709ffdSYong Li 
2248bc1d29deSKrzysztof Grobelny         const bool success = sdbusplus::unpackPropertiesNoThrow(
2249bc1d29deSKrzysztof Grobelny             dbus_utils::UnpackErrorPrinter(), properties, "Enabled", enabled,
2250bc1d29deSKrzysztof Grobelny             "ExpireAction", expireAction);
2251bc1d29deSKrzysztof Grobelny 
2252bc1d29deSKrzysztof Grobelny         if (!success)
225351709ffdSYong Li         {
225451709ffdSYong Li             messages::internalError(aResp->res);
2255601af5edSChicago Duan             return;
225651709ffdSYong Li         }
225751709ffdSYong Li 
2258bc1d29deSKrzysztof Grobelny         if (enabled != nullptr)
225951709ffdSYong Li         {
2260bc1d29deSKrzysztof Grobelny             hostWatchdogTimer["FunctionEnabled"] = *enabled;
226151709ffdSYong Li         }
226251709ffdSYong Li 
2263bc1d29deSKrzysztof Grobelny         if (expireAction != nullptr)
2264bc1d29deSKrzysztof Grobelny         {
2265bc1d29deSKrzysztof Grobelny             std::string action = dbusToRfWatchdogAction(*expireAction);
226651709ffdSYong Li             if (action.empty())
226751709ffdSYong Li             {
226851709ffdSYong Li                 messages::internalError(aResp->res);
2269601af5edSChicago Duan                 return;
227051709ffdSYong Li             }
227151709ffdSYong Li             hostWatchdogTimer["TimeoutAction"] = action;
227251709ffdSYong Li         }
2273bc1d29deSKrzysztof Grobelny         });
227451709ffdSYong Li }
227551709ffdSYong Li 
227651709ffdSYong Li /**
2277c45f0082SYong Li  * @brief Sets Host WatchDog Timer properties.
2278c45f0082SYong Li  *
2279c45f0082SYong Li  * @param[in] aResp      Shared pointer for generating response message.
2280c45f0082SYong Li  * @param[in] wdtEnable  The WDTimer Enable value (true/false) from incoming
2281c45f0082SYong Li  *                       RF request.
2282c45f0082SYong Li  * @param[in] wdtTimeOutAction The WDT Timeout action, from incoming RF request.
2283c45f0082SYong Li  *
2284c45f0082SYong Li  * @return None.
2285c45f0082SYong Li  */
22868d1b46d7Szhanghch05 inline void setWDTProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
2287c45f0082SYong Li                              const std::optional<bool> wdtEnable,
2288c45f0082SYong Li                              const std::optional<std::string>& wdtTimeOutAction)
2289c45f0082SYong Li {
2290c45f0082SYong Li     BMCWEB_LOG_DEBUG << "Set host watchdog";
2291c45f0082SYong Li 
2292c45f0082SYong Li     if (wdtTimeOutAction)
2293c45f0082SYong Li     {
2294c45f0082SYong Li         std::string wdtTimeOutActStr = rfToDbusWDTTimeOutAct(*wdtTimeOutAction);
2295c45f0082SYong Li         // check if TimeOut Action is Valid
2296c45f0082SYong Li         if (wdtTimeOutActStr.empty())
2297c45f0082SYong Li         {
2298c45f0082SYong Li             BMCWEB_LOG_DEBUG << "Unsupported value for TimeoutAction: "
2299c45f0082SYong Li                              << *wdtTimeOutAction;
2300c45f0082SYong Li             messages::propertyValueNotInList(aResp->res, *wdtTimeOutAction,
2301c45f0082SYong Li                                              "TimeoutAction");
2302c45f0082SYong Li             return;
2303c45f0082SYong Li         }
2304c45f0082SYong Li 
2305c45f0082SYong Li         crow::connections::systemBus->async_method_call(
23065e7e2dc5SEd Tanous             [aResp](const boost::system::error_code& ec) {
2307c45f0082SYong Li             if (ec)
2308c45f0082SYong Li             {
2309c45f0082SYong Li                 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
2310c45f0082SYong Li                 messages::internalError(aResp->res);
2311c45f0082SYong Li                 return;
2312c45f0082SYong Li             }
2313c45f0082SYong Li             },
2314c45f0082SYong Li             "xyz.openbmc_project.Watchdog",
2315c45f0082SYong Li             "/xyz/openbmc_project/watchdog/host0",
2316c45f0082SYong Li             "org.freedesktop.DBus.Properties", "Set",
2317c45f0082SYong Li             "xyz.openbmc_project.State.Watchdog", "ExpireAction",
2318168e20c1SEd Tanous             dbus::utility::DbusVariantType(wdtTimeOutActStr));
2319c45f0082SYong Li     }
2320c45f0082SYong Li 
2321c45f0082SYong Li     if (wdtEnable)
2322c45f0082SYong Li     {
2323c45f0082SYong Li         crow::connections::systemBus->async_method_call(
23245e7e2dc5SEd Tanous             [aResp](const boost::system::error_code& ec) {
2325c45f0082SYong Li             if (ec)
2326c45f0082SYong Li             {
2327c45f0082SYong Li                 BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
2328c45f0082SYong Li                 messages::internalError(aResp->res);
2329c45f0082SYong Li                 return;
2330c45f0082SYong Li             }
2331c45f0082SYong Li             },
2332c45f0082SYong Li             "xyz.openbmc_project.Watchdog",
2333c45f0082SYong Li             "/xyz/openbmc_project/watchdog/host0",
2334c45f0082SYong Li             "org.freedesktop.DBus.Properties", "Set",
2335c45f0082SYong Li             "xyz.openbmc_project.State.Watchdog", "Enabled",
2336168e20c1SEd Tanous             dbus::utility::DbusVariantType(*wdtEnable));
2337c45f0082SYong Li     }
2338c45f0082SYong Li }
2339c45f0082SYong Li 
234037bbf98cSChris Cain /**
234137bbf98cSChris Cain  * @brief Parse the Idle Power Saver properties into json
234237bbf98cSChris Cain  *
234337bbf98cSChris Cain  * @param[in] aResp     Shared pointer for completing asynchronous calls.
234437bbf98cSChris Cain  * @param[in] properties  IPS property data from DBus.
234537bbf98cSChris Cain  *
234637bbf98cSChris Cain  * @return true if successful
234737bbf98cSChris Cain  */
23481e5b7c88SJiaqing Zhao inline bool
23491e5b7c88SJiaqing Zhao     parseIpsProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
23501e5b7c88SJiaqing Zhao                        const dbus::utility::DBusPropertiesMap& properties)
235137bbf98cSChris Cain {
2352bc1d29deSKrzysztof Grobelny     const bool* enabled = nullptr;
2353bc1d29deSKrzysztof Grobelny     const uint8_t* enterUtilizationPercent = nullptr;
2354bc1d29deSKrzysztof Grobelny     const uint64_t* enterDwellTime = nullptr;
2355bc1d29deSKrzysztof Grobelny     const uint8_t* exitUtilizationPercent = nullptr;
2356bc1d29deSKrzysztof Grobelny     const uint64_t* exitDwellTime = nullptr;
2357bc1d29deSKrzysztof Grobelny 
2358bc1d29deSKrzysztof Grobelny     const bool success = sdbusplus::unpackPropertiesNoThrow(
2359bc1d29deSKrzysztof Grobelny         dbus_utils::UnpackErrorPrinter(), properties, "Enabled", enabled,
2360bc1d29deSKrzysztof Grobelny         "EnterUtilizationPercent", enterUtilizationPercent,
2361bc1d29deSKrzysztof Grobelny         "ExitUtilizationPercent", exitUtilizationPercent, "ExitDwellTime",
2362bc1d29deSKrzysztof Grobelny         exitDwellTime);
2363bc1d29deSKrzysztof Grobelny 
2364bc1d29deSKrzysztof Grobelny     if (!success)
236537bbf98cSChris Cain     {
236637bbf98cSChris Cain         return false;
236737bbf98cSChris Cain     }
2368bc1d29deSKrzysztof Grobelny 
2369bc1d29deSKrzysztof Grobelny     if (enabled != nullptr)
237037bbf98cSChris Cain     {
2371bc1d29deSKrzysztof Grobelny         aResp->res.jsonValue["IdlePowerSaver"]["Enabled"] = *enabled;
237237bbf98cSChris Cain     }
2373bc1d29deSKrzysztof Grobelny 
2374bc1d29deSKrzysztof Grobelny     if (enterUtilizationPercent != nullptr)
237537bbf98cSChris Cain     {
2376bc1d29deSKrzysztof Grobelny         aResp->res.jsonValue["IdlePowerSaver"]["EnterUtilizationPercent"] =
2377bc1d29deSKrzysztof Grobelny             *enterUtilizationPercent;
237837bbf98cSChris Cain     }
2379bc1d29deSKrzysztof Grobelny 
2380bc1d29deSKrzysztof Grobelny     if (enterDwellTime != nullptr)
2381bc1d29deSKrzysztof Grobelny     {
2382bc1d29deSKrzysztof Grobelny         const std::chrono::duration<uint64_t, std::milli> ms(*enterDwellTime);
238337bbf98cSChris Cain         aResp->res.jsonValue["IdlePowerSaver"]["EnterDwellTimeSeconds"] =
238437bbf98cSChris Cain             std::chrono::duration_cast<std::chrono::duration<uint64_t>>(ms)
238537bbf98cSChris Cain                 .count();
238637bbf98cSChris Cain     }
2387bc1d29deSKrzysztof Grobelny 
2388bc1d29deSKrzysztof Grobelny     if (exitUtilizationPercent != nullptr)
238937bbf98cSChris Cain     {
2390bc1d29deSKrzysztof Grobelny         aResp->res.jsonValue["IdlePowerSaver"]["ExitUtilizationPercent"] =
2391bc1d29deSKrzysztof Grobelny             *exitUtilizationPercent;
239237bbf98cSChris Cain     }
2393bc1d29deSKrzysztof Grobelny 
2394bc1d29deSKrzysztof Grobelny     if (exitDwellTime != nullptr)
239537bbf98cSChris Cain     {
2396bc1d29deSKrzysztof Grobelny         const std::chrono::duration<uint64_t, std::milli> ms(*exitDwellTime);
239737bbf98cSChris Cain         aResp->res.jsonValue["IdlePowerSaver"]["ExitDwellTimeSeconds"] =
239837bbf98cSChris Cain             std::chrono::duration_cast<std::chrono::duration<uint64_t>>(ms)
239937bbf98cSChris Cain                 .count();
240037bbf98cSChris Cain     }
240137bbf98cSChris Cain 
240237bbf98cSChris Cain     return true;
240337bbf98cSChris Cain }
240437bbf98cSChris Cain 
240537bbf98cSChris Cain /**
240637bbf98cSChris Cain  * @brief Retrieves host watchdog timer properties over DBUS
240737bbf98cSChris Cain  *
240837bbf98cSChris Cain  * @param[in] aResp     Shared pointer for completing asynchronous calls.
240937bbf98cSChris Cain  *
241037bbf98cSChris Cain  * @return None.
241137bbf98cSChris Cain  */
241237bbf98cSChris Cain inline void getIdlePowerSaver(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
241337bbf98cSChris Cain {
241437bbf98cSChris Cain     BMCWEB_LOG_DEBUG << "Get idle power saver parameters";
241537bbf98cSChris Cain 
241637bbf98cSChris Cain     // Get IdlePowerSaver object path:
2417e99073f5SGeorge Liu     constexpr std::array<std::string_view, 1> interfaces = {
2418e99073f5SGeorge Liu         "xyz.openbmc_project.Control.Power.IdlePowerSaver"};
2419e99073f5SGeorge Liu     dbus::utility::getSubTree(
2420e99073f5SGeorge Liu         "/", 0, interfaces,
2421e99073f5SGeorge Liu         [aResp](const boost::system::error_code& ec,
2422b9d36b47SEd Tanous                 const dbus::utility::MapperGetSubTreeResponse& subtree) {
242337bbf98cSChris Cain         if (ec)
242437bbf98cSChris Cain         {
242537bbf98cSChris Cain             BMCWEB_LOG_DEBUG
242637bbf98cSChris Cain                 << "DBUS response error on Power.IdlePowerSaver GetSubTree "
242737bbf98cSChris Cain                 << ec;
242837bbf98cSChris Cain             messages::internalError(aResp->res);
242937bbf98cSChris Cain             return;
243037bbf98cSChris Cain         }
243137bbf98cSChris Cain         if (subtree.empty())
243237bbf98cSChris Cain         {
243337bbf98cSChris Cain             // This is an optional interface so just return
243437bbf98cSChris Cain             // if there is no instance found
243537bbf98cSChris Cain             BMCWEB_LOG_DEBUG << "No instances found";
243637bbf98cSChris Cain             return;
243737bbf98cSChris Cain         }
243837bbf98cSChris Cain         if (subtree.size() > 1)
243937bbf98cSChris Cain         {
244037bbf98cSChris Cain             // More then one PowerIdlePowerSaver object is not supported and
244137bbf98cSChris Cain             // is an error
244237bbf98cSChris Cain             BMCWEB_LOG_DEBUG << "Found more than 1 system D-Bus "
244337bbf98cSChris Cain                                 "Power.IdlePowerSaver objects: "
244437bbf98cSChris Cain                              << subtree.size();
244537bbf98cSChris Cain             messages::internalError(aResp->res);
244637bbf98cSChris Cain             return;
244737bbf98cSChris Cain         }
244837bbf98cSChris Cain         if ((subtree[0].first.empty()) || (subtree[0].second.size() != 1))
244937bbf98cSChris Cain         {
245037bbf98cSChris Cain             BMCWEB_LOG_DEBUG << "Power.IdlePowerSaver mapper error!";
245137bbf98cSChris Cain             messages::internalError(aResp->res);
245237bbf98cSChris Cain             return;
245337bbf98cSChris Cain         }
245437bbf98cSChris Cain         const std::string& path = subtree[0].first;
245537bbf98cSChris Cain         const std::string& service = subtree[0].second.begin()->first;
245637bbf98cSChris Cain         if (service.empty())
245737bbf98cSChris Cain         {
2458002d39b4SEd Tanous             BMCWEB_LOG_DEBUG << "Power.IdlePowerSaver service mapper error!";
245937bbf98cSChris Cain             messages::internalError(aResp->res);
246037bbf98cSChris Cain             return;
246137bbf98cSChris Cain         }
246237bbf98cSChris Cain 
246337bbf98cSChris Cain         // Valid IdlePowerSaver object found, now read the current values
2464bc1d29deSKrzysztof Grobelny         sdbusplus::asio::getAllProperties(
2465bc1d29deSKrzysztof Grobelny             *crow::connections::systemBus, service, path,
2466bc1d29deSKrzysztof Grobelny             "xyz.openbmc_project.Control.Power.IdlePowerSaver",
24675e7e2dc5SEd Tanous             [aResp](const boost::system::error_code& ec2,
24681e5b7c88SJiaqing Zhao                     const dbus::utility::DBusPropertiesMap& properties) {
24698a592810SEd Tanous             if (ec2)
247037bbf98cSChris Cain             {
247137bbf98cSChris Cain                 BMCWEB_LOG_ERROR
24728a592810SEd Tanous                     << "DBUS response error on IdlePowerSaver GetAll: " << ec2;
247337bbf98cSChris Cain                 messages::internalError(aResp->res);
247437bbf98cSChris Cain                 return;
247537bbf98cSChris Cain             }
247637bbf98cSChris Cain 
2477e05aec50SEd Tanous             if (!parseIpsProperties(aResp, properties))
247837bbf98cSChris Cain             {
247937bbf98cSChris Cain                 messages::internalError(aResp->res);
248037bbf98cSChris Cain                 return;
248137bbf98cSChris Cain             }
2482bc1d29deSKrzysztof Grobelny             });
2483e99073f5SGeorge Liu         });
248437bbf98cSChris Cain 
248537bbf98cSChris Cain     BMCWEB_LOG_DEBUG << "EXIT: Get idle power saver parameters";
248637bbf98cSChris Cain }
248737bbf98cSChris Cain 
248837bbf98cSChris Cain /**
248937bbf98cSChris Cain  * @brief Sets Idle Power Saver properties.
249037bbf98cSChris Cain  *
249137bbf98cSChris Cain  * @param[in] aResp      Shared pointer for generating response message.
249237bbf98cSChris Cain  * @param[in] ipsEnable  The IPS Enable value (true/false) from incoming
249337bbf98cSChris Cain  *                       RF request.
249437bbf98cSChris Cain  * @param[in] ipsEnterUtil The utilization limit to enter idle state.
249537bbf98cSChris Cain  * @param[in] ipsEnterTime The time the utilization must be below ipsEnterUtil
249637bbf98cSChris Cain  * before entering idle state.
249737bbf98cSChris Cain  * @param[in] ipsExitUtil The utilization limit when exiting idle state.
249837bbf98cSChris Cain  * @param[in] ipsExitTime The time the utilization must be above ipsExutUtil
249937bbf98cSChris Cain  * before exiting idle state
250037bbf98cSChris Cain  *
250137bbf98cSChris Cain  * @return None.
250237bbf98cSChris Cain  */
250337bbf98cSChris Cain inline void setIdlePowerSaver(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
250437bbf98cSChris Cain                               const std::optional<bool> ipsEnable,
250537bbf98cSChris Cain                               const std::optional<uint8_t> ipsEnterUtil,
250637bbf98cSChris Cain                               const std::optional<uint64_t> ipsEnterTime,
250737bbf98cSChris Cain                               const std::optional<uint8_t> ipsExitUtil,
250837bbf98cSChris Cain                               const std::optional<uint64_t> ipsExitTime)
250937bbf98cSChris Cain {
251037bbf98cSChris Cain     BMCWEB_LOG_DEBUG << "Set idle power saver properties";
251137bbf98cSChris Cain 
251237bbf98cSChris Cain     // Get IdlePowerSaver object path:
2513e99073f5SGeorge Liu     constexpr std::array<std::string_view, 1> interfaces = {
2514e99073f5SGeorge Liu         "xyz.openbmc_project.Control.Power.IdlePowerSaver"};
2515e99073f5SGeorge Liu     dbus::utility::getSubTree(
2516e99073f5SGeorge Liu         "/", 0, interfaces,
251737bbf98cSChris Cain         [aResp, ipsEnable, ipsEnterUtil, ipsEnterTime, ipsExitUtil,
2518e99073f5SGeorge Liu          ipsExitTime](const boost::system::error_code& ec,
2519b9d36b47SEd Tanous                       const dbus::utility::MapperGetSubTreeResponse& subtree) {
252037bbf98cSChris Cain         if (ec)
252137bbf98cSChris Cain         {
252237bbf98cSChris Cain             BMCWEB_LOG_DEBUG
252337bbf98cSChris Cain                 << "DBUS response error on Power.IdlePowerSaver GetSubTree "
252437bbf98cSChris Cain                 << ec;
252537bbf98cSChris Cain             messages::internalError(aResp->res);
252637bbf98cSChris Cain             return;
252737bbf98cSChris Cain         }
252837bbf98cSChris Cain         if (subtree.empty())
252937bbf98cSChris Cain         {
253037bbf98cSChris Cain             // This is an optional D-Bus object, but user attempted to patch
253137bbf98cSChris Cain             messages::resourceNotFound(aResp->res, "ComputerSystem",
253237bbf98cSChris Cain                                        "IdlePowerSaver");
253337bbf98cSChris Cain             return;
253437bbf98cSChris Cain         }
253537bbf98cSChris Cain         if (subtree.size() > 1)
253637bbf98cSChris Cain         {
253737bbf98cSChris Cain             // More then one PowerIdlePowerSaver object is not supported and
253837bbf98cSChris Cain             // is an error
25390fda0f12SGeorge Liu             BMCWEB_LOG_DEBUG
25400fda0f12SGeorge Liu                 << "Found more than 1 system D-Bus Power.IdlePowerSaver objects: "
254137bbf98cSChris Cain                 << subtree.size();
254237bbf98cSChris Cain             messages::internalError(aResp->res);
254337bbf98cSChris Cain             return;
254437bbf98cSChris Cain         }
254537bbf98cSChris Cain         if ((subtree[0].first.empty()) || (subtree[0].second.size() != 1))
254637bbf98cSChris Cain         {
254737bbf98cSChris Cain             BMCWEB_LOG_DEBUG << "Power.IdlePowerSaver mapper error!";
254837bbf98cSChris Cain             messages::internalError(aResp->res);
254937bbf98cSChris Cain             return;
255037bbf98cSChris Cain         }
255137bbf98cSChris Cain         const std::string& path = subtree[0].first;
255237bbf98cSChris Cain         const std::string& service = subtree[0].second.begin()->first;
255337bbf98cSChris Cain         if (service.empty())
255437bbf98cSChris Cain         {
2555002d39b4SEd Tanous             BMCWEB_LOG_DEBUG << "Power.IdlePowerSaver service mapper error!";
255637bbf98cSChris Cain             messages::internalError(aResp->res);
255737bbf98cSChris Cain             return;
255837bbf98cSChris Cain         }
255937bbf98cSChris Cain 
256037bbf98cSChris Cain         // Valid Power IdlePowerSaver object found, now set any values that
256137bbf98cSChris Cain         // need to be updated
256237bbf98cSChris Cain 
256337bbf98cSChris Cain         if (ipsEnable)
256437bbf98cSChris Cain         {
256537bbf98cSChris Cain             crow::connections::systemBus->async_method_call(
25665e7e2dc5SEd Tanous                 [aResp](const boost::system::error_code& ec2) {
25678a592810SEd Tanous                 if (ec2)
256837bbf98cSChris Cain                 {
25698a592810SEd Tanous                     BMCWEB_LOG_DEBUG << "DBUS response error " << ec2;
257037bbf98cSChris Cain                     messages::internalError(aResp->res);
257137bbf98cSChris Cain                     return;
257237bbf98cSChris Cain                 }
257337bbf98cSChris Cain                 },
257437bbf98cSChris Cain                 service, path, "org.freedesktop.DBus.Properties", "Set",
2575002d39b4SEd Tanous                 "xyz.openbmc_project.Control.Power.IdlePowerSaver", "Enabled",
2576002d39b4SEd Tanous                 dbus::utility::DbusVariantType(*ipsEnable));
257737bbf98cSChris Cain         }
257837bbf98cSChris Cain         if (ipsEnterUtil)
257937bbf98cSChris Cain         {
258037bbf98cSChris Cain             crow::connections::systemBus->async_method_call(
25815e7e2dc5SEd Tanous                 [aResp](const boost::system::error_code& ec2) {
25828a592810SEd Tanous                 if (ec2)
258337bbf98cSChris Cain                 {
25848a592810SEd Tanous                     BMCWEB_LOG_DEBUG << "DBUS response error " << ec2;
258537bbf98cSChris Cain                     messages::internalError(aResp->res);
258637bbf98cSChris Cain                     return;
258737bbf98cSChris Cain                 }
258837bbf98cSChris Cain                 },
258937bbf98cSChris Cain                 service, path, "org.freedesktop.DBus.Properties", "Set",
259037bbf98cSChris Cain                 "xyz.openbmc_project.Control.Power.IdlePowerSaver",
259137bbf98cSChris Cain                 "EnterUtilizationPercent",
2592168e20c1SEd Tanous                 dbus::utility::DbusVariantType(*ipsEnterUtil));
259337bbf98cSChris Cain         }
259437bbf98cSChris Cain         if (ipsEnterTime)
259537bbf98cSChris Cain         {
259637bbf98cSChris Cain             // Convert from seconds into milliseconds for DBus
259737bbf98cSChris Cain             const uint64_t timeMilliseconds = *ipsEnterTime * 1000;
259837bbf98cSChris Cain             crow::connections::systemBus->async_method_call(
25995e7e2dc5SEd Tanous                 [aResp](const boost::system::error_code& ec2) {
26008a592810SEd Tanous                 if (ec2)
260137bbf98cSChris Cain                 {
26028a592810SEd Tanous                     BMCWEB_LOG_DEBUG << "DBUS response error " << ec2;
260337bbf98cSChris Cain                     messages::internalError(aResp->res);
260437bbf98cSChris Cain                     return;
260537bbf98cSChris Cain                 }
260637bbf98cSChris Cain                 },
260737bbf98cSChris Cain                 service, path, "org.freedesktop.DBus.Properties", "Set",
260837bbf98cSChris Cain                 "xyz.openbmc_project.Control.Power.IdlePowerSaver",
2609168e20c1SEd Tanous                 "EnterDwellTime",
2610168e20c1SEd Tanous                 dbus::utility::DbusVariantType(timeMilliseconds));
261137bbf98cSChris Cain         }
261237bbf98cSChris Cain         if (ipsExitUtil)
261337bbf98cSChris Cain         {
261437bbf98cSChris Cain             crow::connections::systemBus->async_method_call(
26155e7e2dc5SEd Tanous                 [aResp](const boost::system::error_code& ec2) {
26168a592810SEd Tanous                 if (ec2)
261737bbf98cSChris Cain                 {
26188a592810SEd Tanous                     BMCWEB_LOG_DEBUG << "DBUS response error " << ec2;
261937bbf98cSChris Cain                     messages::internalError(aResp->res);
262037bbf98cSChris Cain                     return;
262137bbf98cSChris Cain                 }
262237bbf98cSChris Cain                 },
262337bbf98cSChris Cain                 service, path, "org.freedesktop.DBus.Properties", "Set",
262437bbf98cSChris Cain                 "xyz.openbmc_project.Control.Power.IdlePowerSaver",
262537bbf98cSChris Cain                 "ExitUtilizationPercent",
2626168e20c1SEd Tanous                 dbus::utility::DbusVariantType(*ipsExitUtil));
262737bbf98cSChris Cain         }
262837bbf98cSChris Cain         if (ipsExitTime)
262937bbf98cSChris Cain         {
263037bbf98cSChris Cain             // Convert from seconds into milliseconds for DBus
263137bbf98cSChris Cain             const uint64_t timeMilliseconds = *ipsExitTime * 1000;
263237bbf98cSChris Cain             crow::connections::systemBus->async_method_call(
26335e7e2dc5SEd Tanous                 [aResp](const boost::system::error_code& ec2) {
26348a592810SEd Tanous                 if (ec2)
263537bbf98cSChris Cain                 {
26368a592810SEd Tanous                     BMCWEB_LOG_DEBUG << "DBUS response error " << ec2;
263737bbf98cSChris Cain                     messages::internalError(aResp->res);
263837bbf98cSChris Cain                     return;
263937bbf98cSChris Cain                 }
264037bbf98cSChris Cain                 },
264137bbf98cSChris Cain                 service, path, "org.freedesktop.DBus.Properties", "Set",
264237bbf98cSChris Cain                 "xyz.openbmc_project.Control.Power.IdlePowerSaver",
2643168e20c1SEd Tanous                 "ExitDwellTime",
2644168e20c1SEd Tanous                 dbus::utility::DbusVariantType(timeMilliseconds));
264537bbf98cSChris Cain         }
2646e99073f5SGeorge Liu         });
264737bbf98cSChris Cain 
264837bbf98cSChris Cain     BMCWEB_LOG_DEBUG << "EXIT: Set idle power saver parameters";
264937bbf98cSChris Cain }
265037bbf98cSChris Cain 
2651dd60b9edSEd Tanous inline void handleComputerSystemHead(
2652dd60b9edSEd Tanous     crow::App& app, const crow::Request& req,
2653dd60b9edSEd Tanous     const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
2654dd60b9edSEd Tanous {
2655dd60b9edSEd Tanous     if (!redfish::setUpRedfishRoute(app, req, asyncResp))
2656dd60b9edSEd Tanous     {
2657dd60b9edSEd Tanous         return;
2658dd60b9edSEd Tanous     }
2659dd60b9edSEd Tanous     asyncResp->res.addHeader(
2660dd60b9edSEd Tanous         boost::beast::http::field::link,
2661dd60b9edSEd Tanous         "</redfish/v1/JsonSchemas/ComputerSystemCollection/ComputerSystemCollection.json>; rel=describedby");
2662dd60b9edSEd Tanous }
2663dd60b9edSEd Tanous 
2664c45f0082SYong Li /**
2665c5b2abe0SLewanczyk, Dawid  * SystemsCollection derived class for delivering ComputerSystems Collection
2666c5b2abe0SLewanczyk, Dawid  * Schema
2667c5b2abe0SLewanczyk, Dawid  */
26687e860f15SJohn Edward Broadbent inline void requestRoutesSystemsCollection(App& app)
26691abe55efSEd Tanous {
26707e860f15SJohn Edward Broadbent     BMCWEB_ROUTE(app, "/redfish/v1/Systems/")
2671dd60b9edSEd Tanous         .privileges(redfish::privileges::headComputerSystemCollection)
2672dd60b9edSEd Tanous         .methods(boost::beast::http::verb::head)(
2673dd60b9edSEd Tanous             std::bind_front(handleComputerSystemHead, std::ref(app)));
2674dd60b9edSEd Tanous 
2675dd60b9edSEd Tanous     BMCWEB_ROUTE(app, "/redfish/v1/Systems/")
2676ed398213SEd Tanous         .privileges(redfish::privileges::getComputerSystemCollection)
26777e860f15SJohn Edward Broadbent         .methods(boost::beast::http::verb::get)(
2678f4c99e70SEd Tanous             [&app](const crow::Request& req,
26797e860f15SJohn Edward Broadbent                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
26803ba00073SCarson Labrado         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
2681f4c99e70SEd Tanous         {
2682f4c99e70SEd Tanous             return;
2683f4c99e70SEd Tanous         }
2684dd60b9edSEd Tanous 
2685dd60b9edSEd Tanous         asyncResp->res.addHeader(
2686dd60b9edSEd Tanous             boost::beast::http::field::link,
2687dd60b9edSEd Tanous             "</redfish/v1/JsonSchemas/ComputerSystemCollection.json>; rel=describedby");
26888d1b46d7Szhanghch05         asyncResp->res.jsonValue["@odata.type"] =
26890f74e643SEd Tanous             "#ComputerSystemCollection.ComputerSystemCollection";
26908d1b46d7Szhanghch05         asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Systems";
26918d1b46d7Szhanghch05         asyncResp->res.jsonValue["Name"] = "Computer System Collection";
2692462023adSSunitha Harish 
26931e1e598dSJonathan Doman         sdbusplus::asio::getProperty<std::string>(
2694002d39b4SEd Tanous             *crow::connections::systemBus, "xyz.openbmc_project.Settings",
26951e1e598dSJonathan Doman             "/xyz/openbmc_project/network/hypervisor",
2696002d39b4SEd Tanous             "xyz.openbmc_project.Network.SystemConfiguration", "HostName",
26975e7e2dc5SEd Tanous             [asyncResp](const boost::system::error_code& ec2,
26981e1e598dSJonathan Doman                         const std::string& /*hostName*/) {
2699002d39b4SEd Tanous             nlohmann::json& ifaceArray = asyncResp->res.jsonValue["Members"];
27002c70f800SEd Tanous             ifaceArray = nlohmann::json::array();
2701002d39b4SEd Tanous             auto& count = asyncResp->res.jsonValue["Members@odata.count"];
27021476687dSEd Tanous 
27031476687dSEd Tanous             nlohmann::json::object_t system;
27041476687dSEd Tanous             system["@odata.id"] = "/redfish/v1/Systems/system";
27051476687dSEd Tanous             ifaceArray.push_back(std::move(system));
270694bda602STim Lee             count = ifaceArray.size();
27078a592810SEd Tanous             if (!ec2)
2708462023adSSunitha Harish             {
2709462023adSSunitha Harish                 BMCWEB_LOG_DEBUG << "Hypervisor is available";
27101476687dSEd Tanous                 nlohmann::json::object_t hypervisor;
2711002d39b4SEd Tanous                 hypervisor["@odata.id"] = "/redfish/v1/Systems/hypervisor";
27121476687dSEd Tanous                 ifaceArray.push_back(std::move(hypervisor));
27132c70f800SEd Tanous                 count = ifaceArray.size();
2714cb13a392SEd Tanous             }
27151e1e598dSJonathan Doman             });
27167e860f15SJohn Edward Broadbent         });
2717c5b2abe0SLewanczyk, Dawid }
27187e860f15SJohn Edward Broadbent 
27197e860f15SJohn Edward Broadbent /**
27207e860f15SJohn Edward Broadbent  * Function transceives data with dbus directly.
27217e860f15SJohn Edward Broadbent  */
27224f48d5f6SEd Tanous inline void doNMI(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
27237e860f15SJohn Edward Broadbent {
27247e860f15SJohn Edward Broadbent     constexpr char const* serviceName = "xyz.openbmc_project.Control.Host.NMI";
27257e860f15SJohn Edward Broadbent     constexpr char const* objectPath = "/xyz/openbmc_project/control/host0/nmi";
27267e860f15SJohn Edward Broadbent     constexpr char const* interfaceName =
27277e860f15SJohn Edward Broadbent         "xyz.openbmc_project.Control.Host.NMI";
27287e860f15SJohn Edward Broadbent     constexpr char const* method = "NMI";
27297e860f15SJohn Edward Broadbent 
27307e860f15SJohn Edward Broadbent     crow::connections::systemBus->async_method_call(
27315e7e2dc5SEd Tanous         [asyncResp](const boost::system::error_code& ec) {
27327e860f15SJohn Edward Broadbent         if (ec)
27337e860f15SJohn Edward Broadbent         {
27347e860f15SJohn Edward Broadbent             BMCWEB_LOG_ERROR << " Bad D-Bus request error: " << ec;
27357e860f15SJohn Edward Broadbent             messages::internalError(asyncResp->res);
27367e860f15SJohn Edward Broadbent             return;
27377e860f15SJohn Edward Broadbent         }
27387e860f15SJohn Edward Broadbent         messages::success(asyncResp->res);
27397e860f15SJohn Edward Broadbent         },
27407e860f15SJohn Edward Broadbent         serviceName, objectPath, interfaceName, method);
27417e860f15SJohn Edward Broadbent }
2742c5b2abe0SLewanczyk, Dawid 
2743c5b2abe0SLewanczyk, Dawid /**
2744cc340dd9SEd Tanous  * SystemActionsReset class supports handle POST method for Reset action.
2745cc340dd9SEd Tanous  * The class retrieves and sends data directly to D-Bus.
2746cc340dd9SEd Tanous  */
27477e860f15SJohn Edward Broadbent inline void requestRoutesSystemActionsReset(App& app)
2748cc340dd9SEd Tanous {
2749cc340dd9SEd Tanous     /**
2750cc340dd9SEd Tanous      * Function handles POST method request.
2751cc340dd9SEd Tanous      * Analyzes POST body message before sends Reset request data to D-Bus.
2752cc340dd9SEd Tanous      */
27537e860f15SJohn Edward Broadbent     BMCWEB_ROUTE(app,
27547e860f15SJohn Edward Broadbent                  "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset/")
2755ed398213SEd Tanous         .privileges(redfish::privileges::postComputerSystem)
2756002d39b4SEd Tanous         .methods(boost::beast::http::verb::post)(
2757002d39b4SEd Tanous             [&app](const crow::Request& req,
27587e860f15SJohn Edward Broadbent                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
27593ba00073SCarson Labrado         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
276045ca1b86SEd Tanous         {
276145ca1b86SEd Tanous             return;
276245ca1b86SEd Tanous         }
27639712f8acSEd Tanous         std::string resetType;
276415ed6780SWilly Tu         if (!json_util::readJsonAction(req, asyncResp->res, "ResetType",
27657e860f15SJohn Edward Broadbent                                        resetType))
2766cc340dd9SEd Tanous         {
2767cc340dd9SEd Tanous             return;
2768cc340dd9SEd Tanous         }
2769cc340dd9SEd Tanous 
2770d22c8396SJason M. Bills         // Get the command and host vs. chassis
2771cc340dd9SEd Tanous         std::string command;
2772543f4400SEd Tanous         bool hostCommand = true;
2773d4d25793SEd Tanous         if ((resetType == "On") || (resetType == "ForceOn"))
2774cc340dd9SEd Tanous         {
2775cc340dd9SEd Tanous             command = "xyz.openbmc_project.State.Host.Transition.On";
2776d22c8396SJason M. Bills             hostCommand = true;
2777d22c8396SJason M. Bills         }
2778d22c8396SJason M. Bills         else if (resetType == "ForceOff")
2779d22c8396SJason M. Bills         {
2780d22c8396SJason M. Bills             command = "xyz.openbmc_project.State.Chassis.Transition.Off";
2781d22c8396SJason M. Bills             hostCommand = false;
2782d22c8396SJason M. Bills         }
2783d22c8396SJason M. Bills         else if (resetType == "ForceRestart")
2784d22c8396SJason M. Bills         {
278586a0851aSJason M. Bills             command =
278686a0851aSJason M. Bills                 "xyz.openbmc_project.State.Host.Transition.ForceWarmReboot";
278786a0851aSJason M. Bills             hostCommand = true;
2788cc340dd9SEd Tanous         }
27899712f8acSEd Tanous         else if (resetType == "GracefulShutdown")
2790cc340dd9SEd Tanous         {
2791cc340dd9SEd Tanous             command = "xyz.openbmc_project.State.Host.Transition.Off";
2792d22c8396SJason M. Bills             hostCommand = true;
2793cc340dd9SEd Tanous         }
27949712f8acSEd Tanous         else if (resetType == "GracefulRestart")
2795cc340dd9SEd Tanous         {
27960fda0f12SGeorge Liu             command =
27970fda0f12SGeorge Liu                 "xyz.openbmc_project.State.Host.Transition.GracefulWarmReboot";
2798d22c8396SJason M. Bills             hostCommand = true;
2799d22c8396SJason M. Bills         }
2800d22c8396SJason M. Bills         else if (resetType == "PowerCycle")
2801d22c8396SJason M. Bills         {
280286a0851aSJason M. Bills             command = "xyz.openbmc_project.State.Host.Transition.Reboot";
280386a0851aSJason M. Bills             hostCommand = true;
2804cc340dd9SEd Tanous         }
2805bfd5b826SLakshminarayana R. Kammath         else if (resetType == "Nmi")
2806bfd5b826SLakshminarayana R. Kammath         {
2807bfd5b826SLakshminarayana R. Kammath             doNMI(asyncResp);
2808bfd5b826SLakshminarayana R. Kammath             return;
2809bfd5b826SLakshminarayana R. Kammath         }
2810cc340dd9SEd Tanous         else
2811cc340dd9SEd Tanous         {
28128d1b46d7Szhanghch05             messages::actionParameterUnknown(asyncResp->res, "Reset",
28138d1b46d7Szhanghch05                                              resetType);
2814cc340dd9SEd Tanous             return;
2815cc340dd9SEd Tanous         }
2816cc340dd9SEd Tanous 
2817d22c8396SJason M. Bills         if (hostCommand)
2818d22c8396SJason M. Bills         {
2819cc340dd9SEd Tanous             crow::connections::systemBus->async_method_call(
28205e7e2dc5SEd Tanous                 [asyncResp, resetType](const boost::system::error_code& ec) {
2821cc340dd9SEd Tanous                 if (ec)
2822cc340dd9SEd Tanous                 {
2823cc340dd9SEd Tanous                     BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec;
2824002d39b4SEd Tanous                     if (ec.value() == boost::asio::error::invalid_argument)
2825d22c8396SJason M. Bills                     {
2826d22c8396SJason M. Bills                         messages::actionParameterNotSupported(
2827d22c8396SJason M. Bills                             asyncResp->res, resetType, "Reset");
2828d22c8396SJason M. Bills                     }
2829d22c8396SJason M. Bills                     else
2830d22c8396SJason M. Bills                     {
2831f12894f8SJason M. Bills                         messages::internalError(asyncResp->res);
2832d22c8396SJason M. Bills                     }
2833cc340dd9SEd Tanous                     return;
2834cc340dd9SEd Tanous                 }
2835f12894f8SJason M. Bills                 messages::success(asyncResp->res);
2836cc340dd9SEd Tanous                 },
2837cc340dd9SEd Tanous                 "xyz.openbmc_project.State.Host",
2838cc340dd9SEd Tanous                 "/xyz/openbmc_project/state/host0",
2839cc340dd9SEd Tanous                 "org.freedesktop.DBus.Properties", "Set",
28409712f8acSEd Tanous                 "xyz.openbmc_project.State.Host", "RequestedHostTransition",
2841168e20c1SEd Tanous                 dbus::utility::DbusVariantType{command});
2842cc340dd9SEd Tanous         }
2843d22c8396SJason M. Bills         else
2844d22c8396SJason M. Bills         {
2845d22c8396SJason M. Bills             crow::connections::systemBus->async_method_call(
28465e7e2dc5SEd Tanous                 [asyncResp, resetType](const boost::system::error_code& ec) {
2847d22c8396SJason M. Bills                 if (ec)
2848d22c8396SJason M. Bills                 {
2849d22c8396SJason M. Bills                     BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec;
2850002d39b4SEd Tanous                     if (ec.value() == boost::asio::error::invalid_argument)
2851d22c8396SJason M. Bills                     {
2852d22c8396SJason M. Bills                         messages::actionParameterNotSupported(
2853d22c8396SJason M. Bills                             asyncResp->res, resetType, "Reset");
2854d22c8396SJason M. Bills                     }
2855d22c8396SJason M. Bills                     else
2856d22c8396SJason M. Bills                     {
2857d22c8396SJason M. Bills                         messages::internalError(asyncResp->res);
2858d22c8396SJason M. Bills                     }
2859d22c8396SJason M. Bills                     return;
2860d22c8396SJason M. Bills                 }
2861d22c8396SJason M. Bills                 messages::success(asyncResp->res);
2862d22c8396SJason M. Bills                 },
2863d22c8396SJason M. Bills                 "xyz.openbmc_project.State.Chassis",
2864d22c8396SJason M. Bills                 "/xyz/openbmc_project/state/chassis0",
2865d22c8396SJason M. Bills                 "org.freedesktop.DBus.Properties", "Set",
2866002d39b4SEd Tanous                 "xyz.openbmc_project.State.Chassis", "RequestedPowerTransition",
2867168e20c1SEd Tanous                 dbus::utility::DbusVariantType{command});
2868d22c8396SJason M. Bills         }
28697e860f15SJohn Edward Broadbent         });
2870d22c8396SJason M. Bills }
2871cc340dd9SEd Tanous 
287238c8a6f2SEd Tanous inline void handleComputerSystemCollectionHead(
2873dd60b9edSEd Tanous     App& app, const crow::Request& req,
2874dd60b9edSEd Tanous     const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
2875dd60b9edSEd Tanous {
2876dd60b9edSEd Tanous     if (!redfish::setUpRedfishRoute(app, req, asyncResp))
2877dd60b9edSEd Tanous     {
2878dd60b9edSEd Tanous         return;
2879dd60b9edSEd Tanous     }
2880dd60b9edSEd Tanous 
2881dd60b9edSEd Tanous     asyncResp->res.addHeader(
2882dd60b9edSEd Tanous         boost::beast::http::field::link,
2883dd60b9edSEd Tanous         "</redfish/v1/JsonSchemas/ComputerSystem/ComputerSystem.json>; rel=describedby");
2884dd60b9edSEd Tanous }
2885dd60b9edSEd Tanous 
2886*5c3e9272SAbhishek Patel inline void afterPortRequest(
2887*5c3e9272SAbhishek Patel     const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
2888*5c3e9272SAbhishek Patel     const boost::system::error_code& ec,
2889*5c3e9272SAbhishek Patel     const std::vector<std::tuple<std::string, std::string, bool>>& socketData)
2890*5c3e9272SAbhishek Patel {
2891*5c3e9272SAbhishek Patel     if (ec)
2892*5c3e9272SAbhishek Patel     {
2893*5c3e9272SAbhishek Patel         messages::internalError(asyncResp->res);
2894*5c3e9272SAbhishek Patel         return;
2895*5c3e9272SAbhishek Patel     }
2896*5c3e9272SAbhishek Patel     for (const auto& data : socketData)
2897*5c3e9272SAbhishek Patel     {
2898*5c3e9272SAbhishek Patel         const std::string& socketPath = get<0>(data);
2899*5c3e9272SAbhishek Patel         const std::string& protocolName = get<1>(data);
2900*5c3e9272SAbhishek Patel         bool isProtocolEnabled = get<2>(data);
2901*5c3e9272SAbhishek Patel         nlohmann::json& dataJson = asyncResp->res.jsonValue["SerialConsole"];
2902*5c3e9272SAbhishek Patel         dataJson[protocolName]["ServiceEnabled"] = isProtocolEnabled;
2903*5c3e9272SAbhishek Patel         // need to retrieve port number for
2904*5c3e9272SAbhishek Patel         // obmc-console-ssh service
2905*5c3e9272SAbhishek Patel         if (protocolName == "SSH")
2906*5c3e9272SAbhishek Patel         {
2907*5c3e9272SAbhishek Patel             getPortNumber(socketPath, [asyncResp, protocolName](
2908*5c3e9272SAbhishek Patel                                           const boost::system::error_code ec1,
2909*5c3e9272SAbhishek Patel                                           int portNumber) {
2910*5c3e9272SAbhishek Patel                 if (ec1)
2911*5c3e9272SAbhishek Patel                 {
2912*5c3e9272SAbhishek Patel                     messages::internalError(asyncResp->res);
2913*5c3e9272SAbhishek Patel                     return;
2914*5c3e9272SAbhishek Patel                 }
2915*5c3e9272SAbhishek Patel                 nlohmann::json& dataJson1 =
2916*5c3e9272SAbhishek Patel                     asyncResp->res.jsonValue["SerialConsole"];
2917*5c3e9272SAbhishek Patel                 dataJson1[protocolName]["Port"] = portNumber;
2918*5c3e9272SAbhishek Patel             });
2919*5c3e9272SAbhishek Patel         }
2920*5c3e9272SAbhishek Patel     }
2921*5c3e9272SAbhishek Patel }
2922cc340dd9SEd Tanous /**
29236617338dSEd Tanous  * Systems derived class for delivering Computer Systems Schema.
2924c5b2abe0SLewanczyk, Dawid  */
29257e860f15SJohn Edward Broadbent inline void requestRoutesSystems(App& app)
29261abe55efSEd Tanous {
2927c5b2abe0SLewanczyk, Dawid 
2928dd60b9edSEd Tanous     BMCWEB_ROUTE(app, "/redfish/v1/Systems/system/")
2929dd60b9edSEd Tanous         .privileges(redfish::privileges::headComputerSystem)
2930dd60b9edSEd Tanous         .methods(boost::beast::http::verb::head)(
2931dd60b9edSEd Tanous             std::bind_front(handleComputerSystemCollectionHead, std::ref(app)));
2932c5b2abe0SLewanczyk, Dawid     /**
2933c5b2abe0SLewanczyk, Dawid      * Functions triggers appropriate requests on DBus
2934c5b2abe0SLewanczyk, Dawid      */
293522d268cbSEd Tanous     BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/")
2936ed398213SEd Tanous         .privileges(redfish::privileges::getComputerSystem)
2937002d39b4SEd Tanous         .methods(boost::beast::http::verb::get)(
2938002d39b4SEd Tanous             [&app](const crow::Request& req,
293922d268cbSEd Tanous                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
294022d268cbSEd Tanous                    const std::string& systemName) {
29413ba00073SCarson Labrado         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
294245ca1b86SEd Tanous         {
294345ca1b86SEd Tanous             return;
294445ca1b86SEd Tanous         }
294522d268cbSEd Tanous         if (systemName != "system")
294622d268cbSEd Tanous         {
294722d268cbSEd Tanous             messages::resourceNotFound(asyncResp->res, "ComputerSystem",
294822d268cbSEd Tanous                                        systemName);
294922d268cbSEd Tanous             return;
295022d268cbSEd Tanous         }
2951dd60b9edSEd Tanous         asyncResp->res.addHeader(
2952dd60b9edSEd Tanous             boost::beast::http::field::link,
2953dd60b9edSEd Tanous             "</redfish/v1/JsonSchemas/ComputerSystem/ComputerSystem.json>; rel=describedby");
29548d1b46d7Szhanghch05         asyncResp->res.jsonValue["@odata.type"] =
295537bbf98cSChris Cain             "#ComputerSystem.v1_16_0.ComputerSystem";
29568d1b46d7Szhanghch05         asyncResp->res.jsonValue["Name"] = "system";
29578d1b46d7Szhanghch05         asyncResp->res.jsonValue["Id"] = "system";
29588d1b46d7Szhanghch05         asyncResp->res.jsonValue["SystemType"] = "Physical";
29598d1b46d7Szhanghch05         asyncResp->res.jsonValue["Description"] = "Computer System";
29608d1b46d7Szhanghch05         asyncResp->res.jsonValue["ProcessorSummary"]["Count"] = 0;
29618d1b46d7Szhanghch05         asyncResp->res.jsonValue["ProcessorSummary"]["Status"]["State"] =
29628d1b46d7Szhanghch05             "Disabled";
29638d1b46d7Szhanghch05         asyncResp->res.jsonValue["MemorySummary"]["TotalSystemMemoryGiB"] =
29648d1b46d7Szhanghch05             uint64_t(0);
29658d1b46d7Szhanghch05         asyncResp->res.jsonValue["MemorySummary"]["Status"]["State"] =
29668d1b46d7Szhanghch05             "Disabled";
2967002d39b4SEd Tanous         asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Systems/system";
296804a258f4SEd Tanous 
29691476687dSEd Tanous         asyncResp->res.jsonValue["Processors"]["@odata.id"] =
29701476687dSEd Tanous             "/redfish/v1/Systems/system/Processors";
29711476687dSEd Tanous         asyncResp->res.jsonValue["Memory"]["@odata.id"] =
29721476687dSEd Tanous             "/redfish/v1/Systems/system/Memory";
29731476687dSEd Tanous         asyncResp->res.jsonValue["Storage"]["@odata.id"] =
29741476687dSEd Tanous             "/redfish/v1/Systems/system/Storage";
29753179105bSSunny Srivastava         asyncResp->res.jsonValue["FabricAdapters"]["@odata.id"] =
29763179105bSSunny Srivastava             "/redfish/v1/Systems/system/FabricAdapters";
2977029573d4SEd Tanous 
2978002d39b4SEd Tanous         asyncResp->res.jsonValue["Actions"]["#ComputerSystem.Reset"]["target"] =
29791476687dSEd Tanous             "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset";
29801476687dSEd Tanous         asyncResp->res.jsonValue["Actions"]["#ComputerSystem.Reset"]
29811476687dSEd Tanous                                 ["@Redfish.ActionInfo"] =
29821476687dSEd Tanous             "/redfish/v1/Systems/system/ResetActionInfo";
2983c5b2abe0SLewanczyk, Dawid 
29841476687dSEd Tanous         asyncResp->res.jsonValue["LogServices"]["@odata.id"] =
29851476687dSEd Tanous             "/redfish/v1/Systems/system/LogServices";
29861476687dSEd Tanous         asyncResp->res.jsonValue["Bios"]["@odata.id"] =
29871476687dSEd Tanous             "/redfish/v1/Systems/system/Bios";
2988c4bf6374SJason M. Bills 
29891476687dSEd Tanous         nlohmann::json::array_t managedBy;
29901476687dSEd Tanous         nlohmann::json& manager = managedBy.emplace_back();
29911476687dSEd Tanous         manager["@odata.id"] = "/redfish/v1/Managers/bmc";
2992002d39b4SEd Tanous         asyncResp->res.jsonValue["Links"]["ManagedBy"] = std::move(managedBy);
29931476687dSEd Tanous         asyncResp->res.jsonValue["Status"]["Health"] = "OK";
29941476687dSEd Tanous         asyncResp->res.jsonValue["Status"]["State"] = "Enabled";
29950e8ac5e7SGunnar Mills 
29960e8ac5e7SGunnar Mills         // Fill in SerialConsole info
2997002d39b4SEd Tanous         asyncResp->res.jsonValue["SerialConsole"]["MaxConcurrentSessions"] = 15;
2998002d39b4SEd Tanous         asyncResp->res.jsonValue["SerialConsole"]["IPMI"]["ServiceEnabled"] =
2999002d39b4SEd Tanous             true;
30001476687dSEd Tanous 
30010e8ac5e7SGunnar Mills         // TODO (Gunnar): Should look for obmc-console-ssh@2200.service
30021476687dSEd Tanous         asyncResp->res.jsonValue["SerialConsole"]["SSH"]["ServiceEnabled"] =
30031476687dSEd Tanous             true;
30041476687dSEd Tanous         asyncResp->res.jsonValue["SerialConsole"]["SSH"]["Port"] = 2200;
30051476687dSEd Tanous         asyncResp->res
30061476687dSEd Tanous             .jsonValue["SerialConsole"]["SSH"]["HotKeySequenceDisplay"] =
30071476687dSEd Tanous             "Press ~. to exit console";
3008*5c3e9272SAbhishek Patel         getPortStatusAndPath(std::span{protocolToDBusForSystems},
3009*5c3e9272SAbhishek Patel                              std::bind_front(afterPortRequest, asyncResp));
30100e8ac5e7SGunnar Mills 
30110e8ac5e7SGunnar Mills #ifdef BMCWEB_ENABLE_KVM
30120e8ac5e7SGunnar Mills         // Fill in GraphicalConsole info
3013002d39b4SEd Tanous         asyncResp->res.jsonValue["GraphicalConsole"]["ServiceEnabled"] = true;
3014002d39b4SEd Tanous         asyncResp->res.jsonValue["GraphicalConsole"]["MaxConcurrentSessions"] =
3015002d39b4SEd Tanous             4;
3016613dabeaSEd Tanous         asyncResp->res.jsonValue["GraphicalConsole"]["ConnectTypesSupported"] =
3017613dabeaSEd Tanous             nlohmann::json::array_t({"KVMIP"});
30181476687dSEd Tanous 
30190e8ac5e7SGunnar Mills #endif // BMCWEB_ENABLE_KVM
30207a1dbc48SGeorge Liu         constexpr std::array<std::string_view, 4> inventoryForSystems{
3021b49ac873SJames Feist             "xyz.openbmc_project.Inventory.Item.Dimm",
30222ad9c2f6SJames Feist             "xyz.openbmc_project.Inventory.Item.Cpu",
3023e284a7c1SJames Feist             "xyz.openbmc_project.Inventory.Item.Drive",
3024e284a7c1SJames Feist             "xyz.openbmc_project.Inventory.Item.StorageController"};
3025b49ac873SJames Feist 
3026b49ac873SJames Feist         auto health = std::make_shared<HealthPopulate>(asyncResp);
30277a1dbc48SGeorge Liu         dbus::utility::getSubTreePaths(
30287a1dbc48SGeorge Liu             "/", 0, inventoryForSystems,
30297a1dbc48SGeorge Liu             [health](const boost::system::error_code& ec,
3030914e2d5dSEd Tanous                      const std::vector<std::string>& resp) {
3031b49ac873SJames Feist             if (ec)
3032b49ac873SJames Feist             {
3033b49ac873SJames Feist                 // no inventory
3034b49ac873SJames Feist                 return;
3035b49ac873SJames Feist             }
3036b49ac873SJames Feist 
3037914e2d5dSEd Tanous             health->inventory = resp;
30387a1dbc48SGeorge Liu             });
3039b49ac873SJames Feist 
3040b49ac873SJames Feist         health->populate();
3041b49ac873SJames Feist 
3042002d39b4SEd Tanous         getMainChassisId(asyncResp,
3043002d39b4SEd Tanous                          [](const std::string& chassisId,
30448d1b46d7Szhanghch05                             const std::shared_ptr<bmcweb::AsyncResp>& aRsp) {
3045b2c7e208SEd Tanous             nlohmann::json::array_t chassisArray;
3046b2c7e208SEd Tanous             nlohmann::json& chassis = chassisArray.emplace_back();
3047eddfc437SWilly Tu             chassis["@odata.id"] = crow::utility::urlFromPieces(
3048eddfc437SWilly Tu                 "redfish", "v1", "Chassis", chassisId);
3049002d39b4SEd Tanous             aRsp->res.jsonValue["Links"]["Chassis"] = std::move(chassisArray);
3050c5d03ff4SJennifer Lee         });
3051a3002228SAppaRao Puli 
30529f8bfa7cSGunnar Mills         getLocationIndicatorActive(asyncResp);
30539f8bfa7cSGunnar Mills         // TODO (Gunnar): Remove IndicatorLED after enough time has passed
3054a3002228SAppaRao Puli         getIndicatorLedState(asyncResp);
30555bc2dc8eSJames Feist         getComputerSystem(asyncResp, health);
30566c34de48SEd Tanous         getHostState(asyncResp);
3057491d8ee7SSantosh Puranik         getBootProperties(asyncResp);
3058978b8803SAndrew Geissler         getBootProgress(asyncResp);
3059b6d5d45cSHieu Huynh         getBootProgressLastStateTime(asyncResp);
3060adbe192aSJason M. Bills         getPCIeDeviceList(asyncResp, "PCIeDevices");
306151709ffdSYong Li         getHostWatchdogTimer(asyncResp);
3062c6a620f2SGeorge Liu         getPowerRestorePolicy(asyncResp);
30636bd5a8d2SGunnar Mills         getAutomaticRetry(asyncResp);
3064c0557e1aSGunnar Mills         getLastResetTime(asyncResp);
3065a6349918SAppaRao Puli #ifdef BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE
3066a6349918SAppaRao Puli         getProvisioningStatus(asyncResp);
3067a6349918SAppaRao Puli #endif
30681981771bSAli Ahmed         getTrustedModuleRequiredToBoot(asyncResp);
30693a2d0424SChris Cain         getPowerMode(asyncResp);
307037bbf98cSChris Cain         getIdlePowerSaver(asyncResp);
30717e860f15SJohn Edward Broadbent         });
3072550a6bf8SJiaqing Zhao 
307322d268cbSEd Tanous     BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/")
3074ed398213SEd Tanous         .privileges(redfish::privileges::patchComputerSystem)
30757e860f15SJohn Edward Broadbent         .methods(boost::beast::http::verb::patch)(
307645ca1b86SEd Tanous             [&app](const crow::Request& req,
307722d268cbSEd Tanous                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
307822d268cbSEd Tanous                    const std::string& systemName) {
30793ba00073SCarson Labrado         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
308045ca1b86SEd Tanous         {
308145ca1b86SEd Tanous             return;
308245ca1b86SEd Tanous         }
308322d268cbSEd Tanous         if (systemName != "system")
308422d268cbSEd Tanous         {
308522d268cbSEd Tanous             messages::resourceNotFound(asyncResp->res, "ComputerSystem",
308622d268cbSEd Tanous                                        systemName);
308722d268cbSEd Tanous             return;
308822d268cbSEd Tanous         }
308922d268cbSEd Tanous 
3090dd60b9edSEd Tanous         asyncResp->res.addHeader(
3091dd60b9edSEd Tanous             boost::beast::http::field::link,
3092dd60b9edSEd Tanous             "</redfish/v1/JsonSchemas/ComputerSystem/ComputerSystem.json>; rel=describedby");
3093dd60b9edSEd Tanous 
30949f8bfa7cSGunnar Mills         std::optional<bool> locationIndicatorActive;
3095cde19e5fSSantosh Puranik         std::optional<std::string> indicatorLed;
309698e386ecSGunnar Mills         std::optional<std::string> assetTag;
3097c6a620f2SGeorge Liu         std::optional<std::string> powerRestorePolicy;
30983a2d0424SChris Cain         std::optional<std::string> powerMode;
3099550a6bf8SJiaqing Zhao         std::optional<bool> wdtEnable;
3100550a6bf8SJiaqing Zhao         std::optional<std::string> wdtTimeOutAction;
3101550a6bf8SJiaqing Zhao         std::optional<std::string> bootSource;
3102550a6bf8SJiaqing Zhao         std::optional<std::string> bootType;
3103550a6bf8SJiaqing Zhao         std::optional<std::string> bootEnable;
3104550a6bf8SJiaqing Zhao         std::optional<std::string> bootAutomaticRetry;
3105550a6bf8SJiaqing Zhao         std::optional<bool> bootTrustedModuleRequired;
3106550a6bf8SJiaqing Zhao         std::optional<bool> ipsEnable;
3107550a6bf8SJiaqing Zhao         std::optional<uint8_t> ipsEnterUtil;
3108550a6bf8SJiaqing Zhao         std::optional<uint64_t> ipsEnterTime;
3109550a6bf8SJiaqing Zhao         std::optional<uint8_t> ipsExitUtil;
3110550a6bf8SJiaqing Zhao         std::optional<uint64_t> ipsExitTime;
3111550a6bf8SJiaqing Zhao 
3112550a6bf8SJiaqing Zhao         // clang-format off
311315ed6780SWilly Tu                 if (!json_util::readJsonPatch(
3114550a6bf8SJiaqing Zhao                         req, asyncResp->res,
3115550a6bf8SJiaqing Zhao                         "IndicatorLED", indicatorLed,
31167e860f15SJohn Edward Broadbent                         "LocationIndicatorActive", locationIndicatorActive,
3117550a6bf8SJiaqing Zhao                         "AssetTag", assetTag,
3118550a6bf8SJiaqing Zhao                         "PowerRestorePolicy", powerRestorePolicy,
3119550a6bf8SJiaqing Zhao                         "PowerMode", powerMode,
3120550a6bf8SJiaqing Zhao                         "HostWatchdogTimer/FunctionEnabled", wdtEnable,
3121550a6bf8SJiaqing Zhao                         "HostWatchdogTimer/TimeoutAction", wdtTimeOutAction,
3122550a6bf8SJiaqing Zhao                         "Boot/BootSourceOverrideTarget", bootSource,
3123550a6bf8SJiaqing Zhao                         "Boot/BootSourceOverrideMode", bootType,
3124550a6bf8SJiaqing Zhao                         "Boot/BootSourceOverrideEnabled", bootEnable,
3125550a6bf8SJiaqing Zhao                         "Boot/AutomaticRetryConfig", bootAutomaticRetry,
3126550a6bf8SJiaqing Zhao                         "Boot/TrustedModuleRequiredToBoot", bootTrustedModuleRequired,
3127550a6bf8SJiaqing Zhao                         "IdlePowerSaver/Enabled", ipsEnable,
3128550a6bf8SJiaqing Zhao                         "IdlePowerSaver/EnterUtilizationPercent", ipsEnterUtil,
3129550a6bf8SJiaqing Zhao                         "IdlePowerSaver/EnterDwellTimeSeconds", ipsEnterTime,
3130550a6bf8SJiaqing Zhao                         "IdlePowerSaver/ExitUtilizationPercent", ipsExitUtil,
3131550a6bf8SJiaqing Zhao                         "IdlePowerSaver/ExitDwellTimeSeconds", ipsExitTime))
31326617338dSEd Tanous                 {
31336617338dSEd Tanous                     return;
31346617338dSEd Tanous                 }
3135550a6bf8SJiaqing Zhao         // clang-format on
3136491d8ee7SSantosh Puranik 
31378d1b46d7Szhanghch05         asyncResp->res.result(boost::beast::http::status::no_content);
3138c45f0082SYong Li 
313998e386ecSGunnar Mills         if (assetTag)
314098e386ecSGunnar Mills         {
314198e386ecSGunnar Mills             setAssetTag(asyncResp, *assetTag);
314298e386ecSGunnar Mills         }
314398e386ecSGunnar Mills 
3144550a6bf8SJiaqing Zhao         if (wdtEnable || wdtTimeOutAction)
3145c45f0082SYong Li         {
3146f23b7296SEd Tanous             setWDTProperties(asyncResp, wdtEnable, wdtTimeOutAction);
3147c45f0082SYong Li         }
3148c45f0082SYong Li 
3149cd9a4666SKonstantin Aladyshev         if (bootSource || bootType || bootEnable)
315069f35306SGunnar Mills         {
3151002d39b4SEd Tanous             setBootProperties(asyncResp, bootSource, bootType, bootEnable);
3152491d8ee7SSantosh Puranik         }
3153550a6bf8SJiaqing Zhao         if (bootAutomaticRetry)
315469f35306SGunnar Mills         {
3155550a6bf8SJiaqing Zhao             setAutomaticRetry(asyncResp, *bootAutomaticRetry);
315669f35306SGunnar Mills         }
3157ac7e1e0bSAli Ahmed 
3158550a6bf8SJiaqing Zhao         if (bootTrustedModuleRequired)
3159ac7e1e0bSAli Ahmed         {
3160550a6bf8SJiaqing Zhao             setTrustedModuleRequiredToBoot(asyncResp,
3161550a6bf8SJiaqing Zhao                                            *bootTrustedModuleRequired);
316269f35306SGunnar Mills         }
3163265c1602SJohnathan Mantey 
31649f8bfa7cSGunnar Mills         if (locationIndicatorActive)
31659f8bfa7cSGunnar Mills         {
3166002d39b4SEd Tanous             setLocationIndicatorActive(asyncResp, *locationIndicatorActive);
31679f8bfa7cSGunnar Mills         }
31689f8bfa7cSGunnar Mills 
31697e860f15SJohn Edward Broadbent         // TODO (Gunnar): Remove IndicatorLED after enough time has
31707e860f15SJohn Edward Broadbent         // passed
31719712f8acSEd Tanous         if (indicatorLed)
31726617338dSEd Tanous         {
3173f23b7296SEd Tanous             setIndicatorLedState(asyncResp, *indicatorLed);
3174002d39b4SEd Tanous             asyncResp->res.addHeader(boost::beast::http::field::warning,
3175d6aa0093SGunnar Mills                                      "299 - \"IndicatorLED is deprecated. Use "
3176d6aa0093SGunnar Mills                                      "LocationIndicatorActive instead.\"");
31776617338dSEd Tanous         }
3178c6a620f2SGeorge Liu 
3179c6a620f2SGeorge Liu         if (powerRestorePolicy)
3180c6a620f2SGeorge Liu         {
31814e69c904SGunnar Mills             setPowerRestorePolicy(asyncResp, *powerRestorePolicy);
3182c6a620f2SGeorge Liu         }
31833a2d0424SChris Cain 
31843a2d0424SChris Cain         if (powerMode)
31853a2d0424SChris Cain         {
31863a2d0424SChris Cain             setPowerMode(asyncResp, *powerMode);
31873a2d0424SChris Cain         }
318837bbf98cSChris Cain 
3189550a6bf8SJiaqing Zhao         if (ipsEnable || ipsEnterUtil || ipsEnterTime || ipsExitUtil ||
3190550a6bf8SJiaqing Zhao             ipsExitTime)
319137bbf98cSChris Cain         {
3192002d39b4SEd Tanous             setIdlePowerSaver(asyncResp, ipsEnable, ipsEnterUtil, ipsEnterTime,
3193002d39b4SEd Tanous                               ipsExitUtil, ipsExitTime);
319437bbf98cSChris Cain         }
31957e860f15SJohn Edward Broadbent         });
3196c5b2abe0SLewanczyk, Dawid }
31971cb1a9e6SAppaRao Puli 
319838c8a6f2SEd Tanous inline void handleSystemCollectionResetActionHead(
3199dd60b9edSEd Tanous     crow::App& app, const crow::Request& req,
3200dd60b9edSEd Tanous     const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
3201dd60b9edSEd Tanous {
3202dd60b9edSEd Tanous     if (!redfish::setUpRedfishRoute(app, req, asyncResp))
3203dd60b9edSEd Tanous     {
3204dd60b9edSEd Tanous         return;
3205dd60b9edSEd Tanous     }
3206dd60b9edSEd Tanous     asyncResp->res.addHeader(
3207dd60b9edSEd Tanous         boost::beast::http::field::link,
3208dd60b9edSEd Tanous         "</redfish/v1/JsonSchemas/ActionInfo/ActionInfo.json>; rel=describedby");
3209dd60b9edSEd Tanous }
3210dd60b9edSEd Tanous 
32111cb1a9e6SAppaRao Puli /**
32121cb1a9e6SAppaRao Puli  * SystemResetActionInfo derived class for delivering Computer Systems
32131cb1a9e6SAppaRao Puli  * ResetType AllowableValues using ResetInfo schema.
32141cb1a9e6SAppaRao Puli  */
32157e860f15SJohn Edward Broadbent inline void requestRoutesSystemResetActionInfo(App& app)
32161cb1a9e6SAppaRao Puli {
3217dd60b9edSEd Tanous     BMCWEB_ROUTE(app, "/redfish/v1/Systems/system/ResetActionInfo/")
3218dd60b9edSEd Tanous         .privileges(redfish::privileges::headActionInfo)
3219dd60b9edSEd Tanous         .methods(boost::beast::http::verb::head)(std::bind_front(
3220dd60b9edSEd Tanous             handleSystemCollectionResetActionHead, std::ref(app)));
32211cb1a9e6SAppaRao Puli     /**
32221cb1a9e6SAppaRao Puli      * Functions triggers appropriate requests on DBus
32231cb1a9e6SAppaRao Puli      */
322422d268cbSEd Tanous     BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/ResetActionInfo/")
3225ed398213SEd Tanous         .privileges(redfish::privileges::getActionInfo)
32267e860f15SJohn Edward Broadbent         .methods(boost::beast::http::verb::get)(
322745ca1b86SEd Tanous             [&app](const crow::Request& req,
322822d268cbSEd Tanous                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
322922d268cbSEd Tanous                    const std::string& systemName) {
32303ba00073SCarson Labrado         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
323145ca1b86SEd Tanous         {
323245ca1b86SEd Tanous             return;
323345ca1b86SEd Tanous         }
323422d268cbSEd Tanous         if (systemName != "system")
323522d268cbSEd Tanous         {
323622d268cbSEd Tanous             messages::resourceNotFound(asyncResp->res, "ComputerSystem",
323722d268cbSEd Tanous                                        systemName);
323822d268cbSEd Tanous             return;
323922d268cbSEd Tanous         }
324022d268cbSEd Tanous 
3241dd60b9edSEd Tanous         asyncResp->res.addHeader(
3242dd60b9edSEd Tanous             boost::beast::http::field::link,
3243dd60b9edSEd Tanous             "</redfish/v1/JsonSchemas/ActionInfo/ActionInfo.json>; rel=describedby");
32441476687dSEd Tanous 
32451476687dSEd Tanous         asyncResp->res.jsonValue["@odata.id"] =
32461476687dSEd Tanous             "/redfish/v1/Systems/system/ResetActionInfo";
32471476687dSEd Tanous         asyncResp->res.jsonValue["@odata.type"] =
32481476687dSEd Tanous             "#ActionInfo.v1_1_2.ActionInfo";
32491476687dSEd Tanous         asyncResp->res.jsonValue["Name"] = "Reset Action Info";
32501476687dSEd Tanous         asyncResp->res.jsonValue["Id"] = "ResetActionInfo";
32513215e700SNan Zhou 
32523215e700SNan Zhou         nlohmann::json::array_t parameters;
32533215e700SNan Zhou         nlohmann::json::object_t parameter;
32543215e700SNan Zhou 
32553215e700SNan Zhou         parameter["Name"] = "ResetType";
32563215e700SNan Zhou         parameter["Required"] = true;
32573215e700SNan Zhou         parameter["DataType"] = "String";
32583215e700SNan Zhou         nlohmann::json::array_t allowableValues;
32593215e700SNan Zhou         allowableValues.emplace_back("On");
32603215e700SNan Zhou         allowableValues.emplace_back("ForceOff");
32613215e700SNan Zhou         allowableValues.emplace_back("ForceOn");
32623215e700SNan Zhou         allowableValues.emplace_back("ForceRestart");
32633215e700SNan Zhou         allowableValues.emplace_back("GracefulRestart");
32643215e700SNan Zhou         allowableValues.emplace_back("GracefulShutdown");
32653215e700SNan Zhou         allowableValues.emplace_back("PowerCycle");
32663215e700SNan Zhou         allowableValues.emplace_back("Nmi");
32673215e700SNan Zhou         parameter["AllowableValues"] = std::move(allowableValues);
32683215e700SNan Zhou         parameters.emplace_back(std::move(parameter));
32693215e700SNan Zhou 
32703215e700SNan Zhou         asyncResp->res.jsonValue["Parameters"] = std::move(parameters);
32717e860f15SJohn Edward Broadbent         });
32721cb1a9e6SAppaRao Puli }
3273c5b2abe0SLewanczyk, Dawid } // namespace redfish
3274