blob: 36acbf4a0b659b0661f0bf34f7555689eb52e08f [file] [log] [blame]
Gunnar Millsac6a4442020-10-14 14:55:29 -05001/*
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
Ed Tanous3ccb3ad2023-01-13 17:40:03 -080018#include "app.hpp"
Jonathan Doman1e1e5982021-06-11 09:36:17 -070019#include "dbus_singleton.hpp"
George Liu7a1dbc42022-12-07 16:03:22 +080020#include "dbus_utility.hpp"
Jonathan Doman1e1e5982021-06-11 09:36:17 -070021#include "error_messages.hpp"
Chris Caindfbf7de2023-04-13 16:01:04 -050022#include "generated/enums/processor.hpp"
Ed Tanous3ccb3ad2023-01-13 17:40:03 -080023#include "query.hpp"
24#include "registries/privilege_registry.hpp"
25#include "utils/collection.hpp"
26#include "utils/dbus_utils.hpp"
27#include "utils/json_utils.hpp"
Gunnar Millsac6a4442020-10-14 14:55:29 -050028
29#include <boost/container/flat_map.hpp>
George Liue99073f2022-12-09 11:06:16 +080030#include <boost/system/error_code.hpp>
Ed Tanousef4c65b2023-04-24 15:28:50 -070031#include <boost/url/format.hpp>
Jonathan Doman1e1e5982021-06-11 09:36:17 -070032#include <sdbusplus/asio/property.hpp>
Jonathan Domandba0c292020-12-02 15:34:13 -080033#include <sdbusplus/message/native_types.hpp>
Krzysztof Grobelny351053f2022-07-28 15:44:22 +020034#include <sdbusplus/unpack_properties.hpp>
Jonathan Domandba0c292020-12-02 15:34:13 -080035#include <sdbusplus/utility/dedup_variant.hpp>
Gunnar Millsac6a4442020-10-14 14:55:29 -050036
George Liu7a1dbc42022-12-07 16:03:22 +080037#include <array>
Michael Shenb9d679d2023-02-13 02:29:04 +000038#include <limits>
Ed Tanous3544d2a2023-08-06 18:12:20 -070039#include <ranges>
Ed Tanous3c569212024-03-06 14:46:18 -080040#include <string>
George Liu7a1dbc42022-12-07 16:03:22 +080041#include <string_view>
42
Gunnar Millsac6a4442020-10-14 14:55:29 -050043namespace redfish
44{
45
Jonathan Domanc9514482021-02-24 09:20:51 -080046// Interfaces which imply a D-Bus object represents a Processor
George Liu7a1dbc42022-12-07 16:03:22 +080047constexpr std::array<std::string_view, 2> processorInterfaces = {
Jonathan Domanc9514482021-02-24 09:20:51 -080048 "xyz.openbmc_project.Inventory.Item.Cpu",
49 "xyz.openbmc_project.Inventory.Item.Accelerator"};
Jonathan Doman2bab9832020-12-02 15:27:40 -080050
Sharad Yadav71b82f22021-05-10 15:11:39 +053051/**
52 * @brief Fill out uuid info of a processor by
53 * requesting data from the given D-Bus object.
54 *
Ed Tanousac106bf2023-06-07 09:24:59 -070055 * @param[in,out] asyncResp Async HTTP response.
Sharad Yadav71b82f22021-05-10 15:11:39 +053056 * @param[in] service D-Bus service to query.
57 * @param[in] objPath D-Bus object to query.
58 */
Ed Tanousac106bf2023-06-07 09:24:59 -070059inline void getProcessorUUID(std::shared_ptr<bmcweb::AsyncResp> asyncResp,
Sharad Yadav71b82f22021-05-10 15:11:39 +053060 const std::string& service,
61 const std::string& objPath)
62{
Ed Tanous62598e32023-07-17 17:06:25 -070063 BMCWEB_LOG_DEBUG("Get Processor UUID");
Jonathan Doman1e1e5982021-06-11 09:36:17 -070064 sdbusplus::asio::getProperty<std::string>(
65 *crow::connections::systemBus, service, objPath,
66 "xyz.openbmc_project.Common.UUID", "UUID",
Ed Tanousac106bf2023-06-07 09:24:59 -070067 [objPath, asyncResp{std::move(asyncResp)}](
68 const boost::system::error_code& ec, const std::string& property) {
Ed Tanous002d39b2022-05-31 08:59:27 -070069 if (ec)
70 {
Ed Tanous62598e32023-07-17 17:06:25 -070071 BMCWEB_LOG_DEBUG("DBUS response error");
Ed Tanousac106bf2023-06-07 09:24:59 -070072 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -070073 return;
74 }
Ed Tanousac106bf2023-06-07 09:24:59 -070075 asyncResp->res.jsonValue["UUID"] = property;
Patrick Williams5a39f772023-10-20 11:20:21 -050076 });
Sharad Yadav71b82f22021-05-10 15:11:39 +053077}
78
Ed Tanous711ac7a2021-12-20 09:34:41 -080079inline void getCpuDataByInterface(
Ed Tanousac106bf2023-06-07 09:24:59 -070080 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Michael Shen80f79a42023-08-24 13:41:53 +000081 const dbus::utility::DBusInterfacesMap& cpuInterfacesProperties)
Gunnar Millsac6a4442020-10-14 14:55:29 -050082{
Ed Tanous62598e32023-07-17 17:06:25 -070083 BMCWEB_LOG_DEBUG("Get CPU resources by interface.");
Gunnar Millsac6a4442020-10-14 14:55:29 -050084
Chicago Duana1649ec2021-03-30 16:54:58 +080085 // Set the default value of state
Ed Tanousac106bf2023-06-07 09:24:59 -070086 asyncResp->res.jsonValue["Status"]["State"] = "Enabled";
87 asyncResp->res.jsonValue["Status"]["Health"] = "OK";
Gunnar Millsac6a4442020-10-14 14:55:29 -050088
89 for (const auto& interface : cpuInterfacesProperties)
90 {
91 for (const auto& property : interface.second)
92 {
Chicago Duana1649ec2021-03-30 16:54:58 +080093 if (property.first == "Present")
Gunnar Millsac6a4442020-10-14 14:55:29 -050094 {
Chicago Duana1649ec2021-03-30 16:54:58 +080095 const bool* cpuPresent = std::get_if<bool>(&property.second);
96 if (cpuPresent == nullptr)
Gunnar Millsac6a4442020-10-14 14:55:29 -050097 {
98 // Important property not in desired type
Ed Tanousac106bf2023-06-07 09:24:59 -070099 messages::internalError(asyncResp->res);
Gunnar Millsac6a4442020-10-14 14:55:29 -0500100 return;
101 }
Ed Tanouse05aec52022-01-25 10:28:56 -0800102 if (!*cpuPresent)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500103 {
Chicago Duana1649ec2021-03-30 16:54:58 +0800104 // Slot is not populated
Ed Tanousac106bf2023-06-07 09:24:59 -0700105 asyncResp->res.jsonValue["Status"]["State"] = "Absent";
Chicago Duana1649ec2021-03-30 16:54:58 +0800106 }
107 }
108 else if (property.first == "Functional")
109 {
110 const bool* cpuFunctional = std::get_if<bool>(&property.second);
111 if (cpuFunctional == nullptr)
112 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700113 messages::internalError(asyncResp->res);
Gunnar Millsac6a4442020-10-14 14:55:29 -0500114 return;
115 }
Ed Tanouse05aec52022-01-25 10:28:56 -0800116 if (!*cpuFunctional)
Chicago Duana1649ec2021-03-30 16:54:58 +0800117 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700118 asyncResp->res.jsonValue["Status"]["Health"] = "Critical";
Chicago Duana1649ec2021-03-30 16:54:58 +0800119 }
120 }
121 else if (property.first == "CoreCount")
122 {
123 const uint16_t* coresCount =
124 std::get_if<uint16_t>(&property.second);
125 if (coresCount == nullptr)
126 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700127 messages::internalError(asyncResp->res);
Chicago Duana1649ec2021-03-30 16:54:58 +0800128 return;
129 }
Ed Tanousac106bf2023-06-07 09:24:59 -0700130 asyncResp->res.jsonValue["TotalCores"] = *coresCount;
Gunnar Millsac6a4442020-10-14 14:55:29 -0500131 }
Jonathan Domandc3fa662020-10-26 23:10:24 -0700132 else if (property.first == "MaxSpeedInMhz")
133 {
134 const uint32_t* value = std::get_if<uint32_t>(&property.second);
135 if (value != nullptr)
136 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700137 asyncResp->res.jsonValue["MaxSpeedMHz"] = *value;
Jonathan Domandc3fa662020-10-26 23:10:24 -0700138 }
139 }
Gunnar Millsac6a4442020-10-14 14:55:29 -0500140 else if (property.first == "Socket")
141 {
142 const std::string* value =
143 std::get_if<std::string>(&property.second);
144 if (value != nullptr)
145 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700146 asyncResp->res.jsonValue["Socket"] = *value;
Gunnar Millsac6a4442020-10-14 14:55:29 -0500147 }
148 }
149 else if (property.first == "ThreadCount")
150 {
Jonathan Domandc3fa662020-10-26 23:10:24 -0700151 const uint16_t* value = std::get_if<uint16_t>(&property.second);
Gunnar Millsac6a4442020-10-14 14:55:29 -0500152 if (value != nullptr)
153 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700154 asyncResp->res.jsonValue["TotalThreads"] = *value;
Gunnar Millsac6a4442020-10-14 14:55:29 -0500155 }
156 }
Brandon Kim1930fbd2021-09-14 17:52:51 -0700157 else if (property.first == "EffectiveFamily")
Gunnar Millsac6a4442020-10-14 14:55:29 -0500158 {
Brandon Kim1930fbd2021-09-14 17:52:51 -0700159 const uint16_t* value = std::get_if<uint16_t>(&property.second);
Brad Bishop6169de22022-09-14 13:08:32 -0400160 if (value != nullptr && *value != 2)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500161 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700162 asyncResp->res.jsonValue["ProcessorId"]["EffectiveFamily"] =
Ed Tanous866e4862022-02-17 11:40:25 -0800163 "0x" + intToHexString(*value, 4);
Gunnar Millsac6a4442020-10-14 14:55:29 -0500164 }
165 }
Brandon Kim1930fbd2021-09-14 17:52:51 -0700166 else if (property.first == "EffectiveModel")
167 {
168 const uint16_t* value = std::get_if<uint16_t>(&property.second);
169 if (value == nullptr)
170 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700171 messages::internalError(asyncResp->res);
Brandon Kim1930fbd2021-09-14 17:52:51 -0700172 return;
173 }
Brad Bishop6169de22022-09-14 13:08:32 -0400174 if (*value != 0)
175 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700176 asyncResp->res.jsonValue["ProcessorId"]["EffectiveModel"] =
Brad Bishop6169de22022-09-14 13:08:32 -0400177 "0x" + intToHexString(*value, 4);
178 }
Brandon Kim1930fbd2021-09-14 17:52:51 -0700179 }
Gunnar Millsac6a4442020-10-14 14:55:29 -0500180 else if (property.first == "Id")
181 {
182 const uint64_t* value = std::get_if<uint64_t>(&property.second);
183 if (value != nullptr && *value != 0)
184 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700185 asyncResp->res
Gunnar Millsac6a4442020-10-14 14:55:29 -0500186 .jsonValue["ProcessorId"]["IdentificationRegisters"] =
Ed Tanous866e4862022-02-17 11:40:25 -0800187 "0x" + intToHexString(*value, 16);
Gunnar Millsac6a4442020-10-14 14:55:29 -0500188 }
189 }
Brandon Kim1930fbd2021-09-14 17:52:51 -0700190 else if (property.first == "Microcode")
191 {
192 const uint32_t* value = std::get_if<uint32_t>(&property.second);
193 if (value == nullptr)
194 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700195 messages::internalError(asyncResp->res);
Brandon Kim1930fbd2021-09-14 17:52:51 -0700196 return;
197 }
Brad Bishop6169de22022-09-14 13:08:32 -0400198 if (*value != 0)
199 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700200 asyncResp->res.jsonValue["ProcessorId"]["MicrocodeInfo"] =
Brad Bishop6169de22022-09-14 13:08:32 -0400201 "0x" + intToHexString(*value, 8);
202 }
Brandon Kim1930fbd2021-09-14 17:52:51 -0700203 }
204 else if (property.first == "Step")
205 {
206 const uint16_t* value = std::get_if<uint16_t>(&property.second);
207 if (value == nullptr)
208 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700209 messages::internalError(asyncResp->res);
Brandon Kim1930fbd2021-09-14 17:52:51 -0700210 return;
211 }
Michael Shenb9d679d2023-02-13 02:29:04 +0000212 if (*value != std::numeric_limits<uint16_t>::max())
Brad Bishop6169de22022-09-14 13:08:32 -0400213 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700214 asyncResp->res.jsonValue["ProcessorId"]["Step"] =
Brad Bishop6169de22022-09-14 13:08:32 -0400215 "0x" + intToHexString(*value, 4);
216 }
Brandon Kim1930fbd2021-09-14 17:52:51 -0700217 }
Gunnar Millsac6a4442020-10-14 14:55:29 -0500218 }
219 }
Gunnar Millsac6a4442020-10-14 14:55:29 -0500220}
221
Ed Tanousac106bf2023-06-07 09:24:59 -0700222inline void getCpuDataByService(std::shared_ptr<bmcweb::AsyncResp> asyncResp,
Gunnar Millsac6a4442020-10-14 14:55:29 -0500223 const std::string& cpuId,
224 const std::string& service,
225 const std::string& objPath)
226{
Ed Tanous62598e32023-07-17 17:06:25 -0700227 BMCWEB_LOG_DEBUG("Get available system cpu resources by service.");
Gunnar Millsac6a4442020-10-14 14:55:29 -0500228
George Liu5eb468d2023-06-20 17:03:24 +0800229 sdbusplus::message::object_path path("/xyz/openbmc_project/inventory");
230 dbus::utility::getManagedObjects(
231 service, path,
Ed Tanousac106bf2023-06-07 09:24:59 -0700232 [cpuId, service, objPath, asyncResp{std::move(asyncResp)}](
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800233 const boost::system::error_code& ec,
Gunnar Millsac6a4442020-10-14 14:55:29 -0500234 const dbus::utility::ManagedObjectType& dbusData) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700235 if (ec)
236 {
Ed Tanous62598e32023-07-17 17:06:25 -0700237 BMCWEB_LOG_DEBUG("DBUS response error");
Ed Tanousac106bf2023-06-07 09:24:59 -0700238 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -0700239 return;
240 }
Ed Tanousac106bf2023-06-07 09:24:59 -0700241 asyncResp->res.jsonValue["Id"] = cpuId;
242 asyncResp->res.jsonValue["Name"] = "Processor";
243 asyncResp->res.jsonValue["ProcessorType"] = "CPU";
Gunnar Millsac6a4442020-10-14 14:55:29 -0500244
Ed Tanous002d39b2022-05-31 08:59:27 -0700245 bool slotPresent = false;
246 std::string corePath = objPath + "/core";
247 size_t totalCores = 0;
248 for (const auto& object : dbusData)
249 {
250 if (object.first.str == objPath)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500251 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700252 getCpuDataByInterface(asyncResp, object.second);
Ed Tanous002d39b2022-05-31 08:59:27 -0700253 }
Ed Tanous11ba3972022-07-11 09:50:41 -0700254 else if (object.first.str.starts_with(corePath))
Ed Tanous002d39b2022-05-31 08:59:27 -0700255 {
256 for (const auto& interface : object.second)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500257 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700258 if (interface.first == "xyz.openbmc_project.Inventory.Item")
Gunnar Millsac6a4442020-10-14 14:55:29 -0500259 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700260 for (const auto& property : interface.second)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500261 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700262 if (property.first == "Present")
Gunnar Millsac6a4442020-10-14 14:55:29 -0500263 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700264 const bool* present =
265 std::get_if<bool>(&property.second);
266 if (present != nullptr)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500267 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700268 if (*present)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500269 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700270 slotPresent = true;
271 totalCores++;
Gunnar Millsac6a4442020-10-14 14:55:29 -0500272 }
273 }
274 }
275 }
276 }
277 }
278 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700279 }
280 // In getCpuDataByInterface(), state and health are set
281 // based on the present and functional status. If core
282 // count is zero, then it has a higher precedence.
283 if (slotPresent)
284 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700285 asyncResp->res.jsonValue["TotalCores"] = totalCores;
Ed Tanous002d39b2022-05-31 08:59:27 -0700286 }
287 return;
Patrick Williams5a39f772023-10-20 11:20:21 -0500288 });
Gunnar Millsac6a4442020-10-14 14:55:29 -0500289}
290
Chris Caindfbf7de2023-04-13 16:01:04 -0500291/**
292 * @brief Translates throttle cause DBUS property to redfish.
293 *
294 * @param[in] dbusSource The throttle cause from DBUS
295 *
296 * @return Returns as a string, the throttle cause in Redfish terms. If
297 * translation cannot be done, returns "Unknown" throttle reason.
298 */
299inline processor::ThrottleCause
300 dbusToRfThrottleCause(const std::string& dbusSource)
301{
302 if (dbusSource ==
303 "xyz.openbmc_project.Control.Power.Throttle.ThrottleReasons.ClockLimit")
304 {
305 return processor::ThrottleCause::ClockLimit;
306 }
307 if (dbusSource ==
308 "xyz.openbmc_project.Control.Power.Throttle.ThrottleReasons.ManagementDetectedFault")
309 {
310 return processor::ThrottleCause::ManagementDetectedFault;
311 }
312 if (dbusSource ==
313 "xyz.openbmc_project.Control.Power.Throttle.ThrottleReasons.PowerLimit")
314 {
315 return processor::ThrottleCause::PowerLimit;
316 }
317 if (dbusSource ==
318 "xyz.openbmc_project.Control.Power.Throttle.ThrottleReasons.ThermalLimit")
319 {
320 return processor::ThrottleCause::ThermalLimit;
321 }
322 if (dbusSource ==
323 "xyz.openbmc_project.Control.Power.Throttle.ThrottleReasons.Unknown")
324 {
325 return processor::ThrottleCause::Unknown;
326 }
327 return processor::ThrottleCause::Invalid;
328}
329
330inline void
Ed Tanousac106bf2023-06-07 09:24:59 -0700331 readThrottleProperties(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Chris Caindfbf7de2023-04-13 16:01:04 -0500332 const boost::system::error_code& ec,
333 const dbus::utility::DBusPropertiesMap& properties)
334{
335 if (ec)
336 {
Ed Tanous62598e32023-07-17 17:06:25 -0700337 BMCWEB_LOG_ERROR("Processor Throttle getAllProperties error {}", ec);
Ed Tanousac106bf2023-06-07 09:24:59 -0700338 messages::internalError(asyncResp->res);
Chris Caindfbf7de2023-04-13 16:01:04 -0500339 return;
340 }
341
342 const bool* status = nullptr;
343 const std::vector<std::string>* causes = nullptr;
344
345 if (!sdbusplus::unpackPropertiesNoThrow(dbus_utils::UnpackErrorPrinter(),
346 properties, "Throttled", status,
347 "ThrottleCauses", causes))
348 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700349 messages::internalError(asyncResp->res);
Chris Caindfbf7de2023-04-13 16:01:04 -0500350 return;
351 }
352
Ed Tanousac106bf2023-06-07 09:24:59 -0700353 asyncResp->res.jsonValue["Throttled"] = *status;
Chris Caindfbf7de2023-04-13 16:01:04 -0500354 nlohmann::json::array_t rCauses;
355 for (const std::string& cause : *causes)
356 {
357 processor::ThrottleCause rfCause = dbusToRfThrottleCause(cause);
358 if (rfCause == processor::ThrottleCause::Invalid)
359 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700360 messages::internalError(asyncResp->res);
Chris Caindfbf7de2023-04-13 16:01:04 -0500361 return;
362 }
363
364 rCauses.emplace_back(rfCause);
365 }
Ed Tanousac106bf2023-06-07 09:24:59 -0700366 asyncResp->res.jsonValue["ThrottleCauses"] = std::move(rCauses);
Chris Caindfbf7de2023-04-13 16:01:04 -0500367}
368
369inline void
Ed Tanousac106bf2023-06-07 09:24:59 -0700370 getThrottleProperties(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Chris Caindfbf7de2023-04-13 16:01:04 -0500371 const std::string& service,
372 const std::string& objectPath)
373{
Ed Tanous62598e32023-07-17 17:06:25 -0700374 BMCWEB_LOG_DEBUG("Get processor throttle resources");
Chris Caindfbf7de2023-04-13 16:01:04 -0500375
376 sdbusplus::asio::getAllProperties(
377 *crow::connections::systemBus, service, objectPath,
378 "xyz.openbmc_project.Control.Power.Throttle",
Ed Tanousac106bf2023-06-07 09:24:59 -0700379 [asyncResp](const boost::system::error_code& ec,
380 const dbus::utility::DBusPropertiesMap& properties) {
381 readThrottleProperties(asyncResp, ec, properties);
Patrick Williams5a39f772023-10-20 11:20:21 -0500382 });
Chris Caindfbf7de2023-04-13 16:01:04 -0500383}
384
Ed Tanousac106bf2023-06-07 09:24:59 -0700385inline void getCpuAssetData(std::shared_ptr<bmcweb::AsyncResp> asyncResp,
Gunnar Millsac6a4442020-10-14 14:55:29 -0500386 const std::string& service,
387 const std::string& objPath)
388{
Ed Tanous62598e32023-07-17 17:06:25 -0700389 BMCWEB_LOG_DEBUG("Get Cpu Asset Data");
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200390 sdbusplus::asio::getAllProperties(
391 *crow::connections::systemBus, service, objPath,
392 "xyz.openbmc_project.Inventory.Decorator.Asset",
Ed Tanousac106bf2023-06-07 09:24:59 -0700393 [objPath, asyncResp{std::move(asyncResp)}](
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800394 const boost::system::error_code& ec,
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200395 const dbus::utility::DBusPropertiesMap& properties) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700396 if (ec)
397 {
Ed Tanous62598e32023-07-17 17:06:25 -0700398 BMCWEB_LOG_DEBUG("DBUS response error");
Ed Tanousac106bf2023-06-07 09:24:59 -0700399 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -0700400 return;
401 }
402
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200403 const std::string* serialNumber = nullptr;
404 const std::string* model = nullptr;
405 const std::string* manufacturer = nullptr;
406 const std::string* partNumber = nullptr;
407 const std::string* sparePartNumber = nullptr;
408
409 const bool success = sdbusplus::unpackPropertiesNoThrow(
410 dbus_utils::UnpackErrorPrinter(), properties, "SerialNumber",
411 serialNumber, "Model", model, "Manufacturer", manufacturer,
412 "PartNumber", partNumber, "SparePartNumber", sparePartNumber);
413
414 if (!success)
Ed Tanous002d39b2022-05-31 08:59:27 -0700415 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700416 messages::internalError(asyncResp->res);
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200417 return;
418 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700419
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200420 if (serialNumber != nullptr && !serialNumber->empty())
421 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700422 asyncResp->res.jsonValue["SerialNumber"] = *serialNumber;
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200423 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700424
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200425 if ((model != nullptr) && !model->empty())
426 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700427 asyncResp->res.jsonValue["Model"] = *model;
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200428 }
429
430 if (manufacturer != nullptr)
431 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700432 asyncResp->res.jsonValue["Manufacturer"] = *manufacturer;
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200433
434 // Otherwise would be unexpected.
435 if (manufacturer->find("Intel") != std::string::npos)
Ed Tanous002d39b2022-05-31 08:59:27 -0700436 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700437 asyncResp->res.jsonValue["ProcessorArchitecture"] = "x86";
438 asyncResp->res.jsonValue["InstructionSet"] = "x86-64";
Ed Tanous002d39b2022-05-31 08:59:27 -0700439 }
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200440 else if (manufacturer->find("IBM") != std::string::npos)
Ed Tanous002d39b2022-05-31 08:59:27 -0700441 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700442 asyncResp->res.jsonValue["ProcessorArchitecture"] = "Power";
443 asyncResp->res.jsonValue["InstructionSet"] = "PowerISA";
Ed Tanous002d39b2022-05-31 08:59:27 -0700444 }
445 }
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200446
447 if (partNumber != nullptr)
448 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700449 asyncResp->res.jsonValue["PartNumber"] = *partNumber;
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200450 }
451
Brad Bishop6169de22022-09-14 13:08:32 -0400452 if (sparePartNumber != nullptr && !sparePartNumber->empty())
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200453 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700454 asyncResp->res.jsonValue["SparePartNumber"] = *sparePartNumber;
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200455 }
Patrick Williams5a39f772023-10-20 11:20:21 -0500456 });
Gunnar Millsac6a4442020-10-14 14:55:29 -0500457}
458
Ed Tanousac106bf2023-06-07 09:24:59 -0700459inline void getCpuRevisionData(std::shared_ptr<bmcweb::AsyncResp> asyncResp,
Gunnar Millsac6a4442020-10-14 14:55:29 -0500460 const std::string& service,
461 const std::string& objPath)
462{
Ed Tanous62598e32023-07-17 17:06:25 -0700463 BMCWEB_LOG_DEBUG("Get Cpu Revision Data");
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200464 sdbusplus::asio::getAllProperties(
465 *crow::connections::systemBus, service, objPath,
466 "xyz.openbmc_project.Inventory.Decorator.Revision",
Ed Tanousac106bf2023-06-07 09:24:59 -0700467 [objPath, asyncResp{std::move(asyncResp)}](
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800468 const boost::system::error_code& ec,
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200469 const dbus::utility::DBusPropertiesMap& properties) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700470 if (ec)
471 {
Ed Tanous62598e32023-07-17 17:06:25 -0700472 BMCWEB_LOG_DEBUG("DBUS response error");
Ed Tanousac106bf2023-06-07 09:24:59 -0700473 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -0700474 return;
475 }
Gunnar Millsac6a4442020-10-14 14:55:29 -0500476
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200477 const std::string* version = nullptr;
478
479 const bool success = sdbusplus::unpackPropertiesNoThrow(
480 dbus_utils::UnpackErrorPrinter(), properties, "Version", version);
481
482 if (!success)
Ed Tanous002d39b2022-05-31 08:59:27 -0700483 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700484 messages::internalError(asyncResp->res);
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200485 return;
Ed Tanous002d39b2022-05-31 08:59:27 -0700486 }
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200487
488 if (version != nullptr)
489 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700490 asyncResp->res.jsonValue["Version"] = *version;
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200491 }
Patrick Williams5a39f772023-10-20 11:20:21 -0500492 });
Gunnar Millsac6a4442020-10-14 14:55:29 -0500493}
494
zhanghch058d1b46d2021-04-01 11:18:24 +0800495inline void getAcceleratorDataByService(
Ed Tanousac106bf2023-06-07 09:24:59 -0700496 std::shared_ptr<bmcweb::AsyncResp> asyncResp, const std::string& acclrtrId,
zhanghch058d1b46d2021-04-01 11:18:24 +0800497 const std::string& service, const std::string& objPath)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500498{
Ed Tanous62598e32023-07-17 17:06:25 -0700499 BMCWEB_LOG_DEBUG("Get available system Accelerator resources by service.");
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200500 sdbusplus::asio::getAllProperties(
501 *crow::connections::systemBus, service, objPath, "",
Ed Tanousac106bf2023-06-07 09:24:59 -0700502 [acclrtrId, asyncResp{std::move(asyncResp)}](
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800503 const boost::system::error_code& ec,
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200504 const dbus::utility::DBusPropertiesMap& properties) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700505 if (ec)
506 {
Ed Tanous62598e32023-07-17 17:06:25 -0700507 BMCWEB_LOG_DEBUG("DBUS response error");
Ed Tanousac106bf2023-06-07 09:24:59 -0700508 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -0700509 return;
510 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700511
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200512 const bool* functional = nullptr;
513 const bool* present = nullptr;
514
515 const bool success = sdbusplus::unpackPropertiesNoThrow(
516 dbus_utils::UnpackErrorPrinter(), properties, "Functional",
517 functional, "Present", present);
518
519 if (!success)
Ed Tanous002d39b2022-05-31 08:59:27 -0700520 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700521 messages::internalError(asyncResp->res);
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200522 return;
Ed Tanous002d39b2022-05-31 08:59:27 -0700523 }
Gunnar Millsac6a4442020-10-14 14:55:29 -0500524
Ed Tanous002d39b2022-05-31 08:59:27 -0700525 std::string state = "Enabled";
526 std::string health = "OK";
Gunnar Millsac6a4442020-10-14 14:55:29 -0500527
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200528 if (present != nullptr && !*present)
Ed Tanous002d39b2022-05-31 08:59:27 -0700529 {
530 state = "Absent";
531 }
532
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200533 if (functional != nullptr && !*functional)
Ed Tanous002d39b2022-05-31 08:59:27 -0700534 {
535 if (state == "Enabled")
Gunnar Millsac6a4442020-10-14 14:55:29 -0500536 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700537 health = "Critical";
Gunnar Millsac6a4442020-10-14 14:55:29 -0500538 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700539 }
Gunnar Millsac6a4442020-10-14 14:55:29 -0500540
Ed Tanousac106bf2023-06-07 09:24:59 -0700541 asyncResp->res.jsonValue["Id"] = acclrtrId;
542 asyncResp->res.jsonValue["Name"] = "Processor";
543 asyncResp->res.jsonValue["Status"]["State"] = state;
544 asyncResp->res.jsonValue["Status"]["Health"] = health;
545 asyncResp->res.jsonValue["ProcessorType"] = "Accelerator";
Patrick Williams5a39f772023-10-20 11:20:21 -0500546 });
Gunnar Millsac6a4442020-10-14 14:55:29 -0500547}
548
Jonathan Domandba0c292020-12-02 15:34:13 -0800549// OperatingConfig D-Bus Types
550using TurboProfileProperty = std::vector<std::tuple<uint32_t, size_t>>;
551using BaseSpeedPrioritySettingsProperty =
552 std::vector<std::tuple<uint32_t, std::vector<uint32_t>>>;
553// uint32_t and size_t may or may not be the same type, requiring a dedup'd
554// variant
Jonathan Domandba0c292020-12-02 15:34:13 -0800555
556/**
557 * Fill out the HighSpeedCoreIDs in a Processor resource from the given
558 * OperatingConfig D-Bus property.
559 *
Ed Tanousac106bf2023-06-07 09:24:59 -0700560 * @param[in,out] asyncResp Async HTTP response.
Jonathan Domandba0c292020-12-02 15:34:13 -0800561 * @param[in] baseSpeedSettings Full list of base speed priority groups,
562 * to use to determine the list of high
563 * speed cores.
564 */
565inline void highSpeedCoreIdsHandler(
Ed Tanousac106bf2023-06-07 09:24:59 -0700566 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Jonathan Domandba0c292020-12-02 15:34:13 -0800567 const BaseSpeedPrioritySettingsProperty& baseSpeedSettings)
568{
569 // The D-Bus property does not indicate which bucket is the "high
570 // priority" group, so let's discern that by looking for the one with
571 // highest base frequency.
572 auto highPriorityGroup = baseSpeedSettings.cend();
573 uint32_t highestBaseSpeed = 0;
574 for (auto it = baseSpeedSettings.cbegin(); it != baseSpeedSettings.cend();
575 ++it)
576 {
577 const uint32_t baseFreq = std::get<uint32_t>(*it);
578 if (baseFreq > highestBaseSpeed)
579 {
580 highestBaseSpeed = baseFreq;
581 highPriorityGroup = it;
582 }
583 }
584
Ed Tanousac106bf2023-06-07 09:24:59 -0700585 nlohmann::json& jsonCoreIds = asyncResp->res.jsonValue["HighSpeedCoreIDs"];
Jonathan Domandba0c292020-12-02 15:34:13 -0800586 jsonCoreIds = nlohmann::json::array();
587
588 // There may not be any entries in the D-Bus property, so only populate
589 // if there was actually something there.
590 if (highPriorityGroup != baseSpeedSettings.cend())
591 {
592 jsonCoreIds = std::get<std::vector<uint32_t>>(*highPriorityGroup);
593 }
594}
595
596/**
597 * Fill out OperatingConfig related items in a Processor resource by requesting
598 * data from the given D-Bus object.
599 *
Ed Tanousac106bf2023-06-07 09:24:59 -0700600 * @param[in,out] asyncResp Async HTTP response.
Jonathan Domandba0c292020-12-02 15:34:13 -0800601 * @param[in] cpuId CPU D-Bus name.
602 * @param[in] service D-Bus service to query.
603 * @param[in] objPath D-Bus object to query.
604 */
Ed Tanousac106bf2023-06-07 09:24:59 -0700605inline void
606 getCpuConfigData(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
607 const std::string& cpuId, const std::string& service,
608 const std::string& objPath)
Jonathan Domandba0c292020-12-02 15:34:13 -0800609{
Ed Tanous62598e32023-07-17 17:06:25 -0700610 BMCWEB_LOG_INFO("Getting CPU operating configs for {}", cpuId);
Jonathan Domandba0c292020-12-02 15:34:13 -0800611
612 // First, GetAll CurrentOperatingConfig properties on the object
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200613 sdbusplus::asio::getAllProperties(
614 *crow::connections::systemBus, service, objPath,
615 "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig",
Ed Tanousac106bf2023-06-07 09:24:59 -0700616 [asyncResp, cpuId,
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800617 service](const boost::system::error_code& ec,
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200618 const dbus::utility::DBusPropertiesMap& properties) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700619 if (ec)
620 {
Ed Tanous62598e32023-07-17 17:06:25 -0700621 BMCWEB_LOG_WARNING("D-Bus error: {}, {}", ec, ec.message());
Ed Tanousac106bf2023-06-07 09:24:59 -0700622 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -0700623 return;
624 }
Jonathan Domandba0c292020-12-02 15:34:13 -0800625
Ed Tanousac106bf2023-06-07 09:24:59 -0700626 nlohmann::json& json = asyncResp->res.jsonValue;
Jonathan Domandba0c292020-12-02 15:34:13 -0800627
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200628 const sdbusplus::message::object_path* appliedConfig = nullptr;
629 const bool* baseSpeedPriorityEnabled = nullptr;
630
631 const bool success = sdbusplus::unpackPropertiesNoThrow(
632 dbus_utils::UnpackErrorPrinter(), properties, "AppliedConfig",
633 appliedConfig, "BaseSpeedPriorityEnabled",
634 baseSpeedPriorityEnabled);
635
636 if (!success)
Ed Tanous002d39b2022-05-31 08:59:27 -0700637 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700638 messages::internalError(asyncResp->res);
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200639 return;
Ed Tanous002d39b2022-05-31 08:59:27 -0700640 }
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200641
642 if (appliedConfig != nullptr)
643 {
644 const std::string& dbusPath = appliedConfig->str;
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200645 nlohmann::json::object_t operatingConfig;
Ed Tanousef4c65b2023-04-24 15:28:50 -0700646 operatingConfig["@odata.id"] = boost::urls::format(
Ed Tanous253f11b2024-05-16 09:38:31 -0700647 "/redfish/v1/Systems/{}/Processors/{}/OperatingConfigs",
648 BMCWEB_REDFISH_SYSTEM_URI_NAME, cpuId);
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200649 json["OperatingConfigs"] = std::move(operatingConfig);
650
651 // Reuse the D-Bus config object name for the Redfish
652 // URI
653 size_t baseNamePos = dbusPath.rfind('/');
654 if (baseNamePos == std::string::npos ||
655 baseNamePos == (dbusPath.size() - 1))
656 {
657 // If the AppliedConfig was somehow not a valid path,
658 // skip adding any more properties, since everything
659 // else is tied to this applied config.
Ed Tanousac106bf2023-06-07 09:24:59 -0700660 messages::internalError(asyncResp->res);
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200661 return;
662 }
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200663 nlohmann::json::object_t appliedOperatingConfig;
Ed Tanousef4c65b2023-04-24 15:28:50 -0700664 appliedOperatingConfig["@odata.id"] = boost::urls::format(
Ed Tanous253f11b2024-05-16 09:38:31 -0700665 "/redfish/v1/Systems/{}/Processors/{}/OperatingConfigs/{}",
666 BMCWEB_REDFISH_SYSTEM_URI_NAME, cpuId,
667 dbusPath.substr(baseNamePos + 1));
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200668 json["AppliedOperatingConfig"] = std::move(appliedOperatingConfig);
669
670 // Once we found the current applied config, queue another
671 // request to read the base freq core ids out of that
672 // config.
673 sdbusplus::asio::getProperty<BaseSpeedPrioritySettingsProperty>(
674 *crow::connections::systemBus, service, dbusPath,
675 "xyz.openbmc_project.Inventory.Item.Cpu."
676 "OperatingConfig",
677 "BaseSpeedPrioritySettings",
Ed Tanousac106bf2023-06-07 09:24:59 -0700678 [asyncResp](
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800679 const boost::system::error_code& ec2,
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200680 const BaseSpeedPrioritySettingsProperty& baseSpeedList) {
681 if (ec2)
682 {
Ed Tanous62598e32023-07-17 17:06:25 -0700683 BMCWEB_LOG_WARNING("D-Bus Property Get error: {}", ec2);
Ed Tanousac106bf2023-06-07 09:24:59 -0700684 messages::internalError(asyncResp->res);
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200685 return;
686 }
687
Ed Tanousac106bf2023-06-07 09:24:59 -0700688 highSpeedCoreIdsHandler(asyncResp, baseSpeedList);
Patrick Williams5a39f772023-10-20 11:20:21 -0500689 });
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200690 }
691
692 if (baseSpeedPriorityEnabled != nullptr)
693 {
694 json["BaseSpeedPriorityState"] =
695 *baseSpeedPriorityEnabled ? "Enabled" : "Disabled";
696 }
Patrick Williams5a39f772023-10-20 11:20:21 -0500697 });
Jonathan Domandba0c292020-12-02 15:34:13 -0800698}
699
SunnySrivastava1984cba4f442021-01-07 12:48:16 -0600700/**
701 * @brief Fill out location info of a processor by
702 * requesting data from the given D-Bus object.
703 *
Ed Tanousac106bf2023-06-07 09:24:59 -0700704 * @param[in,out] asyncResp Async HTTP response.
SunnySrivastava1984cba4f442021-01-07 12:48:16 -0600705 * @param[in] service D-Bus service to query.
706 * @param[in] objPath D-Bus object to query.
707 */
Ed Tanousac106bf2023-06-07 09:24:59 -0700708inline void getCpuLocationCode(std::shared_ptr<bmcweb::AsyncResp> asyncResp,
SunnySrivastava1984cba4f442021-01-07 12:48:16 -0600709 const std::string& service,
710 const std::string& objPath)
711{
Ed Tanous62598e32023-07-17 17:06:25 -0700712 BMCWEB_LOG_DEBUG("Get Cpu Location Data");
Jonathan Doman1e1e5982021-06-11 09:36:17 -0700713 sdbusplus::asio::getProperty<std::string>(
714 *crow::connections::systemBus, service, objPath,
715 "xyz.openbmc_project.Inventory.Decorator.LocationCode", "LocationCode",
Ed Tanousac106bf2023-06-07 09:24:59 -0700716 [objPath, asyncResp{std::move(asyncResp)}](
717 const boost::system::error_code& ec, const std::string& property) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700718 if (ec)
719 {
Ed Tanous62598e32023-07-17 17:06:25 -0700720 BMCWEB_LOG_DEBUG("DBUS response error");
Ed Tanousac106bf2023-06-07 09:24:59 -0700721 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -0700722 return;
723 }
SunnySrivastava1984cba4f442021-01-07 12:48:16 -0600724
Ed Tanousac106bf2023-06-07 09:24:59 -0700725 asyncResp->res.jsonValue["Location"]["PartLocation"]["ServiceLabel"] =
Ed Tanous002d39b2022-05-31 08:59:27 -0700726 property;
Patrick Williams5a39f772023-10-20 11:20:21 -0500727 });
SunnySrivastava1984cba4f442021-01-07 12:48:16 -0600728}
729
Jonathan Domanc9514482021-02-24 09:20:51 -0800730/**
Jonathan Doman49e429c2021-03-03 13:11:44 -0800731 * Populate the unique identifier in a Processor resource by requesting data
732 * from the given D-Bus object.
733 *
Ed Tanousac106bf2023-06-07 09:24:59 -0700734 * @param[in,out] asyncResp Async HTTP response.
Jonathan Doman49e429c2021-03-03 13:11:44 -0800735 * @param[in] service D-Bus service to query.
736 * @param[in] objPath D-Bus object to query.
737 */
Ed Tanousac106bf2023-06-07 09:24:59 -0700738inline void getCpuUniqueId(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Jonathan Doman49e429c2021-03-03 13:11:44 -0800739 const std::string& service,
740 const std::string& objectPath)
741{
Ed Tanous62598e32023-07-17 17:06:25 -0700742 BMCWEB_LOG_DEBUG("Get CPU UniqueIdentifier");
Jonathan Doman1e1e5982021-06-11 09:36:17 -0700743 sdbusplus::asio::getProperty<std::string>(
744 *crow::connections::systemBus, service, objectPath,
745 "xyz.openbmc_project.Inventory.Decorator.UniqueIdentifier",
746 "UniqueIdentifier",
Ed Tanousac106bf2023-06-07 09:24:59 -0700747 [asyncResp](const boost::system::error_code& ec,
748 const std::string& id) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700749 if (ec)
750 {
Ed Tanous62598e32023-07-17 17:06:25 -0700751 BMCWEB_LOG_ERROR("Failed to read cpu unique id: {}", ec);
Ed Tanousac106bf2023-06-07 09:24:59 -0700752 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -0700753 return;
754 }
Ed Tanousac106bf2023-06-07 09:24:59 -0700755 asyncResp->res
756 .jsonValue["ProcessorId"]["ProtectedIdentificationNumber"] = id;
Patrick Williams5a39f772023-10-20 11:20:21 -0500757 });
Jonathan Doman49e429c2021-03-03 13:11:44 -0800758}
759
760/**
Jonathan Domanc9514482021-02-24 09:20:51 -0800761 * Find the D-Bus object representing the requested Processor, and call the
762 * handler with the results. If matching object is not found, add 404 error to
763 * response and don't call the handler.
764 *
765 * @param[in,out] resp Async HTTP response.
766 * @param[in] processorId Redfish Processor Id.
767 * @param[in] handler Callback to continue processing request upon
768 * successfully finding object.
769 */
770template <typename Handler>
zhanghch058d1b46d2021-04-01 11:18:24 +0800771inline void getProcessorObject(const std::shared_ptr<bmcweb::AsyncResp>& resp,
Jonathan Domanc9514482021-02-24 09:20:51 -0800772 const std::string& processorId,
773 Handler&& handler)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500774{
Ed Tanous62598e32023-07-17 17:06:25 -0700775 BMCWEB_LOG_DEBUG("Get available system processor resources.");
Gunnar Millsac6a4442020-10-14 14:55:29 -0500776
Jonathan Domanc9514482021-02-24 09:20:51 -0800777 // GetSubTree on all interfaces which provide info about a Processor
Chris Caindfbf7de2023-04-13 16:01:04 -0500778 constexpr std::array<std::string_view, 9> interfaces = {
George Liue99073f2022-12-09 11:06:16 +0800779 "xyz.openbmc_project.Common.UUID",
780 "xyz.openbmc_project.Inventory.Decorator.Asset",
781 "xyz.openbmc_project.Inventory.Decorator.Revision",
782 "xyz.openbmc_project.Inventory.Item.Cpu",
783 "xyz.openbmc_project.Inventory.Decorator.LocationCode",
784 "xyz.openbmc_project.Inventory.Item.Accelerator",
785 "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig",
Chris Caindfbf7de2023-04-13 16:01:04 -0500786 "xyz.openbmc_project.Inventory.Decorator.UniqueIdentifier",
787 "xyz.openbmc_project.Control.Power.Throttle"};
George Liue99073f2022-12-09 11:06:16 +0800788 dbus::utility::getSubTree(
789 "/xyz/openbmc_project/inventory", 0, interfaces,
Jonathan Domanc9514482021-02-24 09:20:51 -0800790 [resp, processorId, handler = std::forward<Handler>(handler)](
George Liue99073f2022-12-09 11:06:16 +0800791 const boost::system::error_code& ec,
792 const dbus::utility::MapperGetSubTreeResponse& subtree) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700793 if (ec)
794 {
Ed Tanous62598e32023-07-17 17:06:25 -0700795 BMCWEB_LOG_DEBUG("DBUS response error: {}", ec);
Ed Tanous002d39b2022-05-31 08:59:27 -0700796 messages::internalError(resp->res);
797 return;
798 }
799 for (const auto& [objectPath, serviceMap] : subtree)
800 {
801 // Ignore any objects which don't end with our desired cpu name
Ed Tanous11ba3972022-07-11 09:50:41 -0700802 if (!objectPath.ends_with(processorId))
Gunnar Millsac6a4442020-10-14 14:55:29 -0500803 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700804 continue;
Gunnar Millsac6a4442020-10-14 14:55:29 -0500805 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700806
807 bool found = false;
808 // Filter out objects that don't have the CPU-specific
809 // interfaces to make sure we can return 404 on non-CPUs
810 // (e.g. /redfish/../Processors/dimm0)
811 for (const auto& [serviceName, interfaceList] : serviceMap)
Gunnar Millsac6a4442020-10-14 14:55:29 -0500812 {
Ed Tanous3544d2a2023-08-06 18:12:20 -0700813 if (std::ranges::find_first_of(interfaceList,
814 processorInterfaces) !=
815 std::end(interfaceList))
Gunnar Millsac6a4442020-10-14 14:55:29 -0500816 {
Ed Tanous002d39b2022-05-31 08:59:27 -0700817 found = true;
818 break;
Jonathan Doman2bab9832020-12-02 15:27:40 -0800819 }
Gunnar Millsac6a4442020-10-14 14:55:29 -0500820 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700821
822 if (!found)
823 {
824 continue;
825 }
826
827 // Process the first object which does match our cpu name and
828 // required interfaces, and potentially ignore any other
829 // matching objects. Assume all interfaces we want to process
830 // must be on the same object path.
831
Ed Tanous8a592812022-06-04 09:06:59 -0700832 handler(objectPath, serviceMap);
Ed Tanous002d39b2022-05-31 08:59:27 -0700833 return;
834 }
835 messages::resourceNotFound(resp->res, "Processor", processorId);
Patrick Williams5a39f772023-10-20 11:20:21 -0500836 });
Gunnar Millsac6a4442020-10-14 14:55:29 -0500837}
838
Ed Tanousac106bf2023-06-07 09:24:59 -0700839inline void
840 getProcessorData(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
841 const std::string& processorId,
842 const std::string& objectPath,
843 const dbus::utility::MapperServiceMap& serviceMap)
Jonathan Domanc9514482021-02-24 09:20:51 -0800844{
845 for (const auto& [serviceName, interfaceList] : serviceMap)
846 {
847 for (const auto& interface : interfaceList)
848 {
849 if (interface == "xyz.openbmc_project.Inventory.Decorator.Asset")
850 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700851 getCpuAssetData(asyncResp, serviceName, objectPath);
Jonathan Domanc9514482021-02-24 09:20:51 -0800852 }
George Liu0fda0f12021-11-16 10:06:17 +0800853 else if (interface ==
854 "xyz.openbmc_project.Inventory.Decorator.Revision")
Jonathan Domanc9514482021-02-24 09:20:51 -0800855 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700856 getCpuRevisionData(asyncResp, serviceName, objectPath);
Jonathan Domanc9514482021-02-24 09:20:51 -0800857 }
858 else if (interface == "xyz.openbmc_project.Inventory.Item.Cpu")
859 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700860 getCpuDataByService(asyncResp, processorId, serviceName,
Jonathan Domanc9514482021-02-24 09:20:51 -0800861 objectPath);
862 }
George Liu0fda0f12021-11-16 10:06:17 +0800863 else if (interface ==
864 "xyz.openbmc_project.Inventory.Item.Accelerator")
Jonathan Domanc9514482021-02-24 09:20:51 -0800865 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700866 getAcceleratorDataByService(asyncResp, processorId, serviceName,
Jonathan Domanc9514482021-02-24 09:20:51 -0800867 objectPath);
868 }
George Liu0fda0f12021-11-16 10:06:17 +0800869 else if (
870 interface ==
871 "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig")
Jonathan Domanc9514482021-02-24 09:20:51 -0800872 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700873 getCpuConfigData(asyncResp, processorId, serviceName,
874 objectPath);
Jonathan Domanc9514482021-02-24 09:20:51 -0800875 }
George Liu0fda0f12021-11-16 10:06:17 +0800876 else if (interface ==
877 "xyz.openbmc_project.Inventory.Decorator.LocationCode")
Jonathan Domanc9514482021-02-24 09:20:51 -0800878 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700879 getCpuLocationCode(asyncResp, serviceName, objectPath);
Jonathan Domanc9514482021-02-24 09:20:51 -0800880 }
Sharad Yadav71b82f22021-05-10 15:11:39 +0530881 else if (interface == "xyz.openbmc_project.Common.UUID")
882 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700883 getProcessorUUID(asyncResp, serviceName, objectPath);
Sharad Yadav71b82f22021-05-10 15:11:39 +0530884 }
George Liu0fda0f12021-11-16 10:06:17 +0800885 else if (interface ==
886 "xyz.openbmc_project.Inventory.Decorator.UniqueIdentifier")
Jonathan Doman49e429c2021-03-03 13:11:44 -0800887 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700888 getCpuUniqueId(asyncResp, serviceName, objectPath);
Jonathan Doman49e429c2021-03-03 13:11:44 -0800889 }
Chris Caindfbf7de2023-04-13 16:01:04 -0500890 else if (interface == "xyz.openbmc_project.Control.Power.Throttle")
891 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700892 getThrottleProperties(asyncResp, serviceName, objectPath);
Chris Caindfbf7de2023-04-13 16:01:04 -0500893 }
Jonathan Domanc9514482021-02-24 09:20:51 -0800894 }
895 }
896}
897
Jonathan Domandba0c292020-12-02 15:34:13 -0800898/**
899 * Request all the properties for the given D-Bus object and fill out the
900 * related entries in the Redfish OperatingConfig response.
901 *
Ed Tanousac106bf2023-06-07 09:24:59 -0700902 * @param[in,out] asyncResp Async HTTP response.
Jonathan Domandba0c292020-12-02 15:34:13 -0800903 * @param[in] service D-Bus service name to query.
904 * @param[in] objPath D-Bus object to query.
905 */
zhanghch058d1b46d2021-04-01 11:18:24 +0800906inline void
Ed Tanousac106bf2023-06-07 09:24:59 -0700907 getOperatingConfigData(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
zhanghch058d1b46d2021-04-01 11:18:24 +0800908 const std::string& service,
909 const std::string& objPath)
Jonathan Domandba0c292020-12-02 15:34:13 -0800910{
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200911 sdbusplus::asio::getAllProperties(
912 *crow::connections::systemBus, service, objPath,
913 "xyz.openbmc_project.Inventory.Item.Cpu.OperatingConfig",
Ed Tanousac106bf2023-06-07 09:24:59 -0700914 [asyncResp](const boost::system::error_code& ec,
915 const dbus::utility::DBusPropertiesMap& properties) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700916 if (ec)
917 {
Ed Tanous62598e32023-07-17 17:06:25 -0700918 BMCWEB_LOG_WARNING("D-Bus error: {}, {}", ec, ec.message());
Ed Tanousac106bf2023-06-07 09:24:59 -0700919 messages::internalError(asyncResp->res);
Ed Tanous002d39b2022-05-31 08:59:27 -0700920 return;
921 }
922
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200923 const size_t* availableCoreCount = nullptr;
924 const uint32_t* baseSpeed = nullptr;
925 const uint32_t* maxJunctionTemperature = nullptr;
926 const uint32_t* maxSpeed = nullptr;
927 const uint32_t* powerLimit = nullptr;
928 const TurboProfileProperty* turboProfile = nullptr;
929 const BaseSpeedPrioritySettingsProperty* baseSpeedPrioritySettings =
930 nullptr;
931
932 const bool success = sdbusplus::unpackPropertiesNoThrow(
933 dbus_utils::UnpackErrorPrinter(), properties, "AvailableCoreCount",
934 availableCoreCount, "BaseSpeed", baseSpeed,
935 "MaxJunctionTemperature", maxJunctionTemperature, "MaxSpeed",
936 maxSpeed, "PowerLimit", powerLimit, "TurboProfile", turboProfile,
937 "BaseSpeedPrioritySettings", baseSpeedPrioritySettings);
938
939 if (!success)
Ed Tanous002d39b2022-05-31 08:59:27 -0700940 {
Ed Tanousac106bf2023-06-07 09:24:59 -0700941 messages::internalError(asyncResp->res);
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200942 return;
943 }
Ed Tanous002d39b2022-05-31 08:59:27 -0700944
Ed Tanousac106bf2023-06-07 09:24:59 -0700945 nlohmann::json& json = asyncResp->res.jsonValue;
Ed Tanous002d39b2022-05-31 08:59:27 -0700946
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200947 if (availableCoreCount != nullptr)
948 {
949 json["TotalAvailableCoreCount"] = *availableCoreCount;
950 }
951
952 if (baseSpeed != nullptr)
953 {
954 json["BaseSpeedMHz"] = *baseSpeed;
955 }
956
957 if (maxJunctionTemperature != nullptr)
958 {
959 json["MaxJunctionTemperatureCelsius"] = *maxJunctionTemperature;
960 }
961
962 if (maxSpeed != nullptr)
963 {
964 json["MaxSpeedMHz"] = *maxSpeed;
965 }
966
967 if (powerLimit != nullptr)
968 {
969 json["TDPWatts"] = *powerLimit;
970 }
971
972 if (turboProfile != nullptr)
973 {
974 nlohmann::json& turboArray = json["TurboProfile"];
975 turboArray = nlohmann::json::array();
976 for (const auto& [turboSpeed, coreCount] : *turboProfile)
977 {
978 nlohmann::json::object_t turbo;
979 turbo["ActiveCoreCount"] = coreCount;
980 turbo["MaxSpeedMHz"] = turboSpeed;
Patrick Williamsb2ba3072023-05-12 10:27:39 -0500981 turboArray.emplace_back(std::move(turbo));
Ed Tanous002d39b2022-05-31 08:59:27 -0700982 }
983 }
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200984
985 if (baseSpeedPrioritySettings != nullptr)
986 {
987 nlohmann::json& baseSpeedArray = json["BaseSpeedPrioritySettings"];
988 baseSpeedArray = nlohmann::json::array();
989 for (const auto& [baseSpeedMhz, coreList] :
990 *baseSpeedPrioritySettings)
991 {
992 nlohmann::json::object_t speed;
993 speed["CoreCount"] = coreList.size();
994 speed["CoreIDs"] = coreList;
995 speed["BaseSpeedMHz"] = baseSpeedMhz;
Patrick Williamsb2ba3072023-05-12 10:27:39 -0500996 baseSpeedArray.emplace_back(std::move(speed));
Krzysztof Grobelny351053f2022-07-28 15:44:22 +0200997 }
998 }
Patrick Williams5a39f772023-10-20 11:20:21 -0500999 });
Jonathan Domandba0c292020-12-02 15:34:13 -08001000}
1001
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001002/**
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001003 * Handle the PATCH operation of the AppliedOperatingConfig property. Do basic
1004 * validation of the input data, and then set the D-Bus property.
1005 *
1006 * @param[in,out] resp Async HTTP response.
1007 * @param[in] processorId Processor's Id.
1008 * @param[in] appliedConfigUri New property value to apply.
1009 * @param[in] cpuObjectPath Path of CPU object to modify.
1010 * @param[in] serviceMap Service map for CPU object.
1011 */
1012inline void patchAppliedOperatingConfig(
1013 const std::shared_ptr<bmcweb::AsyncResp>& resp,
1014 const std::string& processorId, const std::string& appliedConfigUri,
Shantappa Teekappanavar5df6eda2022-01-18 12:29:28 -06001015 const std::string& cpuObjectPath,
1016 const dbus::utility::MapperServiceMap& serviceMap)
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001017{
1018 // Check that the property even exists by checking for the interface
1019 const std::string* controlService = nullptr;
1020 for (const auto& [serviceName, interfaceList] : serviceMap)
1021 {
Ed Tanous3544d2a2023-08-06 18:12:20 -07001022 if (std::ranges::find(interfaceList,
1023 "xyz.openbmc_project.Control.Processor."
1024 "CurrentOperatingConfig") != interfaceList.end())
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001025 {
1026 controlService = &serviceName;
1027 break;
1028 }
1029 }
1030
1031 if (controlService == nullptr)
1032 {
1033 messages::internalError(resp->res);
1034 return;
1035 }
1036
1037 // Check that the config URI is a child of the cpu URI being patched.
Ed Tanous253f11b2024-05-16 09:38:31 -07001038 std::string expectedPrefix(std::format("/redfish/v1/Systems/{}/Processors/",
1039 BMCWEB_REDFISH_SYSTEM_URI_NAME));
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001040 expectedPrefix += processorId;
1041 expectedPrefix += "/OperatingConfigs/";
Ed Tanous11ba3972022-07-11 09:50:41 -07001042 if (!appliedConfigUri.starts_with(expectedPrefix) ||
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001043 expectedPrefix.size() == appliedConfigUri.size())
1044 {
Asmitha Karunanithi87c44962024-04-04 18:28:33 +00001045 messages::propertyValueIncorrect(resp->res, "AppliedOperatingConfig",
1046 appliedConfigUri);
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001047 return;
1048 }
1049
1050 // Generate the D-Bus path of the OperatingConfig object, by assuming it's a
1051 // direct child of the CPU object.
1052 // Strip the expectedPrefix from the config URI to get the "filename", and
1053 // append to the CPU's path.
1054 std::string configBaseName = appliedConfigUri.substr(expectedPrefix.size());
1055 sdbusplus::message::object_path configPath(cpuObjectPath);
1056 configPath /= configBaseName;
1057
Ed Tanous62598e32023-07-17 17:06:25 -07001058 BMCWEB_LOG_INFO("Setting config to {}", configPath.str);
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001059
1060 // Set the property, with handler to check error responses
Asmitha Karunanithi87c44962024-04-04 18:28:33 +00001061 setDbusProperty(
1062 resp, *controlService, cpuObjectPath,
George Liu9ae226f2023-06-21 17:56:46 +08001063 "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig",
Asmitha Karunanithi87c44962024-04-04 18:28:33 +00001064 "AppliedConfig", "AppliedOperatingConfig", configPath);
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001065}
1066
Ed Tanousac106bf2023-06-07 09:24:59 -07001067inline void
1068 handleProcessorHead(crow::App& app, const crow::Request& req,
1069 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
1070 const std::string& /* systemName */,
1071 const std::string& /* processorId */)
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001072{
Ed Tanousac106bf2023-06-07 09:24:59 -07001073 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001074 {
1075 return;
1076 }
Ed Tanousac106bf2023-06-07 09:24:59 -07001077 asyncResp->res.addHeader(
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001078 boost::beast::http::field::link,
1079 "</redfish/v1/JsonSchemas/Processor/Processor.json>; rel=describedby");
1080}
1081
1082inline void handleProcessorCollectionHead(
1083 crow::App& app, const crow::Request& req,
Ed Tanousac106bf2023-06-07 09:24:59 -07001084 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001085 const std::string& /* systemName */)
1086{
Ed Tanousac106bf2023-06-07 09:24:59 -07001087 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001088 {
1089 return;
1090 }
Ed Tanousac106bf2023-06-07 09:24:59 -07001091 asyncResp->res.addHeader(
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001092 boost::beast::http::field::link,
1093 "</redfish/v1/JsonSchemas/ProcessorCollection/ProcessorCollection.json>; rel=describedby");
1094}
1095
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001096inline void requestRoutesOperatingConfigCollection(App& app)
Jonathan Domandba0c292020-12-02 15:34:13 -08001097{
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001098 BMCWEB_ROUTE(app,
1099 "/redfish/v1/Systems/<str>/Processors/<str>/OperatingConfigs/")
Ed Tanoused398212021-06-09 17:05:54 -07001100 .privileges(redfish::privileges::getOperatingConfigCollection)
Ed Tanous002d39b2022-05-31 08:59:27 -07001101 .methods(boost::beast::http::verb::get)(
1102 [&app](const crow::Request& req,
1103 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001104 const std::string& systemName, const std::string& cpuName) {
Carson Labrado3ba00072022-06-06 19:40:56 +00001105 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07001106 {
1107 return;
1108 }
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001109
Ed Tanous25b54db2024-04-17 15:40:31 -07001110 if constexpr (BMCWEB_EXPERIMENTAL_REDFISH_MULTI_COMPUTER_SYSTEM)
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001111 {
1112 // Option currently returns no systems. TBD
1113 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1114 systemName);
1115 return;
1116 }
1117
Ed Tanous253f11b2024-05-16 09:38:31 -07001118 if (systemName != BMCWEB_REDFISH_SYSTEM_URI_NAME)
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001119 {
1120 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1121 systemName);
1122 return;
1123 }
Ed Tanous002d39b2022-05-31 08:59:27 -07001124 asyncResp->res.jsonValue["@odata.type"] =
1125 "#OperatingConfigCollection.OperatingConfigCollection";
Ed Tanousef4c65b2023-04-24 15:28:50 -07001126 asyncResp->res.jsonValue["@odata.id"] = boost::urls::format(
Ed Tanous253f11b2024-05-16 09:38:31 -07001127 "/redfish/v1/Systems/{}/Processors/{}/OperatingConfigs",
1128 BMCWEB_REDFISH_SYSTEM_URI_NAME, cpuName);
Ed Tanous002d39b2022-05-31 08:59:27 -07001129 asyncResp->res.jsonValue["Name"] = "Operating Config Collection";
1130
1131 // First find the matching CPU object so we know how to
1132 // constrain our search for related Config objects.
George Liu7a1dbc42022-12-07 16:03:22 +08001133 const std::array<std::string_view, 1> interfaces = {
1134 "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig"};
1135 dbus::utility::getSubTreePaths(
1136 "/xyz/openbmc_project/inventory", 0, interfaces,
Ed Tanous002d39b2022-05-31 08:59:27 -07001137 [asyncResp, cpuName](
George Liu7a1dbc42022-12-07 16:03:22 +08001138 const boost::system::error_code& ec,
Ed Tanous002d39b2022-05-31 08:59:27 -07001139 const dbus::utility::MapperGetSubTreePathsResponse& objects) {
1140 if (ec)
Ed Tanous45ca1b82022-03-25 13:07:27 -07001141 {
Ed Tanous62598e32023-07-17 17:06:25 -07001142 BMCWEB_LOG_WARNING("D-Bus error: {}, {}", ec, ec.message());
Ed Tanous002d39b2022-05-31 08:59:27 -07001143 messages::internalError(asyncResp->res);
Ed Tanous45ca1b82022-03-25 13:07:27 -07001144 return;
1145 }
Jonathan Domandba0c292020-12-02 15:34:13 -08001146
Ed Tanous002d39b2022-05-31 08:59:27 -07001147 for (const std::string& object : objects)
1148 {
Ed Tanous11ba3972022-07-11 09:50:41 -07001149 if (!object.ends_with(cpuName))
Ed Tanous002d39b2022-05-31 08:59:27 -07001150 {
1151 continue;
1152 }
George Liu0fda0f12021-11-16 10:06:17 +08001153
Ed Tanous002d39b2022-05-31 08:59:27 -07001154 // Not expected that there will be multiple matching
1155 // CPU objects, but if there are just use the first
1156 // one.
Jonathan Domandba0c292020-12-02 15:34:13 -08001157
Ed Tanous002d39b2022-05-31 08:59:27 -07001158 // Use the common search routine to construct the
1159 // Collection of all Config objects under this CPU.
Patrick Williams5a39f772023-10-20 11:20:21 -05001160 constexpr std::array<std::string_view, 1> interface{
1161 "xyz.openbmc_project.Inventory.Item.Cpu.OperatingConfig"};
Ed Tanous002d39b2022-05-31 08:59:27 -07001162 collection_util::getCollectionMembers(
1163 asyncResp,
Ed Tanousef4c65b2023-04-24 15:28:50 -07001164 boost::urls::format(
Ed Tanous253f11b2024-05-16 09:38:31 -07001165 "/redfish/v1/Systems/{}/Processors/{}/OperatingConfigs",
1166 BMCWEB_REDFISH_SYSTEM_URI_NAME, cpuName),
Lakshmi Yadlapati36b5f1e2023-09-26 23:53:28 -05001167 interface, object);
Ed Tanous002d39b2022-05-31 08:59:27 -07001168 return;
1169 }
George Liu0fda0f12021-11-16 10:06:17 +08001170 });
Patrick Williams5a39f772023-10-20 11:20:21 -05001171 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001172}
1173
1174inline void requestRoutesOperatingConfig(App& app)
1175{
1176 BMCWEB_ROUTE(
1177 app,
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001178 "/redfish/v1/Systems/<str>/Processors/<str>/OperatingConfigs/<str>/")
Ed Tanoused398212021-06-09 17:05:54 -07001179 .privileges(redfish::privileges::getOperatingConfig)
Ed Tanous002d39b2022-05-31 08:59:27 -07001180 .methods(boost::beast::http::verb::get)(
1181 [&app](const crow::Request& req,
1182 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001183 const std::string& systemName, const std::string& cpuName,
1184 const std::string& configName) {
Carson Labrado3ba00072022-06-06 19:40:56 +00001185 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07001186 {
1187 return;
1188 }
Ed Tanous25b54db2024-04-17 15:40:31 -07001189 if constexpr (BMCWEB_EXPERIMENTAL_REDFISH_MULTI_COMPUTER_SYSTEM)
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001190 {
1191 // Option currently returns no systems. TBD
1192 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1193 systemName);
1194 return;
1195 }
1196
Ed Tanous253f11b2024-05-16 09:38:31 -07001197 if (systemName != BMCWEB_REDFISH_SYSTEM_URI_NAME)
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001198 {
1199 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1200 systemName);
1201 return;
1202 }
Ed Tanous002d39b2022-05-31 08:59:27 -07001203 // Ask for all objects implementing OperatingConfig so we can search
1204 // for one with a matching name
George Liue99073f2022-12-09 11:06:16 +08001205 constexpr std::array<std::string_view, 1> interfaces = {
1206 "xyz.openbmc_project.Inventory.Item.Cpu.OperatingConfig"};
1207 dbus::utility::getSubTree(
1208 "/xyz/openbmc_project/inventory", 0, interfaces,
Ed Tanous39662a32023-02-06 15:09:46 -08001209 [asyncResp, cpuName, configName](
George Liue99073f2022-12-09 11:06:16 +08001210 const boost::system::error_code& ec,
Ed Tanous002d39b2022-05-31 08:59:27 -07001211 const dbus::utility::MapperGetSubTreeResponse& subtree) {
1212 if (ec)
Ed Tanous45ca1b82022-03-25 13:07:27 -07001213 {
Ed Tanous62598e32023-07-17 17:06:25 -07001214 BMCWEB_LOG_WARNING("D-Bus error: {}, {}", ec, ec.message());
Ed Tanous002d39b2022-05-31 08:59:27 -07001215 messages::internalError(asyncResp->res);
Ed Tanous45ca1b82022-03-25 13:07:27 -07001216 return;
1217 }
Ed Tanous002d39b2022-05-31 08:59:27 -07001218 const std::string expectedEnding = cpuName + '/' + configName;
1219 for (const auto& [objectPath, serviceMap] : subtree)
1220 {
1221 // Ignore any configs without matching cpuX/configY
Ed Tanous11ba3972022-07-11 09:50:41 -07001222 if (!objectPath.ends_with(expectedEnding) || serviceMap.empty())
Ed Tanous002d39b2022-05-31 08:59:27 -07001223 {
1224 continue;
1225 }
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001226
Ed Tanous002d39b2022-05-31 08:59:27 -07001227 nlohmann::json& json = asyncResp->res.jsonValue;
1228 json["@odata.type"] = "#OperatingConfig.v1_0_0.OperatingConfig";
Ed Tanousef4c65b2023-04-24 15:28:50 -07001229 json["@odata.id"] = boost::urls::format(
Ed Tanous253f11b2024-05-16 09:38:31 -07001230 "/redfish/v1/Systems/{}/Processors/{}/OperatingConfigs/{}",
1231 BMCWEB_REDFISH_SYSTEM_URI_NAME, cpuName, configName);
Ed Tanous002d39b2022-05-31 08:59:27 -07001232 json["Name"] = "Processor Profile";
1233 json["Id"] = configName;
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001234
Ed Tanous002d39b2022-05-31 08:59:27 -07001235 // Just use the first implementation of the object - not
1236 // expected that there would be multiple matching
1237 // services
1238 getOperatingConfigData(asyncResp, serviceMap.begin()->first,
1239 objectPath);
1240 return;
1241 }
1242 messages::resourceNotFound(asyncResp->res, "OperatingConfig",
1243 configName);
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001244 });
Patrick Williams5a39f772023-10-20 11:20:21 -05001245 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001246}
Jonathan Domandba0c292020-12-02 15:34:13 -08001247
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001248inline void requestRoutesProcessorCollection(App& app)
Gunnar Millsac6a4442020-10-14 14:55:29 -05001249{
Gunnar Millsac6a4442020-10-14 14:55:29 -05001250 /**
1251 * Functions triggers appropriate requests on DBus
1252 */
Ed Tanous22d268c2022-05-19 09:39:07 -07001253 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Processors/")
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001254 .privileges(redfish::privileges::headProcessorCollection)
1255 .methods(boost::beast::http::verb::head)(
1256 std::bind_front(handleProcessorCollectionHead, std::ref(app)));
1257
1258 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Processors/")
Ed Tanoused398212021-06-09 17:05:54 -07001259 .privileges(redfish::privileges::getProcessorCollection)
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001260 .methods(boost::beast::http::verb::get)(
Ed Tanous45ca1b82022-03-25 13:07:27 -07001261 [&app](const crow::Request& req,
Ed Tanous22d268c2022-05-19 09:39:07 -07001262 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
1263 const std::string& systemName) {
Carson Labrado3ba00072022-06-06 19:40:56 +00001264 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07001265 {
1266 return;
1267 }
Ed Tanous25b54db2024-04-17 15:40:31 -07001268 if constexpr (BMCWEB_EXPERIMENTAL_REDFISH_MULTI_COMPUTER_SYSTEM)
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001269 {
1270 // Option currently returns no systems. TBD
1271 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1272 systemName);
1273 return;
1274 }
1275
Ed Tanous253f11b2024-05-16 09:38:31 -07001276 if (systemName != BMCWEB_REDFISH_SYSTEM_URI_NAME)
Ed Tanous22d268c2022-05-19 09:39:07 -07001277 {
1278 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1279 systemName);
1280 return;
1281 }
1282
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001283 asyncResp->res.addHeader(
1284 boost::beast::http::field::link,
1285 "</redfish/v1/JsonSchemas/ProcessorCollection/ProcessorCollection.json>; rel=describedby");
1286
Ed Tanous002d39b2022-05-31 08:59:27 -07001287 asyncResp->res.jsonValue["@odata.type"] =
1288 "#ProcessorCollection.ProcessorCollection";
1289 asyncResp->res.jsonValue["Name"] = "Processor Collection";
Gunnar Millsac6a4442020-10-14 14:55:29 -05001290
Ed Tanous002d39b2022-05-31 08:59:27 -07001291 asyncResp->res.jsonValue["@odata.id"] =
Ed Tanous253f11b2024-05-16 09:38:31 -07001292 std::format("/redfish/v1/Systems/{}/Processors",
1293 BMCWEB_REDFISH_SYSTEM_URI_NAME);
Gunnar Millsac6a4442020-10-14 14:55:29 -05001294
Ed Tanous002d39b2022-05-31 08:59:27 -07001295 collection_util::getCollectionMembers(
Willy Tuae9031f2022-09-27 05:48:07 +00001296 asyncResp,
Ed Tanous253f11b2024-05-16 09:38:31 -07001297 boost::urls::format("/redfish/v1/Systems/{}/Processors",
1298 BMCWEB_REDFISH_SYSTEM_URI_NAME),
Lakshmi Yadlapati36b5f1e2023-09-26 23:53:28 -05001299 processorInterfaces, "/xyz/openbmc_project/inventory");
Patrick Williams5a39f772023-10-20 11:20:21 -05001300 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001301}
Gunnar Millsac6a4442020-10-14 14:55:29 -05001302
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001303inline void requestRoutesProcessor(App& app)
Gunnar Millsac6a4442020-10-14 14:55:29 -05001304{
Gunnar Millsac6a4442020-10-14 14:55:29 -05001305 /**
1306 * Functions triggers appropriate requests on DBus
1307 */
Gunnar Millsac6a4442020-10-14 14:55:29 -05001308
Ed Tanous22d268c2022-05-19 09:39:07 -07001309 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Processors/<str>/")
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001310 .privileges(redfish::privileges::headProcessor)
1311 .methods(boost::beast::http::verb::head)(
1312 std::bind_front(handleProcessorHead, std::ref(app)));
1313
1314 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Processors/<str>/")
Ed Tanoused398212021-06-09 17:05:54 -07001315 .privileges(redfish::privileges::getProcessor)
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001316 .methods(boost::beast::http::verb::get)(
Ed Tanous45ca1b82022-03-25 13:07:27 -07001317 [&app](const crow::Request& req,
1318 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Ed Tanous22d268c2022-05-19 09:39:07 -07001319 const std::string& systemName,
Ed Tanous45ca1b82022-03-25 13:07:27 -07001320 const std::string& processorId) {
Carson Labrado3ba00072022-06-06 19:40:56 +00001321 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07001322 {
1323 return;
1324 }
Ed Tanous25b54db2024-04-17 15:40:31 -07001325 if constexpr (BMCWEB_EXPERIMENTAL_REDFISH_MULTI_COMPUTER_SYSTEM)
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001326 {
1327 // Option currently returns no systems. TBD
1328 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1329 systemName);
1330 return;
1331 }
Ed Tanous253f11b2024-05-16 09:38:31 -07001332 if (systemName != BMCWEB_REDFISH_SYSTEM_URI_NAME)
Ed Tanous22d268c2022-05-19 09:39:07 -07001333 {
1334 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1335 systemName);
1336 return;
1337 }
1338
Nikhil Namjoshi71a24ca2022-11-11 01:52:32 +00001339 asyncResp->res.addHeader(
1340 boost::beast::http::field::link,
1341 "</redfish/v1/JsonSchemas/Processor/Processor.json>; rel=describedby");
Ed Tanous002d39b2022-05-31 08:59:27 -07001342 asyncResp->res.jsonValue["@odata.type"] =
Chris Caindfbf7de2023-04-13 16:01:04 -05001343 "#Processor.v1_18_0.Processor";
Ed Tanous253f11b2024-05-16 09:38:31 -07001344 asyncResp->res.jsonValue["@odata.id"] =
1345 boost::urls::format("/redfish/v1/Systems/{}/Processors/{}",
1346 BMCWEB_REDFISH_SYSTEM_URI_NAME, processorId);
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001347
Ed Tanous8a592812022-06-04 09:06:59 -07001348 getProcessorObject(
1349 asyncResp, processorId,
1350 std::bind_front(getProcessorData, asyncResp, processorId));
Patrick Williams5a39f772023-10-20 11:20:21 -05001351 });
Jonathan Doman3cde86f2020-12-02 14:50:45 -08001352
Ed Tanous22d268c2022-05-19 09:39:07 -07001353 BMCWEB_ROUTE(app, "/redfish/v1/Systems/<str>/Processors/<str>/")
Ed Tanoused398212021-06-09 17:05:54 -07001354 .privileges(redfish::privileges::patchProcessor)
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001355 .methods(boost::beast::http::verb::patch)(
Ed Tanous45ca1b82022-03-25 13:07:27 -07001356 [&app](const crow::Request& req,
1357 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Ed Tanous22d268c2022-05-19 09:39:07 -07001358 const std::string& systemName,
Ed Tanous45ca1b82022-03-25 13:07:27 -07001359 const std::string& processorId) {
Carson Labrado3ba00072022-06-06 19:40:56 +00001360 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07001361 {
1362 return;
1363 }
Ed Tanous25b54db2024-04-17 15:40:31 -07001364 if constexpr (BMCWEB_EXPERIMENTAL_REDFISH_MULTI_COMPUTER_SYSTEM)
Ed Tanous7f3e84a2022-12-28 16:22:54 -08001365 {
1366 // Option currently returns no systems. TBD
1367 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1368 systemName);
1369 return;
1370 }
Ed Tanous253f11b2024-05-16 09:38:31 -07001371 if (systemName != BMCWEB_REDFISH_SYSTEM_URI_NAME)
Ed Tanous22d268c2022-05-19 09:39:07 -07001372 {
1373 messages::resourceNotFound(asyncResp->res, "ComputerSystem",
1374 systemName);
1375 return;
1376 }
1377
Ed Tanous3c569212024-03-06 14:46:18 -08001378 std::optional<std::string> appliedConfigUri;
Ed Tanous002d39b2022-05-31 08:59:27 -07001379 if (!json_util::readJsonPatch(req, asyncResp->res,
Ed Tanous3c569212024-03-06 14:46:18 -08001380 "AppliedOperatingConfig/@odata.id",
1381 appliedConfigUri))
Ed Tanous002d39b2022-05-31 08:59:27 -07001382 {
1383 return;
1384 }
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001385
Ed Tanous3c569212024-03-06 14:46:18 -08001386 if (appliedConfigUri)
Ed Tanous002d39b2022-05-31 08:59:27 -07001387 {
Ed Tanous002d39b2022-05-31 08:59:27 -07001388 // Check for 404 and find matching D-Bus object, then run
1389 // property patch handlers if that all succeeds.
Ed Tanous8a592812022-06-04 09:06:59 -07001390 getProcessorObject(asyncResp, processorId,
1391 std::bind_front(patchAppliedOperatingConfig,
1392 asyncResp, processorId,
Ed Tanous3c569212024-03-06 14:46:18 -08001393 *appliedConfigUri));
Ed Tanous002d39b2022-05-31 08:59:27 -07001394 }
Patrick Williams5a39f772023-10-20 11:20:21 -05001395 });
John Edward Broadbent7e860f12021-04-08 15:57:16 -07001396}
Gunnar Millsac6a4442020-10-14 14:55:29 -05001397
1398} // namespace redfish