1 /*
2 // Copyright (c) 2018 Intel Corporation
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //      http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 */
16 #pragma once
17 
18 #include "app.hpp"
19 #include "dbus_utility.hpp"
20 #include "health.hpp"
21 #include "query.hpp"
22 #include "redfish_util.hpp"
23 #include "registries/privilege_registry.hpp"
24 #include "utils/dbus_utils.hpp"
25 #include "utils/sw_utils.hpp"
26 #include "utils/systemd_utils.hpp"
27 #include "utils/time_utils.hpp"
28 
29 #include <boost/date_time.hpp>
30 #include <sdbusplus/asio/property.hpp>
31 #include <sdbusplus/unpack_properties.hpp>
32 
33 #include <algorithm>
34 #include <cstdint>
35 #include <memory>
36 #include <sstream>
37 #include <variant>
38 
39 namespace redfish
40 {
41 
42 /**
43  * Function reboots the BMC.
44  *
45  * @param[in] asyncResp - Shared pointer for completing asynchronous calls
46  */
47 inline void
48     doBMCGracefulRestart(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
49 {
50     const char* processName = "xyz.openbmc_project.State.BMC";
51     const char* objectPath = "/xyz/openbmc_project/state/bmc0";
52     const char* interfaceName = "xyz.openbmc_project.State.BMC";
53     const std::string& propertyValue =
54         "xyz.openbmc_project.State.BMC.Transition.Reboot";
55     const char* destProperty = "RequestedBMCTransition";
56 
57     // Create the D-Bus variant for D-Bus call.
58     dbus::utility::DbusVariantType dbusPropertyValue(propertyValue);
59 
60     crow::connections::systemBus->async_method_call(
61         [asyncResp](const boost::system::error_code ec) {
62         // Use "Set" method to set the property value.
63         if (ec)
64         {
65             BMCWEB_LOG_DEBUG << "[Set] Bad D-Bus request error: " << ec;
66             messages::internalError(asyncResp->res);
67             return;
68         }
69 
70         messages::success(asyncResp->res);
71         },
72         processName, objectPath, "org.freedesktop.DBus.Properties", "Set",
73         interfaceName, destProperty, dbusPropertyValue);
74 }
75 
76 inline void
77     doBMCForceRestart(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
78 {
79     const char* processName = "xyz.openbmc_project.State.BMC";
80     const char* objectPath = "/xyz/openbmc_project/state/bmc0";
81     const char* interfaceName = "xyz.openbmc_project.State.BMC";
82     const std::string& propertyValue =
83         "xyz.openbmc_project.State.BMC.Transition.HardReboot";
84     const char* destProperty = "RequestedBMCTransition";
85 
86     // Create the D-Bus variant for D-Bus call.
87     dbus::utility::DbusVariantType dbusPropertyValue(propertyValue);
88 
89     crow::connections::systemBus->async_method_call(
90         [asyncResp](const boost::system::error_code ec) {
91         // Use "Set" method to set the property value.
92         if (ec)
93         {
94             BMCWEB_LOG_DEBUG << "[Set] Bad D-Bus request error: " << ec;
95             messages::internalError(asyncResp->res);
96             return;
97         }
98 
99         messages::success(asyncResp->res);
100         },
101         processName, objectPath, "org.freedesktop.DBus.Properties", "Set",
102         interfaceName, destProperty, dbusPropertyValue);
103 }
104 
105 /**
106  * ManagerResetAction class supports the POST method for the Reset (reboot)
107  * action.
108  */
109 inline void requestRoutesManagerResetAction(App& app)
110 {
111     /**
112      * Function handles POST method request.
113      * Analyzes POST body before sending Reset (Reboot) request data to D-Bus.
114      * OpenBMC supports ResetType "GracefulRestart" and "ForceRestart".
115      */
116 
117     BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/Actions/Manager.Reset/")
118         .privileges(redfish::privileges::postManager)
119         .methods(boost::beast::http::verb::post)(
120             [&app](const crow::Request& req,
121                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
122         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
123         {
124             return;
125         }
126         BMCWEB_LOG_DEBUG << "Post Manager Reset.";
127 
128         std::string resetType;
129 
130         if (!json_util::readJsonAction(req, asyncResp->res, "ResetType",
131                                        resetType))
132         {
133             return;
134         }
135 
136         if (resetType == "GracefulRestart")
137         {
138             BMCWEB_LOG_DEBUG << "Proceeding with " << resetType;
139             doBMCGracefulRestart(asyncResp);
140             return;
141         }
142         if (resetType == "ForceRestart")
143         {
144             BMCWEB_LOG_DEBUG << "Proceeding with " << resetType;
145             doBMCForceRestart(asyncResp);
146             return;
147         }
148         BMCWEB_LOG_DEBUG << "Invalid property value for ResetType: "
149                          << resetType;
150         messages::actionParameterNotSupported(asyncResp->res, resetType,
151                                               "ResetType");
152 
153         return;
154         });
155 }
156 
157 /**
158  * ManagerResetToDefaultsAction class supports POST method for factory reset
159  * action.
160  */
161 inline void requestRoutesManagerResetToDefaultsAction(App& app)
162 {
163 
164     /**
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      */
175 
176     BMCWEB_ROUTE(app,
177                  "/redfish/v1/Managers/bmc/Actions/Manager.ResetToDefaults/")
178         .privileges(redfish::privileges::postManager)
179         .methods(boost::beast::http::verb::post)(
180             [&app](const crow::Request& req,
181                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
182         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
183         {
184             return;
185         }
186         BMCWEB_LOG_DEBUG << "Post ResetToDefaults.";
187 
188         std::string resetType;
189 
190         if (!json_util::readJsonAction(req, asyncResp->res,
191                                        "ResetToDefaultsType", resetType))
192         {
193             BMCWEB_LOG_DEBUG << "Missing property ResetToDefaultsType.";
194 
195             messages::actionParameterMissing(asyncResp->res, "ResetToDefaults",
196                                              "ResetToDefaultsType");
197             return;
198         }
199 
200         if (resetType != "ResetAll")
201         {
202             BMCWEB_LOG_DEBUG
203                 << "Invalid property value for ResetToDefaultsType: "
204                 << resetType;
205             messages::actionParameterNotSupported(asyncResp->res, resetType,
206                                                   "ResetToDefaultsType");
207             return;
208         }
209 
210         crow::connections::systemBus->async_method_call(
211             [asyncResp](const boost::system::error_code ec) {
212             if (ec)
213             {
214                 BMCWEB_LOG_DEBUG << "Failed to ResetToDefaults: " << ec;
215                 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         });
226 }
227 
228 /**
229  * ManagerResetActionInfo derived class for delivering Manager
230  * ResetType AllowableValues using ResetInfo schema.
231  */
232 inline void requestRoutesManagerResetActionInfo(App& app)
233 {
234     /**
235      * Functions triggers appropriate requests on DBus
236      */
237 
238     BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/ResetActionInfo/")
239         .privileges(redfish::privileges::getActionInfo)
240         .methods(boost::beast::http::verb::get)(
241             [&app](const crow::Request& req,
242                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
243         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
244         {
245             return;
246         }
247 
248         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";
258 
259         nlohmann::json::array_t allowableValues;
260         allowableValues.push_back("GracefulRestart");
261         allowableValues.push_back("ForceRestart");
262         parameter["AllowableValues"] = std::move(allowableValues);
263 
264         nlohmann::json::array_t parameters;
265         parameters.push_back(std::move(parameter));
266 
267         asyncResp->res.jsonValue["Parameters"] = std::move(parameters);
268         });
269 }
270 
271 static constexpr const char* objectManagerIface =
272     "org.freedesktop.DBus.ObjectManager";
273 static constexpr const char* pidConfigurationIface =
274     "xyz.openbmc_project.Configuration.Pid";
275 static constexpr const char* pidZoneConfigurationIface =
276     "xyz.openbmc_project.Configuration.Pid.Zone";
277 static constexpr const char* stepwiseConfigurationIface =
278     "xyz.openbmc_project.Configuration.Stepwise";
279 static constexpr const char* thermalModeIface =
280     "xyz.openbmc_project.Control.ThermalMode";
281 
282 inline 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)
287 {
288 
289     crow::connections::systemBus->async_method_call(
290         [asyncResp, currentProfile, supportedProfiles](
291             const boost::system::error_code ec,
292             const dbus::utility::ManagedObjectType& managedObj) {
293         if (ec)
294         {
295             BMCWEB_LOG_ERROR << ec;
296             asyncResp->res.jsonValue.clear();
297             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         }
329         BMCWEB_LOG_ERROR << "profile = " << currentProfile << " !";
330 
331         for (const auto& pathPair : managedObj)
332         {
333             for (const auto& intfPair : pathPair.second)
334             {
335                 if (intfPair.first != pidConfigurationIface &&
336                     intfPair.first != pidZoneConfigurationIface &&
337                     intfPair.first != stepwiseConfigurationIface)
338                 {
339                     continue;
340                 }
341 
342                 std::string name;
343 
344                 for (const std::pair<std::string,
345                                      dbus::utility::DbusVariantType>& propPair :
346                      intfPair.second)
347                 {
348                     if (propPair.first == "Name")
349                     {
350                         const std::string* namePtr =
351                             std::get_if<std::string>(&propPair.second);
352                         if (namePtr == nullptr)
353                         {
354                             BMCWEB_LOG_ERROR << "Pid Name Field illegal";
355                             messages::internalError(asyncResp->res);
356                             return;
357                         }
358                         name = *namePtr;
359                         dbus::utility::escapePathForDbus(name);
360                     }
361                     else if (propPair.first == "Profiles")
362                     {
363                         const std::vector<std::string>* profiles =
364                             std::get_if<std::vector<std::string>>(
365                                 &propPair.second);
366                         if (profiles == nullptr)
367                         {
368                             BMCWEB_LOG_ERROR << "Pid Profiles Field illegal";
369                             messages::internalError(asyncResp->res);
370                             return;
371                         }
372                         if (std::find(profiles->begin(), profiles->end(),
373                                       currentProfile) == profiles->end())
374                         {
375                             BMCWEB_LOG_INFO
376                                 << name << " not supported in current profile";
377                             continue;
378                         }
379                     }
380                 }
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")
389                     {
390                         classPtr = std::get_if<std::string>(&propPair.second);
391                     }
392                 }
393 
394                 if (intfPair.first == pidZoneConfigurationIface)
395                 {
396                     std::string chassis;
397                     if (!dbus::utility::getNthStringFromPath(pathPair.first.str,
398                                                              5, chassis))
399                     {
400                         chassis = "#IllegalValue";
401                     }
402                     nlohmann::json& zone = zones[name];
403                     zone["Chassis"] = {
404                         {"@odata.id", "/redfish/v1/Chassis/" + chassis}};
405                     zone["@odata.id"] =
406                         "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/FanZones/" +
407                         name;
408                     zone["@odata.type"] = "#OemManager.FanZone";
409                     config = &zone;
410                 }
411 
412                 else if (intfPair.first == stepwiseConfigurationIface)
413                 {
414                     if (classPtr == nullptr)
415                     {
416                         BMCWEB_LOG_ERROR << "Pid Class Field illegal";
417                         messages::internalError(asyncResp->res);
418                         return;
419                     }
420 
421                     nlohmann::json& controller = stepwise[name];
422                     config = &controller;
423 
424                     controller["@odata.id"] =
425                         "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/StepwiseControllers/" +
426                         name;
427                     controller["@odata.type"] =
428                         "#OemManager.StepwiseController";
429 
430                     controller["Direction"] = *classPtr;
431                 }
432 
433                 // pid and fans are off the same configuration
434                 else if (intfPair.first == pidConfigurationIface)
435                 {
436 
437                     if (classPtr == nullptr)
438                     {
439                         BMCWEB_LOG_ERROR << "Pid Class Field illegal";
440                         messages::internalError(asyncResp->res);
441                         return;
442                     }
443                     bool isFan = *classPtr == "fan";
444                     nlohmann::json& element = isFan ? fans[name] : pids[name];
445                     config = &element;
446                     if (isFan)
447                     {
448                         element["@odata.id"] =
449                             "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/FanControllers/" +
450                             name;
451                         element["@odata.type"] = "#OemManager.FanController";
452                     }
453                     else
454                     {
455                         element["@odata.id"] =
456                             "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/PidControllers/" +
457                             name;
458                         element["@odata.type"] = "#OemManager.PidController";
459                     }
460                 }
461                 else
462                 {
463                     BMCWEB_LOG_ERROR << "Unexpected configuration";
464                     messages::internalError(asyncResp->res);
465                     return;
466                 }
467 
468                 // used for making maps out of 2 vectors
469                 const std::vector<double>* keys = nullptr;
470                 const std::vector<double>* values = nullptr;
471 
472                 for (const auto& propertyPair : intfPair.second)
473                 {
474                     if (propertyPair.first == "Type" ||
475                         propertyPair.first == "Class" ||
476                         propertyPair.first == "Name")
477                     {
478                         continue;
479                     }
480 
481                     // zones
482                     if (intfPair.first == pidZoneConfigurationIface)
483                     {
484                         const double* ptr =
485                             std::get_if<double>(&propertyPair.second);
486                         if (ptr == nullptr)
487                         {
488                             BMCWEB_LOG_ERROR << "Field Illegal "
489                                              << propertyPair.first;
490                             messages::internalError(asyncResp->res);
491                             return;
492                         }
493                         (*config)[propertyPair.first] = *ptr;
494                     }
495 
496                     if (intfPair.first == stepwiseConfigurationIface)
497                     {
498                         if (propertyPair.first == "Reading" ||
499                             propertyPair.first == "Output")
500                         {
501                             const std::vector<double>* ptr =
502                                 std::get_if<std::vector<double>>(
503                                     &propertyPair.second);
504 
505                             if (ptr == nullptr)
506                             {
507                                 BMCWEB_LOG_ERROR << "Field Illegal "
508                                                  << propertyPair.first;
509                                 messages::internalError(asyncResp->res);
510                                 return;
511                             }
512 
513                             if (propertyPair.first == "Reading")
514                             {
515                                 keys = ptr;
516                             }
517                             else
518                             {
519                                 values = ptr;
520                             }
521                             if (keys != nullptr && values != nullptr)
522                             {
523                                 if (keys->size() != values->size())
524                                 {
525                                     BMCWEB_LOG_ERROR
526                                         << "Reading and Output size don't match ";
527                                     messages::internalError(asyncResp->res);
528                                     return;
529                                 }
530                                 nlohmann::json& steps = (*config)["Steps"];
531                                 steps = nlohmann::json::array();
532                                 for (size_t ii = 0; ii < keys->size(); ii++)
533                                 {
534                                     nlohmann::json::object_t step;
535                                     step["Target"] = (*keys)[ii];
536                                     step["Output"] = (*values)[ii];
537                                     steps.push_back(std::move(step));
538                                 }
539                             }
540                         }
541                         if (propertyPair.first == "NegativeHysteresis" ||
542                             propertyPair.first == "PositiveHysteresis")
543                         {
544                             const double* ptr =
545                                 std::get_if<double>(&propertyPair.second);
546                             if (ptr == nullptr)
547                             {
548                                 BMCWEB_LOG_ERROR << "Field Illegal "
549                                                  << propertyPair.first;
550                                 messages::internalError(asyncResp->res);
551                                 return;
552                             }
553                             (*config)[propertyPair.first] = *ptr;
554                         }
555                     }
556 
557                     // pid and fans are off the same configuration
558                     if (intfPair.first == pidConfigurationIface ||
559                         intfPair.first == stepwiseConfigurationIface)
560                     {
561 
562                         if (propertyPair.first == "Zones")
563                         {
564                             const std::vector<std::string>* inputs =
565                                 std::get_if<std::vector<std::string>>(
566                                     &propertyPair.second);
567 
568                             if (inputs == nullptr)
569                             {
570                                 BMCWEB_LOG_ERROR << "Zones Pid Field Illegal";
571                                 messages::internalError(asyncResp->res);
572                                 return;
573                             }
574                             auto& data = (*config)[propertyPair.first];
575                             data = nlohmann::json::array();
576                             for (std::string itemCopy : *inputs)
577                             {
578                                 dbus::utility::escapePathForDbus(itemCopy);
579                                 nlohmann::json::object_t input;
580                                 input["@odata.id"] =
581                                     "/redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/FanZones/" +
582                                     itemCopy;
583                                 data.push_back(std::move(input));
584                             }
585                         }
586                         // todo(james): may never happen, but this
587                         // assumes configuration data referenced in the
588                         // PID config is provided by the same daemon, we
589                         // could add another loop to cover all cases,
590                         // but I'm okay kicking this can down the road a
591                         // bit
592 
593                         else if (propertyPair.first == "Inputs" ||
594                                  propertyPair.first == "Outputs")
595                         {
596                             auto& data = (*config)[propertyPair.first];
597                             const std::vector<std::string>* inputs =
598                                 std::get_if<std::vector<std::string>>(
599                                     &propertyPair.second);
600 
601                             if (inputs == nullptr)
602                             {
603                                 BMCWEB_LOG_ERROR << "Field Illegal "
604                                                  << propertyPair.first;
605                                 messages::internalError(asyncResp->res);
606                                 return;
607                             }
608                             data = *inputs;
609                         }
610                         else if (propertyPair.first == "SetPointOffset")
611                         {
612                             const std::string* ptr =
613                                 std::get_if<std::string>(&propertyPair.second);
614 
615                             if (ptr == nullptr)
616                             {
617                                 BMCWEB_LOG_ERROR << "Field Illegal "
618                                                  << propertyPair.first;
619                                 messages::internalError(asyncResp->res);
620                                 return;
621                             }
622                             // translate from dbus to redfish
623                             if (*ptr == "WarningHigh")
624                             {
625                                 (*config)["SetPointOffset"] =
626                                     "UpperThresholdNonCritical";
627                             }
628                             else if (*ptr == "WarningLow")
629                             {
630                                 (*config)["SetPointOffset"] =
631                                     "LowerThresholdNonCritical";
632                             }
633                             else if (*ptr == "CriticalHigh")
634                             {
635                                 (*config)["SetPointOffset"] =
636                                     "UpperThresholdCritical";
637                             }
638                             else if (*ptr == "CriticalLow")
639                             {
640                                 (*config)["SetPointOffset"] =
641                                     "LowerThresholdCritical";
642                             }
643                             else
644                             {
645                                 BMCWEB_LOG_ERROR << "Value Illegal " << *ptr;
646                                 messages::internalError(asyncResp->res);
647                                 return;
648                             }
649                         }
650                         // doubles
651                         else if (propertyPair.first == "FFGainCoefficient" ||
652                                  propertyPair.first == "FFOffCoefficient" ||
653                                  propertyPair.first == "ICoefficient" ||
654                                  propertyPair.first == "ILimitMax" ||
655                                  propertyPair.first == "ILimitMin" ||
656                                  propertyPair.first == "PositiveHysteresis" ||
657                                  propertyPair.first == "NegativeHysteresis" ||
658                                  propertyPair.first == "OutLimitMax" ||
659                                  propertyPair.first == "OutLimitMin" ||
660                                  propertyPair.first == "PCoefficient" ||
661                                  propertyPair.first == "SetPoint" ||
662                                  propertyPair.first == "SlewNeg" ||
663                                  propertyPair.first == "SlewPos")
664                         {
665                             const double* ptr =
666                                 std::get_if<double>(&propertyPair.second);
667                             if (ptr == nullptr)
668                             {
669                                 BMCWEB_LOG_ERROR << "Field Illegal "
670                                                  << propertyPair.first;
671                                 messages::internalError(asyncResp->res);
672                                 return;
673                             }
674                             (*config)[propertyPair.first] = *ptr;
675                         }
676                     }
677                 }
678             }
679         }
680         },
681         connection, path, objectManagerIface, "GetManagedObjects");
682 }
683 
684 enum class CreatePIDRet
685 {
686     fail,
687     del,
688     patch
689 };
690 
691 inline bool
692     getZonesFromJsonReq(const std::shared_ptr<bmcweb::AsyncResp>& response,
693                         std::vector<nlohmann::json>& config,
694                         std::vector<std::string>& zones)
695 {
696     if (config.empty())
697     {
698         BMCWEB_LOG_ERROR << "Empty Zones";
699         messages::propertyValueFormatError(response->res, "[]", "Zones");
700         return false;
701     }
702     for (auto& odata : config)
703     {
704         std::string path;
705         if (!redfish::json_util::readJson(odata, response->res, "@odata.id",
706                                           path))
707         {
708             return false;
709         }
710         std::string input;
711 
712         // 8 below comes from
713         // /redfish/v1/Managers/bmc#/Oem/OpenBmc/Fan/FanZones/Left
714         //     0    1     2      3    4    5      6     7      8
715         if (!dbus::utility::getNthStringFromPath(path, 8, input))
716         {
717             BMCWEB_LOG_ERROR << "Got invalid path " << path;
718             BMCWEB_LOG_ERROR << "Illegal Type Zones";
719             messages::propertyValueFormatError(response->res, odata.dump(),
720                                                "Zones");
721             return false;
722         }
723         std::replace(input.begin(), input.end(), '_', ' ');
724         zones.emplace_back(std::move(input));
725     }
726     return true;
727 }
728 
729 inline const dbus::utility::ManagedObjectType::value_type*
730     findChassis(const dbus::utility::ManagedObjectType& managedObj,
731                 const std::string& value, std::string& chassis)
732 {
733     BMCWEB_LOG_DEBUG << "Find Chassis: " << value << "\n";
734 
735     std::string escaped = value;
736     std::replace(escaped.begin(), escaped.end(), '_', ' ');
737     escaped = "/" + escaped;
738     auto it = std::find_if(managedObj.begin(), managedObj.end(),
739                            [&escaped](const auto& obj) {
740         if (boost::algorithm::ends_with(obj.first.str, escaped))
741         {
742             BMCWEB_LOG_DEBUG << "Matched " << obj.first.str << "\n";
743             return true;
744         }
745         return false;
746     });
747 
748     if (it == managedObj.end())
749     {
750         return nullptr;
751     }
752     // 5 comes from <chassis-name> being the 5th element
753     // /xyz/openbmc_project/inventory/system/chassis/<chassis-name>
754     if (dbus::utility::getNthStringFromPath(it->first.str, 5, chassis))
755     {
756         return &(*it);
757     }
758 
759     return nullptr;
760 }
761 
762 inline CreatePIDRet createPidInterface(
763     const std::shared_ptr<bmcweb::AsyncResp>& response, const std::string& type,
764     const nlohmann::json::iterator& it, const std::string& path,
765     const dbus::utility::ManagedObjectType& managedObj, bool createNewObject,
766     dbus::utility::DBusPropertiesMap& output, std::string& chassis,
767     const std::string& profile)
768 {
769 
770     // common deleter
771     if (it.value() == nullptr)
772     {
773         std::string iface;
774         if (type == "PidControllers" || type == "FanControllers")
775         {
776             iface = pidConfigurationIface;
777         }
778         else if (type == "FanZones")
779         {
780             iface = pidZoneConfigurationIface;
781         }
782         else if (type == "StepwiseControllers")
783         {
784             iface = stepwiseConfigurationIface;
785         }
786         else
787         {
788             BMCWEB_LOG_ERROR << "Illegal Type " << type;
789             messages::propertyUnknown(response->res, type);
790             return CreatePIDRet::fail;
791         }
792 
793         BMCWEB_LOG_DEBUG << "del " << path << " " << iface << "\n";
794         // delete interface
795         crow::connections::systemBus->async_method_call(
796             [response, path](const boost::system::error_code ec) {
797             if (ec)
798             {
799                 BMCWEB_LOG_ERROR << "Error patching " << path << ": " << ec;
800                 messages::internalError(response->res);
801                 return;
802             }
803             messages::success(response->res);
804             },
805             "xyz.openbmc_project.EntityManager", path, iface, "Delete");
806         return CreatePIDRet::del;
807     }
808 
809     const dbus::utility::ManagedObjectType::value_type* managedItem = nullptr;
810     if (!createNewObject)
811     {
812         // if we aren't creating a new object, we should be able to find it on
813         // d-bus
814         managedItem = findChassis(managedObj, it.key(), chassis);
815         if (managedItem == nullptr)
816         {
817             BMCWEB_LOG_ERROR << "Failed to get chassis from config patch";
818             messages::invalidObject(response->res,
819                                     crow::utility::urlFromPieces(
820                                         "redfish", "v1", "Chassis", chassis));
821             return CreatePIDRet::fail;
822         }
823     }
824 
825     if (!profile.empty() &&
826         (type == "PidControllers" || type == "FanControllers" ||
827          type == "StepwiseControllers"))
828     {
829         if (managedItem == nullptr)
830         {
831             output.emplace_back("Profiles", std::vector<std::string>{profile});
832         }
833         else
834         {
835             std::string interface;
836             if (type == "StepwiseControllers")
837             {
838                 interface = stepwiseConfigurationIface;
839             }
840             else
841             {
842                 interface = pidConfigurationIface;
843             }
844             bool ifaceFound = false;
845             for (const auto& iface : managedItem->second)
846             {
847                 if (iface.first == interface)
848                 {
849                     ifaceFound = true;
850                     for (const auto& prop : iface.second)
851                     {
852                         if (prop.first == "Profiles")
853                         {
854                             const std::vector<std::string>* curProfiles =
855                                 std::get_if<std::vector<std::string>>(
856                                     &(prop.second));
857                             if (curProfiles == nullptr)
858                             {
859                                 BMCWEB_LOG_ERROR
860                                     << "Illegal profiles in managed object";
861                                 messages::internalError(response->res);
862                                 return CreatePIDRet::fail;
863                             }
864                             if (std::find(curProfiles->begin(),
865                                           curProfiles->end(),
866                                           profile) == curProfiles->end())
867                             {
868                                 std::vector<std::string> newProfiles =
869                                     *curProfiles;
870                                 newProfiles.push_back(profile);
871                                 output.emplace_back("Profiles", newProfiles);
872                             }
873                         }
874                     }
875                 }
876             }
877 
878             if (!ifaceFound)
879             {
880                 BMCWEB_LOG_ERROR
881                     << "Failed to find interface in managed object";
882                 messages::internalError(response->res);
883                 return CreatePIDRet::fail;
884             }
885         }
886     }
887 
888     if (type == "PidControllers" || type == "FanControllers")
889     {
890         if (createNewObject)
891         {
892             output.emplace_back("Class",
893                                 type == "PidControllers" ? "temp" : "fan");
894             output.emplace_back("Type", "Pid");
895         }
896 
897         std::optional<std::vector<nlohmann::json>> zones;
898         std::optional<std::vector<std::string>> inputs;
899         std::optional<std::vector<std::string>> outputs;
900         std::map<std::string, std::optional<double>> doubles;
901         std::optional<std::string> setpointOffset;
902         if (!redfish::json_util::readJson(
903                 it.value(), response->res, "Inputs", inputs, "Outputs", outputs,
904                 "Zones", zones, "FFGainCoefficient",
905                 doubles["FFGainCoefficient"], "FFOffCoefficient",
906                 doubles["FFOffCoefficient"], "ICoefficient",
907                 doubles["ICoefficient"], "ILimitMax", doubles["ILimitMax"],
908                 "ILimitMin", doubles["ILimitMin"], "OutLimitMax",
909                 doubles["OutLimitMax"], "OutLimitMin", doubles["OutLimitMin"],
910                 "PCoefficient", doubles["PCoefficient"], "SetPoint",
911                 doubles["SetPoint"], "SetPointOffset", setpointOffset,
912                 "SlewNeg", doubles["SlewNeg"], "SlewPos", doubles["SlewPos"],
913                 "PositiveHysteresis", doubles["PositiveHysteresis"],
914                 "NegativeHysteresis", doubles["NegativeHysteresis"]))
915         {
916             BMCWEB_LOG_ERROR
917                 << "Illegal Property "
918                 << it.value().dump(2, ' ', true,
919                                    nlohmann::json::error_handler_t::replace);
920             return CreatePIDRet::fail;
921         }
922         if (zones)
923         {
924             std::vector<std::string> zonesStr;
925             if (!getZonesFromJsonReq(response, *zones, zonesStr))
926             {
927                 BMCWEB_LOG_ERROR << "Illegal Zones";
928                 return CreatePIDRet::fail;
929             }
930             if (chassis.empty() &&
931                 findChassis(managedObj, zonesStr[0], chassis) == nullptr)
932             {
933                 BMCWEB_LOG_ERROR << "Failed to get chassis from config patch";
934                 messages::invalidObject(
935                     response->res, crow::utility::urlFromPieces(
936                                        "redfish", "v1", "Chassis", chassis));
937                 return CreatePIDRet::fail;
938             }
939             output.emplace_back("Zones", std::move(zonesStr));
940         }
941         if (inputs || outputs)
942         {
943             std::array<
944                 std::reference_wrapper<std::optional<std::vector<std::string>>>,
945                 2>
946                 containers = {inputs, outputs};
947             size_t index = 0;
948             for (std::optional<std::vector<std::string>>& container :
949                  containers)
950             {
951                 if (!container)
952                 {
953                     index++;
954                     continue;
955                 }
956                 for (std::string& value : *container)
957                 {
958                     std::replace(value.begin(), value.end(), '_', ' ');
959                 }
960                 std::string key;
961                 if (index == 0)
962                 {
963                     key = "Inputs";
964                 }
965                 else
966                 {
967                     key = "Outputs";
968                 }
969                 output.emplace_back(key, *container);
970                 index++;
971             }
972         }
973 
974         if (setpointOffset)
975         {
976             // translate between redfish and dbus names
977             if (*setpointOffset == "UpperThresholdNonCritical")
978             {
979                 output.emplace_back("SetPointOffset", "WarningLow");
980             }
981             else if (*setpointOffset == "LowerThresholdNonCritical")
982             {
983                 output.emplace_back("SetPointOffset", "WarningHigh");
984             }
985             else if (*setpointOffset == "LowerThresholdCritical")
986             {
987                 output.emplace_back("SetPointOffset", "CriticalLow");
988             }
989             else if (*setpointOffset == "UpperThresholdCritical")
990             {
991                 output.emplace_back("SetPointOffset", "CriticalHigh");
992             }
993             else
994             {
995                 BMCWEB_LOG_ERROR << "Invalid setpointoffset "
996                                  << *setpointOffset;
997                 messages::propertyValueNotInList(response->res, it.key(),
998                                                  "SetPointOffset");
999                 return CreatePIDRet::fail;
1000             }
1001         }
1002 
1003         // doubles
1004         for (const auto& pairs : doubles)
1005         {
1006             if (!pairs.second)
1007             {
1008                 continue;
1009             }
1010             BMCWEB_LOG_DEBUG << pairs.first << " = " << *pairs.second;
1011             output.emplace_back(pairs.first, *pairs.second);
1012         }
1013     }
1014 
1015     else if (type == "FanZones")
1016     {
1017         output.emplace_back("Type", "Pid.Zone");
1018 
1019         std::optional<nlohmann::json> chassisContainer;
1020         std::optional<double> failSafePercent;
1021         std::optional<double> minThermalOutput;
1022         if (!redfish::json_util::readJson(it.value(), response->res, "Chassis",
1023                                           chassisContainer, "FailSafePercent",
1024                                           failSafePercent, "MinThermalOutput",
1025                                           minThermalOutput))
1026         {
1027             BMCWEB_LOG_ERROR
1028                 << "Illegal Property "
1029                 << it.value().dump(2, ' ', true,
1030                                    nlohmann::json::error_handler_t::replace);
1031             return CreatePIDRet::fail;
1032         }
1033 
1034         if (chassisContainer)
1035         {
1036 
1037             std::string chassisId;
1038             if (!redfish::json_util::readJson(*chassisContainer, response->res,
1039                                               "@odata.id", chassisId))
1040             {
1041                 BMCWEB_LOG_ERROR
1042                     << "Illegal Property "
1043                     << chassisContainer->dump(
1044                            2, ' ', true,
1045                            nlohmann::json::error_handler_t::replace);
1046                 return CreatePIDRet::fail;
1047             }
1048 
1049             // /redfish/v1/chassis/chassis_name/
1050             if (!dbus::utility::getNthStringFromPath(chassisId, 3, chassis))
1051             {
1052                 BMCWEB_LOG_ERROR << "Got invalid path " << chassisId;
1053                 messages::invalidObject(
1054                     response->res, crow::utility::urlFromPieces(
1055                                        "redfish", "v1", "Chassis", chassisId));
1056                 return CreatePIDRet::fail;
1057             }
1058         }
1059         if (minThermalOutput)
1060         {
1061             output.emplace_back("MinThermalOutput", *minThermalOutput);
1062         }
1063         if (failSafePercent)
1064         {
1065             output.emplace_back("FailSafePercent", *failSafePercent);
1066         }
1067     }
1068     else if (type == "StepwiseControllers")
1069     {
1070         output.emplace_back("Type", "Stepwise");
1071 
1072         std::optional<std::vector<nlohmann::json>> zones;
1073         std::optional<std::vector<nlohmann::json>> steps;
1074         std::optional<std::vector<std::string>> inputs;
1075         std::optional<double> positiveHysteresis;
1076         std::optional<double> negativeHysteresis;
1077         std::optional<std::string> direction; // upper clipping curve vs lower
1078         if (!redfish::json_util::readJson(
1079                 it.value(), response->res, "Zones", zones, "Steps", steps,
1080                 "Inputs", inputs, "PositiveHysteresis", positiveHysteresis,
1081                 "NegativeHysteresis", negativeHysteresis, "Direction",
1082                 direction))
1083         {
1084             BMCWEB_LOG_ERROR
1085                 << "Illegal Property "
1086                 << it.value().dump(2, ' ', true,
1087                                    nlohmann::json::error_handler_t::replace);
1088             return CreatePIDRet::fail;
1089         }
1090 
1091         if (zones)
1092         {
1093             std::vector<std::string> zonesStrs;
1094             if (!getZonesFromJsonReq(response, *zones, zonesStrs))
1095             {
1096                 BMCWEB_LOG_ERROR << "Illegal Zones";
1097                 return CreatePIDRet::fail;
1098             }
1099             if (chassis.empty() &&
1100                 findChassis(managedObj, zonesStrs[0], chassis) == nullptr)
1101             {
1102                 BMCWEB_LOG_ERROR << "Failed to get chassis from config patch";
1103                 messages::invalidObject(
1104                     response->res, crow::utility::urlFromPieces(
1105                                        "redfish", "v1", "Chassis", chassis));
1106                 return CreatePIDRet::fail;
1107             }
1108             output.emplace_back("Zones", std::move(zonesStrs));
1109         }
1110         if (steps)
1111         {
1112             std::vector<double> readings;
1113             std::vector<double> outputs;
1114             for (auto& step : *steps)
1115             {
1116                 double target = 0.0;
1117                 double out = 0.0;
1118 
1119                 if (!redfish::json_util::readJson(step, response->res, "Target",
1120                                                   target, "Output", out))
1121                 {
1122                     BMCWEB_LOG_ERROR
1123                         << "Illegal Property "
1124                         << it.value().dump(
1125                                2, ' ', true,
1126                                nlohmann::json::error_handler_t::replace);
1127                     return CreatePIDRet::fail;
1128                 }
1129                 readings.emplace_back(target);
1130                 outputs.emplace_back(out);
1131             }
1132             output.emplace_back("Reading", std::move(readings));
1133             output.emplace_back("Output", std::move(outputs));
1134         }
1135         if (inputs)
1136         {
1137             for (std::string& value : *inputs)
1138             {
1139 
1140                 std::replace(value.begin(), value.end(), '_', ' ');
1141             }
1142             output.emplace_back("Inputs", std::move(*inputs));
1143         }
1144         if (negativeHysteresis)
1145         {
1146             output.emplace_back("NegativeHysteresis", *negativeHysteresis);
1147         }
1148         if (positiveHysteresis)
1149         {
1150             output.emplace_back("PositiveHysteresis", *positiveHysteresis);
1151         }
1152         if (direction)
1153         {
1154             constexpr const std::array<const char*, 2> allowedDirections = {
1155                 "Ceiling", "Floor"};
1156             if (std::find(allowedDirections.begin(), allowedDirections.end(),
1157                           *direction) == allowedDirections.end())
1158             {
1159                 messages::propertyValueTypeError(response->res, "Direction",
1160                                                  *direction);
1161                 return CreatePIDRet::fail;
1162             }
1163             output.emplace_back("Class", *direction);
1164         }
1165     }
1166     else
1167     {
1168         BMCWEB_LOG_ERROR << "Illegal Type " << type;
1169         messages::propertyUnknown(response->res, type);
1170         return CreatePIDRet::fail;
1171     }
1172     return CreatePIDRet::patch;
1173 }
1174 struct GetPIDValues : std::enable_shared_from_this<GetPIDValues>
1175 {
1176 
1177     explicit GetPIDValues(
1178         const std::shared_ptr<bmcweb::AsyncResp>& asyncRespIn) :
1179         asyncResp(asyncRespIn)
1180 
1181     {}
1182 
1183     void run()
1184     {
1185         std::shared_ptr<GetPIDValues> self = shared_from_this();
1186 
1187         // get all configurations
1188         crow::connections::systemBus->async_method_call(
1189             [self](
1190                 const boost::system::error_code ec,
1191                 const dbus::utility::MapperGetSubTreeResponse& subtreeLocal) {
1192             if (ec)
1193             {
1194                 BMCWEB_LOG_ERROR << ec;
1195                 messages::internalError(self->asyncResp->res);
1196                 return;
1197             }
1198             self->subtree = subtreeLocal;
1199             },
1200             "xyz.openbmc_project.ObjectMapper",
1201             "/xyz/openbmc_project/object_mapper",
1202             "xyz.openbmc_project.ObjectMapper", "GetSubTree", "/", 0,
1203             std::array<const char*, 4>{
1204                 pidConfigurationIface, pidZoneConfigurationIface,
1205                 objectManagerIface, stepwiseConfigurationIface});
1206 
1207         // at the same time get the selected profile
1208         crow::connections::systemBus->async_method_call(
1209             [self](
1210                 const boost::system::error_code ec,
1211                 const dbus::utility::MapperGetSubTreeResponse& subtreeLocal) {
1212             if (ec || subtreeLocal.empty())
1213             {
1214                 return;
1215             }
1216             if (subtreeLocal[0].second.size() != 1)
1217             {
1218                 // invalid mapper response, should never happen
1219                 BMCWEB_LOG_ERROR << "GetPIDValues: Mapper Error";
1220                 messages::internalError(self->asyncResp->res);
1221                 return;
1222             }
1223 
1224             const std::string& path = subtreeLocal[0].first;
1225             const std::string& owner = subtreeLocal[0].second[0].first;
1226 
1227             sdbusplus::asio::getAllProperties(
1228                 *crow::connections::systemBus, owner, path, thermalModeIface,
1229                 [path, owner,
1230                  self](const boost::system::error_code ec2,
1231                        const dbus::utility::DBusPropertiesMap& resp) {
1232                 if (ec2)
1233                 {
1234                     BMCWEB_LOG_ERROR
1235                         << "GetPIDValues: Can't get thermalModeIface " << path;
1236                     messages::internalError(self->asyncResp->res);
1237                     return;
1238                 }
1239 
1240                 const std::string* current = nullptr;
1241                 const std::vector<std::string>* supported = nullptr;
1242 
1243                 const bool success = sdbusplus::unpackPropertiesNoThrow(
1244                     dbus_utils::UnpackErrorPrinter(), resp, "Current", current,
1245                     "Supported", supported);
1246 
1247                 if (!success)
1248                 {
1249                     messages::internalError(self->asyncResp->res);
1250                     return;
1251                 }
1252 
1253                 if (current == nullptr || supported == nullptr)
1254                 {
1255                     BMCWEB_LOG_ERROR
1256                         << "GetPIDValues: thermal mode iface invalid " << path;
1257                     messages::internalError(self->asyncResp->res);
1258                     return;
1259                 }
1260                 self->currentProfile = *current;
1261                 self->supportedProfiles = *supported;
1262                 });
1263             },
1264             "xyz.openbmc_project.ObjectMapper",
1265             "/xyz/openbmc_project/object_mapper",
1266             "xyz.openbmc_project.ObjectMapper", "GetSubTree", "/", 0,
1267             std::array<const char*, 1>{thermalModeIface});
1268     }
1269 
1270     ~GetPIDValues()
1271     {
1272         if (asyncResp->res.result() != boost::beast::http::status::ok)
1273         {
1274             return;
1275         }
1276         // create map of <connection, path to objMgr>>
1277         boost::container::flat_map<std::string, std::string> objectMgrPaths;
1278         boost::container::flat_set<std::string> calledConnections;
1279         for (const auto& pathGroup : subtree)
1280         {
1281             for (const auto& connectionGroup : pathGroup.second)
1282             {
1283                 auto findConnection =
1284                     calledConnections.find(connectionGroup.first);
1285                 if (findConnection != calledConnections.end())
1286                 {
1287                     break;
1288                 }
1289                 for (const std::string& interface : connectionGroup.second)
1290                 {
1291                     if (interface == objectManagerIface)
1292                     {
1293                         objectMgrPaths[connectionGroup.first] = pathGroup.first;
1294                     }
1295                     // this list is alphabetical, so we
1296                     // should have found the objMgr by now
1297                     if (interface == pidConfigurationIface ||
1298                         interface == pidZoneConfigurationIface ||
1299                         interface == stepwiseConfigurationIface)
1300                     {
1301                         auto findObjMgr =
1302                             objectMgrPaths.find(connectionGroup.first);
1303                         if (findObjMgr == objectMgrPaths.end())
1304                         {
1305                             BMCWEB_LOG_DEBUG << connectionGroup.first
1306                                              << "Has no Object Manager";
1307                             continue;
1308                         }
1309 
1310                         calledConnections.insert(connectionGroup.first);
1311 
1312                         asyncPopulatePid(findObjMgr->first, findObjMgr->second,
1313                                          currentProfile, supportedProfiles,
1314                                          asyncResp);
1315                         break;
1316                     }
1317                 }
1318             }
1319         }
1320     }
1321 
1322     GetPIDValues(const GetPIDValues&) = delete;
1323     GetPIDValues(GetPIDValues&&) = delete;
1324     GetPIDValues& operator=(const GetPIDValues&) = delete;
1325     GetPIDValues& operator=(GetPIDValues&&) = delete;
1326 
1327     std::vector<std::string> supportedProfiles;
1328     std::string currentProfile;
1329     dbus::utility::MapperGetSubTreeResponse subtree;
1330     std::shared_ptr<bmcweb::AsyncResp> asyncResp;
1331 };
1332 
1333 struct SetPIDValues : std::enable_shared_from_this<SetPIDValues>
1334 {
1335 
1336     SetPIDValues(const std::shared_ptr<bmcweb::AsyncResp>& asyncRespIn,
1337                  nlohmann::json& data) :
1338         asyncResp(asyncRespIn)
1339     {
1340 
1341         std::optional<nlohmann::json> pidControllers;
1342         std::optional<nlohmann::json> fanControllers;
1343         std::optional<nlohmann::json> fanZones;
1344         std::optional<nlohmann::json> stepwiseControllers;
1345 
1346         if (!redfish::json_util::readJson(
1347                 data, asyncResp->res, "PidControllers", pidControllers,
1348                 "FanControllers", fanControllers, "FanZones", fanZones,
1349                 "StepwiseControllers", stepwiseControllers, "Profile", profile))
1350         {
1351             BMCWEB_LOG_ERROR
1352                 << "Illegal Property "
1353                 << data.dump(2, ' ', true,
1354                              nlohmann::json::error_handler_t::replace);
1355             return;
1356         }
1357         configuration.emplace_back("PidControllers", std::move(pidControllers));
1358         configuration.emplace_back("FanControllers", std::move(fanControllers));
1359         configuration.emplace_back("FanZones", std::move(fanZones));
1360         configuration.emplace_back("StepwiseControllers",
1361                                    std::move(stepwiseControllers));
1362     }
1363 
1364     SetPIDValues(const SetPIDValues&) = delete;
1365     SetPIDValues(SetPIDValues&&) = delete;
1366     SetPIDValues& operator=(const SetPIDValues&) = delete;
1367     SetPIDValues& operator=(SetPIDValues&&) = delete;
1368 
1369     void run()
1370     {
1371         if (asyncResp->res.result() != boost::beast::http::status::ok)
1372         {
1373             return;
1374         }
1375 
1376         std::shared_ptr<SetPIDValues> self = shared_from_this();
1377 
1378         // todo(james): might make sense to do a mapper call here if this
1379         // interface gets more traction
1380         crow::connections::systemBus->async_method_call(
1381             [self](const boost::system::error_code ec,
1382                    const dbus::utility::ManagedObjectType& mObj) {
1383             if (ec)
1384             {
1385                 BMCWEB_LOG_ERROR << "Error communicating to Entity Manager";
1386                 messages::internalError(self->asyncResp->res);
1387                 return;
1388             }
1389             const std::array<const char*, 3> configurations = {
1390                 pidConfigurationIface, pidZoneConfigurationIface,
1391                 stepwiseConfigurationIface};
1392 
1393             for (const auto& [path, object] : mObj)
1394             {
1395                 for (const auto& [interface, _] : object)
1396                 {
1397                     if (std::find(configurations.begin(), configurations.end(),
1398                                   interface) != configurations.end())
1399                     {
1400                         self->objectCount++;
1401                         break;
1402                     }
1403                 }
1404             }
1405             self->managedObj = mObj;
1406             },
1407             "xyz.openbmc_project.EntityManager", "/", objectManagerIface,
1408             "GetManagedObjects");
1409 
1410         // at the same time get the profile information
1411         crow::connections::systemBus->async_method_call(
1412             [self](const boost::system::error_code ec,
1413                    const dbus::utility::MapperGetSubTreeResponse& subtree) {
1414             if (ec || subtree.empty())
1415             {
1416                 return;
1417             }
1418             if (subtree[0].second.empty())
1419             {
1420                 // invalid mapper response, should never happen
1421                 BMCWEB_LOG_ERROR << "SetPIDValues: Mapper Error";
1422                 messages::internalError(self->asyncResp->res);
1423                 return;
1424             }
1425 
1426             const std::string& path = subtree[0].first;
1427             const std::string& owner = subtree[0].second[0].first;
1428             sdbusplus::asio::getAllProperties(
1429                 *crow::connections::systemBus, owner, path, thermalModeIface,
1430                 [self, path, owner](const boost::system::error_code ec2,
1431                                     const dbus::utility::DBusPropertiesMap& r) {
1432                 if (ec2)
1433                 {
1434                     BMCWEB_LOG_ERROR
1435                         << "SetPIDValues: Can't get thermalModeIface " << path;
1436                     messages::internalError(self->asyncResp->res);
1437                     return;
1438                 }
1439                 const std::string* current = nullptr;
1440                 const std::vector<std::string>* supported = nullptr;
1441 
1442                 const bool success = sdbusplus::unpackPropertiesNoThrow(
1443                     dbus_utils::UnpackErrorPrinter(), r, "Current", current,
1444                     "Supported", supported);
1445 
1446                 if (!success)
1447                 {
1448                     messages::internalError(self->asyncResp->res);
1449                     return;
1450                 }
1451 
1452                 if (current == nullptr || supported == nullptr)
1453                 {
1454                     BMCWEB_LOG_ERROR
1455                         << "SetPIDValues: thermal mode iface invalid " << path;
1456                     messages::internalError(self->asyncResp->res);
1457                     return;
1458                 }
1459                 self->currentProfile = *current;
1460                 self->supportedProfiles = *supported;
1461                 self->profileConnection = owner;
1462                 self->profilePath = path;
1463                 });
1464             },
1465             "xyz.openbmc_project.ObjectMapper",
1466             "/xyz/openbmc_project/object_mapper",
1467             "xyz.openbmc_project.ObjectMapper", "GetSubTree", "/", 0,
1468             std::array<const char*, 1>{thermalModeIface});
1469     }
1470     void pidSetDone()
1471     {
1472         if (asyncResp->res.result() != boost::beast::http::status::ok)
1473         {
1474             return;
1475         }
1476         std::shared_ptr<bmcweb::AsyncResp> response = asyncResp;
1477         if (profile)
1478         {
1479             if (std::find(supportedProfiles.begin(), supportedProfiles.end(),
1480                           *profile) == supportedProfiles.end())
1481             {
1482                 messages::actionParameterUnknown(response->res, "Profile",
1483                                                  *profile);
1484                 return;
1485             }
1486             currentProfile = *profile;
1487             crow::connections::systemBus->async_method_call(
1488                 [response](const boost::system::error_code ec) {
1489                 if (ec)
1490                 {
1491                     BMCWEB_LOG_ERROR << "Error patching profile" << ec;
1492                     messages::internalError(response->res);
1493                 }
1494                 },
1495                 profileConnection, profilePath,
1496                 "org.freedesktop.DBus.Properties", "Set", thermalModeIface,
1497                 "Current", dbus::utility::DbusVariantType(*profile));
1498         }
1499 
1500         for (auto& containerPair : configuration)
1501         {
1502             auto& container = containerPair.second;
1503             if (!container)
1504             {
1505                 continue;
1506             }
1507             BMCWEB_LOG_DEBUG << *container;
1508 
1509             const std::string& type = containerPair.first;
1510 
1511             for (nlohmann::json::iterator it = container->begin();
1512                  it != container->end(); ++it)
1513             {
1514                 const auto& name = it.key();
1515                 BMCWEB_LOG_DEBUG << "looking for " << name;
1516 
1517                 auto pathItr =
1518                     std::find_if(managedObj.begin(), managedObj.end(),
1519                                  [&name](const auto& obj) {
1520                     return boost::algorithm::ends_with(obj.first.str,
1521                                                        "/" + name);
1522                     });
1523                 dbus::utility::DBusPropertiesMap output;
1524 
1525                 output.reserve(16); // The pid interface length
1526 
1527                 // determines if we're patching entity-manager or
1528                 // creating a new object
1529                 bool createNewObject = (pathItr == managedObj.end());
1530                 BMCWEB_LOG_DEBUG << "Found = " << !createNewObject;
1531 
1532                 std::string iface;
1533                 if (!createNewObject)
1534                 {
1535                     for (const auto& interface : pathItr->second)
1536                     {
1537                         if (interface.first == pidConfigurationIface)
1538                         {
1539                             if (type == "PidControllers" ||
1540                                 type == "FanControllers")
1541                             {
1542                                 iface = pidConfigurationIface;
1543                                 createNewObject = true;
1544                             }
1545                         }
1546                         else if (interface.first == pidZoneConfigurationIface)
1547                         {
1548                             if (type == "FanZones")
1549                             {
1550                                 iface = pidConfigurationIface;
1551                                 createNewObject = true;
1552                             }
1553                         }
1554                         else if (interface.first == stepwiseConfigurationIface)
1555                         {
1556                             if (type == "StepwiseControllers")
1557                             {
1558                                 iface = stepwiseConfigurationIface;
1559                                 createNewObject = true;
1560                             }
1561                         }
1562                     }
1563                 }
1564 
1565                 if (createNewObject && it.value() == nullptr)
1566                 {
1567                     // can't delete a non-existent object
1568                     messages::propertyValueNotInList(response->res,
1569                                                      it.value().dump(), name);
1570                     continue;
1571                 }
1572 
1573                 std::string path;
1574                 if (pathItr != managedObj.end())
1575                 {
1576                     path = pathItr->first.str;
1577                 }
1578 
1579                 BMCWEB_LOG_DEBUG << "Create new = " << createNewObject << "\n";
1580 
1581                 // arbitrary limit to avoid attacks
1582                 constexpr const size_t controllerLimit = 500;
1583                 if (createNewObject && objectCount >= controllerLimit)
1584                 {
1585                     messages::resourceExhaustion(response->res, type);
1586                     continue;
1587                 }
1588                 std::string escaped = name;
1589                 std::replace(escaped.begin(), escaped.end(), '_', ' ');
1590                 output.emplace_back("Name", escaped);
1591 
1592                 std::string chassis;
1593                 CreatePIDRet ret = createPidInterface(
1594                     response, type, it, path, managedObj, createNewObject,
1595                     output, chassis, currentProfile);
1596                 if (ret == CreatePIDRet::fail)
1597                 {
1598                     return;
1599                 }
1600                 if (ret == CreatePIDRet::del)
1601                 {
1602                     continue;
1603                 }
1604 
1605                 if (!createNewObject)
1606                 {
1607                     for (const auto& property : output)
1608                     {
1609                         crow::connections::systemBus->async_method_call(
1610                             [response,
1611                              propertyName{std::string(property.first)}](
1612                                 const boost::system::error_code ec) {
1613                             if (ec)
1614                             {
1615                                 BMCWEB_LOG_ERROR << "Error patching "
1616                                                  << propertyName << ": " << ec;
1617                                 messages::internalError(response->res);
1618                                 return;
1619                             }
1620                             messages::success(response->res);
1621                             },
1622                             "xyz.openbmc_project.EntityManager", path,
1623                             "org.freedesktop.DBus.Properties", "Set", iface,
1624                             property.first, property.second);
1625                     }
1626                 }
1627                 else
1628                 {
1629                     if (chassis.empty())
1630                     {
1631                         BMCWEB_LOG_ERROR << "Failed to get chassis from config";
1632                         messages::internalError(response->res);
1633                         return;
1634                     }
1635 
1636                     bool foundChassis = false;
1637                     for (const auto& obj : managedObj)
1638                     {
1639                         if (boost::algorithm::ends_with(obj.first.str, chassis))
1640                         {
1641                             chassis = obj.first.str;
1642                             foundChassis = true;
1643                             break;
1644                         }
1645                     }
1646                     if (!foundChassis)
1647                     {
1648                         BMCWEB_LOG_ERROR << "Failed to find chassis on dbus";
1649                         messages::resourceMissingAtURI(
1650                             response->res,
1651                             crow::utility::urlFromPieces("redfish", "v1",
1652                                                          "Chassis", chassis));
1653                         return;
1654                     }
1655 
1656                     crow::connections::systemBus->async_method_call(
1657                         [response](const boost::system::error_code ec) {
1658                         if (ec)
1659                         {
1660                             BMCWEB_LOG_ERROR << "Error Adding Pid Object "
1661                                              << ec;
1662                             messages::internalError(response->res);
1663                             return;
1664                         }
1665                         messages::success(response->res);
1666                         },
1667                         "xyz.openbmc_project.EntityManager", chassis,
1668                         "xyz.openbmc_project.AddObject", "AddObject", output);
1669                 }
1670             }
1671         }
1672     }
1673 
1674     ~SetPIDValues()
1675     {
1676         try
1677         {
1678             pidSetDone();
1679         }
1680         catch (...)
1681         {
1682             BMCWEB_LOG_CRITICAL << "pidSetDone threw exception";
1683         }
1684     }
1685 
1686     std::shared_ptr<bmcweb::AsyncResp> asyncResp;
1687     std::vector<std::pair<std::string, std::optional<nlohmann::json>>>
1688         configuration;
1689     std::optional<std::string> profile;
1690     dbus::utility::ManagedObjectType managedObj;
1691     std::vector<std::string> supportedProfiles;
1692     std::string currentProfile;
1693     std::string profileConnection;
1694     std::string profilePath;
1695     size_t objectCount = 0;
1696 };
1697 
1698 /**
1699  * @brief Retrieves BMC manager location data over DBus
1700  *
1701  * @param[in] aResp Shared pointer for completing asynchronous calls
1702  * @param[in] connectionName - service name
1703  * @param[in] path - object path
1704  * @return none
1705  */
1706 inline void getLocation(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
1707                         const std::string& connectionName,
1708                         const std::string& path)
1709 {
1710     BMCWEB_LOG_DEBUG << "Get BMC manager Location data.";
1711 
1712     sdbusplus::asio::getProperty<std::string>(
1713         *crow::connections::systemBus, connectionName, path,
1714         "xyz.openbmc_project.Inventory.Decorator.LocationCode", "LocationCode",
1715         [aResp](const boost::system::error_code ec,
1716                 const std::string& property) {
1717         if (ec)
1718         {
1719             BMCWEB_LOG_DEBUG << "DBUS response error for "
1720                                 "Location";
1721             messages::internalError(aResp->res);
1722             return;
1723         }
1724 
1725         aResp->res.jsonValue["Location"]["PartLocation"]["ServiceLabel"] =
1726             property;
1727         });
1728 }
1729 // avoid name collision systems.hpp
1730 inline void
1731     managerGetLastResetTime(const std::shared_ptr<bmcweb::AsyncResp>& aResp)
1732 {
1733     BMCWEB_LOG_DEBUG << "Getting Manager Last Reset Time";
1734 
1735     sdbusplus::asio::getProperty<uint64_t>(
1736         *crow::connections::systemBus, "xyz.openbmc_project.State.BMC",
1737         "/xyz/openbmc_project/state/bmc0", "xyz.openbmc_project.State.BMC",
1738         "LastRebootTime",
1739         [aResp](const boost::system::error_code ec,
1740                 const uint64_t lastResetTime) {
1741         if (ec)
1742         {
1743             BMCWEB_LOG_DEBUG << "D-BUS response error " << ec;
1744             return;
1745         }
1746 
1747         // LastRebootTime is epoch time, in milliseconds
1748         // https://github.com/openbmc/phosphor-dbus-interfaces/blob/7f9a128eb9296e926422ddc312c148b625890bb6/xyz/openbmc_project/State/BMC.interface.yaml#L19
1749         uint64_t lastResetTimeStamp = lastResetTime / 1000;
1750 
1751         // Convert to ISO 8601 standard
1752         aResp->res.jsonValue["LastResetTime"] =
1753             redfish::time_utils::getDateTimeUint(lastResetTimeStamp);
1754         });
1755 }
1756 
1757 /**
1758  * @brief Set the running firmware image
1759  *
1760  * @param[i,o] aResp - Async response object
1761  * @param[i] runningFirmwareTarget - Image to make the running image
1762  *
1763  * @return void
1764  */
1765 inline void
1766     setActiveFirmwareImage(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
1767                            const std::string& runningFirmwareTarget)
1768 {
1769     // Get the Id from /redfish/v1/UpdateService/FirmwareInventory/<Id>
1770     std::string::size_type idPos = runningFirmwareTarget.rfind('/');
1771     if (idPos == std::string::npos)
1772     {
1773         messages::propertyValueNotInList(aResp->res, runningFirmwareTarget,
1774                                          "@odata.id");
1775         BMCWEB_LOG_DEBUG << "Can't parse firmware ID!";
1776         return;
1777     }
1778     idPos++;
1779     if (idPos >= runningFirmwareTarget.size())
1780     {
1781         messages::propertyValueNotInList(aResp->res, runningFirmwareTarget,
1782                                          "@odata.id");
1783         BMCWEB_LOG_DEBUG << "Invalid firmware ID.";
1784         return;
1785     }
1786     std::string firmwareId = runningFirmwareTarget.substr(idPos);
1787 
1788     // Make sure the image is valid before setting priority
1789     crow::connections::systemBus->async_method_call(
1790         [aResp, firmwareId,
1791          runningFirmwareTarget](const boost::system::error_code ec,
1792                                 dbus::utility::ManagedObjectType& subtree) {
1793         if (ec)
1794         {
1795             BMCWEB_LOG_DEBUG << "D-Bus response error getting objects.";
1796             messages::internalError(aResp->res);
1797             return;
1798         }
1799 
1800         if (subtree.empty())
1801         {
1802             BMCWEB_LOG_DEBUG << "Can't find image!";
1803             messages::internalError(aResp->res);
1804             return;
1805         }
1806 
1807         bool foundImage = false;
1808         for (const auto& object : subtree)
1809         {
1810             const std::string& path =
1811                 static_cast<const std::string&>(object.first);
1812             std::size_t idPos2 = path.rfind('/');
1813 
1814             if (idPos2 == std::string::npos)
1815             {
1816                 continue;
1817             }
1818 
1819             idPos2++;
1820             if (idPos2 >= path.size())
1821             {
1822                 continue;
1823             }
1824 
1825             if (path.substr(idPos2) == firmwareId)
1826             {
1827                 foundImage = true;
1828                 break;
1829             }
1830         }
1831 
1832         if (!foundImage)
1833         {
1834             messages::propertyValueNotInList(aResp->res, runningFirmwareTarget,
1835                                              "@odata.id");
1836             BMCWEB_LOG_DEBUG << "Invalid firmware ID.";
1837             return;
1838         }
1839 
1840         BMCWEB_LOG_DEBUG << "Setting firmware version " << firmwareId
1841                          << " to priority 0.";
1842 
1843         // Only support Immediate
1844         // An addition could be a Redfish Setting like
1845         // ActiveSoftwareImageApplyTime and support OnReset
1846         crow::connections::systemBus->async_method_call(
1847             [aResp](const boost::system::error_code ec2) {
1848             if (ec2)
1849             {
1850                 BMCWEB_LOG_DEBUG << "D-Bus response error setting.";
1851                 messages::internalError(aResp->res);
1852                 return;
1853             }
1854             doBMCGracefulRestart(aResp);
1855             },
1856 
1857             "xyz.openbmc_project.Software.BMC.Updater",
1858             "/xyz/openbmc_project/software/" + firmwareId,
1859             "org.freedesktop.DBus.Properties", "Set",
1860             "xyz.openbmc_project.Software.RedundancyPriority", "Priority",
1861             dbus::utility::DbusVariantType(static_cast<uint8_t>(0)));
1862         },
1863         "xyz.openbmc_project.Software.BMC.Updater",
1864         "/xyz/openbmc_project/software", "org.freedesktop.DBus.ObjectManager",
1865         "GetManagedObjects");
1866 }
1867 
1868 inline void setDateTime(std::shared_ptr<bmcweb::AsyncResp> aResp,
1869                         std::string datetime)
1870 {
1871     BMCWEB_LOG_DEBUG << "Set date time: " << datetime;
1872 
1873     std::stringstream stream(datetime);
1874     // Convert from ISO 8601 to boost local_time
1875     // (BMC only has time in UTC)
1876     boost::posix_time::ptime posixTime;
1877     boost::posix_time::ptime epoch(boost::gregorian::date(1970, 1, 1));
1878     // Facet gets deleted with the stringsteam
1879     auto ifc = std::make_unique<boost::local_time::local_time_input_facet>(
1880         "%Y-%m-%d %H:%M:%S%F %ZP");
1881     stream.imbue(std::locale(stream.getloc(), ifc.release()));
1882 
1883     boost::local_time::local_date_time ldt(boost::local_time::not_a_date_time);
1884 
1885     if (stream >> ldt)
1886     {
1887         posixTime = ldt.utc_time();
1888         boost::posix_time::time_duration dur = posixTime - epoch;
1889         uint64_t durMicroSecs = static_cast<uint64_t>(dur.total_microseconds());
1890         crow::connections::systemBus->async_method_call(
1891             [aResp{std::move(aResp)}, datetime{std::move(datetime)}](
1892                 const boost::system::error_code ec) {
1893             if (ec)
1894             {
1895                 BMCWEB_LOG_DEBUG << "Failed to set elapsed time. "
1896                                     "DBUS response error "
1897                                  << ec;
1898                 messages::internalError(aResp->res);
1899                 return;
1900             }
1901             aResp->res.jsonValue["DateTime"] = datetime;
1902             },
1903             "xyz.openbmc_project.Time.Manager", "/xyz/openbmc_project/time/bmc",
1904             "org.freedesktop.DBus.Properties", "Set",
1905             "xyz.openbmc_project.Time.EpochTime", "Elapsed",
1906             dbus::utility::DbusVariantType(durMicroSecs));
1907     }
1908     else
1909     {
1910         messages::propertyValueFormatError(aResp->res, datetime, "DateTime");
1911         return;
1912     }
1913 }
1914 
1915 inline void requestRoutesManager(App& app)
1916 {
1917     std::string uuid = persistent_data::getConfig().systemUuid;
1918 
1919     BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/")
1920         .privileges(redfish::privileges::getManager)
1921         .methods(boost::beast::http::verb::get)(
1922             [&app, uuid](const crow::Request& req,
1923                          const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
1924         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
1925         {
1926             return;
1927         }
1928         asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Managers/bmc";
1929         asyncResp->res.jsonValue["@odata.type"] = "#Manager.v1_14_0.Manager";
1930         asyncResp->res.jsonValue["Id"] = "bmc";
1931         asyncResp->res.jsonValue["Name"] = "OpenBmc Manager";
1932         asyncResp->res.jsonValue["Description"] =
1933             "Baseboard Management Controller";
1934         asyncResp->res.jsonValue["PowerState"] = "On";
1935         asyncResp->res.jsonValue["Status"]["State"] = "Enabled";
1936         asyncResp->res.jsonValue["Status"]["Health"] = "OK";
1937 
1938         asyncResp->res.jsonValue["ManagerType"] = "BMC";
1939         asyncResp->res.jsonValue["UUID"] = systemd_utils::getUuid();
1940         asyncResp->res.jsonValue["ServiceEntryPointUUID"] = uuid;
1941         asyncResp->res.jsonValue["Model"] = "OpenBmc"; // TODO(ed), get model
1942 
1943         asyncResp->res.jsonValue["LogServices"]["@odata.id"] =
1944             "/redfish/v1/Managers/bmc/LogServices";
1945         asyncResp->res.jsonValue["NetworkProtocol"]["@odata.id"] =
1946             "/redfish/v1/Managers/bmc/NetworkProtocol";
1947         asyncResp->res.jsonValue["EthernetInterfaces"]["@odata.id"] =
1948             "/redfish/v1/Managers/bmc/EthernetInterfaces";
1949 
1950 #ifdef BMCWEB_ENABLE_VM_NBDPROXY
1951         asyncResp->res.jsonValue["VirtualMedia"]["@odata.id"] =
1952             "/redfish/v1/Managers/bmc/VirtualMedia";
1953 #endif // BMCWEB_ENABLE_VM_NBDPROXY
1954 
1955         // default oem data
1956         nlohmann::json& oem = asyncResp->res.jsonValue["Oem"];
1957         nlohmann::json& oemOpenbmc = oem["OpenBmc"];
1958         oem["@odata.type"] = "#OemManager.Oem";
1959         oem["@odata.id"] = "/redfish/v1/Managers/bmc#/Oem";
1960         oemOpenbmc["@odata.type"] = "#OemManager.OpenBmc";
1961         oemOpenbmc["@odata.id"] = "/redfish/v1/Managers/bmc#/Oem/OpenBmc";
1962 
1963         nlohmann::json::object_t certificates;
1964         certificates["@odata.id"] =
1965             "/redfish/v1/Managers/bmc/Truststore/Certificates";
1966         oemOpenbmc["Certificates"] = std::move(certificates);
1967 
1968         // Manager.Reset (an action) can be many values, OpenBMC only
1969         // supports BMC reboot.
1970         nlohmann::json& managerReset =
1971             asyncResp->res.jsonValue["Actions"]["#Manager.Reset"];
1972         managerReset["target"] =
1973             "/redfish/v1/Managers/bmc/Actions/Manager.Reset";
1974         managerReset["@Redfish.ActionInfo"] =
1975             "/redfish/v1/Managers/bmc/ResetActionInfo";
1976 
1977         // ResetToDefaults (Factory Reset) has values like
1978         // PreserveNetworkAndUsers and PreserveNetwork that aren't supported
1979         // on OpenBMC
1980         nlohmann::json& resetToDefaults =
1981             asyncResp->res.jsonValue["Actions"]["#Manager.ResetToDefaults"];
1982         resetToDefaults["target"] =
1983             "/redfish/v1/Managers/bmc/Actions/Manager.ResetToDefaults";
1984         resetToDefaults["ResetType@Redfish.AllowableValues"] = {"ResetAll"};
1985 
1986         std::pair<std::string, std::string> redfishDateTimeOffset =
1987             redfish::time_utils::getDateTimeOffsetNow();
1988 
1989         asyncResp->res.jsonValue["DateTime"] = redfishDateTimeOffset.first;
1990         asyncResp->res.jsonValue["DateTimeLocalOffset"] =
1991             redfishDateTimeOffset.second;
1992 
1993         // TODO (Gunnar): Remove these one day since moved to ComputerSystem
1994         // Still used by OCP profiles
1995         // https://github.com/opencomputeproject/OCP-Profiles/issues/23
1996         // Fill in SerialConsole info
1997         asyncResp->res.jsonValue["SerialConsole"]["ServiceEnabled"] = true;
1998         asyncResp->res.jsonValue["SerialConsole"]["MaxConcurrentSessions"] = 15;
1999         asyncResp->res.jsonValue["SerialConsole"]["ConnectTypesSupported"] = {
2000             "IPMI", "SSH"};
2001 #ifdef BMCWEB_ENABLE_KVM
2002         // Fill in GraphicalConsole info
2003         asyncResp->res.jsonValue["GraphicalConsole"]["ServiceEnabled"] = true;
2004         asyncResp->res.jsonValue["GraphicalConsole"]["MaxConcurrentSessions"] =
2005             4;
2006         asyncResp->res
2007             .jsonValue["GraphicalConsole"]["ConnectTypesSupported"] = {"KVMIP"};
2008 #endif // BMCWEB_ENABLE_KVM
2009 
2010         asyncResp->res.jsonValue["Links"]["ManagerForServers@odata.count"] = 1;
2011 
2012         nlohmann::json::array_t managerForServers;
2013         nlohmann::json::object_t manager;
2014         manager["@odata.id"] = "/redfish/v1/Systems/system";
2015         managerForServers.push_back(std::move(manager));
2016 
2017         asyncResp->res.jsonValue["Links"]["ManagerForServers"] =
2018             std::move(managerForServers);
2019 
2020         auto health = std::make_shared<HealthPopulate>(asyncResp);
2021         health->isManagersHealth = true;
2022         health->populate();
2023 
2024         sw_util::populateSoftwareInformation(asyncResp, sw_util::bmcPurpose,
2025                                              "FirmwareVersion", true);
2026 
2027         managerGetLastResetTime(asyncResp);
2028 
2029         // ManagerDiagnosticData is added for all BMCs.
2030         nlohmann::json& managerDiagnosticData =
2031             asyncResp->res.jsonValue["ManagerDiagnosticData"];
2032         managerDiagnosticData["@odata.id"] =
2033             "/redfish/v1/Managers/bmc/ManagerDiagnosticData";
2034 
2035 #ifdef BMCWEB_ENABLE_REDFISH_OEM_MANAGER_FAN_DATA
2036         auto pids = std::make_shared<GetPIDValues>(asyncResp);
2037         pids->run();
2038 #endif
2039 
2040         getMainChassisId(asyncResp,
2041                          [](const std::string& chassisId,
2042                             const std::shared_ptr<bmcweb::AsyncResp>& aRsp) {
2043             aRsp->res.jsonValue["Links"]["ManagerForChassis@odata.count"] = 1;
2044             nlohmann::json::array_t managerForChassis;
2045             nlohmann::json::object_t managerObj;
2046             managerObj["@odata.id"] = "/redfish/v1/Chassis/" + chassisId;
2047             managerForChassis.push_back(std::move(managerObj));
2048             aRsp->res.jsonValue["Links"]["ManagerForChassis"] =
2049                 std::move(managerForChassis);
2050             aRsp->res.jsonValue["Links"]["ManagerInChassis"]["@odata.id"] =
2051                 "/redfish/v1/Chassis/" + chassisId;
2052         });
2053 
2054         static bool started = false;
2055 
2056         if (!started)
2057         {
2058             sdbusplus::asio::getProperty<double>(
2059                 *crow::connections::systemBus, "org.freedesktop.systemd1",
2060                 "/org/freedesktop/systemd1", "org.freedesktop.systemd1.Manager",
2061                 "Progress",
2062                 [asyncResp](const boost::system::error_code ec,
2063                             const double& val) {
2064                 if (ec)
2065                 {
2066                     BMCWEB_LOG_ERROR << "Error while getting progress";
2067                     messages::internalError(asyncResp->res);
2068                     return;
2069                 }
2070                 if (val < 1.0)
2071                 {
2072                     asyncResp->res.jsonValue["Status"]["State"] = "Starting";
2073                     started = true;
2074                 }
2075                 });
2076         }
2077 
2078         crow::connections::systemBus->async_method_call(
2079             [asyncResp](
2080                 const boost::system::error_code ec,
2081                 const dbus::utility::MapperGetSubTreeResponse& subtree) {
2082             if (ec)
2083             {
2084                 BMCWEB_LOG_DEBUG << "D-Bus response error on GetSubTree " << ec;
2085                 return;
2086             }
2087             if (subtree.empty())
2088             {
2089                 BMCWEB_LOG_DEBUG << "Can't find bmc D-Bus object!";
2090                 return;
2091             }
2092             // Assume only 1 bmc D-Bus object
2093             // Throw an error if there is more than 1
2094             if (subtree.size() > 1)
2095             {
2096                 BMCWEB_LOG_DEBUG << "Found more than 1 bmc D-Bus object!";
2097                 messages::internalError(asyncResp->res);
2098                 return;
2099             }
2100 
2101             if (subtree[0].first.empty() || subtree[0].second.size() != 1)
2102             {
2103                 BMCWEB_LOG_DEBUG << "Error getting bmc D-Bus object!";
2104                 messages::internalError(asyncResp->res);
2105                 return;
2106             }
2107 
2108             const std::string& path = subtree[0].first;
2109             const std::string& connectionName = subtree[0].second[0].first;
2110 
2111             for (const auto& interfaceName : subtree[0].second[0].second)
2112             {
2113                 if (interfaceName ==
2114                     "xyz.openbmc_project.Inventory.Decorator.Asset")
2115                 {
2116 
2117                     sdbusplus::asio::getAllProperties(
2118                         *crow::connections::systemBus, connectionName, path,
2119                         "xyz.openbmc_project.Inventory.Decorator.Asset",
2120                         [asyncResp](const boost::system::error_code ec2,
2121                                     const dbus::utility::DBusPropertiesMap&
2122                                         propertiesList) {
2123                         if (ec2)
2124                         {
2125                             BMCWEB_LOG_DEBUG << "Can't get bmc asset!";
2126                             return;
2127                         }
2128 
2129                         const std::string* partNumber = nullptr;
2130                         const std::string* serialNumber = nullptr;
2131                         const std::string* manufacturer = nullptr;
2132                         const std::string* model = nullptr;
2133                         const std::string* sparePartNumber = nullptr;
2134 
2135                         const bool success = sdbusplus::unpackPropertiesNoThrow(
2136                             dbus_utils::UnpackErrorPrinter(), propertiesList,
2137                             "PartNumber", partNumber, "SerialNumber",
2138                             serialNumber, "Manufacturer", manufacturer, "Model",
2139                             model, "SparePartNumber", sparePartNumber);
2140 
2141                         if (!success)
2142                         {
2143                             messages::internalError(asyncResp->res);
2144                             return;
2145                         }
2146 
2147                         if (partNumber != nullptr)
2148                         {
2149                             asyncResp->res.jsonValue["PartNumber"] =
2150                                 *partNumber;
2151                         }
2152 
2153                         if (serialNumber != nullptr)
2154                         {
2155                             asyncResp->res.jsonValue["SerialNumber"] =
2156                                 *serialNumber;
2157                         }
2158 
2159                         if (manufacturer != nullptr)
2160                         {
2161                             asyncResp->res.jsonValue["Manufacturer"] =
2162                                 *manufacturer;
2163                         }
2164 
2165                         if (model != nullptr)
2166                         {
2167                             asyncResp->res.jsonValue["Model"] = *model;
2168                         }
2169 
2170                         if (sparePartNumber != nullptr)
2171                         {
2172                             asyncResp->res.jsonValue["SparePartNumber"] =
2173                                 *sparePartNumber;
2174                         }
2175                         });
2176                 }
2177                 else if (interfaceName ==
2178                          "xyz.openbmc_project.Inventory.Decorator.LocationCode")
2179                 {
2180                     getLocation(asyncResp, connectionName, path);
2181                 }
2182             }
2183             },
2184             "xyz.openbmc_project.ObjectMapper",
2185             "/xyz/openbmc_project/object_mapper",
2186             "xyz.openbmc_project.ObjectMapper", "GetSubTree",
2187             "/xyz/openbmc_project/inventory", int32_t(0),
2188             std::array<const char*, 1>{
2189                 "xyz.openbmc_project.Inventory.Item.Bmc"});
2190         });
2191 
2192     BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/")
2193         .privileges(redfish::privileges::patchManager)
2194         .methods(boost::beast::http::verb::patch)(
2195             [&app](const crow::Request& req,
2196                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
2197         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
2198         {
2199             return;
2200         }
2201         std::optional<nlohmann::json> oem;
2202         std::optional<nlohmann::json> links;
2203         std::optional<std::string> datetime;
2204 
2205         if (!json_util::readJsonPatch(req, asyncResp->res, "Oem", oem,
2206                                       "DateTime", datetime, "Links", links))
2207         {
2208             return;
2209         }
2210 
2211         if (oem)
2212         {
2213 #ifdef BMCWEB_ENABLE_REDFISH_OEM_MANAGER_FAN_DATA
2214             std::optional<nlohmann::json> openbmc;
2215             if (!redfish::json_util::readJson(*oem, asyncResp->res, "OpenBmc",
2216                                               openbmc))
2217             {
2218                 BMCWEB_LOG_ERROR
2219                     << "Illegal Property "
2220                     << oem->dump(2, ' ', true,
2221                                  nlohmann::json::error_handler_t::replace);
2222                 return;
2223             }
2224             if (openbmc)
2225             {
2226                 std::optional<nlohmann::json> fan;
2227                 if (!redfish::json_util::readJson(*openbmc, asyncResp->res,
2228                                                   "Fan", fan))
2229                 {
2230                     BMCWEB_LOG_ERROR
2231                         << "Illegal Property "
2232                         << openbmc->dump(
2233                                2, ' ', true,
2234                                nlohmann::json::error_handler_t::replace);
2235                     return;
2236                 }
2237                 if (fan)
2238                 {
2239                     auto pid = std::make_shared<SetPIDValues>(asyncResp, *fan);
2240                     pid->run();
2241                 }
2242             }
2243 #else
2244             messages::propertyUnknown(asyncResp->res, "Oem");
2245             return;
2246 #endif
2247         }
2248         if (links)
2249         {
2250             std::optional<nlohmann::json> activeSoftwareImage;
2251             if (!redfish::json_util::readJson(*links, asyncResp->res,
2252                                               "ActiveSoftwareImage",
2253                                               activeSoftwareImage))
2254             {
2255                 return;
2256             }
2257             if (activeSoftwareImage)
2258             {
2259                 std::optional<std::string> odataId;
2260                 if (!json_util::readJson(*activeSoftwareImage, asyncResp->res,
2261                                          "@odata.id", odataId))
2262                 {
2263                     return;
2264                 }
2265 
2266                 if (odataId)
2267                 {
2268                     setActiveFirmwareImage(asyncResp, *odataId);
2269                 }
2270             }
2271         }
2272         if (datetime)
2273         {
2274             setDateTime(asyncResp, std::move(*datetime));
2275         }
2276         });
2277 }
2278 
2279 inline void requestRoutesManagerCollection(App& app)
2280 {
2281     BMCWEB_ROUTE(app, "/redfish/v1/Managers/")
2282         .privileges(redfish::privileges::getManagerCollection)
2283         .methods(boost::beast::http::verb::get)(
2284             [&app](const crow::Request& req,
2285                    const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) {
2286         if (!redfish::setUpRedfishRoute(app, req, asyncResp))
2287         {
2288             return;
2289         }
2290         // Collections don't include the static data added by SubRoute
2291         // because it has a duplicate entry for members
2292         asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Managers";
2293         asyncResp->res.jsonValue["@odata.type"] =
2294             "#ManagerCollection.ManagerCollection";
2295         asyncResp->res.jsonValue["Name"] = "Manager Collection";
2296         asyncResp->res.jsonValue["Members@odata.count"] = 1;
2297         nlohmann::json::array_t members;
2298         nlohmann::json& bmc = members.emplace_back();
2299         bmc["@odata.id"] = "/redfish/v1/Managers/bmc";
2300         asyncResp->res.jsonValue["Members"] = std::move(members);
2301         });
2302 }
2303 } // namespace redfish
2304