1 // SPDX-License-Identifier: Apache-2.0
2 // SPDX-FileCopyrightText: Copyright OpenBMC Authors
3 // SPDX-FileCopyrightText: Copyright 2018 Intel Corporation
4 #pragma once
5
6 #include "bmcweb_config.h"
7
8 #include "app.hpp"
9 #include "async_resp.hpp"
10 #include "dbus_singleton.hpp"
11 #include "dbus_utility.hpp"
12 #include "error_messages.hpp"
13 #include "generated/enums/action_info.hpp"
14 #include "generated/enums/chassis.hpp"
15 #include "generated/enums/resource.hpp"
16 #include "http_request.hpp"
17 #include "led.hpp"
18 #include "logging.hpp"
19 #include "query.hpp"
20 #include "registries/privilege_registry.hpp"
21 #include "utils/asset_utils.hpp"
22 #include "utils/chassis_utils.hpp"
23 #include "utils/collection.hpp"
24 #include "utils/dbus_utils.hpp"
25 #include "utils/json_utils.hpp"
26
27 #include <asm-generic/errno.h>
28
29 #include <boost/beast/http/field.hpp>
30 #include <boost/beast/http/verb.hpp>
31 #include <boost/system/error_code.hpp>
32 #include <boost/url/format.hpp>
33 #include <boost/url/url.hpp>
34 #include <nlohmann/json.hpp>
35 #include <sdbusplus/message/native_types.hpp>
36 #include <sdbusplus/unpack_properties.hpp>
37
38 #include <algorithm>
39 #include <array>
40 #include <format>
41 #include <functional>
42 #include <memory>
43 #include <optional>
44 #include <ranges>
45 #include <string>
46 #include <string_view>
47 #include <utility>
48 #include <vector>
49
50 namespace redfish
51 {
52
translateChassisTypeToRedfish(const std::string_view & chassisType)53 inline chassis::ChassisType translateChassisTypeToRedfish(
54 const std::string_view& chassisType)
55 {
56 if (chassisType ==
57 "xyz.openbmc_project.Inventory.Item.Chassis.ChassisType.Blade")
58 {
59 return chassis::ChassisType::Blade;
60 }
61 if (chassisType ==
62 "xyz.openbmc_project.Inventory.Item.Chassis.ChassisType.Component")
63 {
64 return chassis::ChassisType::Component;
65 }
66 if (chassisType ==
67 "xyz.openbmc_project.Inventory.Item.Chassis.ChassisType.Enclosure")
68 {
69 return chassis::ChassisType::Enclosure;
70 }
71 if (chassisType ==
72 "xyz.openbmc_project.Inventory.Item.Chassis.ChassisType.Module")
73 {
74 return chassis::ChassisType::Module;
75 }
76 if (chassisType ==
77 "xyz.openbmc_project.Inventory.Item.Chassis.ChassisType.RackMount")
78 {
79 return chassis::ChassisType::RackMount;
80 }
81 if (chassisType ==
82 "xyz.openbmc_project.Inventory.Item.Chassis.ChassisType.StandAlone")
83 {
84 return chassis::ChassisType::StandAlone;
85 }
86 if (chassisType ==
87 "xyz.openbmc_project.Inventory.Item.Chassis.ChassisType.StorageEnclosure")
88 {
89 return chassis::ChassisType::StorageEnclosure;
90 }
91 if (chassisType ==
92 "xyz.openbmc_project.Inventory.Item.Chassis.ChassisType.Zone")
93 {
94 return chassis::ChassisType::Zone;
95 }
96 return chassis::ChassisType::Invalid;
97 }
98
99 /**
100 * @brief Retrieves resources over dbus to link to the chassis
101 *
102 * @param[in] asyncResp - Shared pointer for completing asynchronous
103 * calls
104 * @param[in] path - Chassis dbus path to look for the storage.
105 *
106 * Calls the Association endpoints on the path + "/storage" and add the link of
107 * json["Links"]["Storage@odata.count"] =
108 * {"@odata.id", "/redfish/v1/Storage/" + resourceId}
109 *
110 * @return None.
111 */
getStorageLink(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const sdbusplus::message::object_path & path)112 inline void getStorageLink(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
113 const sdbusplus::message::object_path& path)
114 {
115 dbus::utility::getProperty<std::vector<std::string>>(
116 "xyz.openbmc_project.ObjectMapper", (path / "storage").str,
117 "xyz.openbmc_project.Association", "endpoints",
118 [asyncResp](const boost::system::error_code& ec,
119 const std::vector<std::string>& storageList) {
120 if (ec)
121 {
122 BMCWEB_LOG_DEBUG("getStorageLink got DBUS response error");
123 return;
124 }
125
126 nlohmann::json::array_t storages;
127 for (const std::string& storagePath : storageList)
128 {
129 std::string id =
130 sdbusplus::message::object_path(storagePath).filename();
131 if (id.empty())
132 {
133 continue;
134 }
135
136 nlohmann::json::object_t storage;
137 storage["@odata.id"] =
138 boost::urls::format("/redfish/v1/Systems/{}/Storage/{}",
139 BMCWEB_REDFISH_SYSTEM_URI_NAME, id);
140 storages.emplace_back(std::move(storage));
141 }
142 asyncResp->res.jsonValue["Links"]["Storage@odata.count"] =
143 storages.size();
144 asyncResp->res.jsonValue["Links"]["Storage"] = std::move(storages);
145 });
146 }
147
148 /**
149 * @brief Retrieves chassis state properties over dbus
150 *
151 * @param[in] asyncResp - Shared pointer for completing asynchronous calls.
152 *
153 * @return None.
154 */
getChassisState(std::shared_ptr<bmcweb::AsyncResp> asyncResp)155 inline void getChassisState(std::shared_ptr<bmcweb::AsyncResp> asyncResp)
156 {
157 dbus::utility::getProperty<std::string>(
158 "xyz.openbmc_project.State.Chassis",
159 "/xyz/openbmc_project/state/chassis0",
160 "xyz.openbmc_project.State.Chassis", "CurrentPowerState",
161 [asyncResp{std::move(asyncResp)}](const boost::system::error_code& ec,
162 const std::string& chassisState) {
163 if (ec)
164 {
165 if (ec == boost::system::errc::host_unreachable)
166 {
167 // Service not available, no error, just don't return
168 // chassis state info
169 BMCWEB_LOG_DEBUG("Service not available {}", ec);
170 return;
171 }
172 BMCWEB_LOG_DEBUG("DBUS response error {}", ec);
173 messages::internalError(asyncResp->res);
174 return;
175 }
176
177 BMCWEB_LOG_DEBUG("Chassis state: {}", chassisState);
178 // Verify Chassis State
179 if (chassisState ==
180 "xyz.openbmc_project.State.Chassis.PowerState.On")
181 {
182 asyncResp->res.jsonValue["PowerState"] =
183 resource::PowerState::On;
184 asyncResp->res.jsonValue["Status"]["State"] =
185 resource::State::Enabled;
186 }
187 else if (chassisState ==
188 "xyz.openbmc_project.State.Chassis.PowerState.Off")
189 {
190 asyncResp->res.jsonValue["PowerState"] =
191 resource::PowerState::Off;
192 asyncResp->res.jsonValue["Status"]["State"] =
193 resource::State::StandbyOffline;
194 }
195 else if (
196 chassisState ==
197 "xyz.openbmc_project.State.Chassis.PowerState.TransitioningToOff")
198 {
199 asyncResp->res.jsonValue["PowerState"] =
200 resource::PowerState::PoweringOff;
201 asyncResp->res.jsonValue["Status"]["State"] =
202 resource::State::StandbyOffline;
203 }
204 else if (
205 chassisState ==
206 "xyz.openbmc_project.State.Chassis.PowerState.TransitioningToOn")
207 {
208 asyncResp->res.jsonValue["PowerState"] =
209 resource::PowerState::PoweringOn;
210 asyncResp->res.jsonValue["Status"]["State"] =
211 resource::State::Starting;
212 }
213 });
214 }
215
216 /**
217 * Retrieves physical security properties over dbus
218 */
handlePhysicalSecurityGetSubTree(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const boost::system::error_code & ec,const dbus::utility::MapperGetSubTreeResponse & subtree)219 inline void handlePhysicalSecurityGetSubTree(
220 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
221 const boost::system::error_code& ec,
222 const dbus::utility::MapperGetSubTreeResponse& subtree)
223 {
224 if (ec)
225 {
226 // do not add err msg in redfish response, because this is not
227 // mandatory property
228 BMCWEB_LOG_INFO("DBUS error: no matched iface {}", ec);
229 return;
230 }
231 // Iterate over all retrieved ObjectPaths.
232 for (const auto& object : subtree)
233 {
234 if (!object.second.empty())
235 {
236 const auto& service = object.second.front();
237
238 BMCWEB_LOG_DEBUG("Get intrusion status by service ");
239
240 dbus::utility::getProperty<std::string>(
241 service.first, object.first,
242 "xyz.openbmc_project.Chassis.Intrusion", "Status",
243 [asyncResp](const boost::system::error_code& ec1,
244 const std::string& value) {
245 if (ec1)
246 {
247 // do not add err msg in redfish response, because this
248 // is not
249 // mandatory property
250 BMCWEB_LOG_ERROR("DBUS response error {}", ec1);
251 return;
252 }
253 asyncResp->res.jsonValue["PhysicalSecurity"]
254 ["IntrusionSensorNumber"] = 1;
255 asyncResp->res
256 .jsonValue["PhysicalSecurity"]["IntrusionSensor"] =
257 value;
258 });
259
260 return;
261 }
262 }
263 }
264
handleChassisCollectionGet(App & app,const crow::Request & req,const std::shared_ptr<bmcweb::AsyncResp> & asyncResp)265 inline void handleChassisCollectionGet(
266 App& app, const crow::Request& req,
267 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
268 {
269 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
270 {
271 return;
272 }
273 asyncResp->res.jsonValue["@odata.type"] =
274 "#ChassisCollection.ChassisCollection";
275 asyncResp->res.jsonValue["@odata.id"] = "/redfish/v1/Chassis";
276 asyncResp->res.jsonValue["Name"] = "Chassis Collection";
277
278 collection_util::getCollectionMembers(
279 asyncResp, boost::urls::url("/redfish/v1/Chassis"), chassisInterfaces,
280 "/xyz/openbmc_project/inventory");
281 }
282
getChassisContainedBy(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & chassisId,const boost::system::error_code & ec,const dbus::utility::MapperGetSubTreePathsResponse & upstreamChassisPaths)283 inline void getChassisContainedBy(
284 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
285 const std::string& chassisId, const boost::system::error_code& ec,
286 const dbus::utility::MapperGetSubTreePathsResponse& upstreamChassisPaths)
287 {
288 if (ec)
289 {
290 if (ec.value() != EBADR)
291 {
292 BMCWEB_LOG_ERROR("DBUS response error {}", ec);
293 messages::internalError(asyncResp->res);
294 }
295 return;
296 }
297 if (upstreamChassisPaths.empty())
298 {
299 return;
300 }
301 if (upstreamChassisPaths.size() > 1)
302 {
303 BMCWEB_LOG_ERROR("{} is contained by multiple chassis", chassisId);
304 messages::internalError(asyncResp->res);
305 return;
306 }
307
308 sdbusplus::message::object_path upstreamChassisPath(
309 upstreamChassisPaths[0]);
310 std::string upstreamChassis = upstreamChassisPath.filename();
311 if (upstreamChassis.empty())
312 {
313 BMCWEB_LOG_WARNING("Malformed upstream Chassis path {} on {}",
314 upstreamChassisPath.str, chassisId);
315 return;
316 }
317
318 asyncResp->res.jsonValue["Links"]["ContainedBy"]["@odata.id"] =
319 boost::urls::format("/redfish/v1/Chassis/{}", upstreamChassis);
320 }
321
getChassisContains(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & chassisId,const boost::system::error_code & ec,const dbus::utility::MapperGetSubTreePathsResponse & downstreamChassisPaths)322 inline void getChassisContains(
323 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
324 const std::string& chassisId, const boost::system::error_code& ec,
325 const dbus::utility::MapperGetSubTreePathsResponse& downstreamChassisPaths)
326 {
327 if (ec)
328 {
329 if (ec.value() != EBADR)
330 {
331 BMCWEB_LOG_ERROR("DBUS response error {}", ec);
332 messages::internalError(asyncResp->res);
333 }
334 return;
335 }
336 if (downstreamChassisPaths.empty())
337 {
338 return;
339 }
340 nlohmann::json& jValue = asyncResp->res.jsonValue["Links"]["Contains"];
341 if (!jValue.is_array())
342 {
343 // Create the array if it was empty
344 jValue = nlohmann::json::array();
345 }
346 for (const auto& p : downstreamChassisPaths)
347 {
348 sdbusplus::message::object_path downstreamChassisPath(p);
349 std::string downstreamChassis = downstreamChassisPath.filename();
350 if (downstreamChassis.empty())
351 {
352 BMCWEB_LOG_WARNING("Malformed downstream Chassis path {} on {}",
353 downstreamChassisPath.str, chassisId);
354 continue;
355 }
356 nlohmann::json link;
357 link["@odata.id"] =
358 boost::urls::format("/redfish/v1/Chassis/{}", downstreamChassis);
359 jValue.push_back(std::move(link));
360 }
361 asyncResp->res.jsonValue["Links"]["Contains@odata.count"] = jValue.size();
362 }
363
getChassisConnectivity(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & chassisId,const std::string & chassisPath)364 inline void getChassisConnectivity(
365 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
366 const std::string& chassisId, const std::string& chassisPath)
367 {
368 BMCWEB_LOG_DEBUG("Get chassis connectivity");
369
370 dbus::utility::getAssociatedSubTreePaths(
371 chassisPath + "/contained_by",
372 sdbusplus::message::object_path("/xyz/openbmc_project/inventory"), 0,
373 chassisInterfaces,
374 std::bind_front(getChassisContainedBy, asyncResp, chassisId));
375
376 dbus::utility::getAssociatedSubTreePaths(
377 chassisPath + "/containing",
378 sdbusplus::message::object_path("/xyz/openbmc_project/inventory"), 0,
379 chassisInterfaces,
380 std::bind_front(getChassisContains, asyncResp, chassisId));
381 }
382
383 /**
384 * ChassisCollection derived class for delivering Chassis Collection Schema
385 * Functions triggers appropriate requests on DBus
386 */
requestRoutesChassisCollection(App & app)387 inline void requestRoutesChassisCollection(App& app)
388 {
389 BMCWEB_ROUTE(app, "/redfish/v1/Chassis/")
390 .privileges(redfish::privileges::getChassisCollection)
391 .methods(boost::beast::http::verb::get)(
392 std::bind_front(handleChassisCollectionGet, std::ref(app)));
393 }
394
getChassisLocationCode(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & connectionName,const std::string & path)395 inline void getChassisLocationCode(
396 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
397 const std::string& connectionName, const std::string& path)
398 {
399 dbus::utility::getProperty<std::string>(
400 connectionName, path,
401 "xyz.openbmc_project.Inventory.Decorator.LocationCode", "LocationCode",
402 [asyncResp](const boost::system::error_code& ec,
403 const std::string& property) {
404 if (ec)
405 {
406 BMCWEB_LOG_ERROR("DBUS response error for Location");
407 messages::internalError(asyncResp->res);
408 return;
409 }
410
411 asyncResp->res
412 .jsonValue["Location"]["PartLocation"]["ServiceLabel"] =
413 property;
414 });
415 }
416
getChassisUUID(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & connectionName,const std::string & path)417 inline void getChassisUUID(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
418 const std::string& connectionName,
419 const std::string& path)
420 {
421 dbus::utility::getProperty<std::string>(
422 connectionName, path, "xyz.openbmc_project.Common.UUID", "UUID",
423 [asyncResp](const boost::system::error_code& ec,
424 const std::string& chassisUUID) {
425 if (ec)
426 {
427 BMCWEB_LOG_ERROR("DBUS response error for UUID");
428 messages::internalError(asyncResp->res);
429 return;
430 }
431 asyncResp->res.jsonValue["UUID"] = chassisUUID;
432 });
433 }
434
handleDecoratorAssetProperties(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & chassisId,const std::string & path,const dbus::utility::DBusPropertiesMap & propertiesList)435 inline void handleDecoratorAssetProperties(
436 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
437 const std::string& chassisId, const std::string& path,
438 const dbus::utility::DBusPropertiesMap& propertiesList)
439 {
440 asset_utils::extractAssetInfo(asyncResp, ""_json_pointer, propertiesList,
441 true);
442
443 asyncResp->res.jsonValue["Name"] = chassisId;
444 asyncResp->res.jsonValue["Id"] = chassisId;
445
446 if constexpr (BMCWEB_REDFISH_ALLOW_DEPRECATED_POWER_THERMAL)
447 {
448 asyncResp->res.jsonValue["Thermal"]["@odata.id"] =
449 boost::urls::format("/redfish/v1/Chassis/{}/Thermal", chassisId);
450 // Power object
451 asyncResp->res.jsonValue["Power"]["@odata.id"] =
452 boost::urls::format("/redfish/v1/Chassis/{}/Power", chassisId);
453 }
454
455 if constexpr (BMCWEB_REDFISH_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM)
456 {
457 asyncResp->res.jsonValue["ThermalSubsystem"]["@odata.id"] =
458 boost::urls::format("/redfish/v1/Chassis/{}/ThermalSubsystem",
459 chassisId);
460 asyncResp->res.jsonValue["PowerSubsystem"]["@odata.id"] =
461 boost::urls::format("/redfish/v1/Chassis/{}/PowerSubsystem",
462 chassisId);
463 asyncResp->res.jsonValue["EnvironmentMetrics"]["@odata.id"] =
464 boost::urls::format("/redfish/v1/Chassis/{}/EnvironmentMetrics",
465 chassisId);
466 }
467
468 asyncResp->res.jsonValue["Assembly"]["@odata.id"] =
469 boost::urls::format("/redfish/v1/Chassis/{}/Assembly", chassisId);
470
471 // SensorCollection
472 asyncResp->res.jsonValue["Sensors"]["@odata.id"] =
473 boost::urls::format("/redfish/v1/Chassis/{}/Sensors", chassisId);
474 asyncResp->res.jsonValue["Status"]["State"] = resource::State::Enabled;
475
476 nlohmann::json::array_t computerSystems;
477 nlohmann::json::object_t system;
478 system["@odata.id"] = boost::urls::format("/redfish/v1/Systems/{}",
479 BMCWEB_REDFISH_SYSTEM_URI_NAME);
480 computerSystems.emplace_back(std::move(system));
481 asyncResp->res.jsonValue["Links"]["ComputerSystems"] =
482 std::move(computerSystems);
483
484 nlohmann::json::array_t managedBy;
485 nlohmann::json::object_t manager;
486 manager["@odata.id"] = boost::urls::format("/redfish/v1/Managers/{}",
487 BMCWEB_REDFISH_MANAGER_URI_NAME);
488 managedBy.emplace_back(std::move(manager));
489 asyncResp->res.jsonValue["Links"]["ManagedBy"] = std::move(managedBy);
490 getChassisState(asyncResp);
491 getStorageLink(asyncResp, path);
492 }
493
handleChassisProperties(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const dbus::utility::DBusPropertiesMap & propertiesList)494 inline void handleChassisProperties(
495 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
496 const dbus::utility::DBusPropertiesMap& propertiesList)
497 {
498 const std::string* type = nullptr;
499
500 const bool success = sdbusplus::unpackPropertiesNoThrow(
501 dbus_utils::UnpackErrorPrinter(), propertiesList, "Type", type);
502
503 if (!success)
504 {
505 messages::internalError(asyncResp->res);
506 return;
507 }
508
509 // Chassis Type is a required property in Redfish
510 // If there is an error or some enum we don't support just sit it to Rack
511 // Mount
512 asyncResp->res.jsonValue["ChassisType"] = chassis::ChassisType::RackMount;
513
514 if (type != nullptr)
515 {
516 auto chassisType = translateChassisTypeToRedfish(*type);
517 if (chassisType != chassis::ChassisType::Invalid)
518 {
519 asyncResp->res.jsonValue["ChassisType"] = chassisType;
520 }
521 }
522 }
523
handleChassisGetSubTree(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & chassisId,const boost::system::error_code & ec,const dbus::utility::MapperGetSubTreeResponse & subtree)524 inline void handleChassisGetSubTree(
525 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
526 const std::string& chassisId, const boost::system::error_code& ec,
527 const dbus::utility::MapperGetSubTreeResponse& subtree)
528 {
529 if (ec)
530 {
531 BMCWEB_LOG_ERROR("DBUS response error {}", ec);
532 messages::internalError(asyncResp->res);
533 return;
534 }
535 // Iterate over all retrieved ObjectPaths.
536 for (const std::pair<
537 std::string,
538 std::vector<std::pair<std::string, std::vector<std::string>>>>&
539 object : subtree)
540 {
541 const std::string& path = object.first;
542 const std::vector<std::pair<std::string, std::vector<std::string>>>&
543 connectionNames = object.second;
544
545 sdbusplus::message::object_path objPath(path);
546 if (objPath.filename() != chassisId)
547 {
548 continue;
549 }
550
551 getChassisConnectivity(asyncResp, chassisId, path);
552
553 if (connectionNames.empty())
554 {
555 BMCWEB_LOG_ERROR("Got 0 Connection names");
556 continue;
557 }
558
559 asyncResp->res.jsonValue["@odata.type"] = "#Chassis.v1_22_0.Chassis";
560 asyncResp->res.jsonValue["@odata.id"] =
561 boost::urls::format("/redfish/v1/Chassis/{}", chassisId);
562 asyncResp->res.jsonValue["Name"] = "Chassis Collection";
563 asyncResp->res.jsonValue["Actions"]["#Chassis.Reset"]["target"] =
564 boost::urls::format("/redfish/v1/Chassis/{}/Actions/Chassis.Reset",
565 chassisId);
566 asyncResp->res
567 .jsonValue["Actions"]["#Chassis.Reset"]["@Redfish.ActionInfo"] =
568 boost::urls::format("/redfish/v1/Chassis/{}/ResetActionInfo",
569 chassisId);
570 dbus::utility::getAssociationEndPoints(
571 path + "/drive",
572 [asyncResp, chassisId](const boost::system::error_code& ec3,
573 const dbus::utility::MapperEndPoints& resp) {
574 if (ec3 || resp.empty())
575 {
576 return; // no drives = no failures
577 }
578
579 nlohmann::json reference;
580 reference["@odata.id"] = boost::urls::format(
581 "/redfish/v1/Chassis/{}/Drives", chassisId);
582 asyncResp->res.jsonValue["Drives"] = std::move(reference);
583 });
584
585 const std::string& connectionName = connectionNames[0].first;
586
587 const std::vector<std::string>& interfaces2 = connectionNames[0].second;
588 const std::array<const char*, 3> hasIndicatorLed = {
589 "xyz.openbmc_project.Inventory.Item.Chassis",
590 "xyz.openbmc_project.Inventory.Item.Panel",
591 "xyz.openbmc_project.Inventory.Item.Board.Motherboard"};
592
593 const std::string assetTagInterface =
594 "xyz.openbmc_project.Inventory.Decorator.AssetTag";
595 const std::string replaceableInterface =
596 "xyz.openbmc_project.Inventory.Decorator.Replaceable";
597 const std::string revisionInterface =
598 "xyz.openbmc_project.Inventory.Decorator.Revision";
599 for (const auto& interface : interfaces2)
600 {
601 if (interface == assetTagInterface)
602 {
603 dbus::utility::getProperty<std::string>(
604 connectionName, path, assetTagInterface, "AssetTag",
605 [asyncResp, chassisId](const boost::system::error_code& ec2,
606 const std::string& property) {
607 if (ec2)
608 {
609 BMCWEB_LOG_ERROR(
610 "DBus response error for AssetTag: {}", ec2);
611 messages::internalError(asyncResp->res);
612 return;
613 }
614 asyncResp->res.jsonValue["AssetTag"] = property;
615 });
616 }
617 else if (interface == replaceableInterface)
618 {
619 dbus::utility::getProperty<bool>(
620 connectionName, path, replaceableInterface, "HotPluggable",
621 [asyncResp, chassisId](const boost::system::error_code& ec2,
622 const bool property) {
623 if (ec2)
624 {
625 BMCWEB_LOG_ERROR(
626 "DBus response error for HotPluggable: {}",
627 ec2);
628 messages::internalError(asyncResp->res);
629 return;
630 }
631 asyncResp->res.jsonValue["HotPluggable"] = property;
632 });
633 }
634 else if (interface == revisionInterface)
635 {
636 dbus::utility::getProperty<std::string>(
637 connectionName, path, revisionInterface, "Version",
638 [asyncResp, chassisId](const boost::system::error_code& ec2,
639 const std::string& property) {
640 if (ec2)
641 {
642 BMCWEB_LOG_ERROR(
643 "DBus response error for Version: {}", ec2);
644 messages::internalError(asyncResp->res);
645 return;
646 }
647 asyncResp->res.jsonValue["Version"] = property;
648 });
649 }
650 }
651
652 for (const char* interface : hasIndicatorLed)
653 {
654 if (std::ranges::find(interfaces2, interface) != interfaces2.end())
655 {
656 if constexpr (BMCWEB_REDFISH_ALLOW_DEPRECATED_INDICATORLED)
657 {
658 getIndicatorLedState(asyncResp);
659 }
660 getLocationIndicatorActive(asyncResp, objPath);
661 break;
662 }
663 }
664
665 dbus::utility::getAllProperties(
666 *crow::connections::systemBus, connectionName, path,
667 "xyz.openbmc_project.Inventory.Decorator.Asset",
668 [asyncResp, chassisId,
669 path](const boost::system::error_code&,
670 const dbus::utility::DBusPropertiesMap& propertiesList) {
671 handleDecoratorAssetProperties(asyncResp, chassisId, path,
672 propertiesList);
673 });
674
675 dbus::utility::getAllProperties(
676 *crow::connections::systemBus, connectionName, path,
677 "xyz.openbmc_project.Inventory.Item.Chassis",
678 [asyncResp](
679 const boost::system::error_code&,
680 const dbus::utility::DBusPropertiesMap& propertiesList) {
681 handleChassisProperties(asyncResp, propertiesList);
682 });
683
684 for (const auto& interface : interfaces2)
685 {
686 if (interface == "xyz.openbmc_project.Common.UUID")
687 {
688 getChassisUUID(asyncResp, connectionName, path);
689 }
690 else if (interface ==
691 "xyz.openbmc_project.Inventory.Decorator.LocationCode")
692 {
693 getChassisLocationCode(asyncResp, connectionName, path);
694 }
695 }
696
697 return;
698 }
699
700 // Couldn't find an object with that name. return an error
701 messages::resourceNotFound(asyncResp->res, "Chassis", chassisId);
702 }
703
handleChassisGet(App & app,const crow::Request & req,const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & chassisId)704 inline void handleChassisGet(
705 App& app, const crow::Request& req,
706 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
707 const std::string& chassisId)
708 {
709 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
710 {
711 return;
712 }
713
714 dbus::utility::getSubTree(
715 "/xyz/openbmc_project/inventory", 0, chassisInterfaces,
716 std::bind_front(handleChassisGetSubTree, asyncResp, chassisId));
717
718 constexpr std::array<std::string_view, 1> interfaces2 = {
719 "xyz.openbmc_project.Chassis.Intrusion"};
720
721 dbus::utility::getSubTree(
722 "/xyz/openbmc_project", 0, interfaces2,
723 std::bind_front(handlePhysicalSecurityGetSubTree, asyncResp));
724 }
725
handleChassisPatch(App & app,const crow::Request & req,const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & param)726 inline void handleChassisPatch(
727 App& app, const crow::Request& req,
728 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
729 const std::string& param)
730 {
731 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
732 {
733 return;
734 }
735 std::optional<bool> locationIndicatorActive;
736 std::optional<std::string> indicatorLed;
737
738 if (param.empty())
739 {
740 return;
741 }
742
743 if (!json_util::readJsonPatch( //
744 req, asyncResp->res, //
745 "IndicatorLED", indicatorLed, //
746 "LocationIndicatorActive", locationIndicatorActive //
747 ))
748 {
749 return;
750 }
751
752 if (!locationIndicatorActive && !indicatorLed)
753 {
754 return; // delete this when we support more patch properties
755 }
756 if (indicatorLed)
757 {
758 if constexpr (BMCWEB_REDFISH_ALLOW_DEPRECATED_INDICATORLED)
759 {
760 asyncResp->res.addHeader(
761 boost::beast::http::field::warning,
762 "299 - \"IndicatorLED is deprecated. Use LocationIndicatorActive instead.\"");
763 }
764 else
765 {
766 messages::propertyUnknown(asyncResp->res, "IndicatorLED");
767 return;
768 }
769 }
770
771 const std::string& chassisId = param;
772
773 dbus::utility::getSubTree(
774 "/xyz/openbmc_project/inventory", 0, chassisInterfaces,
775 [asyncResp, chassisId, locationIndicatorActive,
776 indicatorLed](const boost::system::error_code& ec,
777 const dbus::utility::MapperGetSubTreeResponse& subtree) {
778 if (ec)
779 {
780 BMCWEB_LOG_ERROR("DBUS response error {}", ec);
781 messages::internalError(asyncResp->res);
782 return;
783 }
784
785 // Iterate over all retrieved ObjectPaths.
786 for (const std::pair<std::string,
787 std::vector<std::pair<
788 std::string, std::vector<std::string>>>>&
789 object : subtree)
790 {
791 const std::string& path = object.first;
792 const std::vector<
793 std::pair<std::string, std::vector<std::string>>>&
794 connectionNames = object.second;
795
796 sdbusplus::message::object_path objPath(path);
797 if (objPath.filename() != chassisId)
798 {
799 continue;
800 }
801
802 if (connectionNames.empty())
803 {
804 BMCWEB_LOG_ERROR("Got 0 Connection names");
805 continue;
806 }
807
808 const std::vector<std::string>& interfaces3 =
809 connectionNames[0].second;
810
811 const std::array<const char*, 3> hasIndicatorLed = {
812 "xyz.openbmc_project.Inventory.Item.Chassis",
813 "xyz.openbmc_project.Inventory.Item.Panel",
814 "xyz.openbmc_project.Inventory.Item.Board.Motherboard"};
815 bool indicatorChassis = false;
816 for (const char* interface : hasIndicatorLed)
817 {
818 if (std::ranges::find(interfaces3, interface) !=
819 interfaces3.end())
820 {
821 indicatorChassis = true;
822 break;
823 }
824 }
825 if (locationIndicatorActive)
826 {
827 if (indicatorChassis)
828 {
829 setLocationIndicatorActive(asyncResp, path,
830 *locationIndicatorActive);
831 }
832 else
833 {
834 messages::propertyUnknown(asyncResp->res,
835 "LocationIndicatorActive");
836 }
837 }
838 if constexpr (BMCWEB_REDFISH_ALLOW_DEPRECATED_INDICATORLED)
839 {
840 if (indicatorLed)
841 {
842 if (indicatorChassis)
843 {
844 setIndicatorLedState(asyncResp, *indicatorLed);
845 }
846 else
847 {
848 messages::propertyUnknown(asyncResp->res,
849 "IndicatorLED");
850 }
851 }
852 }
853 return;
854 }
855
856 messages::resourceNotFound(asyncResp->res, "Chassis", chassisId);
857 });
858 }
859
860 /**
861 * Chassis override class for delivering Chassis Schema
862 * Functions triggers appropriate requests on DBus
863 */
requestRoutesChassis(App & app)864 inline void requestRoutesChassis(App& app)
865 {
866 BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/")
867 .privileges(redfish::privileges::getChassis)
868 .methods(boost::beast::http::verb::get)(
869 std::bind_front(handleChassisGet, std::ref(app)));
870
871 BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/")
872 .privileges(redfish::privileges::patchChassis)
873 .methods(boost::beast::http::verb::patch)(
874 std::bind_front(handleChassisPatch, std::ref(app)));
875 }
876
doChassisPowerCycle(const std::shared_ptr<bmcweb::AsyncResp> & asyncResp)877 inline void doChassisPowerCycle(
878 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
879 {
880 constexpr std::array<std::string_view, 1> interfaces = {
881 "xyz.openbmc_project.State.Chassis"};
882
883 // Use mapper to get subtree paths.
884 dbus::utility::getSubTreePaths(
885 "/", 0, interfaces,
886 [asyncResp](
887 const boost::system::error_code& ec,
888 const dbus::utility::MapperGetSubTreePathsResponse& chassisList) {
889 if (ec)
890 {
891 BMCWEB_LOG_ERROR("[mapper] Bad D-Bus request error: {}", ec);
892 messages::internalError(asyncResp->res);
893 return;
894 }
895
896 const char* processName = "xyz.openbmc_project.State.Chassis";
897 const char* interfaceName = "xyz.openbmc_project.State.Chassis";
898 const char* destProperty = "RequestedPowerTransition";
899 const std::string propertyValue =
900 "xyz.openbmc_project.State.Chassis.Transition.PowerCycle";
901 std::string objectPath =
902 "/xyz/openbmc_project/state/chassis_system0";
903
904 /* Look for system reset chassis path */
905 if ((std::ranges::find(chassisList, objectPath)) ==
906 chassisList.end())
907 {
908 /* We prefer to reset the full chassis_system, but if it doesn't
909 * exist on some platforms, fall back to a host-only power reset
910 */
911 objectPath = "/xyz/openbmc_project/state/chassis0";
912 }
913
914 setDbusProperty(asyncResp, "ResetType", processName, objectPath,
915 interfaceName, destProperty, propertyValue);
916 });
917 }
918
handleChassisResetActionInfoPost(App & app,const crow::Request & req,const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string &)919 inline void handleChassisResetActionInfoPost(
920 App& app, const crow::Request& req,
921 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
922 const std::string& /*chassisId*/)
923 {
924 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
925 {
926 return;
927 }
928 BMCWEB_LOG_DEBUG("Post Chassis Reset.");
929
930 std::string resetType;
931
932 if (!json_util::readJsonAction(req, asyncResp->res, "ResetType", resetType))
933 {
934 return;
935 }
936
937 if (resetType != "PowerCycle")
938 {
939 BMCWEB_LOG_DEBUG("Invalid property value for ResetType: {}", resetType);
940 messages::actionParameterNotSupported(asyncResp->res, resetType,
941 "ResetType");
942
943 return;
944 }
945 doChassisPowerCycle(asyncResp);
946 }
947
948 /**
949 * ChassisResetAction class supports the POST method for the Reset
950 * action.
951 * Function handles POST method request.
952 * Analyzes POST body before sending Reset request data to D-Bus.
953 */
954
requestRoutesChassisResetAction(App & app)955 inline void requestRoutesChassisResetAction(App& app)
956 {
957 BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/Actions/Chassis.Reset/")
958 .privileges(redfish::privileges::postChassis)
959 .methods(boost::beast::http::verb::post)(
960 std::bind_front(handleChassisResetActionInfoPost, std::ref(app)));
961 }
962
handleChassisResetActionInfoGet(App & app,const crow::Request & req,const std::shared_ptr<bmcweb::AsyncResp> & asyncResp,const std::string & chassisId)963 inline void handleChassisResetActionInfoGet(
964 App& app, const crow::Request& req,
965 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
966 const std::string& chassisId)
967 {
968 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
969 {
970 return;
971 }
972 asyncResp->res.jsonValue["@odata.type"] = "#ActionInfo.v1_1_2.ActionInfo";
973 asyncResp->res.jsonValue["@odata.id"] = boost::urls::format(
974 "/redfish/v1/Chassis/{}/ResetActionInfo", chassisId);
975 asyncResp->res.jsonValue["Name"] = "Reset Action Info";
976
977 asyncResp->res.jsonValue["Id"] = "ResetActionInfo";
978 nlohmann::json::array_t parameters;
979 nlohmann::json::object_t parameter;
980 parameter["Name"] = "ResetType";
981 parameter["Required"] = true;
982 parameter["DataType"] = action_info::ParameterTypes::String;
983 nlohmann::json::array_t allowed;
984 allowed.emplace_back("PowerCycle");
985 parameter["AllowableValues"] = std::move(allowed);
986 parameters.emplace_back(std::move(parameter));
987
988 asyncResp->res.jsonValue["Parameters"] = std::move(parameters);
989 }
990
991 /**
992 * ChassisResetActionInfo derived class for delivering Chassis
993 * ResetType AllowableValues using ResetInfo schema.
994 */
requestRoutesChassisResetActionInfo(App & app)995 inline void requestRoutesChassisResetActionInfo(App& app)
996 {
997 BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/ResetActionInfo/")
998 .privileges(redfish::privileges::getActionInfo)
999 .methods(boost::beast::http::verb::get)(
1000 std::bind_front(handleChassisResetActionInfoGet, std::ref(app)));
1001 }
1002
1003 } // namespace redfish
1004