blob: a114d4409223d3f65c7b9fb76639ac5fe9208578 [file] [log] [blame]
Borawski.Lukasz9c3106852018-02-09 15:24:22 +01001/*
2// Copyright (c) 2018 Intel Corporation
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15*/
16#pragma once
17
Willy Tu13451e32023-05-24 16:08:18 -070018#include "bmcweb_config.h"
19
Sui Chena51fc2d2022-07-14 17:21:53 -070020#include "app.hpp"
21#include "dbus_utility.hpp"
James Feistb49ac872019-05-21 15:12:01 -070022#include "health.hpp"
Sui Chena51fc2d2022-07-14 17:21:53 -070023#include "query.hpp"
Jennifer Leec5d03ff2019-03-08 15:42:58 -080024#include "redfish_util.hpp"
Sui Chena51fc2d2022-07-14 17:21:53 -070025#include "registries/privilege_registry.hpp"
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +020026#include "utils/dbus_utils.hpp"
Ed Tanous3ccb3ad2023-01-13 17:40:03 -080027#include "utils/json_utils.hpp"
Sui Chena51fc2d2022-07-14 17:21:53 -070028#include "utils/sw_utils.hpp"
29#include "utils/systemd_utils.hpp"
Ed Tanous2b829372022-08-03 14:22:34 -070030#include "utils/time_utils.hpp"
Borawski.Lukasz9c3106852018-02-09 15:24:22 +010031
George Liue99073f2022-12-09 11:06:16 +080032#include <boost/system/error_code.hpp>
Ed Tanousef4c65b2023-04-24 15:28:50 -070033#include <boost/url/format.hpp>
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +020034#include <sdbusplus/asio/property.hpp>
35#include <sdbusplus/unpack_properties.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050036
Ed Tanousa170f272022-06-30 21:53:27 -070037#include <algorithm>
George Liue99073f2022-12-09 11:06:16 +080038#include <array>
Gunnar Mills4bfefa72020-07-30 13:54:29 -050039#include <cstdint>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050040#include <memory>
41#include <sstream>
George Liue99073f2022-12-09 11:06:16 +080042#include <string_view>
Ed Tanousabf2add2019-01-22 16:40:12 -080043#include <variant>
James Feist5b4aa862018-08-16 14:07:01 -070044
Ed Tanous1abe55e2018-09-05 08:30:59 -070045namespace redfish
46{
Jennifer Leeed5befb2018-08-10 11:29:45 -070047
48/**
Gunnar Mills2a5c4402020-05-19 09:07:24 -050049 * Function reboots the BMC.
50 *
51 * @param[in] asyncResp - Shared pointer for completing asynchronous calls
Jennifer Leeed5befb2018-08-10 11:29:45 -070052 */
zhanghch058d1b46d2021-04-01 11:18:24 +080053inline void
54 doBMCGracefulRestart(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Gunnar Mills2a5c4402020-05-19 09:07:24 -050055{
56 const char* processName = "xyz.openbmc_project.State.BMC";
57 const char* objectPath = "/xyz/openbmc_project/state/bmc0";
58 const char* interfaceName = "xyz.openbmc_project.State.BMC";
59 const std::string& propertyValue =
60 "xyz.openbmc_project.State.BMC.Transition.Reboot";
61 const char* destProperty = "RequestedBMCTransition";
62
63 // Create the D-Bus variant for D-Bus call.
George Liu9ae226f2023-06-21 17:56:46 +080064 sdbusplus::asio::setProperty(
65 *crow::connections::systemBus, processName, objectPath, interfaceName,
66 destProperty, propertyValue,
Ed Tanous5e7e2dc2023-02-16 10:37:01 -080067 [asyncResp](const boost::system::error_code& ec) {
Ed Tanous002d39b2022-05-31 08:59:27 -070068 // Use "Set" method to set the property value.
69 if (ec)
70 {
Ed Tanous62598e32023-07-17 17:06:25 -070071 BMCWEB_LOG_DEBUG("[Set] Bad D-Bus request error: {}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -070072 messages::internalError(asyncResp->res);
73 return;
74 }
Gunnar Mills2a5c4402020-05-19 09:07:24 -050075
Ed Tanous002d39b2022-05-31 08:59:27 -070076 messages::success(asyncResp->res);
George Liu9ae226f2023-06-21 17:56:46 +080077 });
Gunnar Mills2a5c4402020-05-19 09:07:24 -050078}
79
zhanghch058d1b46d2021-04-01 11:18:24 +080080inline void
81 doBMCForceRestart(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Jayaprakash Mutyalaf92af382020-06-16 23:29:41 +000082{
83 const char* processName = "xyz.openbmc_project.State.BMC";
84 const char* objectPath = "/xyz/openbmc_project/state/bmc0";
85 const char* interfaceName = "xyz.openbmc_project.State.BMC";
86 const std::string& propertyValue =
87 "xyz.openbmc_project.State.BMC.Transition.HardReboot";
88 const char* destProperty = "RequestedBMCTransition";
89
90 // Create the D-Bus variant for D-Bus call.
George Liu9ae226f2023-06-21 17:56:46 +080091 sdbusplus::asio::setProperty(
92 *crow::connections::systemBus, processName, objectPath, interfaceName,
93 destProperty, propertyValue,
Ed Tanous5e7e2dc2023-02-16 10:37:01 -080094 [asyncResp](const boost::system::error_code& ec) {
Ed Tanous002d39b2022-05-31 08:59:27 -070095 // Use "Set" method to set the property value.
96 if (ec)
97 {
Ed Tanous62598e32023-07-17 17:06:25 -070098 BMCWEB_LOG_DEBUG("[Set] Bad D-Bus request error: {}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -070099 messages::internalError(asyncResp->res);
100 return;
101 }
Jayaprakash Mutyalaf92af382020-06-16 23:29:41 +0000102
Ed Tanous002d39b2022-05-31 08:59:27 -0700103 messages::success(asyncResp->res);
George Liu9ae226f2023-06-21 17:56:46 +0800104 });
Jayaprakash Mutyalaf92af382020-06-16 23:29:41 +0000105}
106
Gunnar Mills2a5c4402020-05-19 09:07:24 -0500107/**
108 * ManagerResetAction class supports the POST method for the Reset (reboot)
109 * action.
110 */
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700111inline void requestRoutesManagerResetAction(App& app)
Jennifer Leeed5befb2018-08-10 11:29:45 -0700112{
Jennifer Leeed5befb2018-08-10 11:29:45 -0700113 /**
Jennifer Leeed5befb2018-08-10 11:29:45 -0700114 * Function handles POST method request.
Gunnar Mills2a5c4402020-05-19 09:07:24 -0500115 * Analyzes POST body before sending Reset (Reboot) request data to D-Bus.
Jayaprakash Mutyalaf92af382020-06-16 23:29:41 +0000116 * OpenBMC supports ResetType "GracefulRestart" and "ForceRestart".
Jennifer Leeed5befb2018-08-10 11:29:45 -0700117 */
Jennifer Leeed5befb2018-08-10 11:29:45 -0700118
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700119 BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/Actions/Manager.Reset/")
Ed Tanoused398212021-06-09 17:05:54 -0700120 .privileges(redfish::privileges::postManager)
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700121 .methods(boost::beast::http::verb::post)(
Ed Tanous45ca1b82022-03-25 13:07:27 -0700122 [&app](const crow::Request& req,
123 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
Carson Labrado3ba00072022-06-06 19:40:56 +0000124 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -0700125 {
126 return;
127 }
Ed Tanous62598e32023-07-17 17:06:25 -0700128 BMCWEB_LOG_DEBUG("Post Manager Reset.");
Gunnar Mills2a5c4402020-05-19 09:07:24 -0500129
Ed Tanous002d39b2022-05-31 08:59:27 -0700130 std::string resetType;
Jennifer Leeed5befb2018-08-10 11:29:45 -0700131
Ed Tanous002d39b2022-05-31 08:59:27 -0700132 if (!json_util::readJsonAction(req, asyncResp->res, "ResetType",
133 resetType))
134 {
135 return;
136 }
Gunnar Mills2a5c4402020-05-19 09:07:24 -0500137
Ed Tanous002d39b2022-05-31 08:59:27 -0700138 if (resetType == "GracefulRestart")
139 {
Ed Tanous62598e32023-07-17 17:06:25 -0700140 BMCWEB_LOG_DEBUG("Proceeding with {}", resetType);
Ed Tanous002d39b2022-05-31 08:59:27 -0700141 doBMCGracefulRestart(asyncResp);
142 return;
143 }
144 if (resetType == "ForceRestart")
145 {
Ed Tanous62598e32023-07-17 17:06:25 -0700146 BMCWEB_LOG_DEBUG("Proceeding with {}", resetType);
Ed Tanous002d39b2022-05-31 08:59:27 -0700147 doBMCForceRestart(asyncResp);
148 return;
149 }
Ed Tanous62598e32023-07-17 17:06:25 -0700150 BMCWEB_LOG_DEBUG("Invalid property value for ResetType: {}", resetType);
Ed Tanous002d39b2022-05-31 08:59:27 -0700151 messages::actionParameterNotSupported(asyncResp->res, resetType,
152 "ResetType");
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700153
Ed Tanous002d39b2022-05-31 08:59:27 -0700154 return;
155 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700156}
Jennifer Leeed5befb2018-08-10 11:29:45 -0700157
Gunnar Mills3e40fc72020-05-19 19:18:17 -0500158/**
159 * ManagerResetToDefaultsAction class supports POST method for factory reset
160 * action.
161 */
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700162inline void requestRoutesManagerResetToDefaultsAction(App& app)
Gunnar Mills3e40fc72020-05-19 19:18:17 -0500163{
Gunnar Mills3e40fc72020-05-19 19:18:17 -0500164 /**
165 * Function handles ResetToDefaults POST method request.
166 *
167 * Analyzes POST body message and factory resets BMC by calling
168 * BMC code updater factory reset followed by a BMC reboot.
169 *
170 * BMC code updater factory reset wipes the whole BMC read-write
171 * filesystem which includes things like the network settings.
172 *
173 * OpenBMC only supports ResetToDefaultsType "ResetAll".
174 */
Gunnar Mills3e40fc72020-05-19 19:18:17 -0500175
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700176 BMCWEB_ROUTE(app,
177 "/redfish/v1/Managers/bmc/Actions/Manager.ResetToDefaults/")
Ed Tanoused398212021-06-09 17:05:54 -0700178 .privileges(redfish::privileges::postManager)
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700179 .methods(boost::beast::http::verb::post)(
Ed Tanous45ca1b82022-03-25 13:07:27 -0700180 [&app](const crow::Request& req,
181 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
Carson Labrado3ba00072022-06-06 19:40:56 +0000182 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -0700183 {
184 return;
185 }
Ed Tanous62598e32023-07-17 17:06:25 -0700186 BMCWEB_LOG_DEBUG("Post ResetToDefaults.");
Gunnar Mills3e40fc72020-05-19 19:18:17 -0500187
Ed Tanous002d39b2022-05-31 08:59:27 -0700188 std::string resetType;
Gunnar Mills3e40fc72020-05-19 19:18:17 -0500189
Ed Tanous002d39b2022-05-31 08:59:27 -0700190 if (!json_util::readJsonAction(req, asyncResp->res,
191 "ResetToDefaultsType", resetType))
192 {
Ed Tanous62598e32023-07-17 17:06:25 -0700193 BMCWEB_LOG_DEBUG("Missing property ResetToDefaultsType.");
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700194
Ed Tanous002d39b2022-05-31 08:59:27 -0700195 messages::actionParameterMissing(asyncResp->res, "ResetToDefaults",
196 "ResetToDefaultsType");
197 return;
198 }
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700199
Ed Tanous002d39b2022-05-31 08:59:27 -0700200 if (resetType != "ResetAll")
201 {
Ed Tanous62598e32023-07-17 17:06:25 -0700202 BMCWEB_LOG_DEBUG(
203 "Invalid property value for ResetToDefaultsType: {}",
204 resetType);
Ed Tanous002d39b2022-05-31 08:59:27 -0700205 messages::actionParameterNotSupported(asyncResp->res, resetType,
206 "ResetToDefaultsType");
207 return;
208 }
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700209
Ed Tanous002d39b2022-05-31 08:59:27 -0700210 crow::connections::systemBus->async_method_call(
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800211 [asyncResp](const boost::system::error_code& ec) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700212 if (ec)
213 {
Ed Tanous62598e32023-07-17 17:06:25 -0700214 BMCWEB_LOG_DEBUG("Failed to ResetToDefaults: {}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -0700215 messages::internalError(asyncResp->res);
216 return;
217 }
218 // Factory Reset doesn't actually happen until a reboot
219 // Can't erase what the BMC is running on
220 doBMCGracefulRestart(asyncResp);
221 },
222 "xyz.openbmc_project.Software.BMC.Updater",
223 "/xyz/openbmc_project/software",
224 "xyz.openbmc_project.Common.FactoryReset", "Reset");
225 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700226}
Gunnar Mills3e40fc72020-05-19 19:18:17 -0500227
AppaRao Puli1cb1a9e2020-07-17 23:38:57 +0530228/**
229 * ManagerResetActionInfo derived class for delivering Manager
230 * ResetType AllowableValues using ResetInfo schema.
231 */
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700232inline void requestRoutesManagerResetActionInfo(App& app)
AppaRao Puli1cb1a9e2020-07-17 23:38:57 +0530233{
AppaRao Puli1cb1a9e2020-07-17 23:38:57 +0530234 /**
235 * Functions triggers appropriate requests on DBus
236 */
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700237
238 BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/ResetActionInfo/")
Ed Tanoused398212021-06-09 17:05:54 -0700239 .privileges(redfish::privileges::getActionInfo)
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700240 .methods(boost::beast::http::verb::get)(
Ed Tanous45ca1b82022-03-25 13:07:27 -0700241 [&app](const crow::Request& req,
242 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
Carson Labrado3ba00072022-06-06 19:40:56 +0000243 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -0700244 {
245 return;
246 }
Ed Tanous14766872022-03-15 10:44:42 -0700247
Ed Tanous002d39b2022-05-31 08:59:27 -0700248 asyncResp->res.jsonValue["@odata.type"] =
249 "#ActionInfo.v1_1_2.ActionInfo";
250 asyncResp->res.jsonValue["@odata.id"] =
251 "/redfish/v1/Managers/bmc/ResetActionInfo";
252 asyncResp->res.jsonValue["Name"] = "Reset Action Info";
253 asyncResp->res.jsonValue["Id"] = "ResetActionInfo";
254 nlohmann::json::object_t parameter;
255 parameter["Name"] = "ResetType";
256 parameter["Required"] = true;
257 parameter["DataType"] = "String";
Ed Tanous14766872022-03-15 10:44:42 -0700258
Ed Tanous002d39b2022-05-31 08:59:27 -0700259 nlohmann::json::array_t allowableValues;
Patrick Williamsad539542023-05-12 10:10:08 -0500260 allowableValues.emplace_back("GracefulRestart");
261 allowableValues.emplace_back("ForceRestart");
Ed Tanous002d39b2022-05-31 08:59:27 -0700262 parameter["AllowableValues"] = std::move(allowableValues);
Ed Tanous14766872022-03-15 10:44:42 -0700263
Ed Tanous002d39b2022-05-31 08:59:27 -0700264 nlohmann::json::array_t parameters;
Patrick Williamsad539542023-05-12 10:10:08 -0500265 parameters.emplace_back(std::move(parameter));
Ed Tanous14766872022-03-15 10:44:42 -0700266
Ed Tanous002d39b2022-05-31 08:59:27 -0700267 asyncResp->res.jsonValue["Parameters"] = std::move(parameters);
268 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -0700269}
AppaRao Puli1cb1a9e2020-07-17 23:38:57 +0530270
James Feist5b4aa862018-08-16 14:07:01 -0700271static constexpr const char* objectManagerIface =
272 "org.freedesktop.DBus.ObjectManager";
273static constexpr const char* pidConfigurationIface =
274 "xyz.openbmc_project.Configuration.Pid";
275static constexpr const char* pidZoneConfigurationIface =
276 "xyz.openbmc_project.Configuration.Pid.Zone";
James Feistb7a08d02018-12-11 14:55:37 -0800277static constexpr const char* stepwiseConfigurationIface =
278 "xyz.openbmc_project.Configuration.Stepwise";
James Feist73df0db2019-03-25 15:29:35 -0700279static constexpr const char* thermalModeIface =
280 "xyz.openbmc_project.Control.ThermalMode";
Borawski.Lukasz9c3106852018-02-09 15:24:22 +0100281
zhanghch058d1b46d2021-04-01 11:18:24 +0800282inline void
283 asyncPopulatePid(const std::string& connection, const std::string& path,
284 const std::string& currentProfile,
285 const std::vector<std::string>& supportedProfiles,
286 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
James Feist5b4aa862018-08-16 14:07:01 -0700287{
George Liu5eb468d2023-06-20 17:03:24 +0800288 sdbusplus::message::object_path objPath(path);
289 dbus::utility::getManagedObjects(
290 connection, objPath,
James Feist73df0db2019-03-25 15:29:35 -0700291 [asyncResp, currentProfile, supportedProfiles](
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800292 const boost::system::error_code& ec,
James Feist73df0db2019-03-25 15:29:35 -0700293 const dbus::utility::ManagedObjectType& managedObj) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700294 if (ec)
295 {
Ed Tanous62598e32023-07-17 17:06:25 -0700296 BMCWEB_LOG_ERROR("{}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -0700297 messages::internalError(asyncResp->res);
298 return;
299 }
300 nlohmann::json& configRoot =
301 asyncResp->res.jsonValue["Oem"]["OpenBmc"]["Fan"];
302 nlohmann::json& fans = configRoot["FanControllers"];
303 fans["@odata.type"] = "#OemManager.FanControllers";
304 fans["@odata.id"] =
305 "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/FanControllers";
306
307 nlohmann::json& pids = configRoot["PidControllers"];
308 pids["@odata.type"] = "#OemManager.PidControllers";
309 pids["@odata.id"] =
310 "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/PidControllers";
311
312 nlohmann::json& stepwise = configRoot["StepwiseControllers"];
313 stepwise["@odata.type"] = "#OemManager.StepwiseControllers";
314 stepwise["@odata.id"] =
315 "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/StepwiseControllers";
316
317 nlohmann::json& zones = configRoot["FanZones"];
318 zones["@odata.id"] =
319 "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/FanZones";
320 zones["@odata.type"] = "#OemManager.FanZones";
321 configRoot["@odata.id"] = "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan";
322 configRoot["@odata.type"] = "#OemManager.Fan";
323 configRoot["Profile@Redfish.AllowableValues"] = supportedProfiles;
324
325 if (!currentProfile.empty())
326 {
327 configRoot["Profile"] = currentProfile;
328 }
Ed Tanous62598e32023-07-17 17:06:25 -0700329 BMCWEB_LOG_ERROR("profile = {} !", currentProfile);
Ed Tanous002d39b2022-05-31 08:59:27 -0700330
331 for (const auto& pathPair : managedObj)
332 {
333 for (const auto& intfPair : pathPair.second)
James Feist5b4aa862018-08-16 14:07:01 -0700334 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700335 if (intfPair.first != pidConfigurationIface &&
336 intfPair.first != pidZoneConfigurationIface &&
337 intfPair.first != stepwiseConfigurationIface)
James Feist5b4aa862018-08-16 14:07:01 -0700338 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700339 continue;
340 }
James Feist73df0db2019-03-25 15:29:35 -0700341
Ed Tanous002d39b2022-05-31 08:59:27 -0700342 std::string name;
James Feist73df0db2019-03-25 15:29:35 -0700343
Ed Tanous002d39b2022-05-31 08:59:27 -0700344 for (const std::pair<std::string,
345 dbus::utility::DbusVariantType>& propPair :
346 intfPair.second)
347 {
348 if (propPair.first == "Name")
James Feist73df0db2019-03-25 15:29:35 -0700349 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700350 const std::string* namePtr =
351 std::get_if<std::string>(&propPair.second);
352 if (namePtr == nullptr)
James Feist73df0db2019-03-25 15:29:35 -0700353 {
Ed Tanous62598e32023-07-17 17:06:25 -0700354 BMCWEB_LOG_ERROR("Pid Name Field illegal");
James Feistc33a90e2019-03-01 10:17:44 -0800355 messages::internalError(asyncResp->res);
356 return;
357 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700358 name = *namePtr;
359 dbus::utility::escapePathForDbus(name);
James Feistb7a08d02018-12-11 14:55:37 -0800360 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700361 else if (propPair.first == "Profiles")
James Feistb7a08d02018-12-11 14:55:37 -0800362 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700363 const std::vector<std::string>* profiles =
364 std::get_if<std::vector<std::string>>(
365 &propPair.second);
366 if (profiles == nullptr)
James Feistb7a08d02018-12-11 14:55:37 -0800367 {
Ed Tanous62598e32023-07-17 17:06:25 -0700368 BMCWEB_LOG_ERROR("Pid Profiles Field illegal");
James Feistb7a08d02018-12-11 14:55:37 -0800369 messages::internalError(asyncResp->res);
370 return;
371 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700372 if (std::find(profiles->begin(), profiles->end(),
373 currentProfile) == profiles->end())
James Feistb7a08d02018-12-11 14:55:37 -0800374 {
Ed Tanous62598e32023-07-17 17:06:25 -0700375 BMCWEB_LOG_INFO(
376 "{} not supported in current profile", name);
Ed Tanous002d39b2022-05-31 08:59:27 -0700377 continue;
James Feistb7a08d02018-12-11 14:55:37 -0800378 }
379 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700380 }
381 nlohmann::json* config = nullptr;
382 const std::string* classPtr = nullptr;
383
384 for (const std::pair<std::string,
385 dbus::utility::DbusVariantType>& propPair :
386 intfPair.second)
387 {
388 if (propPair.first == "Class")
James Feistb7a08d02018-12-11 14:55:37 -0800389 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700390 classPtr = std::get_if<std::string>(&propPair.second);
391 }
392 }
393
Ed Tanousef4c65b2023-04-24 15:28:50 -0700394 boost::urls::url url("/redfish/v1/Managers/bmc");
Ed Tanous002d39b2022-05-31 08:59:27 -0700395 if (intfPair.first == pidZoneConfigurationIface)
396 {
397 std::string chassis;
398 if (!dbus::utility::getNthStringFromPath(pathPair.first.str,
399 5, chassis))
400 {
401 chassis = "#IllegalValue";
402 }
403 nlohmann::json& zone = zones[name];
Ed Tanousef4c65b2023-04-24 15:28:50 -0700404 zone["Chassis"]["@odata.id"] =
405 boost::urls::format("/redfish/v1/Chassis/{}", chassis);
Willy Tueddfc432022-09-26 16:46:38 +0000406 url.set_fragment(
407 ("/Oem/OpenBmc/Fan/FanZones"_json_pointer / name)
408 .to_string());
409 zone["@odata.id"] = std::move(url);
Ed Tanous002d39b2022-05-31 08:59:27 -0700410 zone["@odata.type"] = "#OemManager.FanZone";
411 config = &zone;
412 }
413
414 else if (intfPair.first == stepwiseConfigurationIface)
415 {
416 if (classPtr == nullptr)
417 {
Ed Tanous62598e32023-07-17 17:06:25 -0700418 BMCWEB_LOG_ERROR("Pid Class Field illegal");
James Feistb7a08d02018-12-11 14:55:37 -0800419 messages::internalError(asyncResp->res);
420 return;
421 }
422
Ed Tanous002d39b2022-05-31 08:59:27 -0700423 nlohmann::json& controller = stepwise[name];
424 config = &controller;
Willy Tueddfc432022-09-26 16:46:38 +0000425 url.set_fragment(
426 ("/Oem/OpenBmc/Fan/StepwiseControllers"_json_pointer /
427 name)
428 .to_string());
429 controller["@odata.id"] = std::move(url);
Ed Tanous002d39b2022-05-31 08:59:27 -0700430 controller["@odata.type"] =
431 "#OemManager.StepwiseController";
432
433 controller["Direction"] = *classPtr;
434 }
435
436 // pid and fans are off the same configuration
437 else if (intfPair.first == pidConfigurationIface)
438 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700439 if (classPtr == nullptr)
James Feist5b4aa862018-08-16 14:07:01 -0700440 {
Ed Tanous62598e32023-07-17 17:06:25 -0700441 BMCWEB_LOG_ERROR("Pid Class Field illegal");
Ed Tanous002d39b2022-05-31 08:59:27 -0700442 messages::internalError(asyncResp->res);
443 return;
444 }
445 bool isFan = *classPtr == "fan";
446 nlohmann::json& element = isFan ? fans[name] : pids[name];
447 config = &element;
448 if (isFan)
449 {
Willy Tueddfc432022-09-26 16:46:38 +0000450 url.set_fragment(
451 ("/Oem/OpenBmc/Fan/FanControllers"_json_pointer /
452 name)
453 .to_string());
454 element["@odata.id"] = std::move(url);
Ed Tanous002d39b2022-05-31 08:59:27 -0700455 element["@odata.type"] = "#OemManager.FanController";
456 }
457 else
458 {
Willy Tueddfc432022-09-26 16:46:38 +0000459 url.set_fragment(
460 ("/Oem/OpenBmc/Fan/PidControllers"_json_pointer /
461 name)
462 .to_string());
463 element["@odata.id"] = std::move(url);
Ed Tanous002d39b2022-05-31 08:59:27 -0700464 element["@odata.type"] = "#OemManager.PidController";
465 }
466 }
467 else
468 {
Ed Tanous62598e32023-07-17 17:06:25 -0700469 BMCWEB_LOG_ERROR("Unexpected configuration");
Ed Tanous002d39b2022-05-31 08:59:27 -0700470 messages::internalError(asyncResp->res);
471 return;
472 }
James Feist5b4aa862018-08-16 14:07:01 -0700473
Ed Tanous002d39b2022-05-31 08:59:27 -0700474 // used for making maps out of 2 vectors
475 const std::vector<double>* keys = nullptr;
476 const std::vector<double>* values = nullptr;
477
478 for (const auto& propertyPair : intfPair.second)
479 {
480 if (propertyPair.first == "Type" ||
481 propertyPair.first == "Class" ||
482 propertyPair.first == "Name")
483 {
484 continue;
485 }
486
487 // zones
488 if (intfPair.first == pidZoneConfigurationIface)
489 {
490 const double* ptr =
491 std::get_if<double>(&propertyPair.second);
492 if (ptr == nullptr)
493 {
Ed Tanous62598e32023-07-17 17:06:25 -0700494 BMCWEB_LOG_ERROR("Field Illegal {}",
495 propertyPair.first);
Ed Tanous002d39b2022-05-31 08:59:27 -0700496 messages::internalError(asyncResp->res);
497 return;
498 }
499 (*config)[propertyPair.first] = *ptr;
500 }
501
502 if (intfPair.first == stepwiseConfigurationIface)
503 {
504 if (propertyPair.first == "Reading" ||
505 propertyPair.first == "Output")
506 {
507 const std::vector<double>* ptr =
508 std::get_if<std::vector<double>>(
509 &propertyPair.second);
510
511 if (ptr == nullptr)
512 {
Ed Tanous62598e32023-07-17 17:06:25 -0700513 BMCWEB_LOG_ERROR("Field Illegal {}",
514 propertyPair.first);
Ed Tanous002d39b2022-05-31 08:59:27 -0700515 messages::internalError(asyncResp->res);
516 return;
517 }
518
519 if (propertyPair.first == "Reading")
520 {
521 keys = ptr;
522 }
523 else
524 {
525 values = ptr;
526 }
527 if (keys != nullptr && values != nullptr)
528 {
529 if (keys->size() != values->size())
530 {
Ed Tanous62598e32023-07-17 17:06:25 -0700531 BMCWEB_LOG_ERROR(
532 "Reading and Output size don't match ");
Ed Tanous002d39b2022-05-31 08:59:27 -0700533 messages::internalError(asyncResp->res);
534 return;
535 }
536 nlohmann::json& steps = (*config)["Steps"];
537 steps = nlohmann::json::array();
538 for (size_t ii = 0; ii < keys->size(); ii++)
539 {
540 nlohmann::json::object_t step;
541 step["Target"] = (*keys)[ii];
542 step["Output"] = (*values)[ii];
Patrick Williamsb2ba3072023-05-12 10:27:39 -0500543 steps.emplace_back(std::move(step));
Ed Tanous002d39b2022-05-31 08:59:27 -0700544 }
545 }
546 }
547 if (propertyPair.first == "NegativeHysteresis" ||
548 propertyPair.first == "PositiveHysteresis")
James Feist5b4aa862018-08-16 14:07:01 -0700549 {
Ed Tanous1b6b96c2018-11-30 11:35:41 -0800550 const double* ptr =
Ed Tanousabf2add2019-01-22 16:40:12 -0800551 std::get_if<double>(&propertyPair.second);
James Feist5b4aa862018-08-16 14:07:01 -0700552 if (ptr == nullptr)
553 {
Ed Tanous62598e32023-07-17 17:06:25 -0700554 BMCWEB_LOG_ERROR("Field Illegal {}",
555 propertyPair.first);
Jason M. Billsf12894f2018-10-09 12:45:45 -0700556 messages::internalError(asyncResp->res);
James Feist5b4aa862018-08-16 14:07:01 -0700557 return;
558 }
James Feistb7a08d02018-12-11 14:55:37 -0800559 (*config)[propertyPair.first] = *ptr;
560 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700561 }
James Feistb7a08d02018-12-11 14:55:37 -0800562
Ed Tanous002d39b2022-05-31 08:59:27 -0700563 // pid and fans are off the same configuration
564 if (intfPair.first == pidConfigurationIface ||
565 intfPair.first == stepwiseConfigurationIface)
566 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700567 if (propertyPair.first == "Zones")
James Feistb7a08d02018-12-11 14:55:37 -0800568 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700569 const std::vector<std::string>* inputs =
570 std::get_if<std::vector<std::string>>(
571 &propertyPair.second);
572
573 if (inputs == nullptr)
James Feistb7a08d02018-12-11 14:55:37 -0800574 {
Ed Tanous62598e32023-07-17 17:06:25 -0700575 BMCWEB_LOG_ERROR("Zones Pid Field Illegal");
Ed Tanous002d39b2022-05-31 08:59:27 -0700576 messages::internalError(asyncResp->res);
577 return;
James Feistb7a08d02018-12-11 14:55:37 -0800578 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700579 auto& data = (*config)[propertyPair.first];
580 data = nlohmann::json::array();
581 for (std::string itemCopy : *inputs)
James Feistb7a08d02018-12-11 14:55:37 -0800582 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700583 dbus::utility::escapePathForDbus(itemCopy);
584 nlohmann::json::object_t input;
Ed Tanousef4c65b2023-04-24 15:28:50 -0700585 boost::urls::url managerUrl = boost::urls::format(
586 "/redfish/v1/Managers/bmc#{}",
Willy Tueddfc432022-09-26 16:46:38 +0000587 ("/Oem/OpenBmc/Fan/FanZones"_json_pointer /
588 itemCopy)
589 .to_string());
590 input["@odata.id"] = std::move(managerUrl);
Patrick Williamsb2ba3072023-05-12 10:27:39 -0500591 data.emplace_back(std::move(input));
James Feistb7a08d02018-12-11 14:55:37 -0800592 }
James Feist5b4aa862018-08-16 14:07:01 -0700593 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700594 // todo(james): may never happen, but this
595 // assumes configuration data referenced in the
596 // PID config is provided by the same daemon, we
597 // could add another loop to cover all cases,
598 // but I'm okay kicking this can down the road a
599 // bit
James Feist5b4aa862018-08-16 14:07:01 -0700600
Ed Tanous002d39b2022-05-31 08:59:27 -0700601 else if (propertyPair.first == "Inputs" ||
602 propertyPair.first == "Outputs")
James Feist5b4aa862018-08-16 14:07:01 -0700603 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700604 auto& data = (*config)[propertyPair.first];
605 const std::vector<std::string>* inputs =
606 std::get_if<std::vector<std::string>>(
607 &propertyPair.second);
James Feist5b4aa862018-08-16 14:07:01 -0700608
Ed Tanous002d39b2022-05-31 08:59:27 -0700609 if (inputs == nullptr)
James Feist5b4aa862018-08-16 14:07:01 -0700610 {
Ed Tanous62598e32023-07-17 17:06:25 -0700611 BMCWEB_LOG_ERROR("Field Illegal {}",
612 propertyPair.first);
Ed Tanous002d39b2022-05-31 08:59:27 -0700613 messages::internalError(asyncResp->res);
614 return;
James Feist5b4aa862018-08-16 14:07:01 -0700615 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700616 data = *inputs;
617 }
618 else if (propertyPair.first == "SetPointOffset")
619 {
620 const std::string* ptr =
621 std::get_if<std::string>(&propertyPair.second);
James Feist5b4aa862018-08-16 14:07:01 -0700622
Ed Tanous002d39b2022-05-31 08:59:27 -0700623 if (ptr == nullptr)
James Feist5b4aa862018-08-16 14:07:01 -0700624 {
Ed Tanous62598e32023-07-17 17:06:25 -0700625 BMCWEB_LOG_ERROR("Field Illegal {}",
626 propertyPair.first);
Ed Tanous002d39b2022-05-31 08:59:27 -0700627 messages::internalError(asyncResp->res);
628 return;
James Feistb943aae2019-07-11 16:33:56 -0700629 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700630 // translate from dbus to redfish
631 if (*ptr == "WarningHigh")
James Feistb943aae2019-07-11 16:33:56 -0700632 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700633 (*config)["SetPointOffset"] =
634 "UpperThresholdNonCritical";
James Feistb943aae2019-07-11 16:33:56 -0700635 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700636 else if (*ptr == "WarningLow")
James Feist5b4aa862018-08-16 14:07:01 -0700637 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700638 (*config)["SetPointOffset"] =
639 "LowerThresholdNonCritical";
James Feist5b4aa862018-08-16 14:07:01 -0700640 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700641 else if (*ptr == "CriticalHigh")
642 {
643 (*config)["SetPointOffset"] =
644 "UpperThresholdCritical";
645 }
646 else if (*ptr == "CriticalLow")
647 {
648 (*config)["SetPointOffset"] =
649 "LowerThresholdCritical";
650 }
651 else
652 {
Ed Tanous62598e32023-07-17 17:06:25 -0700653 BMCWEB_LOG_ERROR("Value Illegal {}", *ptr);
Ed Tanous002d39b2022-05-31 08:59:27 -0700654 messages::internalError(asyncResp->res);
655 return;
656 }
657 }
658 // doubles
659 else if (propertyPair.first == "FFGainCoefficient" ||
660 propertyPair.first == "FFOffCoefficient" ||
661 propertyPair.first == "ICoefficient" ||
662 propertyPair.first == "ILimitMax" ||
663 propertyPair.first == "ILimitMin" ||
664 propertyPair.first == "PositiveHysteresis" ||
665 propertyPair.first == "NegativeHysteresis" ||
666 propertyPair.first == "OutLimitMax" ||
667 propertyPair.first == "OutLimitMin" ||
668 propertyPair.first == "PCoefficient" ||
669 propertyPair.first == "SetPoint" ||
670 propertyPair.first == "SlewNeg" ||
671 propertyPair.first == "SlewPos")
672 {
673 const double* ptr =
674 std::get_if<double>(&propertyPair.second);
675 if (ptr == nullptr)
676 {
Ed Tanous62598e32023-07-17 17:06:25 -0700677 BMCWEB_LOG_ERROR("Field Illegal {}",
678 propertyPair.first);
Ed Tanous002d39b2022-05-31 08:59:27 -0700679 messages::internalError(asyncResp->res);
680 return;
681 }
682 (*config)[propertyPair.first] = *ptr;
James Feist5b4aa862018-08-16 14:07:01 -0700683 }
684 }
685 }
686 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700687 }
George Liu5eb468d2023-06-20 17:03:24 +0800688 });
James Feist5b4aa862018-08-16 14:07:01 -0700689}
Jennifer Leeca537922018-08-10 10:07:30 -0700690
James Feist83ff9ab2018-08-31 10:18:24 -0700691enum class CreatePIDRet
692{
693 fail,
694 del,
695 patch
696};
697
zhanghch058d1b46d2021-04-01 11:18:24 +0800698inline bool
699 getZonesFromJsonReq(const std::shared_ptr<bmcweb::AsyncResp>& response,
700 std::vector<nlohmann::json>& config,
701 std::vector<std::string>& zones)
James Feist5f2caae2018-12-12 14:08:25 -0800702{
James Feistb6baeaa2019-02-21 10:41:40 -0800703 if (config.empty())
704 {
Ed Tanous62598e32023-07-17 17:06:25 -0700705 BMCWEB_LOG_ERROR("Empty Zones");
Ed Tanousf818b042022-06-27 13:17:35 -0700706 messages::propertyValueFormatError(response->res, config, "Zones");
James Feistb6baeaa2019-02-21 10:41:40 -0800707 return false;
708 }
James Feist5f2caae2018-12-12 14:08:25 -0800709 for (auto& odata : config)
710 {
711 std::string path;
712 if (!redfish::json_util::readJson(odata, response->res, "@odata.id",
713 path))
714 {
715 return false;
716 }
717 std::string input;
James Feist61adbda2019-03-25 13:03:51 -0700718
719 // 8 below comes from
720 // /redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/FanZones/Left
721 // 0 1 2 3 4 5 6 7 8
722 if (!dbus::utility::getNthStringFromPath(path, 8, input))
James Feist5f2caae2018-12-12 14:08:25 -0800723 {
Ed Tanous62598e32023-07-17 17:06:25 -0700724 BMCWEB_LOG_ERROR("Got invalid path {}", path);
725 BMCWEB_LOG_ERROR("Illegal Type Zones");
Ed Tanousf818b042022-06-27 13:17:35 -0700726 messages::propertyValueFormatError(response->res, odata, "Zones");
James Feist5f2caae2018-12-12 14:08:25 -0800727 return false;
728 }
Ed Tanousa170f272022-06-30 21:53:27 -0700729 std::replace(input.begin(), input.end(), '_', ' ');
James Feist5f2caae2018-12-12 14:08:25 -0800730 zones.emplace_back(std::move(input));
731 }
732 return true;
733}
734
Ed Tanous711ac7a2021-12-20 09:34:41 -0800735inline const dbus::utility::ManagedObjectType::value_type*
James Feist73df0db2019-03-25 15:29:35 -0700736 findChassis(const dbus::utility::ManagedObjectType& managedObj,
737 const std::string& value, std::string& chassis)
James Feistb6baeaa2019-02-21 10:41:40 -0800738{
Ed Tanous62598e32023-07-17 17:06:25 -0700739 BMCWEB_LOG_DEBUG("Find Chassis: {}", value);
James Feistb6baeaa2019-02-21 10:41:40 -0800740
Ed Tanousa170f272022-06-30 21:53:27 -0700741 std::string escaped = value;
Yaswanth Reddy M6ce82fa2023-03-10 07:29:45 +0000742 std::replace(escaped.begin(), escaped.end(), ' ', '_');
James Feistb6baeaa2019-02-21 10:41:40 -0800743 escaped = "/" + escaped;
Ed Tanous002d39b2022-05-31 08:59:27 -0700744 auto it = std::find_if(managedObj.begin(), managedObj.end(),
745 [&escaped](const auto& obj) {
746 if (boost::algorithm::ends_with(obj.first.str, escaped))
747 {
Ed Tanous62598e32023-07-17 17:06:25 -0700748 BMCWEB_LOG_DEBUG("Matched {}", obj.first.str);
Ed Tanous002d39b2022-05-31 08:59:27 -0700749 return true;
750 }
751 return false;
752 });
James Feistb6baeaa2019-02-21 10:41:40 -0800753
754 if (it == managedObj.end())
755 {
James Feist73df0db2019-03-25 15:29:35 -0700756 return nullptr;
James Feistb6baeaa2019-02-21 10:41:40 -0800757 }
758 // 5 comes from <chassis-name> being the 5th element
759 // /xyz/openbmc_project/inventory/system/chassis/<chassis-name>
James Feist73df0db2019-03-25 15:29:35 -0700760 if (dbus::utility::getNthStringFromPath(it->first.str, 5, chassis))
761 {
762 return &(*it);
763 }
764
765 return nullptr;
James Feistb6baeaa2019-02-21 10:41:40 -0800766}
767
Ed Tanous23a21a12020-07-25 04:45:05 +0000768inline CreatePIDRet createPidInterface(
zhanghch058d1b46d2021-04-01 11:18:24 +0800769 const std::shared_ptr<bmcweb::AsyncResp>& response, const std::string& type,
Ed Tanousb5a76932020-09-29 16:16:58 -0700770 const nlohmann::json::iterator& it, const std::string& path,
James Feist83ff9ab2018-08-31 10:18:24 -0700771 const dbus::utility::ManagedObjectType& managedObj, bool createNewObject,
Ed Tanousb9d36b42022-02-26 21:42:46 -0800772 dbus::utility::DBusPropertiesMap& output, std::string& chassis,
773 const std::string& profile)
James Feist83ff9ab2018-08-31 10:18:24 -0700774{
James Feist5f2caae2018-12-12 14:08:25 -0800775 // common deleter
James Feistb6baeaa2019-02-21 10:41:40 -0800776 if (it.value() == nullptr)
James Feist5f2caae2018-12-12 14:08:25 -0800777 {
778 std::string iface;
779 if (type == "PidControllers" || type == "FanControllers")
780 {
781 iface = pidConfigurationIface;
782 }
783 else if (type == "FanZones")
784 {
785 iface = pidZoneConfigurationIface;
786 }
787 else if (type == "StepwiseControllers")
788 {
789 iface = stepwiseConfigurationIface;
790 }
791 else
792 {
Ed Tanous62598e32023-07-17 17:06:25 -0700793 BMCWEB_LOG_ERROR("Illegal Type {}", type);
James Feist5f2caae2018-12-12 14:08:25 -0800794 messages::propertyUnknown(response->res, type);
795 return CreatePIDRet::fail;
796 }
James Feist6ee7f772020-02-06 16:25:27 -0800797
Ed Tanous62598e32023-07-17 17:06:25 -0700798 BMCWEB_LOG_DEBUG("del {} {}", path, iface);
James Feist5f2caae2018-12-12 14:08:25 -0800799 // delete interface
800 crow::connections::systemBus->async_method_call(
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800801 [response, path](const boost::system::error_code& ec) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700802 if (ec)
803 {
Ed Tanous62598e32023-07-17 17:06:25 -0700804 BMCWEB_LOG_ERROR("Error patching {}: {}", path, ec);
Ed Tanous002d39b2022-05-31 08:59:27 -0700805 messages::internalError(response->res);
806 return;
807 }
808 messages::success(response->res);
James Feist5f2caae2018-12-12 14:08:25 -0800809 },
810 "xyz.openbmc_project.EntityManager", path, iface, "Delete");
811 return CreatePIDRet::del;
812 }
813
Ed Tanous711ac7a2021-12-20 09:34:41 -0800814 const dbus::utility::ManagedObjectType::value_type* managedItem = nullptr;
James Feistb6baeaa2019-02-21 10:41:40 -0800815 if (!createNewObject)
816 {
817 // if we aren't creating a new object, we should be able to find it on
818 // d-bus
James Feist73df0db2019-03-25 15:29:35 -0700819 managedItem = findChassis(managedObj, it.key(), chassis);
820 if (managedItem == nullptr)
James Feistb6baeaa2019-02-21 10:41:40 -0800821 {
Ed Tanous62598e32023-07-17 17:06:25 -0700822 BMCWEB_LOG_ERROR("Failed to get chassis from config patch");
Ed Tanousef4c65b2023-04-24 15:28:50 -0700823 messages::invalidObject(
824 response->res,
825 boost::urls::format("/redfish/v1/Chassis/{}", chassis));
James Feistb6baeaa2019-02-21 10:41:40 -0800826 return CreatePIDRet::fail;
827 }
828 }
829
Ed Tanous26f69762022-01-25 09:49:11 -0800830 if (!profile.empty() &&
James Feist73df0db2019-03-25 15:29:35 -0700831 (type == "PidControllers" || type == "FanControllers" ||
832 type == "StepwiseControllers"))
833 {
834 if (managedItem == nullptr)
835 {
Ed Tanousb9d36b42022-02-26 21:42:46 -0800836 output.emplace_back("Profiles", std::vector<std::string>{profile});
James Feist73df0db2019-03-25 15:29:35 -0700837 }
838 else
839 {
840 std::string interface;
841 if (type == "StepwiseControllers")
842 {
843 interface = stepwiseConfigurationIface;
844 }
845 else
846 {
847 interface = pidConfigurationIface;
848 }
Ed Tanous711ac7a2021-12-20 09:34:41 -0800849 bool ifaceFound = false;
850 for (const auto& iface : managedItem->second)
851 {
852 if (iface.first == interface)
853 {
854 ifaceFound = true;
855 for (const auto& prop : iface.second)
856 {
857 if (prop.first == "Profiles")
858 {
859 const std::vector<std::string>* curProfiles =
860 std::get_if<std::vector<std::string>>(
861 &(prop.second));
862 if (curProfiles == nullptr)
863 {
Ed Tanous62598e32023-07-17 17:06:25 -0700864 BMCWEB_LOG_ERROR(
865 "Illegal profiles in managed object");
Ed Tanous711ac7a2021-12-20 09:34:41 -0800866 messages::internalError(response->res);
867 return CreatePIDRet::fail;
868 }
869 if (std::find(curProfiles->begin(),
870 curProfiles->end(),
871 profile) == curProfiles->end())
872 {
873 std::vector<std::string> newProfiles =
874 *curProfiles;
875 newProfiles.push_back(profile);
Ed Tanousb9d36b42022-02-26 21:42:46 -0800876 output.emplace_back("Profiles", newProfiles);
Ed Tanous711ac7a2021-12-20 09:34:41 -0800877 }
878 }
879 }
880 }
881 }
882
883 if (!ifaceFound)
James Feist73df0db2019-03-25 15:29:35 -0700884 {
Ed Tanous62598e32023-07-17 17:06:25 -0700885 BMCWEB_LOG_ERROR("Failed to find interface in managed object");
James Feist73df0db2019-03-25 15:29:35 -0700886 messages::internalError(response->res);
887 return CreatePIDRet::fail;
888 }
James Feist73df0db2019-03-25 15:29:35 -0700889 }
890 }
891
James Feist83ff9ab2018-08-31 10:18:24 -0700892 if (type == "PidControllers" || type == "FanControllers")
893 {
894 if (createNewObject)
895 {
Ed Tanousb9d36b42022-02-26 21:42:46 -0800896 output.emplace_back("Class",
897 type == "PidControllers" ? "temp" : "fan");
898 output.emplace_back("Type", "Pid");
James Feist83ff9ab2018-08-31 10:18:24 -0700899 }
James Feist5f2caae2018-12-12 14:08:25 -0800900
901 std::optional<std::vector<nlohmann::json>> zones;
902 std::optional<std::vector<std::string>> inputs;
903 std::optional<std::vector<std::string>> outputs;
904 std::map<std::string, std::optional<double>> doubles;
James Feistb943aae2019-07-11 16:33:56 -0700905 std::optional<std::string> setpointOffset;
James Feist5f2caae2018-12-12 14:08:25 -0800906 if (!redfish::json_util::readJson(
James Feistb6baeaa2019-02-21 10:41:40 -0800907 it.value(), response->res, "Inputs", inputs, "Outputs", outputs,
James Feist5f2caae2018-12-12 14:08:25 -0800908 "Zones", zones, "FFGainCoefficient",
909 doubles["FFGainCoefficient"], "FFOffCoefficient",
910 doubles["FFOffCoefficient"], "ICoefficient",
911 doubles["ICoefficient"], "ILimitMax", doubles["ILimitMax"],
912 "ILimitMin", doubles["ILimitMin"], "OutLimitMax",
913 doubles["OutLimitMax"], "OutLimitMin", doubles["OutLimitMin"],
914 "PCoefficient", doubles["PCoefficient"], "SetPoint",
James Feistb943aae2019-07-11 16:33:56 -0700915 doubles["SetPoint"], "SetPointOffset", setpointOffset,
916 "SlewNeg", doubles["SlewNeg"], "SlewPos", doubles["SlewPos"],
917 "PositiveHysteresis", doubles["PositiveHysteresis"],
918 "NegativeHysteresis", doubles["NegativeHysteresis"]))
James Feist83ff9ab2018-08-31 10:18:24 -0700919 {
James Feist5f2caae2018-12-12 14:08:25 -0800920 return CreatePIDRet::fail;
James Feist83ff9ab2018-08-31 10:18:24 -0700921 }
James Feist5f2caae2018-12-12 14:08:25 -0800922 if (zones)
James Feist83ff9ab2018-08-31 10:18:24 -0700923 {
James Feist5f2caae2018-12-12 14:08:25 -0800924 std::vector<std::string> zonesStr;
925 if (!getZonesFromJsonReq(response, *zones, zonesStr))
James Feist83ff9ab2018-08-31 10:18:24 -0700926 {
Ed Tanous62598e32023-07-17 17:06:25 -0700927 BMCWEB_LOG_ERROR("Illegal Zones");
James Feist5f2caae2018-12-12 14:08:25 -0800928 return CreatePIDRet::fail;
James Feist83ff9ab2018-08-31 10:18:24 -0700929 }
James Feistb6baeaa2019-02-21 10:41:40 -0800930 if (chassis.empty() &&
Ed Tanouse662eae2022-01-25 10:39:19 -0800931 findChassis(managedObj, zonesStr[0], chassis) == nullptr)
James Feistb6baeaa2019-02-21 10:41:40 -0800932 {
Ed Tanous62598e32023-07-17 17:06:25 -0700933 BMCWEB_LOG_ERROR("Failed to get chassis from config patch");
Ed Tanousace85d62021-10-26 12:45:59 -0700934 messages::invalidObject(
Ed Tanousef4c65b2023-04-24 15:28:50 -0700935 response->res,
936 boost::urls::format("/redfish/v1/Chassis/{}", chassis));
James Feistb6baeaa2019-02-21 10:41:40 -0800937 return CreatePIDRet::fail;
938 }
Ed Tanousb9d36b42022-02-26 21:42:46 -0800939 output.emplace_back("Zones", std::move(zonesStr));
James Feist5f2caae2018-12-12 14:08:25 -0800940 }
Ed Tanousafb9ee02022-12-21 11:59:17 -0800941
942 if (inputs)
James Feist5f2caae2018-12-12 14:08:25 -0800943 {
Ed Tanousafb9ee02022-12-21 11:59:17 -0800944 for (std::string& value : *inputs)
James Feist83ff9ab2018-08-31 10:18:24 -0700945 {
Ed Tanousafb9ee02022-12-21 11:59:17 -0800946 std::replace(value.begin(), value.end(), '_', ' ');
James Feist83ff9ab2018-08-31 10:18:24 -0700947 }
Ed Tanousafb9ee02022-12-21 11:59:17 -0800948 output.emplace_back("Inputs", *inputs);
949 }
950
951 if (outputs)
952 {
953 for (std::string& value : *outputs)
954 {
955 std::replace(value.begin(), value.end(), '_', ' ');
956 }
957 output.emplace_back("Outputs", *outputs);
James Feist5f2caae2018-12-12 14:08:25 -0800958 }
James Feist83ff9ab2018-08-31 10:18:24 -0700959
James Feistb943aae2019-07-11 16:33:56 -0700960 if (setpointOffset)
961 {
962 // translate between redfish and dbus names
963 if (*setpointOffset == "UpperThresholdNonCritical")
964 {
Ed Tanousb9d36b42022-02-26 21:42:46 -0800965 output.emplace_back("SetPointOffset", "WarningLow");
James Feistb943aae2019-07-11 16:33:56 -0700966 }
967 else if (*setpointOffset == "LowerThresholdNonCritical")
968 {
Ed Tanousb9d36b42022-02-26 21:42:46 -0800969 output.emplace_back("SetPointOffset", "WarningHigh");
James Feistb943aae2019-07-11 16:33:56 -0700970 }
971 else if (*setpointOffset == "LowerThresholdCritical")
972 {
Ed Tanousb9d36b42022-02-26 21:42:46 -0800973 output.emplace_back("SetPointOffset", "CriticalLow");
James Feistb943aae2019-07-11 16:33:56 -0700974 }
975 else if (*setpointOffset == "UpperThresholdCritical")
976 {
Ed Tanousb9d36b42022-02-26 21:42:46 -0800977 output.emplace_back("SetPointOffset", "CriticalHigh");
James Feistb943aae2019-07-11 16:33:56 -0700978 }
979 else
980 {
Ed Tanous62598e32023-07-17 17:06:25 -0700981 BMCWEB_LOG_ERROR("Invalid setpointoffset {}", *setpointOffset);
Ed Tanousace85d62021-10-26 12:45:59 -0700982 messages::propertyValueNotInList(response->res, it.key(),
983 "SetPointOffset");
James Feistb943aae2019-07-11 16:33:56 -0700984 return CreatePIDRet::fail;
985 }
986 }
987
James Feist5f2caae2018-12-12 14:08:25 -0800988 // doubles
989 for (const auto& pairs : doubles)
990 {
991 if (!pairs.second)
James Feist83ff9ab2018-08-31 10:18:24 -0700992 {
James Feist5f2caae2018-12-12 14:08:25 -0800993 continue;
James Feist83ff9ab2018-08-31 10:18:24 -0700994 }
Ed Tanous62598e32023-07-17 17:06:25 -0700995 BMCWEB_LOG_DEBUG("{} = {}", pairs.first, *pairs.second);
Ed Tanousb9d36b42022-02-26 21:42:46 -0800996 output.emplace_back(pairs.first, *pairs.second);
James Feist83ff9ab2018-08-31 10:18:24 -0700997 }
998 }
James Feist5f2caae2018-12-12 14:08:25 -0800999
James Feist83ff9ab2018-08-31 10:18:24 -07001000 else if (type == "FanZones")
1001 {
Ed Tanousb9d36b42022-02-26 21:42:46 -08001002 output.emplace_back("Type", "Pid.Zone");
James Feist83ff9ab2018-08-31 10:18:24 -07001003
James Feist5f2caae2018-12-12 14:08:25 -08001004 std::optional<nlohmann::json> chassisContainer;
1005 std::optional<double> failSafePercent;
James Feistd3ec07f2019-02-25 14:51:15 -08001006 std::optional<double> minThermalOutput;
James Feistb6baeaa2019-02-21 10:41:40 -08001007 if (!redfish::json_util::readJson(it.value(), response->res, "Chassis",
James Feist5f2caae2018-12-12 14:08:25 -08001008 chassisContainer, "FailSafePercent",
James Feistd3ec07f2019-02-25 14:51:15 -08001009 failSafePercent, "MinThermalOutput",
1010 minThermalOutput))
James Feist83ff9ab2018-08-31 10:18:24 -07001011 {
James Feist5f2caae2018-12-12 14:08:25 -08001012 return CreatePIDRet::fail;
1013 }
James Feist83ff9ab2018-08-31 10:18:24 -07001014
James Feist5f2caae2018-12-12 14:08:25 -08001015 if (chassisContainer)
1016 {
James Feist5f2caae2018-12-12 14:08:25 -08001017 std::string chassisId;
1018 if (!redfish::json_util::readJson(*chassisContainer, response->res,
1019 "@odata.id", chassisId))
James Feist83ff9ab2018-08-31 10:18:24 -07001020 {
James Feist83ff9ab2018-08-31 10:18:24 -07001021 return CreatePIDRet::fail;
1022 }
James Feist5f2caae2018-12-12 14:08:25 -08001023
AppaRao Puli717794d2019-10-18 22:54:53 +05301024 // /redfish/v1/chassis/chassis_name/
James Feist5f2caae2018-12-12 14:08:25 -08001025 if (!dbus::utility::getNthStringFromPath(chassisId, 3, chassis))
1026 {
Ed Tanous62598e32023-07-17 17:06:25 -07001027 BMCWEB_LOG_ERROR("Got invalid path {}", chassisId);
Ed Tanousace85d62021-10-26 12:45:59 -07001028 messages::invalidObject(
Ed Tanousef4c65b2023-04-24 15:28:50 -07001029 response->res,
1030 boost::urls::format("/redfish/v1/Chassis/{}", chassisId));
James Feist5f2caae2018-12-12 14:08:25 -08001031 return CreatePIDRet::fail;
1032 }
1033 }
James Feistd3ec07f2019-02-25 14:51:15 -08001034 if (minThermalOutput)
James Feist5f2caae2018-12-12 14:08:25 -08001035 {
Ed Tanousb9d36b42022-02-26 21:42:46 -08001036 output.emplace_back("MinThermalOutput", *minThermalOutput);
James Feist5f2caae2018-12-12 14:08:25 -08001037 }
1038 if (failSafePercent)
1039 {
Ed Tanousb9d36b42022-02-26 21:42:46 -08001040 output.emplace_back("FailSafePercent", *failSafePercent);
James Feist5f2caae2018-12-12 14:08:25 -08001041 }
1042 }
1043 else if (type == "StepwiseControllers")
1044 {
Ed Tanousb9d36b42022-02-26 21:42:46 -08001045 output.emplace_back("Type", "Stepwise");
James Feist5f2caae2018-12-12 14:08:25 -08001046
1047 std::optional<std::vector<nlohmann::json>> zones;
1048 std::optional<std::vector<nlohmann::json>> steps;
1049 std::optional<std::vector<std::string>> inputs;
1050 std::optional<double> positiveHysteresis;
1051 std::optional<double> negativeHysteresis;
James Feistc33a90e2019-03-01 10:17:44 -08001052 std::optional<std::string> direction; // upper clipping curve vs lower
James Feist5f2caae2018-12-12 14:08:25 -08001053 if (!redfish::json_util::readJson(
James Feistb6baeaa2019-02-21 10:41:40 -08001054 it.value(), response->res, "Zones", zones, "Steps", steps,
1055 "Inputs", inputs, "PositiveHysteresis", positiveHysteresis,
James Feistc33a90e2019-03-01 10:17:44 -08001056 "NegativeHysteresis", negativeHysteresis, "Direction",
1057 direction))
James Feist5f2caae2018-12-12 14:08:25 -08001058 {
James Feist5f2caae2018-12-12 14:08:25 -08001059 return CreatePIDRet::fail;
1060 }
1061
1062 if (zones)
1063 {
James Feistb6baeaa2019-02-21 10:41:40 -08001064 std::vector<std::string> zonesStrs;
1065 if (!getZonesFromJsonReq(response, *zones, zonesStrs))
James Feist5f2caae2018-12-12 14:08:25 -08001066 {
Ed Tanous62598e32023-07-17 17:06:25 -07001067 BMCWEB_LOG_ERROR("Illegal Zones");
James Feist5f2caae2018-12-12 14:08:25 -08001068 return CreatePIDRet::fail;
1069 }
James Feistb6baeaa2019-02-21 10:41:40 -08001070 if (chassis.empty() &&
Ed Tanouse662eae2022-01-25 10:39:19 -08001071 findChassis(managedObj, zonesStrs[0], chassis) == nullptr)
James Feistb6baeaa2019-02-21 10:41:40 -08001072 {
Ed Tanous62598e32023-07-17 17:06:25 -07001073 BMCWEB_LOG_ERROR("Failed to get chassis from config patch");
Ed Tanousace85d62021-10-26 12:45:59 -07001074 messages::invalidObject(
Ed Tanousef4c65b2023-04-24 15:28:50 -07001075 response->res,
1076 boost::urls::format("/redfish/v1/Chassis/{}", chassis));
James Feistb6baeaa2019-02-21 10:41:40 -08001077 return CreatePIDRet::fail;
1078 }
Ed Tanousb9d36b42022-02-26 21:42:46 -08001079 output.emplace_back("Zones", std::move(zonesStrs));
James Feist5f2caae2018-12-12 14:08:25 -08001080 }
1081 if (steps)
1082 {
1083 std::vector<double> readings;
1084 std::vector<double> outputs;
1085 for (auto& step : *steps)
1086 {
Ed Tanous543f4402022-01-06 13:12:53 -08001087 double target = 0.0;
1088 double out = 0.0;
James Feist5f2caae2018-12-12 14:08:25 -08001089
1090 if (!redfish::json_util::readJson(step, response->res, "Target",
Ed Tanous23a21a12020-07-25 04:45:05 +00001091 target, "Output", out))
James Feist5f2caae2018-12-12 14:08:25 -08001092 {
James Feist5f2caae2018-12-12 14:08:25 -08001093 return CreatePIDRet::fail;
1094 }
1095 readings.emplace_back(target);
Ed Tanous23a21a12020-07-25 04:45:05 +00001096 outputs.emplace_back(out);
James Feist5f2caae2018-12-12 14:08:25 -08001097 }
Ed Tanousb9d36b42022-02-26 21:42:46 -08001098 output.emplace_back("Reading", std::move(readings));
1099 output.emplace_back("Output", std::move(outputs));
James Feist5f2caae2018-12-12 14:08:25 -08001100 }
1101 if (inputs)
1102 {
1103 for (std::string& value : *inputs)
1104 {
Ed Tanousa170f272022-06-30 21:53:27 -07001105 std::replace(value.begin(), value.end(), '_', ' ');
James Feist5f2caae2018-12-12 14:08:25 -08001106 }
Ed Tanousb9d36b42022-02-26 21:42:46 -08001107 output.emplace_back("Inputs", std::move(*inputs));
James Feist5f2caae2018-12-12 14:08:25 -08001108 }
1109 if (negativeHysteresis)
1110 {
Ed Tanousb9d36b42022-02-26 21:42:46 -08001111 output.emplace_back("NegativeHysteresis", *negativeHysteresis);
James Feist5f2caae2018-12-12 14:08:25 -08001112 }
1113 if (positiveHysteresis)
1114 {
Ed Tanousb9d36b42022-02-26 21:42:46 -08001115 output.emplace_back("PositiveHysteresis", *positiveHysteresis);
James Feist83ff9ab2018-08-31 10:18:24 -07001116 }
James Feistc33a90e2019-03-01 10:17:44 -08001117 if (direction)
1118 {
1119 constexpr const std::array<const char*, 2> allowedDirections = {
1120 "Ceiling", "Floor"};
1121 if (std::find(allowedDirections.begin(), allowedDirections.end(),
1122 *direction) == allowedDirections.end())
1123 {
1124 messages::propertyValueTypeError(response->res, "Direction",
1125 *direction);
1126 return CreatePIDRet::fail;
1127 }
Ed Tanousb9d36b42022-02-26 21:42:46 -08001128 output.emplace_back("Class", *direction);
James Feistc33a90e2019-03-01 10:17:44 -08001129 }
James Feist83ff9ab2018-08-31 10:18:24 -07001130 }
1131 else
1132 {
Ed Tanous62598e32023-07-17 17:06:25 -07001133 BMCWEB_LOG_ERROR("Illegal Type {}", type);
Jason M. Bills35a62c72018-10-09 12:45:45 -07001134 messages::propertyUnknown(response->res, type);
James Feist83ff9ab2018-08-31 10:18:24 -07001135 return CreatePIDRet::fail;
1136 }
1137 return CreatePIDRet::patch;
1138}
James Feist73df0db2019-03-25 15:29:35 -07001139struct GetPIDValues : std::enable_shared_from_this<GetPIDValues>
1140{
Ed Tanous6936afe2022-09-08 15:10:39 -07001141 struct CompletionValues
1142 {
1143 std::vector<std::string> supportedProfiles;
1144 std::string currentProfile;
1145 dbus::utility::MapperGetSubTreeResponse subtree;
1146 };
James Feist73df0db2019-03-25 15:29:35 -07001147
Ed Tanous4e23a442022-06-06 09:57:26 -07001148 explicit GetPIDValues(
1149 const std::shared_ptr<bmcweb::AsyncResp>& asyncRespIn) :
Ed Tanous23a21a12020-07-25 04:45:05 +00001150 asyncResp(asyncRespIn)
James Feist73df0db2019-03-25 15:29:35 -07001151
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001152 {}
James Feist73df0db2019-03-25 15:29:35 -07001153
1154 void run()
1155 {
1156 std::shared_ptr<GetPIDValues> self = shared_from_this();
1157
1158 // get all configurations
George Liue99073f2022-12-09 11:06:16 +08001159 constexpr std::array<std::string_view, 4> interfaces = {
1160 pidConfigurationIface, pidZoneConfigurationIface,
1161 objectManagerIface, stepwiseConfigurationIface};
1162 dbus::utility::getSubTree(
1163 "/", 0, interfaces,
Ed Tanousb9d36b42022-02-26 21:42:46 -08001164 [self](
George Liue99073f2022-12-09 11:06:16 +08001165 const boost::system::error_code& ec,
Ed Tanousb9d36b42022-02-26 21:42:46 -08001166 const dbus::utility::MapperGetSubTreeResponse& subtreeLocal) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001167 if (ec)
1168 {
Ed Tanous62598e32023-07-17 17:06:25 -07001169 BMCWEB_LOG_ERROR("{}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -07001170 messages::internalError(self->asyncResp->res);
1171 return;
1172 }
Ed Tanous6936afe2022-09-08 15:10:39 -07001173 self->complete.subtree = subtreeLocal;
George Liue99073f2022-12-09 11:06:16 +08001174 });
James Feist73df0db2019-03-25 15:29:35 -07001175
1176 // at the same time get the selected profile
George Liue99073f2022-12-09 11:06:16 +08001177 constexpr std::array<std::string_view, 1> thermalModeIfaces = {
1178 thermalModeIface};
1179 dbus::utility::getSubTree(
1180 "/", 0, thermalModeIfaces,
Ed Tanousb9d36b42022-02-26 21:42:46 -08001181 [self](
George Liue99073f2022-12-09 11:06:16 +08001182 const boost::system::error_code& ec,
Ed Tanousb9d36b42022-02-26 21:42:46 -08001183 const dbus::utility::MapperGetSubTreeResponse& subtreeLocal) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001184 if (ec || subtreeLocal.empty())
1185 {
1186 return;
1187 }
1188 if (subtreeLocal[0].second.size() != 1)
1189 {
1190 // invalid mapper response, should never happen
Ed Tanous62598e32023-07-17 17:06:25 -07001191 BMCWEB_LOG_ERROR("GetPIDValues: Mapper Error");
Ed Tanous002d39b2022-05-31 08:59:27 -07001192 messages::internalError(self->asyncResp->res);
1193 return;
1194 }
1195
1196 const std::string& path = subtreeLocal[0].first;
1197 const std::string& owner = subtreeLocal[0].second[0].first;
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001198
1199 sdbusplus::asio::getAllProperties(
1200 *crow::connections::systemBus, owner, path, thermalModeIface,
Ed Tanous002d39b2022-05-31 08:59:27 -07001201 [path, owner,
Ed Tanous5e7e2dc2023-02-16 10:37:01 -08001202 self](const boost::system::error_code& ec2,
Ed Tanous002d39b2022-05-31 08:59:27 -07001203 const dbus::utility::DBusPropertiesMap& resp) {
1204 if (ec2)
James Feist73df0db2019-03-25 15:29:35 -07001205 {
Ed Tanous62598e32023-07-17 17:06:25 -07001206 BMCWEB_LOG_ERROR(
1207 "GetPIDValues: Can't get thermalModeIface {}", path);
James Feist73df0db2019-03-25 15:29:35 -07001208 messages::internalError(self->asyncResp->res);
1209 return;
1210 }
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001211
Ed Tanous002d39b2022-05-31 08:59:27 -07001212 const std::string* current = nullptr;
1213 const std::vector<std::string>* supported = nullptr;
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001214
1215 const bool success = sdbusplus::unpackPropertiesNoThrow(
1216 dbus_utils::UnpackErrorPrinter(), resp, "Current", current,
1217 "Supported", supported);
1218
1219 if (!success)
Ed Tanous002d39b2022-05-31 08:59:27 -07001220 {
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001221 messages::internalError(self->asyncResp->res);
1222 return;
Ed Tanous002d39b2022-05-31 08:59:27 -07001223 }
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001224
Ed Tanous002d39b2022-05-31 08:59:27 -07001225 if (current == nullptr || supported == nullptr)
1226 {
Ed Tanous62598e32023-07-17 17:06:25 -07001227 BMCWEB_LOG_ERROR(
1228 "GetPIDValues: thermal mode iface invalid {}", path);
Ed Tanous002d39b2022-05-31 08:59:27 -07001229 messages::internalError(self->asyncResp->res);
1230 return;
1231 }
Ed Tanous6936afe2022-09-08 15:10:39 -07001232 self->complete.currentProfile = *current;
1233 self->complete.supportedProfiles = *supported;
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001234 });
George Liue99073f2022-12-09 11:06:16 +08001235 });
James Feist73df0db2019-03-25 15:29:35 -07001236 }
1237
Ed Tanous6936afe2022-09-08 15:10:39 -07001238 static void
1239 processingComplete(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
1240 const CompletionValues& completion)
James Feist73df0db2019-03-25 15:29:35 -07001241 {
1242 if (asyncResp->res.result() != boost::beast::http::status::ok)
1243 {
1244 return;
1245 }
1246 // create map of <connection, path to objMgr>>
Ed Tanous6936afe2022-09-08 15:10:39 -07001247 boost::container::flat_map<
1248 std::string, std::string, std::less<>,
1249 std::vector<std::pair<std::string, std::string>>>
1250 objectMgrPaths;
1251 boost::container::flat_set<std::string, std::less<>,
1252 std::vector<std::string>>
1253 calledConnections;
1254 for (const auto& pathGroup : completion.subtree)
James Feist73df0db2019-03-25 15:29:35 -07001255 {
1256 for (const auto& connectionGroup : pathGroup.second)
1257 {
1258 auto findConnection =
1259 calledConnections.find(connectionGroup.first);
1260 if (findConnection != calledConnections.end())
1261 {
1262 break;
1263 }
1264 for (const std::string& interface : connectionGroup.second)
1265 {
1266 if (interface == objectManagerIface)
1267 {
1268 objectMgrPaths[connectionGroup.first] = pathGroup.first;
1269 }
1270 // this list is alphabetical, so we
1271 // should have found the objMgr by now
1272 if (interface == pidConfigurationIface ||
1273 interface == pidZoneConfigurationIface ||
1274 interface == stepwiseConfigurationIface)
1275 {
1276 auto findObjMgr =
1277 objectMgrPaths.find(connectionGroup.first);
1278 if (findObjMgr == objectMgrPaths.end())
1279 {
Ed Tanous62598e32023-07-17 17:06:25 -07001280 BMCWEB_LOG_DEBUG("{}Has no Object Manager",
1281 connectionGroup.first);
James Feist73df0db2019-03-25 15:29:35 -07001282 continue;
1283 }
1284
1285 calledConnections.insert(connectionGroup.first);
1286
1287 asyncPopulatePid(findObjMgr->first, findObjMgr->second,
Ed Tanous6936afe2022-09-08 15:10:39 -07001288 completion.currentProfile,
1289 completion.supportedProfiles,
James Feist73df0db2019-03-25 15:29:35 -07001290 asyncResp);
1291 break;
1292 }
1293 }
1294 }
1295 }
1296 }
1297
Ed Tanous6936afe2022-09-08 15:10:39 -07001298 ~GetPIDValues()
1299 {
1300 boost::asio::post(crow::connections::systemBus->get_io_context(),
1301 std::bind_front(&processingComplete, asyncResp,
1302 std::move(complete)));
1303 }
1304
Ed Tanousecd6a3a2022-01-07 09:18:40 -08001305 GetPIDValues(const GetPIDValues&) = delete;
1306 GetPIDValues(GetPIDValues&&) = delete;
1307 GetPIDValues& operator=(const GetPIDValues&) = delete;
1308 GetPIDValues& operator=(GetPIDValues&&) = delete;
1309
zhanghch058d1b46d2021-04-01 11:18:24 +08001310 std::shared_ptr<bmcweb::AsyncResp> asyncResp;
Ed Tanous6936afe2022-09-08 15:10:39 -07001311 CompletionValues complete;
James Feist73df0db2019-03-25 15:29:35 -07001312};
1313
1314struct SetPIDValues : std::enable_shared_from_this<SetPIDValues>
1315{
zhanghch058d1b46d2021-04-01 11:18:24 +08001316 SetPIDValues(const std::shared_ptr<bmcweb::AsyncResp>& asyncRespIn,
James Feist73df0db2019-03-25 15:29:35 -07001317 nlohmann::json& data) :
Ed Tanous271584a2019-07-09 16:24:22 -07001318 asyncResp(asyncRespIn)
James Feist73df0db2019-03-25 15:29:35 -07001319 {
James Feist73df0db2019-03-25 15:29:35 -07001320 std::optional<nlohmann::json> pidControllers;
1321 std::optional<nlohmann::json> fanControllers;
1322 std::optional<nlohmann::json> fanZones;
1323 std::optional<nlohmann::json> stepwiseControllers;
1324
1325 if (!redfish::json_util::readJson(
1326 data, asyncResp->res, "PidControllers", pidControllers,
1327 "FanControllers", fanControllers, "FanZones", fanZones,
1328 "StepwiseControllers", stepwiseControllers, "Profile", profile))
1329 {
James Feist73df0db2019-03-25 15:29:35 -07001330 return;
1331 }
1332 configuration.emplace_back("PidControllers", std::move(pidControllers));
1333 configuration.emplace_back("FanControllers", std::move(fanControllers));
1334 configuration.emplace_back("FanZones", std::move(fanZones));
1335 configuration.emplace_back("StepwiseControllers",
1336 std::move(stepwiseControllers));
1337 }
Ed Tanousecd6a3a2022-01-07 09:18:40 -08001338
1339 SetPIDValues(const SetPIDValues&) = delete;
1340 SetPIDValues(SetPIDValues&&) = delete;
1341 SetPIDValues& operator=(const SetPIDValues&) = delete;
1342 SetPIDValues& operator=(SetPIDValues&&) = delete;
1343
James Feist73df0db2019-03-25 15:29:35 -07001344 void run()
1345 {
1346 if (asyncResp->res.result() != boost::beast::http::status::ok)
1347 {
1348 return;
1349 }
1350
1351 std::shared_ptr<SetPIDValues> self = shared_from_this();
1352
1353 // todo(james): might make sense to do a mapper call here if this
1354 // interface gets more traction
George Liu5eb468d2023-06-20 17:03:24 +08001355 sdbusplus::message::object_path objPath(
1356 "/xyz/openbmc_project/inventory");
1357 dbus::utility::getManagedObjects(
1358 "xyz.openbmc_project.EntityManager", objPath,
Ed Tanous5e7e2dc2023-02-16 10:37:01 -08001359 [self](const boost::system::error_code& ec,
Ed Tanous914e2d52022-01-07 11:38:34 -08001360 const dbus::utility::ManagedObjectType& mObj) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001361 if (ec)
1362 {
Ed Tanous62598e32023-07-17 17:06:25 -07001363 BMCWEB_LOG_ERROR("Error communicating to Entity Manager");
Ed Tanous002d39b2022-05-31 08:59:27 -07001364 messages::internalError(self->asyncResp->res);
1365 return;
1366 }
1367 const std::array<const char*, 3> configurations = {
1368 pidConfigurationIface, pidZoneConfigurationIface,
1369 stepwiseConfigurationIface};
James Feiste69d9de2020-02-07 12:23:27 -08001370
Ed Tanous002d39b2022-05-31 08:59:27 -07001371 for (const auto& [path, object] : mObj)
1372 {
1373 for (const auto& [interface, _] : object)
James Feiste69d9de2020-02-07 12:23:27 -08001374 {
Ed Tanous002d39b2022-05-31 08:59:27 -07001375 if (std::find(configurations.begin(), configurations.end(),
1376 interface) != configurations.end())
James Feiste69d9de2020-02-07 12:23:27 -08001377 {
Ed Tanous002d39b2022-05-31 08:59:27 -07001378 self->objectCount++;
1379 break;
James Feiste69d9de2020-02-07 12:23:27 -08001380 }
James Feiste69d9de2020-02-07 12:23:27 -08001381 }
Ed Tanous002d39b2022-05-31 08:59:27 -07001382 }
1383 self->managedObj = mObj;
George Liu5eb468d2023-06-20 17:03:24 +08001384 });
James Feist73df0db2019-03-25 15:29:35 -07001385
1386 // at the same time get the profile information
George Liue99073f2022-12-09 11:06:16 +08001387 constexpr std::array<std::string_view, 1> thermalModeIfaces = {
1388 thermalModeIface};
1389 dbus::utility::getSubTree(
1390 "/", 0, thermalModeIfaces,
1391 [self](const boost::system::error_code& ec,
Ed Tanousb9d36b42022-02-26 21:42:46 -08001392 const dbus::utility::MapperGetSubTreeResponse& subtree) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001393 if (ec || subtree.empty())
1394 {
1395 return;
1396 }
1397 if (subtree[0].second.empty())
1398 {
1399 // invalid mapper response, should never happen
Ed Tanous62598e32023-07-17 17:06:25 -07001400 BMCWEB_LOG_ERROR("SetPIDValues: Mapper Error");
Ed Tanous002d39b2022-05-31 08:59:27 -07001401 messages::internalError(self->asyncResp->res);
1402 return;
1403 }
1404
1405 const std::string& path = subtree[0].first;
1406 const std::string& owner = subtree[0].second[0].first;
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001407 sdbusplus::asio::getAllProperties(
1408 *crow::connections::systemBus, owner, path, thermalModeIface,
Ed Tanous5e7e2dc2023-02-16 10:37:01 -08001409 [self, path, owner](const boost::system::error_code& ec2,
Ed Tanous002d39b2022-05-31 08:59:27 -07001410 const dbus::utility::DBusPropertiesMap& r) {
1411 if (ec2)
James Feist73df0db2019-03-25 15:29:35 -07001412 {
Ed Tanous62598e32023-07-17 17:06:25 -07001413 BMCWEB_LOG_ERROR(
1414 "SetPIDValues: Can't get thermalModeIface {}", path);
James Feist73df0db2019-03-25 15:29:35 -07001415 messages::internalError(self->asyncResp->res);
1416 return;
1417 }
Ed Tanous002d39b2022-05-31 08:59:27 -07001418 const std::string* current = nullptr;
1419 const std::vector<std::string>* supported = nullptr;
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001420
1421 const bool success = sdbusplus::unpackPropertiesNoThrow(
1422 dbus_utils::UnpackErrorPrinter(), r, "Current", current,
1423 "Supported", supported);
1424
1425 if (!success)
Ed Tanous002d39b2022-05-31 08:59:27 -07001426 {
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001427 messages::internalError(self->asyncResp->res);
1428 return;
Ed Tanous002d39b2022-05-31 08:59:27 -07001429 }
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001430
Ed Tanous002d39b2022-05-31 08:59:27 -07001431 if (current == nullptr || supported == nullptr)
1432 {
Ed Tanous62598e32023-07-17 17:06:25 -07001433 BMCWEB_LOG_ERROR(
1434 "SetPIDValues: thermal mode iface invalid {}", path);
Ed Tanous002d39b2022-05-31 08:59:27 -07001435 messages::internalError(self->asyncResp->res);
1436 return;
1437 }
1438 self->currentProfile = *current;
1439 self->supportedProfiles = *supported;
1440 self->profileConnection = owner;
1441 self->profilePath = path;
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02001442 });
George Liue99073f2022-12-09 11:06:16 +08001443 });
James Feist73df0db2019-03-25 15:29:35 -07001444 }
Ed Tanous24b2fe82022-01-06 12:45:54 -08001445 void pidSetDone()
James Feist73df0db2019-03-25 15:29:35 -07001446 {
1447 if (asyncResp->res.result() != boost::beast::http::status::ok)
1448 {
1449 return;
1450 }
zhanghch058d1b46d2021-04-01 11:18:24 +08001451 std::shared_ptr<bmcweb::AsyncResp> response = asyncResp;
James Feist73df0db2019-03-25 15:29:35 -07001452 if (profile)
1453 {
1454 if (std::find(supportedProfiles.begin(), supportedProfiles.end(),
1455 *profile) == supportedProfiles.end())
1456 {
1457 messages::actionParameterUnknown(response->res, "Profile",
1458 *profile);
1459 return;
1460 }
1461 currentProfile = *profile;
George Liu9ae226f2023-06-21 17:56:46 +08001462 sdbusplus::asio::setProperty(
1463 *crow::connections::systemBus, profileConnection, profilePath,
1464 thermalModeIface, "Current", *profile,
Ed Tanous5e7e2dc2023-02-16 10:37:01 -08001465 [response](const boost::system::error_code& ec) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001466 if (ec)
1467 {
Ed Tanous62598e32023-07-17 17:06:25 -07001468 BMCWEB_LOG_ERROR("Error patching profile{}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -07001469 messages::internalError(response->res);
1470 }
George Liu9ae226f2023-06-21 17:56:46 +08001471 });
James Feist73df0db2019-03-25 15:29:35 -07001472 }
1473
1474 for (auto& containerPair : configuration)
1475 {
1476 auto& container = containerPair.second;
1477 if (!container)
1478 {
1479 continue;
1480 }
Ed Tanous62598e32023-07-17 17:06:25 -07001481 BMCWEB_LOG_DEBUG("{}", *container);
James Feist6ee7f772020-02-06 16:25:27 -08001482
Ed Tanous02cad962022-06-30 16:50:15 -07001483 const std::string& type = containerPair.first;
James Feist73df0db2019-03-25 15:29:35 -07001484
1485 for (nlohmann::json::iterator it = container->begin();
Manojkiran Eda17a897d2020-09-12 15:31:58 +05301486 it != container->end(); ++it)
James Feist73df0db2019-03-25 15:29:35 -07001487 {
1488 const auto& name = it.key();
Potin Laicddbf3d2023-02-14 14:28:58 +08001489 std::string dbusObjName = name;
1490 std::replace(dbusObjName.begin(), dbusObjName.end(), ' ', '_');
Ed Tanous62598e32023-07-17 17:06:25 -07001491 BMCWEB_LOG_DEBUG("looking for {}", name);
James Feist6ee7f772020-02-06 16:25:27 -08001492
Patrick Williams89492a12023-05-10 07:51:34 -05001493 auto pathItr = std::find_if(managedObj.begin(),
1494 managedObj.end(),
1495 [&dbusObjName](const auto& obj) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001496 return boost::algorithm::ends_with(obj.first.str,
Potin Laicddbf3d2023-02-14 14:28:58 +08001497 "/" + dbusObjName);
Patrick Williams89492a12023-05-10 07:51:34 -05001498 });
Ed Tanousb9d36b42022-02-26 21:42:46 -08001499 dbus::utility::DBusPropertiesMap output;
James Feist73df0db2019-03-25 15:29:35 -07001500
1501 output.reserve(16); // The pid interface length
1502
1503 // determines if we're patching entity-manager or
1504 // creating a new object
1505 bool createNewObject = (pathItr == managedObj.end());
Ed Tanous62598e32023-07-17 17:06:25 -07001506 BMCWEB_LOG_DEBUG("Found = {}", !createNewObject);
James Feist6ee7f772020-02-06 16:25:27 -08001507
James Feist73df0db2019-03-25 15:29:35 -07001508 std::string iface;
Ed Tanousea2b6702022-03-07 16:48:38 -08001509 if (!createNewObject)
James Feist73df0db2019-03-25 15:29:35 -07001510 {
Potin Lai8be2b5b2022-11-22 13:27:16 +08001511 bool findInterface = false;
Ed Tanousea2b6702022-03-07 16:48:38 -08001512 for (const auto& interface : pathItr->second)
James Feist73df0db2019-03-25 15:29:35 -07001513 {
Ed Tanousea2b6702022-03-07 16:48:38 -08001514 if (interface.first == pidConfigurationIface)
1515 {
1516 if (type == "PidControllers" ||
1517 type == "FanControllers")
1518 {
1519 iface = pidConfigurationIface;
Potin Lai8be2b5b2022-11-22 13:27:16 +08001520 findInterface = true;
1521 break;
Ed Tanousea2b6702022-03-07 16:48:38 -08001522 }
1523 }
1524 else if (interface.first == pidZoneConfigurationIface)
1525 {
1526 if (type == "FanZones")
1527 {
1528 iface = pidConfigurationIface;
Potin Lai8be2b5b2022-11-22 13:27:16 +08001529 findInterface = true;
1530 break;
Ed Tanousea2b6702022-03-07 16:48:38 -08001531 }
1532 }
1533 else if (interface.first == stepwiseConfigurationIface)
1534 {
1535 if (type == "StepwiseControllers")
1536 {
1537 iface = stepwiseConfigurationIface;
Potin Lai8be2b5b2022-11-22 13:27:16 +08001538 findInterface = true;
1539 break;
Ed Tanousea2b6702022-03-07 16:48:38 -08001540 }
1541 }
James Feist73df0db2019-03-25 15:29:35 -07001542 }
Potin Lai8be2b5b2022-11-22 13:27:16 +08001543
1544 // create new object if interface not found
1545 if (!findInterface)
1546 {
1547 createNewObject = true;
1548 }
James Feist73df0db2019-03-25 15:29:35 -07001549 }
James Feist6ee7f772020-02-06 16:25:27 -08001550
1551 if (createNewObject && it.value() == nullptr)
1552 {
Gunnar Mills4e0453b2020-07-08 14:00:30 -05001553 // can't delete a non-existent object
Ed Tanouse2616cc2022-06-27 12:45:55 -07001554 messages::propertyValueNotInList(response->res, it.value(),
1555 name);
James Feist6ee7f772020-02-06 16:25:27 -08001556 continue;
1557 }
1558
1559 std::string path;
1560 if (pathItr != managedObj.end())
1561 {
1562 path = pathItr->first.str;
1563 }
1564
Ed Tanous62598e32023-07-17 17:06:25 -07001565 BMCWEB_LOG_DEBUG("Create new = {}", createNewObject);
James Feiste69d9de2020-02-07 12:23:27 -08001566
1567 // arbitrary limit to avoid attacks
1568 constexpr const size_t controllerLimit = 500;
James Feist14b0b8d2020-02-12 11:52:07 -08001569 if (createNewObject && objectCount >= controllerLimit)
James Feiste69d9de2020-02-07 12:23:27 -08001570 {
1571 messages::resourceExhaustion(response->res, type);
1572 continue;
1573 }
Ed Tanousa170f272022-06-30 21:53:27 -07001574 std::string escaped = name;
1575 std::replace(escaped.begin(), escaped.end(), '_', ' ');
1576 output.emplace_back("Name", escaped);
James Feist73df0db2019-03-25 15:29:35 -07001577
1578 std::string chassis;
1579 CreatePIDRet ret = createPidInterface(
James Feist6ee7f772020-02-06 16:25:27 -08001580 response, type, it, path, managedObj, createNewObject,
1581 output, chassis, currentProfile);
James Feist73df0db2019-03-25 15:29:35 -07001582 if (ret == CreatePIDRet::fail)
1583 {
1584 return;
1585 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07001586 if (ret == CreatePIDRet::del)
James Feist73df0db2019-03-25 15:29:35 -07001587 {
1588 continue;
1589 }
1590
1591 if (!createNewObject)
1592 {
1593 for (const auto& property : output)
1594 {
George Liu9ae226f2023-06-21 17:56:46 +08001595 sdbusplus::asio::setProperty(
1596 *crow::connections::systemBus,
1597 "xyz.openbmc_project.EntityManager", path, iface,
1598 property.first, property.second,
James Feist73df0db2019-03-25 15:29:35 -07001599 [response,
1600 propertyName{std::string(property.first)}](
Ed Tanous5e7e2dc2023-02-16 10:37:01 -08001601 const boost::system::error_code& ec) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001602 if (ec)
1603 {
Ed Tanous62598e32023-07-17 17:06:25 -07001604 BMCWEB_LOG_ERROR("Error patching {}: {}",
1605 propertyName, ec);
Ed Tanous002d39b2022-05-31 08:59:27 -07001606 messages::internalError(response->res);
1607 return;
1608 }
1609 messages::success(response->res);
George Liu9ae226f2023-06-21 17:56:46 +08001610 });
James Feist73df0db2019-03-25 15:29:35 -07001611 }
1612 }
1613 else
1614 {
1615 if (chassis.empty())
1616 {
Ed Tanous62598e32023-07-17 17:06:25 -07001617 BMCWEB_LOG_ERROR("Failed to get chassis from config");
Ed Tanousace85d62021-10-26 12:45:59 -07001618 messages::internalError(response->res);
James Feist73df0db2019-03-25 15:29:35 -07001619 return;
1620 }
1621
1622 bool foundChassis = false;
1623 for (const auto& obj : managedObj)
1624 {
1625 if (boost::algorithm::ends_with(obj.first.str, chassis))
1626 {
1627 chassis = obj.first.str;
1628 foundChassis = true;
1629 break;
1630 }
1631 }
1632 if (!foundChassis)
1633 {
Ed Tanous62598e32023-07-17 17:06:25 -07001634 BMCWEB_LOG_ERROR("Failed to find chassis on dbus");
James Feist73df0db2019-03-25 15:29:35 -07001635 messages::resourceMissingAtURI(
Ed Tanousace85d62021-10-26 12:45:59 -07001636 response->res,
Ed Tanousef4c65b2023-04-24 15:28:50 -07001637 boost::urls::format("/redfish/v1/Chassis/{}",
1638 chassis));
James Feist73df0db2019-03-25 15:29:35 -07001639 return;
1640 }
1641
1642 crow::connections::systemBus->async_method_call(
Ed Tanous5e7e2dc2023-02-16 10:37:01 -08001643 [response](const boost::system::error_code& ec) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001644 if (ec)
1645 {
Ed Tanous62598e32023-07-17 17:06:25 -07001646 BMCWEB_LOG_ERROR("Error Adding Pid Object {}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -07001647 messages::internalError(response->res);
1648 return;
1649 }
1650 messages::success(response->res);
James Feist73df0db2019-03-25 15:29:35 -07001651 },
1652 "xyz.openbmc_project.EntityManager", chassis,
1653 "xyz.openbmc_project.AddObject", "AddObject", output);
1654 }
1655 }
1656 }
1657 }
Ed Tanous24b2fe82022-01-06 12:45:54 -08001658
1659 ~SetPIDValues()
1660 {
1661 try
1662 {
1663 pidSetDone();
1664 }
1665 catch (...)
1666 {
Ed Tanous62598e32023-07-17 17:06:25 -07001667 BMCWEB_LOG_CRITICAL("pidSetDone threw exception");
Ed Tanous24b2fe82022-01-06 12:45:54 -08001668 }
1669 }
1670
zhanghch058d1b46d2021-04-01 11:18:24 +08001671 std::shared_ptr<bmcweb::AsyncResp> asyncResp;
James Feist73df0db2019-03-25 15:29:35 -07001672 std::vector<std::pair<std::string, std::optional<nlohmann::json>>>
1673 configuration;
1674 std::optional<std::string> profile;
1675 dbus::utility::ManagedObjectType managedObj;
1676 std::vector<std::string> supportedProfiles;
1677 std::string currentProfile;
1678 std::string profileConnection;
1679 std::string profilePath;
James Feist14b0b8d2020-02-12 11:52:07 -08001680 size_t objectCount = 0;
James Feist73df0db2019-03-25 15:29:35 -07001681};
James Feist83ff9ab2018-08-31 10:18:24 -07001682
SunnySrivastava1984071d8fd2020-10-28 02:20:30 -05001683/**
1684 * @brief Retrieves BMC manager location data over DBus
1685 *
Ed Tanousac106bf2023-06-07 09:24:59 -07001686 * @param[in] asyncResp Shared pointer for completing asynchronous calls
SunnySrivastava1984071d8fd2020-10-28 02:20:30 -05001687 * @param[in] connectionName - service name
1688 * @param[in] path - object path
1689 * @return none
1690 */
Ed Tanousac106bf2023-06-07 09:24:59 -07001691inline void getLocation(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
SunnySrivastava1984071d8fd2020-10-28 02:20:30 -05001692 const std::string& connectionName,
1693 const std::string& path)
1694{
Ed Tanous62598e32023-07-17 17:06:25 -07001695 BMCWEB_LOG_DEBUG("Get BMC manager Location data.");
SunnySrivastava1984071d8fd2020-10-28 02:20:30 -05001696
Jonathan Doman1e1e5982021-06-11 09:36:17 -07001697 sdbusplus::asio::getProperty<std::string>(
1698 *crow::connections::systemBus, connectionName, path,
1699 "xyz.openbmc_project.Inventory.Decorator.LocationCode", "LocationCode",
Ed Tanousac106bf2023-06-07 09:24:59 -07001700 [asyncResp](const boost::system::error_code& ec,
1701 const std::string& property) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001702 if (ec)
1703 {
Ed Tanous62598e32023-07-17 17:06:25 -07001704 BMCWEB_LOG_DEBUG("DBUS response error for "
1705 "Location");
Ed Tanousac106bf2023-06-07 09:24:59 -07001706 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -07001707 return;
1708 }
SunnySrivastava1984071d8fd2020-10-28 02:20:30 -05001709
Ed Tanousac106bf2023-06-07 09:24:59 -07001710 asyncResp->res.jsonValue["Location"]["PartLocation"]["ServiceLabel"] =
Ed Tanous002d39b2022-05-31 08:59:27 -07001711 property;
Jonathan Doman1e1e5982021-06-11 09:36:17 -07001712 });
SunnySrivastava1984071d8fd2020-10-28 02:20:30 -05001713}
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001714// avoid name collision systems.hpp
1715inline void
Ed Tanousac106bf2023-06-07 09:24:59 -07001716 managerGetLastResetTime(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001717{
Ed Tanous62598e32023-07-17 17:06:25 -07001718 BMCWEB_LOG_DEBUG("Getting Manager Last Reset Time");
Ed Tanous52cc1122020-07-18 13:51:21 -07001719
Jonathan Doman1e1e5982021-06-11 09:36:17 -07001720 sdbusplus::asio::getProperty<uint64_t>(
1721 *crow::connections::systemBus, "xyz.openbmc_project.State.BMC",
1722 "/xyz/openbmc_project/state/bmc0", "xyz.openbmc_project.State.BMC",
1723 "LastRebootTime",
Ed Tanousac106bf2023-06-07 09:24:59 -07001724 [asyncResp](const boost::system::error_code& ec,
1725 const uint64_t lastResetTime) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001726 if (ec)
1727 {
Ed Tanous62598e32023-07-17 17:06:25 -07001728 BMCWEB_LOG_DEBUG("D-BUS response error {}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -07001729 return;
1730 }
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001731
Ed Tanous002d39b2022-05-31 08:59:27 -07001732 // LastRebootTime is epoch time, in milliseconds
1733 // https://github.com/openbmc/phosphor-dbus-interfaces/blob/7f9a128eb9296e926422ddc312c148b625890bb6/xyz/openbmc_project/State/BMC.interface.yaml#L19
1734 uint64_t lastResetTimeStamp = lastResetTime / 1000;
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001735
Ed Tanous002d39b2022-05-31 08:59:27 -07001736 // Convert to ISO 8601 standard
Ed Tanousac106bf2023-06-07 09:24:59 -07001737 asyncResp->res.jsonValue["LastResetTime"] =
Ed Tanous2b829372022-08-03 14:22:34 -07001738 redfish::time_utils::getDateTimeUint(lastResetTimeStamp);
Jonathan Doman1e1e5982021-06-11 09:36:17 -07001739 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001740}
1741
1742/**
1743 * @brief Set the running firmware image
1744 *
Ed Tanousac106bf2023-06-07 09:24:59 -07001745 * @param[i,o] asyncResp - Async response object
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001746 * @param[i] runningFirmwareTarget - Image to make the running image
1747 *
1748 * @return void
1749 */
1750inline void
Ed Tanousac106bf2023-06-07 09:24:59 -07001751 setActiveFirmwareImage(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001752 const std::string& runningFirmwareTarget)
1753{
1754 // Get the Id from /redfish/v1/UpdateService/FirmwareInventory/<Id>
1755 std::string::size_type idPos = runningFirmwareTarget.rfind('/');
1756 if (idPos == std::string::npos)
1757 {
Ed Tanousac106bf2023-06-07 09:24:59 -07001758 messages::propertyValueNotInList(asyncResp->res, runningFirmwareTarget,
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001759 "@odata.id");
Ed Tanous62598e32023-07-17 17:06:25 -07001760 BMCWEB_LOG_DEBUG("Can't parse firmware ID!");
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001761 return;
1762 }
1763 idPos++;
1764 if (idPos >= runningFirmwareTarget.size())
1765 {
Ed Tanousac106bf2023-06-07 09:24:59 -07001766 messages::propertyValueNotInList(asyncResp->res, runningFirmwareTarget,
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001767 "@odata.id");
Ed Tanous62598e32023-07-17 17:06:25 -07001768 BMCWEB_LOG_DEBUG("Invalid firmware ID.");
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001769 return;
1770 }
1771 std::string firmwareId = runningFirmwareTarget.substr(idPos);
1772
1773 // Make sure the image is valid before setting priority
George Liu5eb468d2023-06-20 17:03:24 +08001774 sdbusplus::message::object_path objPath("/xyz/openbmc_project/software");
1775 dbus::utility::getManagedObjects(
1776 "xyz.openbmc_project.Software.BMC.Updater", objPath,
1777 [asyncResp, firmwareId, runningFirmwareTarget](
1778 const boost::system::error_code& ec,
1779 const dbus::utility::ManagedObjectType& subtree) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001780 if (ec)
1781 {
Ed Tanous62598e32023-07-17 17:06:25 -07001782 BMCWEB_LOG_DEBUG("D-Bus response error getting objects.");
Ed Tanousac106bf2023-06-07 09:24:59 -07001783 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -07001784 return;
1785 }
1786
1787 if (subtree.empty())
1788 {
Ed Tanous62598e32023-07-17 17:06:25 -07001789 BMCWEB_LOG_DEBUG("Can't find image!");
Ed Tanousac106bf2023-06-07 09:24:59 -07001790 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -07001791 return;
1792 }
1793
1794 bool foundImage = false;
Ed Tanous02cad962022-06-30 16:50:15 -07001795 for (const auto& object : subtree)
Ed Tanous002d39b2022-05-31 08:59:27 -07001796 {
1797 const std::string& path =
1798 static_cast<const std::string&>(object.first);
1799 std::size_t idPos2 = path.rfind('/');
1800
1801 if (idPos2 == std::string::npos)
1802 {
1803 continue;
1804 }
1805
1806 idPos2++;
1807 if (idPos2 >= path.size())
1808 {
1809 continue;
1810 }
1811
1812 if (path.substr(idPos2) == firmwareId)
1813 {
1814 foundImage = true;
1815 break;
1816 }
1817 }
1818
1819 if (!foundImage)
1820 {
Ed Tanousac106bf2023-06-07 09:24:59 -07001821 messages::propertyValueNotInList(
1822 asyncResp->res, runningFirmwareTarget, "@odata.id");
Ed Tanous62598e32023-07-17 17:06:25 -07001823 BMCWEB_LOG_DEBUG("Invalid firmware ID.");
Ed Tanous002d39b2022-05-31 08:59:27 -07001824 return;
1825 }
1826
Ed Tanous62598e32023-07-17 17:06:25 -07001827 BMCWEB_LOG_DEBUG("Setting firmware version {} to priority 0.",
1828 firmwareId);
Ed Tanous002d39b2022-05-31 08:59:27 -07001829
1830 // Only support Immediate
1831 // An addition could be a Redfish Setting like
1832 // ActiveSoftwareImageApplyTime and support OnReset
George Liu9ae226f2023-06-21 17:56:46 +08001833 sdbusplus::asio::setProperty(
1834 *crow::connections::systemBus,
1835 "xyz.openbmc_project.Software.BMC.Updater",
1836 "/xyz/openbmc_project/software/" + firmwareId,
1837 "xyz.openbmc_project.Software.RedundancyPriority", "Priority",
1838 static_cast<uint8_t>(0),
Ed Tanousac106bf2023-06-07 09:24:59 -07001839 [asyncResp](const boost::system::error_code& ec2) {
Ed Tanous8a592812022-06-04 09:06:59 -07001840 if (ec2)
Gunnar Mills4bfefa72020-07-30 13:54:29 -05001841 {
Ed Tanous62598e32023-07-17 17:06:25 -07001842 BMCWEB_LOG_DEBUG("D-Bus response error setting.");
Ed Tanousac106bf2023-06-07 09:24:59 -07001843 messages::internalError(asyncResp->res);
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001844 return;
1845 }
Ed Tanousac106bf2023-06-07 09:24:59 -07001846 doBMCGracefulRestart(asyncResp);
George Liu9ae226f2023-06-21 17:56:46 +08001847 });
George Liu5eb468d2023-06-20 17:03:24 +08001848 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001849}
Ed Tanous1abe55e2018-09-05 08:30:59 -07001850
Ed Tanousac106bf2023-06-07 09:24:59 -07001851inline void setDateTime(std::shared_ptr<bmcweb::AsyncResp> asyncResp,
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001852 std::string datetime)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001853{
Ed Tanous62598e32023-07-17 17:06:25 -07001854 BMCWEB_LOG_DEBUG("Set date time: {}", datetime);
Borawski.Lukasz9c3106852018-02-09 15:24:22 +01001855
Ed Tanousc2e32002023-01-07 22:05:08 -08001856 std::optional<redfish::time_utils::usSinceEpoch> us =
1857 redfish::time_utils::dateStringToEpoch(datetime);
1858 if (!us)
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001859 {
Ed Tanousac106bf2023-06-07 09:24:59 -07001860 messages::propertyValueFormatError(asyncResp->res, datetime,
1861 "DateTime");
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001862 return;
1863 }
George Liu9ae226f2023-06-21 17:56:46 +08001864 sdbusplus::asio::setProperty(
1865 *crow::connections::systemBus, "xyz.openbmc_project.Time.Manager",
1866 "/xyz/openbmc_project/time/bmc", "xyz.openbmc_project.Time.EpochTime",
1867 "Elapsed", us->count(),
Ed Tanousac106bf2023-06-07 09:24:59 -07001868 [asyncResp{std::move(asyncResp)},
Ed Tanous5e7e2dc2023-02-16 10:37:01 -08001869 datetime{std::move(datetime)}](const boost::system::error_code& ec) {
Ed Tanousc2e32002023-01-07 22:05:08 -08001870 if (ec)
1871 {
Ed Tanous62598e32023-07-17 17:06:25 -07001872 BMCWEB_LOG_DEBUG("Failed to set elapsed time. "
1873 "DBUS response error {}",
1874 ec);
Ed Tanousac106bf2023-06-07 09:24:59 -07001875 messages::internalError(asyncResp->res);
Ed Tanousc2e32002023-01-07 22:05:08 -08001876 return;
1877 }
Ed Tanousac106bf2023-06-07 09:24:59 -07001878 asyncResp->res.jsonValue["DateTime"] = datetime;
George Liu9ae226f2023-06-21 17:56:46 +08001879 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001880}
1881
Ed Tanous75815e52022-10-05 17:21:13 -07001882inline void
1883 checkForQuiesced(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
1884{
1885 sdbusplus::asio::getProperty<std::string>(
1886 *crow::connections::systemBus, "org.freedesktop.systemd1",
1887 "/org/freedesktop/systemd1/unit/obmc-bmc-service-quiesce@0.target",
1888 "org.freedesktop.systemd1.Unit", "ActiveState",
1889 [asyncResp](const boost::system::error_code& ec,
1890 const std::string& val) {
1891 if (!ec)
1892 {
1893 if (val == "active")
1894 {
1895 asyncResp->res.jsonValue["Status"]["Health"] = "Critical";
1896 asyncResp->res.jsonValue["Status"]["State"] = "Quiesced";
1897 return;
1898 }
1899 }
1900 asyncResp->res.jsonValue["Status"]["Health"] = "OK";
1901 asyncResp->res.jsonValue["Status"]["State"] = "Enabled";
1902 });
1903}
1904
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001905inline void requestRoutesManager(App& app)
1906{
1907 std::string uuid = persistent_data::getConfig().systemUuid;
1908
1909 BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/")
Ed Tanoused398212021-06-09 17:05:54 -07001910 .privileges(redfish::privileges::getManager)
Ed Tanous002d39b2022-05-31 08:59:27 -07001911 .methods(boost::beast::http::verb::get)(
1912 [&app, uuid](const crow::Request& req,
Ed Tanous45ca1b82022-03-25 13:07:27 -07001913 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
Carson Labrado3ba00072022-06-06 19:40:56 +00001914 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07001915 {
1916 return;
1917 }
1918 asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Managers/bmc";
Sui Chena51fc2d2022-07-14 17:21:53 -07001919 asyncResp->res.jsonValue["@odata.type"] = "#Manager.v1_14_0.Manager";
Ed Tanous002d39b2022-05-31 08:59:27 -07001920 asyncResp->res.jsonValue["Id"] = "bmc";
1921 asyncResp->res.jsonValue["Name"] = "OpenBmc Manager";
1922 asyncResp->res.jsonValue["Description"] =
1923 "Baseboard Management Controller";
1924 asyncResp->res.jsonValue["PowerState"] = "On";
Ed Tanous14766872022-03-15 10:44:42 -07001925
Ed Tanous002d39b2022-05-31 08:59:27 -07001926 asyncResp->res.jsonValue["ManagerType"] = "BMC";
1927 asyncResp->res.jsonValue["UUID"] = systemd_utils::getUuid();
1928 asyncResp->res.jsonValue["ServiceEntryPointUUID"] = uuid;
1929 asyncResp->res.jsonValue["Model"] = "OpenBmc"; // TODO(ed), get model
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001930
Ed Tanous002d39b2022-05-31 08:59:27 -07001931 asyncResp->res.jsonValue["LogServices"]["@odata.id"] =
1932 "/redfish/v1/Managers/bmc/LogServices";
1933 asyncResp->res.jsonValue["NetworkProtocol"]["@odata.id"] =
1934 "/redfish/v1/Managers/bmc/NetworkProtocol";
1935 asyncResp->res.jsonValue["EthernetInterfaces"]["@odata.id"] =
1936 "/redfish/v1/Managers/bmc/EthernetInterfaces";
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001937
1938#ifdef BMCWEB_ENABLE_VM_NBDPROXY
Ed Tanous002d39b2022-05-31 08:59:27 -07001939 asyncResp->res.jsonValue["VirtualMedia"]["@odata.id"] =
1940 "/redfish/v1/Managers/bmc/VirtualMedia";
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001941#endif // BMCWEB_ENABLE_VM_NBDPROXY
1942
Ed Tanous002d39b2022-05-31 08:59:27 -07001943 // default oem data
1944 nlohmann::json& oem = asyncResp->res.jsonValue["Oem"];
1945 nlohmann::json& oemOpenbmc = oem["OpenBmc"];
1946 oem["@odata.type"] = "#OemManager.Oem";
1947 oem["@odata.id"] = "/redfish/v1/Managers/bmc#/Oem";
1948 oemOpenbmc["@odata.type"] = "#OemManager.OpenBmc";
1949 oemOpenbmc["@odata.id"] = "/redfish/v1/Managers/bmc#/Oem/OpenBmc";
Ed Tanous14766872022-03-15 10:44:42 -07001950
Ed Tanous002d39b2022-05-31 08:59:27 -07001951 nlohmann::json::object_t certificates;
1952 certificates["@odata.id"] =
1953 "/redfish/v1/Managers/bmc/Truststore/Certificates";
1954 oemOpenbmc["Certificates"] = std::move(certificates);
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001955
Ed Tanous002d39b2022-05-31 08:59:27 -07001956 // Manager.Reset (an action) can be many values, OpenBMC only
1957 // supports BMC reboot.
1958 nlohmann::json& managerReset =
1959 asyncResp->res.jsonValue["Actions"]["#Manager.Reset"];
1960 managerReset["target"] =
1961 "/redfish/v1/Managers/bmc/Actions/Manager.Reset";
1962 managerReset["@Redfish.ActionInfo"] =
1963 "/redfish/v1/Managers/bmc/ResetActionInfo";
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001964
Ed Tanous002d39b2022-05-31 08:59:27 -07001965 // ResetToDefaults (Factory Reset) has values like
1966 // PreserveNetworkAndUsers and PreserveNetwork that aren't supported
1967 // on OpenBMC
1968 nlohmann::json& resetToDefaults =
1969 asyncResp->res.jsonValue["Actions"]["#Manager.ResetToDefaults"];
1970 resetToDefaults["target"] =
1971 "/redfish/v1/Managers/bmc/Actions/Manager.ResetToDefaults";
Ed Tanous613dabe2022-07-09 11:17:36 -07001972 resetToDefaults["ResetType@Redfish.AllowableValues"] =
1973 nlohmann::json::array_t({"ResetAll"});
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001974
Ed Tanous002d39b2022-05-31 08:59:27 -07001975 std::pair<std::string, std::string> redfishDateTimeOffset =
Ed Tanous2b829372022-08-03 14:22:34 -07001976 redfish::time_utils::getDateTimeOffsetNow();
Tejas Patil7c8c4052021-06-04 17:43:14 +05301977
Ed Tanous002d39b2022-05-31 08:59:27 -07001978 asyncResp->res.jsonValue["DateTime"] = redfishDateTimeOffset.first;
1979 asyncResp->res.jsonValue["DateTimeLocalOffset"] =
1980 redfishDateTimeOffset.second;
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001981
Ed Tanous002d39b2022-05-31 08:59:27 -07001982 // TODO (Gunnar): Remove these one day since moved to ComputerSystem
1983 // Still used by OCP profiles
1984 // https://github.com/opencomputeproject/OCP-Profiles/issues/23
1985 // Fill in SerialConsole info
1986 asyncResp->res.jsonValue["SerialConsole"]["ServiceEnabled"] = true;
1987 asyncResp->res.jsonValue["SerialConsole"]["MaxConcurrentSessions"] = 15;
Ed Tanous613dabe2022-07-09 11:17:36 -07001988 asyncResp->res.jsonValue["SerialConsole"]["ConnectTypesSupported"] =
1989 nlohmann::json::array_t({"IPMI", "SSH"});
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001990#ifdef BMCWEB_ENABLE_KVM
Ed Tanous002d39b2022-05-31 08:59:27 -07001991 // Fill in GraphicalConsole info
1992 asyncResp->res.jsonValue["GraphicalConsole"]["ServiceEnabled"] = true;
1993 asyncResp->res.jsonValue["GraphicalConsole"]["MaxConcurrentSessions"] =
1994 4;
Ed Tanous613dabe2022-07-09 11:17:36 -07001995 asyncResp->res.jsonValue["GraphicalConsole"]["ConnectTypesSupported"] =
1996 nlohmann::json::array_t({"KVMIP"});
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001997#endif // BMCWEB_ENABLE_KVM
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001998 if constexpr (!bmcwebEnableMultiHost)
1999 {
2000 asyncResp->res.jsonValue["Links"]["ManagerForServers@odata.count"] =
2001 1;
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002002
Ed Tanous7f3e84a2022-12-28 16:22:54 -08002003 nlohmann::json::array_t managerForServers;
2004 nlohmann::json::object_t manager;
2005 manager["@odata.id"] = "/redfish/v1/Systems/system";
2006 managerForServers.emplace_back(std::move(manager));
Ed Tanous14766872022-03-15 10:44:42 -07002007
Ed Tanous7f3e84a2022-12-28 16:22:54 -08002008 asyncResp->res.jsonValue["Links"]["ManagerForServers"] =
2009 std::move(managerForServers);
2010 }
Willy Tu13451e32023-05-24 16:08:18 -07002011 if constexpr (bmcwebEnableHealthPopulate)
2012 {
2013 auto health = std::make_shared<HealthPopulate>(asyncResp);
2014 health->isManagersHealth = true;
2015 health->populate();
2016 }
Ed Tanous002d39b2022-05-31 08:59:27 -07002017
Willy Tueee00132022-06-14 14:53:17 -07002018 sw_util::populateSoftwareInformation(asyncResp, sw_util::bmcPurpose,
Ed Tanous002d39b2022-05-31 08:59:27 -07002019 "FirmwareVersion", true);
2020
2021 managerGetLastResetTime(asyncResp);
2022
Sui Chena51fc2d2022-07-14 17:21:53 -07002023 // ManagerDiagnosticData is added for all BMCs.
2024 nlohmann::json& managerDiagnosticData =
2025 asyncResp->res.jsonValue["ManagerDiagnosticData"];
2026 managerDiagnosticData["@odata.id"] =
2027 "/redfish/v1/Managers/bmc/ManagerDiagnosticData";
2028
Gunnar Mills54dce7f2022-08-05 17:01:32 +00002029#ifdef BMCWEB_ENABLE_REDFISH_OEM_MANAGER_FAN_DATA
Ed Tanous002d39b2022-05-31 08:59:27 -07002030 auto pids = std::make_shared<GetPIDValues>(asyncResp);
2031 pids->run();
Gunnar Mills54dce7f2022-08-05 17:01:32 +00002032#endif
Ed Tanous002d39b2022-05-31 08:59:27 -07002033
2034 getMainChassisId(asyncResp,
2035 [](const std::string& chassisId,
2036 const std::shared_ptr<bmcweb::AsyncResp>& aRsp) {
2037 aRsp->res.jsonValue["Links"]["ManagerForChassis@odata.count"] = 1;
2038 nlohmann::json::array_t managerForChassis;
Ed Tanous8a592812022-06-04 09:06:59 -07002039 nlohmann::json::object_t managerObj;
Ed Tanousef4c65b2023-04-24 15:28:50 -07002040 boost::urls::url chassiUrl =
2041 boost::urls::format("/redfish/v1/Chassis/{}", chassisId);
Willy Tueddfc432022-09-26 16:46:38 +00002042 managerObj["@odata.id"] = chassiUrl;
Patrick Williamsad539542023-05-12 10:10:08 -05002043 managerForChassis.emplace_back(std::move(managerObj));
Ed Tanous002d39b2022-05-31 08:59:27 -07002044 aRsp->res.jsonValue["Links"]["ManagerForChassis"] =
2045 std::move(managerForChassis);
2046 aRsp->res.jsonValue["Links"]["ManagerInChassis"]["@odata.id"] =
Willy Tueddfc432022-09-26 16:46:38 +00002047 chassiUrl;
Ed Tanous002d39b2022-05-31 08:59:27 -07002048 });
Ed Tanous14766872022-03-15 10:44:42 -07002049
Ed Tanous75815e52022-10-05 17:21:13 -07002050 sdbusplus::asio::getProperty<double>(
2051 *crow::connections::systemBus, "org.freedesktop.systemd1",
2052 "/org/freedesktop/systemd1", "org.freedesktop.systemd1.Manager",
2053 "Progress",
2054 [asyncResp](const boost::system::error_code& ec, double val) {
2055 if (ec)
2056 {
Ed Tanous62598e32023-07-17 17:06:25 -07002057 BMCWEB_LOG_ERROR("Error while getting progress");
Ed Tanous75815e52022-10-05 17:21:13 -07002058 messages::internalError(asyncResp->res);
2059 return;
2060 }
2061 if (val < 1.0)
2062 {
2063 asyncResp->res.jsonValue["Status"]["Health"] = "OK";
2064 asyncResp->res.jsonValue["Status"]["State"] = "Starting";
2065 return;
2066 }
2067 checkForQuiesced(asyncResp);
2068 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002069
George Liue99073f2022-12-09 11:06:16 +08002070 constexpr std::array<std::string_view, 1> interfaces = {
2071 "xyz.openbmc_project.Inventory.Item.Bmc"};
2072 dbus::utility::getSubTree(
2073 "/xyz/openbmc_project/inventory", 0, interfaces,
Ed Tanous002d39b2022-05-31 08:59:27 -07002074 [asyncResp](
George Liue99073f2022-12-09 11:06:16 +08002075 const boost::system::error_code& ec,
Ed Tanous002d39b2022-05-31 08:59:27 -07002076 const dbus::utility::MapperGetSubTreeResponse& subtree) {
2077 if (ec)
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002078 {
Ed Tanous62598e32023-07-17 17:06:25 -07002079 BMCWEB_LOG_DEBUG("D-Bus response error on GetSubTree {}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -07002080 return;
2081 }
2082 if (subtree.empty())
2083 {
Ed Tanous62598e32023-07-17 17:06:25 -07002084 BMCWEB_LOG_DEBUG("Can't find bmc D-Bus object!");
Ed Tanous002d39b2022-05-31 08:59:27 -07002085 return;
2086 }
2087 // Assume only 1 bmc D-Bus object
2088 // Throw an error if there is more than 1
2089 if (subtree.size() > 1)
2090 {
Ed Tanous62598e32023-07-17 17:06:25 -07002091 BMCWEB_LOG_DEBUG("Found more than 1 bmc D-Bus object!");
Ed Tanous002d39b2022-05-31 08:59:27 -07002092 messages::internalError(asyncResp->res);
2093 return;
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002094 }
2095
Ed Tanous002d39b2022-05-31 08:59:27 -07002096 if (subtree[0].first.empty() || subtree[0].second.size() != 1)
2097 {
Ed Tanous62598e32023-07-17 17:06:25 -07002098 BMCWEB_LOG_DEBUG("Error getting bmc D-Bus object!");
Ed Tanous002d39b2022-05-31 08:59:27 -07002099 messages::internalError(asyncResp->res);
2100 return;
2101 }
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002102
Ed Tanous002d39b2022-05-31 08:59:27 -07002103 const std::string& path = subtree[0].first;
2104 const std::string& connectionName = subtree[0].second[0].first;
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002105
Ed Tanous002d39b2022-05-31 08:59:27 -07002106 for (const auto& interfaceName : subtree[0].second[0].second)
2107 {
2108 if (interfaceName ==
2109 "xyz.openbmc_project.Inventory.Decorator.Asset")
2110 {
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02002111 sdbusplus::asio::getAllProperties(
2112 *crow::connections::systemBus, connectionName, path,
2113 "xyz.openbmc_project.Inventory.Decorator.Asset",
Ed Tanous5e7e2dc2023-02-16 10:37:01 -08002114 [asyncResp](const boost::system::error_code& ec2,
Ed Tanousb9d36b42022-02-26 21:42:46 -08002115 const dbus::utility::DBusPropertiesMap&
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002116 propertiesList) {
Ed Tanous8a592812022-06-04 09:06:59 -07002117 if (ec2)
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002118 {
Ed Tanous62598e32023-07-17 17:06:25 -07002119 BMCWEB_LOG_DEBUG("Can't get bmc asset!");
Ed Tanous002d39b2022-05-31 08:59:27 -07002120 return;
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002121 }
Ed Tanous002d39b2022-05-31 08:59:27 -07002122
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02002123 const std::string* partNumber = nullptr;
2124 const std::string* serialNumber = nullptr;
2125 const std::string* manufacturer = nullptr;
2126 const std::string* model = nullptr;
2127 const std::string* sparePartNumber = nullptr;
2128
2129 const bool success = sdbusplus::unpackPropertiesNoThrow(
2130 dbus_utils::UnpackErrorPrinter(), propertiesList,
2131 "PartNumber", partNumber, "SerialNumber",
2132 serialNumber, "Manufacturer", manufacturer, "Model",
2133 model, "SparePartNumber", sparePartNumber);
2134
2135 if (!success)
2136 {
2137 messages::internalError(asyncResp->res);
2138 return;
Ed Tanous002d39b2022-05-31 08:59:27 -07002139 }
Krzysztof Grobelnyfac6e532022-08-04 12:42:45 +02002140
2141 if (partNumber != nullptr)
2142 {
2143 asyncResp->res.jsonValue["PartNumber"] =
2144 *partNumber;
2145 }
2146
2147 if (serialNumber != nullptr)
2148 {
2149 asyncResp->res.jsonValue["SerialNumber"] =
2150 *serialNumber;
2151 }
2152
2153 if (manufacturer != nullptr)
2154 {
2155 asyncResp->res.jsonValue["Manufacturer"] =
2156 *manufacturer;
2157 }
2158
2159 if (model != nullptr)
2160 {
2161 asyncResp->res.jsonValue["Model"] = *model;
2162 }
2163
2164 if (sparePartNumber != nullptr)
2165 {
2166 asyncResp->res.jsonValue["SparePartNumber"] =
2167 *sparePartNumber;
2168 }
2169 });
Ed Tanous002d39b2022-05-31 08:59:27 -07002170 }
2171 else if (interfaceName ==
2172 "xyz.openbmc_project.Inventory.Decorator.LocationCode")
2173 {
2174 getLocation(asyncResp, connectionName, path);
2175 }
2176 }
George Liue99073f2022-12-09 11:06:16 +08002177 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002178 });
2179
2180 BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/")
Ed Tanoused398212021-06-09 17:05:54 -07002181 .privileges(redfish::privileges::patchManager)
Ed Tanous45ca1b82022-03-25 13:07:27 -07002182 .methods(boost::beast::http::verb::patch)(
2183 [&app](const crow::Request& req,
2184 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
Carson Labrado3ba00072022-06-06 19:40:56 +00002185 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07002186 {
2187 return;
2188 }
2189 std::optional<nlohmann::json> oem;
2190 std::optional<nlohmann::json> links;
2191 std::optional<std::string> datetime;
2192
2193 if (!json_util::readJsonPatch(req, asyncResp->res, "Oem", oem,
2194 "DateTime", datetime, "Links", links))
2195 {
2196 return;
2197 }
2198
2199 if (oem)
2200 {
Gunnar Mills54dce7f2022-08-05 17:01:32 +00002201#ifdef BMCWEB_ENABLE_REDFISH_OEM_MANAGER_FAN_DATA
Ed Tanous002d39b2022-05-31 08:59:27 -07002202 std::optional<nlohmann::json> openbmc;
2203 if (!redfish::json_util::readJson(*oem, asyncResp->res, "OpenBmc",
2204 openbmc))
2205 {
Ed Tanous002d39b2022-05-31 08:59:27 -07002206 return;
2207 }
2208 if (openbmc)
2209 {
2210 std::optional<nlohmann::json> fan;
2211 if (!redfish::json_util::readJson(*openbmc, asyncResp->res,
2212 "Fan", fan))
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002213 {
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002214 return;
2215 }
Ed Tanous002d39b2022-05-31 08:59:27 -07002216 if (fan)
2217 {
2218 auto pid = std::make_shared<SetPIDValues>(asyncResp, *fan);
2219 pid->run();
2220 }
2221 }
Gunnar Mills54dce7f2022-08-05 17:01:32 +00002222#else
2223 messages::propertyUnknown(asyncResp->res, "Oem");
2224 return;
2225#endif
Ed Tanous002d39b2022-05-31 08:59:27 -07002226 }
2227 if (links)
2228 {
2229 std::optional<nlohmann::json> activeSoftwareImage;
2230 if (!redfish::json_util::readJson(*links, asyncResp->res,
2231 "ActiveSoftwareImage",
2232 activeSoftwareImage))
2233 {
2234 return;
2235 }
2236 if (activeSoftwareImage)
2237 {
2238 std::optional<std::string> odataId;
2239 if (!json_util::readJson(*activeSoftwareImage, asyncResp->res,
2240 "@odata.id", odataId))
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002241 {
Ed Tanous45ca1b82022-03-25 13:07:27 -07002242 return;
2243 }
2244
Ed Tanous002d39b2022-05-31 08:59:27 -07002245 if (odataId)
Ed Tanous45ca1b82022-03-25 13:07:27 -07002246 {
Ed Tanous002d39b2022-05-31 08:59:27 -07002247 setActiveFirmwareImage(asyncResp, *odataId);
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002248 }
Ed Tanous002d39b2022-05-31 08:59:27 -07002249 }
2250 }
2251 if (datetime)
2252 {
2253 setDateTime(asyncResp, std::move(*datetime));
2254 }
2255 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002256}
2257
2258inline void requestRoutesManagerCollection(App& app)
2259{
2260 BMCWEB_ROUTE(app, "/redfish/v1/Managers/")
Ed Tanoused398212021-06-09 17:05:54 -07002261 .privileges(redfish::privileges::getManagerCollection)
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002262 .methods(boost::beast::http::verb::get)(
Ed Tanous45ca1b82022-03-25 13:07:27 -07002263 [&app](const crow::Request& req,
2264 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
Carson Labrado3ba00072022-06-06 19:40:56 +00002265 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07002266 {
2267 return;
2268 }
2269 // Collections don't include the static data added by SubRoute
2270 // because it has a duplicate entry for members
2271 asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Managers";
2272 asyncResp->res.jsonValue["@odata.type"] =
2273 "#ManagerCollection.ManagerCollection";
2274 asyncResp->res.jsonValue["Name"] = "Manager Collection";
2275 asyncResp->res.jsonValue["Members@odata.count"] = 1;
2276 nlohmann::json::array_t members;
2277 nlohmann::json& bmc = members.emplace_back();
2278 bmc["@odata.id"] = "/redfish/v1/Managers/bmc";
2279 asyncResp->res.jsonValue["Members"] = std::move(members);
2280 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07002281}
Ed Tanous1abe55e2018-09-05 08:30:59 -07002282} // namespace redfish